
    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_0499ba13c6cbeb58ee7fc0a8.woff2')format("woff");}.ff1_c00000{font-family:ff1_c00000;line-height:1.158691;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00000;src:url('chunks/assets/font_df60e9e66c20b1b7fd7ba375.woff2')format("woff");}.ff2_c00000{font-family:ff2_c00000;line-height:1.009766;font-style: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;}
.ls1_c00000{letter-spacing:-26.994000px;}
.ls0_c00000{letter-spacing:0.000000px;}
.sc__c00000{text-shadow:none;}
.sc0_c00000{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00000{-webkit-text-stroke:0px transparent;}
.sc0_c00000{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00000{word-spacing:0.000000px;}
._1_c00000{margin-left:-29.952000px;}
._0_c00000{margin-left:-23.688000px;}
._2_c00000{margin-left:-6.072000px;}
._3_c00000{margin-left:-1.785600px;}
.fc0_c00000{color:rgb(0,0,0);}
.fs4_c00000{font-size:72.000000px;}
.fs5_c00000{font-size:84.000000px;}
.fs6_c00000{font-size:96.000000px;}
.fs1_c00000{font-size:108.000000px;}
.fs3_c00000{font-size:120.000000px;}
.fs2_c00000{font-size:132.000000px;}
.fs0_c00000{font-size:144.000000px;}
.y0_c00000{bottom:0.000000px;}
.yb_c00000{bottom:136.500000px;}
.ya_c00000{bottom:226.500000px;}
.y9_c00000{bottom:258.000000px;}
.y8_c00000{bottom:306.000000px;}
.y7_c00000{bottom:357.000000px;}
.y6_c00000{bottom:460.500000px;}
.y5_c00000{bottom:499.500000px;}
.y4_c00000{bottom:538.500000px;}
.y3_c00000{bottom:987.000000px;}
.y2_c00000{bottom:1020.000000px;}
.y1_c00000{bottom:1122.000000px;}
.h5_c00000{height:61.113281px;}
.h4_c00000{height:64.335938px;}
.h7_c00000{height:69.843750px;}
.h6_c00000{height:78.574219px;}
.h2_c00000{height:96.503906px;}
.h3_c00000{height:117.949219px;}
.h1_c00000{height:128.671875px;}
.h0_c00000{height:1263.000000px;}
.w0_c00000{width:892.500000px;}
.x0_c00000{left:0.000000px;}
.x1_c00000{left:108.000000px;}
@media print{
.v0_c00000{vertical-align:0.000000pt;}
.ls1_c00000{letter-spacing:-23.994667pt;}
.ls0_c00000{letter-spacing:0.000000pt;}
.ws0_c00000{word-spacing:0.000000pt;}
._1_c00000{margin-left:-26.624000pt;}
._0_c00000{margin-left:-21.056000pt;}
._2_c00000{margin-left:-5.397333pt;}
._3_c00000{margin-left:-1.587200pt;}
.fs4_c00000{font-size:64.000000pt;}
.fs5_c00000{font-size:74.666667pt;}
.fs6_c00000{font-size:85.333333pt;}
.fs1_c00000{font-size:96.000000pt;}
.fs3_c00000{font-size:106.666667pt;}
.fs2_c00000{font-size:117.333333pt;}
.fs0_c00000{font-size:128.000000pt;}
.y0_c00000{bottom:0.000000pt;}
.yb_c00000{bottom:121.333333pt;}
.ya_c00000{bottom:201.333333pt;}
.y9_c00000{bottom:229.333333pt;}
.y8_c00000{bottom:272.000000pt;}
.y7_c00000{bottom:317.333333pt;}
.y6_c00000{bottom:409.333333pt;}
.y5_c00000{bottom:444.000000pt;}
.y4_c00000{bottom:478.666667pt;}
.y3_c00000{bottom:877.333333pt;}
.y2_c00000{bottom:906.666667pt;}
.y1_c00000{bottom:997.333333pt;}
.h5_c00000{height:54.322917pt;}
.h4_c00000{height:57.187500pt;}
.h7_c00000{height:62.083333pt;}
.h6_c00000{height:69.843750pt;}
.h2_c00000{height:85.781250pt;}
.h3_c00000{height:104.843750pt;}
.h1_c00000{height:114.375000pt;}
.h0_c00000{height:1122.666667pt;}
.w0_c00000{width:793.333333pt;}
.x0_c00000{left:0.000000pt;}
.x1_c00000{left:96.000000pt;}
}





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





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b39b859354478857cf90ab73.woff2')format("woff");}.ff1_c00002{font-family:ff1_c00002;line-height:1.158691;font-style:normal;font-weight:normal;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_ea4908f84830726435e5dac1.woff2')format("woff");}.ff2_c00002{font-family:ff2_c00002;line-height:0.761719;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00002;src:url('chunks/assets/font_870cf6513a7057c2ac0485d0.woff2')format("woff");}.ff3_c00002{font-family:ff3_c00002;line-height:0.954590;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00002{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00002{vertical-align:0.000000px;}
.ls1_c00002{letter-spacing:0.000000px;}
.ls0_c00002{letter-spacing:0.014400px;}
.sc__c00002{text-shadow:none;}
.sc0_c00002{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00002{-webkit-text-stroke:0px transparent;}
.sc0_c00002{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00002{word-spacing:0.000000px;}
._0_c00002{margin-left:-1.303200px;}
.fc2_c00002{color:transparent;}
.fc1_c00002{color:rgb(252,252,252);}
.fc0_c00002{color:rgb(251,251,251);}
.fs2_c00002{font-size:72.000000px;}
.fs1_c00002{font-size:108.000000px;}
.fs0_c00002{font-size:144.000000px;}
.y0_c00002{bottom:0.000000px;}
.y6_c00002{bottom:21.000000px;}
.y8_c00002{bottom:28.500000px;}
.y5_c00002{bottom:40.500000px;}
.y7_c00002{bottom:58.500000px;}
.y4_c00002{bottom:88.500000px;}
.y3_c00002{bottom:145.500000px;}
.y2_c00002{bottom:202.500000px;}
.y1_c00002{bottom:985.500000px;}
.h6_c00002{height:52.804688px;}
.h5_c00002{height:53.402344px;}
.h3_c00002{height:96.503906px;}
.h4_c00002{height:99.000000px;}
.h2_c00002{height:128.671875px;}
.h1_c00002{height:259.500000px;}
.h0_c00002{height:1263.000000px;}
.w1_c00002{width:636.000000px;}
.w2_c00002{width:850.500000px;}
.w0_c00002{width:892.500000px;}
.x0_c00002{left:0.000000px;}
.x1_c00002{left:7.500000px;}
.x4_c00002{left:21.000000px;}
.x5_c00002{left:24.000000px;}
.x3_c00002{left:25.500000px;}
.x2_c00002{left:31.798860px;}
@media print{
.v0_c00002{vertical-align:0.000000pt;}
.ls1_c00002{letter-spacing:0.000000pt;}
.ls0_c00002{letter-spacing:0.012800pt;}
.ws0_c00002{word-spacing:0.000000pt;}
._0_c00002{margin-left:-1.158400pt;}
.fs2_c00002{font-size:64.000000pt;}
.fs1_c00002{font-size:96.000000pt;}
.fs0_c00002{font-size:128.000000pt;}
.y0_c00002{bottom:0.000000pt;}
.y6_c00002{bottom:18.666667pt;}
.y8_c00002{bottom:25.333333pt;}
.y5_c00002{bottom:36.000000pt;}
.y7_c00002{bottom:52.000000pt;}
.y4_c00002{bottom:78.666667pt;}
.y3_c00002{bottom:129.333333pt;}
.y2_c00002{bottom:180.000000pt;}
.y1_c00002{bottom:876.000000pt;}
.h6_c00002{height:46.937500pt;}
.h5_c00002{height:47.468750pt;}
.h3_c00002{height:85.781250pt;}
.h4_c00002{height:88.000000pt;}
.h2_c00002{height:114.375000pt;}
.h1_c00002{height:230.666667pt;}
.h0_c00002{height:1122.666667pt;}
.w1_c00002{width:565.333333pt;}
.w2_c00002{width:756.000000pt;}
.w0_c00002{width:793.333333pt;}
.x0_c00002{left:0.000000pt;}
.x1_c00002{left:6.666667pt;}
.x4_c00002{left:18.666667pt;}
.x5_c00002{left:21.333333pt;}
.x3_c00002{left:22.666667pt;}
.x2_c00002{left:28.265653pt;}
}





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





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_8a4b9019e63c6adb8492441d.woff2')format("woff");}.ff1_c00004{font-family:ff1_c00004;line-height:0.892578;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00004;src:url('chunks/assets/font_d03e0c65e40f2218df1caabd.woff2')format("woff");}.ff2_c00004{font-family:ff2_c00004;line-height:1.163086;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00004;src:url('chunks/assets/font_fe852f133b0b01bdbb94213a.woff2')format("woff");}.ff3_c00004{font-family:ff3_c00004;line-height:0.717285;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00004{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00004{vertical-align:0.000000px;}
.ls1_c00004{letter-spacing:0.000000px;}
.ls0_c00004{letter-spacing:0.016800px;}
.sc__c00004{text-shadow:none;}
.sc0_c00004{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00004{-webkit-text-stroke:0px transparent;}
.sc0_c00004{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00004{word-spacing:-0.100800px;}
.ws1_c00004{word-spacing:0.000000px;}
._4_c00004{margin-left:-8.670000px;}
._1_c00004{margin-left:-6.042000px;}
._3_c00004{margin-left:-3.234000px;}
._0_c00004{margin-left:-1.478400px;}
._2_c00004{width:1.686000px;}
.fc0_c00004{color:rgb(0,0,0);}
.fs1_c00004{font-size:60.000000px;}
.fs0_c00004{font-size:84.000000px;}
.y0_c00004{bottom:0.000000px;}
.y18_c00004{bottom:67.500000px;}
.y17_c00004{bottom:390.000000px;}
.y16_c00004{bottom:412.500000px;}
.y15_c00004{bottom:433.500000px;}
.y14_c00004{bottom:456.000000px;}
.y13_c00004{bottom:498.000000px;}
.y12_c00004{bottom:519.000000px;}
.y11_c00004{bottom:541.500000px;}
.y10_c00004{bottom:562.500000px;}
.yf_c00004{bottom:606.000000px;}
.ye_c00004{bottom:627.000000px;}
.yd_c00004{bottom:648.000000px;}
.yc_c00004{bottom:670.500000px;}
.yb_c00004{bottom:691.500000px;}
.ya_c00004{bottom:714.000000px;}
.y9_c00004{bottom:735.000000px;}
.y8_c00004{bottom:756.000000px;}
.y7_c00004{bottom:778.500000px;}
.y6_c00004{bottom:820.500000px;}
.y5_c00004{bottom:843.000000px;}
.y4_c00004{bottom:885.000000px;}
.y3_c00004{bottom:927.000000px;}
.y2_c00004{bottom:949.500000px;}
.y1_c00004{bottom:994.500000px;}
.h3_c00004{height:43.037109px;}
.h2_c00004{height:56.455078px;}
.h1_c00004{height:60.128906px;}
.h0_c00004{height:1263.000000px;}
.w0_c00004{width:892.500000px;}
.x0_c00004{left:0.000000px;}
.x13_c00004{left:152.019600px;}
.x11_c00004{left:156.443400px;}
.x7_c00004{left:157.776450px;}
.xc_c00004{left:159.475650px;}
.x9_c00004{left:162.053850px;}
.x2_c00004{left:165.100650px;}
.x5_c00004{left:171.318900px;}
.xb_c00004{left:177.735000px;}
.x15_c00004{left:181.199400px;}
.xd_c00004{left:183.023100px;}
.xa_c00004{left:184.832100px;}
.x8_c00004{left:187.087950px;}
.x10_c00004{left:210.020100px;}
.x14_c00004{left:211.572900px;}
.xf_c00004{left:214.341450px;}
.x12_c00004{left:220.164150px;}
.x4_c00004{left:342.346800px;}
.x3_c00004{left:410.762400px;}
.xe_c00004{left:488.618700px;}
.x16_c00004{left:493.577250px;}
.x6_c00004{left:593.801850px;}
.x1_c00004{left:625.438050px;}
.x17_c00004{left:818.677350px;}
@media print{
.v0_c00004{vertical-align:0.000000pt;}
.ls1_c00004{letter-spacing:0.000000pt;}
.ls0_c00004{letter-spacing:0.014933pt;}
.ws0_c00004{word-spacing:-0.089600pt;}
.ws1_c00004{word-spacing:0.000000pt;}
._4_c00004{margin-left:-7.706667pt;}
._1_c00004{margin-left:-5.370667pt;}
._3_c00004{margin-left:-2.874667pt;}
._0_c00004{margin-left:-1.314133pt;}
._2_c00004{width:1.498667pt;}
.fs1_c00004{font-size:53.333333pt;}
.fs0_c00004{font-size:74.666667pt;}
.y0_c00004{bottom:0.000000pt;}
.y18_c00004{bottom:60.000000pt;}
.y17_c00004{bottom:346.666667pt;}
.y16_c00004{bottom:366.666667pt;}
.y15_c00004{bottom:385.333333pt;}
.y14_c00004{bottom:405.333333pt;}
.y13_c00004{bottom:442.666667pt;}
.y12_c00004{bottom:461.333333pt;}
.y11_c00004{bottom:481.333333pt;}
.y10_c00004{bottom:500.000000pt;}
.yf_c00004{bottom:538.666667pt;}
.ye_c00004{bottom:557.333333pt;}
.yd_c00004{bottom:576.000000pt;}
.yc_c00004{bottom:596.000000pt;}
.yb_c00004{bottom:614.666667pt;}
.ya_c00004{bottom:634.666667pt;}
.y9_c00004{bottom:653.333333pt;}
.y8_c00004{bottom:672.000000pt;}
.y7_c00004{bottom:692.000000pt;}
.y6_c00004{bottom:729.333333pt;}
.y5_c00004{bottom:749.333333pt;}
.y4_c00004{bottom:786.666667pt;}
.y3_c00004{bottom:824.000000pt;}
.y2_c00004{bottom:844.000000pt;}
.y1_c00004{bottom:884.000000pt;}
.h3_c00004{height:38.255208pt;}
.h2_c00004{height:50.182292pt;}
.h1_c00004{height:53.447917pt;}
.h0_c00004{height:1122.666667pt;}
.w0_c00004{width:793.333333pt;}
.x0_c00004{left:0.000000pt;}
.x13_c00004{left:135.128533pt;}
.x11_c00004{left:139.060800pt;}
.x7_c00004{left:140.245733pt;}
.xc_c00004{left:141.756133pt;}
.x9_c00004{left:144.047867pt;}
.x2_c00004{left:146.756133pt;}
.x5_c00004{left:152.283467pt;}
.xb_c00004{left:157.986667pt;}
.x15_c00004{left:161.066133pt;}
.xd_c00004{left:162.687200pt;}
.xa_c00004{left:164.295200pt;}
.x8_c00004{left:166.300400pt;}
.x10_c00004{left:186.684533pt;}
.x14_c00004{left:188.064800pt;}
.xf_c00004{left:190.525733pt;}
.x12_c00004{left:195.701467pt;}
.x4_c00004{left:304.308267pt;}
.x3_c00004{left:365.122133pt;}
.xe_c00004{left:434.327733pt;}
.x16_c00004{left:438.735333pt;}
.x6_c00004{left:527.823867pt;}
.x1_c00004{left:555.944933pt;}
.x17_c00004{left:727.713200pt;}
}





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





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d02f008b9d2af233fdf2d518.woff2')format("woff");}.ff1_c00006{font-family:ff1_c00006;line-height:0.958008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00006;src:url('chunks/assets/font_a0e1d4be540d2812f388f1ff.woff2')format("woff");}.ff2_c00006{font-family:ff2_c00006;line-height:0.957031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00006{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00006{vertical-align:0.000000px;}
.ls2_c00006{letter-spacing:0.000000px;}
.ls1_c00006{letter-spacing:0.012000px;}
.ls0_c00006{letter-spacing:0.016800px;}
.sc__c00006{text-shadow:none;}
.sc0_c00006{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00006{-webkit-text-stroke:0px transparent;}
.sc0_c00006{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00006{word-spacing:-23.352000px;}
.ws1_c00006{word-spacing:0.000000px;}
._c_c00006{margin-left:-16.156800px;}
._0_c00006{margin-left:-5.334000px;}
._4_c00006{margin-left:-2.454000px;}
._1_c00006{margin-left:-1.276800px;}
._2_c00006{width:1.926000px;}
._9_c00006{width:2.952000px;}
._6_c00006{width:4.446000px;}
._e_c00006{width:5.835600px;}
._d_c00006{width:7.452000px;}
._7_c00006{width:11.208000px;}
._a_c00006{width:12.531600px;}
._3_c00006{width:13.740000px;}
._b_c00006{width:15.654000px;}
._5_c00006{width:18.120000px;}
._8_c00006{width:21.161400px;}
.fc0_c00006{color:rgb(0,0,0);}
.fs1_c00006{font-size:60.000000px;}
.fs0_c00006{font-size:84.000000px;}
.y0_c00006{bottom:0.000000px;}
.yd_c00006{bottom:67.500000px;}
.yc_c00006{bottom:151.500000px;}
.yb_c00006{bottom:169.500000px;}
.ya_c00006{bottom:187.500000px;}
.y9_c00006{bottom:232.500000px;}
.y8_c00006{bottom:258.000000px;}
.y7_c00006{bottom:283.500000px;}
.y6_c00006{bottom:309.000000px;}
.y5_c00006{bottom:334.500000px;}
.y4_c00006{bottom:360.000000px;}
.y3_c00006{bottom:385.500000px;}
.y2_c00006{bottom:411.000000px;}
.y1_c00006{bottom:436.500000px;}
.h3_c00006{height:44.150391px;}
.h2_c00006{height:44.208984px;}
.h1_c00006{height:61.892578px;}
.h0_c00006{height:1263.000000px;}
.w0_c00006{width:892.500000px;}
.x0_c00006{left:0.000000px;}
.x9_c00006{left:150.519750px;}
.x6_c00006{left:155.019600px;}
.x2_c00006{left:163.981500px;}
.x5_c00006{left:167.498700px;}
.x3_c00006{left:185.032800px;}
.x4_c00006{left:213.015750px;}
.x7_c00006{left:255.036300px;}
.x1_c00006{left:402.190050px;}
.x8_c00006{left:720.809700px;}
.xa_c00006{left:818.677350px;}
@media print{
.v0_c00006{vertical-align:0.000000pt;}
.ls2_c00006{letter-spacing:0.000000pt;}
.ls1_c00006{letter-spacing:0.010667pt;}
.ls0_c00006{letter-spacing:0.014933pt;}
.ws0_c00006{word-spacing:-20.757333pt;}
.ws1_c00006{word-spacing:0.000000pt;}
._c_c00006{margin-left:-14.361600pt;}
._0_c00006{margin-left:-4.741333pt;}
._4_c00006{margin-left:-2.181333pt;}
._1_c00006{margin-left:-1.134933pt;}
._2_c00006{width:1.712000pt;}
._9_c00006{width:2.624000pt;}
._6_c00006{width:3.952000pt;}
._e_c00006{width:5.187200pt;}
._d_c00006{width:6.624000pt;}
._7_c00006{width:9.962667pt;}
._a_c00006{width:11.139200pt;}
._3_c00006{width:12.213333pt;}
._b_c00006{width:13.914667pt;}
._5_c00006{width:16.106667pt;}
._8_c00006{width:18.810133pt;}
.fs1_c00006{font-size:53.333333pt;}
.fs0_c00006{font-size:74.666667pt;}
.y0_c00006{bottom:0.000000pt;}
.yd_c00006{bottom:60.000000pt;}
.yc_c00006{bottom:134.666667pt;}
.yb_c00006{bottom:150.666667pt;}
.ya_c00006{bottom:166.666667pt;}
.y9_c00006{bottom:206.666667pt;}
.y8_c00006{bottom:229.333333pt;}
.y7_c00006{bottom:252.000000pt;}
.y6_c00006{bottom:274.666667pt;}
.y5_c00006{bottom:297.333333pt;}
.y4_c00006{bottom:320.000000pt;}
.y3_c00006{bottom:342.666667pt;}
.y2_c00006{bottom:365.333333pt;}
.y1_c00006{bottom:388.000000pt;}
.h3_c00006{height:39.244792pt;}
.h2_c00006{height:39.296875pt;}
.h1_c00006{height:55.015625pt;}
.h0_c00006{height:1122.666667pt;}
.w0_c00006{width:793.333333pt;}
.x0_c00006{left:0.000000pt;}
.x9_c00006{left:133.795333pt;}
.x6_c00006{left:137.795200pt;}
.x2_c00006{left:145.761333pt;}
.x5_c00006{left:148.887733pt;}
.x3_c00006{left:164.473600pt;}
.x4_c00006{left:189.347333pt;}
.x7_c00006{left:226.698933pt;}
.x1_c00006{left:357.502267pt;}
.x8_c00006{left:640.719733pt;}
.xa_c00006{left:727.713200pt;}
}





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





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_01c75c36a6085add92f0f70b.woff2')format("woff");}.ff1_c00008{font-family:ff1_c00008;line-height:0.997559;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00008;src:url('chunks/assets/font_232d6caab395f8d150f8048b.woff2')format("woff");}.ff2_c00008{font-family:ff2_c00008;line-height:0.719727;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00008;src:url('chunks/assets/font_741920b71c0eb7853fc347b3.woff2')format("woff");}.ff3_c00008{font-family:ff3_c00008;line-height:1.163086;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00008;src:url('chunks/assets/font_e4c1ee879a6cf2cecb58dcda.woff2')format("woff");}.ff4_c00008{font-family:ff4_c00008;line-height:0.931152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00008;src:url('chunks/assets/font_dabd4fa1dd4b74ede2598fec.woff2')format("woff");}.ff5_c00008{font-family:ff5_c00008;line-height:0.931641;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00008{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00008{vertical-align:0.000000px;}
.ls1b_c00008{letter-spacing:-0.021600px;}
.ls1c_c00008{letter-spacing:-0.014400px;}
.ls1f_c00008{letter-spacing:-0.007200px;}
.ls1d_c00008{letter-spacing:0.000000px;}
.ls1e_c00008{letter-spacing:0.014400px;}
.lsd_c00008{letter-spacing:381.988800px;}
.ls6_c00008{letter-spacing:747.986400px;}
.ls14_c00008{letter-spacing:1012.543200px;}
.ls8_c00008{letter-spacing:1119.988800px;}
.ls11_c00008{letter-spacing:1215.986400px;}
.lsb_c00008{letter-spacing:1305.986400px;}
.ls2_c00008{letter-spacing:1311.991200px;}
.ls13_c00008{letter-spacing:1324.540800px;}
.ls9_c00008{letter-spacing:1407.988800px;}
.ls12_c00008{letter-spacing:1431.986400px;}
.ls19_c00008{letter-spacing:1442.887200px;}
.ls7_c00008{letter-spacing:1472.889600px;}
.lsf_c00008{letter-spacing:1520.884800px;}
.lsc_c00008{letter-spacing:1593.986400px;}
.lsa_c00008{letter-spacing:1677.988800px;}
.ls16_c00008{letter-spacing:1726.538400px;}
.ls1_c00008{letter-spacing:1735.898400px;}
.ls5_c00008{letter-spacing:1750.543200px;}
.ls15_c00008{letter-spacing:1786.543200px;}
.ls17_c00008{letter-spacing:1810.540800px;}
.ls18_c00008{letter-spacing:1864.540800px;}
.ls10_c00008{letter-spacing:1868.889600px;}
.ls3_c00008{letter-spacing:1882.540800px;}
.ls1a_c00008{letter-spacing:1935.986400px;}
.ls4_c00008{letter-spacing:1978.538400px;}
.ls0_c00008{letter-spacing:2041.905600px;}
.lse_c00008{letter-spacing:2606.889600px;}
.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:-20.001600px;}
.wsa_c00008{word-spacing:-19.800000px;}
.ws2_c00008{word-spacing:-19.792800px;}
.ws8_c00008{word-spacing:-19.785600px;}
.wsb_c00008{word-spacing:0.000000px;}
.ws9_c00008{word-spacing:28.771200px;}
.ws3_c00008{word-spacing:222.581400px;}
.ws6_c00008{word-spacing:233.275200px;}
.ws5_c00008{word-spacing:292.654200px;}
.ws4_c00008{word-spacing:530.169600px;}
.ws1_c00008{word-spacing:647.333400px;}
.ws7_c00008{word-spacing:935.128200px;}
._0_c00008{margin-left:-2625.676200px;}
._31_c00008{margin-left:-2607.892800px;}
._6_c00008{margin-left:-2518.671000px;}
._9_c00008{margin-left:-2399.770200px;}
._b_c00008{margin-left:-2232.325200px;}
._16_c00008{margin-left:-1998.322800px;}
._17_c00008{margin-left:-1978.560000px;}
._4b_c00008{margin-left:-1955.017800px;}
._4c_c00008{margin-left:-1936.008000px;}
._13_c00008{margin-left:-1901.564400px;}
._34_c00008{margin-left:-1887.803400px;}
._47_c00008{margin-left:-1884.323400px;}
._14_c00008{margin-left:-1882.584000px;}
._35_c00008{margin-left:-1868.904000px;}
._48_c00008{margin-left:-1864.584000px;}
._44_c00008{margin-left:-1830.324000px;}
._45_c00008{margin-left:-1810.584000px;}
._3f_c00008{margin-left:-1806.052200px;}
._40_c00008{margin-left:-1786.536000px;}
._19_c00008{margin-left:-1770.324600px;}
._1a_c00008{margin-left:-1750.536000px;}
._41_c00008{margin-left:-1746.054600px;}
._42_c00008{margin-left:-1726.560000px;}
._26_c00008{margin-left:-1697.774400px;}
._27_c00008{margin-left:-1678.032000px;}
._2d_c00008{margin-left:-1613.352000px;}
._2e_c00008{margin-left:-1594.008000px;}
._32_c00008{margin-left:-1539.953400px;}
._33_c00008{margin-left:-1520.928000px;}
._1e_c00008{margin-left:-1491.804000px;}
._1f_c00008{margin-left:-1472.904000px;}
._49_c00008{margin-left:-1461.838200px;}
._39_c00008{margin-left:-1451.776200px;}
._4a_c00008{margin-left:-1442.880000px;}
._3a_c00008{margin-left:-1432.008000px;}
._23_c00008{margin-left:-1428.669600px;}
._24_c00008{margin-left:-1408.032000px;}
._3b_c00008{margin-left:-1343.566200px;}
._11_c00008{margin-left:-1331.777400px;}
._2a_c00008{margin-left:-1325.777400px;}
._3c_c00008{margin-left:-1324.584000px;}
._12_c00008{margin-left:-1311.984000px;}
._2b_c00008{margin-left:-1306.008000px;}
._36_c00008{margin-left:-1235.517600px;}
._37_c00008{margin-left:-1216.008000px;}
._21_c00008{margin-left:-1139.779200px;}
._22_c00008{margin-left:-1120.032000px;}
._3d_c00008{margin-left:-1032.442800px;}
._3e_c00008{margin-left:-1012.536000px;}
._1c_c00008{margin-left:-767.782200px;}
._1d_c00008{margin-left:-748.008000px;}
._2f_c00008{margin-left:-401.085600px;}
._30_c00008{margin-left:-382.032000px;}
._28_c00008{margin-left:-10.492800px;}
._2c_c00008{margin-left:-9.182400px;}
._2_c00008{margin-left:-5.299200px;}
._3_c00008{margin-left:-2.642400px;}
._4_c00008{margin-left:-1.202400px;}
._7_c00008{width:1.497600px;}
._38_c00008{width:2.901000px;}
._1_c00008{width:4.032000px;}
._10_c00008{width:5.530200px;}
._46_c00008{width:7.001400px;}
._5_c00008{width:8.495400px;}
._43_c00008{width:9.553200px;}
._20_c00008{width:12.393600px;}
._18_c00008{width:13.943400px;}
._1b_c00008{width:15.931800px;}
._25_c00008{width:18.494400px;}
._29_c00008{width:21.221400px;}
._15_c00008{width:22.948800px;}
._f_c00008{width:1425.795600px;}
._c_c00008{width:1666.260000px;}
._8_c00008{width:1892.887200px;}
._d_c00008{width:1907.454600px;}
._e_c00008{width:1961.167200px;}
._a_c00008{width:2140.365600px;}
.fc0_c00008{color:rgb(0,0,0);}
.fs2_c00008{font-size:60.000000px;}
.fs1_c00008{font-size:72.000000px;}
.fs0_c00008{font-size:108.000000px;}
.y0_c00008{bottom:0.000000px;}
.y26_c00008{bottom:67.500000px;}
.y24_c00008{bottom:150.000000px;}
.y23_c00008{bottom:172.500000px;}
.y22_c00008{bottom:195.000000px;}
.y21_c00008{bottom:217.500000px;}
.y20_c00008{bottom:240.000000px;}
.y1f_c00008{bottom:262.500000px;}
.y1e_c00008{bottom:285.000000px;}
.y1d_c00008{bottom:307.500000px;}
.y1c_c00008{bottom:330.000000px;}
.y1b_c00008{bottom:352.500000px;}
.y1a_c00008{bottom:375.000000px;}
.y19_c00008{bottom:397.500000px;}
.y18_c00008{bottom:447.000000px;}
.y17_c00008{bottom:469.500000px;}
.y16_c00008{bottom:513.000000px;}
.y15_c00008{bottom:535.500000px;}
.y14_c00008{bottom:558.000000px;}
.y13_c00008{bottom:580.500000px;}
.y12_c00008{bottom:603.000000px;}
.y11_c00008{bottom:625.500000px;}
.y10_c00008{bottom:648.000000px;}
.yf_c00008{bottom:670.500000px;}
.ye_c00008{bottom:693.000000px;}
.yd_c00008{bottom:715.500000px;}
.yc_c00008{bottom:738.000000px;}
.yb_c00008{bottom:760.500000px;}
.ya_c00008{bottom:783.000000px;}
.y9_c00008{bottom:805.500000px;}
.y8_c00008{bottom:828.000000px;}
.y7_c00008{bottom:850.500000px;}
.y6_c00008{bottom:873.000000px;}
.y5_c00008{bottom:895.500000px;}
.y4_c00008{bottom:942.000000px;}
.y3_c00008{bottom:963.000000px;}
.y2_c00008{bottom:1008.000000px;}
.y1_c00008{bottom:1086.000000px;}
.y25_c00008{bottom:1194.000000px;}
.h4_c00008{height:54.785156px;}
.h3_c00008{height:67.746094px;}
.h2_c00008{height:68.062500px;}
.h1_c00008{height:102.093750px;}
.h0_c00008{height:1263.000000px;}
.w0_c00008{width:892.500000px;}
.x0_c00008{left:0.000000px;}
.x1_c00008{left:150.519750px;}
.x6_c00008{left:154.023600px;}
.x7_c00008{left:161.870700px;}
.x4_c00008{left:177.519750px;}
.x5_c00008{left:204.519750px;}
.x2_c00008{left:291.897600px;}
.x3_c00008{left:371.913150px;}
.x8_c00008{left:818.677350px;}
@media print{
.v0_c00008{vertical-align:0.000000pt;}
.ls1b_c00008{letter-spacing:-0.019200pt;}
.ls1c_c00008{letter-spacing:-0.012800pt;}
.ls1f_c00008{letter-spacing:-0.006400pt;}
.ls1d_c00008{letter-spacing:0.000000pt;}
.ls1e_c00008{letter-spacing:0.012800pt;}
.lsd_c00008{letter-spacing:339.545600pt;}
.ls6_c00008{letter-spacing:664.876800pt;}
.ls14_c00008{letter-spacing:900.038400pt;}
.ls8_c00008{letter-spacing:995.545600pt;}
.ls11_c00008{letter-spacing:1080.876800pt;}
.lsb_c00008{letter-spacing:1160.876800pt;}
.ls2_c00008{letter-spacing:1166.214400pt;}
.ls13_c00008{letter-spacing:1177.369600pt;}
.ls9_c00008{letter-spacing:1251.545600pt;}
.ls12_c00008{letter-spacing:1272.876800pt;}
.ls19_c00008{letter-spacing:1282.566400pt;}
.ls7_c00008{letter-spacing:1309.235200pt;}
.lsf_c00008{letter-spacing:1351.897600pt;}
.lsc_c00008{letter-spacing:1416.876800pt;}
.lsa_c00008{letter-spacing:1491.545600pt;}
.ls16_c00008{letter-spacing:1534.700800pt;}
.ls1_c00008{letter-spacing:1543.020800pt;}
.ls5_c00008{letter-spacing:1556.038400pt;}
.ls15_c00008{letter-spacing:1588.038400pt;}
.ls17_c00008{letter-spacing:1609.369600pt;}
.ls18_c00008{letter-spacing:1657.369600pt;}
.ls10_c00008{letter-spacing:1661.235200pt;}
.ls3_c00008{letter-spacing:1673.369600pt;}
.ls1a_c00008{letter-spacing:1720.876800pt;}
.ls4_c00008{letter-spacing:1758.700800pt;}
.ls0_c00008{letter-spacing:1815.027200pt;}
.lse_c00008{letter-spacing:2317.235200pt;}
.ws0_c00008{word-spacing:-17.779200pt;}
.wsa_c00008{word-spacing:-17.600000pt;}
.ws2_c00008{word-spacing:-17.593600pt;}
.ws8_c00008{word-spacing:-17.587200pt;}
.wsb_c00008{word-spacing:0.000000pt;}
.ws9_c00008{word-spacing:25.574400pt;}
.ws3_c00008{word-spacing:197.850133pt;}
.ws6_c00008{word-spacing:207.355733pt;}
.ws5_c00008{word-spacing:260.137067pt;}
.ws4_c00008{word-spacing:471.261867pt;}
.ws1_c00008{word-spacing:575.407467pt;}
.ws7_c00008{word-spacing:831.225067pt;}
._0_c00008{margin-left:-2333.934400pt;}
._31_c00008{margin-left:-2318.126933pt;}
._6_c00008{margin-left:-2238.818667pt;}
._9_c00008{margin-left:-2133.129067pt;}
._b_c00008{margin-left:-1984.289067pt;}
._16_c00008{margin-left:-1776.286933pt;}
._17_c00008{margin-left:-1758.720000pt;}
._4b_c00008{margin-left:-1737.793600pt;}
._4c_c00008{margin-left:-1720.896000pt;}
._13_c00008{margin-left:-1690.279467pt;}
._34_c00008{margin-left:-1678.047467pt;}
._47_c00008{margin-left:-1674.954133pt;}
._14_c00008{margin-left:-1673.408000pt;}
._35_c00008{margin-left:-1661.248000pt;}
._48_c00008{margin-left:-1657.408000pt;}
._44_c00008{margin-left:-1626.954667pt;}
._45_c00008{margin-left:-1609.408000pt;}
._3f_c00008{margin-left:-1605.379733pt;}
._40_c00008{margin-left:-1588.032000pt;}
._19_c00008{margin-left:-1573.621867pt;}
._1a_c00008{margin-left:-1556.032000pt;}
._41_c00008{margin-left:-1552.048533pt;}
._42_c00008{margin-left:-1534.720000pt;}
._26_c00008{margin-left:-1509.132800pt;}
._27_c00008{margin-left:-1491.584000pt;}
._2d_c00008{margin-left:-1434.090667pt;}
._2e_c00008{margin-left:-1416.896000pt;}
._32_c00008{margin-left:-1368.847467pt;}
._33_c00008{margin-left:-1351.936000pt;}
._1e_c00008{margin-left:-1326.048000pt;}
._1f_c00008{margin-left:-1309.248000pt;}
._49_c00008{margin-left:-1299.411733pt;}
._39_c00008{margin-left:-1290.467733pt;}
._4a_c00008{margin-left:-1282.560000pt;}
._3a_c00008{margin-left:-1272.896000pt;}
._23_c00008{margin-left:-1269.928533pt;}
._24_c00008{margin-left:-1251.584000pt;}
._3b_c00008{margin-left:-1194.281067pt;}
._11_c00008{margin-left:-1183.802133pt;}
._2a_c00008{margin-left:-1178.468800pt;}
._3c_c00008{margin-left:-1177.408000pt;}
._12_c00008{margin-left:-1166.208000pt;}
._2b_c00008{margin-left:-1160.896000pt;}
._36_c00008{margin-left:-1098.237867pt;}
._37_c00008{margin-left:-1080.896000pt;}
._21_c00008{margin-left:-1013.137067pt;}
._22_c00008{margin-left:-995.584000pt;}
._3d_c00008{margin-left:-917.726933pt;}
._3e_c00008{margin-left:-900.032000pt;}
._1c_c00008{margin-left:-682.473067pt;}
._1d_c00008{margin-left:-664.896000pt;}
._2f_c00008{margin-left:-356.520533pt;}
._30_c00008{margin-left:-339.584000pt;}
._28_c00008{margin-left:-9.326933pt;}
._2c_c00008{margin-left:-8.162133pt;}
._2_c00008{margin-left:-4.710400pt;}
._3_c00008{margin-left:-2.348800pt;}
._4_c00008{margin-left:-1.068800pt;}
._7_c00008{width:1.331200pt;}
._38_c00008{width:2.578667pt;}
._1_c00008{width:3.584000pt;}
._10_c00008{width:4.915733pt;}
._46_c00008{width:6.223467pt;}
._5_c00008{width:7.551467pt;}
._43_c00008{width:8.491733pt;}
._20_c00008{width:11.016533pt;}
._18_c00008{width:12.394133pt;}
._1b_c00008{width:14.161600pt;}
._25_c00008{width:16.439467pt;}
._29_c00008{width:18.863467pt;}
._15_c00008{width:20.398933pt;}
._f_c00008{width:1267.373867pt;}
._c_c00008{width:1481.120000pt;}
._8_c00008{width:1682.566400pt;}
._d_c00008{width:1695.515200pt;}
._e_c00008{width:1743.259733pt;}
._a_c00008{width:1902.547200pt;}
.fs2_c00008{font-size:53.333333pt;}
.fs1_c00008{font-size:64.000000pt;}
.fs0_c00008{font-size:96.000000pt;}
.y0_c00008{bottom:0.000000pt;}
.y26_c00008{bottom:60.000000pt;}
.y24_c00008{bottom:133.333333pt;}
.y23_c00008{bottom:153.333333pt;}
.y22_c00008{bottom:173.333333pt;}
.y21_c00008{bottom:193.333333pt;}
.y20_c00008{bottom:213.333333pt;}
.y1f_c00008{bottom:233.333333pt;}
.y1e_c00008{bottom:253.333333pt;}
.y1d_c00008{bottom:273.333333pt;}
.y1c_c00008{bottom:293.333333pt;}
.y1b_c00008{bottom:313.333333pt;}
.y1a_c00008{bottom:333.333333pt;}
.y19_c00008{bottom:353.333333pt;}
.y18_c00008{bottom:397.333333pt;}
.y17_c00008{bottom:417.333333pt;}
.y16_c00008{bottom:456.000000pt;}
.y15_c00008{bottom:476.000000pt;}
.y14_c00008{bottom:496.000000pt;}
.y13_c00008{bottom:516.000000pt;}
.y12_c00008{bottom:536.000000pt;}
.y11_c00008{bottom:556.000000pt;}
.y10_c00008{bottom:576.000000pt;}
.yf_c00008{bottom:596.000000pt;}
.ye_c00008{bottom:616.000000pt;}
.yd_c00008{bottom:636.000000pt;}
.yc_c00008{bottom:656.000000pt;}
.yb_c00008{bottom:676.000000pt;}
.ya_c00008{bottom:696.000000pt;}
.y9_c00008{bottom:716.000000pt;}
.y8_c00008{bottom:736.000000pt;}
.y7_c00008{bottom:756.000000pt;}
.y6_c00008{bottom:776.000000pt;}
.y5_c00008{bottom:796.000000pt;}
.y4_c00008{bottom:837.333333pt;}
.y3_c00008{bottom:856.000000pt;}
.y2_c00008{bottom:896.000000pt;}
.y1_c00008{bottom:965.333333pt;}
.y25_c00008{bottom:1061.333333pt;}
.h4_c00008{height:48.697917pt;}
.h3_c00008{height:60.218750pt;}
.h2_c00008{height:60.500000pt;}
.h1_c00008{height:90.750000pt;}
.h0_c00008{height:1122.666667pt;}
.w0_c00008{width:793.333333pt;}
.x0_c00008{left:0.000000pt;}
.x1_c00008{left:133.795333pt;}
.x6_c00008{left:136.909867pt;}
.x7_c00008{left:143.885067pt;}
.x4_c00008{left:157.795333pt;}
.x5_c00008{left:181.795333pt;}
.x2_c00008{left:259.464533pt;}
.x3_c00008{left:330.589467pt;}
.x8_c00008{left:727.713200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e5d49a4eb5eea9565965ceee.woff2')format("woff");}.ff1_c00009{font-family:ff1_c00009;line-height:0.932129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00009;src:url('chunks/assets/font_432f2d2a8a59cbe4e7c1cbe8.woff2')format("woff");}.ff2_c00009{font-family:ff2_c00009;line-height:0.933105;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00009;src:url('chunks/assets/font_074b97f953b2463047b27851.woff2')format("woff");}.ff3_c00009{font-family:ff3_c00009;line-height:0.755859;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00009;src:url('chunks/assets/font_792204759dcf6afca7a0490c.woff2')format("woff");}.ff4_c00009{font-family:ff4_c00009;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00009{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00009{vertical-align:0.000000px;}
.lsb_c00009{letter-spacing:-0.014400px;}
.lsd_c00009{letter-spacing:-0.007200px;}
.lsc_c00009{letter-spacing:0.000000px;}
.ls2_c00009{letter-spacing:0.007200px;}
.ls5_c00009{letter-spacing:7.917600px;}
.lsa_c00009{letter-spacing:9.710400px;}
.ls4_c00009{letter-spacing:9.745800px;}
.ls9_c00009{letter-spacing:13.331400px;}
.ls7_c00009{letter-spacing:13.473000px;}
.ls8_c00009{letter-spacing:15.968400px;}
.ls3_c00009{letter-spacing:18.604800px;}
.ls6_c00009{letter-spacing:21.066000px;}
.ls11_c00009{letter-spacing:966.333600px;}
.ls1c_c00009{letter-spacing:1260.331200px;}
.lsf_c00009{letter-spacing:1421.229600px;}
.ls15_c00009{letter-spacing:1452.333600px;}
.ls1b_c00009{letter-spacing:1453.435200px;}
.ls1d_c00009{letter-spacing:1512.331200px;}
.ls18_c00009{letter-spacing:1585.432800px;}
.ls17_c00009{letter-spacing:1621.432800px;}
.ls19_c00009{letter-spacing:1639.432800px;}
.ls12_c00009{letter-spacing:1656.331200px;}
.ls1a_c00009{letter-spacing:1657.432800px;}
.ls16_c00009{letter-spacing:1668.333600px;}
.ls14_c00009{letter-spacing:1806.883200px;}
.ls13_c00009{letter-spacing:1938.880800px;}
.lse_c00009{letter-spacing:1992.333600px;}
.ls10_c00009{letter-spacing:2034.331200px;}
.ls0_c00009{letter-spacing:2079.986400px;}
.ls1_c00009{letter-spacing:2169.986400px;}
.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;}
}
.ws3_c00009{word-spacing:-19.800000px;}
.ws1_c00009{word-spacing:-19.792800px;}
.ws0_c00009{word-spacing:-19.785600px;}
.ws4_c00009{word-spacing:-3.469800px;}
.ws5_c00009{word-spacing:0.000000px;}
.ws2_c00009{word-spacing:28.771200px;}
._32_c00009{margin-left:-2371.011180px;}
._4_c00009{margin-left:-2189.770800px;}
._5_c00009{margin-left:-2170.008000px;}
._1c_c00009{margin-left:-2101.013400px;}
._1_c00009{margin-left:-2099.771400px;}
._2_c00009{margin-left:-2080.008000px;}
._12_c00009{margin-left:-2054.115600px;}
._13_c00009{margin-left:-2034.360000px;}
._a_c00009{margin-left:-2012.116200px;}
._7_c00009{margin-left:-2006.116200px;}
._b_c00009{margin-left:-1992.384000px;}
._20_c00009{margin-left:-1958.598840px;}
._21_c00009{margin-left:-1938.888000px;}
._22_c00009{margin-left:-1825.767000px;}
._23_c00009{margin-left:-1806.912000px;}
._16_c00009{margin-left:-1754.118000px;}
._26_c00009{margin-left:-1688.181840px;}
._29_c00009{margin-left:-1681.906260px;}
._3a_c00009{margin-left:-1677.420600px;}
._1e_c00009{margin-left:-1676.020920px;}
._27_c00009{margin-left:-1668.384000px;}
._f_c00009{margin-left:-1664.118600px;}
._38_c00009{margin-left:-1658.575860px;}
._3b_c00009{margin-left:-1657.440000px;}
._1f_c00009{margin-left:-1656.360000px;}
._34_c00009{margin-left:-1640.313840px;}
._39_c00009{margin-left:-1638.566160px;}
._35_c00009{margin-left:-1621.440000px;}
._36_c00009{margin-left:-1605.301440px;}
._37_c00009{margin-left:-1585.440000px;}
._42_c00009{margin-left:-1532.563440px;}
._43_c00009{margin-left:-1512.360000px;}
._3c_c00009{margin-left:-1473.821100px;}
._24_c00009{margin-left:-1472.217240px;}
._3d_c00009{margin-left:-1453.464000px;}
._25_c00009{margin-left:-1452.384000px;}
._c_c00009{margin-left:-1441.112400px;}
._d_c00009{margin-left:-1421.280000px;}
._40_c00009{margin-left:-1394.016960px;}
._2c_c00009{margin-left:-1376.117400px;}
._3e_c00009{margin-left:-1280.204640px;}
._3f_c00009{margin-left:-1260.360000px;}
._19_c00009{margin-left:-986.124600px;}
._1a_c00009{margin-left:-966.384000px;}
._14_c00009{margin-left:-10.571940px;}
._2b_c00009{margin-left:-6.737400px;}
._30_c00009{margin-left:-5.393040px;}
._28_c00009{margin-left:-3.926340px;}
._2f_c00009{margin-left:-2.260800px;}
._0_c00009{margin-left:-1.229640px;}
._e_c00009{width:1.079160px;}
._1b_c00009{width:3.984360px;}
._31_c00009{width:5.228400px;}
._6_c00009{width:6.311160px;}
._2e_c00009{width:8.948100px;}
._9_c00009{width:10.271160px;}
._3_c00009{width:12.262560px;}
._15_c00009{width:13.983300px;}
._18_c00009{width:15.305160px;}
._11_c00009{width:18.204960px;}
._2d_c00009{width:1356.336000px;}
._41_c00009{width:1374.336000px;}
._10_c00009{width:1644.336000px;}
._2a_c00009{width:1662.336000px;}
._17_c00009{width:1734.336000px;}
._8_c00009{width:1986.336000px;}
._1d_c00009{width:2081.232000px;}
._33_c00009{width:2351.232000px;}
.fc0_c00009{color:rgb(0,0,0);}
.fs1_c00009{font-size:60.000000px;}
.fs0_c00009{font-size:72.000000px;}
.y0_c00009{bottom:0.000000px;}
.y2d_c00009{bottom:67.500000px;}
.y2b_c00009{bottom:150.000000px;}
.y2a_c00009{bottom:172.500000px;}
.y29_c00009{bottom:195.000000px;}
.y28_c00009{bottom:217.500000px;}
.y27_c00009{bottom:240.000000px;}
.y26_c00009{bottom:262.500000px;}
.y25_c00009{bottom:285.000000px;}
.y24_c00009{bottom:307.500000px;}
.y23_c00009{bottom:330.000000px;}
.y22_c00009{bottom:352.500000px;}
.y21_c00009{bottom:375.000000px;}
.y20_c00009{bottom:397.500000px;}
.y1f_c00009{bottom:420.000000px;}
.y1e_c00009{bottom:442.500000px;}
.y1d_c00009{bottom:465.000000px;}
.y1c_c00009{bottom:487.500000px;}
.y1b_c00009{bottom:510.000000px;}
.y1a_c00009{bottom:532.500000px;}
.y19_c00009{bottom:555.000000px;}
.y18_c00009{bottom:577.500000px;}
.y17_c00009{bottom:600.000000px;}
.y16_c00009{bottom:622.500000px;}
.y15_c00009{bottom:645.000000px;}
.y14_c00009{bottom:667.500000px;}
.y13_c00009{bottom:690.000000px;}
.y12_c00009{bottom:712.500000px;}
.y11_c00009{bottom:735.000000px;}
.y10_c00009{bottom:757.500000px;}
.yf_c00009{bottom:780.000000px;}
.ye_c00009{bottom:802.500000px;}
.yd_c00009{bottom:825.000000px;}
.yc_c00009{bottom:847.500000px;}
.yb_c00009{bottom:870.000000px;}
.ya_c00009{bottom:892.500000px;}
.y9_c00009{bottom:915.000000px;}
.y8_c00009{bottom:937.500000px;}
.y7_c00009{bottom:960.000000px;}
.y6_c00009{bottom:982.500000px;}
.y5_c00009{bottom:1005.000000px;}
.y4_c00009{bottom:1027.500000px;}
.y3_c00009{bottom:1050.000000px;}
.y2_c00009{bottom:1072.500000px;}
.y1_c00009{bottom:1095.000000px;}
.y2c_c00009{bottom:1194.000000px;}
.h4_c00009{height:44.208984px;}
.h1_c00009{height:51.257812px;}
.h2_c00009{height:51.328125px;}
.h3_c00009{height:56.074219px;}
.h0_c00009{height:1263.000000px;}
.w0_c00009{width:892.500000px;}
.x0_c00009{left:0.000000px;}
.x2_c00009{left:65.480310px;}
.x1_c00009{left:92.480310px;}
.x3_c00009{left:119.480310px;}
.x4_c00009{left:123.397305px;}
.x5_c00009{left:146.480310px;}
@media print{
.v0_c00009{vertical-align:0.000000pt;}
.lsb_c00009{letter-spacing:-0.012800pt;}
.lsd_c00009{letter-spacing:-0.006400pt;}
.lsc_c00009{letter-spacing:0.000000pt;}
.ls2_c00009{letter-spacing:0.006400pt;}
.ls5_c00009{letter-spacing:7.037867pt;}
.lsa_c00009{letter-spacing:8.631467pt;}
.ls4_c00009{letter-spacing:8.662933pt;}
.ls9_c00009{letter-spacing:11.850133pt;}
.ls7_c00009{letter-spacing:11.976000pt;}
.ls8_c00009{letter-spacing:14.194133pt;}
.ls3_c00009{letter-spacing:16.537600pt;}
.ls6_c00009{letter-spacing:18.725333pt;}
.ls11_c00009{letter-spacing:858.963200pt;}
.ls1c_c00009{letter-spacing:1120.294400pt;}
.lsf_c00009{letter-spacing:1263.315200pt;}
.ls15_c00009{letter-spacing:1290.963200pt;}
.ls1b_c00009{letter-spacing:1291.942400pt;}
.ls1d_c00009{letter-spacing:1344.294400pt;}
.ls18_c00009{letter-spacing:1409.273600pt;}
.ls17_c00009{letter-spacing:1441.273600pt;}
.ls19_c00009{letter-spacing:1457.273600pt;}
.ls12_c00009{letter-spacing:1472.294400pt;}
.ls1a_c00009{letter-spacing:1473.273600pt;}
.ls16_c00009{letter-spacing:1482.963200pt;}
.ls14_c00009{letter-spacing:1606.118400pt;}
.ls13_c00009{letter-spacing:1723.449600pt;}
.lse_c00009{letter-spacing:1770.963200pt;}
.ls10_c00009{letter-spacing:1808.294400pt;}
.ls0_c00009{letter-spacing:1848.876800pt;}
.ls1_c00009{letter-spacing:1928.876800pt;}
.ws3_c00009{word-spacing:-17.600000pt;}
.ws1_c00009{word-spacing:-17.593600pt;}
.ws0_c00009{word-spacing:-17.587200pt;}
.ws4_c00009{word-spacing:-3.084267pt;}
.ws5_c00009{word-spacing:0.000000pt;}
.ws2_c00009{word-spacing:25.574400pt;}
._32_c00009{margin-left:-2107.565493pt;}
._4_c00009{margin-left:-1946.462933pt;}
._5_c00009{margin-left:-1928.896000pt;}
._1c_c00009{margin-left:-1867.567467pt;}
._1_c00009{margin-left:-1866.463467pt;}
._2_c00009{margin-left:-1848.896000pt;}
._12_c00009{margin-left:-1825.880533pt;}
._13_c00009{margin-left:-1808.320000pt;}
._a_c00009{margin-left:-1788.547733pt;}
._7_c00009{margin-left:-1783.214400pt;}
._b_c00009{margin-left:-1771.008000pt;}
._20_c00009{margin-left:-1740.976747pt;}
._21_c00009{margin-left:-1723.456000pt;}
._22_c00009{margin-left:-1622.904000pt;}
._23_c00009{margin-left:-1606.144000pt;}
._16_c00009{margin-left:-1559.216000pt;}
._26_c00009{margin-left:-1500.606080pt;}
._29_c00009{margin-left:-1495.027787pt;}
._3a_c00009{margin-left:-1491.040533pt;}
._1e_c00009{margin-left:-1489.796373pt;}
._27_c00009{margin-left:-1483.008000pt;}
._f_c00009{margin-left:-1479.216533pt;}
._38_c00009{margin-left:-1474.289653pt;}
._3b_c00009{margin-left:-1473.280000pt;}
._1f_c00009{margin-left:-1472.320000pt;}
._34_c00009{margin-left:-1458.056747pt;}
._39_c00009{margin-left:-1456.503253pt;}
._35_c00009{margin-left:-1441.280000pt;}
._36_c00009{margin-left:-1426.934613pt;}
._37_c00009{margin-left:-1409.280000pt;}
._42_c00009{margin-left:-1362.278613pt;}
._43_c00009{margin-left:-1344.320000pt;}
._3c_c00009{margin-left:-1310.063200pt;}
._24_c00009{margin-left:-1308.637547pt;}
._3d_c00009{margin-left:-1291.968000pt;}
._25_c00009{margin-left:-1291.008000pt;}
._c_c00009{margin-left:-1280.988800pt;}
._d_c00009{margin-left:-1263.360000pt;}
._40_c00009{margin-left:-1239.126187pt;}
._2c_c00009{margin-left:-1223.215467pt;}
._3e_c00009{margin-left:-1137.959680pt;}
._3f_c00009{margin-left:-1120.320000pt;}
._19_c00009{margin-left:-876.555200pt;}
._1a_c00009{margin-left:-859.008000pt;}
._14_c00009{margin-left:-9.397280pt;}
._2b_c00009{margin-left:-5.988800pt;}
._30_c00009{margin-left:-4.793813pt;}
._28_c00009{margin-left:-3.490080pt;}
._2f_c00009{margin-left:-2.009600pt;}
._0_c00009{margin-left:-1.093013pt;}
._e_c00009{width:0.959253pt;}
._1b_c00009{width:3.541653pt;}
._31_c00009{width:4.647467pt;}
._6_c00009{width:5.609920pt;}
._2e_c00009{width:7.953867pt;}
._9_c00009{width:9.129920pt;}
._3_c00009{width:10.900053pt;}
._15_c00009{width:12.429600pt;}
._18_c00009{width:13.604587pt;}
._11_c00009{width:16.182187pt;}
._2d_c00009{width:1205.632000pt;}
._41_c00009{width:1221.632000pt;}
._10_c00009{width:1461.632000pt;}
._2a_c00009{width:1477.632000pt;}
._17_c00009{width:1541.632000pt;}
._8_c00009{width:1765.632000pt;}
._1d_c00009{width:1849.984000pt;}
._33_c00009{width:2089.984000pt;}
.fs1_c00009{font-size:53.333333pt;}
.fs0_c00009{font-size:64.000000pt;}
.y0_c00009{bottom:0.000000pt;}
.y2d_c00009{bottom:60.000000pt;}
.y2b_c00009{bottom:133.333333pt;}
.y2a_c00009{bottom:153.333333pt;}
.y29_c00009{bottom:173.333333pt;}
.y28_c00009{bottom:193.333333pt;}
.y27_c00009{bottom:213.333333pt;}
.y26_c00009{bottom:233.333333pt;}
.y25_c00009{bottom:253.333333pt;}
.y24_c00009{bottom:273.333333pt;}
.y23_c00009{bottom:293.333333pt;}
.y22_c00009{bottom:313.333333pt;}
.y21_c00009{bottom:333.333333pt;}
.y20_c00009{bottom:353.333333pt;}
.y1f_c00009{bottom:373.333333pt;}
.y1e_c00009{bottom:393.333333pt;}
.y1d_c00009{bottom:413.333333pt;}
.y1c_c00009{bottom:433.333333pt;}
.y1b_c00009{bottom:453.333333pt;}
.y1a_c00009{bottom:473.333333pt;}
.y19_c00009{bottom:493.333333pt;}
.y18_c00009{bottom:513.333333pt;}
.y17_c00009{bottom:533.333333pt;}
.y16_c00009{bottom:553.333333pt;}
.y15_c00009{bottom:573.333333pt;}
.y14_c00009{bottom:593.333333pt;}
.y13_c00009{bottom:613.333333pt;}
.y12_c00009{bottom:633.333333pt;}
.y11_c00009{bottom:653.333333pt;}
.y10_c00009{bottom:673.333333pt;}
.yf_c00009{bottom:693.333333pt;}
.ye_c00009{bottom:713.333333pt;}
.yd_c00009{bottom:733.333333pt;}
.yc_c00009{bottom:753.333333pt;}
.yb_c00009{bottom:773.333333pt;}
.ya_c00009{bottom:793.333333pt;}
.y9_c00009{bottom:813.333333pt;}
.y8_c00009{bottom:833.333333pt;}
.y7_c00009{bottom:853.333333pt;}
.y6_c00009{bottom:873.333333pt;}
.y5_c00009{bottom:893.333333pt;}
.y4_c00009{bottom:913.333333pt;}
.y3_c00009{bottom:933.333333pt;}
.y2_c00009{bottom:953.333333pt;}
.y1_c00009{bottom:973.333333pt;}
.y2c_c00009{bottom:1061.333333pt;}
.h4_c00009{height:39.296875pt;}
.h1_c00009{height:45.562500pt;}
.h2_c00009{height:45.625000pt;}
.h3_c00009{height:49.843750pt;}
.h0_c00009{height:1122.666667pt;}
.w0_c00009{width:793.333333pt;}
.x0_c00009{left:0.000000pt;}
.x2_c00009{left:58.204720pt;}
.x1_c00009{left:82.204720pt;}
.x3_c00009{left:106.204720pt;}
.x4_c00009{left:109.686493pt;}
.x5_c00009{left:130.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e1d9d26c0f5e8eb67f03af5c.woff2')format("woff");}.ff1_c00010{font-family:ff1_c00010;line-height:1.163086;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00010;src:url('chunks/assets/font_1315af77998edf73bcf1cb6e.woff2')format("woff");}.ff2_c00010{font-family:ff2_c00010;line-height:0.933105;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00010;src:url('chunks/assets/font_61cbb81a41fa073561fcf7df.woff2')format("woff");}.ff3_c00010{font-family:ff3_c00010;line-height:0.997559;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00010;src:url('chunks/assets/font_005fd7b24be7d23736b0bb9f.woff2')format("woff");}.ff4_c00010{font-family:ff4_c00010;line-height:0.931641;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00010{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00010{vertical-align:0.000000px;}
.ls4_c00010{letter-spacing:-0.014400px;}
.ls6_c00010{letter-spacing:-0.007200px;}
.ls5_c00010{letter-spacing:0.000000px;}
.ls2_c00010{letter-spacing:0.007200px;}
.ls0_c00010{letter-spacing:3.206400px;}
.ls1_c00010{letter-spacing:20.116800px;}
.ls3_c00010{letter-spacing:23.034600px;}
.ls15_c00010{letter-spacing:107.229600px;}
.lsf_c00010{letter-spacing:185.234400px;}
.ls12_c00010{letter-spacing:305.229600px;}
.ls7_c00010{letter-spacing:739.432800px;}
.lsd_c00010{letter-spacing:890.676000px;}
.ls18_c00010{letter-spacing:1015.437600px;}
.ls1a_c00010{letter-spacing:1075.435200px;}
.ls8_c00010{letter-spacing:1111.435200px;}
.ls9_c00010{letter-spacing:1255.435200px;}
.ls10_c00010{letter-spacing:1421.229600px;}
.ls13_c00010{letter-spacing:1445.234400px;}
.ls19_c00010{letter-spacing:1471.435200px;}
.ls11_c00010{letter-spacing:1553.234400px;}
.ls14_c00010{letter-spacing:1650.333600px;}
.lsc_c00010{letter-spacing:1767.225600px;}
.ls17_c00010{letter-spacing:1806.883200px;}
.lse_c00010{letter-spacing:1820.678400px;}
.lsa_c00010{letter-spacing:1880.676000px;}
.lsb_c00010{letter-spacing:1899.230400px;}
.ls16_c00010{letter-spacing:1938.880800px;}
.ls1b_c00010{letter-spacing:2124.331200px;}
.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;}
}
.ws4_c00010{word-spacing:-19.807200px;}
.ws2_c00010{word-spacing:-19.800000px;}
.ws1_c00010{word-spacing:-19.792800px;}
.ws0_c00010{word-spacing:-19.785600px;}
.ws3_c00010{word-spacing:-3.540600px;}
.ws9_c00010{word-spacing:-3.469800px;}
.wsa_c00010{word-spacing:0.000000px;}
.ws5_c00010{word-spacing:28.771200px;}
.ws8_c00010{word-spacing:301.683000px;}
.ws7_c00010{word-spacing:409.747200px;}
.ws6_c00010{word-spacing:449.333400px;}
._2e_c00010{margin-left:-2479.013400px;}
._13_c00010{margin-left:-2371.011000px;}
._38_c00010{margin-left:-2360.115000px;}
._48_c00010{margin-left:-2143.142400px;}
._49_c00010{margin-left:-2124.360000px;}
._3a_c00010{margin-left:-1958.598600px;}
._3b_c00010{margin-left:-1938.888000px;}
._b_c00010{margin-left:-1918.943400px;}
._9_c00010{margin-left:-1900.473000px;}
._c_c00010{margin-left:-1899.216000px;}
._a_c00010{margin-left:-1880.712000px;}
._19_c00010{margin-left:-1840.512000px;}
._3c_c00010{margin-left:-1826.643600px;}
._1a_c00010{margin-left:-1820.664000px;}
._3d_c00010{margin-left:-1806.912000px;}
._d_c00010{margin-left:-1787.059200px;}
._e_c00010{margin-left:-1767.240000px;}
._3f_c00010{margin-left:-1718.118000px;}
._2a_c00010{margin-left:-1682.119200px;}
._28_c00010{margin-left:-1669.747200px;}
._29_c00010{margin-left:-1650.384000px;}
._22_c00010{margin-left:-1573.017600px;}
._23_c00010{margin-left:-1553.256000px;}
._43_c00010{margin-left:-1491.010200px;}
._44_c00010{margin-left:-1471.464000px;}
._26_c00010{margin-left:-1464.643200px;}
._27_c00010{margin-left:-1445.256000px;}
._1e_c00010{margin-left:-1440.074400px;}
._1f_c00010{margin-left:-1421.280000px;}
._7_c00010{margin-left:-1275.223200px;}
._8_c00010{margin-left:-1255.464000px;}
._4_c00010{margin-left:-1130.997600px;}
._5_c00010{margin-left:-1111.464000px;}
._46_c00010{margin-left:-1095.225000px;}
._47_c00010{margin-left:-1075.464000px;}
._41_c00010{margin-left:-1035.153600px;}
._42_c00010{margin-left:-1015.488000px;}
._15_c00010{margin-left:-910.746600px;}
._16_c00010{margin-left:-890.712000px;}
._2_c00010{margin-left:-759.227400px;}
._3_c00010{margin-left:-739.440000px;}
._24_c00010{margin-left:-324.328800px;}
._25_c00010{margin-left:-305.280000px;}
._1c_c00010{margin-left:-204.333600px;}
._1d_c00010{margin-left:-185.256000px;}
._2c_c00010{margin-left:-126.228000px;}
._2d_c00010{margin-left:-107.280000px;}
._17_c00010{margin-left:-10.573800px;}
._18_c00010{margin-left:-9.287400px;}
._1b_c00010{margin-left:-5.299200px;}
._20_c00010{margin-left:-3.945600px;}
._12_c00010{margin-left:-2.620800px;}
._0_c00010{margin-left:-1.236000px;}
._36_c00010{width:1.015800px;}
._f_c00010{width:2.746200px;}
._6_c00010{width:7.188000px;}
._45_c00010{width:8.205000px;}
._21_c00010{width:9.396000px;}
._1_c00010{width:10.617000px;}
._10_c00010{width:13.528800px;}
._11_c00010{width:16.150200px;}
._3e_c00010{width:21.253200px;}
._33_c00010{width:25.264200px;}
._30_c00010{width:27.828000px;}
._32_c00010{width:29.054400px;}
._34_c00010{width:30.470400px;}
._31_c00010{width:33.105600px;}
._2b_c00010{width:1662.336000px;}
._40_c00010{width:1698.336000px;}
._35_c00010{width:1870.854000px;}
._39_c00010{width:2034.256200px;}
._2f_c00010{width:2044.941000px;}
._37_c00010{width:2081.232000px;}
._14_c00010{width:2351.232000px;}
.fc0_c00010{color:rgb(0,0,0);}
.fs1_c00010{font-size:60.000000px;}
.fs0_c00010{font-size:72.000000px;}
.y0_c00010{bottom:0.000000px;}
.y29_c00010{bottom:67.500000px;}
.y27_c00010{bottom:145.500000px;}
.y26_c00010{bottom:168.000000px;}
.y25_c00010{bottom:190.500000px;}
.y24_c00010{bottom:213.000000px;}
.y23_c00010{bottom:235.500000px;}
.y22_c00010{bottom:258.000000px;}
.y21_c00010{bottom:280.500000px;}
.y20_c00010{bottom:303.000000px;}
.y1f_c00010{bottom:325.500000px;}
.y1e_c00010{bottom:348.000000px;}
.y1d_c00010{bottom:370.500000px;}
.y1c_c00010{bottom:393.000000px;}
.y1b_c00010{bottom:415.500000px;}
.y1a_c00010{bottom:438.000000px;}
.y19_c00010{bottom:484.500000px;}
.y18_c00010{bottom:529.500000px;}
.y17_c00010{bottom:552.000000px;}
.y16_c00010{bottom:574.500000px;}
.y15_c00010{bottom:597.000000px;}
.y14_c00010{bottom:619.500000px;}
.y13_c00010{bottom:642.000000px;}
.y12_c00010{bottom:691.500000px;}
.y11_c00010{bottom:714.000000px;}
.y10_c00010{bottom:757.500000px;}
.yf_c00010{bottom:780.000000px;}
.ye_c00010{bottom:802.500000px;}
.yd_c00010{bottom:825.000000px;}
.yc_c00010{bottom:847.500000px;}
.yb_c00010{bottom:870.000000px;}
.ya_c00010{bottom:892.500000px;}
.y9_c00010{bottom:915.000000px;}
.y8_c00010{bottom:937.500000px;}
.y7_c00010{bottom:960.000000px;}
.y6_c00010{bottom:982.500000px;}
.y5_c00010{bottom:1005.000000px;}
.y4_c00010{bottom:1027.500000px;}
.y3_c00010{bottom:1050.000000px;}
.y2_c00010{bottom:1072.500000px;}
.y1_c00010{bottom:1095.000000px;}
.y28_c00010{bottom:1194.000000px;}
.h3_c00010{height:54.785156px;}
.h1_c00010{height:67.746094px;}
.h2_c00010{height:68.062500px;}
.h0_c00010{height:1263.000000px;}
.w0_c00010{width:892.500000px;}
.x0_c00010{left:0.000000px;}
.x5_c00010{left:150.519750px;}
.x7_c00010{left:161.870700px;}
.x2_c00010{left:177.519750px;}
.x3_c00010{left:204.519750px;}
.x4_c00010{left:208.436700px;}
.x1_c00010{left:231.519750px;}
.x6_c00010{left:327.194400px;}
.x8_c00010{left:818.677350px;}
@media print{
.v0_c00010{vertical-align:0.000000pt;}
.ls4_c00010{letter-spacing:-0.012800pt;}
.ls6_c00010{letter-spacing:-0.006400pt;}
.ls5_c00010{letter-spacing:0.000000pt;}
.ls2_c00010{letter-spacing:0.006400pt;}
.ls0_c00010{letter-spacing:2.850133pt;}
.ls1_c00010{letter-spacing:17.881600pt;}
.ls3_c00010{letter-spacing:20.475200pt;}
.ls15_c00010{letter-spacing:95.315200pt;}
.lsf_c00010{letter-spacing:164.652800pt;}
.ls12_c00010{letter-spacing:271.315200pt;}
.ls7_c00010{letter-spacing:657.273600pt;}
.lsd_c00010{letter-spacing:791.712000pt;}
.ls18_c00010{letter-spacing:902.611200pt;}
.ls1a_c00010{letter-spacing:955.942400pt;}
.ls8_c00010{letter-spacing:987.942400pt;}
.ls9_c00010{letter-spacing:1115.942400pt;}
.ls10_c00010{letter-spacing:1263.315200pt;}
.ls13_c00010{letter-spacing:1284.652800pt;}
.ls19_c00010{letter-spacing:1307.942400pt;}
.ls11_c00010{letter-spacing:1380.652800pt;}
.ls14_c00010{letter-spacing:1466.963200pt;}
.lsc_c00010{letter-spacing:1570.867200pt;}
.ls17_c00010{letter-spacing:1606.118400pt;}
.lse_c00010{letter-spacing:1618.380800pt;}
.lsa_c00010{letter-spacing:1671.712000pt;}
.lsb_c00010{letter-spacing:1688.204800pt;}
.ls16_c00010{letter-spacing:1723.449600pt;}
.ls1b_c00010{letter-spacing:1888.294400pt;}
.ws4_c00010{word-spacing:-17.606400pt;}
.ws2_c00010{word-spacing:-17.600000pt;}
.ws1_c00010{word-spacing:-17.593600pt;}
.ws0_c00010{word-spacing:-17.587200pt;}
.ws3_c00010{word-spacing:-3.147200pt;}
.ws9_c00010{word-spacing:-3.084267pt;}
.wsa_c00010{word-spacing:0.000000pt;}
.ws5_c00010{word-spacing:25.574400pt;}
.ws8_c00010{word-spacing:268.162667pt;}
.ws7_c00010{word-spacing:364.219733pt;}
.ws6_c00010{word-spacing:399.407467pt;}
._2e_c00010{margin-left:-2203.567467pt;}
._13_c00010{margin-left:-2107.565333pt;}
._38_c00010{margin-left:-2097.880000pt;}
._48_c00010{margin-left:-1905.015467pt;}
._49_c00010{margin-left:-1888.320000pt;}
._3a_c00010{margin-left:-1740.976533pt;}
._3b_c00010{margin-left:-1723.456000pt;}
._b_c00010{margin-left:-1705.727467pt;}
._9_c00010{margin-left:-1689.309333pt;}
._c_c00010{margin-left:-1688.192000pt;}
._a_c00010{margin-left:-1671.744000pt;}
._19_c00010{margin-left:-1636.010667pt;}
._3c_c00010{margin-left:-1623.683200pt;}
._1a_c00010{margin-left:-1618.368000pt;}
._3d_c00010{margin-left:-1606.144000pt;}
._d_c00010{margin-left:-1588.497067pt;}
._e_c00010{margin-left:-1570.880000pt;}
._3f_c00010{margin-left:-1527.216000pt;}
._2a_c00010{margin-left:-1495.217067pt;}
._28_c00010{margin-left:-1484.219733pt;}
._29_c00010{margin-left:-1467.008000pt;}
._22_c00010{margin-left:-1398.237867pt;}
._23_c00010{margin-left:-1380.672000pt;}
._43_c00010{margin-left:-1325.342400pt;}
._44_c00010{margin-left:-1307.968000pt;}
._26_c00010{margin-left:-1301.905067pt;}
._27_c00010{margin-left:-1284.672000pt;}
._1e_c00010{margin-left:-1280.066133pt;}
._1f_c00010{margin-left:-1263.360000pt;}
._7_c00010{margin-left:-1133.531733pt;}
._8_c00010{margin-left:-1115.968000pt;}
._4_c00010{margin-left:-1005.331200pt;}
._5_c00010{margin-left:-987.968000pt;}
._46_c00010{margin-left:-973.533333pt;}
._47_c00010{margin-left:-955.968000pt;}
._41_c00010{margin-left:-920.136533pt;}
._42_c00010{margin-left:-902.656000pt;}
._15_c00010{margin-left:-809.552533pt;}
._16_c00010{margin-left:-791.744000pt;}
._2_c00010{margin-left:-674.868800pt;}
._3_c00010{margin-left:-657.280000pt;}
._24_c00010{margin-left:-288.292267pt;}
._25_c00010{margin-left:-271.360000pt;}
._1c_c00010{margin-left:-181.629867pt;}
._1d_c00010{margin-left:-164.672000pt;}
._2c_c00010{margin-left:-112.202667pt;}
._2d_c00010{margin-left:-95.360000pt;}
._17_c00010{margin-left:-9.398933pt;}
._18_c00010{margin-left:-8.255467pt;}
._1b_c00010{margin-left:-4.710400pt;}
._20_c00010{margin-left:-3.507200pt;}
._12_c00010{margin-left:-2.329600pt;}
._0_c00010{margin-left:-1.098667pt;}
._36_c00010{width:0.902933pt;}
._f_c00010{width:2.441067pt;}
._6_c00010{width:6.389333pt;}
._45_c00010{width:7.293333pt;}
._21_c00010{width:8.352000pt;}
._1_c00010{width:9.437333pt;}
._10_c00010{width:12.025600pt;}
._11_c00010{width:14.355733pt;}
._3e_c00010{width:18.891733pt;}
._33_c00010{width:22.457067pt;}
._30_c00010{width:24.736000pt;}
._32_c00010{width:25.826133pt;}
._34_c00010{width:27.084800pt;}
._31_c00010{width:29.427200pt;}
._2b_c00010{width:1477.632000pt;}
._40_c00010{width:1509.632000pt;}
._35_c00010{width:1662.981333pt;}
._39_c00010{width:1808.227733pt;}
._2f_c00010{width:1817.725333pt;}
._37_c00010{width:1849.984000pt;}
._14_c00010{width:2089.984000pt;}
.fs1_c00010{font-size:53.333333pt;}
.fs0_c00010{font-size:64.000000pt;}
.y0_c00010{bottom:0.000000pt;}
.y29_c00010{bottom:60.000000pt;}
.y27_c00010{bottom:129.333333pt;}
.y26_c00010{bottom:149.333333pt;}
.y25_c00010{bottom:169.333333pt;}
.y24_c00010{bottom:189.333333pt;}
.y23_c00010{bottom:209.333333pt;}
.y22_c00010{bottom:229.333333pt;}
.y21_c00010{bottom:249.333333pt;}
.y20_c00010{bottom:269.333333pt;}
.y1f_c00010{bottom:289.333333pt;}
.y1e_c00010{bottom:309.333333pt;}
.y1d_c00010{bottom:329.333333pt;}
.y1c_c00010{bottom:349.333333pt;}
.y1b_c00010{bottom:369.333333pt;}
.y1a_c00010{bottom:389.333333pt;}
.y19_c00010{bottom:430.666667pt;}
.y18_c00010{bottom:470.666667pt;}
.y17_c00010{bottom:490.666667pt;}
.y16_c00010{bottom:510.666667pt;}
.y15_c00010{bottom:530.666667pt;}
.y14_c00010{bottom:550.666667pt;}
.y13_c00010{bottom:570.666667pt;}
.y12_c00010{bottom:614.666667pt;}
.y11_c00010{bottom:634.666667pt;}
.y10_c00010{bottom:673.333333pt;}
.yf_c00010{bottom:693.333333pt;}
.ye_c00010{bottom:713.333333pt;}
.yd_c00010{bottom:733.333333pt;}
.yc_c00010{bottom:753.333333pt;}
.yb_c00010{bottom:773.333333pt;}
.ya_c00010{bottom:793.333333pt;}
.y9_c00010{bottom:813.333333pt;}
.y8_c00010{bottom:833.333333pt;}
.y7_c00010{bottom:853.333333pt;}
.y6_c00010{bottom:873.333333pt;}
.y5_c00010{bottom:893.333333pt;}
.y4_c00010{bottom:913.333333pt;}
.y3_c00010{bottom:933.333333pt;}
.y2_c00010{bottom:953.333333pt;}
.y1_c00010{bottom:973.333333pt;}
.y28_c00010{bottom:1061.333333pt;}
.h3_c00010{height:48.697917pt;}
.h1_c00010{height:60.218750pt;}
.h2_c00010{height:60.500000pt;}
.h0_c00010{height:1122.666667pt;}
.w0_c00010{width:793.333333pt;}
.x0_c00010{left:0.000000pt;}
.x5_c00010{left:133.795333pt;}
.x7_c00010{left:143.885067pt;}
.x2_c00010{left:157.795333pt;}
.x3_c00010{left:181.795333pt;}
.x4_c00010{left:185.277067pt;}
.x1_c00010{left:205.795333pt;}
.x6_c00010{left:290.839467pt;}
.x8_c00010{left:727.713200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6728d923336d5248086477fc.woff2')format("woff");}.ff1_c00011{font-family:ff1_c00011;line-height:1.163086;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00011;src:url('chunks/assets/font_8417ddbf52502ecf40254a97.woff2')format("woff");}.ff2_c00011{font-family:ff2_c00011;line-height:0.756836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00011;src:url('chunks/assets/font_1cda676bbe6c0e3d296312cc.woff2')format("woff");}.ff3_c00011{font-family:ff3_c00011;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00011{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00011{vertical-align:0.000000px;}
.ls0_c00011{letter-spacing:-0.014400px;}
.ls2_c00011{letter-spacing:-0.007200px;}
.ls1_c00011{letter-spacing:0.000000px;}
.ls14_c00011{letter-spacing:128.534400px;}
.ls1e_c00011{letter-spacing:433.432800px;}
.ls13_c00011{letter-spacing:626.536800px;}
.ls1c_c00011{letter-spacing:640.879200px;}
.ls18_c00011{letter-spacing:668.534400px;}
.ls15_c00011{letter-spacing:728.539200px;}
.ls1d_c00011{letter-spacing:808.876800px;}
.ls1b_c00011{letter-spacing:842.536800px;}
.ls11_c00011{letter-spacing:872.539200px;}
.ls19_c00011{letter-spacing:884.534400px;}
.ls10_c00011{letter-spacing:908.539200px;}
.ls17_c00011{letter-spacing:974.534400px;}
.ls16_c00011{letter-spacing:1058.536800px;}
.lsb_c00011{letter-spacing:1063.432800px;}
.ls1a_c00011{letter-spacing:1064.534400px;}
.lsa_c00011{letter-spacing:1123.437600px;}
.lsc_c00011{letter-spacing:1153.432800px;}
.ls12_c00011{letter-spacing:1165.982400px;}
.ls5_c00011{letter-spacing:1177.437600px;}
.ls6_c00011{letter-spacing:1207.432800px;}
.ls7_c00011{letter-spacing:1285.437600px;}
.lsd_c00011{letter-spacing:1422.331200px;}
.lse_c00011{letter-spacing:1423.432800px;}
.lsf_c00011{letter-spacing:1465.984800px;}
.ls4_c00011{letter-spacing:1806.883200px;}
.ls3_c00011{letter-spacing:1938.880800px;}
.ls8_c00011{letter-spacing:2064.333600px;}
.ls9_c00011{letter-spacing:2154.333600px;}
.ls1f_c00011{letter-spacing:2178.331200px;}
.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;}
}
.ws3_c00011{word-spacing:-19.800000px;}
.ws2_c00011{word-spacing:-19.792800px;}
.ws0_c00011{word-spacing:-19.785600px;}
.ws5_c00011{word-spacing:-4.242900px;}
.ws7_c00011{word-spacing:-3.573300px;}
.ws1_c00011{word-spacing:-3.469800px;}
.ws8_c00011{word-spacing:0.000000px;}
.ws4_c00011{word-spacing:382.449360px;}
.ws6_c00011{word-spacing:1174.167960px;}
._4d_c00011{margin-left:-2197.234440px;}
._4e_c00011{margin-left:-2178.360000px;}
._14_c00011{margin-left:-2174.088540px;}
._15_c00011{margin-left:-2154.384000px;}
._12_c00011{margin-left:-2084.115600px;}
._13_c00011{margin-left:-2064.384000px;}
._f_c00011{margin-left:-2025.220800px;}
._0_c00011{margin-left:-1958.598840px;}
._1_c00011{margin-left:-1938.888000px;}
._3_c00011{margin-left:-1826.668200px;}
._4_c00011{margin-left:-1806.912000px;}
._4b_c00011{margin-left:-1700.760240px;}
._23_c00011{margin-left:-1485.772800px;}
._24_c00011{margin-left:-1465.992000px;}
._20_c00011{margin-left:-1443.222600px;}
._1d_c00011{margin-left:-1442.121000px;}
._21_c00011{margin-left:-1423.440000px;}
._1e_c00011{margin-left:-1422.360000px;}
._d_c00011{margin-left:-1305.223800px;}
._e_c00011{margin-left:-1285.488000px;}
._a_c00011{margin-left:-1227.224400px;}
._b_c00011{margin-left:-1207.440000px;}
._6_c00011{margin-left:-1197.224400px;}
._2b_c00011{margin-left:-1185.775200px;}
._7_c00011{margin-left:-1177.488000px;}
._1a_c00011{margin-left:-1172.626800px;}
._2c_c00011{margin-left:-1165.968000px;}
._1b_c00011{margin-left:-1153.440000px;}
._16_c00011{margin-left:-1143.861840px;}
._17_c00011{margin-left:-1123.488000px;}
._3f_c00011{margin-left:-1084.769760px;}
._18_c00011{margin-left:-1082.763600px;}
._35_c00011{margin-left:-1077.600960px;}
._40_c00011{margin-left:-1064.520000px;}
._19_c00011{margin-left:-1063.440000px;}
._36_c00011{margin-left:-1058.544000px;}
._39_c00011{margin-left:-994.327200px;}
._3a_c00011{margin-left:-974.520000px;}
._25_c00011{margin-left:-929.187360px;}
._26_c00011{margin-left:-908.568000px;}
._3d_c00011{margin-left:-903.812160px;}
._27_c00011{margin-left:-892.042200px;}
._3e_c00011{margin-left:-884.520000px;}
._28_c00011{margin-left:-872.568000px;}
._41_c00011{margin-left:-861.601200px;}
._42_c00011{margin-left:-842.544000px;}
._46_c00011{margin-left:-827.689560px;}
._47_c00011{margin-left:-808.920000px;}
._33_c00011{margin-left:-748.173960px;}
._34_c00011{margin-left:-728.568000px;}
._3b_c00011{margin-left:-688.281360px;}
._3c_c00011{margin-left:-668.520000px;}
._44_c00011{margin-left:-660.674400px;}
._2d_c00011{margin-left:-646.397160px;}
._45_c00011{margin-left:-640.872000px;}
._2e_c00011{margin-left:-626.544000px;}
._48_c00011{margin-left:-453.027240px;}
._49_c00011{margin-left:-433.440000px;}
._30_c00011{margin-left:-148.334400px;}
._31_c00011{margin-left:-128.520000px;}
._29_c00011{margin-left:-10.554000px;}
._37_c00011{margin-left:-3.930600px;}
._32_c00011{margin-left:-2.526600px;}
._22_c00011{margin-left:-1.273200px;}
._9_c00011{width:1.426800px;}
._8_c00011{width:2.723760px;}
._11_c00011{width:4.323360px;}
._38_c00011{width:5.469000px;}
._2_c00011{width:7.212360px;}
._2f_c00011{width:10.229400px;}
._43_c00011{width:12.052800px;}
._5_c00011{width:13.640160px;}
._1f_c00011{width:14.804760px;}
._2a_c00011{width:16.008000px;}
._1c_c00011{width:18.131160px;}
._c_c00011{width:20.875560px;}
._4a_c00011{width:823.903800px;}
._10_c00011{width:1615.362000px;}
._4c_c00011{width:1680.336000px;}
.fc0_c00011{color:rgb(0,0,0);}
.fs1_c00011{font-size:60.000000px;}
.fs0_c00011{font-size:72.000000px;}
.y0_c00011{bottom:0.000000px;}
.y2d_c00011{bottom:67.500000px;}
.y2b_c00011{bottom:150.000000px;}
.y2a_c00011{bottom:172.500000px;}
.y29_c00011{bottom:195.000000px;}
.y28_c00011{bottom:217.500000px;}
.y27_c00011{bottom:240.000000px;}
.y26_c00011{bottom:262.500000px;}
.y25_c00011{bottom:285.000000px;}
.y24_c00011{bottom:307.500000px;}
.y23_c00011{bottom:330.000000px;}
.y22_c00011{bottom:352.500000px;}
.y21_c00011{bottom:375.000000px;}
.y20_c00011{bottom:397.500000px;}
.y1f_c00011{bottom:420.000000px;}
.y1e_c00011{bottom:442.500000px;}
.y1d_c00011{bottom:465.000000px;}
.y1c_c00011{bottom:487.500000px;}
.y1b_c00011{bottom:510.000000px;}
.y1a_c00011{bottom:532.500000px;}
.y19_c00011{bottom:555.000000px;}
.y18_c00011{bottom:577.500000px;}
.y17_c00011{bottom:600.000000px;}
.y16_c00011{bottom:622.500000px;}
.y15_c00011{bottom:645.000000px;}
.y14_c00011{bottom:667.500000px;}
.y13_c00011{bottom:690.000000px;}
.y12_c00011{bottom:712.500000px;}
.y11_c00011{bottom:735.000000px;}
.y10_c00011{bottom:757.500000px;}
.yf_c00011{bottom:780.000000px;}
.ye_c00011{bottom:802.500000px;}
.yd_c00011{bottom:825.000000px;}
.yc_c00011{bottom:847.500000px;}
.yb_c00011{bottom:870.000000px;}
.ya_c00011{bottom:892.500000px;}
.y9_c00011{bottom:915.000000px;}
.y8_c00011{bottom:937.500000px;}
.y7_c00011{bottom:960.000000px;}
.y6_c00011{bottom:982.500000px;}
.y5_c00011{bottom:1005.000000px;}
.y4_c00011{bottom:1027.500000px;}
.y3_c00011{bottom:1050.000000px;}
.y2_c00011{bottom:1072.500000px;}
.y1_c00011{bottom:1095.000000px;}
.y2c_c00011{bottom:1194.000000px;}
.h3_c00011{height:44.208984px;}
.h2_c00011{height:56.074219px;}
.h1_c00011{height:67.746094px;}
.h0_c00011{height:1263.000000px;}
.w0_c00011{width:892.500000px;}
.x0_c00011{left:0.000000px;}
.x6_c00011{left:65.480310px;}
.x3_c00011{left:92.480310px;}
.x1_c00011{left:119.480310px;}
.x2_c00011{left:146.480310px;}
.x4_c00011{left:173.480250px;}
.x5_c00011{left:200.480250px;}
@media print{
.v0_c00011{vertical-align:0.000000pt;}
.ls0_c00011{letter-spacing:-0.012800pt;}
.ls2_c00011{letter-spacing:-0.006400pt;}
.ls1_c00011{letter-spacing:0.000000pt;}
.ls14_c00011{letter-spacing:114.252800pt;}
.ls1e_c00011{letter-spacing:385.273600pt;}
.ls13_c00011{letter-spacing:556.921600pt;}
.ls1c_c00011{letter-spacing:569.670400pt;}
.ls18_c00011{letter-spacing:594.252800pt;}
.ls15_c00011{letter-spacing:647.590400pt;}
.ls1d_c00011{letter-spacing:719.001600pt;}
.ls1b_c00011{letter-spacing:748.921600pt;}
.ls11_c00011{letter-spacing:775.590400pt;}
.ls19_c00011{letter-spacing:786.252800pt;}
.ls10_c00011{letter-spacing:807.590400pt;}
.ls17_c00011{letter-spacing:866.252800pt;}
.ls16_c00011{letter-spacing:940.921600pt;}
.lsb_c00011{letter-spacing:945.273600pt;}
.ls1a_c00011{letter-spacing:946.252800pt;}
.lsa_c00011{letter-spacing:998.611200pt;}
.lsc_c00011{letter-spacing:1025.273600pt;}
.ls12_c00011{letter-spacing:1036.428800pt;}
.ls5_c00011{letter-spacing:1046.611200pt;}
.ls6_c00011{letter-spacing:1073.273600pt;}
.ls7_c00011{letter-spacing:1142.611200pt;}
.lsd_c00011{letter-spacing:1264.294400pt;}
.lse_c00011{letter-spacing:1265.273600pt;}
.lsf_c00011{letter-spacing:1303.097600pt;}
.ls4_c00011{letter-spacing:1606.118400pt;}
.ls3_c00011{letter-spacing:1723.449600pt;}
.ls8_c00011{letter-spacing:1834.963200pt;}
.ls9_c00011{letter-spacing:1914.963200pt;}
.ls1f_c00011{letter-spacing:1936.294400pt;}
.ws3_c00011{word-spacing:-17.600000pt;}
.ws2_c00011{word-spacing:-17.593600pt;}
.ws0_c00011{word-spacing:-17.587200pt;}
.ws5_c00011{word-spacing:-3.771467pt;}
.ws7_c00011{word-spacing:-3.176267pt;}
.ws1_c00011{word-spacing:-3.084267pt;}
.ws8_c00011{word-spacing:0.000000pt;}
.ws4_c00011{word-spacing:339.954987pt;}
.ws6_c00011{word-spacing:1043.704853pt;}
._4d_c00011{margin-left:-1953.097280pt;}
._4e_c00011{margin-left:-1936.320000pt;}
._14_c00011{margin-left:-1932.523147pt;}
._15_c00011{margin-left:-1915.008000pt;}
._12_c00011{margin-left:-1852.547200pt;}
._13_c00011{margin-left:-1835.008000pt;}
._f_c00011{margin-left:-1800.196267pt;}
._0_c00011{margin-left:-1740.976747pt;}
._1_c00011{margin-left:-1723.456000pt;}
._3_c00011{margin-left:-1623.705067pt;}
._4_c00011{margin-left:-1606.144000pt;}
._4b_c00011{margin-left:-1511.786880pt;}
._23_c00011{margin-left:-1320.686933pt;}
._24_c00011{margin-left:-1303.104000pt;}
._20_c00011{margin-left:-1282.864533pt;}
._1d_c00011{margin-left:-1281.885333pt;}
._21_c00011{margin-left:-1265.280000pt;}
._1e_c00011{margin-left:-1264.320000pt;}
._d_c00011{margin-left:-1160.198933pt;}
._e_c00011{margin-left:-1142.656000pt;}
._a_c00011{margin-left:-1090.866133pt;}
._b_c00011{margin-left:-1073.280000pt;}
._6_c00011{margin-left:-1064.199467pt;}
._2b_c00011{margin-left:-1054.022400pt;}
._7_c00011{margin-left:-1046.656000pt;}
._1a_c00011{margin-left:-1042.334933pt;}
._2c_c00011{margin-left:-1036.416000pt;}
._1b_c00011{margin-left:-1025.280000pt;}
._16_c00011{margin-left:-1016.766080pt;}
._17_c00011{margin-left:-998.656000pt;}
._3f_c00011{margin-left:-964.239787pt;}
._18_c00011{margin-left:-962.456533pt;}
._35_c00011{margin-left:-957.867520pt;}
._40_c00011{margin-left:-946.240000pt;}
._19_c00011{margin-left:-945.280000pt;}
._36_c00011{margin-left:-940.928000pt;}
._39_c00011{margin-left:-883.846400pt;}
._3a_c00011{margin-left:-866.240000pt;}
._25_c00011{margin-left:-825.944320pt;}
._26_c00011{margin-left:-807.616000pt;}
._3d_c00011{margin-left:-803.388587pt;}
._27_c00011{margin-left:-792.926400pt;}
._3e_c00011{margin-left:-786.240000pt;}
._28_c00011{margin-left:-775.616000pt;}
._41_c00011{margin-left:-765.867733pt;}
._42_c00011{margin-left:-748.928000pt;}
._46_c00011{margin-left:-735.724053pt;}
._47_c00011{margin-left:-719.040000pt;}
._33_c00011{margin-left:-665.043520pt;}
._34_c00011{margin-left:-647.616000pt;}
._3b_c00011{margin-left:-611.805653pt;}
._3c_c00011{margin-left:-594.240000pt;}
._44_c00011{margin-left:-587.266133pt;}
._2d_c00011{margin-left:-574.575253pt;}
._45_c00011{margin-left:-569.664000pt;}
._2e_c00011{margin-left:-556.928000pt;}
._48_c00011{margin-left:-402.690880pt;}
._49_c00011{margin-left:-385.280000pt;}
._30_c00011{margin-left:-131.852800pt;}
._31_c00011{margin-left:-114.240000pt;}
._29_c00011{margin-left:-9.381333pt;}
._37_c00011{margin-left:-3.493867pt;}
._32_c00011{margin-left:-2.245867pt;}
._22_c00011{margin-left:-1.131733pt;}
._9_c00011{width:1.268267pt;}
._8_c00011{width:2.421120pt;}
._11_c00011{width:3.842987pt;}
._38_c00011{width:4.861333pt;}
._2_c00011{width:6.410987pt;}
._2f_c00011{width:9.092800pt;}
._43_c00011{width:10.713600pt;}
._5_c00011{width:12.124587pt;}
._1f_c00011{width:13.159787pt;}
._2a_c00011{width:14.229333pt;}
._1c_c00011{width:16.116587pt;}
._c_c00011{width:18.556053pt;}
._4a_c00011{width:732.358933pt;}
._10_c00011{width:1435.877333pt;}
._4c_c00011{width:1493.632000pt;}
.fs1_c00011{font-size:53.333333pt;}
.fs0_c00011{font-size:64.000000pt;}
.y0_c00011{bottom:0.000000pt;}
.y2d_c00011{bottom:60.000000pt;}
.y2b_c00011{bottom:133.333333pt;}
.y2a_c00011{bottom:153.333333pt;}
.y29_c00011{bottom:173.333333pt;}
.y28_c00011{bottom:193.333333pt;}
.y27_c00011{bottom:213.333333pt;}
.y26_c00011{bottom:233.333333pt;}
.y25_c00011{bottom:253.333333pt;}
.y24_c00011{bottom:273.333333pt;}
.y23_c00011{bottom:293.333333pt;}
.y22_c00011{bottom:313.333333pt;}
.y21_c00011{bottom:333.333333pt;}
.y20_c00011{bottom:353.333333pt;}
.y1f_c00011{bottom:373.333333pt;}
.y1e_c00011{bottom:393.333333pt;}
.y1d_c00011{bottom:413.333333pt;}
.y1c_c00011{bottom:433.333333pt;}
.y1b_c00011{bottom:453.333333pt;}
.y1a_c00011{bottom:473.333333pt;}
.y19_c00011{bottom:493.333333pt;}
.y18_c00011{bottom:513.333333pt;}
.y17_c00011{bottom:533.333333pt;}
.y16_c00011{bottom:553.333333pt;}
.y15_c00011{bottom:573.333333pt;}
.y14_c00011{bottom:593.333333pt;}
.y13_c00011{bottom:613.333333pt;}
.y12_c00011{bottom:633.333333pt;}
.y11_c00011{bottom:653.333333pt;}
.y10_c00011{bottom:673.333333pt;}
.yf_c00011{bottom:693.333333pt;}
.ye_c00011{bottom:713.333333pt;}
.yd_c00011{bottom:733.333333pt;}
.yc_c00011{bottom:753.333333pt;}
.yb_c00011{bottom:773.333333pt;}
.ya_c00011{bottom:793.333333pt;}
.y9_c00011{bottom:813.333333pt;}
.y8_c00011{bottom:833.333333pt;}
.y7_c00011{bottom:853.333333pt;}
.y6_c00011{bottom:873.333333pt;}
.y5_c00011{bottom:893.333333pt;}
.y4_c00011{bottom:913.333333pt;}
.y3_c00011{bottom:933.333333pt;}
.y2_c00011{bottom:953.333333pt;}
.y1_c00011{bottom:973.333333pt;}
.y2c_c00011{bottom:1061.333333pt;}
.h3_c00011{height:39.296875pt;}
.h2_c00011{height:49.843750pt;}
.h1_c00011{height:60.218750pt;}
.h0_c00011{height:1122.666667pt;}
.w0_c00011{width:793.333333pt;}
.x0_c00011{left:0.000000pt;}
.x6_c00011{left:58.204720pt;}
.x3_c00011{left:82.204720pt;}
.x1_c00011{left:106.204720pt;}
.x2_c00011{left:130.204720pt;}
.x4_c00011{left:154.204667pt;}
.x5_c00011{left:178.204667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a1b862c63fc16b7f1b02d88d.woff2')format("woff");}.ff1_c00012{font-family:ff1_c00012;line-height:0.934082;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00012;src:url('chunks/assets/font_0045b93dc23b1cbd6399fae4.woff2')format("woff");}.ff2_c00012{font-family:ff2_c00012;line-height:0.932617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00012{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00012{vertical-align:0.000000px;}
.ls1_c00012{letter-spacing:-0.014400px;}
.ls3_c00012{letter-spacing:-0.007200px;}
.ls2_c00012{letter-spacing:0.000000px;}
.ls0_c00012{letter-spacing:0.014400px;}
.ls10_c00012{letter-spacing:1287.777600px;}
.lse_c00012{letter-spacing:1586.678400px;}
.ls11_c00012{letter-spacing:1671.775200px;}
.ls9_c00012{letter-spacing:1737.777600px;}
.ls6_c00012{letter-spacing:1742.673600px;}
.ls15_c00012{letter-spacing:1754.676000px;}
.ls8_c00012{letter-spacing:1767.225600px;}
.lsa_c00012{letter-spacing:1773.777600px;}
.ls5_c00012{letter-spacing:1806.883200px;}
.ls7_c00012{letter-spacing:1899.230400px;}
.ls4_c00012{letter-spacing:1938.880800px;}
.lsd_c00012{letter-spacing:1982.678400px;}
.ls13_c00012{letter-spacing:1988.676000px;}
.ls12_c00012{letter-spacing:2000.678400px;}
.lsc_c00012{letter-spacing:2012.673600px;}
.lsb_c00012{letter-spacing:2066.673600px;}
.ls16_c00012{letter-spacing:2078.676000px;}
.lsf_c00012{letter-spacing:2108.678400px;}
.ls14_c00012{letter-spacing:2120.673600px;}
.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;}
}
.wsa_c00012{word-spacing:-19.814400px;}
.ws3_c00012{word-spacing:-19.800000px;}
.ws2_c00012{word-spacing:-19.792800px;}
.ws0_c00012{word-spacing:-19.785600px;}
.ws6_c00012{word-spacing:-8.491800px;}
.ws7_c00012{word-spacing:-8.085600px;}
.ws8_c00012{word-spacing:-8.013600px;}
.ws9_c00012{word-spacing:-7.611000px;}
.ws4_c00012{word-spacing:-3.540600px;}
.ws1_c00012{word-spacing:-3.469800px;}
.ws5_c00012{word-spacing:-0.190200px;}
.wsb_c00012{word-spacing:0.000000px;}
._26_c00012{margin-left:-2140.379400px;}
._19_c00012{margin-left:-2128.448400px;}
._27_c00012{margin-left:-2120.688000px;}
._1a_c00012{margin-left:-2108.664000px;}
._2b_c00012{margin-left:-2099.442600px;}
._10_c00012{margin-left:-2086.449000px;}
._2c_c00012{margin-left:-2078.712000px;}
._11_c00012{margin-left:-2066.688000px;}
._12_c00012{margin-left:-2032.441800px;}
._21_c00012{margin-left:-2019.887400px;}
._13_c00012{margin-left:-2012.688000px;}
._24_c00012{margin-left:-2008.459800px;}
._15_c00012{margin-left:-2002.459800px;}
._22_c00012{margin-left:-2000.664000px;}
._25_c00012{margin-left:-1988.712000px;}
._16_c00012{margin-left:-1982.664000px;}
._0_c00012{margin-left:-1958.598600px;}
._1_c00012{margin-left:-1938.888000px;}
._8_c00012{margin-left:-1918.943400px;}
._9_c00012{margin-left:-1899.216000px;}
._3_c00012{margin-left:-1826.667600px;}
._4_c00012{margin-left:-1806.912000px;}
._e_c00012{margin-left:-1793.525400px;}
._a_c00012{margin-left:-1787.083200px;}
._f_c00012{margin-left:-1773.792000px;}
._b_c00012{margin-left:-1767.240000px;}
._6_c00012{margin-left:-1762.461600px;}
._c_c00012{margin-left:-1757.489400px;}
._29_c00012{margin-left:-1755.381600px;}
._7_c00012{margin-left:-1742.688000px;}
._d_c00012{margin-left:-1737.792000px;}
._1f_c00012{margin-left:-1691.563200px;}
._20_c00012{margin-left:-1671.768000px;}
._17_c00012{margin-left:-1606.591200px;}
._18_c00012{margin-left:-1586.664000px;}
._1c_c00012{margin-left:-1307.566800px;}
._1d_c00012{margin-left:-1287.792000px;}
._2d_c00012{margin-left:-1.008000px;}
._2a_c00012{width:1.046400px;}
._1b_c00012{width:2.104800px;}
._5_c00012{width:3.576600px;}
._14_c00012{width:5.821200px;}
._2_c00012{width:7.212000px;}
._23_c00012{width:10.069200px;}
._1e_c00012{width:11.598000px;}
._28_c00012{width:17.544600px;}
.fc0_c00012{color:rgb(0,0,0);}
.fs1_c00012{font-size:60.000000px;}
.fs0_c00012{font-size:72.000000px;}
.y0_c00012{bottom:0.000000px;}
.y2d_c00012{bottom:67.500000px;}
.y2b_c00012{bottom:150.000000px;}
.y2a_c00012{bottom:172.500000px;}
.y29_c00012{bottom:195.000000px;}
.y28_c00012{bottom:217.500000px;}
.y27_c00012{bottom:240.000000px;}
.y26_c00012{bottom:262.500000px;}
.y25_c00012{bottom:285.000000px;}
.y24_c00012{bottom:307.500000px;}
.y23_c00012{bottom:330.000000px;}
.y22_c00012{bottom:352.500000px;}
.y21_c00012{bottom:375.000000px;}
.y20_c00012{bottom:397.500000px;}
.y1f_c00012{bottom:420.000000px;}
.y1e_c00012{bottom:442.500000px;}
.y1d_c00012{bottom:465.000000px;}
.y1c_c00012{bottom:487.500000px;}
.y1b_c00012{bottom:510.000000px;}
.y1a_c00012{bottom:532.500000px;}
.y19_c00012{bottom:555.000000px;}
.y18_c00012{bottom:577.500000px;}
.y17_c00012{bottom:600.000000px;}
.y16_c00012{bottom:622.500000px;}
.y15_c00012{bottom:645.000000px;}
.y14_c00012{bottom:667.500000px;}
.y13_c00012{bottom:690.000000px;}
.y12_c00012{bottom:712.500000px;}
.y11_c00012{bottom:735.000000px;}
.y10_c00012{bottom:757.500000px;}
.yf_c00012{bottom:780.000000px;}
.ye_c00012{bottom:802.500000px;}
.yd_c00012{bottom:825.000000px;}
.yc_c00012{bottom:847.500000px;}
.yb_c00012{bottom:870.000000px;}
.ya_c00012{bottom:892.500000px;}
.y9_c00012{bottom:915.000000px;}
.y8_c00012{bottom:937.500000px;}
.y7_c00012{bottom:960.000000px;}
.y6_c00012{bottom:982.500000px;}
.y5_c00012{bottom:1005.000000px;}
.y4_c00012{bottom:1027.500000px;}
.y3_c00012{bottom:1050.000000px;}
.y2_c00012{bottom:1072.500000px;}
.y1_c00012{bottom:1095.000000px;}
.y2c_c00012{bottom:1194.000000px;}
.h1_c00012{height:51.257812px;}
.h2_c00012{height:54.785156px;}
.h0_c00012{height:1263.000000px;}
.w0_c00012{width:892.500000px;}
.x0_c00012{left:0.000000px;}
.x4_c00012{left:161.870700px;}
.x2_c00012{left:177.519750px;}
.x1_c00012{left:204.519750px;}
.x3_c00012{left:231.519750px;}
.x5_c00012{left:818.677350px;}
@media print{
.v0_c00012{vertical-align:0.000000pt;}
.ls1_c00012{letter-spacing:-0.012800pt;}
.ls3_c00012{letter-spacing:-0.006400pt;}
.ls2_c00012{letter-spacing:0.000000pt;}
.ls0_c00012{letter-spacing:0.012800pt;}
.ls10_c00012{letter-spacing:1144.691200pt;}
.lse_c00012{letter-spacing:1410.380800pt;}
.ls11_c00012{letter-spacing:1486.022400pt;}
.ls9_c00012{letter-spacing:1544.691200pt;}
.ls6_c00012{letter-spacing:1549.043200pt;}
.ls15_c00012{letter-spacing:1559.712000pt;}
.ls8_c00012{letter-spacing:1570.867200pt;}
.lsa_c00012{letter-spacing:1576.691200pt;}
.ls5_c00012{letter-spacing:1606.118400pt;}
.ls7_c00012{letter-spacing:1688.204800pt;}
.ls4_c00012{letter-spacing:1723.449600pt;}
.lsd_c00012{letter-spacing:1762.380800pt;}
.ls13_c00012{letter-spacing:1767.712000pt;}
.ls12_c00012{letter-spacing:1778.380800pt;}
.lsc_c00012{letter-spacing:1789.043200pt;}
.lsb_c00012{letter-spacing:1837.043200pt;}
.ls16_c00012{letter-spacing:1847.712000pt;}
.lsf_c00012{letter-spacing:1874.380800pt;}
.ls14_c00012{letter-spacing:1885.043200pt;}
.wsa_c00012{word-spacing:-17.612800pt;}
.ws3_c00012{word-spacing:-17.600000pt;}
.ws2_c00012{word-spacing:-17.593600pt;}
.ws0_c00012{word-spacing:-17.587200pt;}
.ws6_c00012{word-spacing:-7.548267pt;}
.ws7_c00012{word-spacing:-7.187200pt;}
.ws8_c00012{word-spacing:-7.123200pt;}
.ws9_c00012{word-spacing:-6.765333pt;}
.ws4_c00012{word-spacing:-3.147200pt;}
.ws1_c00012{word-spacing:-3.084267pt;}
.ws5_c00012{word-spacing:-0.169067pt;}
.wsb_c00012{word-spacing:0.000000pt;}
._26_c00012{margin-left:-1902.559467pt;}
._19_c00012{margin-left:-1891.954133pt;}
._27_c00012{margin-left:-1885.056000pt;}
._1a_c00012{margin-left:-1874.368000pt;}
._2b_c00012{margin-left:-1866.171200pt;}
._10_c00012{margin-left:-1854.621333pt;}
._2c_c00012{margin-left:-1847.744000pt;}
._11_c00012{margin-left:-1837.056000pt;}
._12_c00012{margin-left:-1806.614933pt;}
._21_c00012{margin-left:-1795.455467pt;}
._13_c00012{margin-left:-1789.056000pt;}
._24_c00012{margin-left:-1785.297600pt;}
._15_c00012{margin-left:-1779.964267pt;}
._22_c00012{margin-left:-1778.368000pt;}
._25_c00012{margin-left:-1767.744000pt;}
._16_c00012{margin-left:-1762.368000pt;}
._0_c00012{margin-left:-1740.976533pt;}
._1_c00012{margin-left:-1723.456000pt;}
._8_c00012{margin-left:-1705.727467pt;}
._9_c00012{margin-left:-1688.192000pt;}
._3_c00012{margin-left:-1623.704533pt;}
._4_c00012{margin-left:-1606.144000pt;}
._e_c00012{margin-left:-1594.244800pt;}
._a_c00012{margin-left:-1588.518400pt;}
._f_c00012{margin-left:-1576.704000pt;}
._b_c00012{margin-left:-1570.880000pt;}
._6_c00012{margin-left:-1566.632533pt;}
._c_c00012{margin-left:-1562.212800pt;}
._29_c00012{margin-left:-1560.339200pt;}
._7_c00012{margin-left:-1549.056000pt;}
._d_c00012{margin-left:-1544.704000pt;}
._1f_c00012{margin-left:-1503.611733pt;}
._20_c00012{margin-left:-1486.016000pt;}
._17_c00012{margin-left:-1428.081067pt;}
._18_c00012{margin-left:-1410.368000pt;}
._1c_c00012{margin-left:-1162.281600pt;}
._1d_c00012{margin-left:-1144.704000pt;}
._2d_c00012{margin-left:-0.896000pt;}
._2a_c00012{width:0.930133pt;}
._1b_c00012{width:1.870933pt;}
._5_c00012{width:3.179200pt;}
._14_c00012{width:5.174400pt;}
._2_c00012{width:6.410667pt;}
._23_c00012{width:8.950400pt;}
._1e_c00012{width:10.309333pt;}
._28_c00012{width:15.595200pt;}
.fs1_c00012{font-size:53.333333pt;}
.fs0_c00012{font-size:64.000000pt;}
.y0_c00012{bottom:0.000000pt;}
.y2d_c00012{bottom:60.000000pt;}
.y2b_c00012{bottom:133.333333pt;}
.y2a_c00012{bottom:153.333333pt;}
.y29_c00012{bottom:173.333333pt;}
.y28_c00012{bottom:193.333333pt;}
.y27_c00012{bottom:213.333333pt;}
.y26_c00012{bottom:233.333333pt;}
.y25_c00012{bottom:253.333333pt;}
.y24_c00012{bottom:273.333333pt;}
.y23_c00012{bottom:293.333333pt;}
.y22_c00012{bottom:313.333333pt;}
.y21_c00012{bottom:333.333333pt;}
.y20_c00012{bottom:353.333333pt;}
.y1f_c00012{bottom:373.333333pt;}
.y1e_c00012{bottom:393.333333pt;}
.y1d_c00012{bottom:413.333333pt;}
.y1c_c00012{bottom:433.333333pt;}
.y1b_c00012{bottom:453.333333pt;}
.y1a_c00012{bottom:473.333333pt;}
.y19_c00012{bottom:493.333333pt;}
.y18_c00012{bottom:513.333333pt;}
.y17_c00012{bottom:533.333333pt;}
.y16_c00012{bottom:553.333333pt;}
.y15_c00012{bottom:573.333333pt;}
.y14_c00012{bottom:593.333333pt;}
.y13_c00012{bottom:613.333333pt;}
.y12_c00012{bottom:633.333333pt;}
.y11_c00012{bottom:653.333333pt;}
.y10_c00012{bottom:673.333333pt;}
.yf_c00012{bottom:693.333333pt;}
.ye_c00012{bottom:713.333333pt;}
.yd_c00012{bottom:733.333333pt;}
.yc_c00012{bottom:753.333333pt;}
.yb_c00012{bottom:773.333333pt;}
.ya_c00012{bottom:793.333333pt;}
.y9_c00012{bottom:813.333333pt;}
.y8_c00012{bottom:833.333333pt;}
.y7_c00012{bottom:853.333333pt;}
.y6_c00012{bottom:873.333333pt;}
.y5_c00012{bottom:893.333333pt;}
.y4_c00012{bottom:913.333333pt;}
.y3_c00012{bottom:933.333333pt;}
.y2_c00012{bottom:953.333333pt;}
.y1_c00012{bottom:973.333333pt;}
.y2c_c00012{bottom:1061.333333pt;}
.h1_c00012{height:45.562500pt;}
.h2_c00012{height:48.697917pt;}
.h0_c00012{height:1122.666667pt;}
.w0_c00012{width:793.333333pt;}
.x0_c00012{left:0.000000pt;}
.x4_c00012{left:143.885067pt;}
.x2_c00012{left:157.795333pt;}
.x1_c00012{left:181.795333pt;}
.x3_c00012{left:205.795333pt;}
.x5_c00012{left:727.713200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a3d54fd2bbc8fb75a8681fec.woff2')format("woff");}.ff1_c00013{font-family:ff1_c00013;line-height:0.932129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00013;src:url('chunks/assets/font_98f9e8416ac1a5f73fe7bed5.woff2')format("woff");}.ff2_c00013{font-family:ff2_c00013;line-height:0.755859;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00013;src:url('chunks/assets/font_e631aa976100a18f6042010c.woff2')format("woff");}.ff3_c00013{font-family:ff3_c00013;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00013{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00013{vertical-align:0.000000px;}
.ls1_c00013{letter-spacing:-0.014400px;}
.ls3_c00013{letter-spacing:-0.007200px;}
.ls2_c00013{letter-spacing:0.000000px;}
.ls0_c00013{letter-spacing:0.007200px;}
.ls17_c00013{letter-spacing:0.012000px;}
.lsb_c00013{letter-spacing:693.777600px;}
.lsa_c00013{letter-spacing:1059.775200px;}
.lsf_c00013{letter-spacing:1431.777600px;}
.lse_c00013{letter-spacing:1461.780000px;}
.ls7_c00013{letter-spacing:1593.777600px;}
.ls8_c00013{letter-spacing:1641.780000px;}
.ls4_c00013{letter-spacing:1767.225600px;}
.ls10_c00013{letter-spacing:1796.673600px;}
.ls6_c00013{letter-spacing:1899.230400px;}
.ls11_c00013{letter-spacing:1922.673600px;}
.ls16_c00013{letter-spacing:1976.673600px;}
.ls15_c00013{letter-spacing:2000.678400px;}
.lsc_c00013{letter-spacing:2006.676000px;}
.ls14_c00013{letter-spacing:2012.673600px;}
.ls9_c00013{letter-spacing:2030.673600px;}
.lsd_c00013{letter-spacing:2072.678400px;}
.ls13_c00013{letter-spacing:2102.673600px;}
.ls12_c00013{letter-spacing:2108.678400px;}
.ls5_c00013{letter-spacing:2120.673600px;}
.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;}
}
.ws3_c00013{word-spacing:-19.807200px;}
.ws1_c00013{word-spacing:-19.800000px;}
.ws2_c00013{word-spacing:-19.792800px;}
.ws0_c00013{word-spacing:-19.785600px;}
.ws6_c00013{word-spacing:-9.093720px;}
.ws7_c00013{word-spacing:-8.352120px;}
.ws5_c00013{word-spacing:-7.754520px;}
.ws4_c00013{word-spacing:-3.540000px;}
.ws8_c00013{word-spacing:-2.714520px;}
.ws9_c00013{word-spacing:-1.979520px;}
.wsa_c00013{word-spacing:0.000000px;}
._5_c00013{margin-left:-2140.458600px;}
._26_c00013{margin-left:-2127.576000px;}
._28_c00013{margin-left:-2122.399320px;}
._6_c00013{margin-left:-2120.688000px;}
._27_c00013{margin-left:-2108.664000px;}
._29_c00013{margin-left:-2102.688000px;}
._17_c00013{margin-left:-2092.441320px;}
._18_c00013{margin-left:-2072.664000px;}
._d_c00013{margin-left:-2050.405320px;}
._2a_c00013{margin-left:-2032.412520px;}
._e_c00013{margin-left:-2030.688000px;}
._15_c00013{margin-left:-2026.452000px;}
._2d_c00013{margin-left:-2020.459200px;}
._2b_c00013{margin-left:-2012.688000px;}
._16_c00013{margin-left:-2006.712000px;}
._2e_c00013{margin-left:-2000.664000px;}
._2f_c00013{margin-left:-1996.441920px;}
._30_c00013{margin-left:-1976.688000px;}
._24_c00013{margin-left:-1942.460400px;}
._25_c00013{margin-left:-1922.688000px;}
._7_c00013{margin-left:-1918.944240px;}
._8_c00013{margin-left:-1899.216000px;}
._20_c00013{margin-left:-1815.620640px;}
._21_c00013{margin-left:-1796.688000px;}
._1_c00013{margin-left:-1787.012400px;}
._2_c00013{margin-left:-1767.240000px;}
._b_c00013{margin-left:-1661.499840px;}
._c_c00013{margin-left:-1641.816000px;}
._9_c00013{margin-left:-1612.951200px;}
._a_c00013{margin-left:-1593.792000px;}
._1b_c00013{margin-left:-1481.565600px;}
._1c_c00013{margin-left:-1461.816000px;}
._1e_c00013{margin-left:-1451.566200px;}
._1f_c00013{margin-left:-1431.792000px;}
._10_c00013{margin-left:-1079.569200px;}
._11_c00013{margin-left:-1059.768000px;}
._13_c00013{margin-left:-713.572200px;}
._14_c00013{margin-left:-693.792000px;}
._19_c00013{margin-left:-10.525440px;}
._3_c00013{margin-left:-6.253320px;}
._22_c00013{margin-left:-4.899720px;}
._31_c00013{margin-left:-3.216000px;}
._12_c00013{margin-left:-1.418040px;}
._2c_c00013{width:1.292160px;}
._4_c00013{width:2.872080px;}
._23_c00013{width:4.436280px;}
._1d_c00013{width:5.898360px;}
._0_c00013{width:7.140960px;}
._f_c00013{width:8.860560px;}
._1a_c00013{width:16.142400px;}
.fc0_c00013{color:rgb(0,0,0);}
.fs1_c00013{font-size:60.000000px;}
.fs0_c00013{font-size:72.000000px;}
.y0_c00013{bottom:0.000000px;}
.y2d_c00013{bottom:67.500000px;}
.y2b_c00013{bottom:150.000000px;}
.y2a_c00013{bottom:172.500000px;}
.y29_c00013{bottom:195.000000px;}
.y28_c00013{bottom:217.500000px;}
.y27_c00013{bottom:240.000000px;}
.y26_c00013{bottom:262.500000px;}
.y25_c00013{bottom:285.000000px;}
.y24_c00013{bottom:307.500000px;}
.y23_c00013{bottom:330.000000px;}
.y22_c00013{bottom:352.500000px;}
.y21_c00013{bottom:375.000000px;}
.y20_c00013{bottom:397.500000px;}
.y1f_c00013{bottom:420.000000px;}
.y1e_c00013{bottom:442.500000px;}
.y1d_c00013{bottom:465.000000px;}
.y1c_c00013{bottom:487.500000px;}
.y1b_c00013{bottom:510.000000px;}
.y1a_c00013{bottom:532.500000px;}
.y19_c00013{bottom:555.000000px;}
.y18_c00013{bottom:577.500000px;}
.y17_c00013{bottom:600.000000px;}
.y16_c00013{bottom:622.500000px;}
.y15_c00013{bottom:645.000000px;}
.y14_c00013{bottom:667.500000px;}
.y13_c00013{bottom:690.000000px;}
.y12_c00013{bottom:712.500000px;}
.y11_c00013{bottom:735.000000px;}
.y10_c00013{bottom:757.500000px;}
.yf_c00013{bottom:780.000000px;}
.ye_c00013{bottom:802.500000px;}
.yd_c00013{bottom:825.000000px;}
.yc_c00013{bottom:847.500000px;}
.yb_c00013{bottom:870.000000px;}
.ya_c00013{bottom:892.500000px;}
.y9_c00013{bottom:915.000000px;}
.y8_c00013{bottom:937.500000px;}
.y7_c00013{bottom:960.000000px;}
.y6_c00013{bottom:982.500000px;}
.y5_c00013{bottom:1005.000000px;}
.y4_c00013{bottom:1027.500000px;}
.y3_c00013{bottom:1050.000000px;}
.y2_c00013{bottom:1072.500000px;}
.y1_c00013{bottom:1095.000000px;}
.y2c_c00013{bottom:1194.000000px;}
.h3_c00013{height:44.208984px;}
.h1_c00013{height:51.257812px;}
.h2_c00013{height:56.074219px;}
.h0_c00013{height:1263.000000px;}
.w0_c00013{width:892.500000px;}
.x0_c00013{left:0.000000px;}
.x4_c00013{left:65.480310px;}
.x2_c00013{left:92.480310px;}
.x1_c00013{left:119.480310px;}
.x3_c00013{left:146.480310px;}
@media print{
.v0_c00013{vertical-align:0.000000pt;}
.ls1_c00013{letter-spacing:-0.012800pt;}
.ls3_c00013{letter-spacing:-0.006400pt;}
.ls2_c00013{letter-spacing:0.000000pt;}
.ls0_c00013{letter-spacing:0.006400pt;}
.ls17_c00013{letter-spacing:0.010667pt;}
.lsb_c00013{letter-spacing:616.691200pt;}
.lsa_c00013{letter-spacing:942.022400pt;}
.lsf_c00013{letter-spacing:1272.691200pt;}
.lse_c00013{letter-spacing:1299.360000pt;}
.ls7_c00013{letter-spacing:1416.691200pt;}
.ls8_c00013{letter-spacing:1459.360000pt;}
.ls4_c00013{letter-spacing:1570.867200pt;}
.ls10_c00013{letter-spacing:1597.043200pt;}
.ls6_c00013{letter-spacing:1688.204800pt;}
.ls11_c00013{letter-spacing:1709.043200pt;}
.ls16_c00013{letter-spacing:1757.043200pt;}
.ls15_c00013{letter-spacing:1778.380800pt;}
.lsc_c00013{letter-spacing:1783.712000pt;}
.ls14_c00013{letter-spacing:1789.043200pt;}
.ls9_c00013{letter-spacing:1805.043200pt;}
.lsd_c00013{letter-spacing:1842.380800pt;}
.ls13_c00013{letter-spacing:1869.043200pt;}
.ls12_c00013{letter-spacing:1874.380800pt;}
.ls5_c00013{letter-spacing:1885.043200pt;}
.ws3_c00013{word-spacing:-17.606400pt;}
.ws1_c00013{word-spacing:-17.600000pt;}
.ws2_c00013{word-spacing:-17.593600pt;}
.ws0_c00013{word-spacing:-17.587200pt;}
.ws6_c00013{word-spacing:-8.083307pt;}
.ws7_c00013{word-spacing:-7.424107pt;}
.ws5_c00013{word-spacing:-6.892907pt;}
.ws4_c00013{word-spacing:-3.146667pt;}
.ws8_c00013{word-spacing:-2.412907pt;}
.ws9_c00013{word-spacing:-1.759573pt;}
.wsa_c00013{word-spacing:0.000000pt;}
._5_c00013{margin-left:-1902.629867pt;}
._26_c00013{margin-left:-1891.178667pt;}
._28_c00013{margin-left:-1886.577173pt;}
._6_c00013{margin-left:-1885.056000pt;}
._27_c00013{margin-left:-1874.368000pt;}
._29_c00013{margin-left:-1869.056000pt;}
._17_c00013{margin-left:-1859.947840pt;}
._18_c00013{margin-left:-1842.368000pt;}
._d_c00013{margin-left:-1822.582507pt;}
._2a_c00013{margin-left:-1806.588907pt;}
._e_c00013{margin-left:-1805.056000pt;}
._15_c00013{margin-left:-1801.290667pt;}
._2d_c00013{margin-left:-1795.963733pt;}
._2b_c00013{margin-left:-1789.056000pt;}
._16_c00013{margin-left:-1783.744000pt;}
._2e_c00013{margin-left:-1778.368000pt;}
._2f_c00013{margin-left:-1774.615040pt;}
._30_c00013{margin-left:-1757.056000pt;}
._24_c00013{margin-left:-1726.631467pt;}
._25_c00013{margin-left:-1709.056000pt;}
._7_c00013{margin-left:-1705.728213pt;}
._8_c00013{margin-left:-1688.192000pt;}
._20_c00013{margin-left:-1613.885013pt;}
._21_c00013{margin-left:-1597.056000pt;}
._1_c00013{margin-left:-1588.455467pt;}
._2_c00013{margin-left:-1570.880000pt;}
._b_c00013{margin-left:-1476.888747pt;}
._c_c00013{margin-left:-1459.392000pt;}
._9_c00013{margin-left:-1433.734400pt;}
._a_c00013{margin-left:-1416.704000pt;}
._1b_c00013{margin-left:-1316.947200pt;}
._1c_c00013{margin-left:-1299.392000pt;}
._1e_c00013{margin-left:-1290.281067pt;}
._1f_c00013{margin-left:-1272.704000pt;}
._10_c00013{margin-left:-959.617067pt;}
._11_c00013{margin-left:-942.016000pt;}
._13_c00013{margin-left:-634.286400pt;}
._14_c00013{margin-left:-616.704000pt;}
._19_c00013{margin-left:-9.355947pt;}
._3_c00013{margin-left:-5.558507pt;}
._22_c00013{margin-left:-4.355307pt;}
._31_c00013{margin-left:-2.858667pt;}
._12_c00013{margin-left:-1.260480pt;}
._2c_c00013{width:1.148587pt;}
._4_c00013{width:2.552960pt;}
._23_c00013{width:3.943360pt;}
._1d_c00013{width:5.242987pt;}
._0_c00013{width:6.347520pt;}
._f_c00013{width:7.876053pt;}
._1a_c00013{width:14.348800pt;}
.fs1_c00013{font-size:53.333333pt;}
.fs0_c00013{font-size:64.000000pt;}
.y0_c00013{bottom:0.000000pt;}
.y2d_c00013{bottom:60.000000pt;}
.y2b_c00013{bottom:133.333333pt;}
.y2a_c00013{bottom:153.333333pt;}
.y29_c00013{bottom:173.333333pt;}
.y28_c00013{bottom:193.333333pt;}
.y27_c00013{bottom:213.333333pt;}
.y26_c00013{bottom:233.333333pt;}
.y25_c00013{bottom:253.333333pt;}
.y24_c00013{bottom:273.333333pt;}
.y23_c00013{bottom:293.333333pt;}
.y22_c00013{bottom:313.333333pt;}
.y21_c00013{bottom:333.333333pt;}
.y20_c00013{bottom:353.333333pt;}
.y1f_c00013{bottom:373.333333pt;}
.y1e_c00013{bottom:393.333333pt;}
.y1d_c00013{bottom:413.333333pt;}
.y1c_c00013{bottom:433.333333pt;}
.y1b_c00013{bottom:453.333333pt;}
.y1a_c00013{bottom:473.333333pt;}
.y19_c00013{bottom:493.333333pt;}
.y18_c00013{bottom:513.333333pt;}
.y17_c00013{bottom:533.333333pt;}
.y16_c00013{bottom:553.333333pt;}
.y15_c00013{bottom:573.333333pt;}
.y14_c00013{bottom:593.333333pt;}
.y13_c00013{bottom:613.333333pt;}
.y12_c00013{bottom:633.333333pt;}
.y11_c00013{bottom:653.333333pt;}
.y10_c00013{bottom:673.333333pt;}
.yf_c00013{bottom:693.333333pt;}
.ye_c00013{bottom:713.333333pt;}
.yd_c00013{bottom:733.333333pt;}
.yc_c00013{bottom:753.333333pt;}
.yb_c00013{bottom:773.333333pt;}
.ya_c00013{bottom:793.333333pt;}
.y9_c00013{bottom:813.333333pt;}
.y8_c00013{bottom:833.333333pt;}
.y7_c00013{bottom:853.333333pt;}
.y6_c00013{bottom:873.333333pt;}
.y5_c00013{bottom:893.333333pt;}
.y4_c00013{bottom:913.333333pt;}
.y3_c00013{bottom:933.333333pt;}
.y2_c00013{bottom:953.333333pt;}
.y1_c00013{bottom:973.333333pt;}
.y2c_c00013{bottom:1061.333333pt;}
.h3_c00013{height:39.296875pt;}
.h1_c00013{height:45.562500pt;}
.h2_c00013{height:49.843750pt;}
.h0_c00013{height:1122.666667pt;}
.w0_c00013{width:793.333333pt;}
.x0_c00013{left:0.000000pt;}
.x4_c00013{left:58.204720pt;}
.x2_c00013{left:82.204720pt;}
.x1_c00013{left:106.204720pt;}
.x3_c00013{left:130.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_611f8de1ecc415d28f992395.woff2')format("woff");}.ff1_c00014{font-family:ff1_c00014;line-height:0.934082;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00014;src:url('chunks/assets/font_9129231fe7ab4576d566dec7.woff2')format("woff");}.ff2_c00014{font-family:ff2_c00014;line-height:0.957520;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00014;src:url('chunks/assets/font_a5c12420415390a4ea78cfc1.woff2')format("woff");}.ff3_c00014{font-family:ff3_c00014;line-height:0.931641;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00014{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00014{vertical-align:0.000000px;}
.ls1_c00014{letter-spacing:-0.014400px;}
.ls2_c00014{letter-spacing:-0.007200px;}
.ls4_c00014{letter-spacing:0.000000px;}
.ls1c_c00014{letter-spacing:0.012000px;}
.ls0_c00014{letter-spacing:0.014400px;}
.ls12_c00014{letter-spacing:1.987200px;}
.ls19_c00014{letter-spacing:341.229600px;}
.ls15_c00014{letter-spacing:531.777600px;}
.ls17_c00014{letter-spacing:933.775200px;}
.ls16_c00014{letter-spacing:981.777600px;}
.ls1a_c00014{letter-spacing:1013.234400px;}
.lsb_c00014{letter-spacing:1227.780000px;}
.ls14_c00014{letter-spacing:1323.777600px;}
.lsc_c00014{letter-spacing:1371.780000px;}
.lsa_c00014{letter-spacing:1599.775200px;}
.ls10_c00014{letter-spacing:1604.678400px;}
.ls7_c00014{letter-spacing:1671.775200px;}
.ls8_c00014{letter-spacing:1725.775200px;}
.ls9_c00014{letter-spacing:1761.775200px;}
.ls6_c00014{letter-spacing:1767.225600px;}
.lsf_c00014{letter-spacing:1773.777600px;}
.ls5_c00014{letter-spacing:1899.230400px;}
.ls18_c00014{letter-spacing:1979.229600px;}
.lsd_c00014{letter-spacing:2024.676000px;}
.ls1b_c00014{letter-spacing:2051.229600px;}
.ls3_c00014{letter-spacing:2054.678400px;}
.lse_c00014{letter-spacing:2066.673600px;}
.ls11_c00014{letter-spacing:2084.673600px;}
.ls13_c00014{letter-spacing:2156.673600px;}
.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;}
}
.ws5_c00014{word-spacing:-19.814400px;}
.ws4_c00014{word-spacing:-19.800000px;}
.ws2_c00014{word-spacing:-19.792800px;}
.ws0_c00014{word-spacing:-19.785600px;}
.ws7_c00014{word-spacing:-8.491800px;}
.ws3_c00014{word-spacing:-3.540600px;}
.ws6_c00014{word-spacing:-3.112200px;}
.ws9_c00014{word-spacing:-1.635600px;}
.wsc_c00014{word-spacing:0.000000px;}
.ws1_c00014{word-spacing:0.619200px;}
.wsa_c00014{word-spacing:0.846000px;}
.wsb_c00014{word-spacing:28.771200px;}
.ws8_c00014{word-spacing:718.857600px;}
._28_c00014{margin-left:-2175.957000px;}
._29_c00014{margin-left:-2156.688000px;}
._25_c00014{margin-left:-2104.319400px;}
._1c_c00014{margin-left:-2086.459200px;}
._26_c00014{margin-left:-2084.688000px;}
._0_c00014{margin-left:-2074.449000px;}
._3c_c00014{margin-left:-2071.007400px;}
._1d_c00014{margin-left:-2066.688000px;}
._1_c00014{margin-left:-2054.664000px;}
._3d_c00014{margin-left:-2051.280000px;}
._19_c00014{margin-left:-2044.100400px;}
._1a_c00014{margin-left:-2024.712000px;}
._35_c00014{margin-left:-1999.014000px;}
._20_c00014{margin-left:-1985.566800px;}
._36_c00014{margin-left:-1979.280000px;}
._2_c00014{margin-left:-1918.943400px;}
._3_c00014{margin-left:-1899.216000px;}
._40_c00014{margin-left:-1885.512600px;}
._3e_c00014{margin-left:-1848.519000px;}
._1e_c00014{margin-left:-1793.525400px;}
._5_c00014{margin-left:-1787.011800px;}
._f_c00014{margin-left:-1781.562600px;}
._1f_c00014{margin-left:-1773.792000px;}
._6_c00014{margin-left:-1767.240000px;}
._10_c00014{margin-left:-1761.768000px;}
._c_c00014{margin-left:-1745.562600px;}
._d_c00014{margin-left:-1725.768000px;}
._8_c00014{margin-left:-1691.563200px;}
._9_c00014{margin-left:-1671.768000px;}
._23_c00014{margin-left:-1624.521600px;}
._11_c00014{margin-left:-1619.541000px;}
._24_c00014{margin-left:-1604.664000px;}
._12_c00014{margin-left:-1599.768000px;}
._17_c00014{margin-left:-1390.620600px;}
._18_c00014{margin-left:-1371.816000px;}
._2b_c00014{margin-left:-1343.566200px;}
._2c_c00014{margin-left:-1323.792000px;}
._15_c00014{margin-left:-1246.671000px;}
._16_c00014{margin-left:-1227.816000px;}
._3a_c00014{margin-left:-1032.919200px;}
._3b_c00014{margin-left:-1013.256000px;}
._30_c00014{margin-left:-1001.569200px;}
._31_c00014{margin-left:-981.792000px;}
._32_c00014{margin-left:-954.019200px;}
._33_c00014{margin-left:-933.768000px;}
._2d_c00014{margin-left:-551.182800px;}
._2e_c00014{margin-left:-531.792000px;}
._37_c00014{margin-left:-360.684000px;}
._38_c00014{margin-left:-341.280000px;}
._a_c00014{margin-left:-10.561200px;}
._39_c00014{margin-left:-5.299200px;}
._e_c00014{margin-left:-2.939400px;}
._13_c00014{margin-left:-1.230000px;}
._21_c00014{width:1.231200px;}
._14_c00014{width:2.692800px;}
._34_c00014{width:4.029600px;}
._1b_c00014{width:5.201400px;}
._4_c00014{width:7.140600px;}
._b_c00014{width:8.356200px;}
._7_c00014{width:9.438000px;}
._27_c00014{width:11.598000px;}
._2f_c00014{width:13.705200px;}
._2a_c00014{width:15.552600px;}
._22_c00014{width:1245.780000px;}
._3f_c00014{width:1829.232000px;}
._41_c00014{width:1865.232000px;}
.fc0_c00014{color:rgb(0,0,0);}
.fs1_c00014{font-size:60.000000px;}
.fs0_c00014{font-size:72.000000px;}
.y0_c00014{bottom:0.000000px;}
.y2b_c00014{bottom:67.500000px;}
.y29_c00014{bottom:144.000000px;}
.y28_c00014{bottom:166.500000px;}
.y27_c00014{bottom:189.000000px;}
.y26_c00014{bottom:238.500000px;}
.y25_c00014{bottom:285.000000px;}
.y24_c00014{bottom:307.500000px;}
.y23_c00014{bottom:330.000000px;}
.y22_c00014{bottom:352.500000px;}
.y21_c00014{bottom:375.000000px;}
.y20_c00014{bottom:397.500000px;}
.y1f_c00014{bottom:420.000000px;}
.y1e_c00014{bottom:442.500000px;}
.y1d_c00014{bottom:465.000000px;}
.y1c_c00014{bottom:487.500000px;}
.y1b_c00014{bottom:510.000000px;}
.y1a_c00014{bottom:532.500000px;}
.y19_c00014{bottom:555.000000px;}
.y18_c00014{bottom:577.500000px;}
.y17_c00014{bottom:600.000000px;}
.y16_c00014{bottom:622.500000px;}
.y15_c00014{bottom:645.000000px;}
.y14_c00014{bottom:667.500000px;}
.y13_c00014{bottom:690.000000px;}
.y12_c00014{bottom:712.500000px;}
.y11_c00014{bottom:735.000000px;}
.y10_c00014{bottom:757.500000px;}
.yf_c00014{bottom:780.000000px;}
.ye_c00014{bottom:802.500000px;}
.yd_c00014{bottom:825.000000px;}
.yc_c00014{bottom:847.500000px;}
.yb_c00014{bottom:870.000000px;}
.ya_c00014{bottom:892.500000px;}
.y9_c00014{bottom:915.000000px;}
.y8_c00014{bottom:937.500000px;}
.y7_c00014{bottom:960.000000px;}
.y6_c00014{bottom:982.500000px;}
.y5_c00014{bottom:1005.000000px;}
.y4_c00014{bottom:1027.500000px;}
.y3_c00014{bottom:1050.000000px;}
.y2_c00014{bottom:1072.500000px;}
.y1_c00014{bottom:1095.000000px;}
.y2a_c00014{bottom:1194.000000px;}
.h1_c00014{height:51.257812px;}
.h3_c00014{height:54.785156px;}
.h2_c00014{height:67.500000px;}
.h0_c00014{height:1263.000000px;}
.w0_c00014{width:892.500000px;}
.x0_c00014{left:0.000000px;}
.x5_c00014{left:150.519750px;}
.x6_c00014{left:161.870700px;}
.x1_c00014{left:177.519750px;}
.x2_c00014{left:204.519750px;}
.x3_c00014{left:231.519750px;}
.x4_c00014{left:258.519750px;}
.x7_c00014{left:810.335100px;}
@media print{
.v0_c00014{vertical-align:0.000000pt;}
.ls1_c00014{letter-spacing:-0.012800pt;}
.ls2_c00014{letter-spacing:-0.006400pt;}
.ls4_c00014{letter-spacing:0.000000pt;}
.ls1c_c00014{letter-spacing:0.010667pt;}
.ls0_c00014{letter-spacing:0.012800pt;}
.ls12_c00014{letter-spacing:1.766400pt;}
.ls19_c00014{letter-spacing:303.315200pt;}
.ls15_c00014{letter-spacing:472.691200pt;}
.ls17_c00014{letter-spacing:830.022400pt;}
.ls16_c00014{letter-spacing:872.691200pt;}
.ls1a_c00014{letter-spacing:900.652800pt;}
.lsb_c00014{letter-spacing:1091.360000pt;}
.ls14_c00014{letter-spacing:1176.691200pt;}
.lsc_c00014{letter-spacing:1219.360000pt;}
.lsa_c00014{letter-spacing:1422.022400pt;}
.ls10_c00014{letter-spacing:1426.380800pt;}
.ls7_c00014{letter-spacing:1486.022400pt;}
.ls8_c00014{letter-spacing:1534.022400pt;}
.ls9_c00014{letter-spacing:1566.022400pt;}
.ls6_c00014{letter-spacing:1570.867200pt;}
.lsf_c00014{letter-spacing:1576.691200pt;}
.ls5_c00014{letter-spacing:1688.204800pt;}
.ls18_c00014{letter-spacing:1759.315200pt;}
.lsd_c00014{letter-spacing:1799.712000pt;}
.ls1b_c00014{letter-spacing:1823.315200pt;}
.ls3_c00014{letter-spacing:1826.380800pt;}
.lse_c00014{letter-spacing:1837.043200pt;}
.ls11_c00014{letter-spacing:1853.043200pt;}
.ls13_c00014{letter-spacing:1917.043200pt;}
.ws5_c00014{word-spacing:-17.612800pt;}
.ws4_c00014{word-spacing:-17.600000pt;}
.ws2_c00014{word-spacing:-17.593600pt;}
.ws0_c00014{word-spacing:-17.587200pt;}
.ws7_c00014{word-spacing:-7.548267pt;}
.ws3_c00014{word-spacing:-3.147200pt;}
.ws6_c00014{word-spacing:-2.766400pt;}
.ws9_c00014{word-spacing:-1.453867pt;}
.wsc_c00014{word-spacing:0.000000pt;}
.ws1_c00014{word-spacing:0.550400pt;}
.wsa_c00014{word-spacing:0.752000pt;}
.wsb_c00014{word-spacing:25.574400pt;}
.ws8_c00014{word-spacing:638.984533pt;}
._28_c00014{margin-left:-1934.184000pt;}
._29_c00014{margin-left:-1917.056000pt;}
._25_c00014{margin-left:-1870.506133pt;}
._1c_c00014{margin-left:-1854.630400pt;}
._26_c00014{margin-left:-1853.056000pt;}
._0_c00014{margin-left:-1843.954667pt;}
._3c_c00014{margin-left:-1840.895467pt;}
._1d_c00014{margin-left:-1837.056000pt;}
._1_c00014{margin-left:-1826.368000pt;}
._3d_c00014{margin-left:-1823.360000pt;}
._19_c00014{margin-left:-1816.978133pt;}
._1a_c00014{margin-left:-1799.744000pt;}
._35_c00014{margin-left:-1776.901333pt;}
._20_c00014{margin-left:-1764.948267pt;}
._36_c00014{margin-left:-1759.360000pt;}
._2_c00014{margin-left:-1705.727467pt;}
._3_c00014{margin-left:-1688.192000pt;}
._40_c00014{margin-left:-1676.011200pt;}
._3e_c00014{margin-left:-1643.128000pt;}
._1e_c00014{margin-left:-1594.244800pt;}
._5_c00014{margin-left:-1588.454933pt;}
._f_c00014{margin-left:-1583.611200pt;}
._1f_c00014{margin-left:-1576.704000pt;}
._6_c00014{margin-left:-1570.880000pt;}
._10_c00014{margin-left:-1566.016000pt;}
._c_c00014{margin-left:-1551.611200pt;}
._d_c00014{margin-left:-1534.016000pt;}
._8_c00014{margin-left:-1503.611733pt;}
._9_c00014{margin-left:-1486.016000pt;}
._23_c00014{margin-left:-1444.019200pt;}
._11_c00014{margin-left:-1439.592000pt;}
._24_c00014{margin-left:-1426.368000pt;}
._12_c00014{margin-left:-1422.016000pt;}
._17_c00014{margin-left:-1236.107200pt;}
._18_c00014{margin-left:-1219.392000pt;}
._2b_c00014{margin-left:-1194.281067pt;}
._2c_c00014{margin-left:-1176.704000pt;}
._15_c00014{margin-left:-1108.152000pt;}
._16_c00014{margin-left:-1091.392000pt;}
._3a_c00014{margin-left:-918.150400pt;}
._3b_c00014{margin-left:-900.672000pt;}
._30_c00014{margin-left:-890.283733pt;}
._31_c00014{margin-left:-872.704000pt;}
._32_c00014{margin-left:-848.017067pt;}
._33_c00014{margin-left:-830.016000pt;}
._2d_c00014{margin-left:-489.940267pt;}
._2e_c00014{margin-left:-472.704000pt;}
._37_c00014{margin-left:-320.608000pt;}
._38_c00014{margin-left:-303.360000pt;}
._a_c00014{margin-left:-9.387733pt;}
._39_c00014{margin-left:-4.710400pt;}
._e_c00014{margin-left:-2.612800pt;}
._13_c00014{margin-left:-1.093333pt;}
._21_c00014{width:1.094400pt;}
._14_c00014{width:2.393600pt;}
._34_c00014{width:3.581867pt;}
._1b_c00014{width:4.623467pt;}
._4_c00014{width:6.347200pt;}
._b_c00014{width:7.427733pt;}
._7_c00014{width:8.389333pt;}
._27_c00014{width:10.309333pt;}
._2f_c00014{width:12.182400pt;}
._2a_c00014{width:13.824533pt;}
._22_c00014{width:1107.360000pt;}
._3f_c00014{width:1625.984000pt;}
._41_c00014{width:1657.984000pt;}
.fs1_c00014{font-size:53.333333pt;}
.fs0_c00014{font-size:64.000000pt;}
.y0_c00014{bottom:0.000000pt;}
.y2b_c00014{bottom:60.000000pt;}
.y29_c00014{bottom:128.000000pt;}
.y28_c00014{bottom:148.000000pt;}
.y27_c00014{bottom:168.000000pt;}
.y26_c00014{bottom:212.000000pt;}
.y25_c00014{bottom:253.333333pt;}
.y24_c00014{bottom:273.333333pt;}
.y23_c00014{bottom:293.333333pt;}
.y22_c00014{bottom:313.333333pt;}
.y21_c00014{bottom:333.333333pt;}
.y20_c00014{bottom:353.333333pt;}
.y1f_c00014{bottom:373.333333pt;}
.y1e_c00014{bottom:393.333333pt;}
.y1d_c00014{bottom:413.333333pt;}
.y1c_c00014{bottom:433.333333pt;}
.y1b_c00014{bottom:453.333333pt;}
.y1a_c00014{bottom:473.333333pt;}
.y19_c00014{bottom:493.333333pt;}
.y18_c00014{bottom:513.333333pt;}
.y17_c00014{bottom:533.333333pt;}
.y16_c00014{bottom:553.333333pt;}
.y15_c00014{bottom:573.333333pt;}
.y14_c00014{bottom:593.333333pt;}
.y13_c00014{bottom:613.333333pt;}
.y12_c00014{bottom:633.333333pt;}
.y11_c00014{bottom:653.333333pt;}
.y10_c00014{bottom:673.333333pt;}
.yf_c00014{bottom:693.333333pt;}
.ye_c00014{bottom:713.333333pt;}
.yd_c00014{bottom:733.333333pt;}
.yc_c00014{bottom:753.333333pt;}
.yb_c00014{bottom:773.333333pt;}
.ya_c00014{bottom:793.333333pt;}
.y9_c00014{bottom:813.333333pt;}
.y8_c00014{bottom:833.333333pt;}
.y7_c00014{bottom:853.333333pt;}
.y6_c00014{bottom:873.333333pt;}
.y5_c00014{bottom:893.333333pt;}
.y4_c00014{bottom:913.333333pt;}
.y3_c00014{bottom:933.333333pt;}
.y2_c00014{bottom:953.333333pt;}
.y1_c00014{bottom:973.333333pt;}
.y2a_c00014{bottom:1061.333333pt;}
.h1_c00014{height:45.562500pt;}
.h3_c00014{height:48.697917pt;}
.h2_c00014{height:60.000000pt;}
.h0_c00014{height:1122.666667pt;}
.w0_c00014{width:793.333333pt;}
.x0_c00014{left:0.000000pt;}
.x5_c00014{left:133.795333pt;}
.x6_c00014{left:143.885067pt;}
.x1_c00014{left:157.795333pt;}
.x2_c00014{left:181.795333pt;}
.x3_c00014{left:205.795333pt;}
.x4_c00014{left:229.795333pt;}
.x7_c00014{left:720.297867pt;}
}





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





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d4abf34927c885e3ca98ea6d.woff2')format("woff");}.ff1_c00016{font-family:ff1_c00016;line-height:1.163086;font-style:normal;font-weight:normal;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_506014f01b21da875c0a9d20.woff2')format("woff");}.ff2_c00016{font-family:ff2_c00016;line-height:1.124023;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00016;src:url('chunks/assets/font_07c9a099492a8a865fe281c6.woff2')format("woff");}.ff3_c00016{font-family:ff3_c00016;line-height:0.932129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00016;src:url('chunks/assets/font_2294f4e81892d6e26eb3ea5d.woff2')format("woff");}.ff4_c00016{font-family:ff4_c00016;line-height:0.752441;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00016;src:url('chunks/assets/font_f112e6db1afdb075eb6d72a8.woff2')format("woff");}.ff5_c00016{font-family:ff5_c00016;line-height:0.826172;font-style:normal;font-weight: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_c00016;src:url('chunks/assets/font_de4cd245cc0745ce776c7e10.woff2')format("woff");}.ff6_c00016{font-family:ff6_c00016;line-height:0.889160;font-style: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);}
.v2_c00016{vertical-align:-15.400200px;}
.v0_c00016{vertical-align:0.000000px;}
.v1_c00016{vertical-align:23.086200px;}
.ls4_c00016{letter-spacing:-3.636000px;}
.ls3_c00016{letter-spacing:-0.014400px;}
.ls1_c00016{letter-spacing:-0.007200px;}
.ls2_c00016{letter-spacing:0.000000px;}
.ls0_c00016{letter-spacing:0.005599px;}
.ls5_c00016{letter-spacing:0.012000px;}
.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:-19.792800px;}
.ws2_c00016{word-spacing:-13.200000px;}
.ws0_c00016{word-spacing:-0.108000px;}
.ws3_c00016{word-spacing:0.000000px;}
._11_c00016{margin-left:-10.699200px;}
._13_c00016{margin-left:-6.134400px;}
._1_c00016{margin-left:-3.880800px;}
._4_c00016{margin-left:-2.563200px;}
._8_c00016{margin-left:-1.108800px;}
._2_c00016{width:1.872000px;}
._f_c00016{width:2.937600px;}
._5_c00016{width:3.981600px;}
._19_c00016{width:5.032800px;}
._c_c00016{width:6.033600px;}
._10_c00016{width:7.416000px;}
._a_c00016{width:8.668800px;}
._b_c00016{width:9.914400px;}
._1a_c00016{width:10.915200px;}
._6_c00016{width:11.916000px;}
._3_c00016{width:14.032800px;}
._e_c00016{width:15.451200px;}
._0_c00016{width:16.797600px;}
._12_c00016{width:18.216000px;}
._9_c00016{width:21.794400px;}
._d_c00016{width:22.946400px;}
._7_c00016{width:24.602400px;}
._15_c00016{width:26.618400px;}
._14_c00016{width:28.483200px;}
._18_c00016{width:29.606400px;}
._16_c00016{width:31.046400px;}
._17_c00016{width:32.400000px;}
.fc0_c00016{color:rgb(0,0,0);}
.fs4_c00016{font-size:40.000002px;}
.fs2_c00016{font-size:48.000000px;}
.fs3_c00016{font-size:60.000000px;}
.fs0_c00016{font-size:72.000000px;}
.fs1_c00016{font-size:108.000000px;}
.y0_c00016{bottom:0.000000px;}
.y1b_c00016{bottom:67.500000px;}
.y1c_c00016{bottom:135.850050px;}
.y19_c00016{bottom:208.500000px;}
.y18_c00016{bottom:235.500000px;}
.y17_c00016{bottom:262.500000px;}
.y16_c00016{bottom:310.500000px;}
.y15_c00016{bottom:337.500000px;}
.y14_c00016{bottom:364.500000px;}
.y13_c00016{bottom:391.500000px;}
.y12_c00016{bottom:418.500000px;}
.y11_c00016{bottom:445.500000px;}
.y10_c00016{bottom:472.500000px;}
.yf_c00016{bottom:499.500000px;}
.ye_c00016{bottom:547.500000px;}
.yd_c00016{bottom:574.500000px;}
.yc_c00016{bottom:601.500000px;}
.yb_c00016{bottom:628.500000px;}
.ya_c00016{bottom:655.500000px;}
.y9_c00016{bottom:703.500000px;}
.y8_c00016{bottom:730.500000px;}
.y7_c00016{bottom:757.500000px;}
.y6_c00016{bottom:784.500000px;}
.y5_c00016{bottom:811.500000px;}
.y4_c00016{bottom:838.500000px;}
.y3_c00016{bottom:865.500000px;}
.y2_c00016{bottom:892.500000px;}
.y1_c00016{bottom:1039.500000px;}
.y1a_c00016{bottom:1194.000000px;}
.h5_c00016{height:29.335939px;}
.h4_c00016{height:44.003906px;}
.h2_c00016{height:67.746094px;}
.h3_c00016{height:68.250263px;}
.h1_c00016{height:102.304688px;}
.h0_c00016{height:1263.000000px;}
.w0_c00016{width:892.500000px;}
.x0_c00016{left:0.000000px;}
.x1_c00016{left:150.519750px;}
.x2_c00016{left:167.716350px;}
.x3_c00016{left:812.027850px;}
@media print{
.v2_c00016{vertical-align:-13.689067pt;}
.v0_c00016{vertical-align:0.000000pt;}
.v1_c00016{vertical-align:20.521067pt;}
.ls4_c00016{letter-spacing:-3.232000pt;}
.ls3_c00016{letter-spacing:-0.012800pt;}
.ls1_c00016{letter-spacing:-0.006400pt;}
.ls2_c00016{letter-spacing:0.000000pt;}
.ls0_c00016{letter-spacing:0.004977pt;}
.ls5_c00016{letter-spacing:0.010667pt;}
.ws1_c00016{word-spacing:-17.593600pt;}
.ws2_c00016{word-spacing:-11.733333pt;}
.ws0_c00016{word-spacing:-0.096000pt;}
.ws3_c00016{word-spacing:0.000000pt;}
._11_c00016{margin-left:-9.510400pt;}
._13_c00016{margin-left:-5.452800pt;}
._1_c00016{margin-left:-3.449600pt;}
._4_c00016{margin-left:-2.278400pt;}
._8_c00016{margin-left:-0.985600pt;}
._2_c00016{width:1.664000pt;}
._f_c00016{width:2.611200pt;}
._5_c00016{width:3.539200pt;}
._19_c00016{width:4.473600pt;}
._c_c00016{width:5.363200pt;}
._10_c00016{width:6.592000pt;}
._a_c00016{width:7.705600pt;}
._b_c00016{width:8.812800pt;}
._1a_c00016{width:9.702400pt;}
._6_c00016{width:10.592000pt;}
._3_c00016{width:12.473600pt;}
._e_c00016{width:13.734400pt;}
._0_c00016{width:14.931200pt;}
._12_c00016{width:16.192000pt;}
._9_c00016{width:19.372800pt;}
._d_c00016{width:20.396800pt;}
._7_c00016{width:21.868800pt;}
._15_c00016{width:23.660800pt;}
._14_c00016{width:25.318400pt;}
._18_c00016{width:26.316800pt;}
._16_c00016{width:27.596800pt;}
._17_c00016{width:28.800000pt;}
.fs4_c00016{font-size:35.555557pt;}
.fs2_c00016{font-size:42.666667pt;}
.fs3_c00016{font-size:53.333333pt;}
.fs0_c00016{font-size:64.000000pt;}
.fs1_c00016{font-size:96.000000pt;}
.y0_c00016{bottom:0.000000pt;}
.y1b_c00016{bottom:60.000000pt;}
.y1c_c00016{bottom:120.755600pt;}
.y19_c00016{bottom:185.333333pt;}
.y18_c00016{bottom:209.333333pt;}
.y17_c00016{bottom:233.333333pt;}
.y16_c00016{bottom:276.000000pt;}
.y15_c00016{bottom:300.000000pt;}
.y14_c00016{bottom:324.000000pt;}
.y13_c00016{bottom:348.000000pt;}
.y12_c00016{bottom:372.000000pt;}
.y11_c00016{bottom:396.000000pt;}
.y10_c00016{bottom:420.000000pt;}
.yf_c00016{bottom:444.000000pt;}
.ye_c00016{bottom:486.666667pt;}
.yd_c00016{bottom:510.666667pt;}
.yc_c00016{bottom:534.666667pt;}
.yb_c00016{bottom:558.666667pt;}
.ya_c00016{bottom:582.666667pt;}
.y9_c00016{bottom:625.333333pt;}
.y8_c00016{bottom:649.333333pt;}
.y7_c00016{bottom:673.333333pt;}
.y6_c00016{bottom:697.333333pt;}
.y5_c00016{bottom:721.333333pt;}
.y4_c00016{bottom:745.333333pt;}
.y3_c00016{bottom:769.333333pt;}
.y2_c00016{bottom:793.333333pt;}
.y1_c00016{bottom:924.000000pt;}
.y1a_c00016{bottom:1061.333333pt;}
.h5_c00016{height:26.076390pt;}
.h4_c00016{height:39.114583pt;}
.h2_c00016{height:60.218750pt;}
.h3_c00016{height:60.666900pt;}
.h1_c00016{height:90.937500pt;}
.h0_c00016{height:1122.666667pt;}
.w0_c00016{width:793.333333pt;}
.x0_c00016{left:0.000000pt;}
.x1_c00016{left:133.795333pt;}
.x2_c00016{left:149.081200pt;}
.x3_c00016{left:721.802533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_00d76e5088733e22a1becc22.woff2')format("woff");}.ff1_c00017{font-family:ff1_c00017;line-height:1.163086;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00017;src:url('chunks/assets/font_c41f7f6b7c3030cff6918c51.woff2')format("woff");}.ff2_c00017{font-family:ff2_c00017;line-height:0.931152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00017;src:url('chunks/assets/font_5b2c7ad2d26d05915fc106b7.woff2')format("woff");}.ff3_c00017{font-family:ff3_c00017;line-height:0.755859;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00017;src:url('chunks/assets/font_55787ac896f7001318df026e.woff2')format("woff");}.ff4_c00017{font-family:ff4_c00017;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00017;src:url('chunks/assets/font_86137d0a1cf24f722d08ad45.woff2')format("woff");}.ff5_c00017{font-family:ff5_c00017;line-height:0.904785;font-style:normal;font-weight: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_c00017;src:url('chunks/assets/font_7b16c09b974f24cf4efe8a78.woff2')format("woff");}.ff6_c00017{font-family:ff6_c00017;line-height:0.693848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00017{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00017{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00017{vertical-align:-15.400200px;}
.v0_c00017{vertical-align:0.000000px;}
.v1_c00017{vertical-align:23.062800px;}
.ls4_c00017{letter-spacing:-4.773600px;}
.ls6_c00017{letter-spacing:-0.012000px;}
.ls3_c00017{letter-spacing:0.000000px;}
.ls2_c00017{letter-spacing:0.006019px;}
.ls0_c00017{letter-spacing:0.007200px;}
.ls5_c00017{letter-spacing:0.012000px;}
.ls1_c00017{letter-spacing:0.527400px;}
.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:-19.807200px;}
.ws1_c00017{word-spacing:-19.800000px;}
.ws2_c00017{word-spacing:-14.988000px;}
.ws3_c00017{word-spacing:0.000000px;}
._11_c00017{margin-left:-10.526400px;}
._d_c00017{margin-left:-9.288000px;}
._b_c00017{margin-left:-4.665600px;}
._1b_c00017{margin-left:-3.499200px;}
._f_c00017{margin-left:-2.455200px;}
._9_c00017{margin-left:-1.108800px;}
._7_c00017{width:1.072800px;}
._0_c00017{width:2.325600px;}
._5_c00017{width:3.600000px;}
._2_c00017{width:5.220000px;}
._10_c00017{width:6.228000px;}
._12_c00017{width:7.264800px;}
._18_c00017{width:8.942400px;}
._19_c00017{width:10.725000px;}
._e_c00017{width:11.955000px;}
._1a_c00017{width:13.413600px;}
._1c_c00017{width:14.788800px;}
._1d_c00017{width:15.868800px;}
._15_c00017{width:17.848800px;}
._17_c00017{width:20.944800px;}
._16_c00017{width:21.967200px;}
._3_c00017{width:23.875200px;}
._6_c00017{width:25.423200px;}
._1_c00017{width:26.697600px;}
._8_c00017{width:28.000800px;}
._4_c00017{width:29.102400px;}
._a_c00017{width:30.225600px;}
._14_c00017{width:31.255200px;}
._c_c00017{width:33.685800px;}
._13_c00017{width:35.474400px;}
.fc0_c00017{color:rgb(0,0,0);}
.fs3_c00017{font-size:40.000002px;}
.fs1_c00017{font-size:48.000000px;}
.fs2_c00017{font-size:60.000000px;}
.fs0_c00017{font-size:72.000000px;}
.y0_c00017{bottom:0.000000px;}
.y22_c00017{bottom:67.500000px;}
.y23_c00017{bottom:135.850050px;}
.y20_c00017{bottom:195.000000px;}
.y1f_c00017{bottom:222.000000px;}
.y1e_c00017{bottom:249.000000px;}
.y1d_c00017{bottom:276.000000px;}
.y1c_c00017{bottom:303.000000px;}
.y1b_c00017{bottom:330.000000px;}
.y1a_c00017{bottom:357.000000px;}
.y19_c00017{bottom:384.000000px;}
.y18_c00017{bottom:432.000000px;}
.y17_c00017{bottom:459.000000px;}
.y16_c00017{bottom:486.000000px;}
.y15_c00017{bottom:513.000000px;}
.y14_c00017{bottom:540.000000px;}
.y13_c00017{bottom:567.000000px;}
.y12_c00017{bottom:594.000000px;}
.y11_c00017{bottom:621.000000px;}
.y10_c00017{bottom:648.000000px;}
.yf_c00017{bottom:675.000000px;}
.ye_c00017{bottom:723.000000px;}
.yd_c00017{bottom:750.000000px;}
.yc_c00017{bottom:777.000000px;}
.yb_c00017{bottom:804.000000px;}
.ya_c00017{bottom:831.000000px;}
.y9_c00017{bottom:858.000000px;}
.y8_c00017{bottom:885.000000px;}
.y7_c00017{bottom:912.000000px;}
.y6_c00017{bottom:939.000000px;}
.y5_c00017{bottom:966.000000px;}
.y4_c00017{bottom:1014.000000px;}
.y3_c00017{bottom:1041.000000px;}
.y2_c00017{bottom:1068.000000px;}
.y1_c00017{bottom:1095.000000px;}
.y21_c00017{bottom:1194.000000px;}
.h4_c00017{height:29.472658px;}
.h3_c00017{height:44.208984px;}
.h2_c00017{height:56.074219px;}
.h1_c00017{height:67.746094px;}
.h0_c00017{height:1263.000000px;}
.w0_c00017{width:892.500000px;}
.x0_c00017{left:0.000000px;}
.x1_c00017{left:63.787500px;}
@media print{
.v2_c00017{vertical-align:-13.689067pt;}
.v0_c00017{vertical-align:0.000000pt;}
.v1_c00017{vertical-align:20.500267pt;}
.ls4_c00017{letter-spacing:-4.243200pt;}
.ls6_c00017{letter-spacing:-0.010667pt;}
.ls3_c00017{letter-spacing:0.000000pt;}
.ls2_c00017{letter-spacing:0.005350pt;}
.ls0_c00017{letter-spacing:0.006400pt;}
.ls5_c00017{letter-spacing:0.010667pt;}
.ls1_c00017{letter-spacing:0.468800pt;}
.ws0_c00017{word-spacing:-17.606400pt;}
.ws1_c00017{word-spacing:-17.600000pt;}
.ws2_c00017{word-spacing:-13.322667pt;}
.ws3_c00017{word-spacing:0.000000pt;}
._11_c00017{margin-left:-9.356800pt;}
._d_c00017{margin-left:-8.256000pt;}
._b_c00017{margin-left:-4.147200pt;}
._1b_c00017{margin-left:-3.110400pt;}
._f_c00017{margin-left:-2.182400pt;}
._9_c00017{margin-left:-0.985600pt;}
._7_c00017{width:0.953600pt;}
._0_c00017{width:2.067200pt;}
._5_c00017{width:3.200000pt;}
._2_c00017{width:4.640000pt;}
._10_c00017{width:5.536000pt;}
._12_c00017{width:6.457600pt;}
._18_c00017{width:7.948800pt;}
._19_c00017{width:9.533333pt;}
._e_c00017{width:10.626667pt;}
._1a_c00017{width:11.923200pt;}
._1c_c00017{width:13.145600pt;}
._1d_c00017{width:14.105600pt;}
._15_c00017{width:15.865600pt;}
._17_c00017{width:18.617600pt;}
._16_c00017{width:19.526400pt;}
._3_c00017{width:21.222400pt;}
._6_c00017{width:22.598400pt;}
._1_c00017{width:23.731200pt;}
._8_c00017{width:24.889600pt;}
._4_c00017{width:25.868800pt;}
._a_c00017{width:26.867200pt;}
._14_c00017{width:27.782400pt;}
._c_c00017{width:29.942933pt;}
._13_c00017{width:31.532800pt;}
.fs3_c00017{font-size:35.555557pt;}
.fs1_c00017{font-size:42.666667pt;}
.fs2_c00017{font-size:53.333333pt;}
.fs0_c00017{font-size:64.000000pt;}
.y0_c00017{bottom:0.000000pt;}
.y22_c00017{bottom:60.000000pt;}
.y23_c00017{bottom:120.755600pt;}
.y20_c00017{bottom:173.333333pt;}
.y1f_c00017{bottom:197.333333pt;}
.y1e_c00017{bottom:221.333333pt;}
.y1d_c00017{bottom:245.333333pt;}
.y1c_c00017{bottom:269.333333pt;}
.y1b_c00017{bottom:293.333333pt;}
.y1a_c00017{bottom:317.333333pt;}
.y19_c00017{bottom:341.333333pt;}
.y18_c00017{bottom:384.000000pt;}
.y17_c00017{bottom:408.000000pt;}
.y16_c00017{bottom:432.000000pt;}
.y15_c00017{bottom:456.000000pt;}
.y14_c00017{bottom:480.000000pt;}
.y13_c00017{bottom:504.000000pt;}
.y12_c00017{bottom:528.000000pt;}
.y11_c00017{bottom:552.000000pt;}
.y10_c00017{bottom:576.000000pt;}
.yf_c00017{bottom:600.000000pt;}
.ye_c00017{bottom:642.666667pt;}
.yd_c00017{bottom:666.666667pt;}
.yc_c00017{bottom:690.666667pt;}
.yb_c00017{bottom:714.666667pt;}
.ya_c00017{bottom:738.666667pt;}
.y9_c00017{bottom:762.666667pt;}
.y8_c00017{bottom:786.666667pt;}
.y7_c00017{bottom:810.666667pt;}
.y6_c00017{bottom:834.666667pt;}
.y5_c00017{bottom:858.666667pt;}
.y4_c00017{bottom:901.333333pt;}
.y3_c00017{bottom:925.333333pt;}
.y2_c00017{bottom:949.333333pt;}
.y1_c00017{bottom:973.333333pt;}
.y21_c00017{bottom:1061.333333pt;}
.h4_c00017{height:26.197918pt;}
.h3_c00017{height:39.296875pt;}
.h2_c00017{height:49.843750pt;}
.h1_c00017{height:60.218750pt;}
.h0_c00017{height:1122.666667pt;}
.w0_c00017{width:793.333333pt;}
.x0_c00017{left:0.000000pt;}
.x1_c00017{left:56.700000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_76cfdec6a99a7d8b626d235f.woff2')format("woff");}.ff1_c00018{font-family:ff1_c00018;line-height:1.163086;font-style:normal;font-weight:normal;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_4026dbff2823853333ef37bf.woff2')format("woff");}.ff2_c00018{font-family:ff2_c00018;line-height:0.932129;font-style:normal;font-weight:normal;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_082943eba7377b05d99e4315.woff2')format("woff");}.ff3_c00018{font-family:ff3_c00018;line-height:0.752441;font-style:normal;font-weight:normal;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_3aaf7798cefe5ffd84b18750.woff2')format("woff");}.ff4_c00018{font-family:ff4_c00018;line-height:0.901367;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00018;src:url('chunks/assets/font_cc555ba11f256d289bf66cc5.woff2')format("woff");}.ff5_c00018{font-family:ff5_c00018;line-height:0.892578;font-style: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);}
.v2_c00018{vertical-align:-15.400200px;}
.v0_c00018{vertical-align:0.000000px;}
.v1_c00018{vertical-align:23.086200px;}
.ls2_c00018{letter-spacing:0.000000px;}
.ls1_c00018{letter-spacing:0.005599px;}
.ls3_c00018{letter-spacing:0.012000px;}
.ls0_c00018{letter-spacing:0.406200px;}
.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:-19.800000px;}
.ws1_c00018{word-spacing:0.000000px;}
._19_c00018{margin-left:-8.514000px;}
._11_c00018{margin-left:-6.364800px;}
._b_c00018{margin-left:-4.435200px;}
._6_c00018{margin-left:-3.398400px;}
._1_c00018{margin-left:-1.742400px;}
._3_c00018{width:1.224000px;}
._2_c00018{width:2.484000px;}
._0_c00018{width:3.909600px;}
._c_c00018{width:4.939200px;}
._9_c00018{width:6.091200px;}
._4_c00018{width:7.516800px;}
._5_c00018{width:8.798400px;}
._8_c00018{width:10.036800px;}
._a_c00018{width:11.793600px;}
._7_c00018{width:13.442400px;}
._d_c00018{width:14.788800px;}
._10_c00018{width:16.171200px;}
._e_c00018{width:17.258400px;}
._12_c00018{width:18.266400px;}
._f_c00018{width:21.376800px;}
._13_c00018{width:32.472000px;}
._15_c00018{width:34.459200px;}
._14_c00018{width:36.216000px;}
._17_c00018{width:37.281600px;}
._16_c00018{width:38.433600px;}
._18_c00018{width:39.794400px;}
.fc0_c00018{color:rgb(0,0,0);}
.fs3_c00018{font-size:40.000002px;}
.fs1_c00018{font-size:48.000000px;}
.fs2_c00018{font-size:60.000000px;}
.fs0_c00018{font-size:72.000000px;}
.y0_c00018{bottom:0.000000px;}
.y21_c00018{bottom:67.500000px;}
.y22_c00018{bottom:135.850050px;}
.y1f_c00018{bottom:222.000000px;}
.y1e_c00018{bottom:249.000000px;}
.y1d_c00018{bottom:276.000000px;}
.y1c_c00018{bottom:303.000000px;}
.y1b_c00018{bottom:330.000000px;}
.y1a_c00018{bottom:357.000000px;}
.y19_c00018{bottom:384.000000px;}
.y18_c00018{bottom:432.000000px;}
.y17_c00018{bottom:459.000000px;}
.y16_c00018{bottom:486.000000px;}
.y15_c00018{bottom:513.000000px;}
.y14_c00018{bottom:540.000000px;}
.y13_c00018{bottom:567.000000px;}
.y12_c00018{bottom:594.000000px;}
.y11_c00018{bottom:621.000000px;}
.y10_c00018{bottom:648.000000px;}
.yf_c00018{bottom:675.000000px;}
.ye_c00018{bottom:723.000000px;}
.yd_c00018{bottom:750.000000px;}
.yc_c00018{bottom:777.000000px;}
.yb_c00018{bottom:825.000000px;}
.ya_c00018{bottom:852.000000px;}
.y9_c00018{bottom:879.000000px;}
.y8_c00018{bottom:906.000000px;}
.y7_c00018{bottom:933.000000px;}
.y6_c00018{bottom:960.000000px;}
.y5_c00018{bottom:987.000000px;}
.y4_c00018{bottom:1014.000000px;}
.y3_c00018{bottom:1041.000000px;}
.y2_c00018{bottom:1068.000000px;}
.y1_c00018{bottom:1095.000000px;}
.y20_c00018{bottom:1194.000000px;}
.h4_c00018{height:29.335939px;}
.h3_c00018{height:44.003906px;}
.h1_c00018{height:67.746094px;}
.h2_c00018{height:68.250263px;}
.h0_c00018{height:1263.000000px;}
.w0_c00018{width:892.500000px;}
.x0_c00018{left:0.000000px;}
.x1_c00018{left:150.519750px;}
.x2_c00018{left:167.716350px;}
.x3_c00018{left:812.027850px;}
@media print{
.v2_c00018{vertical-align:-13.689067pt;}
.v0_c00018{vertical-align:0.000000pt;}
.v1_c00018{vertical-align:20.521067pt;}
.ls2_c00018{letter-spacing:0.000000pt;}
.ls1_c00018{letter-spacing:0.004977pt;}
.ls3_c00018{letter-spacing:0.010667pt;}
.ls0_c00018{letter-spacing:0.361067pt;}
.ws0_c00018{word-spacing:-17.600000pt;}
.ws1_c00018{word-spacing:0.000000pt;}
._19_c00018{margin-left:-7.568000pt;}
._11_c00018{margin-left:-5.657600pt;}
._b_c00018{margin-left:-3.942400pt;}
._6_c00018{margin-left:-3.020800pt;}
._1_c00018{margin-left:-1.548800pt;}
._3_c00018{width:1.088000pt;}
._2_c00018{width:2.208000pt;}
._0_c00018{width:3.475200pt;}
._c_c00018{width:4.390400pt;}
._9_c00018{width:5.414400pt;}
._4_c00018{width:6.681600pt;}
._5_c00018{width:7.820800pt;}
._8_c00018{width:8.921600pt;}
._a_c00018{width:10.483200pt;}
._7_c00018{width:11.948800pt;}
._d_c00018{width:13.145600pt;}
._10_c00018{width:14.374400pt;}
._e_c00018{width:15.340800pt;}
._12_c00018{width:16.236800pt;}
._f_c00018{width:19.001600pt;}
._13_c00018{width:28.864000pt;}
._15_c00018{width:30.630400pt;}
._14_c00018{width:32.192000pt;}
._17_c00018{width:33.139200pt;}
._16_c00018{width:34.163200pt;}
._18_c00018{width:35.372800pt;}
.fs3_c00018{font-size:35.555557pt;}
.fs1_c00018{font-size:42.666667pt;}
.fs2_c00018{font-size:53.333333pt;}
.fs0_c00018{font-size:64.000000pt;}
.y0_c00018{bottom:0.000000pt;}
.y21_c00018{bottom:60.000000pt;}
.y22_c00018{bottom:120.755600pt;}
.y1f_c00018{bottom:197.333333pt;}
.y1e_c00018{bottom:221.333333pt;}
.y1d_c00018{bottom:245.333333pt;}
.y1c_c00018{bottom:269.333333pt;}
.y1b_c00018{bottom:293.333333pt;}
.y1a_c00018{bottom:317.333333pt;}
.y19_c00018{bottom:341.333333pt;}
.y18_c00018{bottom:384.000000pt;}
.y17_c00018{bottom:408.000000pt;}
.y16_c00018{bottom:432.000000pt;}
.y15_c00018{bottom:456.000000pt;}
.y14_c00018{bottom:480.000000pt;}
.y13_c00018{bottom:504.000000pt;}
.y12_c00018{bottom:528.000000pt;}
.y11_c00018{bottom:552.000000pt;}
.y10_c00018{bottom:576.000000pt;}
.yf_c00018{bottom:600.000000pt;}
.ye_c00018{bottom:642.666667pt;}
.yd_c00018{bottom:666.666667pt;}
.yc_c00018{bottom:690.666667pt;}
.yb_c00018{bottom:733.333333pt;}
.ya_c00018{bottom:757.333333pt;}
.y9_c00018{bottom:781.333333pt;}
.y8_c00018{bottom:805.333333pt;}
.y7_c00018{bottom:829.333333pt;}
.y6_c00018{bottom:853.333333pt;}
.y5_c00018{bottom:877.333333pt;}
.y4_c00018{bottom:901.333333pt;}
.y3_c00018{bottom:925.333333pt;}
.y2_c00018{bottom:949.333333pt;}
.y1_c00018{bottom:973.333333pt;}
.y20_c00018{bottom:1061.333333pt;}
.h4_c00018{height:26.076390pt;}
.h3_c00018{height:39.114583pt;}
.h1_c00018{height:60.218750pt;}
.h2_c00018{height:60.666900pt;}
.h0_c00018{height:1122.666667pt;}
.w0_c00018{width:793.333333pt;}
.x0_c00018{left:0.000000pt;}
.x1_c00018{left:133.795333pt;}
.x2_c00018{left:149.081200pt;}
.x3_c00018{left:721.802533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0a2872f744dcba9a12829095.woff2')format("woff");}.ff1_c00019{font-family:ff1_c00019;line-height:1.163086;font-style:normal;font-weight:normal;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_d27115c274c1f0ca2ad1bd69.woff2')format("woff");}.ff2_c00019{font-family:ff2_c00019;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00019;src:url('chunks/assets/font_a522157af57b3e28f8fbe52e.woff2')format("woff");}.ff3_c00019{font-family:ff3_c00019;line-height:0.755859;font-style:normal;font-weight:normal;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_5d8ee4066d6f51479f8a67a6.woff2')format("woff");}.ff4_c00019{font-family:ff4_c00019;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00019{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00019{vertical-align:0.000000px;}
.ls1_c00019{letter-spacing:-0.014400px;}
.ls0_c00019{letter-spacing:0.000000px;}
.ls2_c00019{letter-spacing:0.012000px;}
.sc__c00019{text-shadow:none;}
.sc0_c00019{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00019{-webkit-text-stroke:0px transparent;}
.sc0_c00019{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00019{word-spacing:0.000000px;}
._17_c00019{margin-left:-10.036800px;}
._18_c00019{margin-left:-7.250400px;}
._a_c00019{margin-left:-4.168800px;}
._19_c00019{margin-left:-2.980800px;}
._3_c00019{margin-left:-1.900800px;}
._5_c00019{width:1.980000px;}
._7_c00019{width:3.283200px;}
._0_c00019{width:4.996800px;}
._e_c00019{width:6.213600px;}
._10_c00019{width:8.085600px;}
._f_c00019{width:9.295200px;}
._d_c00019{width:10.648800px;}
._c_c00019{width:12.384000px;}
._9_c00019{width:13.802400px;}
._8_c00019{width:15.616800px;}
._b_c00019{width:16.999200px;}
._1_c00019{width:18.280800px;}
._6_c00019{width:21.261600px;}
._2_c00019{width:23.270400px;}
._4_c00019{width:25.185600px;}
._12_c00019{width:27.072000px;}
._13_c00019{width:29.059200px;}
._11_c00019{width:31.003200px;}
._14_c00019{width:33.292800px;}
._16_c00019{width:34.617600px;}
._15_c00019{width:36.064800px;}
.fc0_c00019{color:rgb(0,0,0);}
.fs1_c00019{font-size:60.000000px;}
.fs0_c00019{font-size:72.000000px;}
.y0_c00019{bottom:0.000000px;}
.y23_c00019{bottom:67.500000px;}
.y21_c00019{bottom:147.000000px;}
.y20_c00019{bottom:174.000000px;}
.y1f_c00019{bottom:201.000000px;}
.y1e_c00019{bottom:228.000000px;}
.y1d_c00019{bottom:255.000000px;}
.y1c_c00019{bottom:282.000000px;}
.y1b_c00019{bottom:330.000000px;}
.y1a_c00019{bottom:357.000000px;}
.y19_c00019{bottom:384.000000px;}
.y18_c00019{bottom:411.000000px;}
.y17_c00019{bottom:438.000000px;}
.y16_c00019{bottom:465.000000px;}
.y15_c00019{bottom:492.000000px;}
.y14_c00019{bottom:519.000000px;}
.y13_c00019{bottom:546.000000px;}
.y12_c00019{bottom:573.000000px;}
.y11_c00019{bottom:621.000000px;}
.y10_c00019{bottom:648.000000px;}
.yf_c00019{bottom:675.000000px;}
.ye_c00019{bottom:702.000000px;}
.yd_c00019{bottom:729.000000px;}
.yc_c00019{bottom:756.000000px;}
.yb_c00019{bottom:783.000000px;}
.ya_c00019{bottom:831.000000px;}
.y9_c00019{bottom:858.000000px;}
.y8_c00019{bottom:885.000000px;}
.y7_c00019{bottom:912.000000px;}
.y6_c00019{bottom:939.000000px;}
.y5_c00019{bottom:987.000000px;}
.y4_c00019{bottom:1014.000000px;}
.y3_c00019{bottom:1041.000000px;}
.y2_c00019{bottom:1068.000000px;}
.y1_c00019{bottom:1095.000000px;}
.y22_c00019{bottom:1194.000000px;}
.h3_c00019{height:44.208984px;}
.h2_c00019{height:56.074219px;}
.h1_c00019{height:67.746094px;}
.h0_c00019{height:1263.000000px;}
.w0_c00019{width:892.500000px;}
.x0_c00019{left:0.000000px;}
.x1_c00019{left:63.787500px;}
@media print{
.v0_c00019{vertical-align:0.000000pt;}
.ls1_c00019{letter-spacing:-0.012800pt;}
.ls0_c00019{letter-spacing:0.000000pt;}
.ls2_c00019{letter-spacing:0.010667pt;}
.ws0_c00019{word-spacing:0.000000pt;}
._17_c00019{margin-left:-8.921600pt;}
._18_c00019{margin-left:-6.444800pt;}
._a_c00019{margin-left:-3.705600pt;}
._19_c00019{margin-left:-2.649600pt;}
._3_c00019{margin-left:-1.689600pt;}
._5_c00019{width:1.760000pt;}
._7_c00019{width:2.918400pt;}
._0_c00019{width:4.441600pt;}
._e_c00019{width:5.523200pt;}
._10_c00019{width:7.187200pt;}
._f_c00019{width:8.262400pt;}
._d_c00019{width:9.465600pt;}
._c_c00019{width:11.008000pt;}
._9_c00019{width:12.268800pt;}
._8_c00019{width:13.881600pt;}
._b_c00019{width:15.110400pt;}
._1_c00019{width:16.249600pt;}
._6_c00019{width:18.899200pt;}
._2_c00019{width:20.684800pt;}
._4_c00019{width:22.387200pt;}
._12_c00019{width:24.064000pt;}
._13_c00019{width:25.830400pt;}
._11_c00019{width:27.558400pt;}
._14_c00019{width:29.593600pt;}
._16_c00019{width:30.771200pt;}
._15_c00019{width:32.057600pt;}
.fs1_c00019{font-size:53.333333pt;}
.fs0_c00019{font-size:64.000000pt;}
.y0_c00019{bottom:0.000000pt;}
.y23_c00019{bottom:60.000000pt;}
.y21_c00019{bottom:130.666667pt;}
.y20_c00019{bottom:154.666667pt;}
.y1f_c00019{bottom:178.666667pt;}
.y1e_c00019{bottom:202.666667pt;}
.y1d_c00019{bottom:226.666667pt;}
.y1c_c00019{bottom:250.666667pt;}
.y1b_c00019{bottom:293.333333pt;}
.y1a_c00019{bottom:317.333333pt;}
.y19_c00019{bottom:341.333333pt;}
.y18_c00019{bottom:365.333333pt;}
.y17_c00019{bottom:389.333333pt;}
.y16_c00019{bottom:413.333333pt;}
.y15_c00019{bottom:437.333333pt;}
.y14_c00019{bottom:461.333333pt;}
.y13_c00019{bottom:485.333333pt;}
.y12_c00019{bottom:509.333333pt;}
.y11_c00019{bottom:552.000000pt;}
.y10_c00019{bottom:576.000000pt;}
.yf_c00019{bottom:600.000000pt;}
.ye_c00019{bottom:624.000000pt;}
.yd_c00019{bottom:648.000000pt;}
.yc_c00019{bottom:672.000000pt;}
.yb_c00019{bottom:696.000000pt;}
.ya_c00019{bottom:738.666667pt;}
.y9_c00019{bottom:762.666667pt;}
.y8_c00019{bottom:786.666667pt;}
.y7_c00019{bottom:810.666667pt;}
.y6_c00019{bottom:834.666667pt;}
.y5_c00019{bottom:877.333333pt;}
.y4_c00019{bottom:901.333333pt;}
.y3_c00019{bottom:925.333333pt;}
.y2_c00019{bottom:949.333333pt;}
.y1_c00019{bottom:973.333333pt;}
.y22_c00019{bottom:1061.333333pt;}
.h3_c00019{height:39.296875pt;}
.h2_c00019{height:49.843750pt;}
.h1_c00019{height:60.218750pt;}
.h0_c00019{height:1122.666667pt;}
.w0_c00019{width:793.333333pt;}
.x0_c00019{left:0.000000pt;}
.x1_c00019{left:56.700000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9b2049bdbf7e8a813c05d1c5.woff2')format("woff");}.ff1_c00020{font-family:ff1_c00020;line-height:1.163086;font-style:normal;font-weight:normal;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_1697238a0f2afbb9fe935c16.woff2')format("woff");}.ff2_c00020{font-family:ff2_c00020;line-height:0.752441;font-style: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;}
.ls0_c00020{letter-spacing:0.000000px;}
.ls1_c00020{letter-spacing:0.012000px;}
.sc__c00020{text-shadow:none;}
.sc0_c00020{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00020{-webkit-text-stroke:0px transparent;}
.sc0_c00020{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00020{word-spacing:0.000000px;}
._17_c00020{margin-left:-7.452000px;}
._15_c00020{margin-left:-5.983200px;}
._d_c00020{margin-left:-4.521600px;}
._5_c00020{margin-left:-3.240000px;}
._1_c00020{margin-left:-2.131200px;}
._13_c00020{margin-left:-1.123200px;}
._7_c00020{width:1.324800px;}
._0_c00020{width:2.325600px;}
._3_c00020{width:3.592800px;}
._2_c00020{width:4.874400px;}
._4_c00020{width:6.026400px;}
._6_c00020{width:7.704000px;}
._8_c00020{width:9.705600px;}
._12_c00020{width:11.088000px;}
._14_c00020{width:12.225600px;}
._f_c00020{width:13.248000px;}
._10_c00020{width:14.551200px;}
._c_c00020{width:15.948000px;}
._16_c00020{width:17.028000px;}
._9_c00020{width:18.259200px;}
._b_c00020{width:21.801600px;}
._a_c00020{width:22.932000px;}
._e_c00020{width:24.228000px;}
._11_c00020{width:25.876800px;}
.fc0_c00020{color:rgb(0,0,0);}
.fs1_c00020{font-size:60.000000px;}
.fs0_c00020{font-size:72.000000px;}
.y0_c00020{bottom:0.000000px;}
.y24_c00020{bottom:67.500000px;}
.y22_c00020{bottom:141.000000px;}
.y21_c00020{bottom:168.000000px;}
.y20_c00020{bottom:195.000000px;}
.y1f_c00020{bottom:243.000000px;}
.y1e_c00020{bottom:270.000000px;}
.y1d_c00020{bottom:297.000000px;}
.y1c_c00020{bottom:324.000000px;}
.y1b_c00020{bottom:351.000000px;}
.y1a_c00020{bottom:378.000000px;}
.y19_c00020{bottom:405.000000px;}
.y18_c00020{bottom:432.000000px;}
.y17_c00020{bottom:459.000000px;}
.y16_c00020{bottom:486.000000px;}
.y15_c00020{bottom:513.000000px;}
.y14_c00020{bottom:540.000000px;}
.y13_c00020{bottom:588.000000px;}
.y12_c00020{bottom:615.000000px;}
.y11_c00020{bottom:642.000000px;}
.y10_c00020{bottom:669.000000px;}
.yf_c00020{bottom:717.000000px;}
.ye_c00020{bottom:744.000000px;}
.yd_c00020{bottom:771.000000px;}
.yc_c00020{bottom:798.000000px;}
.yb_c00020{bottom:825.000000px;}
.ya_c00020{bottom:852.000000px;}
.y9_c00020{bottom:879.000000px;}
.y8_c00020{bottom:906.000000px;}
.y7_c00020{bottom:933.000000px;}
.y6_c00020{bottom:960.000000px;}
.y5_c00020{bottom:987.000000px;}
.y4_c00020{bottom:1014.000000px;}
.y3_c00020{bottom:1041.000000px;}
.y2_c00020{bottom:1068.000000px;}
.y1_c00020{bottom:1095.000000px;}
.y23_c00020{bottom:1194.000000px;}
.h2_c00020{height:44.003906px;}
.h1_c00020{height:67.746094px;}
.h0_c00020{height:1263.000000px;}
.w0_c00020{width:892.500000px;}
.x0_c00020{left:0.000000px;}
.x1_c00020{left:150.519750px;}
.x2_c00020{left:167.716350px;}
.x3_c00020{left:812.027850px;}
@media print{
.v0_c00020{vertical-align:0.000000pt;}
.ls0_c00020{letter-spacing:0.000000pt;}
.ls1_c00020{letter-spacing:0.010667pt;}
.ws0_c00020{word-spacing:0.000000pt;}
._17_c00020{margin-left:-6.624000pt;}
._15_c00020{margin-left:-5.318400pt;}
._d_c00020{margin-left:-4.019200pt;}
._5_c00020{margin-left:-2.880000pt;}
._1_c00020{margin-left:-1.894400pt;}
._13_c00020{margin-left:-0.998400pt;}
._7_c00020{width:1.177600pt;}
._0_c00020{width:2.067200pt;}
._3_c00020{width:3.193600pt;}
._2_c00020{width:4.332800pt;}
._4_c00020{width:5.356800pt;}
._6_c00020{width:6.848000pt;}
._8_c00020{width:8.627200pt;}
._12_c00020{width:9.856000pt;}
._14_c00020{width:10.867200pt;}
._f_c00020{width:11.776000pt;}
._10_c00020{width:12.934400pt;}
._c_c00020{width:14.176000pt;}
._16_c00020{width:15.136000pt;}
._9_c00020{width:16.230400pt;}
._b_c00020{width:19.379200pt;}
._a_c00020{width:20.384000pt;}
._e_c00020{width:21.536000pt;}
._11_c00020{width:23.001600pt;}
.fs1_c00020{font-size:53.333333pt;}
.fs0_c00020{font-size:64.000000pt;}
.y0_c00020{bottom:0.000000pt;}
.y24_c00020{bottom:60.000000pt;}
.y22_c00020{bottom:125.333333pt;}
.y21_c00020{bottom:149.333333pt;}
.y20_c00020{bottom:173.333333pt;}
.y1f_c00020{bottom:216.000000pt;}
.y1e_c00020{bottom:240.000000pt;}
.y1d_c00020{bottom:264.000000pt;}
.y1c_c00020{bottom:288.000000pt;}
.y1b_c00020{bottom:312.000000pt;}
.y1a_c00020{bottom:336.000000pt;}
.y19_c00020{bottom:360.000000pt;}
.y18_c00020{bottom:384.000000pt;}
.y17_c00020{bottom:408.000000pt;}
.y16_c00020{bottom:432.000000pt;}
.y15_c00020{bottom:456.000000pt;}
.y14_c00020{bottom:480.000000pt;}
.y13_c00020{bottom:522.666667pt;}
.y12_c00020{bottom:546.666667pt;}
.y11_c00020{bottom:570.666667pt;}
.y10_c00020{bottom:594.666667pt;}
.yf_c00020{bottom:637.333333pt;}
.ye_c00020{bottom:661.333333pt;}
.yd_c00020{bottom:685.333333pt;}
.yc_c00020{bottom:709.333333pt;}
.yb_c00020{bottom:733.333333pt;}
.ya_c00020{bottom:757.333333pt;}
.y9_c00020{bottom:781.333333pt;}
.y8_c00020{bottom:805.333333pt;}
.y7_c00020{bottom:829.333333pt;}
.y6_c00020{bottom:853.333333pt;}
.y5_c00020{bottom:877.333333pt;}
.y4_c00020{bottom:901.333333pt;}
.y3_c00020{bottom:925.333333pt;}
.y2_c00020{bottom:949.333333pt;}
.y1_c00020{bottom:973.333333pt;}
.y23_c00020{bottom:1061.333333pt;}
.h2_c00020{height:39.114583pt;}
.h1_c00020{height:60.218750pt;}
.h0_c00020{height:1122.666667pt;}
.w0_c00020{width:793.333333pt;}
.x0_c00020{left:0.000000pt;}
.x1_c00020{left:133.795333pt;}
.x2_c00020{left:149.081200pt;}
.x3_c00020{left:721.802533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f8ad2678ed553a43efb1159a.woff2')format("woff");}.ff1_c00021{font-family:ff1_c00021;line-height:1.163086;font-style:normal;font-weight:normal;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_8921dbb34e776f87c6c41d8b.woff2')format("woff");}.ff2_c00021{font-family:ff2_c00021;line-height:0.756836;font-style:normal;font-weight:normal;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_dc582e4e1ada6a086f107172.woff2')format("woff");}.ff3_c00021{font-family:ff3_c00021;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00021{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00021{vertical-align:0.000000px;}
.ls0_c00021{letter-spacing:0.000000px;}
.ls1_c00021{letter-spacing:0.012000px;}
.sc__c00021{text-shadow:none;}
.sc0_c00021{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00021{-webkit-text-stroke:0px transparent;}
.sc0_c00021{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00021{word-spacing:0.000000px;}
._9_c00021{margin-left:-4.521600px;}
._7_c00021{margin-left:-2.700000px;}
._2_c00021{margin-left:-1.591200px;}
._0_c00021{width:1.296000px;}
._8_c00021{width:2.800800px;}
._5_c00021{width:3.902400px;}
._a_c00021{width:5.774400px;}
._10_c00021{width:7.092000px;}
._12_c00021{width:8.316000px;}
._11_c00021{width:9.568800px;}
._6_c00021{width:11.376000px;}
._1_c00021{width:13.939200px;}
._4_c00021{width:15.184800px;}
._3_c00021{width:16.819200px;}
._13_c00021{width:18.122400px;}
._e_c00021{width:21.218400px;}
._b_c00021{width:22.752000px;}
._d_c00021{width:24.019200px;}
._f_c00021{width:25.567200px;}
._c_c00021{width:28.533600px;}
.fc0_c00021{color:rgb(0,0,0);}
.fs1_c00021{font-size:60.000000px;}
.fs0_c00021{font-size:72.000000px;}
.y0_c00021{bottom:0.000000px;}
.yd_c00021{bottom:67.500000px;}
.yb_c00021{bottom:804.000000px;}
.ya_c00021{bottom:831.000000px;}
.y9_c00021{bottom:858.000000px;}
.y8_c00021{bottom:885.000000px;}
.y7_c00021{bottom:912.000000px;}
.y6_c00021{bottom:939.000000px;}
.y5_c00021{bottom:987.000000px;}
.y4_c00021{bottom:1014.000000px;}
.y3_c00021{bottom:1041.000000px;}
.y2_c00021{bottom:1068.000000px;}
.y1_c00021{bottom:1095.000000px;}
.yc_c00021{bottom:1194.000000px;}
.h3_c00021{height:44.208984px;}
.h2_c00021{height:56.074219px;}
.h1_c00021{height:67.746094px;}
.h0_c00021{height:1263.000000px;}
.w0_c00021{width:892.500000px;}
.x0_c00021{left:0.000000px;}
.x1_c00021{left:63.787500px;}
@media print{
.v0_c00021{vertical-align:0.000000pt;}
.ls0_c00021{letter-spacing:0.000000pt;}
.ls1_c00021{letter-spacing:0.010667pt;}
.ws0_c00021{word-spacing:0.000000pt;}
._9_c00021{margin-left:-4.019200pt;}
._7_c00021{margin-left:-2.400000pt;}
._2_c00021{margin-left:-1.414400pt;}
._0_c00021{width:1.152000pt;}
._8_c00021{width:2.489600pt;}
._5_c00021{width:3.468800pt;}
._a_c00021{width:5.132800pt;}
._10_c00021{width:6.304000pt;}
._12_c00021{width:7.392000pt;}
._11_c00021{width:8.505600pt;}
._6_c00021{width:10.112000pt;}
._1_c00021{width:12.390400pt;}
._4_c00021{width:13.497600pt;}
._3_c00021{width:14.950400pt;}
._13_c00021{width:16.108800pt;}
._e_c00021{width:18.860800pt;}
._b_c00021{width:20.224000pt;}
._d_c00021{width:21.350400pt;}
._f_c00021{width:22.726400pt;}
._c_c00021{width:25.363200pt;}
.fs1_c00021{font-size:53.333333pt;}
.fs0_c00021{font-size:64.000000pt;}
.y0_c00021{bottom:0.000000pt;}
.yd_c00021{bottom:60.000000pt;}
.yb_c00021{bottom:714.666667pt;}
.ya_c00021{bottom:738.666667pt;}
.y9_c00021{bottom:762.666667pt;}
.y8_c00021{bottom:786.666667pt;}
.y7_c00021{bottom:810.666667pt;}
.y6_c00021{bottom:834.666667pt;}
.y5_c00021{bottom:877.333333pt;}
.y4_c00021{bottom:901.333333pt;}
.y3_c00021{bottom:925.333333pt;}
.y2_c00021{bottom:949.333333pt;}
.y1_c00021{bottom:973.333333pt;}
.yc_c00021{bottom:1061.333333pt;}
.h3_c00021{height:39.296875pt;}
.h2_c00021{height:49.843750pt;}
.h1_c00021{height:60.218750pt;}
.h0_c00021{height:1122.666667pt;}
.w0_c00021{width:793.333333pt;}
.x0_c00021{left:0.000000pt;}
.x1_c00021{left:56.700000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4681d626ae900e62dbc2df32.woff2')format("woff");}.ff1_c00022{font-family:ff1_c00022;line-height:0.717285;font-style:normal;font-weight:normal;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_654aa1cbb2a10b7c57ed3cae.woff2')format("woff");}.ff2_c00022{font-family:ff2_c00022;line-height:0.882324;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00022{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00022{vertical-align:0.000000px;}
.ls0_c00022{letter-spacing:-0.016800px;}
.ls1_c00022{letter-spacing:0.000000px;}
.sc__c00022{text-shadow:none;}
.sc0_c00022{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00022{-webkit-text-stroke:0px transparent;}
.sc0_c00022{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00022{word-spacing:0.000000px;}
.fc2_c00022{color:transparent;}
.fc1_c00022{color:rgb(255,255,255);}
.fc0_c00022{color:rgb(6,6,6);}
.fs0_c00022{font-size:84.000000px;}
.fs1_c00022{font-size:144.000000px;}
.y0_c00022{bottom:0.000000px;}
.y5_c00022{bottom:23.835000px;}
.y4_c00022{bottom:67.335000px;}
.y3_c00022{bottom:110.835000px;}
.y2_c00022{bottom:188.835000px;}
.y1_c00022{bottom:919.500000px;}
.h3_c00022{height:124.593750px;}
.h2_c00022{height:261.000000px;}
.h0_c00022{height:1262.835000px;}
.h1_c00022{height:1263.000000px;}
.w2_c00022{width:582.000000px;}
.w0_c00022{width:892.935000px;}
.w1_c00022{width:893.250000px;}
.x0_c00022{left:0.000000px;}
.x2_c00022{left:16.500000px;}
.x3_c00022{left:22.307265px;}
.x1_c00022{left:280.500000px;}
@media print{
.v0_c00022{vertical-align:0.000000pt;}
.ls0_c00022{letter-spacing:-0.014933pt;}
.ls1_c00022{letter-spacing:0.000000pt;}
.ws0_c00022{word-spacing:0.000000pt;}
.fs0_c00022{font-size:74.666667pt;}
.fs1_c00022{font-size:128.000000pt;}
.y0_c00022{bottom:0.000000pt;}
.y5_c00022{bottom:21.186667pt;}
.y4_c00022{bottom:59.853333pt;}
.y3_c00022{bottom:98.520000pt;}
.y2_c00022{bottom:167.853333pt;}
.y1_c00022{bottom:817.333333pt;}
.h3_c00022{height:110.750000pt;}
.h2_c00022{height:232.000000pt;}
.h0_c00022{height:1122.520000pt;}
.h1_c00022{height:1122.666667pt;}
.w2_c00022{width:517.333333pt;}
.w0_c00022{width:793.720000pt;}
.w1_c00022{width:794.000000pt;}
.x0_c00022{left:0.000000pt;}
.x2_c00022{left:14.666667pt;}
.x3_c00022{left:19.828680pt;}
.x1_c00022{left:249.333333pt;}
}





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





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_97fd1103b28943d589d7f464.woff2')format("woff");}.ff1_c00024{font-family:ff1_c00024;line-height:0.939453;font-style:normal;font-weight:normal;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_c6fb539cb320e083481608e7.woff2')format("woff");}.ff2_c00024{font-family:ff2_c00024;line-height:0.934082;font-style:normal;font-weight:normal;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_74dc78c62a2918daf8555e7a.woff2')format("woff");}.ff3_c00024{font-family:ff3_c00024;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00024;src:url('chunks/assets/font_ed6b42e8b5a36e47d8df71c5.woff2')format("woff");}.ff4_c00024{font-family:ff4_c00024;line-height:1.155762;font-style:normal;font-weight:normal;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_442e9fd2b425bff1b1750fac.woff2')format("woff");}.ff5_c00024{font-family:ff5_c00024;line-height:0.903320;font-style:normal;font-weight: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_c00024;src:url('chunks/assets/font_a4534417b4635bf41308b7a2.woff2')format("woff");}.ff6_c00024{font-family:ff6_c00024;line-height:0.889648;font-style: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);}
.v2_c00024{vertical-align:-23.086200px;}
.v3_c00024{vertical-align:-15.000000px;}
.v0_c00024{vertical-align:0.000000px;}
.v1_c00024{vertical-align:23.086200px;}
.ls3_c00024{letter-spacing:0.000000px;}
.ls1_c00024{letter-spacing:0.008400px;}
.ls0_c00024{letter-spacing:0.010800px;}
.ls2_c00024{letter-spacing:0.012000px;}
.ls4_c00024{letter-spacing:0.014400px;}
.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;}
}
.ws2_c00024{word-spacing:-13.200000px;}
.ws3_c00024{word-spacing:-10.000001px;}
.ws4_c00024{word-spacing:0.000000px;}
.ws0_c00024{word-spacing:43.876800px;}
.ws1_c00024{word-spacing:47.952000px;}
._19_c00024{margin-left:-15.955203px;}
._18_c00024{margin-left:-14.044797px;}
._16_c00024{margin-left:-7.243200px;}
._17_c00024{margin-left:-5.337201px;}
._9_c00024{margin-left:-4.298400px;}
._2_c00024{margin-left:-3.168000px;}
._0_c00024{margin-left:-1.926000px;}
._1_c00024{width:1.596000px;}
._4_c00024{width:2.793600px;}
._b_c00024{width:4.413600px;}
._15_c00024{width:5.540400px;}
._c_c00024{width:7.264800px;}
._5_c00024{width:8.827200px;}
._7_c00024{width:9.996000px;}
._6_c00024{width:11.556000px;}
._8_c00024{width:13.554000px;}
._3_c00024{width:14.752800px;}
._a_c00024{width:15.890400px;}
._10_c00024{width:17.508000px;}
._e_c00024{width:21.844800px;}
._f_c00024{width:23.778000px;}
._d_c00024{width:26.606400px;}
._14_c00024{width:34.188000px;}
._11_c00024{width:35.820000px;}
._13_c00024{width:37.774800px;}
._12_c00024{width:40.060800px;}
.fc0_c00024{color:rgb(0,0,0);}
.fs7_c00024{font-size:40.000002px;}
.fs5_c00024{font-size:48.000000px;}
.fs6_c00024{font-size:60.000000px;}
.fs3_c00024{font-size:72.000000px;}
.fs4_c00024{font-size:78.000000px;}
.fs2_c00024{font-size:84.000000px;}
.fs0_c00024{font-size:108.000000px;}
.fs1_c00024{font-size:120.000000px;}
.y0_c00024{bottom:0.000000px;}
.y16_c00024{bottom:67.500000px;}
.y18_c00024{bottom:132.000000px;}
.y17_c00024{bottom:155.250000px;}
.y14_c00024{bottom:250.500000px;}
.y13_c00024{bottom:277.500000px;}
.y12_c00024{bottom:304.500000px;}
.y11_c00024{bottom:331.500000px;}
.y10_c00024{bottom:378.000000px;}
.yf_c00024{bottom:444.000000px;}
.ye_c00024{bottom:466.500000px;}
.yd_c00024{bottom:489.000000px;}
.yc_c00024{bottom:532.500000px;}
.yb_c00024{bottom:576.000000px;}
.ya_c00024{bottom:624.000000px;}
.y9_c00024{bottom:651.000000px;}
.y8_c00024{bottom:699.000000px;}
.y7_c00024{bottom:726.000000px;}
.y6_c00024{bottom:753.000000px;}
.y5_c00024{bottom:780.000000px;}
.y4_c00024{bottom:807.000000px;}
.y3_c00024{bottom:834.000000px;}
.y2_c00024{bottom:894.000000px;}
.y1_c00024{bottom:1042.500000px;}
.y15_c00024{bottom:1194.000000px;}
.h8_c00024{height:27.421876px;}
.h9_c00024{height:41.132812px;}
.h3_c00024{height:51.257812px;}
.h4_c00024{height:52.417969px;}
.h7_c00024{height:56.074219px;}
.h5_c00024{height:56.100586px;}
.h6_c00024{height:57.258075px;}
.h2_c00024{height:60.416016px;}
.h1_c00024{height:86.308594px;}
.h0_c00024{height:1263.000000px;}
.w0_c00024{width:892.500000px;}
.x0_c00024{left:0.000000px;}
.x1_c00024{left:150.519750px;}
.x2_c00024{left:162.519750px;}
.x3_c00024{left:189.519750px;}
.x4_c00024{left:281.790150px;}
.x5_c00024{left:810.335100px;}
@media print{
.v2_c00024{vertical-align:-20.521067pt;}
.v3_c00024{vertical-align:-13.333333pt;}
.v0_c00024{vertical-align:0.000000pt;}
.v1_c00024{vertical-align:20.521067pt;}
.ls3_c00024{letter-spacing:0.000000pt;}
.ls1_c00024{letter-spacing:0.007467pt;}
.ls0_c00024{letter-spacing:0.009600pt;}
.ls2_c00024{letter-spacing:0.010667pt;}
.ls4_c00024{letter-spacing:0.012800pt;}
.ws2_c00024{word-spacing:-11.733333pt;}
.ws3_c00024{word-spacing:-8.888889pt;}
.ws4_c00024{word-spacing:0.000000pt;}
.ws0_c00024{word-spacing:39.001600pt;}
.ws1_c00024{word-spacing:42.624000pt;}
._19_c00024{margin-left:-14.182403pt;}
._18_c00024{margin-left:-12.484264pt;}
._16_c00024{margin-left:-6.438400pt;}
._17_c00024{margin-left:-4.744179pt;}
._9_c00024{margin-left:-3.820800pt;}
._2_c00024{margin-left:-2.816000pt;}
._0_c00024{margin-left:-1.712000pt;}
._1_c00024{width:1.418667pt;}
._4_c00024{width:2.483200pt;}
._b_c00024{width:3.923200pt;}
._15_c00024{width:4.924800pt;}
._c_c00024{width:6.457600pt;}
._5_c00024{width:7.846400pt;}
._7_c00024{width:8.885333pt;}
._6_c00024{width:10.272000pt;}
._8_c00024{width:12.048000pt;}
._3_c00024{width:13.113600pt;}
._a_c00024{width:14.124800pt;}
._10_c00024{width:15.562667pt;}
._e_c00024{width:19.417600pt;}
._f_c00024{width:21.136000pt;}
._d_c00024{width:23.650133pt;}
._14_c00024{width:30.389333pt;}
._11_c00024{width:31.840000pt;}
._13_c00024{width:33.577600pt;}
._12_c00024{width:35.609600pt;}
.fs7_c00024{font-size:35.555557pt;}
.fs5_c00024{font-size:42.666667pt;}
.fs6_c00024{font-size:53.333333pt;}
.fs3_c00024{font-size:64.000000pt;}
.fs4_c00024{font-size:69.333333pt;}
.fs2_c00024{font-size:74.666667pt;}
.fs0_c00024{font-size:96.000000pt;}
.fs1_c00024{font-size:106.666667pt;}
.y0_c00024{bottom:0.000000pt;}
.y16_c00024{bottom:60.000000pt;}
.y18_c00024{bottom:117.333333pt;}
.y17_c00024{bottom:138.000000pt;}
.y14_c00024{bottom:222.666667pt;}
.y13_c00024{bottom:246.666667pt;}
.y12_c00024{bottom:270.666667pt;}
.y11_c00024{bottom:294.666667pt;}
.y10_c00024{bottom:336.000000pt;}
.yf_c00024{bottom:394.666667pt;}
.ye_c00024{bottom:414.666667pt;}
.yd_c00024{bottom:434.666667pt;}
.yc_c00024{bottom:473.333333pt;}
.yb_c00024{bottom:512.000000pt;}
.ya_c00024{bottom:554.666667pt;}
.y9_c00024{bottom:578.666667pt;}
.y8_c00024{bottom:621.333333pt;}
.y7_c00024{bottom:645.333333pt;}
.y6_c00024{bottom:669.333333pt;}
.y5_c00024{bottom:693.333333pt;}
.y4_c00024{bottom:717.333333pt;}
.y3_c00024{bottom:741.333333pt;}
.y2_c00024{bottom:794.666667pt;}
.y1_c00024{bottom:926.666667pt;}
.y15_c00024{bottom:1061.333333pt;}
.h8_c00024{height:24.375001pt;}
.h9_c00024{height:36.562500pt;}
.h3_c00024{height:45.562500pt;}
.h4_c00024{height:46.593750pt;}
.h7_c00024{height:49.843750pt;}
.h5_c00024{height:49.867188pt;}
.h6_c00024{height:50.896067pt;}
.h2_c00024{height:53.703125pt;}
.h1_c00024{height:76.718750pt;}
.h0_c00024{height:1122.666667pt;}
.w0_c00024{width:793.333333pt;}
.x0_c00024{left:0.000000pt;}
.x1_c00024{left:133.795333pt;}
.x2_c00024{left:144.462000pt;}
.x3_c00024{left:168.462000pt;}
.x4_c00024{left:250.480133pt;}
.x5_c00024{left:720.297867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e96277829a0f67b6931d59bb.woff2')format("woff");}.ff1_c00025{font-family:ff1_c00025;line-height:0.934082;font-style:normal;font-weight:normal;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_333098c4b8a7ffabd4c6d9a1.woff2')format("woff");}.ff2_c00025{font-family:ff2_c00025;line-height:0.987793;font-style:normal;font-weight:normal;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_6655af9fd1d2a4da4d11b26f.woff2')format("woff");}.ff3_c00025{font-family:ff3_c00025;line-height:0.755859;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00025;src:url('chunks/assets/font_4d0fcf01f850a3f8fcb60dda.woff2')format("woff");}.ff4_c00025{font-family:ff4_c00025;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00025{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00025{vertical-align:0.000000px;}
.ls2_c00025{letter-spacing:0.000000px;}
.ls3_c00025{letter-spacing:0.012000px;}
.ls0_c00025{letter-spacing:0.027000px;}
.ls1_c00025{letter-spacing:3.841800px;}
.sc__c00025{text-shadow:none;}
.sc0_c00025{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00025{-webkit-text-stroke:0px transparent;}
.sc0_c00025{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00025{word-spacing:-17.091000px;}
.ws1_c00025{word-spacing:0.000000px;}
._8_c00025{margin-left:-4.219200px;}
._6_c00025{margin-left:-3.139200px;}
._2_c00025{margin-left:-1.598400px;}
._11_c00025{width:1.260000px;}
._0_c00025{width:2.282400px;}
._a_c00025{width:3.499200px;}
._4_c00025{width:5.299200px;}
._b_c00025{width:6.969600px;}
._c_c00025{width:8.150400px;}
._16_c00025{width:9.403200px;}
._d_c00025{width:10.425600px;}
._e_c00025{width:11.952000px;}
._f_c00025{width:13.456800px;}
._5_c00025{width:14.457600px;}
._12_c00025{width:15.688800px;}
._1_c00025{width:17.431200px;}
._3_c00025{width:21.434400px;}
._7_c00025{width:22.773600px;}
._9_c00025{width:24.134400px;}
._10_c00025{width:25.660800px;}
._13_c00025{width:26.748000px;}
._15_c00025{width:29.599200px;}
._14_c00025{width:30.650400px;}
.fc0_c00025{color:rgb(0,0,0);}
.fs1_c00025{font-size:54.000000px;}
.fs3_c00025{font-size:60.000000px;}
.fs0_c00025{font-size:72.000000px;}
.fs2_c00025{font-size:84.000000px;}
.y0_c00025{bottom:0.000000px;}
.ye_c00025{bottom:10.500000px;}
.yd_c00025{bottom:30.000000px;}
.yc_c00025{bottom:52.500000px;}
.y13_c00025{bottom:67.500000px;}
.y11_c00025{bottom:132.000000px;}
.y10_c00025{bottom:160.500000px;}
.yf_c00025{bottom:187.500000px;}
.yb_c00025{bottom:232.500000px;}
.ya_c00025{bottom:852.000000px;}
.y9_c00025{bottom:879.000000px;}
.y8_c00025{bottom:906.000000px;}
.y7_c00025{bottom:933.000000px;}
.y6_c00025{bottom:960.000000px;}
.y5_c00025{bottom:987.000000px;}
.y4_c00025{bottom:1014.000000px;}
.y3_c00025{bottom:1041.000000px;}
.y2_c00025{bottom:1068.000000px;}
.y1_c00025{bottom:1095.000000px;}
.y12_c00025{bottom:1194.000000px;}
.h3_c00025{height:42.292969px;}
.h6_c00025{height:44.208984px;}
.h1_c00025{height:51.257812px;}
.h5_c00025{height:56.074219px;}
.h4_c00025{height:59.800781px;}
.h2_c00025{height:588.000000px;}
.h0_c00025{height:1263.000000px;}
.w1_c00025{width:676.500000px;}
.w0_c00025{width:892.500000px;}
.x0_c00025{left:0.000000px;}
.x3_c00025{left:31.682010px;}
.x2_c00025{left:45.472050px;}
.x1_c00025{left:65.480310px;}
.x4_c00025{left:302.443350px;}
@media print{
.v0_c00025{vertical-align:0.000000pt;}
.ls2_c00025{letter-spacing:0.000000pt;}
.ls3_c00025{letter-spacing:0.010667pt;}
.ls0_c00025{letter-spacing:0.024000pt;}
.ls1_c00025{letter-spacing:3.414933pt;}
.ws0_c00025{word-spacing:-15.192000pt;}
.ws1_c00025{word-spacing:0.000000pt;}
._8_c00025{margin-left:-3.750400pt;}
._6_c00025{margin-left:-2.790400pt;}
._2_c00025{margin-left:-1.420800pt;}
._11_c00025{width:1.120000pt;}
._0_c00025{width:2.028800pt;}
._a_c00025{width:3.110400pt;}
._4_c00025{width:4.710400pt;}
._b_c00025{width:6.195200pt;}
._c_c00025{width:7.244800pt;}
._16_c00025{width:8.358400pt;}
._d_c00025{width:9.267200pt;}
._e_c00025{width:10.624000pt;}
._f_c00025{width:11.961600pt;}
._5_c00025{width:12.851200pt;}
._12_c00025{width:13.945600pt;}
._1_c00025{width:15.494400pt;}
._3_c00025{width:19.052800pt;}
._7_c00025{width:20.243200pt;}
._9_c00025{width:21.452800pt;}
._10_c00025{width:22.809600pt;}
._13_c00025{width:23.776000pt;}
._15_c00025{width:26.310400pt;}
._14_c00025{width:27.244800pt;}
.fs1_c00025{font-size:48.000000pt;}
.fs3_c00025{font-size:53.333333pt;}
.fs0_c00025{font-size:64.000000pt;}
.fs2_c00025{font-size:74.666667pt;}
.y0_c00025{bottom:0.000000pt;}
.ye_c00025{bottom:9.333333pt;}
.yd_c00025{bottom:26.666667pt;}
.yc_c00025{bottom:46.666667pt;}
.y13_c00025{bottom:60.000000pt;}
.y11_c00025{bottom:117.333333pt;}
.y10_c00025{bottom:142.666667pt;}
.yf_c00025{bottom:166.666667pt;}
.yb_c00025{bottom:206.666667pt;}
.ya_c00025{bottom:757.333333pt;}
.y9_c00025{bottom:781.333333pt;}
.y8_c00025{bottom:805.333333pt;}
.y7_c00025{bottom:829.333333pt;}
.y6_c00025{bottom:853.333333pt;}
.y5_c00025{bottom:877.333333pt;}
.y4_c00025{bottom:901.333333pt;}
.y3_c00025{bottom:925.333333pt;}
.y2_c00025{bottom:949.333333pt;}
.y1_c00025{bottom:973.333333pt;}
.y12_c00025{bottom:1061.333333pt;}
.h3_c00025{height:37.593750pt;}
.h6_c00025{height:39.296875pt;}
.h1_c00025{height:45.562500pt;}
.h5_c00025{height:49.843750pt;}
.h4_c00025{height:53.156250pt;}
.h2_c00025{height:522.666667pt;}
.h0_c00025{height:1122.666667pt;}
.w1_c00025{width:601.333333pt;}
.w0_c00025{width:793.333333pt;}
.x0_c00025{left:0.000000pt;}
.x3_c00025{left:28.161787pt;}
.x2_c00025{left:40.419600pt;}
.x1_c00025{left:58.204720pt;}
.x4_c00025{left:268.838533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a68f760f4a77bb72b10a5db8.woff2')format("woff");}.ff1_c00026{font-family:ff1_c00026;line-height:0.934082;font-style:normal;font-weight:normal;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_ce97108870c34793ecb9ffb1.woff2')format("woff");}.ff2_c00026{font-family:ff2_c00026;line-height:1.155762;font-style:normal;font-weight:normal;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_9149651300c38e1605a6f62c.woff2')format("woff");}.ff3_c00026{font-family:ff3_c00026;line-height:0.905762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00026;src:url('chunks/assets/font_1ac729f31e4769493bb59647.woff2')format("woff");}.ff4_c00026{font-family:ff4_c00026;line-height:0.812500;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00026{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00026{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00026{vertical-align:-23.086200px;}
.v3_c00026{vertical-align:-15.000000px;}
.v0_c00026{vertical-align:0.000000px;}
.v1_c00026{vertical-align:23.086200px;}
.ls5_c00026{letter-spacing:0.000000px;}
.ls4_c00026{letter-spacing:0.012000px;}
.ls2_c00026{letter-spacing:0.475800px;}
.ls3_c00026{letter-spacing:0.552000px;}
.ls1_c00026{letter-spacing:6.297000px;}
.ls0_c00026{letter-spacing:9.552000px;}
.sc__c00026{text-shadow:none;}
.sc0_c00026{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00026{-webkit-text-stroke:0px transparent;}
.sc0_c00026{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00026{word-spacing:-10.000001px;}
.ws1_c00026{word-spacing:0.000000px;}
._15_c00026{margin-left:-9.770400px;}
._1c_c00026{margin-left:-8.592000px;}
._1b_c00026{margin-left:-7.156800px;}
._5_c00026{margin-left:-4.125600px;}
._9_c00026{margin-left:-2.800800px;}
._3_c00026{margin-left:-1.288800px;}
._1_c00026{width:1.216800px;}
._2_c00026{width:2.959200px;}
._0_c00026{width:4.111200px;}
._4_c00026{width:5.112000px;}
._13_c00026{width:6.192000px;}
._6_c00026{width:7.574400px;}
._16_c00026{width:9.568800px;}
._18_c00026{width:10.965600px;}
._17_c00026{width:12.945600px;}
._11_c00026{width:14.421600px;}
._14_c00026{width:15.782400px;}
._19_c00026{width:16.826400px;}
._f_c00026{width:18.158400px;}
._10_c00026{width:20.973600px;}
._e_c00026{width:22.334400px;}
._12_c00026{width:23.839200px;}
._1a_c00026{width:24.890400px;}
._c_c00026{width:31.622400px;}
._8_c00026{width:33.343200px;}
._b_c00026{width:34.610400px;}
._7_c00026{width:35.856000px;}
._a_c00026{width:37.368000px;}
._d_c00026{width:38.692800px;}
.fc0_c00026{color:rgb(0,0,0);}
.fs4_c00026{font-size:40.000002px;}
.fs1_c00026{font-size:48.000000px;}
.fs3_c00026{font-size:60.000000px;}
.fs0_c00026{font-size:72.000000px;}
.fs2_c00026{font-size:84.000000px;}
.y0_c00026{bottom:0.000000px;}
.y1b_c00026{bottom:67.500000px;}
.y22_c00026{bottom:135.750000px;}
.y21_c00026{bottom:177.000000px;}
.y20_c00026{bottom:196.500000px;}
.y1f_c00026{bottom:219.750000px;}
.y1e_c00026{bottom:261.000000px;}
.y1d_c00026{bottom:280.500000px;}
.y1c_c00026{bottom:303.750000px;}
.y19_c00026{bottom:358.500000px;}
.y18_c00026{bottom:385.500000px;}
.y17_c00026{bottom:433.500000px;}
.y16_c00026{bottom:460.500000px;}
.y15_c00026{bottom:487.500000px;}
.y14_c00026{bottom:514.500000px;}
.y13_c00026{bottom:541.500000px;}
.y12_c00026{bottom:568.500000px;}
.y11_c00026{bottom:595.500000px;}
.y10_c00026{bottom:643.500000px;}
.yf_c00026{bottom:670.500000px;}
.ye_c00026{bottom:697.500000px;}
.yd_c00026{bottom:724.500000px;}
.yc_c00026{bottom:772.500000px;}
.yb_c00026{bottom:799.500000px;}
.ya_c00026{bottom:826.500000px;}
.y9_c00026{bottom:853.500000px;}
.y8_c00026{bottom:880.500000px;}
.y7_c00026{bottom:907.500000px;}
.y6_c00026{bottom:955.500000px;}
.y5_c00026{bottom:982.500000px;}
.y4_c00026{bottom:1009.500000px;}
.y3_c00026{bottom:1036.500000px;}
.y2_c00026{bottom:1065.000000px;}
.y1_c00026{bottom:1093.500000px;}
.y1a_c00026{bottom:1194.000000px;}
.h5_c00026{height:27.480470px;}
.h6_c00026{height:41.220703px;}
.h2_c00026{height:51.257812px;}
.h4_c00026{height:56.074219px;}
.h3_c00026{height:57.258075px;}
.h1_c00026{height:59.800781px;}
.h0_c00026{height:1263.000000px;}
.w0_c00026{width:892.500000px;}
.x0_c00026{left:0.000000px;}
.x1_c00026{left:150.519750px;}
.x2_c00026{left:281.790150px;}
.x3_c00026{left:810.335100px;}
@media print{
.v2_c00026{vertical-align:-20.521067pt;}
.v3_c00026{vertical-align:-13.333333pt;}
.v0_c00026{vertical-align:0.000000pt;}
.v1_c00026{vertical-align:20.521067pt;}
.ls5_c00026{letter-spacing:0.000000pt;}
.ls4_c00026{letter-spacing:0.010667pt;}
.ls2_c00026{letter-spacing:0.422933pt;}
.ls3_c00026{letter-spacing:0.490667pt;}
.ls1_c00026{letter-spacing:5.597333pt;}
.ls0_c00026{letter-spacing:8.490667pt;}
.ws0_c00026{word-spacing:-8.888889pt;}
.ws1_c00026{word-spacing:0.000000pt;}
._15_c00026{margin-left:-8.684800pt;}
._1c_c00026{margin-left:-7.637333pt;}
._1b_c00026{margin-left:-6.361600pt;}
._5_c00026{margin-left:-3.667200pt;}
._9_c00026{margin-left:-2.489600pt;}
._3_c00026{margin-left:-1.145600pt;}
._1_c00026{width:1.081600pt;}
._2_c00026{width:2.630400pt;}
._0_c00026{width:3.654400pt;}
._4_c00026{width:4.544000pt;}
._13_c00026{width:5.504000pt;}
._6_c00026{width:6.732800pt;}
._16_c00026{width:8.505600pt;}
._18_c00026{width:9.747200pt;}
._17_c00026{width:11.507200pt;}
._11_c00026{width:12.819200pt;}
._14_c00026{width:14.028800pt;}
._19_c00026{width:14.956800pt;}
._f_c00026{width:16.140800pt;}
._10_c00026{width:18.643200pt;}
._e_c00026{width:19.852800pt;}
._12_c00026{width:21.190400pt;}
._1a_c00026{width:22.124800pt;}
._c_c00026{width:28.108800pt;}
._8_c00026{width:29.638400pt;}
._b_c00026{width:30.764800pt;}
._7_c00026{width:31.872000pt;}
._a_c00026{width:33.216000pt;}
._d_c00026{width:34.393600pt;}
.fs4_c00026{font-size:35.555557pt;}
.fs1_c00026{font-size:42.666667pt;}
.fs3_c00026{font-size:53.333333pt;}
.fs0_c00026{font-size:64.000000pt;}
.fs2_c00026{font-size:74.666667pt;}
.y0_c00026{bottom:0.000000pt;}
.y1b_c00026{bottom:60.000000pt;}
.y22_c00026{bottom:120.666667pt;}
.y21_c00026{bottom:157.333333pt;}
.y20_c00026{bottom:174.666667pt;}
.y1f_c00026{bottom:195.333333pt;}
.y1e_c00026{bottom:232.000000pt;}
.y1d_c00026{bottom:249.333333pt;}
.y1c_c00026{bottom:270.000000pt;}
.y19_c00026{bottom:318.666667pt;}
.y18_c00026{bottom:342.666667pt;}
.y17_c00026{bottom:385.333333pt;}
.y16_c00026{bottom:409.333333pt;}
.y15_c00026{bottom:433.333333pt;}
.y14_c00026{bottom:457.333333pt;}
.y13_c00026{bottom:481.333333pt;}
.y12_c00026{bottom:505.333333pt;}
.y11_c00026{bottom:529.333333pt;}
.y10_c00026{bottom:572.000000pt;}
.yf_c00026{bottom:596.000000pt;}
.ye_c00026{bottom:620.000000pt;}
.yd_c00026{bottom:644.000000pt;}
.yc_c00026{bottom:686.666667pt;}
.yb_c00026{bottom:710.666667pt;}
.ya_c00026{bottom:734.666667pt;}
.y9_c00026{bottom:758.666667pt;}
.y8_c00026{bottom:782.666667pt;}
.y7_c00026{bottom:806.666667pt;}
.y6_c00026{bottom:849.333333pt;}
.y5_c00026{bottom:873.333333pt;}
.y4_c00026{bottom:897.333333pt;}
.y3_c00026{bottom:921.333333pt;}
.y2_c00026{bottom:946.666667pt;}
.y1_c00026{bottom:972.000000pt;}
.y1a_c00026{bottom:1061.333333pt;}
.h5_c00026{height:24.427085pt;}
.h6_c00026{height:36.640625pt;}
.h2_c00026{height:45.562500pt;}
.h4_c00026{height:49.843750pt;}
.h3_c00026{height:50.896067pt;}
.h1_c00026{height:53.156250pt;}
.h0_c00026{height:1122.666667pt;}
.w0_c00026{width:793.333333pt;}
.x0_c00026{left:0.000000pt;}
.x1_c00026{left:133.795333pt;}
.x2_c00026{left:250.480133pt;}
.x3_c00026{left:720.297867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_de2856f49bf6941ebefac8dd.woff2')format("woff");}.ff1_c00027{font-family:ff1_c00027;line-height:0.934082;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00027;src:url('chunks/assets/font_0fad7bc7d78443bfa944bf75.woff2')format("woff");}.ff2_c00027{font-family:ff2_c00027;line-height:0.987793;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00027;src:url('chunks/assets/font_64016c75c54575f2d14f2e7f.woff2')format("woff");}.ff3_c00027{font-family:ff3_c00027;line-height:0.755859;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00027;src:url('chunks/assets/font_9811df5a68d230439374db3e.woff2')format("woff");}.ff4_c00027{font-family:ff4_c00027;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00027;src:url('chunks/assets/font_6d4e94c227ba938298c1b9ed.woff2')format("woff");}.ff5_c00027{font-family:ff5_c00027;line-height:0.904785;font-style:normal;font-weight: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_c00027;src:url('chunks/assets/font_4942820481effc7275dde817.woff2')format("woff");}.ff6_c00027{font-family:ff6_c00027;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00027{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00027{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00027{vertical-align:-15.000000px;}
.v0_c00027{vertical-align:0.000000px;}
.v1_c00027{vertical-align:23.086200px;}
.ls1_c00027{letter-spacing:0.000000px;}
.ls2_c00027{letter-spacing:0.012000px;}
.ls0_c00027{letter-spacing:3.999999px;}
.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:-13.200000px;}
.ws1_c00027{word-spacing:0.000000px;}
._15_c00027{margin-left:-10.584000px;}
._14_c00027{margin-left:-6.926400px;}
._11_c00027{margin-left:-5.299200px;}
._13_c00027{margin-left:-4.161600px;}
._4_c00027{margin-left:-2.772000px;}
._2_c00027{margin-left:-1.360800px;}
._6_c00027{width:1.087200px;}
._c_c00027{width:2.304000px;}
._9_c00027{width:3.384000px;}
._0_c00027{width:4.989600px;}
._b_c00027{width:6.926400px;}
._12_c00027{width:8.330400px;}
._e_c00027{width:10.720800px;}
._10_c00027{width:13.075200px;}
._d_c00027{width:14.328000px;}
._f_c00027{width:15.796800px;}
._1_c00027{width:25.077600px;}
._a_c00027{width:26.690400px;}
._7_c00027{width:28.929600px;}
._8_c00027{width:29.973600px;}
._3_c00027{width:31.384800px;}
._5_c00027{width:32.810400px;}
.fc0_c00027{color:rgb(0,0,0);}
.fs4_c00027{font-size:40.000002px;}
.fs2_c00027{font-size:48.000000px;}
.fs1_c00027{font-size:54.000000px;}
.fs3_c00027{font-size:60.000000px;}
.fs0_c00027{font-size:72.000000px;}
.y0_c00027{bottom:0.000000px;}
.y5_c00027{bottom:10.500000px;}
.y4_c00027{bottom:33.000000px;}
.y12_c00027{bottom:67.500000px;}
.y14_c00027{bottom:132.000000px;}
.y13_c00027{bottom:155.250000px;}
.y10_c00027{bottom:216.000000px;}
.yf_c00027{bottom:243.000000px;}
.ye_c00027{bottom:291.000000px;}
.yd_c00027{bottom:318.000000px;}
.yc_c00027{bottom:366.000000px;}
.yb_c00027{bottom:393.000000px;}
.ya_c00027{bottom:420.000000px;}
.y9_c00027{bottom:447.000000px;}
.y8_c00027{bottom:474.000000px;}
.y7_c00027{bottom:501.000000px;}
.y6_c00027{bottom:528.000000px;}
.y3_c00027{bottom:573.000000px;}
.y2_c00027{bottom:1068.000000px;}
.y1_c00027{bottom:1095.000000px;}
.y11_c00027{bottom:1194.000000px;}
.h7_c00027{height:27.480470px;}
.h8_c00027{height:41.220703px;}
.h3_c00027{height:42.292969px;}
.h6_c00027{height:44.208984px;}
.h1_c00027{height:51.257812px;}
.h5_c00027{height:56.074219px;}
.h4_c00027{height:57.258075px;}
.h2_c00027{height:463.500000px;}
.h0_c00027{height:1263.000000px;}
.w1_c00027{width:676.499850px;}
.w0_c00027{width:892.500000px;}
.x0_c00027{left:0.000000px;}
.x2_c00027{left:37.139970px;}
.x1_c00027{left:65.480310px;}
.x3_c00027{left:273.933750px;}
@media print{
.v2_c00027{vertical-align:-13.333333pt;}
.v0_c00027{vertical-align:0.000000pt;}
.v1_c00027{vertical-align:20.521067pt;}
.ls1_c00027{letter-spacing:0.000000pt;}
.ls2_c00027{letter-spacing:0.010667pt;}
.ls0_c00027{letter-spacing:3.555555pt;}
.ws0_c00027{word-spacing:-11.733333pt;}
.ws1_c00027{word-spacing:0.000000pt;}
._15_c00027{margin-left:-9.408000pt;}
._14_c00027{margin-left:-6.156800pt;}
._11_c00027{margin-left:-4.710400pt;}
._13_c00027{margin-left:-3.699200pt;}
._4_c00027{margin-left:-2.464000pt;}
._2_c00027{margin-left:-1.209600pt;}
._6_c00027{width:0.966400pt;}
._c_c00027{width:2.048000pt;}
._9_c00027{width:3.008000pt;}
._0_c00027{width:4.435200pt;}
._b_c00027{width:6.156800pt;}
._12_c00027{width:7.404800pt;}
._e_c00027{width:9.529600pt;}
._10_c00027{width:11.622400pt;}
._d_c00027{width:12.736000pt;}
._f_c00027{width:14.041600pt;}
._1_c00027{width:22.291200pt;}
._a_c00027{width:23.724800pt;}
._7_c00027{width:25.715200pt;}
._8_c00027{width:26.643200pt;}
._3_c00027{width:27.897600pt;}
._5_c00027{width:29.164800pt;}
.fs4_c00027{font-size:35.555557pt;}
.fs2_c00027{font-size:42.666667pt;}
.fs1_c00027{font-size:48.000000pt;}
.fs3_c00027{font-size:53.333333pt;}
.fs0_c00027{font-size:64.000000pt;}
.y0_c00027{bottom:0.000000pt;}
.y5_c00027{bottom:9.333333pt;}
.y4_c00027{bottom:29.333333pt;}
.y12_c00027{bottom:60.000000pt;}
.y14_c00027{bottom:117.333333pt;}
.y13_c00027{bottom:138.000000pt;}
.y10_c00027{bottom:192.000000pt;}
.yf_c00027{bottom:216.000000pt;}
.ye_c00027{bottom:258.666667pt;}
.yd_c00027{bottom:282.666667pt;}
.yc_c00027{bottom:325.333333pt;}
.yb_c00027{bottom:349.333333pt;}
.ya_c00027{bottom:373.333333pt;}
.y9_c00027{bottom:397.333333pt;}
.y8_c00027{bottom:421.333333pt;}
.y7_c00027{bottom:445.333333pt;}
.y6_c00027{bottom:469.333333pt;}
.y3_c00027{bottom:509.333333pt;}
.y2_c00027{bottom:949.333333pt;}
.y1_c00027{bottom:973.333333pt;}
.y11_c00027{bottom:1061.333333pt;}
.h7_c00027{height:24.427085pt;}
.h8_c00027{height:36.640625pt;}
.h3_c00027{height:37.593750pt;}
.h6_c00027{height:39.296875pt;}
.h1_c00027{height:45.562500pt;}
.h5_c00027{height:49.843750pt;}
.h4_c00027{height:50.896067pt;}
.h2_c00027{height:412.000000pt;}
.h0_c00027{height:1122.666667pt;}
.w1_c00027{width:601.333200pt;}
.w0_c00027{width:793.333333pt;}
.x0_c00027{left:0.000000pt;}
.x2_c00027{left:33.013307pt;}
.x1_c00027{left:58.204720pt;}
.x3_c00027{left:243.496667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c5ab802a9d316138d5b1ea50.woff2')format("woff");}.ff1_c00028{font-family:ff1_c00028;line-height:0.928223;font-style:normal;font-weight:normal;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_a80317c385fd9f68ecd8e885.woff2')format("woff");}.ff2_c00028{font-family:ff2_c00028;line-height:0.934082;font-style:normal;font-weight:normal;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_5273099efa38ae2281656046.woff2')format("woff");}.ff3_c00028{font-family:ff3_c00028;line-height:1.155762;font-style:normal;font-weight:normal;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_ee94110c3550132abe19311e.woff2')format("woff");}.ff4_c00028{font-family:ff4_c00028;line-height:1.101562;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00028;src:url('chunks/assets/font_6ecea70223c5ce10306be50e.woff2')format("woff");}.ff5_c00028{font-family:ff5_c00028;line-height:1.092285;font-style: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);}
.v2_c00028{vertical-align:-23.086200px;}
.v3_c00028{vertical-align:-15.000000px;}
.v0_c00028{vertical-align:0.000000px;}
.v1_c00028{vertical-align:23.086200px;}
.ls9_c00028{letter-spacing:-0.009600px;}
.ls8_c00028{letter-spacing:-0.007200px;}
.ls7_c00028{letter-spacing:0.000000px;}
.ls0_c00028{letter-spacing:0.007800px;}
.ls5_c00028{letter-spacing:0.012000px;}
.ls4_c00028{letter-spacing:1.758000px;}
.ls1_c00028{letter-spacing:2.445000px;}
.ls2_c00028{letter-spacing:3.352800px;}
.ls3_c00028{letter-spacing:3.689400px;}
.ls6_c00028{letter-spacing:3.999999px;}
.sc__c00028{text-shadow:none;}
.sc0_c00028{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00028{-webkit-text-stroke:0px transparent;}
.sc0_c00028{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00028{word-spacing:-19.800000px;}
.ws1_c00028{word-spacing:-13.190400px;}
.ws2_c00028{word-spacing:-10.000001px;}
.ws3_c00028{word-spacing:0.000000px;}
._e_c00028{margin-left:-10.468800px;}
._5_c00028{margin-left:-8.402400px;}
._1b_c00028{margin-left:-5.340000px;}
._8_c00028{margin-left:-4.039200px;}
._6_c00028{margin-left:-2.512800px;}
._0_c00028{margin-left:-1.404000px;}
._3_c00028{width:1.720800px;}
._4_c00028{width:2.872800px;}
._9_c00028{width:3.873600px;}
._2_c00028{width:5.126400px;}
._1_c00028{width:6.832800px;}
._1a_c00028{width:7.970400px;}
._7_c00028{width:9.331200px;}
._10_c00028{width:10.432800px;}
._12_c00028{width:11.505600px;}
._13_c00028{width:12.556800px;}
._11_c00028{width:14.277600px;}
._15_c00028{width:15.688800px;}
._f_c00028{width:16.804800px;}
._14_c00028{width:17.899200px;}
._d_c00028{width:21.686400px;}
._a_c00028{width:22.910400px;}
._b_c00028{width:23.944800px;}
._c_c00028{width:25.380000px;}
._19_c00028{width:30.067200px;}
._17_c00028{width:31.248000px;}
._16_c00028{width:32.932800px;}
._18_c00028{width:35.431200px;}
.fc0_c00028{color:rgb(0,0,0);}
.fs4_c00028{font-size:40.000002px;}
.fs2_c00028{font-size:48.000000px;}
.fs3_c00028{font-size:60.000000px;}
.fs1_c00028{font-size:72.000000px;}
.fs0_c00028{font-size:78.000000px;}
.y0_c00028{bottom:0.000000px;}
.y16_c00028{bottom:67.500000px;}
.y21_c00028{bottom:135.750000px;}
.y20_c00028{bottom:180.750000px;}
.y1f_c00028{bottom:222.000000px;}
.y1e_c00028{bottom:241.500000px;}
.y1d_c00028{bottom:261.000000px;}
.y1c_c00028{bottom:280.500000px;}
.y1b_c00028{bottom:300.000000px;}
.y1a_c00028{bottom:319.500000px;}
.y19_c00028{bottom:342.750000px;}
.y18_c00028{bottom:387.750000px;}
.y17_c00028{bottom:432.750000px;}
.y14_c00028{bottom:498.000000px;}
.y13_c00028{bottom:525.000000px;}
.y12_c00028{bottom:552.000000px;}
.y11_c00028{bottom:600.000000px;}
.y10_c00028{bottom:627.000000px;}
.yf_c00028{bottom:654.000000px;}
.ye_c00028{bottom:681.000000px;}
.yd_c00028{bottom:708.000000px;}
.yc_c00028{bottom:756.000000px;}
.yb_c00028{bottom:783.000000px;}
.ya_c00028{bottom:810.000000px;}
.y9_c00028{bottom:837.000000px;}
.y8_c00028{bottom:864.000000px;}
.y7_c00028{bottom:891.000000px;}
.y6_c00028{bottom:939.000000px;}
.y5_c00028{bottom:966.000000px;}
.y4_c00028{bottom:993.000000px;}
.y3_c00028{bottom:1020.000000px;}
.y2_c00028{bottom:1047.000000px;}
.y1_c00028{bottom:1093.500000px;}
.y15_c00028{bottom:1194.000000px;}
.h5_c00028{height:38.027344px;}
.h2_c00028{height:51.257812px;}
.h7_c00028{height:52.968750px;}
.h6_c00028{height:53.027344px;}
.h1_c00028{height:55.224609px;}
.h4_c00028{height:56.074219px;}
.h3_c00028{height:57.258075px;}
.h0_c00028{height:1263.000000px;}
.w0_c00028{width:892.500000px;}
.x0_c00028{left:0.000000px;}
.x1_c00028{left:150.519750px;}
.x2_c00028{left:281.790150px;}
.x3_c00028{left:810.335100px;}
@media print{
.v2_c00028{vertical-align:-20.521067pt;}
.v3_c00028{vertical-align:-13.333333pt;}
.v0_c00028{vertical-align:0.000000pt;}
.v1_c00028{vertical-align:20.521067pt;}
.ls9_c00028{letter-spacing:-0.008533pt;}
.ls8_c00028{letter-spacing:-0.006400pt;}
.ls7_c00028{letter-spacing:0.000000pt;}
.ls0_c00028{letter-spacing:0.006933pt;}
.ls5_c00028{letter-spacing:0.010667pt;}
.ls4_c00028{letter-spacing:1.562667pt;}
.ls1_c00028{letter-spacing:2.173333pt;}
.ls2_c00028{letter-spacing:2.980267pt;}
.ls3_c00028{letter-spacing:3.279467pt;}
.ls6_c00028{letter-spacing:3.555555pt;}
.ws0_c00028{word-spacing:-17.600000pt;}
.ws1_c00028{word-spacing:-11.724800pt;}
.ws2_c00028{word-spacing:-8.888889pt;}
.ws3_c00028{word-spacing:0.000000pt;}
._e_c00028{margin-left:-9.305600pt;}
._5_c00028{margin-left:-7.468800pt;}
._1b_c00028{margin-left:-4.746667pt;}
._8_c00028{margin-left:-3.590400pt;}
._6_c00028{margin-left:-2.233600pt;}
._0_c00028{margin-left:-1.248000pt;}
._3_c00028{width:1.529600pt;}
._4_c00028{width:2.553600pt;}
._9_c00028{width:3.443200pt;}
._2_c00028{width:4.556800pt;}
._1_c00028{width:6.073600pt;}
._1a_c00028{width:7.084800pt;}
._7_c00028{width:8.294400pt;}
._10_c00028{width:9.273600pt;}
._12_c00028{width:10.227200pt;}
._13_c00028{width:11.161600pt;}
._11_c00028{width:12.691200pt;}
._15_c00028{width:13.945600pt;}
._f_c00028{width:14.937600pt;}
._14_c00028{width:15.910400pt;}
._d_c00028{width:19.276800pt;}
._a_c00028{width:20.364800pt;}
._b_c00028{width:21.284267pt;}
._c_c00028{width:22.560000pt;}
._19_c00028{width:26.726400pt;}
._17_c00028{width:27.776000pt;}
._16_c00028{width:29.273600pt;}
._18_c00028{width:31.494400pt;}
.fs4_c00028{font-size:35.555557pt;}
.fs2_c00028{font-size:42.666667pt;}
.fs3_c00028{font-size:53.333333pt;}
.fs1_c00028{font-size:64.000000pt;}
.fs0_c00028{font-size:69.333333pt;}
.y0_c00028{bottom:0.000000pt;}
.y16_c00028{bottom:60.000000pt;}
.y21_c00028{bottom:120.666667pt;}
.y20_c00028{bottom:160.666667pt;}
.y1f_c00028{bottom:197.333333pt;}
.y1e_c00028{bottom:214.666667pt;}
.y1d_c00028{bottom:232.000000pt;}
.y1c_c00028{bottom:249.333333pt;}
.y1b_c00028{bottom:266.666667pt;}
.y1a_c00028{bottom:284.000000pt;}
.y19_c00028{bottom:304.666667pt;}
.y18_c00028{bottom:344.666667pt;}
.y17_c00028{bottom:384.666667pt;}
.y14_c00028{bottom:442.666667pt;}
.y13_c00028{bottom:466.666667pt;}
.y12_c00028{bottom:490.666667pt;}
.y11_c00028{bottom:533.333333pt;}
.y10_c00028{bottom:557.333333pt;}
.yf_c00028{bottom:581.333333pt;}
.ye_c00028{bottom:605.333333pt;}
.yd_c00028{bottom:629.333333pt;}
.yc_c00028{bottom:672.000000pt;}
.yb_c00028{bottom:696.000000pt;}
.ya_c00028{bottom:720.000000pt;}
.y9_c00028{bottom:744.000000pt;}
.y8_c00028{bottom:768.000000pt;}
.y7_c00028{bottom:792.000000pt;}
.y6_c00028{bottom:834.666667pt;}
.y5_c00028{bottom:858.666667pt;}
.y4_c00028{bottom:882.666667pt;}
.y3_c00028{bottom:906.666667pt;}
.y2_c00028{bottom:930.666667pt;}
.y1_c00028{bottom:972.000000pt;}
.y15_c00028{bottom:1061.333333pt;}
.h5_c00028{height:33.802083pt;}
.h2_c00028{height:45.562500pt;}
.h7_c00028{height:47.083333pt;}
.h6_c00028{height:47.135417pt;}
.h1_c00028{height:49.088542pt;}
.h4_c00028{height:49.843750pt;}
.h3_c00028{height:50.896067pt;}
.h0_c00028{height:1122.666667pt;}
.w0_c00028{width:793.333333pt;}
.x0_c00028{left:0.000000pt;}
.x1_c00028{left:133.795333pt;}
.x2_c00028{left:250.480133pt;}
.x3_c00028{left:720.297867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1f64bc7bec1f415cd82d5bc5.woff2')format("woff");}.ff1_c00029{font-family:ff1_c00029;line-height:0.934082;font-style:normal;font-weight:normal;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_ef7135b915912c0c22c37298.woff2')format("woff");}.ff2_c00029{font-family:ff2_c00029;line-height:0.987793;font-style:normal;font-weight:normal;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_5815a655851a2aab779087ea.woff2')format("woff");}.ff3_c00029{font-family:ff3_c00029;line-height:0.755859;font-style:normal;font-weight:normal;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_e76226b17e5067cacde73d07.woff2')format("woff");}.ff4_c00029{font-family:ff4_c00029;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00029;src:url('chunks/assets/font_ffd956aa1bee72a3e4cb2b98.woff2')format("woff");}.ff5_c00029{font-family:ff5_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;}
@font-face{font-family:ff6_c00029;src:url('chunks/assets/font_8ff61860481901a15757626d.woff2')format("woff");}.ff6_c00029{font-family:ff6_c00029;line-height:0.891113;font-style: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);}
.v2_c00029{vertical-align:-23.086200px;}
.v3_c00029{vertical-align:-15.000000px;}
.v0_c00029{vertical-align:0.000000px;}
.v1_c00029{vertical-align:23.086200px;}
.ls1_c00029{letter-spacing:-0.009600px;}
.ls0_c00029{letter-spacing:0.000000px;}
.ls2_c00029{letter-spacing:0.012000px;}
.sc__c00029{text-shadow:none;}
.sc0_c00029{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00029{-webkit-text-stroke:0px transparent;}
.sc0_c00029{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00029{word-spacing:-19.800000px;}
.ws0_c00029{word-spacing:-13.190400px;}
.ws2_c00029{word-spacing:-10.000001px;}
.ws3_c00029{word-spacing:0.000000px;}
._9_c00029{margin-left:-3.664800px;}
._0_c00029{margin-left:-2.318400px;}
._7_c00029{margin-left:-1.188000px;}
._2_c00029{width:1.483200px;}
._1_c00029{width:2.944800px;}
._4_c00029{width:4.032000px;}
._e_c00029{width:5.076000px;}
._3_c00029{width:6.552000px;}
._a_c00029{width:8.395200px;}
._c_c00029{width:9.453600px;}
._b_c00029{width:10.908000px;}
._d_c00029{width:12.391200px;}
._5_c00029{width:14.990400px;}
._6_c00029{width:16.063200px;}
._8_c00029{width:18.165600px;}
._f_c00029{width:22.435200px;}
.fc0_c00029{color:rgb(0,0,0);}
.fs4_c00029{font-size:40.000002px;}
.fs1_c00029{font-size:48.000000px;}
.fs2_c00029{font-size:54.000000px;}
.fs3_c00029{font-size:60.000000px;}
.fs0_c00029{font-size:72.000000px;}
.y0_c00029{bottom:0.000000px;}
.yd_c00029{bottom:10.500000px;}
.yc_c00029{bottom:30.000000px;}
.yb_c00029{bottom:52.500000px;}
.yf_c00029{bottom:67.500000px;}
.y10_c00029{bottom:135.750000px;}
.ya_c00029{bottom:198.000000px;}
.y9_c00029{bottom:837.000000px;}
.y8_c00029{bottom:864.000000px;}
.y7_c00029{bottom:891.000000px;}
.y6_c00029{bottom:939.000000px;}
.y5_c00029{bottom:966.000000px;}
.y4_c00029{bottom:993.000000px;}
.y3_c00029{bottom:1020.000000px;}
.y2_c00029{bottom:1068.000000px;}
.y1_c00029{bottom:1095.000000px;}
.ye_c00029{bottom:1194.000000px;}
.h7_c00029{height:27.031251px;}
.h4_c00029{height:42.292969px;}
.h6_c00029{height:44.208984px;}
.h1_c00029{height:51.257812px;}
.h5_c00029{height:56.074219px;}
.h2_c00029{height:57.258075px;}
.h3_c00029{height:607.500000px;}
.h0_c00029{height:1263.000000px;}
.w1_c00029{width:676.500000px;}
.w0_c00029{width:892.500000px;}
.x0_c00029{left:0.000000px;}
.x2_c00029{left:9.000000px;}
.x4_c00029{left:34.328610px;}
.x3_c00029{left:35.452515px;}
.x1_c00029{left:65.480310px;}
@media print{
.v2_c00029{vertical-align:-20.521067pt;}
.v3_c00029{vertical-align:-13.333333pt;}
.v0_c00029{vertical-align:0.000000pt;}
.v1_c00029{vertical-align:20.521067pt;}
.ls1_c00029{letter-spacing:-0.008533pt;}
.ls0_c00029{letter-spacing:0.000000pt;}
.ls2_c00029{letter-spacing:0.010667pt;}
.ws1_c00029{word-spacing:-17.600000pt;}
.ws0_c00029{word-spacing:-11.724800pt;}
.ws2_c00029{word-spacing:-8.888889pt;}
.ws3_c00029{word-spacing:0.000000pt;}
._9_c00029{margin-left:-3.257600pt;}
._0_c00029{margin-left:-2.060800pt;}
._7_c00029{margin-left:-1.056000pt;}
._2_c00029{width:1.318400pt;}
._1_c00029{width:2.617600pt;}
._4_c00029{width:3.584000pt;}
._e_c00029{width:4.512000pt;}
._3_c00029{width:5.824000pt;}
._a_c00029{width:7.462400pt;}
._c_c00029{width:8.403200pt;}
._b_c00029{width:9.696000pt;}
._d_c00029{width:11.014400pt;}
._5_c00029{width:13.324800pt;}
._6_c00029{width:14.278400pt;}
._8_c00029{width:16.147200pt;}
._f_c00029{width:19.942400pt;}
.fs4_c00029{font-size:35.555557pt;}
.fs1_c00029{font-size:42.666667pt;}
.fs2_c00029{font-size:48.000000pt;}
.fs3_c00029{font-size:53.333333pt;}
.fs0_c00029{font-size:64.000000pt;}
.y0_c00029{bottom:0.000000pt;}
.yd_c00029{bottom:9.333333pt;}
.yc_c00029{bottom:26.666667pt;}
.yb_c00029{bottom:46.666667pt;}
.yf_c00029{bottom:60.000000pt;}
.y10_c00029{bottom:120.666667pt;}
.ya_c00029{bottom:176.000000pt;}
.y9_c00029{bottom:744.000000pt;}
.y8_c00029{bottom:768.000000pt;}
.y7_c00029{bottom:792.000000pt;}
.y6_c00029{bottom:834.666667pt;}
.y5_c00029{bottom:858.666667pt;}
.y4_c00029{bottom:882.666667pt;}
.y3_c00029{bottom:906.666667pt;}
.y2_c00029{bottom:949.333333pt;}
.y1_c00029{bottom:973.333333pt;}
.ye_c00029{bottom:1061.333333pt;}
.h7_c00029{height:24.027779pt;}
.h4_c00029{height:37.593750pt;}
.h6_c00029{height:39.296875pt;}
.h1_c00029{height:45.562500pt;}
.h5_c00029{height:49.843750pt;}
.h2_c00029{height:50.896067pt;}
.h3_c00029{height:540.000000pt;}
.h0_c00029{height:1122.666667pt;}
.w1_c00029{width:601.333333pt;}
.w0_c00029{width:793.333333pt;}
.x0_c00029{left:0.000000pt;}
.x2_c00029{left:8.000000pt;}
.x4_c00029{left:30.514320pt;}
.x3_c00029{left:31.513347pt;}
.x1_c00029{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e5533fb95392587177a868a5.woff2')format("woff");}.ff1_c00030{font-family:ff1_c00030;line-height:0.934082;font-style:normal;font-weight:normal;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_2d6c8a5752ed9d169ca7584b.woff2')format("woff");}.ff2_c00030{font-family:ff2_c00030;line-height:1.155762;font-style:normal;font-weight:normal;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_981f10be21366098cad3595b.woff2')format("woff");}.ff3_c00030{font-family:ff3_c00030;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00030;src:url('chunks/assets/font_18431674d4b2002acd664d39.woff2')format("woff");}.ff4_c00030{font-family:ff4_c00030;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00030{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00030{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00030{vertical-align:-23.086200px;}
.v3_c00030{vertical-align:-15.000000px;}
.v0_c00030{vertical-align:0.000000px;}
.v1_c00030{vertical-align:23.086200px;}
.ls2_c00030{letter-spacing:-0.009600px;}
.ls1_c00030{letter-spacing:0.000000px;}
.ls0_c00030{letter-spacing:0.012000px;}
.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;}
}
.ws1_c00030{word-spacing:-19.800000px;}
.ws3_c00030{word-spacing:-15.000000px;}
.ws0_c00030{word-spacing:-13.190400px;}
.ws2_c00030{word-spacing:-10.000001px;}
.ws4_c00030{word-spacing:0.000000px;}
._21_c00030{margin-left:-14.127996px;}
._1e_c00030{margin-left:-9.849600px;}
._1b_c00030{margin-left:-7.430400px;}
._a_c00030{margin-left:-5.918400px;}
._20_c00030{margin-left:-4.740402px;}
._2_c00030{margin-left:-3.600000px;}
._0_c00030{margin-left:-2.577600px;}
._7_c00030{margin-left:-1.260000px;}
._b_c00030{width:1.022400px;}
._4_c00030{width:2.080800px;}
._1c_c00030{width:3.189600px;}
._8_c00030{width:4.370400px;}
._c_c00030{width:5.731200px;}
._1a_c00030{width:6.804000px;}
._1d_c00030{width:8.380800px;}
._f_c00030{width:9.691200px;}
._d_c00030{width:10.728000px;}
._e_c00030{width:12.031200px;}
._11_c00030{width:13.399200px;}
._10_c00030{width:14.457600px;}
._18_c00030{width:15.948000px;}
._19_c00030{width:17.337600px;}
._17_c00030{width:18.345600px;}
._9_c00030{width:21.261600px;}
._5_c00030{width:23.565600px;}
._6_c00030{width:25.624800px;}
._1f_c00030{width:26.863200px;}
._1_c00030{width:28.180800px;}
._3_c00030{width:29.253600px;}
._14_c00030{width:31.176000px;}
._16_c00030{width:32.234400px;}
._13_c00030{width:35.870400px;}
._15_c00030{width:37.562400px;}
._12_c00030{width:41.068800px;}
.fc0_c00030{color:rgb(0,0,0);}
.fs3_c00030{font-size:40.000002px;}
.fs1_c00030{font-size:48.000000px;}
.fs2_c00030{font-size:60.000000px;}
.fs0_c00030{font-size:72.000000px;}
.y0_c00030{bottom:0.000000px;}
.y18_c00030{bottom:67.500000px;}
.y23_c00030{bottom:132.000000px;}
.y22_c00030{bottom:151.500000px;}
.y21_c00030{bottom:171.000000px;}
.y20_c00030{bottom:190.500000px;}
.y1f_c00030{bottom:210.000000px;}
.y1e_c00030{bottom:229.500000px;}
.y1d_c00030{bottom:252.750000px;}
.y1c_c00030{bottom:297.750000px;}
.y1b_c00030{bottom:339.000000px;}
.y1a_c00030{bottom:362.250000px;}
.y19_c00030{bottom:407.250000px;}
.y16_c00030{bottom:486.000000px;}
.y15_c00030{bottom:513.000000px;}
.y14_c00030{bottom:540.000000px;}
.y13_c00030{bottom:567.000000px;}
.y12_c00030{bottom:594.000000px;}
.y11_c00030{bottom:621.000000px;}
.y10_c00030{bottom:648.000000px;}
.yf_c00030{bottom:675.000000px;}
.ye_c00030{bottom:702.000000px;}
.yd_c00030{bottom:729.000000px;}
.yc_c00030{bottom:756.000000px;}
.yb_c00030{bottom:804.000000px;}
.ya_c00030{bottom:831.000000px;}
.y9_c00030{bottom:858.000000px;}
.y8_c00030{bottom:885.000000px;}
.y7_c00030{bottom:912.000000px;}
.y6_c00030{bottom:939.000000px;}
.y5_c00030{bottom:966.000000px;}
.y4_c00030{bottom:993.000000px;}
.y3_c00030{bottom:1041.000000px;}
.y2_c00030{bottom:1068.000000px;}
.y1_c00030{bottom:1095.000000px;}
.y17_c00030{bottom:1194.000000px;}
.h4_c00030{height:38.671875px;}
.h1_c00030{height:51.257812px;}
.h5_c00030{height:53.671875px;}
.h3_c00030{height:56.074219px;}
.h2_c00030{height:57.258075px;}
.h0_c00030{height:1263.000000px;}
.w0_c00030{width:892.500000px;}
.x0_c00030{left:0.000000px;}
.x1_c00030{left:150.519750px;}
.x2_c00030{left:281.790150px;}
.x3_c00030{left:810.335100px;}
@media print{
.v2_c00030{vertical-align:-20.521067pt;}
.v3_c00030{vertical-align:-13.333333pt;}
.v0_c00030{vertical-align:0.000000pt;}
.v1_c00030{vertical-align:20.521067pt;}
.ls2_c00030{letter-spacing:-0.008533pt;}
.ls1_c00030{letter-spacing:0.000000pt;}
.ls0_c00030{letter-spacing:0.010667pt;}
.ws1_c00030{word-spacing:-17.600000pt;}
.ws3_c00030{word-spacing:-13.333333pt;}
.ws0_c00030{word-spacing:-11.724800pt;}
.ws2_c00030{word-spacing:-8.888889pt;}
.ws4_c00030{word-spacing:0.000000pt;}
._21_c00030{margin-left:-12.558219pt;}
._1e_c00030{margin-left:-8.755200pt;}
._1b_c00030{margin-left:-6.604800pt;}
._a_c00030{margin-left:-5.260800pt;}
._20_c00030{margin-left:-4.213691pt;}
._2_c00030{margin-left:-3.200000pt;}
._0_c00030{margin-left:-2.291200pt;}
._7_c00030{margin-left:-1.120000pt;}
._b_c00030{width:0.908800pt;}
._4_c00030{width:1.849600pt;}
._1c_c00030{width:2.835200pt;}
._8_c00030{width:3.884800pt;}
._c_c00030{width:5.094400pt;}
._1a_c00030{width:6.048000pt;}
._1d_c00030{width:7.449600pt;}
._f_c00030{width:8.614400pt;}
._d_c00030{width:9.536000pt;}
._e_c00030{width:10.694400pt;}
._11_c00030{width:11.910400pt;}
._10_c00030{width:12.851200pt;}
._18_c00030{width:14.176000pt;}
._19_c00030{width:15.411200pt;}
._17_c00030{width:16.307200pt;}
._9_c00030{width:18.899200pt;}
._5_c00030{width:20.947200pt;}
._6_c00030{width:22.777600pt;}
._1f_c00030{width:23.878400pt;}
._1_c00030{width:25.049600pt;}
._3_c00030{width:26.003200pt;}
._14_c00030{width:27.712000pt;}
._16_c00030{width:28.652800pt;}
._13_c00030{width:31.884800pt;}
._15_c00030{width:33.388800pt;}
._12_c00030{width:36.505600pt;}
.fs3_c00030{font-size:35.555557pt;}
.fs1_c00030{font-size:42.666667pt;}
.fs2_c00030{font-size:53.333333pt;}
.fs0_c00030{font-size:64.000000pt;}
.y0_c00030{bottom:0.000000pt;}
.y18_c00030{bottom:60.000000pt;}
.y23_c00030{bottom:117.333333pt;}
.y22_c00030{bottom:134.666667pt;}
.y21_c00030{bottom:152.000000pt;}
.y20_c00030{bottom:169.333333pt;}
.y1f_c00030{bottom:186.666667pt;}
.y1e_c00030{bottom:204.000000pt;}
.y1d_c00030{bottom:224.666667pt;}
.y1c_c00030{bottom:264.666667pt;}
.y1b_c00030{bottom:301.333333pt;}
.y1a_c00030{bottom:322.000000pt;}
.y19_c00030{bottom:362.000000pt;}
.y16_c00030{bottom:432.000000pt;}
.y15_c00030{bottom:456.000000pt;}
.y14_c00030{bottom:480.000000pt;}
.y13_c00030{bottom:504.000000pt;}
.y12_c00030{bottom:528.000000pt;}
.y11_c00030{bottom:552.000000pt;}
.y10_c00030{bottom:576.000000pt;}
.yf_c00030{bottom:600.000000pt;}
.ye_c00030{bottom:624.000000pt;}
.yd_c00030{bottom:648.000000pt;}
.yc_c00030{bottom:672.000000pt;}
.yb_c00030{bottom:714.666667pt;}
.ya_c00030{bottom:738.666667pt;}
.y9_c00030{bottom:762.666667pt;}
.y8_c00030{bottom:786.666667pt;}
.y7_c00030{bottom:810.666667pt;}
.y6_c00030{bottom:834.666667pt;}
.y5_c00030{bottom:858.666667pt;}
.y4_c00030{bottom:882.666667pt;}
.y3_c00030{bottom:925.333333pt;}
.y2_c00030{bottom:949.333333pt;}
.y1_c00030{bottom:973.333333pt;}
.y17_c00030{bottom:1061.333333pt;}
.h4_c00030{height:34.375000pt;}
.h1_c00030{height:45.562500pt;}
.h5_c00030{height:47.708333pt;}
.h3_c00030{height:49.843750pt;}
.h2_c00030{height:50.896067pt;}
.h0_c00030{height:1122.666667pt;}
.w0_c00030{width:793.333333pt;}
.x0_c00030{left:0.000000pt;}
.x1_c00030{left:133.795333pt;}
.x2_c00030{left:250.480133pt;}
.x3_c00030{left:720.297867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2524ef622412749f05a93fd4.woff2')format("woff");}.ff1_c00031{font-family:ff1_c00031;line-height:0.934082;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00031;src:url('chunks/assets/font_ab9ef273d5be0e006217ae06.woff2')format("woff");}.ff2_c00031{font-family:ff2_c00031;line-height:0.756836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00031;src:url('chunks/assets/font_f41dd042af039f1d65606ffb.woff2')format("woff");}.ff3_c00031{font-family:ff3_c00031;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00031;src:url('chunks/assets/font_2b5b0a52c78b913c767dc3e8.woff2')format("woff");}.ff4_c00031{font-family:ff4_c00031;line-height:1.101562;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00031;src:url('chunks/assets/font_333bbc32db3b5b61a704eed3.woff2')format("woff");}.ff5_c00031{font-family:ff5_c00031;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00031{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00031{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00031{vertical-align:-23.086200px;}
.v3_c00031{vertical-align:-15.000000px;}
.v0_c00031{vertical-align:0.000000px;}
.v1_c00031{vertical-align:23.086200px;}
.ls5_c00031{letter-spacing:-5.154000px;}
.ls4_c00031{letter-spacing:-1.728000px;}
.ls3_c00031{letter-spacing:-0.960000px;}
.ls6_c00031{letter-spacing:-0.012000px;}
.ls1_c00031{letter-spacing:-0.009600px;}
.ls0_c00031{letter-spacing:0.000000px;}
.ls2_c00031{letter-spacing:0.012000px;}
.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;}
}
.ws3_c00031{word-spacing:-15.000000px;}
.ws4_c00031{word-spacing:-14.988000px;}
.ws0_c00031{word-spacing:-13.190400px;}
.ws2_c00031{word-spacing:-10.000001px;}
.ws1_c00031{word-spacing:-6.067200px;}
.ws5_c00031{word-spacing:0.000000px;}
._b_c00031{margin-left:-10.144800px;}
._11_c00031{margin-left:-6.537600px;}
._15_c00031{margin-left:-5.496000px;}
._7_c00031{margin-left:-4.356000px;}
._1_c00031{margin-left:-2.800800px;}
._9_c00031{margin-left:-1.324800px;}
._c_c00031{width:1.022400px;}
._5_c00031{width:2.145600px;}
._3_c00031{width:3.211200px;}
._e_c00031{width:4.370400px;}
._12_c00031{width:5.515200px;}
._f_c00031{width:6.530400px;}
._14_c00031{width:7.581558px;}
._4_c00031{width:8.632800px;}
._6_c00031{width:9.756000px;}
._13_c00031{width:10.850400px;}
._0_c00031{width:11.851200px;}
._a_c00031{width:13.132800px;}
._2_c00031{width:14.572800px;}
._8_c00031{width:16.192800px;}
._d_c00031{width:17.668800px;}
._17_c00031{width:19.972800px;}
._10_c00031{width:21.362400px;}
._16_c00031{width:23.854980px;}
.fc0_c00031{color:rgb(0,0,0);}
.fs3_c00031{font-size:40.000002px;}
.fs1_c00031{font-size:48.000000px;}
.fs2_c00031{font-size:60.000000px;}
.fs0_c00031{font-size:72.000000px;}
.y0_c00031{bottom:0.000000px;}
.y15_c00031{bottom:67.500000px;}
.y23_c00031{bottom:132.000000px;}
.y22_c00031{bottom:155.250000px;}
.y21_c00031{bottom:196.500000px;}
.y20_c00031{bottom:219.750000px;}
.y1f_c00031{bottom:261.000000px;}
.y1e_c00031{bottom:284.250000px;}
.y1d_c00031{bottom:329.250000px;}
.y1c_c00031{bottom:370.500000px;}
.y1b_c00031{bottom:390.000000px;}
.y1a_c00031{bottom:409.500000px;}
.y19_c00031{bottom:429.000000px;}
.y18_c00031{bottom:448.500000px;}
.y17_c00031{bottom:468.000000px;}
.y16_c00031{bottom:491.250000px;}
.y13_c00031{bottom:546.000000px;}
.y12_c00031{bottom:573.000000px;}
.y11_c00031{bottom:600.000000px;}
.y10_c00031{bottom:627.000000px;}
.yf_c00031{bottom:675.000000px;}
.ye_c00031{bottom:702.000000px;}
.yd_c00031{bottom:729.000000px;}
.yc_c00031{bottom:756.000000px;}
.yb_c00031{bottom:783.000000px;}
.ya_c00031{bottom:810.000000px;}
.y9_c00031{bottom:837.000000px;}
.y8_c00031{bottom:885.000000px;}
.y7_c00031{bottom:912.000000px;}
.y6_c00031{bottom:939.000000px;}
.y5_c00031{bottom:966.000000px;}
.y4_c00031{bottom:993.000000px;}
.y3_c00031{bottom:1041.000000px;}
.y2_c00031{bottom:1068.000000px;}
.y1_c00031{bottom:1095.000000px;}
.y14_c00031{bottom:1194.000000px;}
.h5_c00031{height:37.968750px;}
.h4_c00031{height:44.208984px;}
.h1_c00031{height:51.257812px;}
.h6_c00031{height:52.968750px;}
.h3_c00031{height:56.074219px;}
.h2_c00031{height:57.258075px;}
.h0_c00031{height:1263.000000px;}
.w0_c00031{width:892.500000px;}
.x0_c00031{left:0.000000px;}
.x1_c00031{left:65.480310px;}
@media print{
.v2_c00031{vertical-align:-20.521067pt;}
.v3_c00031{vertical-align:-13.333333pt;}
.v0_c00031{vertical-align:0.000000pt;}
.v1_c00031{vertical-align:20.521067pt;}
.ls5_c00031{letter-spacing:-4.581333pt;}
.ls4_c00031{letter-spacing:-1.536000pt;}
.ls3_c00031{letter-spacing:-0.853333pt;}
.ls6_c00031{letter-spacing:-0.010667pt;}
.ls1_c00031{letter-spacing:-0.008533pt;}
.ls0_c00031{letter-spacing:0.000000pt;}
.ls2_c00031{letter-spacing:0.010667pt;}
.ws3_c00031{word-spacing:-13.333333pt;}
.ws4_c00031{word-spacing:-13.322667pt;}
.ws0_c00031{word-spacing:-11.724800pt;}
.ws2_c00031{word-spacing:-8.888889pt;}
.ws1_c00031{word-spacing:-5.393067pt;}
.ws5_c00031{word-spacing:0.000000pt;}
._b_c00031{margin-left:-9.017600pt;}
._11_c00031{margin-left:-5.811200pt;}
._15_c00031{margin-left:-4.885333pt;}
._7_c00031{margin-left:-3.872000pt;}
._1_c00031{margin-left:-2.489600pt;}
._9_c00031{margin-left:-1.177600pt;}
._c_c00031{width:0.908800pt;}
._5_c00031{width:1.907200pt;}
._3_c00031{width:2.854400pt;}
._e_c00031{width:3.884800pt;}
._12_c00031{width:4.902400pt;}
._f_c00031{width:5.804800pt;}
._14_c00031{width:6.739163pt;}
._4_c00031{width:7.673600pt;}
._6_c00031{width:8.672000pt;}
._13_c00031{width:9.644800pt;}
._0_c00031{width:10.534400pt;}
._a_c00031{width:11.673600pt;}
._2_c00031{width:12.953600pt;}
._8_c00031{width:14.393600pt;}
._d_c00031{width:15.705600pt;}
._17_c00031{width:17.753600pt;}
._10_c00031{width:18.988800pt;}
._16_c00031{width:21.204427pt;}
.fs3_c00031{font-size:35.555557pt;}
.fs1_c00031{font-size:42.666667pt;}
.fs2_c00031{font-size:53.333333pt;}
.fs0_c00031{font-size:64.000000pt;}
.y0_c00031{bottom:0.000000pt;}
.y15_c00031{bottom:60.000000pt;}
.y23_c00031{bottom:117.333333pt;}
.y22_c00031{bottom:138.000000pt;}
.y21_c00031{bottom:174.666667pt;}
.y20_c00031{bottom:195.333333pt;}
.y1f_c00031{bottom:232.000000pt;}
.y1e_c00031{bottom:252.666667pt;}
.y1d_c00031{bottom:292.666667pt;}
.y1c_c00031{bottom:329.333333pt;}
.y1b_c00031{bottom:346.666667pt;}
.y1a_c00031{bottom:364.000000pt;}
.y19_c00031{bottom:381.333333pt;}
.y18_c00031{bottom:398.666667pt;}
.y17_c00031{bottom:416.000000pt;}
.y16_c00031{bottom:436.666667pt;}
.y13_c00031{bottom:485.333333pt;}
.y12_c00031{bottom:509.333333pt;}
.y11_c00031{bottom:533.333333pt;}
.y10_c00031{bottom:557.333333pt;}
.yf_c00031{bottom:600.000000pt;}
.ye_c00031{bottom:624.000000pt;}
.yd_c00031{bottom:648.000000pt;}
.yc_c00031{bottom:672.000000pt;}
.yb_c00031{bottom:696.000000pt;}
.ya_c00031{bottom:720.000000pt;}
.y9_c00031{bottom:744.000000pt;}
.y8_c00031{bottom:786.666667pt;}
.y7_c00031{bottom:810.666667pt;}
.y6_c00031{bottom:834.666667pt;}
.y5_c00031{bottom:858.666667pt;}
.y4_c00031{bottom:882.666667pt;}
.y3_c00031{bottom:925.333333pt;}
.y2_c00031{bottom:949.333333pt;}
.y1_c00031{bottom:973.333333pt;}
.y14_c00031{bottom:1061.333333pt;}
.h5_c00031{height:33.750000pt;}
.h4_c00031{height:39.296875pt;}
.h1_c00031{height:45.562500pt;}
.h6_c00031{height:47.083333pt;}
.h3_c00031{height:49.843750pt;}
.h2_c00031{height:50.896067pt;}
.h0_c00031{height:1122.666667pt;}
.w0_c00031{width:793.333333pt;}
.x0_c00031{left:0.000000pt;}
.x1_c00031{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5f22a5e6c669fec0144e1e5c.woff2')format("woff");}.ff1_c00032{font-family:ff1_c00032;line-height:0.934082;font-style:normal;font-weight:normal;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_c678786ced94c3f15d676f85.woff2')format("woff");}.ff2_c00032{font-family:ff2_c00032;line-height:0.892578;font-style:normal;font-weight:normal;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_ccee413441e0c16e5ef8ec8b.woff2')format("woff");}.ff3_c00032{font-family:ff3_c00032;line-height:1.155762;font-style:normal;font-weight:normal;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_c7923996d8f06aab4b0712f2.woff2')format("woff");}.ff4_c00032{font-family:ff4_c00032;line-height:0.904785;font-style:normal;font-weight:normal;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_e727ee426ae91e09f03bf6e2.woff2')format("woff");}.ff5_c00032{font-family:ff5_c00032;line-height:0.891113;font-style: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);}
.v2_c00032{vertical-align:-23.086200px;}
.v3_c00032{vertical-align:-15.000000px;}
.v0_c00032{vertical-align:0.000000px;}
.v1_c00032{vertical-align:23.086200px;}
.ls4_c00032{letter-spacing:-2.526000px;}
.ls5_c00032{letter-spacing:-1.482000px;}
.ls2_c00032{letter-spacing:-0.009600px;}
.ls1_c00032{letter-spacing:0.000000px;}
.ls3_c00032{letter-spacing:0.007800px;}
.ls0_c00032{letter-spacing:0.012000px;}
.sc__c00032{text-shadow:none;}
.sc0_c00032{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00032{-webkit-text-stroke:0px transparent;}
.sc0_c00032{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00032{word-spacing:-19.800000px;}
.ws1_c00032{word-spacing:-13.190400px;}
.ws2_c00032{word-spacing:-10.000001px;}
.ws3_c00032{word-spacing:-2.000002px;}
.ws4_c00032{word-spacing:0.000000px;}
._9_c00032{margin-left:-10.584000px;}
._c_c00032{margin-left:-7.236000px;}
._12_c00032{margin-left:-5.392800px;}
._7_c00032{margin-left:-3.571200px;}
._10_c00032{margin-left:-2.512800px;}
._5_c00032{margin-left:-1.152000px;}
._1_c00032{width:1.195200px;}
._3_c00032{width:2.959200px;}
._4_c00032{width:4.996800px;}
._2_c00032{width:6.739200px;}
._0_c00032{width:7.984800px;}
._6_c00032{width:9.144000px;}
._11_c00032{width:10.353600px;}
._8_c00032{width:11.606400px;}
._f_c00032{width:12.909600px;}
._d_c00032{width:15.084000px;}
._e_c00032{width:16.221600px;}
._a_c00032{width:17.992800px;}
._b_c00032{width:22.190400px;}
._16_c00032{width:28.180800px;}
._15_c00032{width:29.966400px;}
._13_c00032{width:31.111200px;}
._17_c00032{width:33.703200px;}
._14_c00032{width:36.511200px;}
.fc0_c00032{color:rgb(0,0,0);}
.fs4_c00032{font-size:40.000002px;}
.fs1_c00032{font-size:48.000000px;}
.fs3_c00032{font-size:60.000000px;}
.fs0_c00032{font-size:72.000000px;}
.fs2_c00032{font-size:78.000000px;}
.y0_c00032{bottom:0.000000px;}
.y19_c00032{bottom:67.500000px;}
.y1f_c00032{bottom:132.000000px;}
.y1e_c00032{bottom:151.500000px;}
.y1d_c00032{bottom:174.750000px;}
.y1c_c00032{bottom:219.750000px;}
.y1b_c00032{bottom:264.750000px;}
.y1a_c00032{bottom:309.750000px;}
.y17_c00032{bottom:354.000000px;}
.y16_c00032{bottom:381.000000px;}
.y15_c00032{bottom:427.500000px;}
.y14_c00032{bottom:498.000000px;}
.y13_c00032{bottom:525.000000px;}
.y12_c00032{bottom:552.000000px;}
.y11_c00032{bottom:600.000000px;}
.y10_c00032{bottom:627.000000px;}
.yf_c00032{bottom:654.000000px;}
.ye_c00032{bottom:681.000000px;}
.yd_c00032{bottom:729.000000px;}
.yc_c00032{bottom:756.000000px;}
.yb_c00032{bottom:783.000000px;}
.ya_c00032{bottom:810.000000px;}
.y9_c00032{bottom:837.000000px;}
.y8_c00032{bottom:864.000000px;}
.y7_c00032{bottom:912.000000px;}
.y6_c00032{bottom:939.000000px;}
.y5_c00032{bottom:987.000000px;}
.y4_c00032{bottom:1014.000000px;}
.y3_c00032{bottom:1041.000000px;}
.y2_c00032{bottom:1068.000000px;}
.y1_c00032{bottom:1095.000000px;}
.y18_c00032{bottom:1194.000000px;}
.h5_c00032{height:27.480470px;}
.h6_c00032{height:41.220703px;}
.h1_c00032{height:51.257812px;}
.h3_c00032{height:55.833984px;}
.h4_c00032{height:56.074219px;}
.h2_c00032{height:57.258075px;}
.h0_c00032{height:1263.000000px;}
.w0_c00032{width:892.500000px;}
.x0_c00032{left:0.000000px;}
.x1_c00032{left:150.519750px;}
.x2_c00032{left:281.790150px;}
.x3_c00032{left:810.335100px;}
@media print{
.v2_c00032{vertical-align:-20.521067pt;}
.v3_c00032{vertical-align:-13.333333pt;}
.v0_c00032{vertical-align:0.000000pt;}
.v1_c00032{vertical-align:20.521067pt;}
.ls4_c00032{letter-spacing:-2.245333pt;}
.ls5_c00032{letter-spacing:-1.317333pt;}
.ls2_c00032{letter-spacing:-0.008533pt;}
.ls1_c00032{letter-spacing:0.000000pt;}
.ls3_c00032{letter-spacing:0.006933pt;}
.ls0_c00032{letter-spacing:0.010667pt;}
.ws0_c00032{word-spacing:-17.600000pt;}
.ws1_c00032{word-spacing:-11.724800pt;}
.ws2_c00032{word-spacing:-8.888889pt;}
.ws3_c00032{word-spacing:-1.777780pt;}
.ws4_c00032{word-spacing:0.000000pt;}
._9_c00032{margin-left:-9.408000pt;}
._c_c00032{margin-left:-6.432000pt;}
._12_c00032{margin-left:-4.793600pt;}
._7_c00032{margin-left:-3.174400pt;}
._10_c00032{margin-left:-2.233600pt;}
._5_c00032{margin-left:-1.024000pt;}
._1_c00032{width:1.062400pt;}
._3_c00032{width:2.630400pt;}
._4_c00032{width:4.441600pt;}
._2_c00032{width:5.990400pt;}
._0_c00032{width:7.097600pt;}
._6_c00032{width:8.128000pt;}
._11_c00032{width:9.203200pt;}
._8_c00032{width:10.316800pt;}
._f_c00032{width:11.475200pt;}
._d_c00032{width:13.408000pt;}
._e_c00032{width:14.419200pt;}
._a_c00032{width:15.993600pt;}
._b_c00032{width:19.724800pt;}
._16_c00032{width:25.049600pt;}
._15_c00032{width:26.636800pt;}
._13_c00032{width:27.654400pt;}
._17_c00032{width:29.958400pt;}
._14_c00032{width:32.454400pt;}
.fs4_c00032{font-size:35.555557pt;}
.fs1_c00032{font-size:42.666667pt;}
.fs3_c00032{font-size:53.333333pt;}
.fs0_c00032{font-size:64.000000pt;}
.fs2_c00032{font-size:69.333333pt;}
.y0_c00032{bottom:0.000000pt;}
.y19_c00032{bottom:60.000000pt;}
.y1f_c00032{bottom:117.333333pt;}
.y1e_c00032{bottom:134.666667pt;}
.y1d_c00032{bottom:155.333333pt;}
.y1c_c00032{bottom:195.333333pt;}
.y1b_c00032{bottom:235.333333pt;}
.y1a_c00032{bottom:275.333333pt;}
.y17_c00032{bottom:314.666667pt;}
.y16_c00032{bottom:338.666667pt;}
.y15_c00032{bottom:380.000000pt;}
.y14_c00032{bottom:442.666667pt;}
.y13_c00032{bottom:466.666667pt;}
.y12_c00032{bottom:490.666667pt;}
.y11_c00032{bottom:533.333333pt;}
.y10_c00032{bottom:557.333333pt;}
.yf_c00032{bottom:581.333333pt;}
.ye_c00032{bottom:605.333333pt;}
.yd_c00032{bottom:648.000000pt;}
.yc_c00032{bottom:672.000000pt;}
.yb_c00032{bottom:696.000000pt;}
.ya_c00032{bottom:720.000000pt;}
.y9_c00032{bottom:744.000000pt;}
.y8_c00032{bottom:768.000000pt;}
.y7_c00032{bottom:810.666667pt;}
.y6_c00032{bottom:834.666667pt;}
.y5_c00032{bottom:877.333333pt;}
.y4_c00032{bottom:901.333333pt;}
.y3_c00032{bottom:925.333333pt;}
.y2_c00032{bottom:949.333333pt;}
.y1_c00032{bottom:973.333333pt;}
.y18_c00032{bottom:1061.333333pt;}
.h5_c00032{height:24.427085pt;}
.h6_c00032{height:36.640625pt;}
.h1_c00032{height:45.562500pt;}
.h3_c00032{height:49.630208pt;}
.h4_c00032{height:49.843750pt;}
.h2_c00032{height:50.896067pt;}
.h0_c00032{height:1122.666667pt;}
.w0_c00032{width:793.333333pt;}
.x0_c00032{left:0.000000pt;}
.x1_c00032{left:133.795333pt;}
.x2_c00032{left:250.480133pt;}
.x3_c00032{left:720.297867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_83b5dbc9b1f4a035c6827f86.woff2')format("woff");}.ff1_c00033{font-family:ff1_c00033;line-height:0.934082;font-style:normal;font-weight:normal;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_51a7b3d6151b1f5813cbf935.woff2')format("woff");}.ff2_c00033{font-family:ff2_c00033;line-height:0.888672;font-style:normal;font-weight:normal;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_3ba7f65bb70290f5cb74fa8f.woff2')format("woff");}.ff3_c00033{font-family:ff3_c00033;line-height:0.755859;font-style:normal;font-weight:normal;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_ebad18b0feb9a7936d3878bf.woff2')format("woff");}.ff4_c00033{font-family:ff4_c00033;line-height:1.155762;font-style:normal;font-weight:normal;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_1a0fa5b5430765a501bd416a.woff2')format("woff");}.ff5_c00033{font-family:ff5_c00033;line-height:0.904785;font-style:normal;font-weight: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_c00033;src:url('chunks/assets/font_c813d7995f019a7e6d4dad1d.woff2')format("woff");}.ff6_c00033{font-family:ff6_c00033;line-height:0.891113;font-style: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);}
.v2_c00033{vertical-align:-15.000000px;}
.v0_c00033{vertical-align:0.000000px;}
.v1_c00033{vertical-align:23.086200px;}
.ls4_c00033{letter-spacing:-5.622000px;}
.ls3_c00033{letter-spacing:-0.009600px;}
.ls2_c00033{letter-spacing:-0.007200px;}
.ls1_c00033{letter-spacing:0.000000px;}
.ls0_c00033{letter-spacing:0.012000px;}
.sc__c00033{text-shadow:none;}
.sc0_c00033{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00033{-webkit-text-stroke:0px transparent;}
.sc0_c00033{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00033{word-spacing:-19.800000px;}
.ws2_c00033{word-spacing:-13.190400px;}
.ws3_c00033{word-spacing:-10.000001px;}
.ws1_c00033{word-spacing:-0.064800px;}
.ws4_c00033{word-spacing:0.000000px;}
._16_c00033{margin-left:-10.584000px;}
._13_c00033{margin-left:-4.867200px;}
._b_c00033{margin-left:-3.456000px;}
._1_c00033{margin-left:-2.347200px;}
._3_c00033{margin-left:-1.008000px;}
._2_c00033{width:1.944000px;}
._0_c00033{width:3.578400px;}
._4_c00033{width:5.335200px;}
._6_c00033{width:7.344000px;}
._14_c00033{width:8.352000px;}
._5_c00033{width:9.597600px;}
._f_c00033{width:11.138400px;}
._10_c00033{width:12.607200px;}
._e_c00033{width:13.622400px;}
._15_c00033{width:14.760000px;}
._19_c00033{width:15.890400px;}
._12_c00033{width:21.081600px;}
._11_c00033{width:22.204800px;}
._8_c00033{width:23.745600px;}
._d_c00033{width:25.459200px;}
._a_c00033{width:27.374400px;}
._7_c00033{width:28.389600px;}
._9_c00033{width:29.743200px;}
._c_c00033{width:30.837600px;}
._17_c00033{width:32.040000px;}
._18_c00033{width:33.177600px;}
._1b_c00033{width:34.374960px;}
._1a_c00033{width:35.402400px;}
._1d_c00033{width:36.943200px;}
._1c_c00033{width:38.872800px;}
.fc0_c00033{color:rgb(0,0,0);}
.fs3_c00033{font-size:40.000002px;}
.fs1_c00033{font-size:48.000000px;}
.fs2_c00033{font-size:60.000000px;}
.fs0_c00033{font-size:72.000000px;}
.y0_c00033{bottom:0.000000px;}
.y1c_c00033{bottom:67.500000px;}
.y1e_c00033{bottom:132.000000px;}
.y1d_c00033{bottom:155.250000px;}
.y1a_c00033{bottom:294.000000px;}
.y19_c00033{bottom:321.000000px;}
.y18_c00033{bottom:348.000000px;}
.y17_c00033{bottom:396.000000px;}
.y16_c00033{bottom:423.000000px;}
.y15_c00033{bottom:450.000000px;}
.y14_c00033{bottom:498.000000px;}
.y13_c00033{bottom:525.000000px;}
.y12_c00033{bottom:573.000000px;}
.y11_c00033{bottom:600.000000px;}
.y10_c00033{bottom:627.000000px;}
.yf_c00033{bottom:654.000000px;}
.ye_c00033{bottom:702.000000px;}
.yd_c00033{bottom:729.000000px;}
.yc_c00033{bottom:756.000000px;}
.yb_c00033{bottom:783.000000px;}
.ya_c00033{bottom:810.000000px;}
.y9_c00033{bottom:837.000000px;}
.y8_c00033{bottom:864.000000px;}
.y7_c00033{bottom:912.000000px;}
.y6_c00033{bottom:939.000000px;}
.y5_c00033{bottom:966.000000px;}
.y4_c00033{bottom:993.000000px;}
.y3_c00033{bottom:1041.000000px;}
.y2_c00033{bottom:1068.000000px;}
.y1_c00033{bottom:1095.000000px;}
.y1b_c00033{bottom:1194.000000px;}
.h5_c00033{height:27.480470px;}
.h6_c00033{height:41.220703px;}
.h4_c00033{height:44.208984px;}
.h1_c00033{height:51.257812px;}
.h3_c00033{height:56.074219px;}
.h2_c00033{height:57.258075px;}
.h0_c00033{height:1263.000000px;}
.w0_c00033{width:892.500000px;}
.x0_c00033{left:0.000000px;}
.x1_c00033{left:65.480310px;}
@media print{
.v2_c00033{vertical-align:-13.333333pt;}
.v0_c00033{vertical-align:0.000000pt;}
.v1_c00033{vertical-align:20.521067pt;}
.ls4_c00033{letter-spacing:-4.997333pt;}
.ls3_c00033{letter-spacing:-0.008533pt;}
.ls2_c00033{letter-spacing:-0.006400pt;}
.ls1_c00033{letter-spacing:0.000000pt;}
.ls0_c00033{letter-spacing:0.010667pt;}
.ws0_c00033{word-spacing:-17.600000pt;}
.ws2_c00033{word-spacing:-11.724800pt;}
.ws3_c00033{word-spacing:-8.888889pt;}
.ws1_c00033{word-spacing:-0.057600pt;}
.ws4_c00033{word-spacing:0.000000pt;}
._16_c00033{margin-left:-9.408000pt;}
._13_c00033{margin-left:-4.326400pt;}
._b_c00033{margin-left:-3.072000pt;}
._1_c00033{margin-left:-2.086400pt;}
._3_c00033{margin-left:-0.896000pt;}
._2_c00033{width:1.728000pt;}
._0_c00033{width:3.180800pt;}
._4_c00033{width:4.742400pt;}
._6_c00033{width:6.528000pt;}
._14_c00033{width:7.424000pt;}
._5_c00033{width:8.531200pt;}
._f_c00033{width:9.900800pt;}
._10_c00033{width:11.206400pt;}
._e_c00033{width:12.108800pt;}
._15_c00033{width:13.120000pt;}
._19_c00033{width:14.124800pt;}
._12_c00033{width:18.739200pt;}
._11_c00033{width:19.737600pt;}
._8_c00033{width:21.107200pt;}
._d_c00033{width:22.630400pt;}
._a_c00033{width:24.332800pt;}
._7_c00033{width:25.235200pt;}
._9_c00033{width:26.438400pt;}
._c_c00033{width:27.411200pt;}
._17_c00033{width:28.480000pt;}
._18_c00033{width:29.491200pt;}
._1b_c00033{width:30.555520pt;}
._1a_c00033{width:31.468800pt;}
._1d_c00033{width:32.838400pt;}
._1c_c00033{width:34.553600pt;}
.fs3_c00033{font-size:35.555557pt;}
.fs1_c00033{font-size:42.666667pt;}
.fs2_c00033{font-size:53.333333pt;}
.fs0_c00033{font-size:64.000000pt;}
.y0_c00033{bottom:0.000000pt;}
.y1c_c00033{bottom:60.000000pt;}
.y1e_c00033{bottom:117.333333pt;}
.y1d_c00033{bottom:138.000000pt;}
.y1a_c00033{bottom:261.333333pt;}
.y19_c00033{bottom:285.333333pt;}
.y18_c00033{bottom:309.333333pt;}
.y17_c00033{bottom:352.000000pt;}
.y16_c00033{bottom:376.000000pt;}
.y15_c00033{bottom:400.000000pt;}
.y14_c00033{bottom:442.666667pt;}
.y13_c00033{bottom:466.666667pt;}
.y12_c00033{bottom:509.333333pt;}
.y11_c00033{bottom:533.333333pt;}
.y10_c00033{bottom:557.333333pt;}
.yf_c00033{bottom:581.333333pt;}
.ye_c00033{bottom:624.000000pt;}
.yd_c00033{bottom:648.000000pt;}
.yc_c00033{bottom:672.000000pt;}
.yb_c00033{bottom:696.000000pt;}
.ya_c00033{bottom:720.000000pt;}
.y9_c00033{bottom:744.000000pt;}
.y8_c00033{bottom:768.000000pt;}
.y7_c00033{bottom:810.666667pt;}
.y6_c00033{bottom:834.666667pt;}
.y5_c00033{bottom:858.666667pt;}
.y4_c00033{bottom:882.666667pt;}
.y3_c00033{bottom:925.333333pt;}
.y2_c00033{bottom:949.333333pt;}
.y1_c00033{bottom:973.333333pt;}
.y1b_c00033{bottom:1061.333333pt;}
.h5_c00033{height:24.427085pt;}
.h6_c00033{height:36.640625pt;}
.h4_c00033{height:39.296875pt;}
.h1_c00033{height:45.562500pt;}
.h3_c00033{height:49.843750pt;}
.h2_c00033{height:50.896067pt;}
.h0_c00033{height:1122.666667pt;}
.w0_c00033{width:793.333333pt;}
.x0_c00033{left:0.000000pt;}
.x1_c00033{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2f16b674b7a6ed2d0edb683d.woff2')format("woff");}.ff1_c00034{font-family:ff1_c00034;line-height:0.934082;font-style:normal;font-weight:normal;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_7dd5f849f081964c529cd0b1.woff2')format("woff");}.ff2_c00034{font-family:ff2_c00034;line-height:0.987793;font-style:normal;font-weight:normal;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_a533faf6f10cdc6da0c88adc.woff2')format("woff");}.ff3_c00034{font-family:ff3_c00034;line-height:0.932129;font-style:normal;font-weight:normal;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_05fe12f3871a3c9e6204eaca.woff2')format("woff");}.ff4_c00034{font-family:ff4_c00034;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00034;src:url('chunks/assets/font_c139ae3f1a36aaed15a4576c.woff2')format("woff");}.ff5_c00034{font-family:ff5_c00034;line-height:0.904785;font-style:normal;font-weight: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_c00034;src:url('chunks/assets/font_a7ab5497f17aacaabcc92b9b.woff2')format("woff");}.ff6_c00034{font-family:ff6_c00034;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00034{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00034{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00034{vertical-align:-23.086200px;}
.v3_c00034{vertical-align:-15.000000px;}
.v0_c00034{vertical-align:0.000000px;}
.v1_c00034{vertical-align:23.086200px;}
.ls4_c00034{letter-spacing:-0.014400px;}
.ls2_c00034{letter-spacing:-0.009600px;}
.ls3_c00034{letter-spacing:-0.007200px;}
.ls1_c00034{letter-spacing:0.000000px;}
.ls0_c00034{letter-spacing:0.012000px;}
.sc__c00034{text-shadow:none;}
.sc0_c00034{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00034{-webkit-text-stroke:0px transparent;}
.sc0_c00034{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00034{word-spacing:-13.190400px;}
.ws1_c00034{word-spacing:-10.000001px;}
.ws2_c00034{word-spacing:0.000000px;}
._8_c00034{margin-left:-4.593600px;}
._1_c00034{margin-left:-3.369600px;}
._5_c00034{margin-left:-2.160000px;}
._e_c00034{margin-left:-1.000800px;}
._a_c00034{width:1.202400px;}
._3_c00034{width:2.822400px;}
._c_c00034{width:3.880800px;}
._7_c00034{width:5.608800px;}
._b_c00034{width:7.128000px;}
._4_c00034{width:9.093600px;}
._0_c00034{width:11.923200px;}
._9_c00034{width:13.046400px;}
._6_c00034{width:14.112000px;}
._2_c00034{width:15.336000px;}
._d_c00034{width:18.403200px;}
.fc0_c00034{color:rgb(0,0,0);}
.fs4_c00034{font-size:40.000002px;}
.fs1_c00034{font-size:48.000000px;}
.fs2_c00034{font-size:54.000000px;}
.fs3_c00034{font-size:60.000000px;}
.fs0_c00034{font-size:72.000000px;}
.y0_c00034{bottom:0.000000px;}
.y5_c00034{bottom:10.500000px;}
.y4_c00034{bottom:33.000000px;}
.y10_c00034{bottom:67.500000px;}
.y12_c00034{bottom:135.750000px;}
.y11_c00034{bottom:180.750000px;}
.ye_c00034{bottom:264.000000px;}
.yd_c00034{bottom:291.000000px;}
.yc_c00034{bottom:339.000000px;}
.yb_c00034{bottom:366.000000px;}
.ya_c00034{bottom:393.000000px;}
.y9_c00034{bottom:420.000000px;}
.y8_c00034{bottom:468.000000px;}
.y7_c00034{bottom:495.000000px;}
.y6_c00034{bottom:522.000000px;}
.y3_c00034{bottom:562.500000px;}
.y2_c00034{bottom:1068.000000px;}
.y1_c00034{bottom:1095.000000px;}
.yf_c00034{bottom:1194.000000px;}
.h6_c00034{height:27.480470px;}
.h4_c00034{height:42.292969px;}
.h1_c00034{height:51.257812px;}
.h5_c00034{height:56.074219px;}
.h2_c00034{height:57.258075px;}
.h3_c00034{height:474.000000px;}
.h0_c00034{height:1263.000000px;}
.w1_c00034{width:676.499850px;}
.w0_c00034{width:892.500000px;}
.x0_c00034{left:0.000000px;}
.x2_c00034{left:124.224195px;}
.x1_c00034{left:150.519750px;}
.x3_c00034{left:186.605700px;}
.x4_c00034{left:281.790150px;}
.x5_c00034{left:810.335100px;}
@media print{
.v2_c00034{vertical-align:-20.521067pt;}
.v3_c00034{vertical-align:-13.333333pt;}
.v0_c00034{vertical-align:0.000000pt;}
.v1_c00034{vertical-align:20.521067pt;}
.ls4_c00034{letter-spacing:-0.012800pt;}
.ls2_c00034{letter-spacing:-0.008533pt;}
.ls3_c00034{letter-spacing:-0.006400pt;}
.ls1_c00034{letter-spacing:0.000000pt;}
.ls0_c00034{letter-spacing:0.010667pt;}
.ws0_c00034{word-spacing:-11.724800pt;}
.ws1_c00034{word-spacing:-8.888889pt;}
.ws2_c00034{word-spacing:0.000000pt;}
._8_c00034{margin-left:-4.083200pt;}
._1_c00034{margin-left:-2.995200pt;}
._5_c00034{margin-left:-1.920000pt;}
._e_c00034{margin-left:-0.889600pt;}
._a_c00034{width:1.068800pt;}
._3_c00034{width:2.508800pt;}
._c_c00034{width:3.449600pt;}
._7_c00034{width:4.985600pt;}
._b_c00034{width:6.336000pt;}
._4_c00034{width:8.083200pt;}
._0_c00034{width:10.598400pt;}
._9_c00034{width:11.596800pt;}
._6_c00034{width:12.544000pt;}
._2_c00034{width:13.632000pt;}
._d_c00034{width:16.358400pt;}
.fs4_c00034{font-size:35.555557pt;}
.fs1_c00034{font-size:42.666667pt;}
.fs2_c00034{font-size:48.000000pt;}
.fs3_c00034{font-size:53.333333pt;}
.fs0_c00034{font-size:64.000000pt;}
.y0_c00034{bottom:0.000000pt;}
.y5_c00034{bottom:9.333333pt;}
.y4_c00034{bottom:29.333333pt;}
.y10_c00034{bottom:60.000000pt;}
.y12_c00034{bottom:120.666667pt;}
.y11_c00034{bottom:160.666667pt;}
.ye_c00034{bottom:234.666667pt;}
.yd_c00034{bottom:258.666667pt;}
.yc_c00034{bottom:301.333333pt;}
.yb_c00034{bottom:325.333333pt;}
.ya_c00034{bottom:349.333333pt;}
.y9_c00034{bottom:373.333333pt;}
.y8_c00034{bottom:416.000000pt;}
.y7_c00034{bottom:440.000000pt;}
.y6_c00034{bottom:464.000000pt;}
.y3_c00034{bottom:500.000000pt;}
.y2_c00034{bottom:949.333333pt;}
.y1_c00034{bottom:973.333333pt;}
.yf_c00034{bottom:1061.333333pt;}
.h6_c00034{height:24.427085pt;}
.h4_c00034{height:37.593750pt;}
.h1_c00034{height:45.562500pt;}
.h5_c00034{height:49.843750pt;}
.h2_c00034{height:50.896067pt;}
.h3_c00034{height:421.333333pt;}
.h0_c00034{height:1122.666667pt;}
.w1_c00034{width:601.333200pt;}
.w0_c00034{width:793.333333pt;}
.x0_c00034{left:0.000000pt;}
.x2_c00034{left:110.421507pt;}
.x1_c00034{left:133.795333pt;}
.x3_c00034{left:165.871733pt;}
.x4_c00034{left:250.480133pt;}
.x5_c00034{left:720.297867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c3c8e05e06ce02e9eecafb18.woff2')format("woff");}.ff1_c00035{font-family:ff1_c00035;line-height:0.934082;font-style:normal;font-weight:normal;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_4a5f3154f6e8a5ecc6feb68e.woff2')format("woff");}.ff2_c00035{font-family:ff2_c00035;line-height:0.755859;font-style:normal;font-weight:normal;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_4f504d917e25f44b9d4e3892.woff2')format("woff");}.ff3_c00035{font-family:ff3_c00035;line-height:1.155762;font-style:normal;font-weight:normal;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_1bb37d3639e5b5e92da3187b.woff2')format("woff");}.ff4_c00035{font-family:ff4_c00035;line-height:0.904785;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00035;src:url('chunks/assets/font_6b1c036d41185ea766ae9993.woff2')format("woff");}.ff5_c00035{font-family:ff5_c00035;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00035{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00035{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00035{vertical-align:-23.086200px;}
.v3_c00035{vertical-align:-15.000000px;}
.v0_c00035{vertical-align:0.000000px;}
.v1_c00035{vertical-align:23.086200px;}
.ls4_c00035{letter-spacing:-5.382000px;}
.ls5_c00035{letter-spacing:-4.950000px;}
.ls3_c00035{letter-spacing:-2.532000px;}
.ls1_c00035{letter-spacing:-0.009600px;}
.ls0_c00035{letter-spacing:0.000000px;}
.ls2_c00035{letter-spacing:0.012000px;}
.sc__c00035{text-shadow:none;}
.sc0_c00035{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00035{-webkit-text-stroke:0px transparent;}
.sc0_c00035{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00035{word-spacing:-13.190400px;}
.ws1_c00035{word-spacing:-10.000001px;}
.ws2_c00035{word-spacing:0.000000px;}
._7_c00035{margin-left:-7.286400px;}
._18_c00035{margin-left:-5.208642px;}
._8_c00035{margin-left:-3.945600px;}
._14_c00035{margin-left:-2.793600px;}
._1_c00035{margin-left:-1.670400px;}
._3_c00035{width:1.382400px;}
._13_c00035{width:2.419200px;}
._5_c00035{width:3.499200px;}
._6_c00035{width:5.104800px;}
._15_c00035{width:6.148800px;}
._4_c00035{width:7.178400px;}
._0_c00035{width:8.510400px;}
._2_c00035{width:10.209600px;}
._f_c00035{width:11.757600px;}
._10_c00035{width:13.118400px;}
._12_c00035{width:14.832000px;}
._11_c00035{width:17.092800px;}
._16_c00035{width:18.684000px;}
._a_c00035{width:20.887200px;}
._d_c00035{width:22.435200px;}
._19_c00035{width:23.464800px;}
._9_c00035{width:24.595200px;}
._b_c00035{width:25.999200px;}
._c_c00035{width:27.648000px;}
._e_c00035{width:29.937600px;}
._17_c00035{width:31.305600px;}
.fc0_c00035{color:rgb(0,0,0);}
.fs3_c00035{font-size:40.000002px;}
.fs1_c00035{font-size:48.000000px;}
.fs2_c00035{font-size:60.000000px;}
.fs0_c00035{font-size:72.000000px;}
.y0_c00035{bottom:0.000000px;}
.y1b_c00035{bottom:67.500000px;}
.y21_c00035{bottom:135.750000px;}
.y20_c00035{bottom:177.000000px;}
.y1f_c00035{bottom:196.500000px;}
.y1e_c00035{bottom:216.000000px;}
.y1d_c00035{bottom:239.250000px;}
.y1c_c00035{bottom:284.250000px;}
.y19_c00035{bottom:342.000000px;}
.y18_c00035{bottom:369.000000px;}
.y17_c00035{bottom:396.000000px;}
.y16_c00035{bottom:423.000000px;}
.y15_c00035{bottom:450.000000px;}
.y14_c00035{bottom:498.000000px;}
.y13_c00035{bottom:525.000000px;}
.y12_c00035{bottom:573.000000px;}
.y11_c00035{bottom:600.000000px;}
.y10_c00035{bottom:627.000000px;}
.yf_c00035{bottom:654.000000px;}
.ye_c00035{bottom:681.000000px;}
.yd_c00035{bottom:729.000000px;}
.yc_c00035{bottom:756.000000px;}
.yb_c00035{bottom:783.000000px;}
.ya_c00035{bottom:810.000000px;}
.y9_c00035{bottom:858.000000px;}
.y8_c00035{bottom:885.000000px;}
.y7_c00035{bottom:912.000000px;}
.y6_c00035{bottom:939.000000px;}
.y5_c00035{bottom:966.000000px;}
.y4_c00035{bottom:993.000000px;}
.y3_c00035{bottom:1020.000000px;}
.y2_c00035{bottom:1068.000000px;}
.y1_c00035{bottom:1095.000000px;}
.y1a_c00035{bottom:1194.000000px;}
.h5_c00035{height:27.480470px;}
.h6_c00035{height:41.220703px;}
.h4_c00035{height:44.208984px;}
.h1_c00035{height:51.257812px;}
.h3_c00035{height:56.074219px;}
.h2_c00035{height:57.258075px;}
.h0_c00035{height:1263.000000px;}
.w0_c00035{width:892.500000px;}
.x0_c00035{left:0.000000px;}
.x1_c00035{left:65.480310px;}
@media print{
.v2_c00035{vertical-align:-20.521067pt;}
.v3_c00035{vertical-align:-13.333333pt;}
.v0_c00035{vertical-align:0.000000pt;}
.v1_c00035{vertical-align:20.521067pt;}
.ls4_c00035{letter-spacing:-4.784000pt;}
.ls5_c00035{letter-spacing:-4.400000pt;}
.ls3_c00035{letter-spacing:-2.250667pt;}
.ls1_c00035{letter-spacing:-0.008533pt;}
.ls0_c00035{letter-spacing:0.000000pt;}
.ls2_c00035{letter-spacing:0.010667pt;}
.ws0_c00035{word-spacing:-11.724800pt;}
.ws1_c00035{word-spacing:-8.888889pt;}
.ws2_c00035{word-spacing:0.000000pt;}
._7_c00035{margin-left:-6.476800pt;}
._18_c00035{margin-left:-4.629904pt;}
._8_c00035{margin-left:-3.507200pt;}
._14_c00035{margin-left:-2.483200pt;}
._1_c00035{margin-left:-1.484800pt;}
._3_c00035{width:1.228800pt;}
._13_c00035{width:2.150400pt;}
._5_c00035{width:3.110400pt;}
._6_c00035{width:4.537600pt;}
._15_c00035{width:5.465600pt;}
._4_c00035{width:6.380800pt;}
._0_c00035{width:7.564800pt;}
._2_c00035{width:9.075200pt;}
._f_c00035{width:10.451200pt;}
._10_c00035{width:11.660800pt;}
._12_c00035{width:13.184000pt;}
._11_c00035{width:15.193600pt;}
._16_c00035{width:16.608000pt;}
._a_c00035{width:18.566400pt;}
._d_c00035{width:19.942400pt;}
._19_c00035{width:20.857600pt;}
._9_c00035{width:21.862400pt;}
._b_c00035{width:23.110400pt;}
._c_c00035{width:24.576000pt;}
._e_c00035{width:26.611200pt;}
._17_c00035{width:27.827200pt;}
.fs3_c00035{font-size:35.555557pt;}
.fs1_c00035{font-size:42.666667pt;}
.fs2_c00035{font-size:53.333333pt;}
.fs0_c00035{font-size:64.000000pt;}
.y0_c00035{bottom:0.000000pt;}
.y1b_c00035{bottom:60.000000pt;}
.y21_c00035{bottom:120.666667pt;}
.y20_c00035{bottom:157.333333pt;}
.y1f_c00035{bottom:174.666667pt;}
.y1e_c00035{bottom:192.000000pt;}
.y1d_c00035{bottom:212.666667pt;}
.y1c_c00035{bottom:252.666667pt;}
.y19_c00035{bottom:304.000000pt;}
.y18_c00035{bottom:328.000000pt;}
.y17_c00035{bottom:352.000000pt;}
.y16_c00035{bottom:376.000000pt;}
.y15_c00035{bottom:400.000000pt;}
.y14_c00035{bottom:442.666667pt;}
.y13_c00035{bottom:466.666667pt;}
.y12_c00035{bottom:509.333333pt;}
.y11_c00035{bottom:533.333333pt;}
.y10_c00035{bottom:557.333333pt;}
.yf_c00035{bottom:581.333333pt;}
.ye_c00035{bottom:605.333333pt;}
.yd_c00035{bottom:648.000000pt;}
.yc_c00035{bottom:672.000000pt;}
.yb_c00035{bottom:696.000000pt;}
.ya_c00035{bottom:720.000000pt;}
.y9_c00035{bottom:762.666667pt;}
.y8_c00035{bottom:786.666667pt;}
.y7_c00035{bottom:810.666667pt;}
.y6_c00035{bottom:834.666667pt;}
.y5_c00035{bottom:858.666667pt;}
.y4_c00035{bottom:882.666667pt;}
.y3_c00035{bottom:906.666667pt;}
.y2_c00035{bottom:949.333333pt;}
.y1_c00035{bottom:973.333333pt;}
.y1a_c00035{bottom:1061.333333pt;}
.h5_c00035{height:24.427085pt;}
.h6_c00035{height:36.640625pt;}
.h4_c00035{height:39.296875pt;}
.h1_c00035{height:45.562500pt;}
.h3_c00035{height:49.843750pt;}
.h2_c00035{height:50.896067pt;}
.h0_c00035{height:1122.666667pt;}
.w0_c00035{width:793.333333pt;}
.x0_c00035{left:0.000000pt;}
.x1_c00035{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e967db4a390c40da277eeded.woff2')format("woff");}.ff1_c00036{font-family:ff1_c00036;line-height:0.934082;font-style:normal;font-weight:normal;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_72daeef39ff262097be7aad8.woff2')format("woff");}.ff2_c00036{font-family:ff2_c00036;line-height:0.987793;font-style:normal;font-weight:normal;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_31c92055132b0655bbd25366.woff2')format("woff");}.ff3_c00036{font-family:ff3_c00036;line-height:1.155762;font-style:normal;font-weight:normal;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_11760525bad290640e9fc0d6.woff2')format("woff");}.ff4_c00036{font-family:ff4_c00036;line-height:0.894531;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00036;src:url('chunks/assets/font_876dfed4aac504ddbb31a266.woff2')format("woff");}.ff5_c00036{font-family:ff5_c00036;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00036{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00036{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00036{vertical-align:-23.086200px;}
.v3_c00036{vertical-align:-15.000000px;}
.v0_c00036{vertical-align:0.000000px;}
.v1_c00036{vertical-align:23.086200px;}
.ls2_c00036{letter-spacing:-0.009600px;}
.ls1_c00036{letter-spacing:0.000000px;}
.ls0_c00036{letter-spacing:0.012000px;}
.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:-17.064000px;}
.ws1_c00036{word-spacing:-13.190400px;}
.ws2_c00036{word-spacing:-10.000001px;}
.ws3_c00036{word-spacing:0.000000px;}
._c_c00036{margin-left:-7.221600px;}
._0_c00036{margin-left:-4.442400px;}
._5_c00036{margin-left:-2.800800px;}
._4_c00036{margin-left:-1.339200px;}
._2_c00036{width:1.332000px;}
._3_c00036{width:3.024000px;}
._6_c00036{width:4.204800px;}
._1_c00036{width:5.983200px;}
._18_c00036{width:8.125200px;}
._16_c00036{width:9.223200px;}
._17_c00036{width:10.576800px;}
._19_c00036{width:11.865600px;}
._10_c00036{width:13.197600px;}
._f_c00036{width:14.868000px;}
._11_c00036{width:16.056000px;}
._e_c00036{width:17.164800px;}
._12_c00036{width:18.604800px;}
._13_c00036{width:21.182400px;}
._14_c00036{width:23.659200px;}
._15_c00036{width:25.574400px;}
._7_c00036{width:30.924000px;}
._a_c00036{width:32.076000px;}
._9_c00036{width:33.753600px;}
._8_c00036{width:35.128800px;}
._d_c00036{width:37.879200px;}
._b_c00036{width:39.571200px;}
.fc0_c00036{color:rgb(0,0,0);}
.fs4_c00036{font-size:40.000002px;}
.fs2_c00036{font-size:48.000000px;}
.fs1_c00036{font-size:54.000000px;}
.fs3_c00036{font-size:60.000000px;}
.fs0_c00036{font-size:72.000000px;}
.y0_c00036{bottom:0.000000px;}
.y5_c00036{bottom:10.500000px;}
.y4_c00036{bottom:33.000000px;}
.y13_c00036{bottom:67.500000px;}
.y14_c00036{bottom:135.750000px;}
.y11_c00036{bottom:192.000000px;}
.y10_c00036{bottom:219.000000px;}
.yf_c00036{bottom:246.000000px;}
.ye_c00036{bottom:273.000000px;}
.yd_c00036{bottom:300.000000px;}
.yc_c00036{bottom:327.000000px;}
.yb_c00036{bottom:375.000000px;}
.ya_c00036{bottom:402.000000px;}
.y9_c00036{bottom:429.000000px;}
.y8_c00036{bottom:456.000000px;}
.y7_c00036{bottom:483.000000px;}
.y6_c00036{bottom:510.000000px;}
.y3_c00036{bottom:555.000000px;}
.y2_c00036{bottom:1068.000000px;}
.y1_c00036{bottom:1095.000000px;}
.y12_c00036{bottom:1194.000000px;}
.h6_c00036{height:27.070314px;}
.h3_c00036{height:42.292969px;}
.h1_c00036{height:51.257812px;}
.h5_c00036{height:56.074219px;}
.h4_c00036{height:57.258075px;}
.h2_c00036{height:481.500000px;}
.h0_c00036{height:1263.000000px;}
.w1_c00036{width:676.499850px;}
.w0_c00036{width:892.500000px;}
.x0_c00036{left:0.000000px;}
.x2_c00036{left:127.480545px;}
.x1_c00036{left:150.519750px;}
.x3_c00036{left:197.637000px;}
.x4_c00036{left:281.790150px;}
.x5_c00036{left:810.335100px;}
@media print{
.v2_c00036{vertical-align:-20.521067pt;}
.v3_c00036{vertical-align:-13.333333pt;}
.v0_c00036{vertical-align:0.000000pt;}
.v1_c00036{vertical-align:20.521067pt;}
.ls2_c00036{letter-spacing:-0.008533pt;}
.ls1_c00036{letter-spacing:0.000000pt;}
.ls0_c00036{letter-spacing:0.010667pt;}
.ws0_c00036{word-spacing:-15.168000pt;}
.ws1_c00036{word-spacing:-11.724800pt;}
.ws2_c00036{word-spacing:-8.888889pt;}
.ws3_c00036{word-spacing:0.000000pt;}
._c_c00036{margin-left:-6.419200pt;}
._0_c00036{margin-left:-3.948800pt;}
._5_c00036{margin-left:-2.489600pt;}
._4_c00036{margin-left:-1.190400pt;}
._2_c00036{width:1.184000pt;}
._3_c00036{width:2.688000pt;}
._6_c00036{width:3.737600pt;}
._1_c00036{width:5.318400pt;}
._18_c00036{width:7.222400pt;}
._16_c00036{width:8.198400pt;}
._17_c00036{width:9.401600pt;}
._19_c00036{width:10.547200pt;}
._10_c00036{width:11.731200pt;}
._f_c00036{width:13.216000pt;}
._11_c00036{width:14.272000pt;}
._e_c00036{width:15.257600pt;}
._12_c00036{width:16.537600pt;}
._13_c00036{width:18.828800pt;}
._14_c00036{width:21.030400pt;}
._15_c00036{width:22.732800pt;}
._7_c00036{width:27.488000pt;}
._a_c00036{width:28.512000pt;}
._9_c00036{width:30.003200pt;}
._8_c00036{width:31.225600pt;}
._d_c00036{width:33.670400pt;}
._b_c00036{width:35.174400pt;}
.fs4_c00036{font-size:35.555557pt;}
.fs2_c00036{font-size:42.666667pt;}
.fs1_c00036{font-size:48.000000pt;}
.fs3_c00036{font-size:53.333333pt;}
.fs0_c00036{font-size:64.000000pt;}
.y0_c00036{bottom:0.000000pt;}
.y5_c00036{bottom:9.333333pt;}
.y4_c00036{bottom:29.333333pt;}
.y13_c00036{bottom:60.000000pt;}
.y14_c00036{bottom:120.666667pt;}
.y11_c00036{bottom:170.666667pt;}
.y10_c00036{bottom:194.666667pt;}
.yf_c00036{bottom:218.666667pt;}
.ye_c00036{bottom:242.666667pt;}
.yd_c00036{bottom:266.666667pt;}
.yc_c00036{bottom:290.666667pt;}
.yb_c00036{bottom:333.333333pt;}
.ya_c00036{bottom:357.333333pt;}
.y9_c00036{bottom:381.333333pt;}
.y8_c00036{bottom:405.333333pt;}
.y7_c00036{bottom:429.333333pt;}
.y6_c00036{bottom:453.333333pt;}
.y3_c00036{bottom:493.333333pt;}
.y2_c00036{bottom:949.333333pt;}
.y1_c00036{bottom:973.333333pt;}
.y12_c00036{bottom:1061.333333pt;}
.h6_c00036{height:24.062501pt;}
.h3_c00036{height:37.593750pt;}
.h1_c00036{height:45.562500pt;}
.h5_c00036{height:49.843750pt;}
.h4_c00036{height:50.896067pt;}
.h2_c00036{height:428.000000pt;}
.h0_c00036{height:1122.666667pt;}
.w1_c00036{width:601.333200pt;}
.w0_c00036{width:793.333333pt;}
.x0_c00036{left:0.000000pt;}
.x2_c00036{left:113.316040pt;}
.x1_c00036{left:133.795333pt;}
.x3_c00036{left:175.677333pt;}
.x4_c00036{left:250.480133pt;}
.x5_c00036{left:720.297867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_78d3649a86375f72d8a2e0de.woff2')format("woff");}.ff1_c00037{font-family:ff1_c00037;line-height:0.934082;font-style:normal;font-weight:normal;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_700e41037fdf1c37b8ea680d.woff2')format("woff");}.ff2_c00037{font-family:ff2_c00037;line-height:0.936035;font-style:normal;font-weight:normal;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_785bfc78026d1f4db71fb1a4.woff2')format("woff");}.ff3_c00037{font-family:ff3_c00037;line-height:0.755859;font-style:normal;font-weight:normal;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_ce870c8eef2bfc4bf2220cb8.woff2')format("woff");}.ff4_c00037{font-family:ff4_c00037;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00037;src:url('chunks/assets/font_9943b6e96d8ce3f63a2581f2.woff2')format("woff");}.ff5_c00037{font-family:ff5_c00037;line-height:0.904297;font-style:normal;font-weight: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_c00037;src:url('chunks/assets/font_84edc74a1540e45d12475f5c.woff2')format("woff");}.ff6_c00037{font-family:ff6_c00037;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00037{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00037{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00037{vertical-align:-23.086200px;}
.v3_c00037{vertical-align:-15.000000px;}
.v0_c00037{vertical-align:0.000000px;}
.v1_c00037{vertical-align:23.086200px;}
.ls3_c00037{letter-spacing:-1.422000px;}
.ls1_c00037{letter-spacing:-0.009600px;}
.ls0_c00037{letter-spacing:0.000000px;}
.ls2_c00037{letter-spacing:0.012000px;}
.sc__c00037{text-shadow:none;}
.sc0_c00037{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00037{-webkit-text-stroke:0px transparent;}
.sc0_c00037{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00037{word-spacing:-19.800000px;}
.ws3_c00037{word-spacing:-15.000000px;}
.ws0_c00037{word-spacing:-13.190400px;}
.ws2_c00037{word-spacing:-10.000001px;}
.ws4_c00037{word-spacing:0.000000px;}
._17_c00037{margin-left:-10.584000px;}
._1a_c00037{margin-left:-6.046002px;}
._11_c00037{margin-left:-4.716000px;}
._2_c00037{margin-left:-2.980800px;}
._a_c00037{margin-left:-1.087200px;}
._4_c00037{width:1.692000px;}
._1_c00037{width:3.038400px;}
._7_c00037{width:4.140000px;}
._5_c00037{width:5.565600px;}
._c_c00037{width:6.933600px;}
._e_c00037{width:8.150400px;}
._d_c00037{width:9.590400px;}
._10_c00037{width:10.879200px;}
._f_c00037{width:12.139200px;}
._9_c00037{width:13.312800px;}
._18_c00037{width:14.652000px;}
._b_c00037{width:15.861600px;}
._6_c00037{width:16.884000px;}
._8_c00037{width:18.446400px;}
._12_c00037{width:20.880000px;}
._0_c00037{width:21.924000px;}
._3_c00037{width:24.069600px;}
._14_c00037{width:25.891200px;}
._19_c00037{width:27.367200px;}
._15_c00037{width:28.382400px;}
._13_c00037{width:30.139200px;}
._16_c00037{width:32.976000px;}
.fc0_c00037{color:rgb(0,0,0);}
.fs4_c00037{font-size:40.000002px;}
.fs1_c00037{font-size:48.000000px;}
.fs3_c00037{font-size:60.000000px;}
.fs0_c00037{font-size:72.000000px;}
.fs2_c00037{font-size:84.000000px;}
.y0_c00037{bottom:0.000000px;}
.y18_c00037{bottom:67.500000px;}
.y21_c00037{bottom:132.000000px;}
.y20_c00037{bottom:151.500000px;}
.y1f_c00037{bottom:174.750000px;}
.y1e_c00037{bottom:216.000000px;}
.y1d_c00037{bottom:235.500000px;}
.y1c_c00037{bottom:255.000000px;}
.y1b_c00037{bottom:274.500000px;}
.y1a_c00037{bottom:294.000000px;}
.y19_c00037{bottom:317.250000px;}
.y16_c00037{bottom:367.500000px;}
.y15_c00037{bottom:415.500000px;}
.y14_c00037{bottom:442.500000px;}
.y13_c00037{bottom:490.500000px;}
.y12_c00037{bottom:517.500000px;}
.y11_c00037{bottom:544.500000px;}
.y10_c00037{bottom:571.500000px;}
.yf_c00037{bottom:598.500000px;}
.ye_c00037{bottom:658.500000px;}
.yd_c00037{bottom:708.000000px;}
.yc_c00037{bottom:735.000000px;}
.yb_c00037{bottom:762.000000px;}
.ya_c00037{bottom:810.000000px;}
.y9_c00037{bottom:837.000000px;}
.y8_c00037{bottom:864.000000px;}
.y7_c00037{bottom:891.000000px;}
.y6_c00037{bottom:918.000000px;}
.y5_c00037{bottom:966.000000px;}
.y4_c00037{bottom:993.000000px;}
.y3_c00037{bottom:1041.000000px;}
.y2_c00037{bottom:1068.000000px;}
.y1_c00037{bottom:1095.000000px;}
.y17_c00037{bottom:1194.000000px;}
.h6_c00037{height:27.421876px;}
.h7_c00037{height:41.132812px;}
.h5_c00037{height:44.208984px;}
.h1_c00037{height:51.257812px;}
.h4_c00037{height:56.074219px;}
.h2_c00037{height:57.258075px;}
.h3_c00037{height:60.128906px;}
.h0_c00037{height:1263.000000px;}
.w0_c00037{width:892.500000px;}
.x0_c00037{left:0.000000px;}
.x1_c00037{left:65.480310px;}
@media print{
.v2_c00037{vertical-align:-20.521067pt;}
.v3_c00037{vertical-align:-13.333333pt;}
.v0_c00037{vertical-align:0.000000pt;}
.v1_c00037{vertical-align:20.521067pt;}
.ls3_c00037{letter-spacing:-1.264000pt;}
.ls1_c00037{letter-spacing:-0.008533pt;}
.ls0_c00037{letter-spacing:0.000000pt;}
.ls2_c00037{letter-spacing:0.010667pt;}
.ws1_c00037{word-spacing:-17.600000pt;}
.ws3_c00037{word-spacing:-13.333333pt;}
.ws0_c00037{word-spacing:-11.724800pt;}
.ws2_c00037{word-spacing:-8.888889pt;}
.ws4_c00037{word-spacing:0.000000pt;}
._17_c00037{margin-left:-9.408000pt;}
._1a_c00037{margin-left:-5.374224pt;}
._11_c00037{margin-left:-4.192000pt;}
._2_c00037{margin-left:-2.649600pt;}
._a_c00037{margin-left:-0.966400pt;}
._4_c00037{width:1.504000pt;}
._1_c00037{width:2.700800pt;}
._7_c00037{width:3.680000pt;}
._5_c00037{width:4.947200pt;}
._c_c00037{width:6.163200pt;}
._e_c00037{width:7.244800pt;}
._d_c00037{width:8.524800pt;}
._10_c00037{width:9.670400pt;}
._f_c00037{width:10.790400pt;}
._9_c00037{width:11.833600pt;}
._18_c00037{width:13.024000pt;}
._b_c00037{width:14.099200pt;}
._6_c00037{width:15.008000pt;}
._8_c00037{width:16.396800pt;}
._12_c00037{width:18.560000pt;}
._0_c00037{width:19.488000pt;}
._3_c00037{width:21.395200pt;}
._14_c00037{width:23.014400pt;}
._19_c00037{width:24.326400pt;}
._15_c00037{width:25.228800pt;}
._13_c00037{width:26.790400pt;}
._16_c00037{width:29.312000pt;}
.fs4_c00037{font-size:35.555557pt;}
.fs1_c00037{font-size:42.666667pt;}
.fs3_c00037{font-size:53.333333pt;}
.fs0_c00037{font-size:64.000000pt;}
.fs2_c00037{font-size:74.666667pt;}
.y0_c00037{bottom:0.000000pt;}
.y18_c00037{bottom:60.000000pt;}
.y21_c00037{bottom:117.333333pt;}
.y20_c00037{bottom:134.666667pt;}
.y1f_c00037{bottom:155.333333pt;}
.y1e_c00037{bottom:192.000000pt;}
.y1d_c00037{bottom:209.333333pt;}
.y1c_c00037{bottom:226.666667pt;}
.y1b_c00037{bottom:244.000000pt;}
.y1a_c00037{bottom:261.333333pt;}
.y19_c00037{bottom:282.000000pt;}
.y16_c00037{bottom:326.666667pt;}
.y15_c00037{bottom:369.333333pt;}
.y14_c00037{bottom:393.333333pt;}
.y13_c00037{bottom:436.000000pt;}
.y12_c00037{bottom:460.000000pt;}
.y11_c00037{bottom:484.000000pt;}
.y10_c00037{bottom:508.000000pt;}
.yf_c00037{bottom:532.000000pt;}
.ye_c00037{bottom:585.333333pt;}
.yd_c00037{bottom:629.333333pt;}
.yc_c00037{bottom:653.333333pt;}
.yb_c00037{bottom:677.333333pt;}
.ya_c00037{bottom:720.000000pt;}
.y9_c00037{bottom:744.000000pt;}
.y8_c00037{bottom:768.000000pt;}
.y7_c00037{bottom:792.000000pt;}
.y6_c00037{bottom:816.000000pt;}
.y5_c00037{bottom:858.666667pt;}
.y4_c00037{bottom:882.666667pt;}
.y3_c00037{bottom:925.333333pt;}
.y2_c00037{bottom:949.333333pt;}
.y1_c00037{bottom:973.333333pt;}
.y17_c00037{bottom:1061.333333pt;}
.h6_c00037{height:24.375001pt;}
.h7_c00037{height:36.562500pt;}
.h5_c00037{height:39.296875pt;}
.h1_c00037{height:45.562500pt;}
.h4_c00037{height:49.843750pt;}
.h2_c00037{height:50.896067pt;}
.h3_c00037{height:53.447917pt;}
.h0_c00037{height:1122.666667pt;}
.w0_c00037{width:793.333333pt;}
.x0_c00037{left:0.000000pt;}
.x1_c00037{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6b91da769bfd92097ee310b4.woff2')format("woff");}.ff1_c00038{font-family:ff1_c00038;line-height:0.934082;font-style:normal;font-weight:normal;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_74d7b006f68cf435470f9ec5.woff2')format("woff");}.ff2_c00038{font-family:ff2_c00038;line-height:1.155762;font-style:normal;font-weight:normal;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_30823ca5e1326056b95a96e8.woff2')format("woff");}.ff3_c00038{font-family:ff3_c00038;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00038;src:url('chunks/assets/font_33b8c95181ffc5a1fe46af95.woff2')format("woff");}.ff4_c00038{font-family:ff4_c00038;line-height:0.891113;font-style:normal;font-weight:normal;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_469b9a75fa5ae0bbe336689f.woff2')format("woff");}.ff5_c00038{font-family:ff5_c00038;line-height:0.853027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00038{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00038{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00038{vertical-align:-23.086200px;}
.v3_c00038{vertical-align:-15.000000px;}
.v0_c00038{vertical-align:0.000000px;}
.v1_c00038{vertical-align:23.086200px;}
.ls3_c00038{letter-spacing:-0.009600px;}
.ls2_c00038{letter-spacing:0.000000px;}
.ls1_c00038{letter-spacing:0.012000px;}
.ls0_c00038{letter-spacing:1.036800px;}
.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;}
}
.ws1_c00038{word-spacing:-20.836800px;}
.ws0_c00038{word-spacing:-13.190400px;}
.ws3_c00038{word-spacing:-10.000001px;}
.ws2_c00038{word-spacing:-2.000002px;}
.ws4_c00038{word-spacing:0.000000px;}
._14_c00038{margin-left:-7.920000px;}
._2_c00038{margin-left:-6.192000px;}
._3_c00038{margin-left:-4.867200px;}
._6_c00038{margin-left:-3.729600px;}
._9_c00038{margin-left:-2.714400px;}
._1_c00038{margin-left:-1.209000px;}
._0_c00038{width:1.344000px;}
._8_c00038{width:2.709600px;}
._5_c00038{width:4.068000px;}
._4_c00038{width:5.241000px;}
._a_c00038{width:6.645600px;}
._7_c00038{width:7.804800px;}
._10_c00038{width:9.580800px;}
._11_c00038{width:10.896000px;}
._f_c00038{width:12.398400px;}
._13_c00038{width:13.629000px;}
._12_c00038{width:15.676800px;}
._16_c00038{width:17.985600px;}
._15_c00038{width:21.556800px;}
._b_c00038{width:22.951200px;}
._e_c00038{width:24.458400px;}
._c_c00038{width:25.555200px;}
._d_c00038{width:26.831400px;}
._1b_c00038{width:28.713600px;}
._17_c00038{width:30.100800px;}
._1a_c00038{width:32.868000px;}
._19_c00038{width:35.467200px;}
._18_c00038{width:37.713600px;}
._1c_c00038{width:38.942400px;}
.fc0_c00038{color:rgb(0,0,0);}
.fs3_c00038{font-size:40.000002px;}
.fs1_c00038{font-size:48.000000px;}
.fs2_c00038{font-size:60.000000px;}
.fs0_c00038{font-size:72.000000px;}
.y0_c00038{bottom:0.000000px;}
.y18_c00038{bottom:67.500000px;}
.y1f_c00038{bottom:135.750000px;}
.y1e_c00038{bottom:180.750000px;}
.y1d_c00038{bottom:222.000000px;}
.y1c_c00038{bottom:245.250000px;}
.y1b_c00038{bottom:286.500000px;}
.y1a_c00038{bottom:306.000000px;}
.y19_c00038{bottom:329.250000px;}
.y16_c00038{bottom:390.000000px;}
.y15_c00038{bottom:417.000000px;}
.y14_c00038{bottom:444.000000px;}
.y13_c00038{bottom:492.000000px;}
.y12_c00038{bottom:519.000000px;}
.y11_c00038{bottom:546.000000px;}
.y10_c00038{bottom:573.000000px;}
.yf_c00038{bottom:600.000000px;}
.ye_c00038{bottom:627.000000px;}
.yd_c00038{bottom:654.000000px;}
.yc_c00038{bottom:702.000000px;}
.yb_c00038{bottom:729.000000px;}
.ya_c00038{bottom:756.000000px;}
.y9_c00038{bottom:783.000000px;}
.y8_c00038{bottom:810.000000px;}
.y7_c00038{bottom:837.000000px;}
.y6_c00038{bottom:864.000000px;}
.y5_c00038{bottom:912.000000px;}
.y4_c00038{bottom:939.000000px;}
.y3_c00038{bottom:1005.000000px;}
.y2_c00038{bottom:1050.000000px;}
.y1_c00038{bottom:1095.000000px;}
.y17_c00038{bottom:1194.000000px;}
.h4_c00038{height:38.671875px;}
.h2_c00038{height:51.257812px;}
.h5_c00038{height:53.671875px;}
.h3_c00038{height:56.074219px;}
.h1_c00038{height:57.258075px;}
.h0_c00038{height:1263.000000px;}
.w0_c00038{width:892.500000px;}
.x0_c00038{left:0.000000px;}
.x1_c00038{left:150.519750px;}
.x2_c00038{left:281.790150px;}
.x3_c00038{left:810.335100px;}
@media print{
.v2_c00038{vertical-align:-20.521067pt;}
.v3_c00038{vertical-align:-13.333333pt;}
.v0_c00038{vertical-align:0.000000pt;}
.v1_c00038{vertical-align:20.521067pt;}
.ls3_c00038{letter-spacing:-0.008533pt;}
.ls2_c00038{letter-spacing:0.000000pt;}
.ls1_c00038{letter-spacing:0.010667pt;}
.ls0_c00038{letter-spacing:0.921600pt;}
.ws1_c00038{word-spacing:-18.521600pt;}
.ws0_c00038{word-spacing:-11.724800pt;}
.ws3_c00038{word-spacing:-8.888889pt;}
.ws2_c00038{word-spacing:-1.777780pt;}
.ws4_c00038{word-spacing:0.000000pt;}
._14_c00038{margin-left:-7.040000pt;}
._2_c00038{margin-left:-5.504000pt;}
._3_c00038{margin-left:-4.326400pt;}
._6_c00038{margin-left:-3.315200pt;}
._9_c00038{margin-left:-2.412800pt;}
._1_c00038{margin-left:-1.074667pt;}
._0_c00038{width:1.194667pt;}
._8_c00038{width:2.408533pt;}
._5_c00038{width:3.616000pt;}
._4_c00038{width:4.658667pt;}
._a_c00038{width:5.907200pt;}
._7_c00038{width:6.937600pt;}
._10_c00038{width:8.516267pt;}
._11_c00038{width:9.685333pt;}
._f_c00038{width:11.020800pt;}
._13_c00038{width:12.114667pt;}
._12_c00038{width:13.934933pt;}
._16_c00038{width:15.987200pt;}
._15_c00038{width:19.161600pt;}
._b_c00038{width:20.401067pt;}
._e_c00038{width:21.740800pt;}
._c_c00038{width:22.715733pt;}
._d_c00038{width:23.850133pt;}
._1b_c00038{width:25.523200pt;}
._17_c00038{width:26.756267pt;}
._1a_c00038{width:29.216000pt;}
._19_c00038{width:31.526400pt;}
._18_c00038{width:33.523200pt;}
._1c_c00038{width:34.615467pt;}
.fs3_c00038{font-size:35.555557pt;}
.fs1_c00038{font-size:42.666667pt;}
.fs2_c00038{font-size:53.333333pt;}
.fs0_c00038{font-size:64.000000pt;}
.y0_c00038{bottom:0.000000pt;}
.y18_c00038{bottom:60.000000pt;}
.y1f_c00038{bottom:120.666667pt;}
.y1e_c00038{bottom:160.666667pt;}
.y1d_c00038{bottom:197.333333pt;}
.y1c_c00038{bottom:218.000000pt;}
.y1b_c00038{bottom:254.666667pt;}
.y1a_c00038{bottom:272.000000pt;}
.y19_c00038{bottom:292.666667pt;}
.y16_c00038{bottom:346.666667pt;}
.y15_c00038{bottom:370.666667pt;}
.y14_c00038{bottom:394.666667pt;}
.y13_c00038{bottom:437.333333pt;}
.y12_c00038{bottom:461.333333pt;}
.y11_c00038{bottom:485.333333pt;}
.y10_c00038{bottom:509.333333pt;}
.yf_c00038{bottom:533.333333pt;}
.ye_c00038{bottom:557.333333pt;}
.yd_c00038{bottom:581.333333pt;}
.yc_c00038{bottom:624.000000pt;}
.yb_c00038{bottom:648.000000pt;}
.ya_c00038{bottom:672.000000pt;}
.y9_c00038{bottom:696.000000pt;}
.y8_c00038{bottom:720.000000pt;}
.y7_c00038{bottom:744.000000pt;}
.y6_c00038{bottom:768.000000pt;}
.y5_c00038{bottom:810.666667pt;}
.y4_c00038{bottom:834.666667pt;}
.y3_c00038{bottom:893.333333pt;}
.y2_c00038{bottom:933.333333pt;}
.y1_c00038{bottom:973.333333pt;}
.y17_c00038{bottom:1061.333333pt;}
.h4_c00038{height:34.375000pt;}
.h2_c00038{height:45.562500pt;}
.h5_c00038{height:47.708333pt;}
.h3_c00038{height:49.843750pt;}
.h1_c00038{height:50.896067pt;}
.h0_c00038{height:1122.666667pt;}
.w0_c00038{width:793.333333pt;}
.x0_c00038{left:0.000000pt;}
.x1_c00038{left:133.795333pt;}
.x2_c00038{left:250.480133pt;}
.x3_c00038{left:720.297867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_15cddb636d642942872bc673.woff2')format("woff");}.ff1_c00039{font-family:ff1_c00039;line-height:0.934082;font-style:normal;font-weight:normal;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_a4e1c486269f4e8fa12bf056.woff2')format("woff");}.ff2_c00039{font-family:ff2_c00039;line-height:0.755859;font-style:normal;font-weight:normal;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_b184c5994eadd4d2905851ab.woff2')format("woff");}.ff3_c00039{font-family:ff3_c00039;line-height:1.155762;font-style:normal;font-weight:normal;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_c48e7f68111bac3643647cb9.woff2')format("woff");}.ff4_c00039{font-family:ff4_c00039;line-height:0.905762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00039;src:url('chunks/assets/font_83288a0518b2e77dbbce4c51.woff2')format("woff");}.ff5_c00039{font-family:ff5_c00039;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00039{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00039{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00039{vertical-align:-23.086200px;}
.v3_c00039{vertical-align:-15.000000px;}
.v0_c00039{vertical-align:0.000000px;}
.v1_c00039{vertical-align:23.086200px;}
.ls3_c00039{letter-spacing:-0.009600px;}
.ls2_c00039{letter-spacing:0.000000px;}
.ls0_c00039{letter-spacing:0.007200px;}
.ls4_c00039{letter-spacing:0.012000px;}
.ls1_c00039{letter-spacing:0.352800px;}
.sc__c00039{text-shadow:none;}
.sc0_c00039{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00039{-webkit-text-stroke:0px transparent;}
.sc0_c00039{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00039{word-spacing:-13.190400px;}
.ws2_c00039{word-spacing:-10.000001px;}
.ws0_c00039{word-spacing:-6.067200px;}
.ws3_c00039{word-spacing:0.000000px;}
._16_c00039{margin-left:-8.020800px;}
._1b_c00039{margin-left:-6.494160px;}
._f_c00039{margin-left:-5.133600px;}
._1_c00039{margin-left:-3.931200px;}
._5_c00039{margin-left:-2.887200px;}
._3_c00039{margin-left:-1.785600px;}
._0_c00039{width:1.605600px;}
._4_c00039{width:3.110400px;}
._2_c00039{width:4.428000px;}
._b_c00039{width:6.040800px;}
._c_c00039{width:7.048560px;}
._d_c00039{width:8.424000px;}
._9_c00039{width:9.698400px;}
._a_c00039{width:11.556000px;}
._8_c00039{width:13.356000px;}
._7_c00039{width:14.716800px;}
._6_c00039{width:16.675200px;}
._e_c00039{width:17.922240px;}
._19_c00039{width:21.103200px;}
._1a_c00039{width:22.332960px;}
._14_c00039{width:27.388800px;}
._10_c00039{width:30.225600px;}
._13_c00039{width:31.888800px;}
._11_c00039{width:33.609600px;}
._15_c00039{width:34.761600px;}
._12_c00039{width:35.769600px;}
._18_c00039{width:36.921600px;}
._17_c00039{width:39.211200px;}
.fc0_c00039{color:rgb(0,0,0);}
.fs3_c00039{font-size:40.000002px;}
.fs1_c00039{font-size:48.000000px;}
.fs2_c00039{font-size:60.000000px;}
.fs0_c00039{font-size:72.000000px;}
.y0_c00039{bottom:0.000000px;}
.y19_c00039{bottom:67.500000px;}
.y20_c00039{bottom:135.750000px;}
.y1f_c00039{bottom:180.750000px;}
.y1e_c00039{bottom:225.750000px;}
.y1d_c00039{bottom:267.000000px;}
.y1c_c00039{bottom:286.500000px;}
.y1b_c00039{bottom:309.750000px;}
.y1a_c00039{bottom:354.750000px;}
.y17_c00039{bottom:438.000000px;}
.y16_c00039{bottom:465.000000px;}
.y15_c00039{bottom:492.000000px;}
.y14_c00039{bottom:519.000000px;}
.y13_c00039{bottom:546.000000px;}
.y12_c00039{bottom:594.000000px;}
.y11_c00039{bottom:621.000000px;}
.y10_c00039{bottom:648.000000px;}
.yf_c00039{bottom:675.000000px;}
.ye_c00039{bottom:702.000000px;}
.yd_c00039{bottom:729.000000px;}
.yc_c00039{bottom:756.000000px;}
.yb_c00039{bottom:783.000000px;}
.ya_c00039{bottom:831.000000px;}
.y9_c00039{bottom:858.000000px;}
.y8_c00039{bottom:885.000000px;}
.y7_c00039{bottom:912.000000px;}
.y6_c00039{bottom:939.000000px;}
.y5_c00039{bottom:966.000000px;}
.y4_c00039{bottom:993.000000px;}
.y3_c00039{bottom:1041.000000px;}
.y2_c00039{bottom:1068.000000px;}
.y1_c00039{bottom:1095.000000px;}
.y18_c00039{bottom:1194.000000px;}
.h5_c00039{height:27.480470px;}
.h6_c00039{height:41.220703px;}
.h4_c00039{height:44.208984px;}
.h1_c00039{height:51.257812px;}
.h3_c00039{height:56.074219px;}
.h2_c00039{height:57.258075px;}
.h0_c00039{height:1263.000000px;}
.w0_c00039{width:892.500000px;}
.x0_c00039{left:0.000000px;}
.x1_c00039{left:65.480310px;}
@media print{
.v2_c00039{vertical-align:-20.521067pt;}
.v3_c00039{vertical-align:-13.333333pt;}
.v0_c00039{vertical-align:0.000000pt;}
.v1_c00039{vertical-align:20.521067pt;}
.ls3_c00039{letter-spacing:-0.008533pt;}
.ls2_c00039{letter-spacing:0.000000pt;}
.ls0_c00039{letter-spacing:0.006400pt;}
.ls4_c00039{letter-spacing:0.010667pt;}
.ls1_c00039{letter-spacing:0.313600pt;}
.ws1_c00039{word-spacing:-11.724800pt;}
.ws2_c00039{word-spacing:-8.888889pt;}
.ws0_c00039{word-spacing:-5.393067pt;}
.ws3_c00039{word-spacing:0.000000pt;}
._16_c00039{margin-left:-7.129600pt;}
._1b_c00039{margin-left:-5.772587pt;}
._f_c00039{margin-left:-4.563200pt;}
._1_c00039{margin-left:-3.494400pt;}
._5_c00039{margin-left:-2.566400pt;}
._3_c00039{margin-left:-1.587200pt;}
._0_c00039{width:1.427200pt;}
._4_c00039{width:2.764800pt;}
._2_c00039{width:3.936000pt;}
._b_c00039{width:5.369600pt;}
._c_c00039{width:6.265387pt;}
._d_c00039{width:7.488000pt;}
._9_c00039{width:8.620800pt;}
._a_c00039{width:10.272000pt;}
._8_c00039{width:11.872000pt;}
._7_c00039{width:13.081600pt;}
._6_c00039{width:14.822400pt;}
._e_c00039{width:15.930880pt;}
._19_c00039{width:18.758400pt;}
._1a_c00039{width:19.851520pt;}
._14_c00039{width:24.345600pt;}
._10_c00039{width:26.867200pt;}
._13_c00039{width:28.345600pt;}
._11_c00039{width:29.875200pt;}
._15_c00039{width:30.899200pt;}
._12_c00039{width:31.795200pt;}
._18_c00039{width:32.819200pt;}
._17_c00039{width:34.854400pt;}
.fs3_c00039{font-size:35.555557pt;}
.fs1_c00039{font-size:42.666667pt;}
.fs2_c00039{font-size:53.333333pt;}
.fs0_c00039{font-size:64.000000pt;}
.y0_c00039{bottom:0.000000pt;}
.y19_c00039{bottom:60.000000pt;}
.y20_c00039{bottom:120.666667pt;}
.y1f_c00039{bottom:160.666667pt;}
.y1e_c00039{bottom:200.666667pt;}
.y1d_c00039{bottom:237.333333pt;}
.y1c_c00039{bottom:254.666667pt;}
.y1b_c00039{bottom:275.333333pt;}
.y1a_c00039{bottom:315.333333pt;}
.y17_c00039{bottom:389.333333pt;}
.y16_c00039{bottom:413.333333pt;}
.y15_c00039{bottom:437.333333pt;}
.y14_c00039{bottom:461.333333pt;}
.y13_c00039{bottom:485.333333pt;}
.y12_c00039{bottom:528.000000pt;}
.y11_c00039{bottom:552.000000pt;}
.y10_c00039{bottom:576.000000pt;}
.yf_c00039{bottom:600.000000pt;}
.ye_c00039{bottom:624.000000pt;}
.yd_c00039{bottom:648.000000pt;}
.yc_c00039{bottom:672.000000pt;}
.yb_c00039{bottom:696.000000pt;}
.ya_c00039{bottom:738.666667pt;}
.y9_c00039{bottom:762.666667pt;}
.y8_c00039{bottom:786.666667pt;}
.y7_c00039{bottom:810.666667pt;}
.y6_c00039{bottom:834.666667pt;}
.y5_c00039{bottom:858.666667pt;}
.y4_c00039{bottom:882.666667pt;}
.y3_c00039{bottom:925.333333pt;}
.y2_c00039{bottom:949.333333pt;}
.y1_c00039{bottom:973.333333pt;}
.y18_c00039{bottom:1061.333333pt;}
.h5_c00039{height:24.427085pt;}
.h6_c00039{height:36.640625pt;}
.h4_c00039{height:39.296875pt;}
.h1_c00039{height:45.562500pt;}
.h3_c00039{height:49.843750pt;}
.h2_c00039{height:50.896067pt;}
.h0_c00039{height:1122.666667pt;}
.w0_c00039{width:793.333333pt;}
.x0_c00039{left:0.000000pt;}
.x1_c00039{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5b2a397a46ec69bb6bddaebf.woff2')format("woff");}.ff1_c00040{font-family:ff1_c00040;line-height:0.934082;font-style:normal;font-weight:normal;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_56c89c1e984a3d6b2ea8717e.woff2')format("woff");}.ff2_c00040{font-family:ff2_c00040;line-height:0.987793;font-style:normal;font-weight:normal;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_46ab89f50ba4b59dbb0b45f8.woff2')format("woff");}.ff3_c00040{font-family:ff3_c00040;line-height:0.905762;font-style:normal;font-weight:normal;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_f519c2b670ecdc9949d75d52.woff2')format("woff");}.ff4_c00040{font-family:ff4_c00040;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00040;src:url('chunks/assets/font_a58092abfa99ec3fb7bbbce9.woff2')format("woff");}.ff5_c00040{font-family:ff5_c00040;line-height:0.890137;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00040{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00040{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00040{vertical-align:-15.000000px;}
.v0_c00040{vertical-align:0.000000px;}
.v1_c00040{vertical-align:23.086200px;}
.ls4_c00040{letter-spacing:-5.814000px;}
.ls5_c00040{letter-spacing:-0.012000px;}
.ls3_c00040{letter-spacing:-0.009600px;}
.ls2_c00040{letter-spacing:0.000000px;}
.ls1_c00040{letter-spacing:0.012000px;}
.ls0_c00040{letter-spacing:0.016200px;}
.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;}
}
.ws2_c00040{word-spacing:-14.988000px;}
.ws0_c00040{word-spacing:-13.190400px;}
.ws1_c00040{word-spacing:-10.000001px;}
.ws3_c00040{word-spacing:0.000000px;}
._10_c00040{margin-left:-5.803200px;}
._8_c00040{margin-left:-4.399200px;}
._1_c00040{margin-left:-3.045600px;}
._b_c00040{margin-left:-1.368000px;}
._4_c00040{width:1.044000px;}
._0_c00040{width:2.325600px;}
._3_c00040{width:3.967200px;}
._e_c00040{width:5.126400px;}
._2_c00040{width:6.336000px;}
._f_c00040{width:7.509600px;}
._d_c00040{width:9.972000px;}
._c_c00040{width:11.030400px;}
._6_c00040{width:12.902400px;}
._5_c00040{width:14.572800px;}
._a_c00040{width:15.710400px;}
._7_c00040{width:16.718400px;}
._9_c00040{width:21.398400px;}
.fc0_c00040{color:rgb(0,0,0);}
.fs4_c00040{font-size:40.000002px;}
.fs1_c00040{font-size:48.000000px;}
.fs2_c00040{font-size:54.000000px;}
.fs3_c00040{font-size:60.000000px;}
.fs0_c00040{font-size:72.000000px;}
.y0_c00040{bottom:0.000000px;}
.yd_c00040{bottom:12.000000px;}
.yc_c00040{bottom:34.500000px;}
.yb_c00040{bottom:57.000000px;}
.yf_c00040{bottom:67.500000px;}
.y12_c00040{bottom:132.000000px;}
.y11_c00040{bottom:155.250000px;}
.y10_c00040{bottom:200.250000px;}
.ya_c00040{bottom:240.000000px;}
.y9_c00040{bottom:837.000000px;}
.y8_c00040{bottom:864.000000px;}
.y7_c00040{bottom:891.000000px;}
.y6_c00040{bottom:918.000000px;}
.y5_c00040{bottom:966.000000px;}
.y4_c00040{bottom:993.000000px;}
.y3_c00040{bottom:1020.000000px;}
.y2_c00040{bottom:1068.000000px;}
.y1_c00040{bottom:1095.000000px;}
.ye_c00040{bottom:1194.000000px;}
.h7_c00040{height:27.480470px;}
.h8_c00040{height:41.220703px;}
.h4_c00040{height:42.292969px;}
.h5_c00040{height:49.464844px;}
.h1_c00040{height:51.257812px;}
.h6_c00040{height:56.074219px;}
.h2_c00040{height:57.258075px;}
.h3_c00040{height:565.500000px;}
.h0_c00040{height:1263.000000px;}
.w1_c00040{width:676.499850px;}
.w0_c00040{width:892.500000px;}
.x0_c00040{left:0.000000px;}
.x2_c00040{left:16.187940px;}
.x3_c00040{left:18.488475px;}
.x1_c00040{left:150.519750px;}
.x4_c00040{left:159.478200px;}
.x5_c00040{left:281.790150px;}
.x6_c00040{left:810.335100px;}
@media print{
.v2_c00040{vertical-align:-13.333333pt;}
.v0_c00040{vertical-align:0.000000pt;}
.v1_c00040{vertical-align:20.521067pt;}
.ls4_c00040{letter-spacing:-5.168000pt;}
.ls5_c00040{letter-spacing:-0.010667pt;}
.ls3_c00040{letter-spacing:-0.008533pt;}
.ls2_c00040{letter-spacing:0.000000pt;}
.ls1_c00040{letter-spacing:0.010667pt;}
.ls0_c00040{letter-spacing:0.014400pt;}
.ws2_c00040{word-spacing:-13.322667pt;}
.ws0_c00040{word-spacing:-11.724800pt;}
.ws1_c00040{word-spacing:-8.888889pt;}
.ws3_c00040{word-spacing:0.000000pt;}
._10_c00040{margin-left:-5.158400pt;}
._8_c00040{margin-left:-3.910400pt;}
._1_c00040{margin-left:-2.707200pt;}
._b_c00040{margin-left:-1.216000pt;}
._4_c00040{width:0.928000pt;}
._0_c00040{width:2.067200pt;}
._3_c00040{width:3.526400pt;}
._e_c00040{width:4.556800pt;}
._2_c00040{width:5.632000pt;}
._f_c00040{width:6.675200pt;}
._d_c00040{width:8.864000pt;}
._c_c00040{width:9.804800pt;}
._6_c00040{width:11.468800pt;}
._5_c00040{width:12.953600pt;}
._a_c00040{width:13.964800pt;}
._7_c00040{width:14.860800pt;}
._9_c00040{width:19.020800pt;}
.fs4_c00040{font-size:35.555557pt;}
.fs1_c00040{font-size:42.666667pt;}
.fs2_c00040{font-size:48.000000pt;}
.fs3_c00040{font-size:53.333333pt;}
.fs0_c00040{font-size:64.000000pt;}
.y0_c00040{bottom:0.000000pt;}
.yd_c00040{bottom:10.666667pt;}
.yc_c00040{bottom:30.666667pt;}
.yb_c00040{bottom:50.666667pt;}
.yf_c00040{bottom:60.000000pt;}
.y12_c00040{bottom:117.333333pt;}
.y11_c00040{bottom:138.000000pt;}
.y10_c00040{bottom:178.000000pt;}
.ya_c00040{bottom:213.333333pt;}
.y9_c00040{bottom:744.000000pt;}
.y8_c00040{bottom:768.000000pt;}
.y7_c00040{bottom:792.000000pt;}
.y6_c00040{bottom:816.000000pt;}
.y5_c00040{bottom:858.666667pt;}
.y4_c00040{bottom:882.666667pt;}
.y3_c00040{bottom:906.666667pt;}
.y2_c00040{bottom:949.333333pt;}
.y1_c00040{bottom:973.333333pt;}
.ye_c00040{bottom:1061.333333pt;}
.h7_c00040{height:24.427085pt;}
.h8_c00040{height:36.640625pt;}
.h4_c00040{height:37.593750pt;}
.h5_c00040{height:43.968750pt;}
.h1_c00040{height:45.562500pt;}
.h6_c00040{height:49.843750pt;}
.h2_c00040{height:50.896067pt;}
.h3_c00040{height:502.666667pt;}
.h0_c00040{height:1122.666667pt;}
.w1_c00040{width:601.333200pt;}
.w0_c00040{width:793.333333pt;}
.x0_c00040{left:0.000000pt;}
.x2_c00040{left:14.389280pt;}
.x3_c00040{left:16.434200pt;}
.x1_c00040{left:133.795333pt;}
.x4_c00040{left:141.758400pt;}
.x5_c00040{left:250.480133pt;}
.x6_c00040{left:720.297867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d67254af4939c67ce03e49ab.woff2')format("woff");}.ff1_c00041{font-family:ff1_c00041;line-height:0.934082;font-style:normal;font-weight:normal;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_3573577b0e6a01a6a2036a2b.woff2')format("woff");}.ff2_c00041{font-family:ff2_c00041;line-height:0.756836;font-style:normal;font-weight:normal;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_116e896f3273d299192e2026.woff2')format("woff");}.ff3_c00041{font-family:ff3_c00041;line-height:1.155762;font-style:normal;font-weight:normal;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_5dad3669ab06ed4a364c6e32.woff2')format("woff");}.ff4_c00041{font-family:ff4_c00041;line-height:0.904785;font-style:normal;font-weight:normal;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_6ef17ca6740b207c5b2795e4.woff2')format("woff");}.ff5_c00041{font-family:ff5_c00041;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00041{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00041{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00041{vertical-align:-23.086200px;}
.v3_c00041{vertical-align:-15.000000px;}
.v0_c00041{vertical-align:0.000000px;}
.v1_c00041{vertical-align:23.086200px;}
.ls2_c00041{letter-spacing:-0.014400px;}
.ls1_c00041{letter-spacing:-0.009600px;}
.ls0_c00041{letter-spacing:0.000000px;}
.ls3_c00041{letter-spacing:0.012000px;}
.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:-19.800000px;}
.ws0_c00041{word-spacing:-13.190400px;}
.ws2_c00041{word-spacing:-10.000001px;}
.ws3_c00041{word-spacing:0.000000px;}
._1d_c00041{margin-left:-7.200000px;}
._5_c00041{margin-left:-4.471200px;}
._b_c00041{margin-left:-3.441600px;}
._7_c00041{margin-left:-2.383200px;}
._0_c00041{margin-left:-1.252800px;}
._c_c00041{width:1.029600px;}
._3_c00041{width:2.224800px;}
._9_c00041{width:3.722400px;}
._2_c00041{width:4.802400px;}
._a_c00041{width:5.853600px;}
._4_c00041{width:6.926400px;}
._1_c00041{width:8.172000px;}
._8_c00041{width:9.309600px;}
._18_c00041{width:10.447200px;}
._6_c00041{width:11.455200px;}
._d_c00041{width:13.010400px;}
._e_c00041{width:14.306400px;}
._f_c00041{width:15.372000px;}
._10_c00041{width:16.459200px;}
._11_c00041{width:18.158400px;}
._1c_c00041{width:21.600000px;}
._16_c00041{width:23.356800px;}
._12_c00041{width:24.760800px;}
._14_c00041{width:26.964000px;}
._17_c00041{width:28.188000px;}
._13_c00041{width:29.325600px;}
._15_c00041{width:30.420000px;}
._1a_c00041{width:32.270400px;}
._19_c00041{width:35.726400px;}
._1b_c00041{width:36.885600px;}
.fc0_c00041{color:rgb(0,0,0);}
.fs3_c00041{font-size:40.000002px;}
.fs1_c00041{font-size:48.000000px;}
.fs2_c00041{font-size:60.000000px;}
.fs0_c00041{font-size:72.000000px;}
.y0_c00041{bottom:0.000000px;}
.y17_c00041{bottom:67.500000px;}
.y1e_c00041{bottom:135.750000px;}
.y1d_c00041{bottom:177.000000px;}
.y1c_c00041{bottom:200.250000px;}
.y1b_c00041{bottom:245.250000px;}
.y1a_c00041{bottom:290.250000px;}
.y19_c00041{bottom:335.250000px;}
.y18_c00041{bottom:380.250000px;}
.y15_c00041{bottom:471.000000px;}
.y14_c00041{bottom:498.000000px;}
.y13_c00041{bottom:525.000000px;}
.y12_c00041{bottom:552.000000px;}
.y11_c00041{bottom:579.000000px;}
.y10_c00041{bottom:606.000000px;}
.yf_c00041{bottom:654.000000px;}
.ye_c00041{bottom:681.000000px;}
.yd_c00041{bottom:708.000000px;}
.yc_c00041{bottom:735.000000px;}
.yb_c00041{bottom:762.000000px;}
.ya_c00041{bottom:810.000000px;}
.y9_c00041{bottom:837.000000px;}
.y8_c00041{bottom:864.000000px;}
.y7_c00041{bottom:891.000000px;}
.y6_c00041{bottom:918.000000px;}
.y5_c00041{bottom:966.000000px;}
.y4_c00041{bottom:993.000000px;}
.y3_c00041{bottom:1020.000000px;}
.y2_c00041{bottom:1068.000000px;}
.y1_c00041{bottom:1095.000000px;}
.y16_c00041{bottom:1194.000000px;}
.h5_c00041{height:27.480470px;}
.h6_c00041{height:41.220703px;}
.h4_c00041{height:44.208984px;}
.h1_c00041{height:51.257812px;}
.h3_c00041{height:56.074219px;}
.h2_c00041{height:57.258075px;}
.h0_c00041{height:1263.000000px;}
.w0_c00041{width:892.500000px;}
.x0_c00041{left:0.000000px;}
.x1_c00041{left:65.480310px;}
@media print{
.v2_c00041{vertical-align:-20.521067pt;}
.v3_c00041{vertical-align:-13.333333pt;}
.v0_c00041{vertical-align:0.000000pt;}
.v1_c00041{vertical-align:20.521067pt;}
.ls2_c00041{letter-spacing:-0.012800pt;}
.ls1_c00041{letter-spacing:-0.008533pt;}
.ls0_c00041{letter-spacing:0.000000pt;}
.ls3_c00041{letter-spacing:0.010667pt;}
.ws1_c00041{word-spacing:-17.600000pt;}
.ws0_c00041{word-spacing:-11.724800pt;}
.ws2_c00041{word-spacing:-8.888889pt;}
.ws3_c00041{word-spacing:0.000000pt;}
._1d_c00041{margin-left:-6.400000pt;}
._5_c00041{margin-left:-3.974400pt;}
._b_c00041{margin-left:-3.059200pt;}
._7_c00041{margin-left:-2.118400pt;}
._0_c00041{margin-left:-1.113600pt;}
._c_c00041{width:0.915200pt;}
._3_c00041{width:1.977600pt;}
._9_c00041{width:3.308800pt;}
._2_c00041{width:4.268800pt;}
._a_c00041{width:5.203200pt;}
._4_c00041{width:6.156800pt;}
._1_c00041{width:7.264000pt;}
._8_c00041{width:8.275200pt;}
._18_c00041{width:9.286400pt;}
._6_c00041{width:10.182400pt;}
._d_c00041{width:11.564800pt;}
._e_c00041{width:12.716800pt;}
._f_c00041{width:13.664000pt;}
._10_c00041{width:14.630400pt;}
._11_c00041{width:16.140800pt;}
._1c_c00041{width:19.200000pt;}
._16_c00041{width:20.761600pt;}
._12_c00041{width:22.009600pt;}
._14_c00041{width:23.968000pt;}
._17_c00041{width:25.056000pt;}
._13_c00041{width:26.067200pt;}
._15_c00041{width:27.040000pt;}
._1a_c00041{width:28.684800pt;}
._19_c00041{width:31.756800pt;}
._1b_c00041{width:32.787200pt;}
.fs3_c00041{font-size:35.555557pt;}
.fs1_c00041{font-size:42.666667pt;}
.fs2_c00041{font-size:53.333333pt;}
.fs0_c00041{font-size:64.000000pt;}
.y0_c00041{bottom:0.000000pt;}
.y17_c00041{bottom:60.000000pt;}
.y1e_c00041{bottom:120.666667pt;}
.y1d_c00041{bottom:157.333333pt;}
.y1c_c00041{bottom:178.000000pt;}
.y1b_c00041{bottom:218.000000pt;}
.y1a_c00041{bottom:258.000000pt;}
.y19_c00041{bottom:298.000000pt;}
.y18_c00041{bottom:338.000000pt;}
.y15_c00041{bottom:418.666667pt;}
.y14_c00041{bottom:442.666667pt;}
.y13_c00041{bottom:466.666667pt;}
.y12_c00041{bottom:490.666667pt;}
.y11_c00041{bottom:514.666667pt;}
.y10_c00041{bottom:538.666667pt;}
.yf_c00041{bottom:581.333333pt;}
.ye_c00041{bottom:605.333333pt;}
.yd_c00041{bottom:629.333333pt;}
.yc_c00041{bottom:653.333333pt;}
.yb_c00041{bottom:677.333333pt;}
.ya_c00041{bottom:720.000000pt;}
.y9_c00041{bottom:744.000000pt;}
.y8_c00041{bottom:768.000000pt;}
.y7_c00041{bottom:792.000000pt;}
.y6_c00041{bottom:816.000000pt;}
.y5_c00041{bottom:858.666667pt;}
.y4_c00041{bottom:882.666667pt;}
.y3_c00041{bottom:906.666667pt;}
.y2_c00041{bottom:949.333333pt;}
.y1_c00041{bottom:973.333333pt;}
.y16_c00041{bottom:1061.333333pt;}
.h5_c00041{height:24.427085pt;}
.h6_c00041{height:36.640625pt;}
.h4_c00041{height:39.296875pt;}
.h1_c00041{height:45.562500pt;}
.h3_c00041{height:49.843750pt;}
.h2_c00041{height:50.896067pt;}
.h0_c00041{height:1122.666667pt;}
.w0_c00041{width:793.333333pt;}
.x0_c00041{left:0.000000pt;}
.x1_c00041{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3b53372a853beafafbad8d9f.woff2')format("woff");}.ff1_c00042{font-family:ff1_c00042;line-height:0.934082;font-style:normal;font-weight:normal;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_c6b18258873bc38bd777e8a8.woff2')format("woff");}.ff2_c00042{font-family:ff2_c00042;line-height:0.927734;font-style:normal;font-weight:normal;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_d8977bfa0c9b5cf3752e4f11.woff2')format("woff");}.ff3_c00042{font-family:ff3_c00042;line-height:1.155762;font-style:normal;font-weight:normal;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_5381cd61947c185b780b0ad9.woff2')format("woff");}.ff4_c00042{font-family:ff4_c00042;line-height:0.905762;font-style:normal;font-weight:normal;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_36f12c0f424983110571fcb9.woff2')format("woff");}.ff5_c00042{font-family:ff5_c00042;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00042{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00042{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00042{vertical-align:-23.086200px;}
.v3_c00042{vertical-align:-15.000000px;}
.v0_c00042{vertical-align:0.000000px;}
.v1_c00042{vertical-align:23.086200px;}
.ls3_c00042{letter-spacing:-5.544000px;}
.ls2_c00042{letter-spacing:-0.009600px;}
.ls1_c00042{letter-spacing:0.000000px;}
.ls0_c00042{letter-spacing:0.012000px;}
.sc__c00042{text-shadow:none;}
.sc0_c00042{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00042{-webkit-text-stroke:0px transparent;}
.sc0_c00042{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00042{word-spacing:-13.190400px;}
.ws1_c00042{word-spacing:-10.000001px;}
.ws2_c00042{word-spacing:0.000000px;}
._e_c00042{margin-left:-6.789600px;}
._5_c00042{margin-left:-4.874400px;}
._10_c00042{margin-left:-3.852000px;}
._3_c00042{margin-left:-2.404800px;}
._0_c00042{margin-left:-1.130400px;}
._7_c00042{width:1.216800px;}
._9_c00042{width:2.678400px;}
._6_c00042{width:4.665600px;}
._14_c00042{width:5.875200px;}
._a_c00042{width:7.027200px;}
._c_c00042{width:9.093600px;}
._b_c00042{width:10.274400px;}
._f_c00042{width:11.426400px;}
._d_c00042{width:12.708000px;}
._13_c00042{width:15.004800px;}
._12_c00042{width:17.265600px;}
._11_c00042{width:18.763200px;}
._8_c00042{width:21.384000px;}
._2_c00042{width:23.587200px;}
._1_c00042{width:24.667200px;}
._4_c00042{width:25.819200px;}
.fc0_c00042{color:rgb(0,0,0);}
.fs4_c00042{font-size:40.000002px;}
.fs1_c00042{font-size:48.000000px;}
.fs2_c00042{font-size:54.000000px;}
.fs3_c00042{font-size:60.000000px;}
.fs0_c00042{font-size:72.000000px;}
.y0_c00042{bottom:0.000000px;}
.ya_c00042{bottom:12.000000px;}
.y11_c00042{bottom:67.500000px;}
.y16_c00042{bottom:132.000000px;}
.y15_c00042{bottom:155.250000px;}
.y14_c00042{bottom:196.500000px;}
.y13_c00042{bottom:216.000000px;}
.y12_c00042{bottom:239.250000px;}
.yf_c00042{bottom:295.500000px;}
.ye_c00042{bottom:322.500000px;}
.yd_c00042{bottom:349.500000px;}
.yc_c00042{bottom:397.500000px;}
.yb_c00042{bottom:424.500000px;}
.y9_c00042{bottom:465.000000px;}
.y8_c00042{bottom:885.000000px;}
.y7_c00042{bottom:912.000000px;}
.y6_c00042{bottom:939.000000px;}
.y5_c00042{bottom:966.000000px;}
.y4_c00042{bottom:1014.000000px;}
.y3_c00042{bottom:1041.000000px;}
.y2_c00042{bottom:1068.000000px;}
.y1_c00042{bottom:1095.000000px;}
.y10_c00042{bottom:1194.000000px;}
.h6_c00042{height:27.480470px;}
.h7_c00042{height:41.220703px;}
.h4_c00042{height:42.292969px;}
.h1_c00042{height:51.257812px;}
.h5_c00042{height:56.074219px;}
.h2_c00042{height:57.258075px;}
.h3_c00042{height:388.500000px;}
.h0_c00042{height:1263.000000px;}
.w1_c00042{width:676.500000px;}
.w0_c00042{width:892.500000px;}
.x0_c00042{left:0.000000px;}
.x2_c00042{left:50.953125px;}
.x1_c00042{left:150.519750px;}
.x3_c00042{left:281.790150px;}
.x4_c00042{left:810.335100px;}
@media print{
.v2_c00042{vertical-align:-20.521067pt;}
.v3_c00042{vertical-align:-13.333333pt;}
.v0_c00042{vertical-align:0.000000pt;}
.v1_c00042{vertical-align:20.521067pt;}
.ls3_c00042{letter-spacing:-4.928000pt;}
.ls2_c00042{letter-spacing:-0.008533pt;}
.ls1_c00042{letter-spacing:0.000000pt;}
.ls0_c00042{letter-spacing:0.010667pt;}
.ws0_c00042{word-spacing:-11.724800pt;}
.ws1_c00042{word-spacing:-8.888889pt;}
.ws2_c00042{word-spacing:0.000000pt;}
._e_c00042{margin-left:-6.035200pt;}
._5_c00042{margin-left:-4.332800pt;}
._10_c00042{margin-left:-3.424000pt;}
._3_c00042{margin-left:-2.137600pt;}
._0_c00042{margin-left:-1.004800pt;}
._7_c00042{width:1.081600pt;}
._9_c00042{width:2.380800pt;}
._6_c00042{width:4.147200pt;}
._14_c00042{width:5.222400pt;}
._a_c00042{width:6.246400pt;}
._c_c00042{width:8.083200pt;}
._b_c00042{width:9.132800pt;}
._f_c00042{width:10.156800pt;}
._d_c00042{width:11.296000pt;}
._13_c00042{width:13.337600pt;}
._12_c00042{width:15.347200pt;}
._11_c00042{width:16.678400pt;}
._8_c00042{width:19.008000pt;}
._2_c00042{width:20.966400pt;}
._1_c00042{width:21.926400pt;}
._4_c00042{width:22.950400pt;}
.fs4_c00042{font-size:35.555557pt;}
.fs1_c00042{font-size:42.666667pt;}
.fs2_c00042{font-size:48.000000pt;}
.fs3_c00042{font-size:53.333333pt;}
.fs0_c00042{font-size:64.000000pt;}
.y0_c00042{bottom:0.000000pt;}
.ya_c00042{bottom:10.666667pt;}
.y11_c00042{bottom:60.000000pt;}
.y16_c00042{bottom:117.333333pt;}
.y15_c00042{bottom:138.000000pt;}
.y14_c00042{bottom:174.666667pt;}
.y13_c00042{bottom:192.000000pt;}
.y12_c00042{bottom:212.666667pt;}
.yf_c00042{bottom:262.666667pt;}
.ye_c00042{bottom:286.666667pt;}
.yd_c00042{bottom:310.666667pt;}
.yc_c00042{bottom:353.333333pt;}
.yb_c00042{bottom:377.333333pt;}
.y9_c00042{bottom:413.333333pt;}
.y8_c00042{bottom:786.666667pt;}
.y7_c00042{bottom:810.666667pt;}
.y6_c00042{bottom:834.666667pt;}
.y5_c00042{bottom:858.666667pt;}
.y4_c00042{bottom:901.333333pt;}
.y3_c00042{bottom:925.333333pt;}
.y2_c00042{bottom:949.333333pt;}
.y1_c00042{bottom:973.333333pt;}
.y10_c00042{bottom:1061.333333pt;}
.h6_c00042{height:24.427085pt;}
.h7_c00042{height:36.640625pt;}
.h4_c00042{height:37.593750pt;}
.h1_c00042{height:45.562500pt;}
.h5_c00042{height:49.843750pt;}
.h2_c00042{height:50.896067pt;}
.h3_c00042{height:345.333333pt;}
.h0_c00042{height:1122.666667pt;}
.w1_c00042{width:601.333333pt;}
.w0_c00042{width:793.333333pt;}
.x0_c00042{left:0.000000pt;}
.x2_c00042{left:45.291667pt;}
.x1_c00042{left:133.795333pt;}
.x3_c00042{left:250.480133pt;}
.x4_c00042{left:720.297867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_83f9f92d77d90aae258f01c3.woff2')format("woff");}.ff1_c00043{font-family:ff1_c00043;line-height:0.934082;font-style:normal;font-weight:normal;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_b81f012949e1e9c1933634d9.woff2')format("woff");}.ff2_c00043{font-family:ff2_c00043;line-height:0.755859;font-style:normal;font-weight:normal;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_2e43a7bfd222ad5c9bc44d8a.woff2')format("woff");}.ff3_c00043{font-family:ff3_c00043;line-height:1.155762;font-style:normal;font-weight:normal;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_3fd0eb62fb2944ecc6bf1616.woff2')format("woff");}.ff4_c00043{font-family:ff4_c00043;line-height:0.904785;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00043;src:url('chunks/assets/font_29490cf5323c40d5219465f1.woff2')format("woff");}.ff5_c00043{font-family:ff5_c00043;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00043{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00043{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00043{vertical-align:-23.086200px;}
.v3_c00043{vertical-align:-15.000000px;}
.v0_c00043{vertical-align:0.000000px;}
.v1_c00043{vertical-align:23.086200px;}
.ls3_c00043{letter-spacing:-0.770400px;}
.ls2_c00043{letter-spacing:-0.009600px;}
.ls1_c00043{letter-spacing:0.000000px;}
.ls4_c00043{letter-spacing:0.012000px;}
.ls0_c00043{letter-spacing:2.248200px;}
.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;}
}
.ws2_c00043{word-spacing:-15.000000px;}
.ws0_c00043{word-spacing:-13.190400px;}
.ws1_c00043{word-spacing:-10.000001px;}
.ws3_c00043{word-spacing:0.000000px;}
._16_c00043{margin-left:-8.589600px;}
._12_c00043{margin-left:-6.408000px;}
._15_c00043{margin-left:-5.212800px;}
._2_c00043{margin-left:-4.212000px;}
._4_c00043{margin-left:-2.419200px;}
._0_c00043{margin-left:-1.252800px;}
._5_c00043{width:1.166400px;}
._1_c00043{width:2.671200px;}
._a_c00043{width:3.700800px;}
._3_c00043{width:4.838400px;}
._17_c00043{width:6.019200px;}
._6_c00043{width:7.200000px;}
._18_c00043{width:8.654400px;}
._7_c00043{width:9.900000px;}
._14_c00043{width:11.088000px;}
._8_c00043{width:12.513600px;}
._9_c00043{width:14.083200px;}
._19_c00043{width:15.343200px;}
._13_c00043{width:17.222400px;}
._c_c00043{width:18.374400px;}
._b_c00043{width:21.103200px;}
._e_c00043{width:22.305600px;}
._d_c00043{width:23.493600px;}
._11_c00043{width:24.991200px;}
._f_c00043{width:26.791200px;}
._10_c00043{width:28.929600px;}
.fc0_c00043{color:rgb(0,0,0);}
.fs3_c00043{font-size:40.000002px;}
.fs1_c00043{font-size:48.000000px;}
.fs2_c00043{font-size:60.000000px;}
.fs0_c00043{font-size:72.000000px;}
.y0_c00043{bottom:0.000000px;}
.y19_c00043{bottom:67.500000px;}
.y1f_c00043{bottom:135.750000px;}
.y1e_c00043{bottom:177.000000px;}
.y1d_c00043{bottom:200.250000px;}
.y1c_c00043{bottom:241.500000px;}
.y1b_c00043{bottom:264.750000px;}
.y1a_c00043{bottom:309.750000px;}
.y17_c00043{bottom:417.000000px;}
.y16_c00043{bottom:444.000000px;}
.y15_c00043{bottom:471.000000px;}
.y14_c00043{bottom:498.000000px;}
.y13_c00043{bottom:546.000000px;}
.y12_c00043{bottom:573.000000px;}
.y11_c00043{bottom:600.000000px;}
.y10_c00043{bottom:627.000000px;}
.yf_c00043{bottom:654.000000px;}
.ye_c00043{bottom:681.000000px;}
.yd_c00043{bottom:708.000000px;}
.yc_c00043{bottom:756.000000px;}
.yb_c00043{bottom:783.000000px;}
.ya_c00043{bottom:831.000000px;}
.y9_c00043{bottom:858.000000px;}
.y8_c00043{bottom:885.000000px;}
.y7_c00043{bottom:912.000000px;}
.y6_c00043{bottom:939.000000px;}
.y5_c00043{bottom:987.000000px;}
.y4_c00043{bottom:1014.000000px;}
.y3_c00043{bottom:1041.000000px;}
.y2_c00043{bottom:1068.000000px;}
.y1_c00043{bottom:1095.000000px;}
.y18_c00043{bottom:1194.000000px;}
.h5_c00043{height:27.480470px;}
.h6_c00043{height:41.220703px;}
.h4_c00043{height:44.208984px;}
.h1_c00043{height:51.257812px;}
.h3_c00043{height:56.074219px;}
.h2_c00043{height:57.258075px;}
.h0_c00043{height:1263.000000px;}
.w0_c00043{width:892.500000px;}
.x0_c00043{left:0.000000px;}
.x1_c00043{left:65.480310px;}
@media print{
.v2_c00043{vertical-align:-20.521067pt;}
.v3_c00043{vertical-align:-13.333333pt;}
.v0_c00043{vertical-align:0.000000pt;}
.v1_c00043{vertical-align:20.521067pt;}
.ls3_c00043{letter-spacing:-0.684800pt;}
.ls2_c00043{letter-spacing:-0.008533pt;}
.ls1_c00043{letter-spacing:0.000000pt;}
.ls4_c00043{letter-spacing:0.010667pt;}
.ls0_c00043{letter-spacing:1.998400pt;}
.ws2_c00043{word-spacing:-13.333333pt;}
.ws0_c00043{word-spacing:-11.724800pt;}
.ws1_c00043{word-spacing:-8.888889pt;}
.ws3_c00043{word-spacing:0.000000pt;}
._16_c00043{margin-left:-7.635200pt;}
._12_c00043{margin-left:-5.696000pt;}
._15_c00043{margin-left:-4.633600pt;}
._2_c00043{margin-left:-3.744000pt;}
._4_c00043{margin-left:-2.150400pt;}
._0_c00043{margin-left:-1.113600pt;}
._5_c00043{width:1.036800pt;}
._1_c00043{width:2.374400pt;}
._a_c00043{width:3.289600pt;}
._3_c00043{width:4.300800pt;}
._17_c00043{width:5.350400pt;}
._6_c00043{width:6.400000pt;}
._18_c00043{width:7.692800pt;}
._7_c00043{width:8.800000pt;}
._14_c00043{width:9.856000pt;}
._8_c00043{width:11.123200pt;}
._9_c00043{width:12.518400pt;}
._19_c00043{width:13.638400pt;}
._13_c00043{width:15.308800pt;}
._c_c00043{width:16.332800pt;}
._b_c00043{width:18.758400pt;}
._e_c00043{width:19.827200pt;}
._d_c00043{width:20.883200pt;}
._11_c00043{width:22.214400pt;}
._f_c00043{width:23.814400pt;}
._10_c00043{width:25.715200pt;}
.fs3_c00043{font-size:35.555557pt;}
.fs1_c00043{font-size:42.666667pt;}
.fs2_c00043{font-size:53.333333pt;}
.fs0_c00043{font-size:64.000000pt;}
.y0_c00043{bottom:0.000000pt;}
.y19_c00043{bottom:60.000000pt;}
.y1f_c00043{bottom:120.666667pt;}
.y1e_c00043{bottom:157.333333pt;}
.y1d_c00043{bottom:178.000000pt;}
.y1c_c00043{bottom:214.666667pt;}
.y1b_c00043{bottom:235.333333pt;}
.y1a_c00043{bottom:275.333333pt;}
.y17_c00043{bottom:370.666667pt;}
.y16_c00043{bottom:394.666667pt;}
.y15_c00043{bottom:418.666667pt;}
.y14_c00043{bottom:442.666667pt;}
.y13_c00043{bottom:485.333333pt;}
.y12_c00043{bottom:509.333333pt;}
.y11_c00043{bottom:533.333333pt;}
.y10_c00043{bottom:557.333333pt;}
.yf_c00043{bottom:581.333333pt;}
.ye_c00043{bottom:605.333333pt;}
.yd_c00043{bottom:629.333333pt;}
.yc_c00043{bottom:672.000000pt;}
.yb_c00043{bottom:696.000000pt;}
.ya_c00043{bottom:738.666667pt;}
.y9_c00043{bottom:762.666667pt;}
.y8_c00043{bottom:786.666667pt;}
.y7_c00043{bottom:810.666667pt;}
.y6_c00043{bottom:834.666667pt;}
.y5_c00043{bottom:877.333333pt;}
.y4_c00043{bottom:901.333333pt;}
.y3_c00043{bottom:925.333333pt;}
.y2_c00043{bottom:949.333333pt;}
.y1_c00043{bottom:973.333333pt;}
.y18_c00043{bottom:1061.333333pt;}
.h5_c00043{height:24.427085pt;}
.h6_c00043{height:36.640625pt;}
.h4_c00043{height:39.296875pt;}
.h1_c00043{height:45.562500pt;}
.h3_c00043{height:49.843750pt;}
.h2_c00043{height:50.896067pt;}
.h0_c00043{height:1122.666667pt;}
.w0_c00043{width:793.333333pt;}
.x0_c00043{left:0.000000pt;}
.x1_c00043{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_69fe647567dd74f030f672ef.woff2')format("woff");}.ff1_c00044{font-family:ff1_c00044;line-height:0.934082;font-style:normal;font-weight:normal;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_e266b51e123ca26cd80c7d45.woff2')format("woff");}.ff2_c00044{font-family:ff2_c00044;line-height:0.892578;font-style:normal;font-weight:normal;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_15d466c4220b95597a4a1157.woff2')format("woff");}.ff3_c00044{font-family:ff3_c00044;line-height:1.155762;font-style:normal;font-weight:normal;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_9a73f59c36992c3154bbae74.woff2')format("woff");}.ff4_c00044{font-family:ff4_c00044;line-height:0.904785;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00044;src:url('chunks/assets/font_b9552acbf641818b613460ad.woff2')format("woff");}.ff5_c00044{font-family:ff5_c00044;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00044{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00044{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00044{vertical-align:-23.086200px;}
.v3_c00044{vertical-align:-15.000000px;}
.v0_c00044{vertical-align:0.000000px;}
.v1_c00044{vertical-align:23.086200px;}
.ls4_c00044{letter-spacing:-0.009600px;}
.ls5_c00044{letter-spacing:-0.007200px;}
.ls3_c00044{letter-spacing:0.000000px;}
.ls1_c00044{letter-spacing:0.012000px;}
.ls0_c00044{letter-spacing:0.016800px;}
.ls2_c00044{letter-spacing:4.029000px;}
.ls6_c00044{letter-spacing:4.128000px;}
.sc__c00044{text-shadow:none;}
.sc0_c00044{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00044{-webkit-text-stroke:0px transparent;}
.sc0_c00044{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00044{word-spacing:-19.800000px;}
.ws3_c00044{word-spacing:-15.000000px;}
.ws0_c00044{word-spacing:-13.190400px;}
.ws2_c00044{word-spacing:-10.000001px;}
.ws4_c00044{word-spacing:0.000000px;}
._c_c00044{margin-left:-11.210400px;}
._16_c00044{margin-left:-9.981000px;}
._a_c00044{margin-left:-6.897600px;}
._13_c00044{margin-left:-5.787600px;}
._b_c00044{margin-left:-4.586400px;}
._1_c00044{margin-left:-3.434400px;}
._6_c00044{margin-left:-1.404000px;}
._3_c00044{width:1.785600px;}
._4_c00044{width:2.829600px;}
._0_c00044{width:4.636800px;}
._10_c00044{width:6.292800px;}
._2_c00044{width:8.092800px;}
._11_c00044{width:9.165600px;}
._15_c00044{width:10.209600px;}
._14_c00044{width:11.606400px;}
._e_c00044{width:12.938400px;}
._d_c00044{width:14.025600px;}
._f_c00044{width:15.775200px;}
._5_c00044{width:17.157600px;}
._17_c00044{width:18.396000px;}
._18_c00044{width:20.867400px;}
._9_c00044{width:22.154400px;}
._7_c00044{width:23.176800px;}
._8_c00044{width:25.214400px;}
._12_c00044{width:27.338400px;}
.fc0_c00044{color:rgb(0,0,0);}
.fs4_c00044{font-size:40.000002px;}
.fs1_c00044{font-size:48.000000px;}
.fs3_c00044{font-size:60.000000px;}
.fs0_c00044{font-size:72.000000px;}
.fs2_c00044{font-size:84.000000px;}
.y0_c00044{bottom:0.000000px;}
.y18_c00044{bottom:67.500000px;}
.y1f_c00044{bottom:132.000000px;}
.y1e_c00044{bottom:155.250000px;}
.y1d_c00044{bottom:200.250000px;}
.y1c_c00044{bottom:245.250000px;}
.y1b_c00044{bottom:286.500000px;}
.y1a_c00044{bottom:306.000000px;}
.y19_c00044{bottom:329.250000px;}
.y16_c00044{bottom:409.500000px;}
.y15_c00044{bottom:436.500000px;}
.y14_c00044{bottom:463.500000px;}
.y13_c00044{bottom:490.500000px;}
.y12_c00044{bottom:517.500000px;}
.y11_c00044{bottom:544.500000px;}
.y10_c00044{bottom:592.500000px;}
.yf_c00044{bottom:619.500000px;}
.ye_c00044{bottom:667.500000px;}
.yd_c00044{bottom:694.500000px;}
.yc_c00044{bottom:721.500000px;}
.yb_c00044{bottom:748.500000px;}
.ya_c00044{bottom:808.500000px;}
.y9_c00044{bottom:858.000000px;}
.y8_c00044{bottom:885.000000px;}
.y7_c00044{bottom:912.000000px;}
.y6_c00044{bottom:939.000000px;}
.y5_c00044{bottom:966.000000px;}
.y4_c00044{bottom:1014.000000px;}
.y3_c00044{bottom:1041.000000px;}
.y2_c00044{bottom:1068.000000px;}
.y1_c00044{bottom:1095.000000px;}
.y17_c00044{bottom:1194.000000px;}
.h5_c00044{height:27.480470px;}
.h6_c00044{height:41.220703px;}
.h1_c00044{height:51.257812px;}
.h4_c00044{height:56.074219px;}
.h2_c00044{height:57.258075px;}
.h3_c00044{height:60.128906px;}
.h0_c00044{height:1263.000000px;}
.w0_c00044{width:892.500000px;}
.x0_c00044{left:0.000000px;}
.x1_c00044{left:150.519750px;}
.x2_c00044{left:281.790150px;}
.x3_c00044{left:810.335100px;}
@media print{
.v2_c00044{vertical-align:-20.521067pt;}
.v3_c00044{vertical-align:-13.333333pt;}
.v0_c00044{vertical-align:0.000000pt;}
.v1_c00044{vertical-align:20.521067pt;}
.ls4_c00044{letter-spacing:-0.008533pt;}
.ls5_c00044{letter-spacing:-0.006400pt;}
.ls3_c00044{letter-spacing:0.000000pt;}
.ls1_c00044{letter-spacing:0.010667pt;}
.ls0_c00044{letter-spacing:0.014933pt;}
.ls2_c00044{letter-spacing:3.581333pt;}
.ls6_c00044{letter-spacing:3.669333pt;}
.ws1_c00044{word-spacing:-17.600000pt;}
.ws3_c00044{word-spacing:-13.333333pt;}
.ws0_c00044{word-spacing:-11.724800pt;}
.ws2_c00044{word-spacing:-8.888889pt;}
.ws4_c00044{word-spacing:0.000000pt;}
._c_c00044{margin-left:-9.964800pt;}
._16_c00044{margin-left:-8.872000pt;}
._a_c00044{margin-left:-6.131200pt;}
._13_c00044{margin-left:-5.144533pt;}
._b_c00044{margin-left:-4.076800pt;}
._1_c00044{margin-left:-3.052800pt;}
._6_c00044{margin-left:-1.248000pt;}
._3_c00044{width:1.587200pt;}
._4_c00044{width:2.515200pt;}
._0_c00044{width:4.121600pt;}
._10_c00044{width:5.593600pt;}
._2_c00044{width:7.193600pt;}
._11_c00044{width:8.147200pt;}
._15_c00044{width:9.075200pt;}
._14_c00044{width:10.316800pt;}
._e_c00044{width:11.500800pt;}
._d_c00044{width:12.467200pt;}
._f_c00044{width:14.022400pt;}
._5_c00044{width:15.251200pt;}
._17_c00044{width:16.352000pt;}
._18_c00044{width:18.548800pt;}
._9_c00044{width:19.692800pt;}
._7_c00044{width:20.601600pt;}
._8_c00044{width:22.412800pt;}
._12_c00044{width:24.300800pt;}
.fs4_c00044{font-size:35.555557pt;}
.fs1_c00044{font-size:42.666667pt;}
.fs3_c00044{font-size:53.333333pt;}
.fs0_c00044{font-size:64.000000pt;}
.fs2_c00044{font-size:74.666667pt;}
.y0_c00044{bottom:0.000000pt;}
.y18_c00044{bottom:60.000000pt;}
.y1f_c00044{bottom:117.333333pt;}
.y1e_c00044{bottom:138.000000pt;}
.y1d_c00044{bottom:178.000000pt;}
.y1c_c00044{bottom:218.000000pt;}
.y1b_c00044{bottom:254.666667pt;}
.y1a_c00044{bottom:272.000000pt;}
.y19_c00044{bottom:292.666667pt;}
.y16_c00044{bottom:364.000000pt;}
.y15_c00044{bottom:388.000000pt;}
.y14_c00044{bottom:412.000000pt;}
.y13_c00044{bottom:436.000000pt;}
.y12_c00044{bottom:460.000000pt;}
.y11_c00044{bottom:484.000000pt;}
.y10_c00044{bottom:526.666667pt;}
.yf_c00044{bottom:550.666667pt;}
.ye_c00044{bottom:593.333333pt;}
.yd_c00044{bottom:617.333333pt;}
.yc_c00044{bottom:641.333333pt;}
.yb_c00044{bottom:665.333333pt;}
.ya_c00044{bottom:718.666667pt;}
.y9_c00044{bottom:762.666667pt;}
.y8_c00044{bottom:786.666667pt;}
.y7_c00044{bottom:810.666667pt;}
.y6_c00044{bottom:834.666667pt;}
.y5_c00044{bottom:858.666667pt;}
.y4_c00044{bottom:901.333333pt;}
.y3_c00044{bottom:925.333333pt;}
.y2_c00044{bottom:949.333333pt;}
.y1_c00044{bottom:973.333333pt;}
.y17_c00044{bottom:1061.333333pt;}
.h5_c00044{height:24.427085pt;}
.h6_c00044{height:36.640625pt;}
.h1_c00044{height:45.562500pt;}
.h4_c00044{height:49.843750pt;}
.h2_c00044{height:50.896067pt;}
.h3_c00044{height:53.447917pt;}
.h0_c00044{height:1122.666667pt;}
.w0_c00044{width:793.333333pt;}
.x0_c00044{left:0.000000pt;}
.x1_c00044{left:133.795333pt;}
.x2_c00044{left:250.480133pt;}
.x3_c00044{left:720.297867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3647fff4f88a87b0fb02aec7.woff2')format("woff");}.ff1_c00045{font-family:ff1_c00045;line-height:0.882812;font-style:normal;font-weight:normal;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_fe9c14fe87c0da5d812e8d5f.woff2')format("woff");}.ff2_c00045{font-family:ff2_c00045;line-height:0.934082;font-style:normal;font-weight:normal;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_7c090dd4667375388d37d096.woff2')format("woff");}.ff3_c00045{font-family:ff3_c00045;line-height:0.755859;font-style:normal;font-weight:normal;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_34707e77f62930f6482d44fa.woff2')format("woff");}.ff4_c00045{font-family:ff4_c00045;line-height:1.155762;font-style:normal;font-weight:normal;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_3e3844087f297227b6bf883e.woff2')format("woff");}.ff5_c00045{font-family:ff5_c00045;line-height:1.101562;font-style:normal;font-weight: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_c00045;src:url('chunks/assets/font_d7c48430fa94f4e189742d37.woff2')format("woff");}.ff6_c00045{font-family:ff6_c00045;line-height:0.890137;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00045{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00045{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00045{vertical-align:-23.086200px;}
.v3_c00045{vertical-align:-15.000000px;}
.v0_c00045{vertical-align:0.000000px;}
.v1_c00045{vertical-align:23.086200px;}
.ls2_c00045{letter-spacing:-0.009600px;}
.ls1_c00045{letter-spacing:0.000000px;}
.ls0_c00045{letter-spacing:0.007800px;}
.ls3_c00045{letter-spacing:0.012000px;}
.sc__c00045{text-shadow:none;}
.sc0_c00045{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00045{-webkit-text-stroke:0px transparent;}
.sc0_c00045{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00045{word-spacing:-13.190400px;}
.ws2_c00045{word-spacing:-10.000001px;}
.ws1_c00045{word-spacing:-2.000002px;}
.ws4_c00045{word-spacing:0.000000px;}
.ws3_c00045{word-spacing:3.999998px;}
._b_c00045{margin-left:-10.594800px;}
._c_c00045{margin-left:-6.132000px;}
._d_c00045{margin-left:-4.978800px;}
._5_c00045{margin-left:-3.448800px;}
._2_c00045{margin-left:-2.203200px;}
._a_c00045{margin-left:-1.141200px;}
._0_c00045{width:1.482000px;}
._4_c00045{width:3.234000px;}
._1_c00045{width:4.687200px;}
._17_c00045{width:5.892000px;}
._3_c00045{width:6.897600px;}
._6_c00045{width:8.186400px;}
._f_c00045{width:9.253200px;}
._10_c00045{width:10.554000px;}
._e_c00045{width:11.851200px;}
._11_c00045{width:14.182800px;}
._13_c00045{width:16.248000px;}
._7_c00045{width:17.286000px;}
._12_c00045{width:19.773600px;}
._14_c00045{width:20.853600px;}
._9_c00045{width:21.981600px;}
._8_c00045{width:23.115600px;}
._16_c00045{width:24.400800px;}
._15_c00045{width:26.107200px;}
.fc0_c00045{color:rgb(0,0,0);}
.fs4_c00045{font-size:40.000002px;}
.fs2_c00045{font-size:48.000000px;}
.fs3_c00045{font-size:60.000000px;}
.fs1_c00045{font-size:72.000000px;}
.fs0_c00045{font-size:78.000000px;}
.y0_c00045{bottom:0.000000px;}
.y16_c00045{bottom:67.500000px;}
.y1e_c00045{bottom:132.000000px;}
.y1d_c00045{bottom:151.500000px;}
.y1c_c00045{bottom:174.750000px;}
.y1b_c00045{bottom:219.750000px;}
.y1a_c00045{bottom:264.750000px;}
.y19_c00045{bottom:306.000000px;}
.y18_c00045{bottom:325.500000px;}
.y17_c00045{bottom:348.750000px;}
.y14_c00045{bottom:456.000000px;}
.y13_c00045{bottom:483.000000px;}
.y12_c00045{bottom:510.000000px;}
.y11_c00045{bottom:558.000000px;}
.y10_c00045{bottom:585.000000px;}
.yf_c00045{bottom:612.000000px;}
.ye_c00045{bottom:639.000000px;}
.yd_c00045{bottom:687.000000px;}
.yc_c00045{bottom:714.000000px;}
.yb_c00045{bottom:762.000000px;}
.ya_c00045{bottom:789.000000px;}
.y9_c00045{bottom:837.000000px;}
.y8_c00045{bottom:864.000000px;}
.y7_c00045{bottom:891.000000px;}
.y6_c00045{bottom:918.000000px;}
.y5_c00045{bottom:966.000000px;}
.y4_c00045{bottom:993.000000px;}
.y3_c00045{bottom:1020.000000px;}
.y2_c00045{bottom:1047.000000px;}
.y1_c00045{bottom:1093.500000px;}
.y15_c00045{bottom:1194.000000px;}
.h6_c00045{height:37.968750px;}
.h5_c00045{height:44.208984px;}
.h2_c00045{height:51.257812px;}
.h7_c00045{height:52.968750px;}
.h1_c00045{height:55.072266px;}
.h4_c00045{height:56.074219px;}
.h3_c00045{height:57.258075px;}
.h0_c00045{height:1263.000000px;}
.w0_c00045{width:892.500000px;}
.x0_c00045{left:0.000000px;}
.x1_c00045{left:65.480310px;}
@media print{
.v2_c00045{vertical-align:-20.521067pt;}
.v3_c00045{vertical-align:-13.333333pt;}
.v0_c00045{vertical-align:0.000000pt;}
.v1_c00045{vertical-align:20.521067pt;}
.ls2_c00045{letter-spacing:-0.008533pt;}
.ls1_c00045{letter-spacing:0.000000pt;}
.ls0_c00045{letter-spacing:0.006933pt;}
.ls3_c00045{letter-spacing:0.010667pt;}
.ws0_c00045{word-spacing:-11.724800pt;}
.ws2_c00045{word-spacing:-8.888889pt;}
.ws1_c00045{word-spacing:-1.777780pt;}
.ws4_c00045{word-spacing:0.000000pt;}
.ws3_c00045{word-spacing:3.555553pt;}
._b_c00045{margin-left:-9.417600pt;}
._c_c00045{margin-left:-5.450667pt;}
._d_c00045{margin-left:-4.425600pt;}
._5_c00045{margin-left:-3.065600pt;}
._2_c00045{margin-left:-1.958400pt;}
._a_c00045{margin-left:-1.014400pt;}
._0_c00045{width:1.317333pt;}
._4_c00045{width:2.874667pt;}
._1_c00045{width:4.166400pt;}
._17_c00045{width:5.237333pt;}
._3_c00045{width:6.131200pt;}
._6_c00045{width:7.276800pt;}
._f_c00045{width:8.225067pt;}
._10_c00045{width:9.381333pt;}
._e_c00045{width:10.534400pt;}
._11_c00045{width:12.606933pt;}
._13_c00045{width:14.442667pt;}
._7_c00045{width:15.365333pt;}
._12_c00045{width:17.576533pt;}
._14_c00045{width:18.536533pt;}
._9_c00045{width:19.539200pt;}
._8_c00045{width:20.547200pt;}
._16_c00045{width:21.689600pt;}
._15_c00045{width:23.206400pt;}
.fs4_c00045{font-size:35.555557pt;}
.fs2_c00045{font-size:42.666667pt;}
.fs3_c00045{font-size:53.333333pt;}
.fs1_c00045{font-size:64.000000pt;}
.fs0_c00045{font-size:69.333333pt;}
.y0_c00045{bottom:0.000000pt;}
.y16_c00045{bottom:60.000000pt;}
.y1e_c00045{bottom:117.333333pt;}
.y1d_c00045{bottom:134.666667pt;}
.y1c_c00045{bottom:155.333333pt;}
.y1b_c00045{bottom:195.333333pt;}
.y1a_c00045{bottom:235.333333pt;}
.y19_c00045{bottom:272.000000pt;}
.y18_c00045{bottom:289.333333pt;}
.y17_c00045{bottom:310.000000pt;}
.y14_c00045{bottom:405.333333pt;}
.y13_c00045{bottom:429.333333pt;}
.y12_c00045{bottom:453.333333pt;}
.y11_c00045{bottom:496.000000pt;}
.y10_c00045{bottom:520.000000pt;}
.yf_c00045{bottom:544.000000pt;}
.ye_c00045{bottom:568.000000pt;}
.yd_c00045{bottom:610.666667pt;}
.yc_c00045{bottom:634.666667pt;}
.yb_c00045{bottom:677.333333pt;}
.ya_c00045{bottom:701.333333pt;}
.y9_c00045{bottom:744.000000pt;}
.y8_c00045{bottom:768.000000pt;}
.y7_c00045{bottom:792.000000pt;}
.y6_c00045{bottom:816.000000pt;}
.y5_c00045{bottom:858.666667pt;}
.y4_c00045{bottom:882.666667pt;}
.y3_c00045{bottom:906.666667pt;}
.y2_c00045{bottom:930.666667pt;}
.y1_c00045{bottom:972.000000pt;}
.y15_c00045{bottom:1061.333333pt;}
.h6_c00045{height:33.750000pt;}
.h5_c00045{height:39.296875pt;}
.h2_c00045{height:45.562500pt;}
.h7_c00045{height:47.083333pt;}
.h1_c00045{height:48.953125pt;}
.h4_c00045{height:49.843750pt;}
.h3_c00045{height:50.896067pt;}
.h0_c00045{height:1122.666667pt;}
.w0_c00045{width:793.333333pt;}
.x0_c00045{left:0.000000pt;}
.x1_c00045{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_74f6e5fc18c3223a4b5329be.woff2')format("woff");}.ff1_c00046{font-family:ff1_c00046;line-height:1.150879;font-style:normal;font-weight:normal;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_2b3ff02324d496ce2abd1002.woff2')format("woff");}.ff2_c00046{font-family:ff2_c00046;line-height:0.934082;font-style:normal;font-weight:normal;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_6ff2ca4f115b8b01fe4a8507.woff2')format("woff");}.ff3_c00046{font-family:ff3_c00046;line-height:1.155762;font-style:normal;font-weight:normal;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_7f58a354de6e34f4203b869f.woff2')format("woff");}.ff4_c00046{font-family:ff4_c00046;line-height:1.100586;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00046;src:url('chunks/assets/font_d8fdf04224397e370cd772b9.woff2')format("woff");}.ff5_c00046{font-family:ff5_c00046;line-height:0.812500;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00046{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00046{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00046{vertical-align:-15.000000px;}
.v0_c00046{vertical-align:0.000000px;}
.v1_c00046{vertical-align:23.086200px;}
.ls2_c00046{letter-spacing:-0.009600px;}
.ls1_c00046{letter-spacing:0.000000px;}
.ls0_c00046{letter-spacing:0.012000px;}
.sc__c00046{text-shadow:none;}
.sc0_c00046{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00046{-webkit-text-stroke:0px transparent;}
.sc0_c00046{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00046{word-spacing:-13.190400px;}
.ws1_c00046{word-spacing:-10.000001px;}
.ws3_c00046{word-spacing:0.000000px;}
.ws2_c00046{word-spacing:3.999998px;}
._f_c00046{margin-left:-11.096400px;}
._12_c00046{margin-left:-9.691200px;}
._14_c00046{margin-left:-7.458000px;}
._5_c00046{margin-left:-4.680000px;}
._b_c00046{margin-left:-3.376800px;}
._0_c00046{margin-left:-1.756800px;}
._6_c00046{width:1.591200px;}
._a_c00046{width:2.664000px;}
._3_c00046{width:3.686400px;}
._8_c00046{width:4.867200px;}
._11_c00046{width:7.171200px;}
._10_c00046{width:9.417600px;}
._9_c00046{width:10.872000px;}
._4_c00046{width:12.045600px;}
._7_c00046{width:14.162400px;}
._2_c00046{width:15.753600px;}
._1_c00046{width:17.488800px;}
._e_c00046{width:18.511200px;}
._13_c00046{width:19.614000px;}
._c_c00046{width:21.729600px;}
._d_c00046{width:23.292000px;}
._16_c00046{width:24.328800px;}
._15_c00046{width:25.848000px;}
.fc0_c00046{color:rgb(0,0,0);}
.fs4_c00046{font-size:40.000002px;}
.fs2_c00046{font-size:48.000000px;}
.fs0_c00046{font-size:54.000000px;}
.fs3_c00046{font-size:60.000000px;}
.fs1_c00046{font-size:72.000000px;}
.y0_c00046{bottom:0.000000px;}
.y4_c00046{bottom:10.500000px;}
.y3_c00046{bottom:30.000000px;}
.y2_c00046{bottom:52.500000px;}
.yc_c00046{bottom:67.500000px;}
.yf_c00046{bottom:132.000000px;}
.ye_c00046{bottom:155.250000px;}
.yd_c00046{bottom:200.250000px;}
.ya_c00046{bottom:270.000000px;}
.y9_c00046{bottom:297.000000px;}
.y8_c00046{bottom:324.000000px;}
.y7_c00046{bottom:351.000000px;}
.y6_c00046{bottom:378.000000px;}
.y5_c00046{bottom:405.000000px;}
.y1_c00046{bottom:450.000000px;}
.yb_c00046{bottom:1194.000000px;}
.h6_c00046{height:37.968750px;}
.h2_c00046{height:50.756836px;}
.h3_c00046{height:51.257812px;}
.h7_c00046{height:52.968750px;}
.h5_c00046{height:56.074219px;}
.h4_c00046{height:57.258075px;}
.h1_c00046{height:663.000000px;}
.h0_c00046{height:1263.000000px;}
.w1_c00046{width:676.499850px;}
.w0_c00046{width:892.500000px;}
.x0_c00046{left:0.000000px;}
.x2_c00046{left:29.226510px;}
.x3_c00046{left:30.788775px;}
.x1_c00046{left:150.000000px;}
.x4_c00046{left:176.991600px;}
.x5_c00046{left:281.790150px;}
.x6_c00046{left:810.335100px;}
@media print{
.v2_c00046{vertical-align:-13.333333pt;}
.v0_c00046{vertical-align:0.000000pt;}
.v1_c00046{vertical-align:20.521067pt;}
.ls2_c00046{letter-spacing:-0.008533pt;}
.ls1_c00046{letter-spacing:0.000000pt;}
.ls0_c00046{letter-spacing:0.010667pt;}
.ws0_c00046{word-spacing:-11.724800pt;}
.ws1_c00046{word-spacing:-8.888889pt;}
.ws3_c00046{word-spacing:0.000000pt;}
.ws2_c00046{word-spacing:3.555553pt;}
._f_c00046{margin-left:-9.863467pt;}
._12_c00046{margin-left:-8.614400pt;}
._14_c00046{margin-left:-6.629333pt;}
._5_c00046{margin-left:-4.160000pt;}
._b_c00046{margin-left:-3.001600pt;}
._0_c00046{margin-left:-1.561600pt;}
._6_c00046{width:1.414400pt;}
._a_c00046{width:2.368000pt;}
._3_c00046{width:3.276800pt;}
._8_c00046{width:4.326400pt;}
._11_c00046{width:6.374400pt;}
._10_c00046{width:8.371200pt;}
._9_c00046{width:9.664000pt;}
._4_c00046{width:10.707200pt;}
._7_c00046{width:12.588800pt;}
._2_c00046{width:14.003200pt;}
._1_c00046{width:15.545600pt;}
._e_c00046{width:16.454400pt;}
._13_c00046{width:17.434667pt;}
._c_c00046{width:19.315200pt;}
._d_c00046{width:20.704000pt;}
._16_c00046{width:21.625600pt;}
._15_c00046{width:22.976000pt;}
.fs4_c00046{font-size:35.555557pt;}
.fs2_c00046{font-size:42.666667pt;}
.fs0_c00046{font-size:48.000000pt;}
.fs3_c00046{font-size:53.333333pt;}
.fs1_c00046{font-size:64.000000pt;}
.y0_c00046{bottom:0.000000pt;}
.y4_c00046{bottom:9.333333pt;}
.y3_c00046{bottom:26.666667pt;}
.y2_c00046{bottom:46.666667pt;}
.yc_c00046{bottom:60.000000pt;}
.yf_c00046{bottom:117.333333pt;}
.ye_c00046{bottom:138.000000pt;}
.yd_c00046{bottom:178.000000pt;}
.ya_c00046{bottom:240.000000pt;}
.y9_c00046{bottom:264.000000pt;}
.y8_c00046{bottom:288.000000pt;}
.y7_c00046{bottom:312.000000pt;}
.y6_c00046{bottom:336.000000pt;}
.y5_c00046{bottom:360.000000pt;}
.y1_c00046{bottom:400.000000pt;}
.yb_c00046{bottom:1061.333333pt;}
.h6_c00046{height:33.750000pt;}
.h2_c00046{height:45.117188pt;}
.h3_c00046{height:45.562500pt;}
.h7_c00046{height:47.083333pt;}
.h5_c00046{height:49.843750pt;}
.h4_c00046{height:50.896067pt;}
.h1_c00046{height:589.333333pt;}
.h0_c00046{height:1122.666667pt;}
.w1_c00046{width:601.333200pt;}
.w0_c00046{width:793.333333pt;}
.x0_c00046{left:0.000000pt;}
.x2_c00046{left:25.979120pt;}
.x3_c00046{left:27.367800pt;}
.x1_c00046{left:133.333333pt;}
.x4_c00046{left:157.325867pt;}
.x5_c00046{left:250.480133pt;}
.x6_c00046{left:720.297867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_85783836bcffc8fed45f3e80.woff2')format("woff");}.ff1_c00047{font-family:ff1_c00047;line-height:0.934082;font-style:normal;font-weight:normal;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_a28be0ad7a68c0b0118bd29c.woff2')format("woff");}.ff2_c00047{font-family:ff2_c00047;line-height:0.755859;font-style:normal;font-weight:normal;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_276ed21db6872d30348ea46e.woff2')format("woff");}.ff3_c00047{font-family:ff3_c00047;line-height:1.155762;font-style:normal;font-weight:normal;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_69ebb00a1f403b7cf27091df.woff2')format("woff");}.ff4_c00047{font-family:ff4_c00047;line-height:0.905762;font-style:normal;font-weight:normal;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_d4f846bb97e395a72f23df61.woff2')format("woff");}.ff5_c00047{font-family:ff5_c00047;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00047{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00047{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00047{vertical-align:-23.086200px;}
.v3_c00047{vertical-align:-15.000000px;}
.v0_c00047{vertical-align:0.000000px;}
.v1_c00047{vertical-align:23.086200px;}
.ls3_c00047{letter-spacing:-0.009600px;}
.ls2_c00047{letter-spacing:0.000000px;}
.ls1_c00047{letter-spacing:0.007200px;}
.ls4_c00047{letter-spacing:0.012000px;}
.ls0_c00047{letter-spacing:0.273600px;}
.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;}
}
.ws1_c00047{word-spacing:-19.807200px;}
.ws2_c00047{word-spacing:-19.800000px;}
.ws4_c00047{word-spacing:-15.000000px;}
.ws0_c00047{word-spacing:-13.190400px;}
.ws3_c00047{word-spacing:-10.000001px;}
.ws5_c00047{word-spacing:0.000000px;}
._6_c00047{margin-left:-10.627200px;}
._d_c00047{margin-left:-7.279200px;}
._8_c00047{margin-left:-4.399200px;}
._18_c00047{margin-left:-3.324960px;}
._2_c00047{margin-left:-2.260800px;}
._1_c00047{margin-left:-1.252800px;}
._5_c00047{width:1.094400px;}
._7_c00047{width:2.139840px;}
._4_c00047{width:3.512160px;}
._0_c00047{width:5.356800px;}
._e_c00047{width:6.475680px;}
._3_c00047{width:7.603200px;}
._9_c00047{width:9.496800px;}
._a_c00047{width:10.807200px;}
._c_c00047{width:12.636000px;}
._b_c00047{width:15.120000px;}
._15_c00047{width:16.601760px;}
._17_c00047{width:17.661600px;}
._14_c00047{width:18.756000px;}
._16_c00047{width:21.284640px;}
._1a_c00047{width:22.996800px;}
._19_c00047{width:24.772320px;}
._1c_c00047{width:26.314560px;}
._1b_c00047{width:27.381600px;}
._13_c00047{width:33.356160px;}
._11_c00047{width:34.473600px;}
._10_c00047{width:35.712000px;}
._f_c00047{width:37.756800px;}
._12_c00047{width:39.751200px;}
.fc0_c00047{color:rgb(0,0,0);}
.fs3_c00047{font-size:40.000002px;}
.fs1_c00047{font-size:48.000000px;}
.fs2_c00047{font-size:60.000000px;}
.fs0_c00047{font-size:72.000000px;}
.y0_c00047{bottom:0.000000px;}
.y17_c00047{bottom:67.500000px;}
.y1f_c00047{bottom:132.000000px;}
.y1e_c00047{bottom:151.500000px;}
.y1d_c00047{bottom:174.750000px;}
.y1c_c00047{bottom:216.000000px;}
.y1b_c00047{bottom:239.250000px;}
.y1a_c00047{bottom:284.250000px;}
.y19_c00047{bottom:329.250000px;}
.y18_c00047{bottom:374.250000px;}
.y15_c00047{bottom:450.000000px;}
.y14_c00047{bottom:477.000000px;}
.y13_c00047{bottom:504.000000px;}
.y12_c00047{bottom:552.000000px;}
.y11_c00047{bottom:579.000000px;}
.y10_c00047{bottom:606.000000px;}
.yf_c00047{bottom:654.000000px;}
.ye_c00047{bottom:681.000000px;}
.yd_c00047{bottom:708.000000px;}
.yc_c00047{bottom:735.000000px;}
.yb_c00047{bottom:783.000000px;}
.ya_c00047{bottom:810.000000px;}
.y9_c00047{bottom:837.000000px;}
.y8_c00047{bottom:885.000000px;}
.y7_c00047{bottom:912.000000px;}
.y6_c00047{bottom:939.000000px;}
.y5_c00047{bottom:966.000000px;}
.y4_c00047{bottom:993.000000px;}
.y3_c00047{bottom:1020.000000px;}
.y2_c00047{bottom:1068.000000px;}
.y1_c00047{bottom:1095.000000px;}
.y16_c00047{bottom:1194.000000px;}
.h5_c00047{height:27.480470px;}
.h6_c00047{height:41.220703px;}
.h4_c00047{height:44.208984px;}
.h2_c00047{height:51.257812px;}
.h3_c00047{height:56.074219px;}
.h1_c00047{height:57.258075px;}
.h0_c00047{height:1263.000000px;}
.w0_c00047{width:892.500000px;}
.x0_c00047{left:0.000000px;}
.x1_c00047{left:65.480310px;}
@media print{
.v2_c00047{vertical-align:-20.521067pt;}
.v3_c00047{vertical-align:-13.333333pt;}
.v0_c00047{vertical-align:0.000000pt;}
.v1_c00047{vertical-align:20.521067pt;}
.ls3_c00047{letter-spacing:-0.008533pt;}
.ls2_c00047{letter-spacing:0.000000pt;}
.ls1_c00047{letter-spacing:0.006400pt;}
.ls4_c00047{letter-spacing:0.010667pt;}
.ls0_c00047{letter-spacing:0.243200pt;}
.ws1_c00047{word-spacing:-17.606400pt;}
.ws2_c00047{word-spacing:-17.600000pt;}
.ws4_c00047{word-spacing:-13.333333pt;}
.ws0_c00047{word-spacing:-11.724800pt;}
.ws3_c00047{word-spacing:-8.888889pt;}
.ws5_c00047{word-spacing:0.000000pt;}
._6_c00047{margin-left:-9.446400pt;}
._d_c00047{margin-left:-6.470400pt;}
._8_c00047{margin-left:-3.910400pt;}
._18_c00047{margin-left:-2.955520pt;}
._2_c00047{margin-left:-2.009600pt;}
._1_c00047{margin-left:-1.113600pt;}
._5_c00047{width:0.972800pt;}
._7_c00047{width:1.902080pt;}
._4_c00047{width:3.121920pt;}
._0_c00047{width:4.761600pt;}
._e_c00047{width:5.756160pt;}
._3_c00047{width:6.758400pt;}
._9_c00047{width:8.441600pt;}
._a_c00047{width:9.606400pt;}
._c_c00047{width:11.232000pt;}
._b_c00047{width:13.440000pt;}
._15_c00047{width:14.757120pt;}
._17_c00047{width:15.699200pt;}
._14_c00047{width:16.672000pt;}
._16_c00047{width:18.919680pt;}
._1a_c00047{width:20.441600pt;}
._19_c00047{width:22.019840pt;}
._1c_c00047{width:23.390720pt;}
._1b_c00047{width:24.339200pt;}
._13_c00047{width:29.649920pt;}
._11_c00047{width:30.643200pt;}
._10_c00047{width:31.744000pt;}
._f_c00047{width:33.561600pt;}
._12_c00047{width:35.334400pt;}
.fs3_c00047{font-size:35.555557pt;}
.fs1_c00047{font-size:42.666667pt;}
.fs2_c00047{font-size:53.333333pt;}
.fs0_c00047{font-size:64.000000pt;}
.y0_c00047{bottom:0.000000pt;}
.y17_c00047{bottom:60.000000pt;}
.y1f_c00047{bottom:117.333333pt;}
.y1e_c00047{bottom:134.666667pt;}
.y1d_c00047{bottom:155.333333pt;}
.y1c_c00047{bottom:192.000000pt;}
.y1b_c00047{bottom:212.666667pt;}
.y1a_c00047{bottom:252.666667pt;}
.y19_c00047{bottom:292.666667pt;}
.y18_c00047{bottom:332.666667pt;}
.y15_c00047{bottom:400.000000pt;}
.y14_c00047{bottom:424.000000pt;}
.y13_c00047{bottom:448.000000pt;}
.y12_c00047{bottom:490.666667pt;}
.y11_c00047{bottom:514.666667pt;}
.y10_c00047{bottom:538.666667pt;}
.yf_c00047{bottom:581.333333pt;}
.ye_c00047{bottom:605.333333pt;}
.yd_c00047{bottom:629.333333pt;}
.yc_c00047{bottom:653.333333pt;}
.yb_c00047{bottom:696.000000pt;}
.ya_c00047{bottom:720.000000pt;}
.y9_c00047{bottom:744.000000pt;}
.y8_c00047{bottom:786.666667pt;}
.y7_c00047{bottom:810.666667pt;}
.y6_c00047{bottom:834.666667pt;}
.y5_c00047{bottom:858.666667pt;}
.y4_c00047{bottom:882.666667pt;}
.y3_c00047{bottom:906.666667pt;}
.y2_c00047{bottom:949.333333pt;}
.y1_c00047{bottom:973.333333pt;}
.y16_c00047{bottom:1061.333333pt;}
.h5_c00047{height:24.427085pt;}
.h6_c00047{height:36.640625pt;}
.h4_c00047{height:39.296875pt;}
.h2_c00047{height:45.562500pt;}
.h3_c00047{height:49.843750pt;}
.h1_c00047{height:50.896067pt;}
.h0_c00047{height:1122.666667pt;}
.w0_c00047{width:793.333333pt;}
.x0_c00047{left:0.000000pt;}
.x1_c00047{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b63115c8f5832a5e604870f5.woff2')format("woff");}.ff1_c00048{font-family:ff1_c00048;line-height:0.934082;font-style:normal;font-weight:normal;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_8b4c5b4c0c2fd96e5267ba42.woff2')format("woff");}.ff2_c00048{font-family:ff2_c00048;line-height:0.882812;font-style:normal;font-weight:normal;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_d35bfd3a624d8dd011c37f8f.woff2')format("woff");}.ff3_c00048{font-family:ff3_c00048;line-height:1.155762;font-style:normal;font-weight:normal;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_18da8828472d5be08aef265c.woff2')format("woff");}.ff4_c00048{font-family:ff4_c00048;line-height:0.905762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00048;src:url('chunks/assets/font_2ecae637c26959403e018bb7.woff2')format("woff");}.ff5_c00048{font-family:ff5_c00048;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00048{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00048{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00048{vertical-align:-23.086200px;}
.v3_c00048{vertical-align:-15.000000px;}
.v0_c00048{vertical-align:0.000000px;}
.v1_c00048{vertical-align:23.086200px;}
.ls6_c00048{letter-spacing:-4.938000px;}
.ls5_c00048{letter-spacing:-4.764000px;}
.ls9_c00048{letter-spacing:-4.392000px;}
.ls7_c00048{letter-spacing:-3.570000px;}
.ls8_c00048{letter-spacing:-2.412000px;}
.ls3_c00048{letter-spacing:-0.009600px;}
.ls2_c00048{letter-spacing:0.000000px;}
.ls0_c00048{letter-spacing:0.007800px;}
.ls1_c00048{letter-spacing:0.012000px;}
.ls4_c00048{letter-spacing:1.650000px;}
.sc__c00048{text-shadow:none;}
.sc0_c00048{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00048{-webkit-text-stroke:0px transparent;}
.sc0_c00048{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00048{word-spacing:-13.190400px;}
.ws1_c00048{word-spacing:-10.000001px;}
.ws2_c00048{word-spacing:0.000000px;}
._18_c00048{margin-left:-6.843600px;}
._19_c00048{margin-left:-5.817600px;}
._9_c00048{margin-left:-4.456800px;}
._6_c00048{margin-left:-3.009600px;}
._3_c00048{margin-left:-1.281600px;}
._5_c00048{width:1.152000px;}
._0_c00048{width:2.210400px;}
._1_c00048{width:3.369600px;}
._2_c00048{width:4.420800px;}
._4_c00048{width:5.623200px;}
._8_c00048{width:7.178400px;}
._7_c00048{width:8.416800px;}
._a_c00048{width:9.921600px;}
._b_c00048{width:11.311200px;}
._17_c00048{width:12.555600px;}
._14_c00048{width:14.097600px;}
._12_c00048{width:15.148800px;}
._13_c00048{width:16.315200px;}
._15_c00048{width:17.344800px;}
._10_c00048{width:18.619200px;}
._11_c00048{width:21.823200px;}
._16_c00048{width:24.264000px;}
._d_c00048{width:25.466400px;}
._c_c00048{width:26.632800px;}
._e_c00048{width:29.628000px;}
._f_c00048{width:31.089600px;}
.fc0_c00048{color:rgb(0,0,0);}
.fs4_c00048{font-size:40.000002px;}
.fs1_c00048{font-size:48.000000px;}
.fs3_c00048{font-size:60.000000px;}
.fs0_c00048{font-size:72.000000px;}
.fs2_c00048{font-size:78.000000px;}
.y0_c00048{bottom:0.000000px;}
.y15_c00048{bottom:67.500000px;}
.y21_c00048{bottom:132.000000px;}
.y20_c00048{bottom:155.250000px;}
.y1f_c00048{bottom:196.500000px;}
.y1e_c00048{bottom:216.000000px;}
.y1d_c00048{bottom:239.250000px;}
.y1c_c00048{bottom:280.500000px;}
.y1b_c00048{bottom:300.000000px;}
.y1a_c00048{bottom:319.500000px;}
.y19_c00048{bottom:339.000000px;}
.y18_c00048{bottom:358.500000px;}
.y17_c00048{bottom:378.000000px;}
.y16_c00048{bottom:401.250000px;}
.y13_c00048{bottom:453.000000px;}
.y12_c00048{bottom:480.000000px;}
.y11_c00048{bottom:507.000000px;}
.y10_c00048{bottom:555.000000px;}
.yf_c00048{bottom:582.000000px;}
.ye_c00048{bottom:609.000000px;}
.yd_c00048{bottom:636.000000px;}
.yc_c00048{bottom:684.000000px;}
.yb_c00048{bottom:711.000000px;}
.ya_c00048{bottom:738.000000px;}
.y9_c00048{bottom:765.000000px;}
.y8_c00048{bottom:813.000000px;}
.y7_c00048{bottom:840.000000px;}
.y6_c00048{bottom:886.500000px;}
.y5_c00048{bottom:952.500000px;}
.y4_c00048{bottom:975.000000px;}
.y3_c00048{bottom:1020.000000px;}
.y2_c00048{bottom:1068.000000px;}
.y1_c00048{bottom:1095.000000px;}
.y14_c00048{bottom:1194.000000px;}
.h5_c00048{height:27.480470px;}
.h6_c00048{height:41.220703px;}
.h1_c00048{height:51.257812px;}
.h3_c00048{height:55.072266px;}
.h4_c00048{height:56.074219px;}
.h2_c00048{height:57.258075px;}
.h0_c00048{height:1263.000000px;}
.w0_c00048{width:892.500000px;}
.x0_c00048{left:0.000000px;}
.x1_c00048{left:150.519750px;}
.x2_c00048{left:281.790150px;}
.x3_c00048{left:810.335100px;}
@media print{
.v2_c00048{vertical-align:-20.521067pt;}
.v3_c00048{vertical-align:-13.333333pt;}
.v0_c00048{vertical-align:0.000000pt;}
.v1_c00048{vertical-align:20.521067pt;}
.ls6_c00048{letter-spacing:-4.389333pt;}
.ls5_c00048{letter-spacing:-4.234667pt;}
.ls9_c00048{letter-spacing:-3.904000pt;}
.ls7_c00048{letter-spacing:-3.173333pt;}
.ls8_c00048{letter-spacing:-2.144000pt;}
.ls3_c00048{letter-spacing:-0.008533pt;}
.ls2_c00048{letter-spacing:0.000000pt;}
.ls0_c00048{letter-spacing:0.006933pt;}
.ls1_c00048{letter-spacing:0.010667pt;}
.ls4_c00048{letter-spacing:1.466667pt;}
.ws0_c00048{word-spacing:-11.724800pt;}
.ws1_c00048{word-spacing:-8.888889pt;}
.ws2_c00048{word-spacing:0.000000pt;}
._18_c00048{margin-left:-6.083200pt;}
._19_c00048{margin-left:-5.171200pt;}
._9_c00048{margin-left:-3.961600pt;}
._6_c00048{margin-left:-2.675200pt;}
._3_c00048{margin-left:-1.139200pt;}
._5_c00048{width:1.024000pt;}
._0_c00048{width:1.964800pt;}
._1_c00048{width:2.995200pt;}
._2_c00048{width:3.929600pt;}
._4_c00048{width:4.998400pt;}
._8_c00048{width:6.380800pt;}
._7_c00048{width:7.481600pt;}
._a_c00048{width:8.819200pt;}
._b_c00048{width:10.054400pt;}
._17_c00048{width:11.160533pt;}
._14_c00048{width:12.531200pt;}
._12_c00048{width:13.465600pt;}
._13_c00048{width:14.502400pt;}
._15_c00048{width:15.417600pt;}
._10_c00048{width:16.550400pt;}
._11_c00048{width:19.398400pt;}
._16_c00048{width:21.568000pt;}
._d_c00048{width:22.636800pt;}
._c_c00048{width:23.673600pt;}
._e_c00048{width:26.336000pt;}
._f_c00048{width:27.635200pt;}
.fs4_c00048{font-size:35.555557pt;}
.fs1_c00048{font-size:42.666667pt;}
.fs3_c00048{font-size:53.333333pt;}
.fs0_c00048{font-size:64.000000pt;}
.fs2_c00048{font-size:69.333333pt;}
.y0_c00048{bottom:0.000000pt;}
.y15_c00048{bottom:60.000000pt;}
.y21_c00048{bottom:117.333333pt;}
.y20_c00048{bottom:138.000000pt;}
.y1f_c00048{bottom:174.666667pt;}
.y1e_c00048{bottom:192.000000pt;}
.y1d_c00048{bottom:212.666667pt;}
.y1c_c00048{bottom:249.333333pt;}
.y1b_c00048{bottom:266.666667pt;}
.y1a_c00048{bottom:284.000000pt;}
.y19_c00048{bottom:301.333333pt;}
.y18_c00048{bottom:318.666667pt;}
.y17_c00048{bottom:336.000000pt;}
.y16_c00048{bottom:356.666667pt;}
.y13_c00048{bottom:402.666667pt;}
.y12_c00048{bottom:426.666667pt;}
.y11_c00048{bottom:450.666667pt;}
.y10_c00048{bottom:493.333333pt;}
.yf_c00048{bottom:517.333333pt;}
.ye_c00048{bottom:541.333333pt;}
.yd_c00048{bottom:565.333333pt;}
.yc_c00048{bottom:608.000000pt;}
.yb_c00048{bottom:632.000000pt;}
.ya_c00048{bottom:656.000000pt;}
.y9_c00048{bottom:680.000000pt;}
.y8_c00048{bottom:722.666667pt;}
.y7_c00048{bottom:746.666667pt;}
.y6_c00048{bottom:788.000000pt;}
.y5_c00048{bottom:846.666667pt;}
.y4_c00048{bottom:866.666667pt;}
.y3_c00048{bottom:906.666667pt;}
.y2_c00048{bottom:949.333333pt;}
.y1_c00048{bottom:973.333333pt;}
.y14_c00048{bottom:1061.333333pt;}
.h5_c00048{height:24.427085pt;}
.h6_c00048{height:36.640625pt;}
.h1_c00048{height:45.562500pt;}
.h3_c00048{height:48.953125pt;}
.h4_c00048{height:49.843750pt;}
.h2_c00048{height:50.896067pt;}
.h0_c00048{height:1122.666667pt;}
.w0_c00048{width:793.333333pt;}
.x0_c00048{left:0.000000pt;}
.x1_c00048{left:133.795333pt;}
.x2_c00048{left:250.480133pt;}
.x3_c00048{left:720.297867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f5fa46595c787036bbcfb0c1.woff2')format("woff");}.ff1_c00049{font-family:ff1_c00049;line-height:0.934082;font-style:normal;font-weight:normal;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_ba0dd6356a0469a0317e4f23.woff2')format("woff");}.ff2_c00049{font-family:ff2_c00049;line-height:0.755859;font-style:normal;font-weight:normal;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_a8ea0af8a52b1653c29db446.woff2')format("woff");}.ff3_c00049{font-family:ff3_c00049;line-height:1.155762;font-style:normal;font-weight:normal;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_a8de857c5df94249c29e4a5f.woff2')format("woff");}.ff4_c00049{font-family:ff4_c00049;line-height:0.904785;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00049;src:url('chunks/assets/font_b5227ce4ea08e339007855c7.woff2')format("woff");}.ff5_c00049{font-family:ff5_c00049;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00049{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00049{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00049{vertical-align:-23.086200px;}
.v3_c00049{vertical-align:-15.000000px;}
.v0_c00049{vertical-align:0.000000px;}
.v1_c00049{vertical-align:23.086200px;}
.ls3_c00049{letter-spacing:-5.172000px;}
.ls1_c00049{letter-spacing:-0.009600px;}
.ls0_c00049{letter-spacing:0.000000px;}
.ls2_c00049{letter-spacing:0.012000px;}
.sc__c00049{text-shadow:none;}
.sc0_c00049{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00049{-webkit-text-stroke:0px transparent;}
.sc0_c00049{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00049{word-spacing:-19.800000px;}
.ws1_c00049{word-spacing:-13.190400px;}
.ws2_c00049{word-spacing:-10.000001px;}
.ws3_c00049{word-spacing:0.000000px;}
._11_c00049{margin-left:-19.173600px;}
._13_c00049{margin-left:-10.584000px;}
._15_c00049{margin-left:-6.732000px;}
._14_c00049{margin-left:-4.291200px;}
._6_c00049{margin-left:-3.175200px;}
._10_c00049{margin-left:-2.174400px;}
._4_c00049{margin-left:-1.058400px;}
._c_c00049{width:1.807200px;}
._2_c00049{width:2.851200px;}
._0_c00049{width:4.557600px;}
._9_c00049{width:6.631200px;}
._a_c00049{width:7.927200px;}
._12_c00049{width:9.727200px;}
._e_c00049{width:11.131200px;}
._d_c00049{width:12.614400px;}
._b_c00049{width:14.025600px;}
._f_c00049{width:15.112800px;}
._1_c00049{width:16.927200px;}
._3_c00049{width:18.583200px;}
._8_c00049{width:21.340800px;}
._5_c00049{width:22.543200px;}
._7_c00049{width:24.595200px;}
.fc0_c00049{color:rgb(0,0,0);}
.fs3_c00049{font-size:40.000002px;}
.fs1_c00049{font-size:48.000000px;}
.fs2_c00049{font-size:60.000000px;}
.fs0_c00049{font-size:72.000000px;}
.y0_c00049{bottom:0.000000px;}
.y17_c00049{bottom:67.500000px;}
.y1c_c00049{bottom:132.000000px;}
.y1b_c00049{bottom:155.250000px;}
.y1a_c00049{bottom:200.250000px;}
.y19_c00049{bottom:245.250000px;}
.y18_c00049{bottom:290.250000px;}
.y15_c00049{bottom:429.000000px;}
.y14_c00049{bottom:456.000000px;}
.y13_c00049{bottom:504.000000px;}
.y12_c00049{bottom:531.000000px;}
.y11_c00049{bottom:558.000000px;}
.y10_c00049{bottom:606.000000px;}
.yf_c00049{bottom:633.000000px;}
.ye_c00049{bottom:681.000000px;}
.yd_c00049{bottom:708.000000px;}
.yc_c00049{bottom:735.000000px;}
.yb_c00049{bottom:762.000000px;}
.ya_c00049{bottom:810.000000px;}
.y9_c00049{bottom:837.000000px;}
.y8_c00049{bottom:864.000000px;}
.y7_c00049{bottom:891.000000px;}
.y6_c00049{bottom:939.000000px;}
.y5_c00049{bottom:966.000000px;}
.y4_c00049{bottom:993.000000px;}
.y3_c00049{bottom:1020.000000px;}
.y2_c00049{bottom:1068.000000px;}
.y1_c00049{bottom:1095.000000px;}
.y16_c00049{bottom:1194.000000px;}
.h5_c00049{height:27.480470px;}
.h6_c00049{height:41.220703px;}
.h4_c00049{height:44.208984px;}
.h1_c00049{height:51.257812px;}
.h3_c00049{height:56.074219px;}
.h2_c00049{height:57.258075px;}
.h0_c00049{height:1263.000000px;}
.w0_c00049{width:892.500000px;}
.x0_c00049{left:0.000000px;}
.x1_c00049{left:65.480310px;}
@media print{
.v2_c00049{vertical-align:-20.521067pt;}
.v3_c00049{vertical-align:-13.333333pt;}
.v0_c00049{vertical-align:0.000000pt;}
.v1_c00049{vertical-align:20.521067pt;}
.ls3_c00049{letter-spacing:-4.597333pt;}
.ls1_c00049{letter-spacing:-0.008533pt;}
.ls0_c00049{letter-spacing:0.000000pt;}
.ls2_c00049{letter-spacing:0.010667pt;}
.ws0_c00049{word-spacing:-17.600000pt;}
.ws1_c00049{word-spacing:-11.724800pt;}
.ws2_c00049{word-spacing:-8.888889pt;}
.ws3_c00049{word-spacing:0.000000pt;}
._11_c00049{margin-left:-17.043200pt;}
._13_c00049{margin-left:-9.408000pt;}
._15_c00049{margin-left:-5.984000pt;}
._14_c00049{margin-left:-3.814400pt;}
._6_c00049{margin-left:-2.822400pt;}
._10_c00049{margin-left:-1.932800pt;}
._4_c00049{margin-left:-0.940800pt;}
._c_c00049{width:1.606400pt;}
._2_c00049{width:2.534400pt;}
._0_c00049{width:4.051200pt;}
._9_c00049{width:5.894400pt;}
._a_c00049{width:7.046400pt;}
._12_c00049{width:8.646400pt;}
._e_c00049{width:9.894400pt;}
._d_c00049{width:11.212800pt;}
._b_c00049{width:12.467200pt;}
._f_c00049{width:13.433600pt;}
._1_c00049{width:15.046400pt;}
._3_c00049{width:16.518400pt;}
._8_c00049{width:18.969600pt;}
._5_c00049{width:20.038400pt;}
._7_c00049{width:21.862400pt;}
.fs3_c00049{font-size:35.555557pt;}
.fs1_c00049{font-size:42.666667pt;}
.fs2_c00049{font-size:53.333333pt;}
.fs0_c00049{font-size:64.000000pt;}
.y0_c00049{bottom:0.000000pt;}
.y17_c00049{bottom:60.000000pt;}
.y1c_c00049{bottom:117.333333pt;}
.y1b_c00049{bottom:138.000000pt;}
.y1a_c00049{bottom:178.000000pt;}
.y19_c00049{bottom:218.000000pt;}
.y18_c00049{bottom:258.000000pt;}
.y15_c00049{bottom:381.333333pt;}
.y14_c00049{bottom:405.333333pt;}
.y13_c00049{bottom:448.000000pt;}
.y12_c00049{bottom:472.000000pt;}
.y11_c00049{bottom:496.000000pt;}
.y10_c00049{bottom:538.666667pt;}
.yf_c00049{bottom:562.666667pt;}
.ye_c00049{bottom:605.333333pt;}
.yd_c00049{bottom:629.333333pt;}
.yc_c00049{bottom:653.333333pt;}
.yb_c00049{bottom:677.333333pt;}
.ya_c00049{bottom:720.000000pt;}
.y9_c00049{bottom:744.000000pt;}
.y8_c00049{bottom:768.000000pt;}
.y7_c00049{bottom:792.000000pt;}
.y6_c00049{bottom:834.666667pt;}
.y5_c00049{bottom:858.666667pt;}
.y4_c00049{bottom:882.666667pt;}
.y3_c00049{bottom:906.666667pt;}
.y2_c00049{bottom:949.333333pt;}
.y1_c00049{bottom:973.333333pt;}
.y16_c00049{bottom:1061.333333pt;}
.h5_c00049{height:24.427085pt;}
.h6_c00049{height:36.640625pt;}
.h4_c00049{height:39.296875pt;}
.h1_c00049{height:45.562500pt;}
.h3_c00049{height:49.843750pt;}
.h2_c00049{height:50.896067pt;}
.h0_c00049{height:1122.666667pt;}
.w0_c00049{width:793.333333pt;}
.x0_c00049{left:0.000000pt;}
.x1_c00049{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fcf8eb5c5bb68b17ea3a00c0.woff2')format("woff");}.ff1_c00050{font-family:ff1_c00050;line-height:0.934082;font-style:normal;font-weight:normal;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_70ed2fbb98711356abf7c897.woff2')format("woff");}.ff2_c00050{font-family:ff2_c00050;line-height:0.987793;font-style:normal;font-weight:normal;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_b6c0bbeafa283ab5ae25acec.woff2')format("woff");}.ff3_c00050{font-family:ff3_c00050;line-height:0.926270;font-style:normal;font-weight:normal;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_9ca5a767557d5ac4776dec3f.woff2')format("woff");}.ff4_c00050{font-family:ff4_c00050;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00050;src:url('chunks/assets/font_68c3003736270f7477e47f7c.woff2')format("woff");}.ff5_c00050{font-family:ff5_c00050;line-height:0.904785;font-style:normal;font-weight: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_c00050;src:url('chunks/assets/font_d276e9e55e472c6d6528748c.woff2')format("woff");}.ff6_c00050{font-family:ff6_c00050;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00050{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00050{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00050{vertical-align:-23.086200px;}
.v3_c00050{vertical-align:-15.000000px;}
.v0_c00050{vertical-align:0.000000px;}
.v1_c00050{vertical-align:23.086200px;}
.ls4_c00050{letter-spacing:-1.800000px;}
.ls2_c00050{letter-spacing:-0.009600px;}
.ls1_c00050{letter-spacing:0.000000px;}
.ls3_c00050{letter-spacing:0.007800px;}
.ls0_c00050{letter-spacing:0.012000px;}
.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:-13.190400px;}
.ws1_c00050{word-spacing:-10.000001px;}
.ws2_c00050{word-spacing:0.000000px;}
._f_c00050{margin-left:-5.874198px;}
._e_c00050{margin-left:-4.759602px;}
._6_c00050{margin-left:-3.369600px;}
._4_c00050{margin-left:-1.850400px;}
._8_c00050{width:1.872000px;}
._2_c00050{width:2.923200px;}
._0_c00050{width:4.485600px;}
._c_c00050{width:6.148800px;}
._b_c00050{width:8.258400px;}
._d_c00050{width:10.159200px;}
._a_c00050{width:11.577600px;}
._10_c00050{width:12.976200px;}
._1_c00050{width:15.818400px;}
._3_c00050{width:17.373600px;}
._7_c00050{width:21.693600px;}
._5_c00050{width:23.104800px;}
._9_c00050{width:24.393600px;}
.fc0_c00050{color:rgb(0,0,0);}
.fs5_c00050{font-size:40.000002px;}
.fs1_c00050{font-size:48.000000px;}
.fs2_c00050{font-size:54.000000px;}
.fs4_c00050{font-size:60.000000px;}
.fs0_c00050{font-size:72.000000px;}
.fs3_c00050{font-size:78.000000px;}
.y0_c00050{bottom:0.000000px;}
.y6_c00050{bottom:10.500000px;}
.y5_c00050{bottom:31.500000px;}
.y4_c00050{bottom:51.000000px;}
.yd_c00050{bottom:67.500000px;}
.y12_c00050{bottom:135.750000px;}
.y11_c00050{bottom:177.000000px;}
.y10_c00050{bottom:196.500000px;}
.yf_c00050{bottom:216.000000px;}
.ye_c00050{bottom:239.250000px;}
.yb_c00050{bottom:319.500000px;}
.ya_c00050{bottom:346.500000px;}
.y9_c00050{bottom:373.500000px;}
.y8_c00050{bottom:400.500000px;}
.y7_c00050{bottom:447.000000px;}
.y3_c00050{bottom:514.500000px;}
.y2_c00050{bottom:1068.000000px;}
.y1_c00050{bottom:1095.000000px;}
.yc_c00050{bottom:1194.000000px;}
.h7_c00050{height:27.480470px;}
.h8_c00050{height:41.220703px;}
.h4_c00050{height:42.292969px;}
.h1_c00050{height:51.257812px;}
.h5_c00050{height:55.072266px;}
.h6_c00050{height:56.074219px;}
.h2_c00050{height:57.258075px;}
.h3_c00050{height:522.000000px;}
.h0_c00050{height:1263.000000px;}
.w1_c00050{width:676.500000px;}
.w0_c00050{width:892.500000px;}
.x0_c00050{left:0.000000px;}
.x2_c00050{left:25.640625px;}
.x3_c00050{left:38.132085px;}
.x1_c00050{left:150.519750px;}
.x4_c00050{left:273.933900px;}
.x5_c00050{left:281.790150px;}
.x6_c00050{left:810.335100px;}
@media print{
.v2_c00050{vertical-align:-20.521067pt;}
.v3_c00050{vertical-align:-13.333333pt;}
.v0_c00050{vertical-align:0.000000pt;}
.v1_c00050{vertical-align:20.521067pt;}
.ls4_c00050{letter-spacing:-1.600000pt;}
.ls2_c00050{letter-spacing:-0.008533pt;}
.ls1_c00050{letter-spacing:0.000000pt;}
.ls3_c00050{letter-spacing:0.006933pt;}
.ls0_c00050{letter-spacing:0.010667pt;}
.ws0_c00050{word-spacing:-11.724800pt;}
.ws1_c00050{word-spacing:-8.888889pt;}
.ws2_c00050{word-spacing:0.000000pt;}
._f_c00050{margin-left:-5.221509pt;}
._e_c00050{margin-left:-4.230757pt;}
._6_c00050{margin-left:-2.995200pt;}
._4_c00050{margin-left:-1.644800pt;}
._8_c00050{width:1.664000pt;}
._2_c00050{width:2.598400pt;}
._0_c00050{width:3.987200pt;}
._c_c00050{width:5.465600pt;}
._b_c00050{width:7.340800pt;}
._d_c00050{width:9.030400pt;}
._a_c00050{width:10.291200pt;}
._10_c00050{width:11.534400pt;}
._1_c00050{width:14.060800pt;}
._3_c00050{width:15.443200pt;}
._7_c00050{width:19.283200pt;}
._5_c00050{width:20.537600pt;}
._9_c00050{width:21.683200pt;}
.fs5_c00050{font-size:35.555557pt;}
.fs1_c00050{font-size:42.666667pt;}
.fs2_c00050{font-size:48.000000pt;}
.fs4_c00050{font-size:53.333333pt;}
.fs0_c00050{font-size:64.000000pt;}
.fs3_c00050{font-size:69.333333pt;}
.y0_c00050{bottom:0.000000pt;}
.y6_c00050{bottom:9.333333pt;}
.y5_c00050{bottom:28.000000pt;}
.y4_c00050{bottom:45.333333pt;}
.yd_c00050{bottom:60.000000pt;}
.y12_c00050{bottom:120.666667pt;}
.y11_c00050{bottom:157.333333pt;}
.y10_c00050{bottom:174.666667pt;}
.yf_c00050{bottom:192.000000pt;}
.ye_c00050{bottom:212.666667pt;}
.yb_c00050{bottom:284.000000pt;}
.ya_c00050{bottom:308.000000pt;}
.y9_c00050{bottom:332.000000pt;}
.y8_c00050{bottom:356.000000pt;}
.y7_c00050{bottom:397.333333pt;}
.y3_c00050{bottom:457.333333pt;}
.y2_c00050{bottom:949.333333pt;}
.y1_c00050{bottom:973.333333pt;}
.yc_c00050{bottom:1061.333333pt;}
.h7_c00050{height:24.427085pt;}
.h8_c00050{height:36.640625pt;}
.h4_c00050{height:37.593750pt;}
.h1_c00050{height:45.562500pt;}
.h5_c00050{height:48.953125pt;}
.h6_c00050{height:49.843750pt;}
.h2_c00050{height:50.896067pt;}
.h3_c00050{height:464.000000pt;}
.h0_c00050{height:1122.666667pt;}
.w1_c00050{width:601.333333pt;}
.w0_c00050{width:793.333333pt;}
.x0_c00050{left:0.000000pt;}
.x2_c00050{left:22.791667pt;}
.x3_c00050{left:33.895187pt;}
.x1_c00050{left:133.795333pt;}
.x4_c00050{left:243.496800pt;}
.x5_c00050{left:250.480133pt;}
.x6_c00050{left:720.297867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c8f40803a888bad34f440e6f.woff2')format("woff");}.ff1_c00051{font-family:ff1_c00051;line-height:0.932129;font-style:normal;font-weight:normal;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_b09b9c0e992b9ac25d6b349d.woff2')format("woff");}.ff2_c00051{font-family:ff2_c00051;line-height:0.975586;font-style:normal;font-weight:normal;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_391c3a835775ab37c4af298d.woff2')format("woff");}.ff3_c00051{font-family:ff3_c00051;line-height:0.756836;font-style:normal;font-weight:normal;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_ed884b2b5a70f5c488642e5f.woff2')format("woff");}.ff4_c00051{font-family:ff4_c00051;line-height:1.155762;font-style:normal;font-weight:normal;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_8edc741addd4aba40125afcd.woff2')format("woff");}.ff5_c00051{font-family:ff5_c00051;line-height:0.904297;font-style:normal;font-weight: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_c00051;src:url('chunks/assets/font_c6dea9d90d56dcb8c70e8449.woff2')format("woff");}.ff6_c00051{font-family:ff6_c00051;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00051{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00051{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00051{vertical-align:-23.086200px;}
.v3_c00051{vertical-align:-15.000000px;}
.v0_c00051{vertical-align:0.000000px;}
.v1_c00051{vertical-align:23.086200px;}
.ls1_c00051{letter-spacing:-0.009600px;}
.ls0_c00051{letter-spacing:0.000000px;}
.ls2_c00051{letter-spacing:0.012000px;}
.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;}
}
.ws2_c00051{word-spacing:-15.000000px;}
.ws0_c00051{word-spacing:-13.190400px;}
.ws1_c00051{word-spacing:-10.000001px;}
.ws3_c00051{word-spacing:0.000000px;}
._12_c00051{margin-left:-8.283240px;}
._11_c00051{margin-left:-6.648000px;}
._f_c00051{margin-left:-4.349202px;}
._2_c00051{margin-left:-2.988000px;}
._5_c00051{margin-left:-1.137600px;}
._7_c00051{width:1.015200px;}
._0_c00051{width:2.325600px;}
._c_c00051{width:3.420000px;}
._9_c00051{width:4.845600px;}
._d_c00051{width:6.408000px;}
._8_c00051{width:7.502400px;}
._b_c00051{width:8.697600px;}
._10_c00051{width:10.221198px;}
._a_c00051{width:11.289600px;}
._e_c00051{width:13.310160px;}
._1_c00051{width:29.275200px;}
._4_c00051{width:31.629600px;}
._6_c00051{width:32.853600px;}
._3_c00051{width:34.617600px;}
.fc0_c00051{color:rgb(0,0,0);}
.fs4_c00051{font-size:40.000002px;}
.fs2_c00051{font-size:48.000000px;}
.fs1_c00051{font-size:54.000000px;}
.fs3_c00051{font-size:60.000000px;}
.fs0_c00051{font-size:72.000000px;}
.y0_c00051{bottom:0.000000px;}
.y5_c00051{bottom:12.000000px;}
.yb_c00051{bottom:67.500000px;}
.y13_c00051{bottom:132.000000px;}
.y12_c00051{bottom:151.500000px;}
.y11_c00051{bottom:171.000000px;}
.y10_c00051{bottom:190.500000px;}
.yf_c00051{bottom:210.000000px;}
.ye_c00051{bottom:233.250000px;}
.yd_c00051{bottom:274.500000px;}
.yc_c00051{bottom:297.750000px;}
.y9_c00051{bottom:369.000000px;}
.y8_c00051{bottom:396.000000px;}
.y7_c00051{bottom:423.000000px;}
.y6_c00051{bottom:450.000000px;}
.y4_c00051{bottom:495.000000px;}
.y3_c00051{bottom:1041.000000px;}
.y2_c00051{bottom:1068.000000px;}
.y1_c00051{bottom:1095.000000px;}
.ya_c00051{bottom:1194.000000px;}
.h7_c00051{height:27.421876px;}
.h9_c00051{height:41.103516px;}
.h8_c00051{height:41.132812px;}
.h3_c00051{height:41.633789px;}
.h6_c00051{height:44.208984px;}
.h1_c00051{height:51.257812px;}
.h5_c00051{height:56.074219px;}
.h4_c00051{height:57.258075px;}
.h2_c00051{height:514.500000px;}
.h0_c00051{height:1263.000000px;}
.w1_c00051{width:676.499850px;}
.w0_c00051{width:892.500000px;}
.x0_c00051{left:0.000000px;}
.x2_c00051{left:37.865070px;}
.x1_c00051{left:65.480310px;}
@media print{
.v2_c00051{vertical-align:-20.521067pt;}
.v3_c00051{vertical-align:-13.333333pt;}
.v0_c00051{vertical-align:0.000000pt;}
.v1_c00051{vertical-align:20.521067pt;}
.ls1_c00051{letter-spacing:-0.008533pt;}
.ls0_c00051{letter-spacing:0.000000pt;}
.ls2_c00051{letter-spacing:0.010667pt;}
.ws2_c00051{word-spacing:-13.333333pt;}
.ws0_c00051{word-spacing:-11.724800pt;}
.ws1_c00051{word-spacing:-8.888889pt;}
.ws3_c00051{word-spacing:0.000000pt;}
._12_c00051{margin-left:-7.362880pt;}
._11_c00051{margin-left:-5.909333pt;}
._f_c00051{margin-left:-3.865957pt;}
._2_c00051{margin-left:-2.656000pt;}
._5_c00051{margin-left:-1.011200pt;}
._7_c00051{width:0.902400pt;}
._0_c00051{width:2.067200pt;}
._c_c00051{width:3.040000pt;}
._9_c00051{width:4.307200pt;}
._d_c00051{width:5.696000pt;}
._8_c00051{width:6.668800pt;}
._b_c00051{width:7.731200pt;}
._10_c00051{width:9.085509pt;}
._a_c00051{width:10.035200pt;}
._e_c00051{width:11.831253pt;}
._1_c00051{width:26.022400pt;}
._4_c00051{width:28.115200pt;}
._6_c00051{width:29.203200pt;}
._3_c00051{width:30.771200pt;}
.fs4_c00051{font-size:35.555557pt;}
.fs2_c00051{font-size:42.666667pt;}
.fs1_c00051{font-size:48.000000pt;}
.fs3_c00051{font-size:53.333333pt;}
.fs0_c00051{font-size:64.000000pt;}
.y0_c00051{bottom:0.000000pt;}
.y5_c00051{bottom:10.666667pt;}
.yb_c00051{bottom:60.000000pt;}
.y13_c00051{bottom:117.333333pt;}
.y12_c00051{bottom:134.666667pt;}
.y11_c00051{bottom:152.000000pt;}
.y10_c00051{bottom:169.333333pt;}
.yf_c00051{bottom:186.666667pt;}
.ye_c00051{bottom:207.333333pt;}
.yd_c00051{bottom:244.000000pt;}
.yc_c00051{bottom:264.666667pt;}
.y9_c00051{bottom:328.000000pt;}
.y8_c00051{bottom:352.000000pt;}
.y7_c00051{bottom:376.000000pt;}
.y6_c00051{bottom:400.000000pt;}
.y4_c00051{bottom:440.000000pt;}
.y3_c00051{bottom:925.333333pt;}
.y2_c00051{bottom:949.333333pt;}
.y1_c00051{bottom:973.333333pt;}
.ya_c00051{bottom:1061.333333pt;}
.h7_c00051{height:24.375001pt;}
.h9_c00051{height:36.536458pt;}
.h8_c00051{height:36.562500pt;}
.h3_c00051{height:37.007812pt;}
.h6_c00051{height:39.296875pt;}
.h1_c00051{height:45.562500pt;}
.h5_c00051{height:49.843750pt;}
.h4_c00051{height:50.896067pt;}
.h2_c00051{height:457.333333pt;}
.h0_c00051{height:1122.666667pt;}
.w1_c00051{width:601.333200pt;}
.w0_c00051{width:793.333333pt;}
.x0_c00051{left:0.000000pt;}
.x2_c00051{left:33.657840pt;}
.x1_c00051{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3056a6cf58cdc802caa9e678.woff2')format("woff");}.ff1_c00052{font-family:ff1_c00052;line-height:0.934082;font-style:normal;font-weight:normal;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_cc9e97cbe7435484f21d4552.woff2')format("woff");}.ff2_c00052{font-family:ff2_c00052;line-height:1.155762;font-style:normal;font-weight:normal;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_02e5f22b15a7abde9c711193.woff2')format("woff");}.ff3_c00052{font-family:ff3_c00052;line-height:0.905762;font-style:normal;font-weight:normal;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_64d0ba34d02fd1fd4a226c54.woff2')format("woff");}.ff4_c00052{font-family:ff4_c00052;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00052{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00052{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00052{vertical-align:-23.086200px;}
.v3_c00052{vertical-align:-15.000000px;}
.v0_c00052{vertical-align:0.000000px;}
.v1_c00052{vertical-align:23.086200px;}
.ls5_c00052{letter-spacing:-4.824000px;}
.ls4_c00052{letter-spacing:-2.400000px;}
.ls2_c00052{letter-spacing:-0.009600px;}
.ls1_c00052{letter-spacing:0.000000px;}
.ls0_c00052{letter-spacing:0.012000px;}
.ls3_c00052{letter-spacing:4.134000px;}
.sc__c00052{text-shadow:none;}
.sc0_c00052{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00052{-webkit-text-stroke:0px transparent;}
.sc0_c00052{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00052{word-spacing:-19.800000px;}
.ws3_c00052{word-spacing:-15.000000px;}
.ws1_c00052{word-spacing:-13.190400px;}
.ws2_c00052{word-spacing:-10.000001px;}
.ws4_c00052{word-spacing:0.000000px;}
._1b_c00052{margin-left:-12.364002px;}
._1a_c00052{margin-left:-10.555200px;}
._0_c00052{margin-left:-7.920000px;}
._1c_c00052{margin-left:-5.167200px;}
._f_c00052{margin-left:-4.132800px;}
._5_c00052{margin-left:-2.880000px;}
._1_c00052{margin-left:-1.749600px;}
._7_c00052{width:1.094400px;}
._3_c00052{width:2.196000px;}
._4_c00052{width:3.456000px;}
._8_c00052{width:4.543200px;}
._15_c00052{width:5.659200px;}
._2_c00052{width:6.739200px;}
._6_c00052{width:7.884000px;}
._e_c00052{width:9.000000px;}
._13_c00052{width:10.087200px;}
._a_c00052{width:11.102400px;}
._d_c00052{width:12.348000px;}
._c_c00052{width:13.492800px;}
._b_c00052{width:14.529600px;}
._9_c00052{width:16.322400px;}
._14_c00052{width:17.337600px;}
._17_c00052{width:18.489600px;}
._1d_c00052{width:20.022000px;}
._18_c00052{width:21.240000px;}
._19_c00052{width:22.672800px;}
._16_c00052{width:23.702400px;}
._12_c00052{width:31.478400px;}
._10_c00052{width:33.040800px;}
._11_c00052{width:36.396000px;}
.fc0_c00052{color:rgb(0,0,0);}
.fs3_c00052{font-size:40.000002px;}
.fs1_c00052{font-size:48.000000px;}
.fs2_c00052{font-size:60.000000px;}
.fs0_c00052{font-size:72.000000px;}
.y0_c00052{bottom:0.000000px;}
.y1a_c00052{bottom:67.500000px;}
.y23_c00052{bottom:135.750000px;}
.y22_c00052{bottom:177.000000px;}
.y21_c00052{bottom:196.500000px;}
.y20_c00052{bottom:216.000000px;}
.y1f_c00052{bottom:235.500000px;}
.y1e_c00052{bottom:255.000000px;}
.y1d_c00052{bottom:274.500000px;}
.y1c_c00052{bottom:294.000000px;}
.y1b_c00052{bottom:317.250000px;}
.y18_c00052{bottom:390.000000px;}
.y17_c00052{bottom:417.000000px;}
.y16_c00052{bottom:444.000000px;}
.y15_c00052{bottom:471.000000px;}
.y14_c00052{bottom:519.000000px;}
.y13_c00052{bottom:546.000000px;}
.y12_c00052{bottom:573.000000px;}
.y11_c00052{bottom:600.000000px;}
.y10_c00052{bottom:648.000000px;}
.yf_c00052{bottom:675.000000px;}
.ye_c00052{bottom:702.000000px;}
.yd_c00052{bottom:729.000000px;}
.yc_c00052{bottom:756.000000px;}
.yb_c00052{bottom:783.000000px;}
.ya_c00052{bottom:831.000000px;}
.y9_c00052{bottom:858.000000px;}
.y8_c00052{bottom:885.000000px;}
.y7_c00052{bottom:912.000000px;}
.y6_c00052{bottom:960.000000px;}
.y5_c00052{bottom:987.000000px;}
.y4_c00052{bottom:1014.000000px;}
.y3_c00052{bottom:1041.000000px;}
.y2_c00052{bottom:1068.000000px;}
.y1_c00052{bottom:1095.000000px;}
.y19_c00052{bottom:1194.000000px;}
.h4_c00052{height:27.480470px;}
.h5_c00052{height:41.220703px;}
.h1_c00052{height:51.257812px;}
.h3_c00052{height:56.074219px;}
.h2_c00052{height:57.258075px;}
.h0_c00052{height:1263.000000px;}
.w0_c00052{width:892.500000px;}
.x0_c00052{left:0.000000px;}
.x1_c00052{left:150.519750px;}
.x2_c00052{left:281.790150px;}
.x3_c00052{left:810.335100px;}
@media print{
.v2_c00052{vertical-align:-20.521067pt;}
.v3_c00052{vertical-align:-13.333333pt;}
.v0_c00052{vertical-align:0.000000pt;}
.v1_c00052{vertical-align:20.521067pt;}
.ls5_c00052{letter-spacing:-4.288000pt;}
.ls4_c00052{letter-spacing:-2.133333pt;}
.ls2_c00052{letter-spacing:-0.008533pt;}
.ls1_c00052{letter-spacing:0.000000pt;}
.ls0_c00052{letter-spacing:0.010667pt;}
.ls3_c00052{letter-spacing:3.674667pt;}
.ws0_c00052{word-spacing:-17.600000pt;}
.ws3_c00052{word-spacing:-13.333333pt;}
.ws1_c00052{word-spacing:-11.724800pt;}
.ws2_c00052{word-spacing:-8.888889pt;}
.ws4_c00052{word-spacing:0.000000pt;}
._1b_c00052{margin-left:-10.990224pt;}
._1a_c00052{margin-left:-9.382400pt;}
._0_c00052{margin-left:-7.040000pt;}
._1c_c00052{margin-left:-4.593067pt;}
._f_c00052{margin-left:-3.673600pt;}
._5_c00052{margin-left:-2.560000pt;}
._1_c00052{margin-left:-1.555200pt;}
._7_c00052{width:0.972800pt;}
._3_c00052{width:1.952000pt;}
._4_c00052{width:3.072000pt;}
._8_c00052{width:4.038400pt;}
._15_c00052{width:5.030400pt;}
._2_c00052{width:5.990400pt;}
._6_c00052{width:7.008000pt;}
._e_c00052{width:8.000000pt;}
._13_c00052{width:8.966400pt;}
._a_c00052{width:9.868800pt;}
._d_c00052{width:10.976000pt;}
._c_c00052{width:11.993600pt;}
._b_c00052{width:12.915200pt;}
._9_c00052{width:14.508800pt;}
._14_c00052{width:15.411200pt;}
._17_c00052{width:16.435200pt;}
._1d_c00052{width:17.797333pt;}
._18_c00052{width:18.880000pt;}
._19_c00052{width:20.153600pt;}
._16_c00052{width:21.068800pt;}
._12_c00052{width:27.980800pt;}
._10_c00052{width:29.369600pt;}
._11_c00052{width:32.352000pt;}
.fs3_c00052{font-size:35.555557pt;}
.fs1_c00052{font-size:42.666667pt;}
.fs2_c00052{font-size:53.333333pt;}
.fs0_c00052{font-size:64.000000pt;}
.y0_c00052{bottom:0.000000pt;}
.y1a_c00052{bottom:60.000000pt;}
.y23_c00052{bottom:120.666667pt;}
.y22_c00052{bottom:157.333333pt;}
.y21_c00052{bottom:174.666667pt;}
.y20_c00052{bottom:192.000000pt;}
.y1f_c00052{bottom:209.333333pt;}
.y1e_c00052{bottom:226.666667pt;}
.y1d_c00052{bottom:244.000000pt;}
.y1c_c00052{bottom:261.333333pt;}
.y1b_c00052{bottom:282.000000pt;}
.y18_c00052{bottom:346.666667pt;}
.y17_c00052{bottom:370.666667pt;}
.y16_c00052{bottom:394.666667pt;}
.y15_c00052{bottom:418.666667pt;}
.y14_c00052{bottom:461.333333pt;}
.y13_c00052{bottom:485.333333pt;}
.y12_c00052{bottom:509.333333pt;}
.y11_c00052{bottom:533.333333pt;}
.y10_c00052{bottom:576.000000pt;}
.yf_c00052{bottom:600.000000pt;}
.ye_c00052{bottom:624.000000pt;}
.yd_c00052{bottom:648.000000pt;}
.yc_c00052{bottom:672.000000pt;}
.yb_c00052{bottom:696.000000pt;}
.ya_c00052{bottom:738.666667pt;}
.y9_c00052{bottom:762.666667pt;}
.y8_c00052{bottom:786.666667pt;}
.y7_c00052{bottom:810.666667pt;}
.y6_c00052{bottom:853.333333pt;}
.y5_c00052{bottom:877.333333pt;}
.y4_c00052{bottom:901.333333pt;}
.y3_c00052{bottom:925.333333pt;}
.y2_c00052{bottom:949.333333pt;}
.y1_c00052{bottom:973.333333pt;}
.y19_c00052{bottom:1061.333333pt;}
.h4_c00052{height:24.427085pt;}
.h5_c00052{height:36.640625pt;}
.h1_c00052{height:45.562500pt;}
.h3_c00052{height:49.843750pt;}
.h2_c00052{height:50.896067pt;}
.h0_c00052{height:1122.666667pt;}
.w0_c00052{width:793.333333pt;}
.x0_c00052{left:0.000000pt;}
.x1_c00052{left:133.795333pt;}
.x2_c00052{left:250.480133pt;}
.x3_c00052{left:720.297867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_960e3eef19dbc05e6e886355.woff2')format("woff");}.ff1_c00053{font-family:ff1_c00053;line-height:0.975586;font-style:normal;font-weight:normal;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_a0349b8d6a5b61b4fefdb580.woff2')format("woff");}.ff2_c00053{font-family:ff2_c00053;line-height:0.934082;font-style:normal;font-weight:normal;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_0228ca4f902c137f48e31953.woff2')format("woff");}.ff3_c00053{font-family:ff3_c00053;line-height:1.124023;font-style:normal;font-weight:normal;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_aee3585eabc1d3aeec8c8027.woff2')format("woff");}.ff4_c00053{font-family:ff4_c00053;line-height:0.755859;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00053;src:url('chunks/assets/font_58a61a5c79a3bcd84f63994a.woff2')format("woff");}.ff5_c00053{font-family:ff5_c00053;line-height:1.155762;font-style:normal;font-weight: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_c00053;src:url('chunks/assets/font_8370fc16d607a42d7e07d320.woff2')format("woff");}.ff6_c00053{font-family:ff6_c00053;line-height:0.904785;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00053;src:url('chunks/assets/font_933e73487254019b852572e8.woff2')format("woff");}.ff7_c00053{font-family:ff7_c00053;line-height:0.812500;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00053{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00053{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00053{vertical-align:-15.000000px;}
.v0_c00053{vertical-align:0.000000px;}
.v1_c00053{vertical-align:23.086200px;}
.ls2_c00053{letter-spacing:-0.016800px;}
.ls1_c00053{letter-spacing:-0.009600px;}
.ls0_c00053{letter-spacing:0.000000px;}
.ls3_c00053{letter-spacing:0.012000px;}
.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:-13.190400px;}
.ws1_c00053{word-spacing:-10.000001px;}
.ws2_c00053{word-spacing:0.000000px;}
._10_c00053{margin-left:-7.113600px;}
._d_c00053{margin-left:-5.428800px;}
._9_c00053{margin-left:-3.427200px;}
._e_c00053{margin-left:-2.390400px;}
._5_c00053{margin-left:-1.324800px;}
._1_c00053{width:1.209600px;}
._3_c00053{width:2.764800px;}
._7_c00053{width:4.284000px;}
._f_c00053{width:5.551200px;}
._8_c00053{width:6.811200px;}
._4_c00053{width:8.438400px;}
._2_c00053{width:9.878400px;}
._0_c00053{width:11.109600px;}
._6_c00053{width:12.470400px;}
._18_c00053{width:14.630400px;}
._a_c00053{width:16.920000px;}
._c_c00053{width:18.273600px;}
._11_c00053{width:22.104000px;}
._b_c00053{width:23.860800px;}
._17_c00053{width:25.761600px;}
._12_c00053{width:27.309600px;}
._14_c00053{width:28.807200px;}
._16_c00053{width:30.852000px;}
._15_c00053{width:32.371200px;}
._13_c00053{width:33.429600px;}
.fc0_c00053{color:rgb(0,0,0);}
.fs5_c00053{font-size:40.000002px;}
.fs2_c00053{font-size:48.000000px;}
.fs0_c00053{font-size:54.000000px;}
.fs4_c00053{font-size:60.000000px;}
.fs1_c00053{font-size:72.000000px;}
.fs3_c00053{font-size:84.000000px;}
.y0_c00053{bottom:0.000000px;}
.y3_c00053{bottom:10.500000px;}
.y2_c00053{bottom:33.000000px;}
.y16_c00053{bottom:67.500000px;}
.y17_c00053{bottom:135.750000px;}
.y14_c00053{bottom:193.500000px;}
.y13_c00053{bottom:220.500000px;}
.y12_c00053{bottom:247.500000px;}
.y11_c00053{bottom:274.500000px;}
.y10_c00053{bottom:301.500000px;}
.yf_c00053{bottom:328.500000px;}
.ye_c00053{bottom:376.500000px;}
.yd_c00053{bottom:403.500000px;}
.yc_c00053{bottom:430.500000px;}
.yb_c00053{bottom:457.500000px;}
.ya_c00053{bottom:484.500000px;}
.y9_c00053{bottom:531.000000px;}
.y8_c00053{bottom:555.000000px;}
.y7_c00053{bottom:625.500000px;}
.y6_c00053{bottom:652.500000px;}
.y5_c00053{bottom:679.500000px;}
.y4_c00053{bottom:706.500000px;}
.y1_c00053{bottom:751.500000px;}
.y15_c00053{bottom:1194.000000px;}
.h8_c00053{height:27.480470px;}
.h2_c00053{height:41.633789px;}
.h7_c00053{height:44.208984px;}
.h3_c00053{height:51.257812px;}
.h6_c00053{height:56.074219px;}
.h4_c00053{height:57.258075px;}
.h5_c00053{height:79.570312px;}
.h1_c00053{height:361.500000px;}
.h0_c00053{height:1263.000000px;}
.w1_c00053{width:676.499850px;}
.w0_c00053{width:892.500000px;}
.x0_c00053{left:0.000000px;}
.x2_c00053{left:45.666465px;}
.x1_c00053{left:66.000000px;}
.x3_c00053{left:281.890050px;}
@media print{
.v2_c00053{vertical-align:-13.333333pt;}
.v0_c00053{vertical-align:0.000000pt;}
.v1_c00053{vertical-align:20.521067pt;}
.ls2_c00053{letter-spacing:-0.014933pt;}
.ls1_c00053{letter-spacing:-0.008533pt;}
.ls0_c00053{letter-spacing:0.000000pt;}
.ls3_c00053{letter-spacing:0.010667pt;}
.ws0_c00053{word-spacing:-11.724800pt;}
.ws1_c00053{word-spacing:-8.888889pt;}
.ws2_c00053{word-spacing:0.000000pt;}
._10_c00053{margin-left:-6.323200pt;}
._d_c00053{margin-left:-4.825600pt;}
._9_c00053{margin-left:-3.046400pt;}
._e_c00053{margin-left:-2.124800pt;}
._5_c00053{margin-left:-1.177600pt;}
._1_c00053{width:1.075200pt;}
._3_c00053{width:2.457600pt;}
._7_c00053{width:3.808000pt;}
._f_c00053{width:4.934400pt;}
._8_c00053{width:6.054400pt;}
._4_c00053{width:7.500800pt;}
._2_c00053{width:8.780800pt;}
._0_c00053{width:9.875200pt;}
._6_c00053{width:11.084800pt;}
._18_c00053{width:13.004800pt;}
._a_c00053{width:15.040000pt;}
._c_c00053{width:16.243200pt;}
._11_c00053{width:19.648000pt;}
._b_c00053{width:21.209600pt;}
._17_c00053{width:22.899200pt;}
._12_c00053{width:24.275200pt;}
._14_c00053{width:25.606400pt;}
._16_c00053{width:27.424000pt;}
._15_c00053{width:28.774400pt;}
._13_c00053{width:29.715200pt;}
.fs5_c00053{font-size:35.555557pt;}
.fs2_c00053{font-size:42.666667pt;}
.fs0_c00053{font-size:48.000000pt;}
.fs4_c00053{font-size:53.333333pt;}
.fs1_c00053{font-size:64.000000pt;}
.fs3_c00053{font-size:74.666667pt;}
.y0_c00053{bottom:0.000000pt;}
.y3_c00053{bottom:9.333333pt;}
.y2_c00053{bottom:29.333333pt;}
.y16_c00053{bottom:60.000000pt;}
.y17_c00053{bottom:120.666667pt;}
.y14_c00053{bottom:172.000000pt;}
.y13_c00053{bottom:196.000000pt;}
.y12_c00053{bottom:220.000000pt;}
.y11_c00053{bottom:244.000000pt;}
.y10_c00053{bottom:268.000000pt;}
.yf_c00053{bottom:292.000000pt;}
.ye_c00053{bottom:334.666667pt;}
.yd_c00053{bottom:358.666667pt;}
.yc_c00053{bottom:382.666667pt;}
.yb_c00053{bottom:406.666667pt;}
.ya_c00053{bottom:430.666667pt;}
.y9_c00053{bottom:472.000000pt;}
.y8_c00053{bottom:493.333333pt;}
.y7_c00053{bottom:556.000000pt;}
.y6_c00053{bottom:580.000000pt;}
.y5_c00053{bottom:604.000000pt;}
.y4_c00053{bottom:628.000000pt;}
.y1_c00053{bottom:668.000000pt;}
.y15_c00053{bottom:1061.333333pt;}
.h8_c00053{height:24.427085pt;}
.h2_c00053{height:37.007812pt;}
.h7_c00053{height:39.296875pt;}
.h3_c00053{height:45.562500pt;}
.h6_c00053{height:49.843750pt;}
.h4_c00053{height:50.896067pt;}
.h5_c00053{height:70.729167pt;}
.h1_c00053{height:321.333333pt;}
.h0_c00053{height:1122.666667pt;}
.w1_c00053{width:601.333200pt;}
.w0_c00053{width:793.333333pt;}
.x0_c00053{left:0.000000pt;}
.x2_c00053{left:40.592413pt;}
.x1_c00053{left:58.666667pt;}
.x3_c00053{left:250.568933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7dfe36c1b6528ab4243772ec.woff2')format("woff");}.ff1_c00054{font-family:ff1_c00054;line-height:0.934082;font-style:normal;font-weight:normal;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_17dcb4639aa13ed8fc587850.woff2')format("woff");}.ff2_c00054{font-family:ff2_c00054;line-height:0.963867;font-style:normal;font-weight:normal;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_4babf465cb28b5dfd27caae9.woff2')format("woff");}.ff3_c00054{font-family:ff3_c00054;line-height:1.155762;font-style:normal;font-weight:normal;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_260f6587d6a162d51c4d5d2a.woff2')format("woff");}.ff4_c00054{font-family:ff4_c00054;line-height:0.903320;font-style:normal;font-weight:normal;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_190a8748d80486e8631683c3.woff2')format("woff");}.ff5_c00054{font-family:ff5_c00054;line-height:0.812500;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00054{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00054{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00054{vertical-align:-23.086200px;}
.v3_c00054{vertical-align:-15.000000px;}
.v0_c00054{vertical-align:0.000000px;}
.v1_c00054{vertical-align:23.086200px;}
.ls2_c00054{letter-spacing:-0.009600px;}
.ls1_c00054{letter-spacing:0.000000px;}
.ls0_c00054{letter-spacing:0.012000px;}
.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:-19.800000px;}
.ws1_c00054{word-spacing:-13.190400px;}
.ws2_c00054{word-spacing:-10.000001px;}
.ws3_c00054{word-spacing:0.000000px;}
._0_c00054{margin-left:-9.280800px;}
._b_c00054{margin-left:-4.716000px;}
._7_c00054{margin-left:-2.995200px;}
._2_c00054{margin-left:-1.101600px;}
._4_c00054{width:1.972800px;}
._8_c00054{width:3.117600px;}
._6_c00054{width:4.233600px;}
._5_c00054{width:5.565600px;}
._1_c00054{width:7.531200px;}
._3_c00054{width:8.632800px;}
._12_c00054{width:9.878400px;}
._9_c00054{width:11.268000px;}
._13_c00054{width:12.549000px;}
._14_c00054{width:13.644000px;}
._d_c00054{width:14.889600px;}
._a_c00054{width:16.020000px;}
._10_c00054{width:17.229600px;}
._e_c00054{width:18.374400px;}
._f_c00054{width:20.937600px;}
._c_c00054{width:22.701600px;}
._11_c00054{width:26.697600px;}
.fc0_c00054{color:rgb(0,0,0);}
.fs4_c00054{font-size:40.000002px;}
.fs2_c00054{font-size:48.000000px;}
.fs1_c00054{font-size:54.000000px;}
.fs3_c00054{font-size:60.000000px;}
.fs0_c00054{font-size:72.000000px;}
.y0_c00054{bottom:0.000000px;}
.y7_c00054{bottom:12.000000px;}
.y12_c00054{bottom:67.500000px;}
.y14_c00054{bottom:135.750000px;}
.y13_c00054{bottom:180.750000px;}
.y10_c00054{bottom:226.500000px;}
.yf_c00054{bottom:253.500000px;}
.ye_c00054{bottom:280.500000px;}
.yd_c00054{bottom:307.500000px;}
.yc_c00054{bottom:334.500000px;}
.yb_c00054{bottom:361.500000px;}
.ya_c00054{bottom:388.500000px;}
.y9_c00054{bottom:415.500000px;}
.y8_c00054{bottom:442.500000px;}
.y6_c00054{bottom:483.000000px;}
.y5_c00054{bottom:987.000000px;}
.y4_c00054{bottom:1014.000000px;}
.y3_c00054{bottom:1041.000000px;}
.y2_c00054{bottom:1068.000000px;}
.y1_c00054{bottom:1095.000000px;}
.y11_c00054{bottom:1194.000000px;}
.h6_c00054{height:27.421876px;}
.h3_c00054{height:41.633789px;}
.h1_c00054{height:51.257812px;}
.h5_c00054{height:56.074219px;}
.h4_c00054{height:57.258075px;}
.h2_c00054{height:472.500000px;}
.h0_c00054{height:1263.000000px;}
.w1_c00054{width:595.500000px;}
.w0_c00054{width:892.500000px;}
.x0_c00054{left:0.000000px;}
.x1_c00054{left:150.519750px;}
.x3_c00054{left:153.989550px;}
.x2_c00054{left:190.500000px;}
.x4_c00054{left:281.790150px;}
.x5_c00054{left:810.335100px;}
@media print{
.v2_c00054{vertical-align:-20.521067pt;}
.v3_c00054{vertical-align:-13.333333pt;}
.v0_c00054{vertical-align:0.000000pt;}
.v1_c00054{vertical-align:20.521067pt;}
.ls2_c00054{letter-spacing:-0.008533pt;}
.ls1_c00054{letter-spacing:0.000000pt;}
.ls0_c00054{letter-spacing:0.010667pt;}
.ws0_c00054{word-spacing:-17.600000pt;}
.ws1_c00054{word-spacing:-11.724800pt;}
.ws2_c00054{word-spacing:-8.888889pt;}
.ws3_c00054{word-spacing:0.000000pt;}
._0_c00054{margin-left:-8.249600pt;}
._b_c00054{margin-left:-4.192000pt;}
._7_c00054{margin-left:-2.662400pt;}
._2_c00054{margin-left:-0.979200pt;}
._4_c00054{width:1.753600pt;}
._8_c00054{width:2.771200pt;}
._6_c00054{width:3.763200pt;}
._5_c00054{width:4.947200pt;}
._1_c00054{width:6.694400pt;}
._3_c00054{width:7.673600pt;}
._12_c00054{width:8.780800pt;}
._9_c00054{width:10.016000pt;}
._13_c00054{width:11.154667pt;}
._14_c00054{width:12.128000pt;}
._d_c00054{width:13.235200pt;}
._a_c00054{width:14.240000pt;}
._10_c00054{width:15.315200pt;}
._e_c00054{width:16.332800pt;}
._f_c00054{width:18.611200pt;}
._c_c00054{width:20.179200pt;}
._11_c00054{width:23.731200pt;}
.fs4_c00054{font-size:35.555557pt;}
.fs2_c00054{font-size:42.666667pt;}
.fs1_c00054{font-size:48.000000pt;}
.fs3_c00054{font-size:53.333333pt;}
.fs0_c00054{font-size:64.000000pt;}
.y0_c00054{bottom:0.000000pt;}
.y7_c00054{bottom:10.666667pt;}
.y12_c00054{bottom:60.000000pt;}
.y14_c00054{bottom:120.666667pt;}
.y13_c00054{bottom:160.666667pt;}
.y10_c00054{bottom:201.333333pt;}
.yf_c00054{bottom:225.333333pt;}
.ye_c00054{bottom:249.333333pt;}
.yd_c00054{bottom:273.333333pt;}
.yc_c00054{bottom:297.333333pt;}
.yb_c00054{bottom:321.333333pt;}
.ya_c00054{bottom:345.333333pt;}
.y9_c00054{bottom:369.333333pt;}
.y8_c00054{bottom:393.333333pt;}
.y6_c00054{bottom:429.333333pt;}
.y5_c00054{bottom:877.333333pt;}
.y4_c00054{bottom:901.333333pt;}
.y3_c00054{bottom:925.333333pt;}
.y2_c00054{bottom:949.333333pt;}
.y1_c00054{bottom:973.333333pt;}
.y11_c00054{bottom:1061.333333pt;}
.h6_c00054{height:24.375001pt;}
.h3_c00054{height:37.007812pt;}
.h1_c00054{height:45.562500pt;}
.h5_c00054{height:49.843750pt;}
.h4_c00054{height:50.896067pt;}
.h2_c00054{height:420.000000pt;}
.h0_c00054{height:1122.666667pt;}
.w1_c00054{width:529.333333pt;}
.w0_c00054{width:793.333333pt;}
.x0_c00054{left:0.000000pt;}
.x1_c00054{left:133.795333pt;}
.x3_c00054{left:136.879600pt;}
.x2_c00054{left:169.333333pt;}
.x4_c00054{left:250.480133pt;}
.x5_c00054{left:720.297867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_914ec5b4d76204ec19646cb3.woff2')format("woff");}.ff1_c00055{font-family:ff1_c00055;line-height:0.934082;font-style:normal;font-weight:normal;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_db577072314bdab58c6241dd.woff2')format("woff");}.ff2_c00055{font-family:ff2_c00055;line-height:0.755859;font-style:normal;font-weight:normal;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_9db6a03489abd5b7dd7a1a04.woff2')format("woff");}.ff3_c00055{font-family:ff3_c00055;line-height:1.155762;font-style:normal;font-weight:normal;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_3134e66ff5e178c440eab97a.woff2')format("woff");}.ff4_c00055{font-family:ff4_c00055;line-height:0.904297;font-style:normal;font-weight:normal;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_010004ea1bf6978cb646d5e4.woff2')format("woff");}.ff5_c00055{font-family:ff5_c00055;line-height:0.890137;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00055{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00055{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00055{vertical-align:-23.086200px;}
.v3_c00055{vertical-align:-15.000000px;}
.v0_c00055{vertical-align:0.000000px;}
.v1_c00055{vertical-align:23.086200px;}
.ls1_c00055{letter-spacing:-0.009600px;}
.ls0_c00055{letter-spacing:0.000000px;}
.ls2_c00055{letter-spacing:0.012000px;}
.sc__c00055{text-shadow:none;}
.sc0_c00055{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00055{-webkit-text-stroke:0px transparent;}
.sc0_c00055{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00055{word-spacing:-13.190400px;}
.ws1_c00055{word-spacing:-10.000001px;}
.ws2_c00055{word-spacing:-2.000002px;}
.ws3_c00055{word-spacing:0.000000px;}
._f_c00055{margin-left:-11.160000px;}
._10_c00055{margin-left:-6.436800px;}
._b_c00055{margin-left:-4.269600px;}
._7_c00055{margin-left:-3.124800px;}
._5_c00055{margin-left:-1.562400px;}
._0_c00055{width:1.684800px;}
._4_c00055{width:2.858400px;}
._3_c00055{width:4.687200px;}
._1_c00055{width:6.040800px;}
._2_c00055{width:7.704000px;}
._6_c00055{width:9.273600px;}
._8_c00055{width:10.821600px;}
._12_c00055{width:11.842800px;}
._9_c00055{width:12.952800px;}
._a_c00055{width:15.249600px;}
._d_c00055{width:16.941600px;}
._c_c00055{width:18.460800px;}
._e_c00055{width:21.571200px;}
._11_c00055{width:23.493600px;}
.fc0_c00055{color:rgb(0,0,0);}
.fs3_c00055{font-size:40.000002px;}
.fs1_c00055{font-size:48.000000px;}
.fs2_c00055{font-size:60.000000px;}
.fs0_c00055{font-size:72.000000px;}
.y0_c00055{bottom:0.000000px;}
.y18_c00055{bottom:67.500000px;}
.y1e_c00055{bottom:132.000000px;}
.y1d_c00055{bottom:151.500000px;}
.y1c_c00055{bottom:171.000000px;}
.y1b_c00055{bottom:194.250000px;}
.y1a_c00055{bottom:239.250000px;}
.y19_c00055{bottom:284.250000px;}
.y16_c00055{bottom:423.000000px;}
.y15_c00055{bottom:450.000000px;}
.y14_c00055{bottom:477.000000px;}
.y13_c00055{bottom:525.000000px;}
.y12_c00055{bottom:552.000000px;}
.y11_c00055{bottom:600.000000px;}
.y10_c00055{bottom:627.000000px;}
.yf_c00055{bottom:654.000000px;}
.ye_c00055{bottom:681.000000px;}
.yd_c00055{bottom:729.000000px;}
.yc_c00055{bottom:756.000000px;}
.yb_c00055{bottom:783.000000px;}
.ya_c00055{bottom:810.000000px;}
.y9_c00055{bottom:858.000000px;}
.y8_c00055{bottom:885.000000px;}
.y7_c00055{bottom:912.000000px;}
.y6_c00055{bottom:939.000000px;}
.y5_c00055{bottom:966.000000px;}
.y4_c00055{bottom:1014.000000px;}
.y3_c00055{bottom:1041.000000px;}
.y2_c00055{bottom:1068.000000px;}
.y1_c00055{bottom:1095.000000px;}
.y17_c00055{bottom:1194.000000px;}
.h5_c00055{height:27.421876px;}
.h6_c00055{height:41.132812px;}
.h4_c00055{height:44.208984px;}
.h1_c00055{height:51.257812px;}
.h3_c00055{height:56.074219px;}
.h2_c00055{height:57.258075px;}
.h0_c00055{height:1263.000000px;}
.w0_c00055{width:892.500000px;}
.x0_c00055{left:0.000000px;}
.x1_c00055{left:65.480310px;}
@media print{
.v2_c00055{vertical-align:-20.521067pt;}
.v3_c00055{vertical-align:-13.333333pt;}
.v0_c00055{vertical-align:0.000000pt;}
.v1_c00055{vertical-align:20.521067pt;}
.ls1_c00055{letter-spacing:-0.008533pt;}
.ls0_c00055{letter-spacing:0.000000pt;}
.ls2_c00055{letter-spacing:0.010667pt;}
.ws0_c00055{word-spacing:-11.724800pt;}
.ws1_c00055{word-spacing:-8.888889pt;}
.ws2_c00055{word-spacing:-1.777780pt;}
.ws3_c00055{word-spacing:0.000000pt;}
._f_c00055{margin-left:-9.920000pt;}
._10_c00055{margin-left:-5.721600pt;}
._b_c00055{margin-left:-3.795200pt;}
._7_c00055{margin-left:-2.777600pt;}
._5_c00055{margin-left:-1.388800pt;}
._0_c00055{width:1.497600pt;}
._4_c00055{width:2.540800pt;}
._3_c00055{width:4.166400pt;}
._1_c00055{width:5.369600pt;}
._2_c00055{width:6.848000pt;}
._6_c00055{width:8.243200pt;}
._8_c00055{width:9.619200pt;}
._12_c00055{width:10.526933pt;}
._9_c00055{width:11.513600pt;}
._a_c00055{width:13.555200pt;}
._d_c00055{width:15.059200pt;}
._c_c00055{width:16.409600pt;}
._e_c00055{width:19.174400pt;}
._11_c00055{width:20.883200pt;}
.fs3_c00055{font-size:35.555557pt;}
.fs1_c00055{font-size:42.666667pt;}
.fs2_c00055{font-size:53.333333pt;}
.fs0_c00055{font-size:64.000000pt;}
.y0_c00055{bottom:0.000000pt;}
.y18_c00055{bottom:60.000000pt;}
.y1e_c00055{bottom:117.333333pt;}
.y1d_c00055{bottom:134.666667pt;}
.y1c_c00055{bottom:152.000000pt;}
.y1b_c00055{bottom:172.666667pt;}
.y1a_c00055{bottom:212.666667pt;}
.y19_c00055{bottom:252.666667pt;}
.y16_c00055{bottom:376.000000pt;}
.y15_c00055{bottom:400.000000pt;}
.y14_c00055{bottom:424.000000pt;}
.y13_c00055{bottom:466.666667pt;}
.y12_c00055{bottom:490.666667pt;}
.y11_c00055{bottom:533.333333pt;}
.y10_c00055{bottom:557.333333pt;}
.yf_c00055{bottom:581.333333pt;}
.ye_c00055{bottom:605.333333pt;}
.yd_c00055{bottom:648.000000pt;}
.yc_c00055{bottom:672.000000pt;}
.yb_c00055{bottom:696.000000pt;}
.ya_c00055{bottom:720.000000pt;}
.y9_c00055{bottom:762.666667pt;}
.y8_c00055{bottom:786.666667pt;}
.y7_c00055{bottom:810.666667pt;}
.y6_c00055{bottom:834.666667pt;}
.y5_c00055{bottom:858.666667pt;}
.y4_c00055{bottom:901.333333pt;}
.y3_c00055{bottom:925.333333pt;}
.y2_c00055{bottom:949.333333pt;}
.y1_c00055{bottom:973.333333pt;}
.y17_c00055{bottom:1061.333333pt;}
.h5_c00055{height:24.375001pt;}
.h6_c00055{height:36.562500pt;}
.h4_c00055{height:39.296875pt;}
.h1_c00055{height:45.562500pt;}
.h3_c00055{height:49.843750pt;}
.h2_c00055{height:50.896067pt;}
.h0_c00055{height:1122.666667pt;}
.w0_c00055{width:793.333333pt;}
.x0_c00055{left:0.000000pt;}
.x1_c00055{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_54828941a092f2f7461c98fc.woff2')format("woff");}.ff1_c00056{font-family:ff1_c00056;line-height:0.934082;font-style:normal;font-weight:normal;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_aa6ca5566c96d3a73799195b.woff2')format("woff");}.ff2_c00056{font-family:ff2_c00056;line-height:0.987793;font-style:normal;font-weight:normal;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_f541a4c10e032ed924093a8c.woff2')format("woff");}.ff3_c00056{font-family:ff3_c00056;line-height:1.155762;font-style:normal;font-weight:normal;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_16203ee8640cfc3c58b50ad2.woff2')format("woff");}.ff4_c00056{font-family:ff4_c00056;line-height:0.903320;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00056;src:url('chunks/assets/font_921364482190bc2711084d6f.woff2')format("woff");}.ff5_c00056{font-family:ff5_c00056;line-height:0.890137;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00056{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00056{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00056{vertical-align:-23.086200px;}
.v3_c00056{vertical-align:-15.000000px;}
.v0_c00056{vertical-align:0.000000px;}
.v1_c00056{vertical-align:23.086200px;}
.ls2_c00056{letter-spacing:-0.009600px;}
.ls1_c00056{letter-spacing:0.000000px;}
.ls0_c00056{letter-spacing:0.012000px;}
.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:-13.190400px;}
.ws2_c00056{word-spacing:-10.000001px;}
.ws1_c00056{word-spacing:-2.000002px;}
.ws3_c00056{word-spacing:0.000000px;}
._e_c00056{margin-left:-11.059200px;}
._c_c00056{margin-left:-6.998400px;}
._16_c00056{margin-left:-5.431200px;}
._6_c00056{margin-left:-3.981600px;}
._2_c00056{margin-left:-2.260800px;}
._5_c00056{margin-left:-1.252800px;}
._b_c00056{width:1.173600px;}
._1_c00056{width:2.469600px;}
._0_c00056{width:3.744000px;}
._8_c00056{width:4.953600px;}
._4_c00056{width:6.825600px;}
._d_c00056{width:8.042400px;}
._3_c00056{width:9.115200px;}
._7_c00056{width:10.828800px;}
._9_c00056{width:11.844000px;}
._a_c00056{width:13.687200px;}
._11_c00056{width:16.539000px;}
._f_c00056{width:18.252000px;}
._10_c00056{width:22.276800px;}
._13_c00056{width:24.868800px;}
._14_c00056{width:26.056800px;}
._12_c00056{width:28.296000px;}
._15_c00056{width:29.754600px;}
.fc0_c00056{color:rgb(0,0,0);}
.fs4_c00056{font-size:40.000002px;}
.fs1_c00056{font-size:48.000000px;}
.fs2_c00056{font-size:54.000000px;}
.fs3_c00056{font-size:60.000000px;}
.fs0_c00056{font-size:72.000000px;}
.y0_c00056{bottom:0.000000px;}
.ya_c00056{bottom:10.500000px;}
.y9_c00056{bottom:31.500000px;}
.y8_c00056{bottom:51.000000px;}
.y13_c00056{bottom:67.500000px;}
.y18_c00056{bottom:135.750000px;}
.y17_c00056{bottom:180.750000px;}
.y16_c00056{bottom:222.000000px;}
.y15_c00056{bottom:241.500000px;}
.y14_c00056{bottom:264.750000px;}
.y11_c00056{bottom:334.500000px;}
.y10_c00056{bottom:361.500000px;}
.yf_c00056{bottom:388.500000px;}
.ye_c00056{bottom:415.500000px;}
.yd_c00056{bottom:442.500000px;}
.yc_c00056{bottom:469.500000px;}
.yb_c00056{bottom:496.500000px;}
.y7_c00056{bottom:537.000000px;}
.y6_c00056{bottom:939.000000px;}
.y5_c00056{bottom:966.000000px;}
.y4_c00056{bottom:993.000000px;}
.y3_c00056{bottom:1041.000000px;}
.y2_c00056{bottom:1068.000000px;}
.y1_c00056{bottom:1095.000000px;}
.y12_c00056{bottom:1194.000000px;}
.h6_c00056{height:27.421876px;}
.h7_c00056{height:41.132812px;}
.h4_c00056{height:42.292969px;}
.h1_c00056{height:51.257812px;}
.h5_c00056{height:56.074219px;}
.h2_c00056{height:57.258075px;}
.h3_c00056{height:370.500000px;}
.h0_c00056{height:1263.000000px;}
.w1_c00056{width:676.499850px;}
.w0_c00056{width:892.500000px;}
.x0_c00056{left:0.000000px;}
.x3_c00056{left:7.500000px;}
.x2_c00056{left:14.141190px;}
.x1_c00056{left:150.519750px;}
.x4_c00056{left:273.933750px;}
.x5_c00056{left:281.790150px;}
.x6_c00056{left:810.335100px;}
@media print{
.v2_c00056{vertical-align:-20.521067pt;}
.v3_c00056{vertical-align:-13.333333pt;}
.v0_c00056{vertical-align:0.000000pt;}
.v1_c00056{vertical-align:20.521067pt;}
.ls2_c00056{letter-spacing:-0.008533pt;}
.ls1_c00056{letter-spacing:0.000000pt;}
.ls0_c00056{letter-spacing:0.010667pt;}
.ws0_c00056{word-spacing:-11.724800pt;}
.ws2_c00056{word-spacing:-8.888889pt;}
.ws1_c00056{word-spacing:-1.777780pt;}
.ws3_c00056{word-spacing:0.000000pt;}
._e_c00056{margin-left:-9.830400pt;}
._c_c00056{margin-left:-6.220800pt;}
._16_c00056{margin-left:-4.827733pt;}
._6_c00056{margin-left:-3.539200pt;}
._2_c00056{margin-left:-2.009600pt;}
._5_c00056{margin-left:-1.113600pt;}
._b_c00056{width:1.043200pt;}
._1_c00056{width:2.195200pt;}
._0_c00056{width:3.328000pt;}
._8_c00056{width:4.403200pt;}
._4_c00056{width:6.067200pt;}
._d_c00056{width:7.148800pt;}
._3_c00056{width:8.102400pt;}
._7_c00056{width:9.625600pt;}
._9_c00056{width:10.528000pt;}
._a_c00056{width:12.166400pt;}
._11_c00056{width:14.701333pt;}
._f_c00056{width:16.224000pt;}
._10_c00056{width:19.801600pt;}
._13_c00056{width:22.105600pt;}
._14_c00056{width:23.161600pt;}
._12_c00056{width:25.152000pt;}
._15_c00056{width:26.448533pt;}
.fs4_c00056{font-size:35.555557pt;}
.fs1_c00056{font-size:42.666667pt;}
.fs2_c00056{font-size:48.000000pt;}
.fs3_c00056{font-size:53.333333pt;}
.fs0_c00056{font-size:64.000000pt;}
.y0_c00056{bottom:0.000000pt;}
.ya_c00056{bottom:9.333333pt;}
.y9_c00056{bottom:28.000000pt;}
.y8_c00056{bottom:45.333333pt;}
.y13_c00056{bottom:60.000000pt;}
.y18_c00056{bottom:120.666667pt;}
.y17_c00056{bottom:160.666667pt;}
.y16_c00056{bottom:197.333333pt;}
.y15_c00056{bottom:214.666667pt;}
.y14_c00056{bottom:235.333333pt;}
.y11_c00056{bottom:297.333333pt;}
.y10_c00056{bottom:321.333333pt;}
.yf_c00056{bottom:345.333333pt;}
.ye_c00056{bottom:369.333333pt;}
.yd_c00056{bottom:393.333333pt;}
.yc_c00056{bottom:417.333333pt;}
.yb_c00056{bottom:441.333333pt;}
.y7_c00056{bottom:477.333333pt;}
.y6_c00056{bottom:834.666667pt;}
.y5_c00056{bottom:858.666667pt;}
.y4_c00056{bottom:882.666667pt;}
.y3_c00056{bottom:925.333333pt;}
.y2_c00056{bottom:949.333333pt;}
.y1_c00056{bottom:973.333333pt;}
.y12_c00056{bottom:1061.333333pt;}
.h6_c00056{height:24.375001pt;}
.h7_c00056{height:36.562500pt;}
.h4_c00056{height:37.593750pt;}
.h1_c00056{height:45.562500pt;}
.h5_c00056{height:49.843750pt;}
.h2_c00056{height:50.896067pt;}
.h3_c00056{height:329.333333pt;}
.h0_c00056{height:1122.666667pt;}
.w1_c00056{width:601.333200pt;}
.w0_c00056{width:793.333333pt;}
.x0_c00056{left:0.000000pt;}
.x3_c00056{left:6.666667pt;}
.x2_c00056{left:12.569947pt;}
.x1_c00056{left:133.795333pt;}
.x4_c00056{left:243.496667pt;}
.x5_c00056{left:250.480133pt;}
.x6_c00056{left:720.297867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_21ea5c3fce56247999b4afa9.woff2')format("woff");}.ff1_c00057{font-family:ff1_c00057;line-height:0.934082;font-style:normal;font-weight:normal;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_e829501d3c99a1c39253402e.woff2')format("woff");}.ff2_c00057{font-family:ff2_c00057;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00057;src:url('chunks/assets/font_f77ef19e5546857b103e47da.woff2')format("woff");}.ff3_c00057{font-family:ff3_c00057;line-height:0.756348;font-style:normal;font-weight:normal;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_36d3829f7b092d8df04a9ca6.woff2')format("woff");}.ff4_c00057{font-family:ff4_c00057;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00057;src:url('chunks/assets/font_cc458c8f5c943f476f635f2e.woff2')format("woff");}.ff5_c00057{font-family:ff5_c00057;line-height:0.905762;font-style:normal;font-weight: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_c00057;src:url('chunks/assets/font_c5f37007e3463de3a3ada2c5.woff2')format("woff");}.ff6_c00057{font-family:ff6_c00057;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00057{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00057{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00057{vertical-align:-23.086200px;}
.v3_c00057{vertical-align:-15.000000px;}
.v0_c00057{vertical-align:0.000000px;}
.v1_c00057{vertical-align:23.086200px;}
.ls2_c00057{letter-spacing:-0.014400px;}
.ls1_c00057{letter-spacing:-0.009600px;}
.ls0_c00057{letter-spacing:0.000000px;}
.ls4_c00057{letter-spacing:0.008000px;}
.ls3_c00057{letter-spacing:0.012000px;}
.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;}
}
.ws2_c00057{word-spacing:-19.785600px;}
.ws6_c00057{word-spacing:-15.000000px;}
.ws1_c00057{word-spacing:-13.190400px;}
.ws5_c00057{word-spacing:-11.128001px;}
.ws4_c00057{word-spacing:-10.000001px;}
.ws3_c00057{word-spacing:-6.067200px;}
.ws0_c00057{word-spacing:-0.072000px;}
.ws7_c00057{word-spacing:0.000000px;}
._11_c00057{margin-left:-9.280800px;}
._19_c00057{margin-left:-7.120800px;}
._13_c00057{margin-left:-5.616000px;}
._1_c00057{margin-left:-3.862140px;}
._a_c00057{margin-left:-2.741100px;}
._3_c00057{margin-left:-1.188000px;}
._5_c00057{width:1.562400px;}
._7_c00057{width:3.232800px;}
._f_c00057{width:4.492800px;}
._18_c00057{width:6.329640px;}
._14_c00057{width:8.222400px;}
._8_c00057{width:10.116000px;}
._6_c00057{width:11.793600px;}
._0_c00057{width:13.317900px;}
._4_c00057{width:14.551200px;}
._9_c00057{width:15.831480px;}
._2_c00057{width:17.164800px;}
._15_c00057{width:18.187200px;}
._12_c00057{width:21.096480px;}
._17_c00057{width:22.979820px;}
._16_c00057{width:25.819200px;}
._10_c00057{width:30.722400px;}
._e_c00057{width:32.176800px;}
._c_c00057{width:33.717600px;}
._d_c00057{width:35.272800px;}
._b_c00057{width:39.163740px;}
.fc0_c00057{color:rgb(0,0,0);}
.fs3_c00057{font-size:40.000002px;}
.fs1_c00057{font-size:48.000000px;}
.fs2_c00057{font-size:60.000000px;}
.fs0_c00057{font-size:72.000000px;}
.y0_c00057{bottom:0.000000px;}
.y18_c00057{bottom:67.500000px;}
.y1e_c00057{bottom:132.000000px;}
.y1d_c00057{bottom:151.500000px;}
.y1c_c00057{bottom:174.850050px;}
.y1b_c00057{bottom:219.750000px;}
.y1a_c00057{bottom:264.750000px;}
.y19_c00057{bottom:309.750000px;}
.y16_c00057{bottom:423.000000px;}
.y15_c00057{bottom:450.000000px;}
.y14_c00057{bottom:498.000000px;}
.y13_c00057{bottom:525.000000px;}
.y12_c00057{bottom:552.000000px;}
.y11_c00057{bottom:600.000000px;}
.y10_c00057{bottom:627.000000px;}
.yf_c00057{bottom:654.000000px;}
.ye_c00057{bottom:702.000000px;}
.yd_c00057{bottom:729.000000px;}
.yc_c00057{bottom:756.000000px;}
.yb_c00057{bottom:783.000000px;}
.ya_c00057{bottom:810.000000px;}
.y9_c00057{bottom:837.000000px;}
.y8_c00057{bottom:864.000000px;}
.y7_c00057{bottom:912.000000px;}
.y6_c00057{bottom:939.000000px;}
.y5_c00057{bottom:966.000000px;}
.y4_c00057{bottom:993.000000px;}
.y3_c00057{bottom:1020.000000px;}
.y2_c00057{bottom:1068.000000px;}
.y1_c00057{bottom:1095.000000px;}
.y17_c00057{bottom:1194.000000px;}
.h5_c00057{height:27.480470px;}
.h6_c00057{height:29.472658px;}
.h7_c00057{height:41.220703px;}
.h4_c00057{height:44.208984px;}
.h1_c00057{height:51.257812px;}
.h3_c00057{height:56.074219px;}
.h2_c00057{height:57.258075px;}
.h0_c00057{height:1263.000000px;}
.w0_c00057{width:892.500000px;}
.x0_c00057{left:0.000000px;}
.x1_c00057{left:65.480310px;}
@media print{
.v2_c00057{vertical-align:-20.521067pt;}
.v3_c00057{vertical-align:-13.333333pt;}
.v0_c00057{vertical-align:0.000000pt;}
.v1_c00057{vertical-align:20.521067pt;}
.ls2_c00057{letter-spacing:-0.012800pt;}
.ls1_c00057{letter-spacing:-0.008533pt;}
.ls0_c00057{letter-spacing:0.000000pt;}
.ls4_c00057{letter-spacing:0.007111pt;}
.ls3_c00057{letter-spacing:0.010667pt;}
.ws2_c00057{word-spacing:-17.587200pt;}
.ws6_c00057{word-spacing:-13.333333pt;}
.ws1_c00057{word-spacing:-11.724800pt;}
.ws5_c00057{word-spacing:-9.891556pt;}
.ws4_c00057{word-spacing:-8.888889pt;}
.ws3_c00057{word-spacing:-5.393067pt;}
.ws0_c00057{word-spacing:-0.064000pt;}
.ws7_c00057{word-spacing:0.000000pt;}
._11_c00057{margin-left:-8.249600pt;}
._19_c00057{margin-left:-6.329600pt;}
._13_c00057{margin-left:-4.992000pt;}
._1_c00057{margin-left:-3.433013pt;}
._a_c00057{margin-left:-2.436533pt;}
._3_c00057{margin-left:-1.056000pt;}
._5_c00057{width:1.388800pt;}
._7_c00057{width:2.873600pt;}
._f_c00057{width:3.993600pt;}
._18_c00057{width:5.626347pt;}
._14_c00057{width:7.308800pt;}
._8_c00057{width:8.992000pt;}
._6_c00057{width:10.483200pt;}
._0_c00057{width:11.838133pt;}
._4_c00057{width:12.934400pt;}
._9_c00057{width:14.072427pt;}
._2_c00057{width:15.257600pt;}
._15_c00057{width:16.166400pt;}
._12_c00057{width:18.752427pt;}
._17_c00057{width:20.426507pt;}
._16_c00057{width:22.950400pt;}
._10_c00057{width:27.308800pt;}
._e_c00057{width:28.601600pt;}
._c_c00057{width:29.971200pt;}
._d_c00057{width:31.353600pt;}
._b_c00057{width:34.812213pt;}
.fs3_c00057{font-size:35.555557pt;}
.fs1_c00057{font-size:42.666667pt;}
.fs2_c00057{font-size:53.333333pt;}
.fs0_c00057{font-size:64.000000pt;}
.y0_c00057{bottom:0.000000pt;}
.y18_c00057{bottom:60.000000pt;}
.y1e_c00057{bottom:117.333333pt;}
.y1d_c00057{bottom:134.666667pt;}
.y1c_c00057{bottom:155.422267pt;}
.y1b_c00057{bottom:195.333333pt;}
.y1a_c00057{bottom:235.333333pt;}
.y19_c00057{bottom:275.333333pt;}
.y16_c00057{bottom:376.000000pt;}
.y15_c00057{bottom:400.000000pt;}
.y14_c00057{bottom:442.666667pt;}
.y13_c00057{bottom:466.666667pt;}
.y12_c00057{bottom:490.666667pt;}
.y11_c00057{bottom:533.333333pt;}
.y10_c00057{bottom:557.333333pt;}
.yf_c00057{bottom:581.333333pt;}
.ye_c00057{bottom:624.000000pt;}
.yd_c00057{bottom:648.000000pt;}
.yc_c00057{bottom:672.000000pt;}
.yb_c00057{bottom:696.000000pt;}
.ya_c00057{bottom:720.000000pt;}
.y9_c00057{bottom:744.000000pt;}
.y8_c00057{bottom:768.000000pt;}
.y7_c00057{bottom:810.666667pt;}
.y6_c00057{bottom:834.666667pt;}
.y5_c00057{bottom:858.666667pt;}
.y4_c00057{bottom:882.666667pt;}
.y3_c00057{bottom:906.666667pt;}
.y2_c00057{bottom:949.333333pt;}
.y1_c00057{bottom:973.333333pt;}
.y17_c00057{bottom:1061.333333pt;}
.h5_c00057{height:24.427085pt;}
.h6_c00057{height:26.197918pt;}
.h7_c00057{height:36.640625pt;}
.h4_c00057{height:39.296875pt;}
.h1_c00057{height:45.562500pt;}
.h3_c00057{height:49.843750pt;}
.h2_c00057{height:50.896067pt;}
.h0_c00057{height:1122.666667pt;}
.w0_c00057{width:793.333333pt;}
.x0_c00057{left:0.000000pt;}
.x1_c00057{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_862c51ee7b29d5c5506bc271.woff2')format("woff");}.ff1_c00058{font-family:ff1_c00058;line-height:0.905762;font-style:normal;font-weight:normal;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_d28bb9a17bc31f54d06aad83.woff2')format("woff");}.ff2_c00058{font-family:ff2_c00058;line-height:1.124023;font-style:normal;font-weight:normal;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_48b7e059cd8c43efc348ea9a.woff2')format("woff");}.ff3_c00058{font-family:ff3_c00058;line-height:0.979004;font-style:normal;font-weight:normal;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_476f76f86bc36fa3e8668442.woff2')format("woff");}.ff4_c00058{font-family:ff4_c00058;line-height:0.934082;font-style:normal;font-weight:normal;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_50dc245c01f1a79c743c93b9.woff2')format("woff");}.ff5_c00058{font-family:ff5_c00058;line-height:1.155762;font-style:normal;font-weight: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_1f5517edb4c3e0aac4262725.woff2')format("woff");}.ff6_c00058{font-family:ff6_c00058;line-height:0.891113;font-style: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);}
.v2_c00058{vertical-align:-23.086200px;}
.v3_c00058{vertical-align:-15.000000px;}
.v0_c00058{vertical-align:0.000000px;}
.v1_c00058{vertical-align:23.086200px;}
.ls4_c00058{letter-spacing:-0.007200px;}
.ls3_c00058{letter-spacing:0.000000px;}
.ls1_c00058{letter-spacing:0.012000px;}
.ls0_c00058{letter-spacing:0.024000px;}
.ls2_c00058{letter-spacing:3.999999px;}
.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:-15.000000px;}
.ws0_c00058{word-spacing:-13.200000px;}
.ws1_c00058{word-spacing:-10.000001px;}
.ws3_c00058{word-spacing:0.000000px;}
._0_c00058{margin-left:-8.436000px;}
._1_c00058{margin-left:-5.569200px;}
._6_c00058{margin-left:-4.212000px;}
._7_c00058{margin-left:-3.110400px;}
._3_c00058{margin-left:-1.252800px;}
._1a_c00058{width:1.011600px;}
._4_c00058{width:2.016000px;}
._2_c00058{width:3.082800px;}
._5_c00058{width:4.736400px;}
._c_c00058{width:6.691200px;}
._11_c00058{width:7.802400px;}
._d_c00058{width:9.079200px;}
._e_c00058{width:10.353600px;}
._10_c00058{width:12.211200px;}
._f_c00058{width:13.320000px;}
._1b_c00058{width:14.522400px;}
._12_c00058{width:15.724800px;}
._13_c00058{width:17.331600px;}
._14_c00058{width:18.619200px;}
._16_c00058{width:23.557200px;}
._15_c00058{width:24.768000px;}
._19_c00058{width:26.928000px;}
._18_c00058{width:27.986400px;}
._17_c00058{width:30.060000px;}
._b_c00058{width:33.896400px;}
._8_c00058{width:35.380800px;}
._a_c00058{width:37.382400px;}
._9_c00058{width:39.434400px;}
.fc0_c00058{color:rgb(0,0,0);}
.fs5_c00058{font-size:40.000002px;}
.fs3_c00058{font-size:48.000000px;}
.fs4_c00058{font-size:60.000000px;}
.fs0_c00058{font-size:72.000000px;}
.fs2_c00058{font-size:84.000000px;}
.fs1_c00058{font-size:120.000000px;}
.y0_c00058{bottom:0.000000px;}
.y15_c00058{bottom:67.500000px;}
.y1a_c00058{bottom:132.000000px;}
.y19_c00058{bottom:155.250000px;}
.y18_c00058{bottom:200.250000px;}
.y17_c00058{bottom:241.500000px;}
.y16_c00058{bottom:264.750000px;}
.y13_c00058{bottom:336.000000px;}
.y12_c00058{bottom:363.000000px;}
.y11_c00058{bottom:390.000000px;}
.y10_c00058{bottom:417.000000px;}
.yf_c00058{bottom:444.000000px;}
.ye_c00058{bottom:492.000000px;}
.yd_c00058{bottom:519.000000px;}
.yc_c00058{bottom:546.000000px;}
.yb_c00058{bottom:573.000000px;}
.ya_c00058{bottom:621.000000px;}
.y9_c00058{bottom:648.000000px;}
.y8_c00058{bottom:675.000000px;}
.y7_c00058{bottom:723.000000px;}
.y6_c00058{bottom:750.000000px;}
.y5_c00058{bottom:777.000000px;}
.y4_c00058{bottom:804.000000px;}
.y3_c00058{bottom:831.000000px;}
.y2_c00058{bottom:891.000000px;}
.y1_c00058{bottom:1041.000000px;}
.y14_c00058{bottom:1194.000000px;}
.h6_c00058{height:27.480470px;}
.h7_c00058{height:41.220703px;}
.h3_c00058{height:51.257812px;}
.h5_c00058{height:56.074219px;}
.h4_c00058{height:57.258075px;}
.h2_c00058{height:80.882812px;}
.h1_c00058{height:113.671875px;}
.h0_c00058{height:1263.000000px;}
.w0_c00058{width:892.500000px;}
.x0_c00058{left:0.000000px;}
.x1_c00058{left:150.519750px;}
.x2_c00058{left:281.790150px;}
.x3_c00058{left:810.335100px;}
@media print{
.v2_c00058{vertical-align:-20.521067pt;}
.v3_c00058{vertical-align:-13.333333pt;}
.v0_c00058{vertical-align:0.000000pt;}
.v1_c00058{vertical-align:20.521067pt;}
.ls4_c00058{letter-spacing:-0.006400pt;}
.ls3_c00058{letter-spacing:0.000000pt;}
.ls1_c00058{letter-spacing:0.010667pt;}
.ls0_c00058{letter-spacing:0.021333pt;}
.ls2_c00058{letter-spacing:3.555555pt;}
.ws2_c00058{word-spacing:-13.333333pt;}
.ws0_c00058{word-spacing:-11.733333pt;}
.ws1_c00058{word-spacing:-8.888889pt;}
.ws3_c00058{word-spacing:0.000000pt;}
._0_c00058{margin-left:-7.498667pt;}
._1_c00058{margin-left:-4.950400pt;}
._6_c00058{margin-left:-3.744000pt;}
._7_c00058{margin-left:-2.764800pt;}
._3_c00058{margin-left:-1.113600pt;}
._1a_c00058{width:0.899200pt;}
._4_c00058{width:1.792000pt;}
._2_c00058{width:2.740267pt;}
._5_c00058{width:4.210133pt;}
._c_c00058{width:5.947733pt;}
._11_c00058{width:6.935467pt;}
._d_c00058{width:8.070400pt;}
._e_c00058{width:9.203200pt;}
._10_c00058{width:10.854400pt;}
._f_c00058{width:11.840000pt;}
._1b_c00058{width:12.908800pt;}
._12_c00058{width:13.977600pt;}
._13_c00058{width:15.405867pt;}
._14_c00058{width:16.550400pt;}
._16_c00058{width:20.939733pt;}
._15_c00058{width:22.016000pt;}
._19_c00058{width:23.936000pt;}
._18_c00058{width:24.876800pt;}
._17_c00058{width:26.720000pt;}
._b_c00058{width:30.130133pt;}
._8_c00058{width:31.449600pt;}
._a_c00058{width:33.228800pt;}
._9_c00058{width:35.052800pt;}
.fs5_c00058{font-size:35.555557pt;}
.fs3_c00058{font-size:42.666667pt;}
.fs4_c00058{font-size:53.333333pt;}
.fs0_c00058{font-size:64.000000pt;}
.fs2_c00058{font-size:74.666667pt;}
.fs1_c00058{font-size:106.666667pt;}
.y0_c00058{bottom:0.000000pt;}
.y15_c00058{bottom:60.000000pt;}
.y1a_c00058{bottom:117.333333pt;}
.y19_c00058{bottom:138.000000pt;}
.y18_c00058{bottom:178.000000pt;}
.y17_c00058{bottom:214.666667pt;}
.y16_c00058{bottom:235.333333pt;}
.y13_c00058{bottom:298.666667pt;}
.y12_c00058{bottom:322.666667pt;}
.y11_c00058{bottom:346.666667pt;}
.y10_c00058{bottom:370.666667pt;}
.yf_c00058{bottom:394.666667pt;}
.ye_c00058{bottom:437.333333pt;}
.yd_c00058{bottom:461.333333pt;}
.yc_c00058{bottom:485.333333pt;}
.yb_c00058{bottom:509.333333pt;}
.ya_c00058{bottom:552.000000pt;}
.y9_c00058{bottom:576.000000pt;}
.y8_c00058{bottom:600.000000pt;}
.y7_c00058{bottom:642.666667pt;}
.y6_c00058{bottom:666.666667pt;}
.y5_c00058{bottom:690.666667pt;}
.y4_c00058{bottom:714.666667pt;}
.y3_c00058{bottom:738.666667pt;}
.y2_c00058{bottom:792.000000pt;}
.y1_c00058{bottom:925.333333pt;}
.y14_c00058{bottom:1061.333333pt;}
.h6_c00058{height:24.427085pt;}
.h7_c00058{height:36.640625pt;}
.h3_c00058{height:45.562500pt;}
.h5_c00058{height:49.843750pt;}
.h4_c00058{height:50.896067pt;}
.h2_c00058{height:71.895833pt;}
.h1_c00058{height:101.041667pt;}
.h0_c00058{height:1122.666667pt;}
.w0_c00058{width:793.333333pt;}
.x0_c00058{left:0.000000pt;}
.x1_c00058{left:133.795333pt;}
.x2_c00058{left:250.480133pt;}
.x3_c00058{left:720.297867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9091f5e4d4435e79cab5883f.woff2')format("woff");}.ff1_c00059{font-family:ff1_c00059;line-height:0.934082;font-style:normal;font-weight:normal;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_62d893739bc35c013a908efe.woff2')format("woff");}.ff2_c00059{font-family:ff2_c00059;line-height:0.755859;font-style:normal;font-weight:normal;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_0c4c8dab77f9e0cf64c90a4d.woff2')format("woff");}.ff3_c00059{font-family:ff3_c00059;line-height:1.155762;font-style:normal;font-weight:normal;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_9ec81a86a7d589d4757d19a6.woff2')format("woff");}.ff4_c00059{font-family:ff4_c00059;line-height:0.905762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00059;src:url('chunks/assets/font_493fadd7c85e5a594297a0eb.woff2')format("woff");}.ff5_c00059{font-family:ff5_c00059;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00059{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00059{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00059{vertical-align:-23.086200px;}
.v3_c00059{vertical-align:-15.000000px;}
.v0_c00059{vertical-align:0.000000px;}
.v1_c00059{vertical-align:23.086200px;}
.ls7_c00059{letter-spacing:-5.628000px;}
.ls8_c00059{letter-spacing:-0.282000px;}
.ls6_c00059{letter-spacing:0.000000px;}
.ls0_c00059{letter-spacing:0.007200px;}
.ls5_c00059{letter-spacing:0.012000px;}
.ls3_c00059{letter-spacing:2.708400px;}
.ls1_c00059{letter-spacing:3.552000px;}
.ls4_c00059{letter-spacing:3.999999px;}
.ls2_c00059{letter-spacing:9.552000px;}
.sc__c00059{text-shadow:none;}
.sc0_c00059{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00059{-webkit-text-stroke:0px transparent;}
.sc0_c00059{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00059{word-spacing:-19.807200px;}
.ws0_c00059{word-spacing:-19.800000px;}
.ws4_c00059{word-spacing:-15.000000px;}
.ws2_c00059{word-spacing:-13.200000px;}
.ws3_c00059{word-spacing:-10.000001px;}
.ws5_c00059{word-spacing:0.000000px;}
._d_c00059{margin-left:-10.653600px;}
._15_c00059{margin-left:-5.696001px;}
._2_c00059{margin-left:-4.615200px;}
._14_c00059{margin-left:-3.427200px;}
._4_c00059{margin-left:-2.304000px;}
._e_c00059{margin-left:-1.130400px;}
._1_c00059{width:1.980000px;}
._9_c00059{width:3.002400px;}
._0_c00059{width:4.053600px;}
._c_c00059{width:5.148000px;}
._5_c00059{width:6.271200px;}
._b_c00059{width:7.279200px;}
._3_c00059{width:8.524800px;}
._a_c00059{width:9.928800px;}
._6_c00059{width:11.152800px;}
._7_c00059{width:13.125600px;}
._8_c00059{width:15.523200px;}
._12_c00059{width:23.608800px;}
._10_c00059{width:24.724800px;}
._13_c00059{width:26.632800px;}
._f_c00059{width:28.958400px;}
._11_c00059{width:31.197600px;}
.fc0_c00059{color:rgb(0,0,0);}
.fs3_c00059{font-size:40.000002px;}
.fs1_c00059{font-size:48.000000px;}
.fs2_c00059{font-size:60.000000px;}
.fs0_c00059{font-size:72.000000px;}
.y0_c00059{bottom:0.000000px;}
.y13_c00059{bottom:67.500000px;}
.y1f_c00059{bottom:135.750000px;}
.y1e_c00059{bottom:180.750000px;}
.y1d_c00059{bottom:222.000000px;}
.y1c_c00059{bottom:241.500000px;}
.y1b_c00059{bottom:264.750000px;}
.y1a_c00059{bottom:306.000000px;}
.y19_c00059{bottom:329.250000px;}
.y18_c00059{bottom:370.500000px;}
.y17_c00059{bottom:390.000000px;}
.y16_c00059{bottom:413.250000px;}
.y15_c00059{bottom:454.500000px;}
.y14_c00059{bottom:477.750000px;}
.y11_c00059{bottom:558.000000px;}
.y10_c00059{bottom:585.000000px;}
.yf_c00059{bottom:612.000000px;}
.ye_c00059{bottom:660.000000px;}
.yd_c00059{bottom:687.000000px;}
.yc_c00059{bottom:714.000000px;}
.yb_c00059{bottom:762.000000px;}
.ya_c00059{bottom:789.000000px;}
.y9_c00059{bottom:837.000000px;}
.y8_c00059{bottom:864.000000px;}
.y7_c00059{bottom:891.000000px;}
.y6_c00059{bottom:939.000000px;}
.y5_c00059{bottom:966.000000px;}
.y4_c00059{bottom:993.000000px;}
.y3_c00059{bottom:1020.000000px;}
.y2_c00059{bottom:1068.000000px;}
.y1_c00059{bottom:1095.000000px;}
.y12_c00059{bottom:1194.000000px;}
.h5_c00059{height:27.480470px;}
.h6_c00059{height:41.220703px;}
.h4_c00059{height:44.208984px;}
.h1_c00059{height:51.257812px;}
.h3_c00059{height:56.074219px;}
.h2_c00059{height:57.258075px;}
.h0_c00059{height:1263.000000px;}
.w0_c00059{width:892.500000px;}
.x0_c00059{left:0.000000px;}
.x1_c00059{left:65.480310px;}
@media print{
.v2_c00059{vertical-align:-20.521067pt;}
.v3_c00059{vertical-align:-13.333333pt;}
.v0_c00059{vertical-align:0.000000pt;}
.v1_c00059{vertical-align:20.521067pt;}
.ls7_c00059{letter-spacing:-5.002667pt;}
.ls8_c00059{letter-spacing:-0.250667pt;}
.ls6_c00059{letter-spacing:0.000000pt;}
.ls0_c00059{letter-spacing:0.006400pt;}
.ls5_c00059{letter-spacing:0.010667pt;}
.ls3_c00059{letter-spacing:2.407467pt;}
.ls1_c00059{letter-spacing:3.157333pt;}
.ls4_c00059{letter-spacing:3.555555pt;}
.ls2_c00059{letter-spacing:8.490667pt;}
.ws1_c00059{word-spacing:-17.606400pt;}
.ws0_c00059{word-spacing:-17.600000pt;}
.ws4_c00059{word-spacing:-13.333333pt;}
.ws2_c00059{word-spacing:-11.733333pt;}
.ws3_c00059{word-spacing:-8.888889pt;}
.ws5_c00059{word-spacing:0.000000pt;}
._d_c00059{margin-left:-9.469867pt;}
._15_c00059{margin-left:-5.063112pt;}
._2_c00059{margin-left:-4.102400pt;}
._14_c00059{margin-left:-3.046400pt;}
._4_c00059{margin-left:-2.048000pt;}
._e_c00059{margin-left:-1.004800pt;}
._1_c00059{width:1.760000pt;}
._9_c00059{width:2.668800pt;}
._0_c00059{width:3.603200pt;}
._c_c00059{width:4.576000pt;}
._5_c00059{width:5.574400pt;}
._b_c00059{width:6.470400pt;}
._3_c00059{width:7.577600pt;}
._a_c00059{width:8.825600pt;}
._6_c00059{width:9.913600pt;}
._7_c00059{width:11.667200pt;}
._8_c00059{width:13.798400pt;}
._12_c00059{width:20.985600pt;}
._10_c00059{width:21.977600pt;}
._13_c00059{width:23.673600pt;}
._f_c00059{width:25.740800pt;}
._11_c00059{width:27.731200pt;}
.fs3_c00059{font-size:35.555557pt;}
.fs1_c00059{font-size:42.666667pt;}
.fs2_c00059{font-size:53.333333pt;}
.fs0_c00059{font-size:64.000000pt;}
.y0_c00059{bottom:0.000000pt;}
.y13_c00059{bottom:60.000000pt;}
.y1f_c00059{bottom:120.666667pt;}
.y1e_c00059{bottom:160.666667pt;}
.y1d_c00059{bottom:197.333333pt;}
.y1c_c00059{bottom:214.666667pt;}
.y1b_c00059{bottom:235.333333pt;}
.y1a_c00059{bottom:272.000000pt;}
.y19_c00059{bottom:292.666667pt;}
.y18_c00059{bottom:329.333333pt;}
.y17_c00059{bottom:346.666667pt;}
.y16_c00059{bottom:367.333333pt;}
.y15_c00059{bottom:404.000000pt;}
.y14_c00059{bottom:424.666667pt;}
.y11_c00059{bottom:496.000000pt;}
.y10_c00059{bottom:520.000000pt;}
.yf_c00059{bottom:544.000000pt;}
.ye_c00059{bottom:586.666667pt;}
.yd_c00059{bottom:610.666667pt;}
.yc_c00059{bottom:634.666667pt;}
.yb_c00059{bottom:677.333333pt;}
.ya_c00059{bottom:701.333333pt;}
.y9_c00059{bottom:744.000000pt;}
.y8_c00059{bottom:768.000000pt;}
.y7_c00059{bottom:792.000000pt;}
.y6_c00059{bottom:834.666667pt;}
.y5_c00059{bottom:858.666667pt;}
.y4_c00059{bottom:882.666667pt;}
.y3_c00059{bottom:906.666667pt;}
.y2_c00059{bottom:949.333333pt;}
.y1_c00059{bottom:973.333333pt;}
.y12_c00059{bottom:1061.333333pt;}
.h5_c00059{height:24.427085pt;}
.h6_c00059{height:36.640625pt;}
.h4_c00059{height:39.296875pt;}
.h1_c00059{height:45.562500pt;}
.h3_c00059{height:49.843750pt;}
.h2_c00059{height:50.896067pt;}
.h0_c00059{height:1122.666667pt;}
.w0_c00059{width:793.333333pt;}
.x0_c00059{left:0.000000pt;}
.x1_c00059{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3e1300a16549e7f633ef39f9.woff2')format("woff");}.ff1_c00060{font-family:ff1_c00060;line-height:0.934082;font-style:normal;font-weight:normal;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_a89045ec3dd3d48620c6300a.woff2')format("woff");}.ff2_c00060{font-family:ff2_c00060;line-height:1.155762;font-style:normal;font-weight:normal;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_e24f9a5a683166315890858c.woff2')format("woff");}.ff3_c00060{font-family:ff3_c00060;line-height:1.101562;font-style:normal;font-weight:normal;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_c83f07b88b7204f6f21adc12.woff2')format("woff");}.ff4_c00060{font-family:ff4_c00060;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00060{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00060{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00060{vertical-align:-23.086200px;}
.v3_c00060{vertical-align:-15.000000px;}
.v0_c00060{vertical-align:0.000000px;}
.v1_c00060{vertical-align:23.086200px;}
.ls7_c00060{letter-spacing:-4.524000px;}
.ls5_c00060{letter-spacing:-3.942000px;}
.ls8_c00060{letter-spacing:-2.538000px;}
.ls3_c00060{letter-spacing:-2.142000px;}
.ls4_c00060{letter-spacing:-0.960000px;}
.ls9_c00060{letter-spacing:-0.192000px;}
.ls6_c00060{letter-spacing:-0.012000px;}
.ls2_c00060{letter-spacing:-0.009600px;}
.ls1_c00060{letter-spacing:0.000000px;}
.ls0_c00060{letter-spacing:0.012000px;}
.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:-19.800000px;}
.ws3_c00060{word-spacing:-15.000000px;}
.ws4_c00060{word-spacing:-14.988000px;}
.ws0_c00060{word-spacing:-13.190400px;}
.ws2_c00060{word-spacing:-10.000001px;}
.ws5_c00060{word-spacing:-2.000002px;}
.ws7_c00060{word-spacing:0.000000px;}
.ws6_c00060{word-spacing:3.999998px;}
._14_c00060{margin-left:-15.984594px;}
._c_c00060{margin-left:-10.584000px;}
._17_c00060{margin-left:-6.642000px;}
._13_c00060{margin-left:-5.471202px;}
._5_c00060{margin-left:-4.212000px;}
._0_c00060{margin-left:-2.764800px;}
._3_c00060{margin-left:-1.490400px;}
._2_c00060{width:1.641600px;}
._1_c00060{width:3.016800px;}
._4_c00060{width:4.536000px;}
._b_c00060{width:5.853600px;}
._7_c00060{width:7.596000px;}
._8_c00060{width:9.302400px;}
._a_c00060{width:10.843200px;}
._9_c00060{width:11.944800px;}
._6_c00060{width:13.500000px;}
._12_c00060{width:16.725600px;}
._18_c00060{width:18.622800px;}
._15_c00060{width:19.941600px;}
._19_c00060{width:21.444000px;}
._16_c00060{width:23.180802px;}
._f_c00060{width:25.776000px;}
._11_c00060{width:27.100800px;}
._d_c00060{width:28.749600px;}
._e_c00060{width:30.297600px;}
._10_c00060{width:31.449600px;}
.fc0_c00060{color:rgb(0,0,0);}
.fs3_c00060{font-size:40.000002px;}
.fs1_c00060{font-size:48.000000px;}
.fs2_c00060{font-size:60.000000px;}
.fs0_c00060{font-size:72.000000px;}
.y0_c00060{bottom:0.000000px;}
.y10_c00060{bottom:67.500000px;}
.y22_c00060{bottom:132.000000px;}
.y21_c00060{bottom:151.500000px;}
.y20_c00060{bottom:171.000000px;}
.y1f_c00060{bottom:194.250000px;}
.y1e_c00060{bottom:235.500000px;}
.y1d_c00060{bottom:255.000000px;}
.y1c_c00060{bottom:274.500000px;}
.y1b_c00060{bottom:294.000000px;}
.y1a_c00060{bottom:313.500000px;}
.y19_c00060{bottom:333.000000px;}
.y18_c00060{bottom:356.250000px;}
.y17_c00060{bottom:397.500000px;}
.y16_c00060{bottom:420.750000px;}
.y15_c00060{bottom:462.000000px;}
.y14_c00060{bottom:485.250000px;}
.y13_c00060{bottom:526.500000px;}
.y12_c00060{bottom:546.000000px;}
.y11_c00060{bottom:569.250000px;}
.ye_c00060{bottom:660.000000px;}
.yd_c00060{bottom:687.000000px;}
.yc_c00060{bottom:714.000000px;}
.yb_c00060{bottom:741.000000px;}
.ya_c00060{bottom:789.000000px;}
.y9_c00060{bottom:816.000000px;}
.y8_c00060{bottom:843.000000px;}
.y7_c00060{bottom:891.000000px;}
.y6_c00060{bottom:918.000000px;}
.y5_c00060{bottom:966.000000px;}
.y4_c00060{bottom:993.000000px;}
.y3_c00060{bottom:1041.000000px;}
.y2_c00060{bottom:1068.000000px;}
.y1_c00060{bottom:1095.000000px;}
.yf_c00060{bottom:1194.000000px;}
.h4_c00060{height:37.968750px;}
.h1_c00060{height:51.257812px;}
.h5_c00060{height:52.968750px;}
.h3_c00060{height:56.074219px;}
.h2_c00060{height:57.258075px;}
.h0_c00060{height:1263.000000px;}
.w0_c00060{width:892.500000px;}
.x0_c00060{left:0.000000px;}
.x1_c00060{left:150.519750px;}
.x2_c00060{left:281.790150px;}
.x3_c00060{left:810.335100px;}
@media print{
.v2_c00060{vertical-align:-20.521067pt;}
.v3_c00060{vertical-align:-13.333333pt;}
.v0_c00060{vertical-align:0.000000pt;}
.v1_c00060{vertical-align:20.521067pt;}
.ls7_c00060{letter-spacing:-4.021333pt;}
.ls5_c00060{letter-spacing:-3.504000pt;}
.ls8_c00060{letter-spacing:-2.256000pt;}
.ls3_c00060{letter-spacing:-1.904000pt;}
.ls4_c00060{letter-spacing:-0.853333pt;}
.ls9_c00060{letter-spacing:-0.170667pt;}
.ls6_c00060{letter-spacing:-0.010667pt;}
.ls2_c00060{letter-spacing:-0.008533pt;}
.ls1_c00060{letter-spacing:0.000000pt;}
.ls0_c00060{letter-spacing:0.010667pt;}
.ws1_c00060{word-spacing:-17.600000pt;}
.ws3_c00060{word-spacing:-13.333333pt;}
.ws4_c00060{word-spacing:-13.322667pt;}
.ws0_c00060{word-spacing:-11.724800pt;}
.ws2_c00060{word-spacing:-8.888889pt;}
.ws5_c00060{word-spacing:-1.777780pt;}
.ws7_c00060{word-spacing:0.000000pt;}
.ws6_c00060{word-spacing:3.555553pt;}
._14_c00060{margin-left:-14.208528pt;}
._c_c00060{margin-left:-9.408000pt;}
._17_c00060{margin-left:-5.904000pt;}
._13_c00060{margin-left:-4.863291pt;}
._5_c00060{margin-left:-3.744000pt;}
._0_c00060{margin-left:-2.457600pt;}
._3_c00060{margin-left:-1.324800pt;}
._2_c00060{width:1.459200pt;}
._1_c00060{width:2.681600pt;}
._4_c00060{width:4.032000pt;}
._b_c00060{width:5.203200pt;}
._7_c00060{width:6.752000pt;}
._8_c00060{width:8.268800pt;}
._a_c00060{width:9.638400pt;}
._9_c00060{width:10.617600pt;}
._6_c00060{width:12.000000pt;}
._12_c00060{width:14.867200pt;}
._18_c00060{width:16.553600pt;}
._15_c00060{width:17.725867pt;}
._19_c00060{width:19.061333pt;}
._16_c00060{width:20.605157pt;}
._f_c00060{width:22.912000pt;}
._11_c00060{width:24.089600pt;}
._d_c00060{width:25.555200pt;}
._e_c00060{width:26.931200pt;}
._10_c00060{width:27.955200pt;}
.fs3_c00060{font-size:35.555557pt;}
.fs1_c00060{font-size:42.666667pt;}
.fs2_c00060{font-size:53.333333pt;}
.fs0_c00060{font-size:64.000000pt;}
.y0_c00060{bottom:0.000000pt;}
.y10_c00060{bottom:60.000000pt;}
.y22_c00060{bottom:117.333333pt;}
.y21_c00060{bottom:134.666667pt;}
.y20_c00060{bottom:152.000000pt;}
.y1f_c00060{bottom:172.666667pt;}
.y1e_c00060{bottom:209.333333pt;}
.y1d_c00060{bottom:226.666667pt;}
.y1c_c00060{bottom:244.000000pt;}
.y1b_c00060{bottom:261.333333pt;}
.y1a_c00060{bottom:278.666667pt;}
.y19_c00060{bottom:296.000000pt;}
.y18_c00060{bottom:316.666667pt;}
.y17_c00060{bottom:353.333333pt;}
.y16_c00060{bottom:374.000000pt;}
.y15_c00060{bottom:410.666667pt;}
.y14_c00060{bottom:431.333333pt;}
.y13_c00060{bottom:468.000000pt;}
.y12_c00060{bottom:485.333333pt;}
.y11_c00060{bottom:506.000000pt;}
.ye_c00060{bottom:586.666667pt;}
.yd_c00060{bottom:610.666667pt;}
.yc_c00060{bottom:634.666667pt;}
.yb_c00060{bottom:658.666667pt;}
.ya_c00060{bottom:701.333333pt;}
.y9_c00060{bottom:725.333333pt;}
.y8_c00060{bottom:749.333333pt;}
.y7_c00060{bottom:792.000000pt;}
.y6_c00060{bottom:816.000000pt;}
.y5_c00060{bottom:858.666667pt;}
.y4_c00060{bottom:882.666667pt;}
.y3_c00060{bottom:925.333333pt;}
.y2_c00060{bottom:949.333333pt;}
.y1_c00060{bottom:973.333333pt;}
.yf_c00060{bottom:1061.333333pt;}
.h4_c00060{height:33.750000pt;}
.h1_c00060{height:45.562500pt;}
.h5_c00060{height:47.083333pt;}
.h3_c00060{height:49.843750pt;}
.h2_c00060{height:50.896067pt;}
.h0_c00060{height:1122.666667pt;}
.w0_c00060{width:793.333333pt;}
.x0_c00060{left:0.000000pt;}
.x1_c00060{left:133.795333pt;}
.x2_c00060{left:250.480133pt;}
.x3_c00060{left:720.297867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bcaef001b6e85d178999077f.woff2')format("woff");}.ff1_c00061{font-family:ff1_c00061;line-height:0.934082;font-style:normal;font-weight:normal;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_c83ef6e07bde1c6e4c5436a0.woff2')format("woff");}.ff2_c00061{font-family:ff2_c00061;line-height:0.888672;font-style:normal;font-weight:normal;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_3fb1ee2145838c9fa9d2fca8.woff2')format("woff");}.ff3_c00061{font-family:ff3_c00061;line-height:0.756836;font-style:normal;font-weight:normal;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_8b5c0a82305f4e987b58eb6d.woff2')format("woff");}.ff4_c00061{font-family:ff4_c00061;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00061;src:url('chunks/assets/font_c23985ff7c385bc52d477c54.woff2')format("woff");}.ff5_c00061{font-family:ff5_c00061;line-height:1.101562;font-style:normal;font-weight: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_c00061;src:url('chunks/assets/font_ab052d6619b0b17737c9b064.woff2')format("woff");}.ff6_c00061{font-family:ff6_c00061;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00061{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00061{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00061{vertical-align:-23.086200px;}
.v3_c00061{vertical-align:-15.000000px;}
.v0_c00061{vertical-align:0.000000px;}
.v1_c00061{vertical-align:23.086200px;}
.ls3_c00061{letter-spacing:-5.016000px;}
.ls5_c00061{letter-spacing:-4.374000px;}
.ls6_c00061{letter-spacing:-3.486000px;}
.ls2_c00061{letter-spacing:-0.009600px;}
.ls1_c00061{letter-spacing:0.000000px;}
.ls0_c00061{letter-spacing:0.012000px;}
.ls4_c00061{letter-spacing:3.444000px;}
.sc__c00061{text-shadow:none;}
.sc0_c00061{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00061{-webkit-text-stroke:0px transparent;}
.sc0_c00061{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00061{word-spacing:-19.800000px;}
.ws5_c00061{word-spacing:-15.000000px;}
.ws0_c00061{word-spacing:-13.190400px;}
.ws3_c00061{word-spacing:-10.000001px;}
.ws2_c00061{word-spacing:-6.067200px;}
.ws4_c00061{word-spacing:-2.000002px;}
.ws6_c00061{word-spacing:0.000000px;}
._c_c00061{margin-left:-9.316800px;}
._d_c00061{margin-left:-7.560000px;}
._14_c00061{margin-left:-5.819040px;}
._11_c00061{margin-left:-4.284000px;}
._4_c00061{margin-left:-2.584800px;}
._0_c00061{margin-left:-1.490400px;}
._6_c00061{width:1.051200px;}
._3_c00061{width:2.628000px;}
._b_c00061{width:3.708000px;}
._2_c00061{width:5.205600px;}
._1_c00061{width:6.703200px;}
._5_c00061{width:7.768800px;}
._10_c00061{width:9.223200px;}
._e_c00061{width:11.030400px;}
._f_c00061{width:12.369600px;}
._12_c00061{width:13.701600px;}
._13_c00061{width:15.255960px;}
._a_c00061{width:16.279200px;}
._8_c00061{width:17.539200px;}
._7_c00061{width:18.712800px;}
._9_c00061{width:21.376800px;}
.fc0_c00061{color:rgb(0,0,0);}
.fs3_c00061{font-size:40.000002px;}
.fs1_c00061{font-size:48.000000px;}
.fs2_c00061{font-size:60.000000px;}
.fs0_c00061{font-size:72.000000px;}
.y0_c00061{bottom:0.000000px;}
.y15_c00061{bottom:67.500000px;}
.y24_c00061{bottom:132.000000px;}
.y23_c00061{bottom:155.250000px;}
.y22_c00061{bottom:196.500000px;}
.y21_c00061{bottom:219.750000px;}
.y20_c00061{bottom:261.000000px;}
.y1f_c00061{bottom:284.250000px;}
.y1e_c00061{bottom:325.500000px;}
.y1d_c00061{bottom:345.000000px;}
.y1c_c00061{bottom:364.500000px;}
.y1b_c00061{bottom:384.000000px;}
.y1a_c00061{bottom:403.500000px;}
.y19_c00061{bottom:423.000000px;}
.y18_c00061{bottom:442.500000px;}
.y17_c00061{bottom:465.750000px;}
.y16_c00061{bottom:510.750000px;}
.y13_c00061{bottom:567.000000px;}
.y12_c00061{bottom:594.000000px;}
.y11_c00061{bottom:621.000000px;}
.y10_c00061{bottom:648.000000px;}
.yf_c00061{bottom:675.000000px;}
.ye_c00061{bottom:723.000000px;}
.yd_c00061{bottom:750.000000px;}
.yc_c00061{bottom:777.000000px;}
.yb_c00061{bottom:804.000000px;}
.ya_c00061{bottom:831.000000px;}
.y9_c00061{bottom:858.000000px;}
.y8_c00061{bottom:906.000000px;}
.y7_c00061{bottom:933.000000px;}
.y6_c00061{bottom:960.000000px;}
.y5_c00061{bottom:987.000000px;}
.y4_c00061{bottom:1014.000000px;}
.y3_c00061{bottom:1041.000000px;}
.y2_c00061{bottom:1068.000000px;}
.y1_c00061{bottom:1095.000000px;}
.y14_c00061{bottom:1194.000000px;}
.h5_c00061{height:37.968750px;}
.h4_c00061{height:44.208984px;}
.h1_c00061{height:51.257812px;}
.h6_c00061{height:52.968750px;}
.h3_c00061{height:56.074219px;}
.h2_c00061{height:57.258075px;}
.h0_c00061{height:1263.000000px;}
.w0_c00061{width:892.500000px;}
.x0_c00061{left:0.000000px;}
.x1_c00061{left:65.480310px;}
@media print{
.v2_c00061{vertical-align:-20.521067pt;}
.v3_c00061{vertical-align:-13.333333pt;}
.v0_c00061{vertical-align:0.000000pt;}
.v1_c00061{vertical-align:20.521067pt;}
.ls3_c00061{letter-spacing:-4.458667pt;}
.ls5_c00061{letter-spacing:-3.888000pt;}
.ls6_c00061{letter-spacing:-3.098667pt;}
.ls2_c00061{letter-spacing:-0.008533pt;}
.ls1_c00061{letter-spacing:0.000000pt;}
.ls0_c00061{letter-spacing:0.010667pt;}
.ls4_c00061{letter-spacing:3.061333pt;}
.ws1_c00061{word-spacing:-17.600000pt;}
.ws5_c00061{word-spacing:-13.333333pt;}
.ws0_c00061{word-spacing:-11.724800pt;}
.ws3_c00061{word-spacing:-8.888889pt;}
.ws2_c00061{word-spacing:-5.393067pt;}
.ws4_c00061{word-spacing:-1.777780pt;}
.ws6_c00061{word-spacing:0.000000pt;}
._c_c00061{margin-left:-8.281600pt;}
._d_c00061{margin-left:-6.720000pt;}
._14_c00061{margin-left:-5.172480pt;}
._11_c00061{margin-left:-3.808000pt;}
._4_c00061{margin-left:-2.297600pt;}
._0_c00061{margin-left:-1.324800pt;}
._6_c00061{width:0.934400pt;}
._3_c00061{width:2.336000pt;}
._b_c00061{width:3.296000pt;}
._2_c00061{width:4.627200pt;}
._1_c00061{width:5.958400pt;}
._5_c00061{width:6.905600pt;}
._10_c00061{width:8.198400pt;}
._e_c00061{width:9.804800pt;}
._f_c00061{width:10.995200pt;}
._12_c00061{width:12.179200pt;}
._13_c00061{width:13.560853pt;}
._a_c00061{width:14.470400pt;}
._8_c00061{width:15.590400pt;}
._7_c00061{width:16.633600pt;}
._9_c00061{width:19.001600pt;}
.fs3_c00061{font-size:35.555557pt;}
.fs1_c00061{font-size:42.666667pt;}
.fs2_c00061{font-size:53.333333pt;}
.fs0_c00061{font-size:64.000000pt;}
.y0_c00061{bottom:0.000000pt;}
.y15_c00061{bottom:60.000000pt;}
.y24_c00061{bottom:117.333333pt;}
.y23_c00061{bottom:138.000000pt;}
.y22_c00061{bottom:174.666667pt;}
.y21_c00061{bottom:195.333333pt;}
.y20_c00061{bottom:232.000000pt;}
.y1f_c00061{bottom:252.666667pt;}
.y1e_c00061{bottom:289.333333pt;}
.y1d_c00061{bottom:306.666667pt;}
.y1c_c00061{bottom:324.000000pt;}
.y1b_c00061{bottom:341.333333pt;}
.y1a_c00061{bottom:358.666667pt;}
.y19_c00061{bottom:376.000000pt;}
.y18_c00061{bottom:393.333333pt;}
.y17_c00061{bottom:414.000000pt;}
.y16_c00061{bottom:454.000000pt;}
.y13_c00061{bottom:504.000000pt;}
.y12_c00061{bottom:528.000000pt;}
.y11_c00061{bottom:552.000000pt;}
.y10_c00061{bottom:576.000000pt;}
.yf_c00061{bottom:600.000000pt;}
.ye_c00061{bottom:642.666667pt;}
.yd_c00061{bottom:666.666667pt;}
.yc_c00061{bottom:690.666667pt;}
.yb_c00061{bottom:714.666667pt;}
.ya_c00061{bottom:738.666667pt;}
.y9_c00061{bottom:762.666667pt;}
.y8_c00061{bottom:805.333333pt;}
.y7_c00061{bottom:829.333333pt;}
.y6_c00061{bottom:853.333333pt;}
.y5_c00061{bottom:877.333333pt;}
.y4_c00061{bottom:901.333333pt;}
.y3_c00061{bottom:925.333333pt;}
.y2_c00061{bottom:949.333333pt;}
.y1_c00061{bottom:973.333333pt;}
.y14_c00061{bottom:1061.333333pt;}
.h5_c00061{height:33.750000pt;}
.h4_c00061{height:39.296875pt;}
.h1_c00061{height:45.562500pt;}
.h6_c00061{height:47.083333pt;}
.h3_c00061{height:49.843750pt;}
.h2_c00061{height:50.896067pt;}
.h0_c00061{height:1122.666667pt;}
.w0_c00061{width:793.333333pt;}
.x0_c00061{left:0.000000pt;}
.x1_c00061{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_26ba38641257a0eef9b82f80.woff2')format("woff");}.ff1_c00062{font-family:ff1_c00062;line-height:0.963867;font-style:normal;font-weight:normal;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_1b2e3233b2d46105e1fe5f8a.woff2')format("woff");}.ff2_c00062{font-family:ff2_c00062;line-height:0.934082;font-style:normal;font-weight:normal;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_675e946bf844990a03636c33.woff2')format("woff");}.ff3_c00062{font-family:ff3_c00062;line-height:1.155762;font-style:normal;font-weight:normal;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_3963aab03ce8b8872b7fe1c0.woff2')format("woff");}.ff4_c00062{font-family:ff4_c00062;line-height:1.101562;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00062;src:url('chunks/assets/font_5f07697a10431d31a835c5f8.woff2')format("woff");}.ff5_c00062{font-family:ff5_c00062;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00062{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00062{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00062{vertical-align:-23.086200px;}
.v3_c00062{vertical-align:-15.000000px;}
.v0_c00062{vertical-align:0.000000px;}
.v1_c00062{vertical-align:23.086200px;}
.ls3_c00062{letter-spacing:-3.888000px;}
.ls2_c00062{letter-spacing:-0.009600px;}
.ls1_c00062{letter-spacing:0.000000px;}
.ls0_c00062{letter-spacing:0.012000px;}
.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:-13.190400px;}
.ws2_c00062{word-spacing:-10.000001px;}
.ws3_c00062{word-spacing:0.000000px;}
.ws1_c00062{word-spacing:3.999998px;}
._14_c00062{margin-left:-8.014002px;}
._10_c00062{margin-left:-6.642000px;}
._f_c00062{margin-left:-5.586000px;}
._b_c00062{margin-left:-4.399200px;}
._9_c00062{margin-left:-2.584800px;}
._8_c00062{margin-left:-1.232400px;}
._3_c00062{width:1.339200px;}
._0_c00062{width:2.692800px;}
._2_c00062{width:4.449600px;}
._1_c00062{width:5.716800px;}
._15_c00062{width:6.809400px;}
._a_c00062{width:8.647200px;}
._c_c00062{width:10.591200px;}
._5_c00062{width:12.024000px;}
._6_c00062{width:13.759200px;}
._4_c00062{width:15.220800px;}
._7_c00062{width:16.574400px;}
._d_c00062{width:18.584400px;}
._e_c00062{width:20.392800px;}
._13_c00062{width:22.251600px;}
._12_c00062{width:23.536800px;}
._11_c00062{width:26.020800px;}
.fc0_c00062{color:rgb(0,0,0);}
.fs4_c00062{font-size:40.000002px;}
.fs2_c00062{font-size:48.000000px;}
.fs0_c00062{font-size:54.000000px;}
.fs3_c00062{font-size:60.000000px;}
.fs1_c00062{font-size:72.000000px;}
.y0_c00062{bottom:0.000000px;}
.y2_c00062{bottom:12.000000px;}
.yb_c00062{bottom:67.500000px;}
.y11_c00062{bottom:132.000000px;}
.y10_c00062{bottom:151.500000px;}
.yf_c00062{bottom:171.000000px;}
.ye_c00062{bottom:194.250000px;}
.yd_c00062{bottom:235.500000px;}
.yc_c00062{bottom:258.750000px;}
.y9_c00062{bottom:313.500000px;}
.y8_c00062{bottom:340.500000px;}
.y7_c00062{bottom:367.500000px;}
.y6_c00062{bottom:415.500000px;}
.y5_c00062{bottom:442.500000px;}
.y4_c00062{bottom:469.500000px;}
.y3_c00062{bottom:496.500000px;}
.y1_c00062{bottom:537.000000px;}
.ya_c00062{bottom:1194.000000px;}
.h6_c00062{height:37.968750px;}
.h2_c00062{height:41.633789px;}
.h3_c00062{height:51.257812px;}
.h7_c00062{height:52.968750px;}
.h5_c00062{height:56.074219px;}
.h4_c00062{height:57.258075px;}
.h1_c00062{height:576.000000px;}
.h0_c00062{height:1263.000000px;}
.w1_c00062{width:676.500000px;}
.w0_c00062{width:892.500000px;}
.x0_c00062{left:0.000000px;}
.x2_c00062{left:130.031610px;}
.x1_c00062{left:150.000000px;}
.x3_c00062{left:281.790150px;}
.x4_c00062{left:810.335100px;}
@media print{
.v2_c00062{vertical-align:-20.521067pt;}
.v3_c00062{vertical-align:-13.333333pt;}
.v0_c00062{vertical-align:0.000000pt;}
.v1_c00062{vertical-align:20.521067pt;}
.ls3_c00062{letter-spacing:-3.456000pt;}
.ls2_c00062{letter-spacing:-0.008533pt;}
.ls1_c00062{letter-spacing:0.000000pt;}
.ls0_c00062{letter-spacing:0.010667pt;}
.ws0_c00062{word-spacing:-11.724800pt;}
.ws2_c00062{word-spacing:-8.888889pt;}
.ws3_c00062{word-spacing:0.000000pt;}
.ws1_c00062{word-spacing:3.555553pt;}
._14_c00062{margin-left:-7.123557pt;}
._10_c00062{margin-left:-5.904000pt;}
._f_c00062{margin-left:-4.965333pt;}
._b_c00062{margin-left:-3.910400pt;}
._9_c00062{margin-left:-2.297600pt;}
._8_c00062{margin-left:-1.095467pt;}
._3_c00062{width:1.190400pt;}
._0_c00062{width:2.393600pt;}
._2_c00062{width:3.955200pt;}
._1_c00062{width:5.081600pt;}
._15_c00062{width:6.052800pt;}
._a_c00062{width:7.686400pt;}
._c_c00062{width:9.414400pt;}
._5_c00062{width:10.688000pt;}
._6_c00062{width:12.230400pt;}
._4_c00062{width:13.529600pt;}
._7_c00062{width:14.732800pt;}
._d_c00062{width:16.519467pt;}
._e_c00062{width:18.126933pt;}
._13_c00062{width:19.779200pt;}
._12_c00062{width:20.921600pt;}
._11_c00062{width:23.129600pt;}
.fs4_c00062{font-size:35.555557pt;}
.fs2_c00062{font-size:42.666667pt;}
.fs0_c00062{font-size:48.000000pt;}
.fs3_c00062{font-size:53.333333pt;}
.fs1_c00062{font-size:64.000000pt;}
.y0_c00062{bottom:0.000000pt;}
.y2_c00062{bottom:10.666667pt;}
.yb_c00062{bottom:60.000000pt;}
.y11_c00062{bottom:117.333333pt;}
.y10_c00062{bottom:134.666667pt;}
.yf_c00062{bottom:152.000000pt;}
.ye_c00062{bottom:172.666667pt;}
.yd_c00062{bottom:209.333333pt;}
.yc_c00062{bottom:230.000000pt;}
.y9_c00062{bottom:278.666667pt;}
.y8_c00062{bottom:302.666667pt;}
.y7_c00062{bottom:326.666667pt;}
.y6_c00062{bottom:369.333333pt;}
.y5_c00062{bottom:393.333333pt;}
.y4_c00062{bottom:417.333333pt;}
.y3_c00062{bottom:441.333333pt;}
.y1_c00062{bottom:477.333333pt;}
.ya_c00062{bottom:1061.333333pt;}
.h6_c00062{height:33.750000pt;}
.h2_c00062{height:37.007812pt;}
.h3_c00062{height:45.562500pt;}
.h7_c00062{height:47.083333pt;}
.h5_c00062{height:49.843750pt;}
.h4_c00062{height:50.896067pt;}
.h1_c00062{height:512.000000pt;}
.h0_c00062{height:1122.666667pt;}
.w1_c00062{width:601.333333pt;}
.w0_c00062{width:793.333333pt;}
.x0_c00062{left:0.000000pt;}
.x2_c00062{left:115.583653pt;}
.x1_c00062{left:133.333333pt;}
.x3_c00062{left:250.480133pt;}
.x4_c00062{left:720.297867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2d9941de6bd28176abb62ec4.woff2')format("woff");}.ff1_c00063{font-family:ff1_c00063;line-height:0.892578;font-style:normal;font-weight:normal;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_7605a904d39b9273614da61c.woff2')format("woff");}.ff2_c00063{font-family:ff2_c00063;line-height:0.934082;font-style:normal;font-weight:normal;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_a74f0dc9c753a8b9ac08c60e.woff2')format("woff");}.ff3_c00063{font-family:ff3_c00063;line-height:0.932129;font-style:normal;font-weight:normal;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_4522e2d74b8b9a0f1a202088.woff2')format("woff");}.ff4_c00063{font-family:ff4_c00063;line-height:0.755859;font-style:normal;font-weight:normal;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_ffb15d08055d687596ce54fe.woff2')format("woff");}.ff5_c00063{font-family:ff5_c00063;line-height:1.155762;font-style:normal;font-weight: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_c00063;src:url('chunks/assets/font_71367fc549d4ccb3ab98a0c1.woff2')format("woff");}.ff6_c00063{font-family:ff6_c00063;line-height:1.100586;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00063;src:url('chunks/assets/font_8461cbf02184f158180f8f14.woff2')format("woff");}.ff7_c00063{font-family:ff7_c00063;line-height:0.888672;font-style: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);}
.v2_c00063{vertical-align:-23.086200px;}
.v3_c00063{vertical-align:-15.000000px;}
.v0_c00063{vertical-align:0.000000px;}
.v1_c00063{vertical-align:23.086200px;}
.ls4_c00063{letter-spacing:-2.376000px;}
.ls2_c00063{letter-spacing:-0.009600px;}
.ls1_c00063{letter-spacing:0.000000px;}
.ls3_c00063{letter-spacing:0.012000px;}
.ls0_c00063{letter-spacing:0.014400px;}
.sc__c00063{text-shadow:none;}
.sc0_c00063{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00063{-webkit-text-stroke:0px transparent;}
.sc0_c00063{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00063{word-spacing:-19.814400px;}
.ws3_c00063{word-spacing:-15.000000px;}
.ws0_c00063{word-spacing:-13.190400px;}
.ws2_c00063{word-spacing:-10.000001px;}
.ws4_c00063{word-spacing:0.000000px;}
._12_c00063{margin-left:-18.877200px;}
._1a_c00063{margin-left:-8.351202px;}
._b_c00063{margin-left:-7.120800px;}
._1_c00063{margin-left:-5.619600px;}
._18_c00063{margin-left:-4.519200px;}
._3_c00063{margin-left:-3.188400px;}
._5_c00063{margin-left:-1.893600px;}
._0_c00063{width:1.722000px;}
._2_c00063{width:2.863200px;}
._4_c00063{width:4.680000px;}
._11_c00063{width:5.751600px;}
._17_c00063{width:7.902000px;}
._7_c00063{width:9.967200px;}
._6_c00063{width:11.079600px;}
._9_c00063{width:12.866400px;}
._a_c00063{width:14.565600px;}
._8_c00063{width:16.026000px;}
._16_c00063{width:17.397600px;}
._14_c00063{width:18.452400px;}
._15_c00063{width:21.586800px;}
._13_c00063{width:23.413200px;}
._19_c00063{width:24.933600px;}
._f_c00063{width:27.784800px;}
._10_c00063{width:29.616000px;}
._d_c00063{width:30.735600px;}
._c_c00063{width:32.443200px;}
._e_c00063{width:34.408800px;}
.fc0_c00063{color:rgb(0,0,0);}
.fs4_c00063{font-size:40.000002px;}
.fs2_c00063{font-size:48.000000px;}
.fs3_c00063{font-size:60.000000px;}
.fs1_c00063{font-size:72.000000px;}
.fs0_c00063{font-size:84.000000px;}
.y0_c00063{bottom:0.000000px;}
.y18_c00063{bottom:67.500000px;}
.y1f_c00063{bottom:132.000000px;}
.y1e_c00063{bottom:151.500000px;}
.y1d_c00063{bottom:174.750000px;}
.y1c_c00063{bottom:219.750000px;}
.y1b_c00063{bottom:264.750000px;}
.y1a_c00063{bottom:306.000000px;}
.y19_c00063{bottom:329.250000px;}
.y16_c00063{bottom:430.500000px;}
.y15_c00063{bottom:457.500000px;}
.y14_c00063{bottom:505.500000px;}
.y13_c00063{bottom:532.500000px;}
.y12_c00063{bottom:559.500000px;}
.y11_c00063{bottom:586.500000px;}
.y10_c00063{bottom:613.500000px;}
.yf_c00063{bottom:640.500000px;}
.ye_c00063{bottom:667.500000px;}
.yd_c00063{bottom:694.500000px;}
.yc_c00063{bottom:721.500000px;}
.yb_c00063{bottom:748.500000px;}
.ya_c00063{bottom:775.500000px;}
.y9_c00063{bottom:802.500000px;}
.y8_c00063{bottom:850.500000px;}
.y7_c00063{bottom:877.500000px;}
.y6_c00063{bottom:904.500000px;}
.y5_c00063{bottom:931.500000px;}
.y4_c00063{bottom:979.500000px;}
.y3_c00063{bottom:1006.500000px;}
.y2_c00063{bottom:1033.500000px;}
.y1_c00063{bottom:1093.500000px;}
.y17_c00063{bottom:1194.000000px;}
.h6_c00063{height:37.968750px;}
.h5_c00063{height:44.208984px;}
.h2_c00063{height:51.257812px;}
.h7_c00063{height:52.968750px;}
.h4_c00063{height:56.074219px;}
.h3_c00063{height:57.258075px;}
.h1_c00063{height:60.128906px;}
.h0_c00063{height:1263.000000px;}
.w0_c00063{width:892.500000px;}
.x0_c00063{left:0.000000px;}
.x1_c00063{left:65.480310px;}
@media print{
.v2_c00063{vertical-align:-20.521067pt;}
.v3_c00063{vertical-align:-13.333333pt;}
.v0_c00063{vertical-align:0.000000pt;}
.v1_c00063{vertical-align:20.521067pt;}
.ls4_c00063{letter-spacing:-2.112000pt;}
.ls2_c00063{letter-spacing:-0.008533pt;}
.ls1_c00063{letter-spacing:0.000000pt;}
.ls3_c00063{letter-spacing:0.010667pt;}
.ls0_c00063{letter-spacing:0.012800pt;}
.ws1_c00063{word-spacing:-17.612800pt;}
.ws3_c00063{word-spacing:-13.333333pt;}
.ws0_c00063{word-spacing:-11.724800pt;}
.ws2_c00063{word-spacing:-8.888889pt;}
.ws4_c00063{word-spacing:0.000000pt;}
._12_c00063{margin-left:-16.779733pt;}
._1a_c00063{margin-left:-7.423291pt;}
._b_c00063{margin-left:-6.329600pt;}
._1_c00063{margin-left:-4.995200pt;}
._18_c00063{margin-left:-4.017067pt;}
._3_c00063{margin-left:-2.834133pt;}
._5_c00063{margin-left:-1.683200pt;}
._0_c00063{width:1.530667pt;}
._2_c00063{width:2.545067pt;}
._4_c00063{width:4.160000pt;}
._11_c00063{width:5.112533pt;}
._17_c00063{width:7.024000pt;}
._7_c00063{width:8.859733pt;}
._6_c00063{width:9.848533pt;}
._9_c00063{width:11.436800pt;}
._a_c00063{width:12.947200pt;}
._8_c00063{width:14.245333pt;}
._16_c00063{width:15.464533pt;}
._14_c00063{width:16.402133pt;}
._15_c00063{width:19.188267pt;}
._13_c00063{width:20.811733pt;}
._19_c00063{width:22.163200pt;}
._f_c00063{width:24.697600pt;}
._10_c00063{width:26.325333pt;}
._d_c00063{width:27.320533pt;}
._c_c00063{width:28.838400pt;}
._e_c00063{width:30.585600pt;}
.fs4_c00063{font-size:35.555557pt;}
.fs2_c00063{font-size:42.666667pt;}
.fs3_c00063{font-size:53.333333pt;}
.fs1_c00063{font-size:64.000000pt;}
.fs0_c00063{font-size:74.666667pt;}
.y0_c00063{bottom:0.000000pt;}
.y18_c00063{bottom:60.000000pt;}
.y1f_c00063{bottom:117.333333pt;}
.y1e_c00063{bottom:134.666667pt;}
.y1d_c00063{bottom:155.333333pt;}
.y1c_c00063{bottom:195.333333pt;}
.y1b_c00063{bottom:235.333333pt;}
.y1a_c00063{bottom:272.000000pt;}
.y19_c00063{bottom:292.666667pt;}
.y16_c00063{bottom:382.666667pt;}
.y15_c00063{bottom:406.666667pt;}
.y14_c00063{bottom:449.333333pt;}
.y13_c00063{bottom:473.333333pt;}
.y12_c00063{bottom:497.333333pt;}
.y11_c00063{bottom:521.333333pt;}
.y10_c00063{bottom:545.333333pt;}
.yf_c00063{bottom:569.333333pt;}
.ye_c00063{bottom:593.333333pt;}
.yd_c00063{bottom:617.333333pt;}
.yc_c00063{bottom:641.333333pt;}
.yb_c00063{bottom:665.333333pt;}
.ya_c00063{bottom:689.333333pt;}
.y9_c00063{bottom:713.333333pt;}
.y8_c00063{bottom:756.000000pt;}
.y7_c00063{bottom:780.000000pt;}
.y6_c00063{bottom:804.000000pt;}
.y5_c00063{bottom:828.000000pt;}
.y4_c00063{bottom:870.666667pt;}
.y3_c00063{bottom:894.666667pt;}
.y2_c00063{bottom:918.666667pt;}
.y1_c00063{bottom:972.000000pt;}
.y17_c00063{bottom:1061.333333pt;}
.h6_c00063{height:33.750000pt;}
.h5_c00063{height:39.296875pt;}
.h2_c00063{height:45.562500pt;}
.h7_c00063{height:47.083333pt;}
.h4_c00063{height:49.843750pt;}
.h3_c00063{height:50.896067pt;}
.h1_c00063{height:53.447917pt;}
.h0_c00063{height:1122.666667pt;}
.w0_c00063{width:793.333333pt;}
.x0_c00063{left:0.000000pt;}
.x1_c00063{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_823495b9470e6c92d4bcf5b3.woff2')format("woff");}.ff1_c00064{font-family:ff1_c00064;line-height:0.934082;font-style:normal;font-weight:normal;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_83cb7f1a6f702b337c2b0467.woff2')format("woff");}.ff2_c00064{font-family:ff2_c00064;line-height:1.155762;font-style:normal;font-weight:normal;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_36feedea8167e7c42ae664cf.woff2')format("woff");}.ff3_c00064{font-family:ff3_c00064;line-height:1.101562;font-style:normal;font-weight:normal;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_d18c8244e5606e96aaf81adb.woff2')format("woff");}.ff4_c00064{font-family:ff4_c00064;line-height:0.888672;font-style: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);}
.v2_c00064{vertical-align:-23.086200px;}
.v3_c00064{vertical-align:-15.000000px;}
.v0_c00064{vertical-align:0.000000px;}
.v1_c00064{vertical-align:23.086200px;}
.ls6_c00064{letter-spacing:-5.154000px;}
.ls3_c00064{letter-spacing:-4.586400px;}
.ls5_c00064{letter-spacing:-0.894000px;}
.ls2_c00064{letter-spacing:-0.009600px;}
.ls4_c00064{letter-spacing:-0.007200px;}
.ls1_c00064{letter-spacing:0.000000px;}
.ls0_c00064{letter-spacing:0.012000px;}
.sc__c00064{text-shadow:none;}
.sc0_c00064{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00064{-webkit-text-stroke:0px transparent;}
.sc0_c00064{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00064{word-spacing:-15.000000px;}
.ws0_c00064{word-spacing:-13.190400px;}
.ws1_c00064{word-spacing:-10.000001px;}
.ws3_c00064{word-spacing:0.000000px;}
._e_c00064{margin-left:-7.457400px;}
._18_c00064{margin-left:-5.592000px;}
._6_c00064{margin-left:-4.555800px;}
._9_c00064{margin-left:-2.572200px;}
._3_c00064{margin-left:-1.252800px;}
._4_c00064{width:1.958400px;}
._1_c00064{width:3.456000px;}
._2_c00064{width:5.011200px;}
._5_c00064{width:6.436800px;}
._0_c00064{width:7.682400px;}
._8_c00064{width:8.935200px;}
._c_c00064{width:10.144800px;}
._7_c00064{width:11.361600px;}
._b_c00064{width:12.952800px;}
._d_c00064{width:13.955400px;}
._a_c00064{width:15.251400px;}
._15_c00064{width:16.633800px;}
._16_c00064{width:18.160200px;}
._f_c00064{width:20.836800px;}
._10_c00064{width:23.882400px;}
._12_c00064{width:28.908000px;}
._13_c00064{width:30.168000px;}
._11_c00064{width:31.451400px;}
._14_c00064{width:33.435000px;}
._17_c00064{width:34.655400px;}
.fc0_c00064{color:rgb(0,0,0);}
.fs3_c00064{font-size:40.000002px;}
.fs1_c00064{font-size:48.000000px;}
.fs2_c00064{font-size:60.000000px;}
.fs0_c00064{font-size:72.000000px;}
.y0_c00064{bottom:0.000000px;}
.y15_c00064{bottom:67.500000px;}
.y23_c00064{bottom:132.000000px;}
.y22_c00064{bottom:151.500000px;}
.y21_c00064{bottom:171.000000px;}
.y20_c00064{bottom:190.500000px;}
.y1f_c00064{bottom:213.750000px;}
.y1e_c00064{bottom:255.000000px;}
.y1d_c00064{bottom:274.500000px;}
.y1c_c00064{bottom:294.000000px;}
.y1b_c00064{bottom:313.500000px;}
.y1a_c00064{bottom:336.750000px;}
.y19_c00064{bottom:378.000000px;}
.y18_c00064{bottom:401.250000px;}
.y17_c00064{bottom:442.500000px;}
.y16_c00064{bottom:465.750000px;}
.y13_c00064{bottom:546.000000px;}
.y12_c00064{bottom:573.000000px;}
.y11_c00064{bottom:600.000000px;}
.y10_c00064{bottom:627.000000px;}
.yf_c00064{bottom:675.000000px;}
.ye_c00064{bottom:702.000000px;}
.yd_c00064{bottom:729.000000px;}
.yc_c00064{bottom:756.000000px;}
.yb_c00064{bottom:783.000000px;}
.ya_c00064{bottom:810.000000px;}
.y9_c00064{bottom:837.000000px;}
.y8_c00064{bottom:864.000000px;}
.y7_c00064{bottom:891.000000px;}
.y6_c00064{bottom:939.000000px;}
.y5_c00064{bottom:966.000000px;}
.y4_c00064{bottom:993.000000px;}
.y3_c00064{bottom:1041.000000px;}
.y2_c00064{bottom:1068.000000px;}
.y1_c00064{bottom:1095.000000px;}
.y14_c00064{bottom:1194.000000px;}
.h4_c00064{height:37.968750px;}
.h2_c00064{height:51.257812px;}
.h5_c00064{height:52.968750px;}
.h3_c00064{height:56.074219px;}
.h1_c00064{height:57.258075px;}
.h0_c00064{height:1263.000000px;}
.w0_c00064{width:892.500000px;}
.x0_c00064{left:0.000000px;}
.x1_c00064{left:150.519750px;}
.x2_c00064{left:281.790150px;}
.x3_c00064{left:810.335100px;}
@media print{
.v2_c00064{vertical-align:-20.521067pt;}
.v3_c00064{vertical-align:-13.333333pt;}
.v0_c00064{vertical-align:0.000000pt;}
.v1_c00064{vertical-align:20.521067pt;}
.ls6_c00064{letter-spacing:-4.581333pt;}
.ls3_c00064{letter-spacing:-4.076800pt;}
.ls5_c00064{letter-spacing:-0.794667pt;}
.ls2_c00064{letter-spacing:-0.008533pt;}
.ls4_c00064{letter-spacing:-0.006400pt;}
.ls1_c00064{letter-spacing:0.000000pt;}
.ls0_c00064{letter-spacing:0.010667pt;}
.ws2_c00064{word-spacing:-13.333333pt;}
.ws0_c00064{word-spacing:-11.724800pt;}
.ws1_c00064{word-spacing:-8.888889pt;}
.ws3_c00064{word-spacing:0.000000pt;}
._e_c00064{margin-left:-6.628800pt;}
._18_c00064{margin-left:-4.970667pt;}
._6_c00064{margin-left:-4.049600pt;}
._9_c00064{margin-left:-2.286400pt;}
._3_c00064{margin-left:-1.113600pt;}
._4_c00064{width:1.740800pt;}
._1_c00064{width:3.072000pt;}
._2_c00064{width:4.454400pt;}
._5_c00064{width:5.721600pt;}
._0_c00064{width:6.828800pt;}
._8_c00064{width:7.942400pt;}
._c_c00064{width:9.017600pt;}
._7_c00064{width:10.099200pt;}
._b_c00064{width:11.513600pt;}
._d_c00064{width:12.404800pt;}
._a_c00064{width:13.556800pt;}
._15_c00064{width:14.785600pt;}
._16_c00064{width:16.142400pt;}
._f_c00064{width:18.521600pt;}
._10_c00064{width:21.228800pt;}
._12_c00064{width:25.696000pt;}
._13_c00064{width:26.816000pt;}
._11_c00064{width:27.956800pt;}
._14_c00064{width:29.720000pt;}
._17_c00064{width:30.804800pt;}
.fs3_c00064{font-size:35.555557pt;}
.fs1_c00064{font-size:42.666667pt;}
.fs2_c00064{font-size:53.333333pt;}
.fs0_c00064{font-size:64.000000pt;}
.y0_c00064{bottom:0.000000pt;}
.y15_c00064{bottom:60.000000pt;}
.y23_c00064{bottom:117.333333pt;}
.y22_c00064{bottom:134.666667pt;}
.y21_c00064{bottom:152.000000pt;}
.y20_c00064{bottom:169.333333pt;}
.y1f_c00064{bottom:190.000000pt;}
.y1e_c00064{bottom:226.666667pt;}
.y1d_c00064{bottom:244.000000pt;}
.y1c_c00064{bottom:261.333333pt;}
.y1b_c00064{bottom:278.666667pt;}
.y1a_c00064{bottom:299.333333pt;}
.y19_c00064{bottom:336.000000pt;}
.y18_c00064{bottom:356.666667pt;}
.y17_c00064{bottom:393.333333pt;}
.y16_c00064{bottom:414.000000pt;}
.y13_c00064{bottom:485.333333pt;}
.y12_c00064{bottom:509.333333pt;}
.y11_c00064{bottom:533.333333pt;}
.y10_c00064{bottom:557.333333pt;}
.yf_c00064{bottom:600.000000pt;}
.ye_c00064{bottom:624.000000pt;}
.yd_c00064{bottom:648.000000pt;}
.yc_c00064{bottom:672.000000pt;}
.yb_c00064{bottom:696.000000pt;}
.ya_c00064{bottom:720.000000pt;}
.y9_c00064{bottom:744.000000pt;}
.y8_c00064{bottom:768.000000pt;}
.y7_c00064{bottom:792.000000pt;}
.y6_c00064{bottom:834.666667pt;}
.y5_c00064{bottom:858.666667pt;}
.y4_c00064{bottom:882.666667pt;}
.y3_c00064{bottom:925.333333pt;}
.y2_c00064{bottom:949.333333pt;}
.y1_c00064{bottom:973.333333pt;}
.y14_c00064{bottom:1061.333333pt;}
.h4_c00064{height:33.750000pt;}
.h2_c00064{height:45.562500pt;}
.h5_c00064{height:47.083333pt;}
.h3_c00064{height:49.843750pt;}
.h1_c00064{height:50.896067pt;}
.h0_c00064{height:1122.666667pt;}
.w0_c00064{width:793.333333pt;}
.x0_c00064{left:0.000000pt;}
.x1_c00064{left:133.795333pt;}
.x2_c00064{left:250.480133pt;}
.x3_c00064{left:720.297867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3a769a40c995ee5e68fac531.woff2')format("woff");}.ff1_c00065{font-family:ff1_c00065;line-height:0.934082;font-style:normal;font-weight:normal;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_f67e9feff1666c93558e802e.woff2')format("woff");}.ff2_c00065{font-family:ff2_c00065;line-height:0.755859;font-style:normal;font-weight:normal;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_788336985ac943e8c2a4567a.woff2')format("woff");}.ff3_c00065{font-family:ff3_c00065;line-height:1.155762;font-style:normal;font-weight:normal;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_9d36943c1fd61a4438a5c168.woff2')format("woff");}.ff4_c00065{font-family:ff4_c00065;line-height:0.904785;font-style:normal;font-weight:normal;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_06f7673bb2a3479506ee613f.woff2')format("woff");}.ff5_c00065{font-family:ff5_c00065;line-height:0.889648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00065{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00065{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00065{vertical-align:-23.086200px;}
.v3_c00065{vertical-align:-15.000000px;}
.v0_c00065{vertical-align:0.000000px;}
.v1_c00065{vertical-align:23.086200px;}
.ls1_c00065{letter-spacing:-0.009600px;}
.ls0_c00065{letter-spacing:0.000000px;}
.ls2_c00065{letter-spacing:0.012000px;}
.sc__c00065{text-shadow:none;}
.sc0_c00065{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00065{-webkit-text-stroke:0px transparent;}
.sc0_c00065{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00065{word-spacing:-19.800000px;}
.ws0_c00065{word-spacing:-13.190400px;}
.ws2_c00065{word-spacing:-10.000001px;}
.ws3_c00065{word-spacing:0.000000px;}
._9_c00065{margin-left:-10.476000px;}
._7_c00065{margin-left:-7.156800px;}
._1a_c00065{margin-left:-5.298402px;}
._c_c00065{margin-left:-3.895200px;}
._4_c00065{margin-left:-2.311200px;}
._a_c00065{margin-left:-1.173600px;}
._2_c00065{width:1.152000px;}
._0_c00065{width:2.448000px;}
._8_c00065{width:3.463200px;}
._b_c00065{width:4.564800px;}
._1_c00065{width:5.594400px;}
._3_c00065{width:6.926400px;}
._6_c00065{width:8.049600px;}
._15_c00065{width:9.295200px;}
._5_c00065{width:10.382400px;}
._14_c00065{width:12.110400px;}
._16_c00065{width:13.435200px;}
._13_c00065{width:14.911200px;}
._d_c00065{width:16.048800px;}
._f_c00065{width:17.193600px;}
._12_c00065{width:18.576000px;}
._e_c00065{width:20.808000px;}
._11_c00065{width:22.564800px;}
._10_c00065{width:24.508800px;}
._19_c00065{width:25.610400px;}
._18_c00065{width:26.906400px;}
._17_c00065{width:29.131200px;}
.fc0_c00065{color:rgb(0,0,0);}
.fs3_c00065{font-size:40.000002px;}
.fs1_c00065{font-size:48.000000px;}
.fs2_c00065{font-size:60.000000px;}
.fs0_c00065{font-size:72.000000px;}
.y0_c00065{bottom:0.000000px;}
.y1c_c00065{bottom:67.500000px;}
.y21_c00065{bottom:132.000000px;}
.y20_c00065{bottom:155.250000px;}
.y1f_c00065{bottom:196.500000px;}
.y1e_c00065{bottom:219.750000px;}
.y1d_c00065{bottom:264.750000px;}
.y1a_c00065{bottom:315.000000px;}
.y19_c00065{bottom:342.000000px;}
.y18_c00065{bottom:369.000000px;}
.y17_c00065{bottom:396.000000px;}
.y16_c00065{bottom:444.000000px;}
.y15_c00065{bottom:471.000000px;}
.y14_c00065{bottom:498.000000px;}
.y13_c00065{bottom:525.000000px;}
.y12_c00065{bottom:552.000000px;}
.y11_c00065{bottom:579.000000px;}
.y10_c00065{bottom:606.000000px;}
.yf_c00065{bottom:654.000000px;}
.ye_c00065{bottom:681.000000px;}
.yd_c00065{bottom:708.000000px;}
.yc_c00065{bottom:735.000000px;}
.yb_c00065{bottom:783.000000px;}
.ya_c00065{bottom:810.000000px;}
.y9_c00065{bottom:837.000000px;}
.y8_c00065{bottom:864.000000px;}
.y7_c00065{bottom:912.000000px;}
.y6_c00065{bottom:939.000000px;}
.y5_c00065{bottom:966.000000px;}
.y4_c00065{bottom:993.000000px;}
.y3_c00065{bottom:1041.000000px;}
.y2_c00065{bottom:1068.000000px;}
.y1_c00065{bottom:1095.000000px;}
.y1b_c00065{bottom:1194.000000px;}
.h5_c00065{height:27.480470px;}
.h6_c00065{height:41.220703px;}
.h4_c00065{height:44.208984px;}
.h1_c00065{height:51.257812px;}
.h3_c00065{height:56.074219px;}
.h2_c00065{height:57.258075px;}
.h0_c00065{height:1263.000000px;}
.w0_c00065{width:892.500000px;}
.x0_c00065{left:0.000000px;}
.x1_c00065{left:65.480310px;}
@media print{
.v2_c00065{vertical-align:-20.521067pt;}
.v3_c00065{vertical-align:-13.333333pt;}
.v0_c00065{vertical-align:0.000000pt;}
.v1_c00065{vertical-align:20.521067pt;}
.ls1_c00065{letter-spacing:-0.008533pt;}
.ls0_c00065{letter-spacing:0.000000pt;}
.ls2_c00065{letter-spacing:0.010667pt;}
.ws1_c00065{word-spacing:-17.600000pt;}
.ws0_c00065{word-spacing:-11.724800pt;}
.ws2_c00065{word-spacing:-8.888889pt;}
.ws3_c00065{word-spacing:0.000000pt;}
._9_c00065{margin-left:-9.312000pt;}
._7_c00065{margin-left:-6.361600pt;}
._1a_c00065{margin-left:-4.709691pt;}
._c_c00065{margin-left:-3.462400pt;}
._4_c00065{margin-left:-2.054400pt;}
._a_c00065{margin-left:-1.043200pt;}
._2_c00065{width:1.024000pt;}
._0_c00065{width:2.176000pt;}
._8_c00065{width:3.078400pt;}
._b_c00065{width:4.057600pt;}
._1_c00065{width:4.972800pt;}
._3_c00065{width:6.156800pt;}
._6_c00065{width:7.155200pt;}
._15_c00065{width:8.262400pt;}
._5_c00065{width:9.228800pt;}
._14_c00065{width:10.764800pt;}
._16_c00065{width:11.942400pt;}
._13_c00065{width:13.254400pt;}
._d_c00065{width:14.265600pt;}
._f_c00065{width:15.283200pt;}
._12_c00065{width:16.512000pt;}
._e_c00065{width:18.496000pt;}
._11_c00065{width:20.057600pt;}
._10_c00065{width:21.785600pt;}
._19_c00065{width:22.764800pt;}
._18_c00065{width:23.916800pt;}
._17_c00065{width:25.894400pt;}
.fs3_c00065{font-size:35.555557pt;}
.fs1_c00065{font-size:42.666667pt;}
.fs2_c00065{font-size:53.333333pt;}
.fs0_c00065{font-size:64.000000pt;}
.y0_c00065{bottom:0.000000pt;}
.y1c_c00065{bottom:60.000000pt;}
.y21_c00065{bottom:117.333333pt;}
.y20_c00065{bottom:138.000000pt;}
.y1f_c00065{bottom:174.666667pt;}
.y1e_c00065{bottom:195.333333pt;}
.y1d_c00065{bottom:235.333333pt;}
.y1a_c00065{bottom:280.000000pt;}
.y19_c00065{bottom:304.000000pt;}
.y18_c00065{bottom:328.000000pt;}
.y17_c00065{bottom:352.000000pt;}
.y16_c00065{bottom:394.666667pt;}
.y15_c00065{bottom:418.666667pt;}
.y14_c00065{bottom:442.666667pt;}
.y13_c00065{bottom:466.666667pt;}
.y12_c00065{bottom:490.666667pt;}
.y11_c00065{bottom:514.666667pt;}
.y10_c00065{bottom:538.666667pt;}
.yf_c00065{bottom:581.333333pt;}
.ye_c00065{bottom:605.333333pt;}
.yd_c00065{bottom:629.333333pt;}
.yc_c00065{bottom:653.333333pt;}
.yb_c00065{bottom:696.000000pt;}
.ya_c00065{bottom:720.000000pt;}
.y9_c00065{bottom:744.000000pt;}
.y8_c00065{bottom:768.000000pt;}
.y7_c00065{bottom:810.666667pt;}
.y6_c00065{bottom:834.666667pt;}
.y5_c00065{bottom:858.666667pt;}
.y4_c00065{bottom:882.666667pt;}
.y3_c00065{bottom:925.333333pt;}
.y2_c00065{bottom:949.333333pt;}
.y1_c00065{bottom:973.333333pt;}
.y1b_c00065{bottom:1061.333333pt;}
.h5_c00065{height:24.427085pt;}
.h6_c00065{height:36.640625pt;}
.h4_c00065{height:39.296875pt;}
.h1_c00065{height:45.562500pt;}
.h3_c00065{height:49.843750pt;}
.h2_c00065{height:50.896067pt;}
.h0_c00065{height:1122.666667pt;}
.w0_c00065{width:793.333333pt;}
.x0_c00065{left:0.000000pt;}
.x1_c00065{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7c27d482dc6006f6293d11a6.woff2')format("woff");}.ff1_c00066{font-family:ff1_c00066;line-height:1.163086;font-style:normal;font-weight:normal;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_7d68ccfa2b5c14272206dede.woff2')format("woff");}.ff2_c00066{font-family:ff2_c00066;line-height:1.155762;font-style:normal;font-weight:normal;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_777ab6082ff8479db979557c.woff2')format("woff");}.ff3_c00066{font-family:ff3_c00066;line-height:0.905762;font-style:normal;font-weight:normal;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_a22b5ee6d9f11b1c87d82b3d.woff2')format("woff");}.ff4_c00066{font-family:ff4_c00066;line-height:0.888672;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00066{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00066{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00066{vertical-align:-23.086200px;}
.v3_c00066{vertical-align:-15.000000px;}
.v0_c00066{vertical-align:0.000000px;}
.v1_c00066{vertical-align:23.086200px;}
.ls2_c00066{letter-spacing:-0.009600px;}
.ls1_c00066{letter-spacing:0.000000px;}
.ls0_c00066{letter-spacing:0.012000px;}
.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:-13.190400px;}
.ws1_c00066{word-spacing:-10.000001px;}
.ws2_c00066{word-spacing:-2.000002px;}
.ws3_c00066{word-spacing:0.000000px;}
._16_c00066{margin-left:-10.584000px;}
._b_c00066{margin-left:-6.581400px;}
._15_c00066{margin-left:-5.365200px;}
._5_c00066{margin-left:-3.866400px;}
._e_c00066{margin-left:-2.475600px;}
._3_c00066{margin-left:-1.396800px;}
._1_c00066{width:1.864800px;}
._8_c00066{width:3.629400px;}
._a_c00066{width:5.018400px;}
._f_c00066{width:6.093600px;}
._c_c00066{width:7.357800px;}
._d_c00066{width:8.871000px;}
._2_c00066{width:10.447200px;}
._0_c00066{width:12.355200px;}
._4_c00066{width:13.816800px;}
._7_c00066{width:15.429600px;}
._6_c00066{width:16.531200px;}
._9_c00066{width:17.869800px;}
._14_c00066{width:29.389800px;}
._13_c00066{width:31.168800px;}
._12_c00066{width:33.012000px;}
._10_c00066{width:35.458800px;}
._11_c00066{width:36.885600px;}
.fc0_c00066{color:rgb(0,0,0);}
.fs3_c00066{font-size:40.000002px;}
.fs1_c00066{font-size:48.000000px;}
.fs2_c00066{font-size:60.000000px;}
.fs0_c00066{font-size:72.000000px;}
.y0_c00066{bottom:0.000000px;}
.y1a_c00066{bottom:67.500000px;}
.y20_c00066{bottom:132.000000px;}
.y1f_c00066{bottom:155.250000px;}
.y1e_c00066{bottom:196.500000px;}
.y1d_c00066{bottom:219.750000px;}
.y1c_c00066{bottom:261.000000px;}
.y1b_c00066{bottom:284.250000px;}
.y18_c00066{bottom:369.000000px;}
.y17_c00066{bottom:396.000000px;}
.y16_c00066{bottom:423.000000px;}
.y15_c00066{bottom:471.000000px;}
.y14_c00066{bottom:498.000000px;}
.y13_c00066{bottom:525.000000px;}
.y12_c00066{bottom:552.000000px;}
.y11_c00066{bottom:579.000000px;}
.y10_c00066{bottom:627.000000px;}
.yf_c00066{bottom:654.000000px;}
.ye_c00066{bottom:681.000000px;}
.yd_c00066{bottom:708.000000px;}
.yc_c00066{bottom:756.000000px;}
.yb_c00066{bottom:783.000000px;}
.ya_c00066{bottom:810.000000px;}
.y9_c00066{bottom:858.000000px;}
.y8_c00066{bottom:885.000000px;}
.y7_c00066{bottom:912.000000px;}
.y6_c00066{bottom:939.000000px;}
.y5_c00066{bottom:987.000000px;}
.y4_c00066{bottom:1014.000000px;}
.y3_c00066{bottom:1041.000000px;}
.y2_c00066{bottom:1068.000000px;}
.y1_c00066{bottom:1095.000000px;}
.y19_c00066{bottom:1194.000000px;}
.h4_c00066{height:27.480470px;}
.h5_c00066{height:41.220703px;}
.h3_c00066{height:56.074219px;}
.h1_c00066{height:67.746094px;}
.h2_c00066{height:68.250262px;}
.h0_c00066{height:1263.000000px;}
.w0_c00066{width:892.500000px;}
.x0_c00066{left:0.000000px;}
.x1_c00066{left:150.519750px;}
.x2_c00066{left:281.790150px;}
.x3_c00066{left:810.335100px;}
@media print{
.v2_c00066{vertical-align:-20.521067pt;}
.v3_c00066{vertical-align:-13.333333pt;}
.v0_c00066{vertical-align:0.000000pt;}
.v1_c00066{vertical-align:20.521067pt;}
.ls2_c00066{letter-spacing:-0.008533pt;}
.ls1_c00066{letter-spacing:0.000000pt;}
.ls0_c00066{letter-spacing:0.010667pt;}
.ws0_c00066{word-spacing:-11.724800pt;}
.ws1_c00066{word-spacing:-8.888889pt;}
.ws2_c00066{word-spacing:-1.777780pt;}
.ws3_c00066{word-spacing:0.000000pt;}
._16_c00066{margin-left:-9.408000pt;}
._b_c00066{margin-left:-5.850133pt;}
._15_c00066{margin-left:-4.769067pt;}
._5_c00066{margin-left:-3.436800pt;}
._e_c00066{margin-left:-2.200533pt;}
._3_c00066{margin-left:-1.241600pt;}
._1_c00066{width:1.657600pt;}
._8_c00066{width:3.226133pt;}
._a_c00066{width:4.460800pt;}
._f_c00066{width:5.416533pt;}
._c_c00066{width:6.540267pt;}
._d_c00066{width:7.885333pt;}
._2_c00066{width:9.286400pt;}
._0_c00066{width:10.982400pt;}
._4_c00066{width:12.281600pt;}
._7_c00066{width:13.715200pt;}
._6_c00066{width:14.694400pt;}
._9_c00066{width:15.884267pt;}
._14_c00066{width:26.124267pt;}
._13_c00066{width:27.705600pt;}
._12_c00066{width:29.344000pt;}
._10_c00066{width:31.518933pt;}
._11_c00066{width:32.787200pt;}
.fs3_c00066{font-size:35.555557pt;}
.fs1_c00066{font-size:42.666667pt;}
.fs2_c00066{font-size:53.333333pt;}
.fs0_c00066{font-size:64.000000pt;}
.y0_c00066{bottom:0.000000pt;}
.y1a_c00066{bottom:60.000000pt;}
.y20_c00066{bottom:117.333333pt;}
.y1f_c00066{bottom:138.000000pt;}
.y1e_c00066{bottom:174.666667pt;}
.y1d_c00066{bottom:195.333333pt;}
.y1c_c00066{bottom:232.000000pt;}
.y1b_c00066{bottom:252.666667pt;}
.y18_c00066{bottom:328.000000pt;}
.y17_c00066{bottom:352.000000pt;}
.y16_c00066{bottom:376.000000pt;}
.y15_c00066{bottom:418.666667pt;}
.y14_c00066{bottom:442.666667pt;}
.y13_c00066{bottom:466.666667pt;}
.y12_c00066{bottom:490.666667pt;}
.y11_c00066{bottom:514.666667pt;}
.y10_c00066{bottom:557.333333pt;}
.yf_c00066{bottom:581.333333pt;}
.ye_c00066{bottom:605.333333pt;}
.yd_c00066{bottom:629.333333pt;}
.yc_c00066{bottom:672.000000pt;}
.yb_c00066{bottom:696.000000pt;}
.ya_c00066{bottom:720.000000pt;}
.y9_c00066{bottom:762.666667pt;}
.y8_c00066{bottom:786.666667pt;}
.y7_c00066{bottom:810.666667pt;}
.y6_c00066{bottom:834.666667pt;}
.y5_c00066{bottom:877.333333pt;}
.y4_c00066{bottom:901.333333pt;}
.y3_c00066{bottom:925.333333pt;}
.y2_c00066{bottom:949.333333pt;}
.y1_c00066{bottom:973.333333pt;}
.y19_c00066{bottom:1061.333333pt;}
.h4_c00066{height:24.427085pt;}
.h5_c00066{height:36.640625pt;}
.h3_c00066{height:49.843750pt;}
.h1_c00066{height:60.218750pt;}
.h2_c00066{height:60.666900pt;}
.h0_c00066{height:1122.666667pt;}
.w0_c00066{width:793.333333pt;}
.x0_c00066{left:0.000000pt;}
.x1_c00066{left:133.795333pt;}
.x2_c00066{left:250.480133pt;}
.x3_c00066{left:720.297867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f7402a0e07dd664b99fcd18b.woff2')format("woff");}.ff1_c00067{font-family:ff1_c00067;line-height:0.934082;font-style:normal;font-weight:normal;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_5b5c4b8845c54daa9e6cc3ee.woff2')format("woff");}.ff2_c00067{font-family:ff2_c00067;line-height:0.931152;font-style:normal;font-weight:normal;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_24175d916516070dbc1a931c.woff2')format("woff");}.ff3_c00067{font-family:ff3_c00067;line-height:1.124023;font-style:normal;font-weight:normal;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_83ab94430a908e61ca13d0fc.woff2')format("woff");}.ff4_c00067{font-family:ff4_c00067;line-height:0.755859;font-style:normal;font-weight:normal;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_57e9abb3e53fd2a18e118581.woff2')format("woff");}.ff5_c00067{font-family:ff5_c00067;line-height:1.155762;font-style:normal;font-weight: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_c00067;src:url('chunks/assets/font_9f2d50029f0f4d4862819576.woff2')format("woff");}.ff6_c00067{font-family:ff6_c00067;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00067;src:url('chunks/assets/font_a6a3e434569846f572b68ab0.woff2')format("woff");}.ff7_c00067{font-family:ff7_c00067;line-height:0.678223;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00067{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00067{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00067{vertical-align:-15.000000px;}
.v0_c00067{vertical-align:0.000000px;}
.v1_c00067{vertical-align:23.086200px;}
.ls6_c00067{letter-spacing:-0.012000px;}
.ls4_c00067{letter-spacing:-0.009600px;}
.ls3_c00067{letter-spacing:-0.007200px;}
.ls2_c00067{letter-spacing:0.000000px;}
.ls1_c00067{letter-spacing:0.008400px;}
.ls5_c00067{letter-spacing:0.012000px;}
.ls0_c00067{letter-spacing:0.014400px;}
.sc__c00067{text-shadow:none;}
.sc0_c00067{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00067{-webkit-text-stroke:0px transparent;}
.sc0_c00067{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00067{word-spacing:-14.988000px;}
.ws0_c00067{word-spacing:-10.000001px;}
.ws2_c00067{word-spacing:0.000000px;}
._15_c00067{margin-left:-9.086400px;}
._19_c00067{margin-left:-6.308802px;}
._0_c00067{margin-left:-3.945600px;}
._7_c00067{margin-left:-2.714400px;}
._5_c00067{margin-left:-1.670400px;}
._1_c00067{width:1.540800px;}
._6_c00067{width:2.541600px;}
._2_c00067{width:3.816000px;}
._4_c00067{width:4.874400px;}
._3_c00067{width:6.480000px;}
._17_c00067{width:7.740000px;}
._8_c00067{width:9.597600px;}
._9_c00067{width:10.699200px;}
._14_c00067{width:11.736000px;}
._12_c00067{width:13.298400px;}
._16_c00067{width:14.992560px;}
._11_c00067{width:16.063200px;}
._13_c00067{width:17.172000px;}
._10_c00067{width:18.597600px;}
._f_c00067{width:21.492000px;}
._18_c00067{width:23.068800px;}
._e_c00067{width:24.156000px;}
._d_c00067{width:25.797600px;}
._b_c00067{width:28.454400px;}
._c_c00067{width:29.980800px;}
._a_c00067{width:33.991200px;}
.fc0_c00067{color:rgb(0,0,0);}
.fs4_c00067{font-size:40.000002px;}
.fs1_c00067{font-size:48.000000px;}
.fs3_c00067{font-size:60.000000px;}
.fs0_c00067{font-size:72.000000px;}
.fs2_c00067{font-size:84.000000px;}
.y0_c00067{bottom:0.000000px;}
.y1e_c00067{bottom:67.500000px;}
.y20_c00067{bottom:132.000000px;}
.y1f_c00067{bottom:155.250000px;}
.y1c_c00067{bottom:205.500000px;}
.y1b_c00067{bottom:232.500000px;}
.y1a_c00067{bottom:259.500000px;}
.y19_c00067{bottom:307.500000px;}
.y18_c00067{bottom:334.500000px;}
.y17_c00067{bottom:361.500000px;}
.y16_c00067{bottom:421.500000px;}
.y15_c00067{bottom:471.000000px;}
.y14_c00067{bottom:498.000000px;}
.y13_c00067{bottom:546.000000px;}
.y12_c00067{bottom:573.000000px;}
.y11_c00067{bottom:600.000000px;}
.y10_c00067{bottom:627.000000px;}
.yf_c00067{bottom:675.000000px;}
.ye_c00067{bottom:702.000000px;}
.yd_c00067{bottom:729.000000px;}
.yc_c00067{bottom:777.000000px;}
.yb_c00067{bottom:804.000000px;}
.ya_c00067{bottom:831.000000px;}
.y9_c00067{bottom:858.000000px;}
.y8_c00067{bottom:885.000000px;}
.y7_c00067{bottom:933.000000px;}
.y6_c00067{bottom:960.000000px;}
.y5_c00067{bottom:987.000000px;}
.y4_c00067{bottom:1014.000000px;}
.y3_c00067{bottom:1041.000000px;}
.y2_c00067{bottom:1068.000000px;}
.y1_c00067{bottom:1095.000000px;}
.y1d_c00067{bottom:1194.000000px;}
.h6_c00067{height:27.421876px;}
.h7_c00067{height:41.132812px;}
.h5_c00067{height:44.208984px;}
.h1_c00067{height:51.257812px;}
.h4_c00067{height:56.074219px;}
.h2_c00067{height:57.258075px;}
.h3_c00067{height:79.570312px;}
.h0_c00067{height:1263.000000px;}
.w0_c00067{width:892.500000px;}
.x0_c00067{left:0.000000px;}
.x1_c00067{left:65.480310px;}
@media print{
.v2_c00067{vertical-align:-13.333333pt;}
.v0_c00067{vertical-align:0.000000pt;}
.v1_c00067{vertical-align:20.521067pt;}
.ls6_c00067{letter-spacing:-0.010667pt;}
.ls4_c00067{letter-spacing:-0.008533pt;}
.ls3_c00067{letter-spacing:-0.006400pt;}
.ls2_c00067{letter-spacing:0.000000pt;}
.ls1_c00067{letter-spacing:0.007467pt;}
.ls5_c00067{letter-spacing:0.010667pt;}
.ls0_c00067{letter-spacing:0.012800pt;}
.ws1_c00067{word-spacing:-13.322667pt;}
.ws0_c00067{word-spacing:-8.888889pt;}
.ws2_c00067{word-spacing:0.000000pt;}
._15_c00067{margin-left:-8.076800pt;}
._19_c00067{margin-left:-5.607824pt;}
._0_c00067{margin-left:-3.507200pt;}
._7_c00067{margin-left:-2.412800pt;}
._5_c00067{margin-left:-1.484800pt;}
._1_c00067{width:1.369600pt;}
._6_c00067{width:2.259200pt;}
._2_c00067{width:3.392000pt;}
._4_c00067{width:4.332800pt;}
._3_c00067{width:5.760000pt;}
._17_c00067{width:6.880000pt;}
._8_c00067{width:8.531200pt;}
._9_c00067{width:9.510400pt;}
._14_c00067{width:10.432000pt;}
._12_c00067{width:11.820800pt;}
._16_c00067{width:13.326720pt;}
._11_c00067{width:14.278400pt;}
._13_c00067{width:15.264000pt;}
._10_c00067{width:16.531200pt;}
._f_c00067{width:19.104000pt;}
._18_c00067{width:20.505600pt;}
._e_c00067{width:21.472000pt;}
._d_c00067{width:22.931200pt;}
._b_c00067{width:25.292800pt;}
._c_c00067{width:26.649600pt;}
._a_c00067{width:30.214400pt;}
.fs4_c00067{font-size:35.555557pt;}
.fs1_c00067{font-size:42.666667pt;}
.fs3_c00067{font-size:53.333333pt;}
.fs0_c00067{font-size:64.000000pt;}
.fs2_c00067{font-size:74.666667pt;}
.y0_c00067{bottom:0.000000pt;}
.y1e_c00067{bottom:60.000000pt;}
.y20_c00067{bottom:117.333333pt;}
.y1f_c00067{bottom:138.000000pt;}
.y1c_c00067{bottom:182.666667pt;}
.y1b_c00067{bottom:206.666667pt;}
.y1a_c00067{bottom:230.666667pt;}
.y19_c00067{bottom:273.333333pt;}
.y18_c00067{bottom:297.333333pt;}
.y17_c00067{bottom:321.333333pt;}
.y16_c00067{bottom:374.666667pt;}
.y15_c00067{bottom:418.666667pt;}
.y14_c00067{bottom:442.666667pt;}
.y13_c00067{bottom:485.333333pt;}
.y12_c00067{bottom:509.333333pt;}
.y11_c00067{bottom:533.333333pt;}
.y10_c00067{bottom:557.333333pt;}
.yf_c00067{bottom:600.000000pt;}
.ye_c00067{bottom:624.000000pt;}
.yd_c00067{bottom:648.000000pt;}
.yc_c00067{bottom:690.666667pt;}
.yb_c00067{bottom:714.666667pt;}
.ya_c00067{bottom:738.666667pt;}
.y9_c00067{bottom:762.666667pt;}
.y8_c00067{bottom:786.666667pt;}
.y7_c00067{bottom:829.333333pt;}
.y6_c00067{bottom:853.333333pt;}
.y5_c00067{bottom:877.333333pt;}
.y4_c00067{bottom:901.333333pt;}
.y3_c00067{bottom:925.333333pt;}
.y2_c00067{bottom:949.333333pt;}
.y1_c00067{bottom:973.333333pt;}
.y1d_c00067{bottom:1061.333333pt;}
.h6_c00067{height:24.375001pt;}
.h7_c00067{height:36.562500pt;}
.h5_c00067{height:39.296875pt;}
.h1_c00067{height:45.562500pt;}
.h4_c00067{height:49.843750pt;}
.h2_c00067{height:50.896067pt;}
.h3_c00067{height:70.729167pt;}
.h0_c00067{height:1122.666667pt;}
.w0_c00067{width:793.333333pt;}
.x0_c00067{left:0.000000pt;}
.x1_c00067{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d4422aa0b88d4e16ec97a15b.woff2')format("woff");}.ff1_c00068{font-family:ff1_c00068;line-height:0.934082;font-style:normal;font-weight:normal;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_b844f57f6a0593018744cd6e.woff2')format("woff");}.ff2_c00068{font-family:ff2_c00068;line-height:1.155762;font-style:normal;font-weight:normal;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_e12d21975e49699b7dc2d8df.woff2')format("woff");}.ff3_c00068{font-family:ff3_c00068;line-height:1.115723;font-style:normal;font-weight:normal;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_0bc53d5fd28cdf9c84bc5ed4.woff2')format("woff");}.ff4_c00068{font-family:ff4_c00068;line-height:1.091309;font-style: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);}
.v2_c00068{vertical-align:-23.086200px;}
.v3_c00068{vertical-align:-15.000000px;}
.v0_c00068{vertical-align:0.000000px;}
.v1_c00068{vertical-align:23.086200px;}
.ls6_c00068{letter-spacing:-5.160000px;}
.ls3_c00068{letter-spacing:-2.694000px;}
.ls5_c00068{letter-spacing:-1.824000px;}
.ls4_c00068{letter-spacing:-0.012000px;}
.ls2_c00068{letter-spacing:-0.009600px;}
.ls1_c00068{letter-spacing:0.000000px;}
.ls0_c00068{letter-spacing:0.012000px;}
.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;}
}
.ws5_c00068{word-spacing:-15.000000px;}
.ws4_c00068{word-spacing:-14.988000px;}
.ws0_c00068{word-spacing:-13.190400px;}
.ws3_c00068{word-spacing:-10.000001px;}
.ws2_c00068{word-spacing:-2.000002px;}
.ws1_c00068{word-spacing:-0.067200px;}
.ws6_c00068{word-spacing:0.000000px;}
._13_c00068{margin-left:-10.584000px;}
._16_c00068{margin-left:-5.724600px;}
._d_c00068{margin-left:-4.572000px;}
._e_c00068{margin-left:-3.384000px;}
._7_c00068{margin-left:-1.936800px;}
._1_c00068{width:1.915200px;}
._3_c00068{width:3.225600px;}
._5_c00068{width:5.002200px;}
._10_c00068{width:6.739200px;}
._12_c00068{width:8.001000px;}
._17_c00068{width:9.436200px;}
._11_c00068{width:10.585800px;}
._a_c00068{width:11.980800px;}
._9_c00068{width:13.276800px;}
._c_c00068{width:15.242400px;}
._b_c00068{width:17.172000px;}
._15_c00068{width:18.633600px;}
._14_c00068{width:21.722400px;}
._f_c00068{width:23.472000px;}
._6_c00068{width:24.933600px;}
._4_c00068{width:26.200800px;}
._2_c00068{width:27.511200px;}
._0_c00068{width:29.433600px;}
._8_c00068{width:31.370400px;}
.fc0_c00068{color:rgb(0,0,0);}
.fs3_c00068{font-size:40.000002px;}
.fs1_c00068{font-size:48.000000px;}
.fs2_c00068{font-size:60.000000px;}
.fs0_c00068{font-size:72.000000px;}
.y0_c00068{bottom:0.000000px;}
.y14_c00068{bottom:67.500000px;}
.y23_c00068{bottom:135.750000px;}
.y22_c00068{bottom:177.000000px;}
.y21_c00068{bottom:196.500000px;}
.y20_c00068{bottom:216.000000px;}
.y1f_c00068{bottom:239.250000px;}
.y1e_c00068{bottom:284.250000px;}
.y1d_c00068{bottom:325.500000px;}
.y1c_c00068{bottom:345.000000px;}
.y1b_c00068{bottom:364.500000px;}
.y1a_c00068{bottom:384.000000px;}
.y19_c00068{bottom:403.500000px;}
.y18_c00068{bottom:423.000000px;}
.y17_c00068{bottom:446.250000px;}
.y16_c00068{bottom:487.500000px;}
.y15_c00068{bottom:510.750000px;}
.y12_c00068{bottom:552.000000px;}
.y11_c00068{bottom:579.000000px;}
.y10_c00068{bottom:606.000000px;}
.yf_c00068{bottom:654.000000px;}
.ye_c00068{bottom:681.000000px;}
.yd_c00068{bottom:729.000000px;}
.yc_c00068{bottom:756.000000px;}
.yb_c00068{bottom:783.000000px;}
.ya_c00068{bottom:810.000000px;}
.y9_c00068{bottom:858.000000px;}
.y8_c00068{bottom:885.000000px;}
.y7_c00068{bottom:912.000000px;}
.y6_c00068{bottom:939.000000px;}
.y5_c00068{bottom:966.000000px;}
.y4_c00068{bottom:993.000000px;}
.y3_c00068{bottom:1041.000000px;}
.y2_c00068{bottom:1068.000000px;}
.y1_c00068{bottom:1095.000000px;}
.y13_c00068{bottom:1194.000000px;}
.h4_c00068{height:38.818359px;}
.h2_c00068{height:51.257812px;}
.h5_c00068{height:53.818359px;}
.h3_c00068{height:56.074219px;}
.h1_c00068{height:57.258075px;}
.h0_c00068{height:1263.000000px;}
.w0_c00068{width:892.500000px;}
.x0_c00068{left:0.000000px;}
.x1_c00068{left:150.519750px;}
.x2_c00068{left:281.790150px;}
.x3_c00068{left:810.335100px;}
@media print{
.v2_c00068{vertical-align:-20.521067pt;}
.v3_c00068{vertical-align:-13.333333pt;}
.v0_c00068{vertical-align:0.000000pt;}
.v1_c00068{vertical-align:20.521067pt;}
.ls6_c00068{letter-spacing:-4.586667pt;}
.ls3_c00068{letter-spacing:-2.394667pt;}
.ls5_c00068{letter-spacing:-1.621333pt;}
.ls4_c00068{letter-spacing:-0.010667pt;}
.ls2_c00068{letter-spacing:-0.008533pt;}
.ls1_c00068{letter-spacing:0.000000pt;}
.ls0_c00068{letter-spacing:0.010667pt;}
.ws5_c00068{word-spacing:-13.333333pt;}
.ws4_c00068{word-spacing:-13.322667pt;}
.ws0_c00068{word-spacing:-11.724800pt;}
.ws3_c00068{word-spacing:-8.888889pt;}
.ws2_c00068{word-spacing:-1.777780pt;}
.ws1_c00068{word-spacing:-0.059733pt;}
.ws6_c00068{word-spacing:0.000000pt;}
._13_c00068{margin-left:-9.408000pt;}
._16_c00068{margin-left:-5.088533pt;}
._d_c00068{margin-left:-4.064000pt;}
._e_c00068{margin-left:-3.008000pt;}
._7_c00068{margin-left:-1.721600pt;}
._1_c00068{width:1.702400pt;}
._3_c00068{width:2.867200pt;}
._5_c00068{width:4.446400pt;}
._10_c00068{width:5.990400pt;}
._12_c00068{width:7.112000pt;}
._17_c00068{width:8.387733pt;}
._11_c00068{width:9.409600pt;}
._a_c00068{width:10.649600pt;}
._9_c00068{width:11.801600pt;}
._c_c00068{width:13.548800pt;}
._b_c00068{width:15.264000pt;}
._15_c00068{width:16.563200pt;}
._14_c00068{width:19.308800pt;}
._f_c00068{width:20.864000pt;}
._6_c00068{width:22.163200pt;}
._4_c00068{width:23.289600pt;}
._2_c00068{width:24.454400pt;}
._0_c00068{width:26.163200pt;}
._8_c00068{width:27.884800pt;}
.fs3_c00068{font-size:35.555557pt;}
.fs1_c00068{font-size:42.666667pt;}
.fs2_c00068{font-size:53.333333pt;}
.fs0_c00068{font-size:64.000000pt;}
.y0_c00068{bottom:0.000000pt;}
.y14_c00068{bottom:60.000000pt;}
.y23_c00068{bottom:120.666667pt;}
.y22_c00068{bottom:157.333333pt;}
.y21_c00068{bottom:174.666667pt;}
.y20_c00068{bottom:192.000000pt;}
.y1f_c00068{bottom:212.666667pt;}
.y1e_c00068{bottom:252.666667pt;}
.y1d_c00068{bottom:289.333333pt;}
.y1c_c00068{bottom:306.666667pt;}
.y1b_c00068{bottom:324.000000pt;}
.y1a_c00068{bottom:341.333333pt;}
.y19_c00068{bottom:358.666667pt;}
.y18_c00068{bottom:376.000000pt;}
.y17_c00068{bottom:396.666667pt;}
.y16_c00068{bottom:433.333333pt;}
.y15_c00068{bottom:454.000000pt;}
.y12_c00068{bottom:490.666667pt;}
.y11_c00068{bottom:514.666667pt;}
.y10_c00068{bottom:538.666667pt;}
.yf_c00068{bottom:581.333333pt;}
.ye_c00068{bottom:605.333333pt;}
.yd_c00068{bottom:648.000000pt;}
.yc_c00068{bottom:672.000000pt;}
.yb_c00068{bottom:696.000000pt;}
.ya_c00068{bottom:720.000000pt;}
.y9_c00068{bottom:762.666667pt;}
.y8_c00068{bottom:786.666667pt;}
.y7_c00068{bottom:810.666667pt;}
.y6_c00068{bottom:834.666667pt;}
.y5_c00068{bottom:858.666667pt;}
.y4_c00068{bottom:882.666667pt;}
.y3_c00068{bottom:925.333333pt;}
.y2_c00068{bottom:949.333333pt;}
.y1_c00068{bottom:973.333333pt;}
.y13_c00068{bottom:1061.333333pt;}
.h4_c00068{height:34.505208pt;}
.h2_c00068{height:45.562500pt;}
.h5_c00068{height:47.838542pt;}
.h3_c00068{height:49.843750pt;}
.h1_c00068{height:50.896067pt;}
.h0_c00068{height:1122.666667pt;}
.w0_c00068{width:793.333333pt;}
.x0_c00068{left:0.000000pt;}
.x1_c00068{left:133.795333pt;}
.x2_c00068{left:250.480133pt;}
.x3_c00068{left:720.297867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9c6da30024d6dac0d032fb14.woff2')format("woff");}.ff1_c00069{font-family:ff1_c00069;line-height:0.934082;font-style:normal;font-weight:normal;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_54cf8a44dd61ba1269efe06d.woff2')format("woff");}.ff2_c00069{font-family:ff2_c00069;line-height:0.987793;font-style:normal;font-weight:normal;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_9847cafda24a6b99727157a0.woff2')format("woff");}.ff3_c00069{font-family:ff3_c00069;line-height:0.755859;font-style:normal;font-weight:normal;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_33c1446b7952b1b9a8bcedb5.woff2')format("woff");}.ff4_c00069{font-family:ff4_c00069;line-height:1.155762;font-style:normal;font-weight:normal;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_e3d1b7b1be0b67960cb9e13e.woff2')format("woff");}.ff5_c00069{font-family:ff5_c00069;line-height:1.115723;font-style:normal;font-weight: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_c00069;src:url('chunks/assets/font_131cc4592c3d473e9ed20a9f.woff2')format("woff");}.ff6_c00069{font-family:ff6_c00069;line-height:0.890137;font-style: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);}
.v2_c00069{vertical-align:-23.086200px;}
.v3_c00069{vertical-align:-15.000000px;}
.v0_c00069{vertical-align:0.000000px;}
.v1_c00069{vertical-align:23.086200px;}
.ls3_c00069{letter-spacing:-1.134000px;}
.ls1_c00069{letter-spacing:-0.009600px;}
.ls0_c00069{letter-spacing:0.000000px;}
.ls2_c00069{letter-spacing:0.012000px;}
.sc__c00069{text-shadow:none;}
.sc0_c00069{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00069{-webkit-text-stroke:0px transparent;}
.sc0_c00069{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00069{word-spacing:-13.190400px;}
.ws1_c00069{word-spacing:-10.000001px;}
.ws2_c00069{word-spacing:0.000000px;}
._f_c00069{margin-left:-9.712800px;}
._12_c00069{margin-left:-6.618000px;}
._10_c00069{margin-left:-5.192442px;}
._14_c00069{margin-left:-4.128000px;}
._7_c00069{margin-left:-2.930400px;}
._a_c00069{margin-left:-1.476000px;}
._1_c00069{width:1.108800px;}
._3_c00069{width:2.865600px;}
._c_c00069{width:4.024800px;}
._5_c00069{width:5.083200px;}
._11_c00069{width:6.414084px;}
._b_c00069{width:7.502400px;}
._13_c00069{width:8.778042px;}
._6_c00069{width:12.585600px;}
._d_c00069{width:13.759200px;}
._4_c00069{width:14.781600px;}
._2_c00069{width:16.660800px;}
._0_c00069{width:17.719200px;}
._e_c00069{width:18.777600px;}
._8_c00069{width:21.038400px;}
._9_c00069{width:23.544000px;}
.fc0_c00069{color:rgb(0,0,0);}
.fs4_c00069{font-size:40.000002px;}
.fs1_c00069{font-size:48.000000px;}
.fs2_c00069{font-size:54.000000px;}
.fs3_c00069{font-size:60.000000px;}
.fs0_c00069{font-size:72.000000px;}
.y0_c00069{bottom:0.000000px;}
.y9_c00069{bottom:12.000000px;}
.y8_c00069{bottom:31.500000px;}
.ye_c00069{bottom:67.500000px;}
.y12_c00069{bottom:132.000000px;}
.y11_c00069{bottom:155.250000px;}
.y10_c00069{bottom:196.500000px;}
.yf_c00069{bottom:219.750000px;}
.yc_c00069{bottom:282.000000px;}
.yb_c00069{bottom:309.000000px;}
.ya_c00069{bottom:336.000000px;}
.y7_c00069{bottom:381.000000px;}
.y6_c00069{bottom:939.000000px;}
.y5_c00069{bottom:966.000000px;}
.y4_c00069{bottom:993.000000px;}
.y3_c00069{bottom:1020.000000px;}
.y2_c00069{bottom:1068.000000px;}
.y1_c00069{bottom:1095.000000px;}
.yd_c00069{bottom:1194.000000px;}
.h7_c00069{height:38.818359px;}
.h4_c00069{height:42.292969px;}
.h6_c00069{height:44.208984px;}
.h1_c00069{height:51.257812px;}
.h8_c00069{height:53.818359px;}
.h5_c00069{height:56.074219px;}
.h2_c00069{height:57.258075px;}
.h3_c00069{height:526.500000px;}
.h0_c00069{height:1263.000000px;}
.w1_c00069{width:676.499850px;}
.w0_c00069{width:892.500000px;}
.x0_c00069{left:0.000000px;}
.x2_c00069{left:17.025105px;}
.x1_c00069{left:65.480310px;}
.x3_c00069{left:229.475400px;}
@media print{
.v2_c00069{vertical-align:-20.521067pt;}
.v3_c00069{vertical-align:-13.333333pt;}
.v0_c00069{vertical-align:0.000000pt;}
.v1_c00069{vertical-align:20.521067pt;}
.ls3_c00069{letter-spacing:-1.008000pt;}
.ls1_c00069{letter-spacing:-0.008533pt;}
.ls0_c00069{letter-spacing:0.000000pt;}
.ls2_c00069{letter-spacing:0.010667pt;}
.ws0_c00069{word-spacing:-11.724800pt;}
.ws1_c00069{word-spacing:-8.888889pt;}
.ws2_c00069{word-spacing:0.000000pt;}
._f_c00069{margin-left:-8.633600pt;}
._12_c00069{margin-left:-5.882667pt;}
._10_c00069{margin-left:-4.615504pt;}
._14_c00069{margin-left:-3.669333pt;}
._7_c00069{margin-left:-2.604800pt;}
._a_c00069{margin-left:-1.312000pt;}
._1_c00069{width:0.985600pt;}
._3_c00069{width:2.547200pt;}
._c_c00069{width:3.577600pt;}
._5_c00069{width:4.518400pt;}
._11_c00069{width:5.701408pt;}
._b_c00069{width:6.668800pt;}
._13_c00069{width:7.802704pt;}
._6_c00069{width:11.187200pt;}
._d_c00069{width:12.230400pt;}
._4_c00069{width:13.139200pt;}
._2_c00069{width:14.809600pt;}
._0_c00069{width:15.750400pt;}
._e_c00069{width:16.691200pt;}
._8_c00069{width:18.700800pt;}
._9_c00069{width:20.928000pt;}
.fs4_c00069{font-size:35.555557pt;}
.fs1_c00069{font-size:42.666667pt;}
.fs2_c00069{font-size:48.000000pt;}
.fs3_c00069{font-size:53.333333pt;}
.fs0_c00069{font-size:64.000000pt;}
.y0_c00069{bottom:0.000000pt;}
.y9_c00069{bottom:10.666667pt;}
.y8_c00069{bottom:28.000000pt;}
.ye_c00069{bottom:60.000000pt;}
.y12_c00069{bottom:117.333333pt;}
.y11_c00069{bottom:138.000000pt;}
.y10_c00069{bottom:174.666667pt;}
.yf_c00069{bottom:195.333333pt;}
.yc_c00069{bottom:250.666667pt;}
.yb_c00069{bottom:274.666667pt;}
.ya_c00069{bottom:298.666667pt;}
.y7_c00069{bottom:338.666667pt;}
.y6_c00069{bottom:834.666667pt;}
.y5_c00069{bottom:858.666667pt;}
.y4_c00069{bottom:882.666667pt;}
.y3_c00069{bottom:906.666667pt;}
.y2_c00069{bottom:949.333333pt;}
.y1_c00069{bottom:973.333333pt;}
.yd_c00069{bottom:1061.333333pt;}
.h7_c00069{height:34.505208pt;}
.h4_c00069{height:37.593750pt;}
.h6_c00069{height:39.296875pt;}
.h1_c00069{height:45.562500pt;}
.h8_c00069{height:47.838542pt;}
.h5_c00069{height:49.843750pt;}
.h2_c00069{height:50.896067pt;}
.h3_c00069{height:468.000000pt;}
.h0_c00069{height:1122.666667pt;}
.w1_c00069{width:601.333200pt;}
.w0_c00069{width:793.333333pt;}
.x0_c00069{left:0.000000pt;}
.x2_c00069{left:15.133427pt;}
.x1_c00069{left:58.204720pt;}
.x3_c00069{left:203.978133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8fa9ab2b46cf05f1c94ef491.woff2')format("woff");}.ff1_c00070{font-family:ff1_c00070;line-height:0.934082;font-style:normal;font-weight:normal;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_372ef54c3629dc0e08e2c117.woff2')format("woff");}.ff2_c00070{font-family:ff2_c00070;line-height:1.124023;font-style:normal;font-weight:normal;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_1e0858f90fa887990167e90a.woff2')format("woff");}.ff3_c00070{font-family:ff3_c00070;line-height:1.155762;font-style:normal;font-weight:normal;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_a803e5bb1628494e8d7acc75.woff2')format("woff");}.ff4_c00070{font-family:ff4_c00070;line-height:1.115723;font-style:normal;font-weight:normal;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_52929148589045b1dc0f634d.woff2')format("woff");}.ff5_c00070{font-family:ff5_c00070;line-height:1.091309;font-style: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);}
.v2_c00070{vertical-align:-23.086200px;}
.v3_c00070{vertical-align:-15.000000px;}
.v0_c00070{vertical-align:0.000000px;}
.v1_c00070{vertical-align:23.086200px;}
.ls3_c00070{letter-spacing:-4.806000px;}
.ls5_c00070{letter-spacing:-1.134000px;}
.ls4_c00070{letter-spacing:-0.012000px;}
.ls2_c00070{letter-spacing:-0.009600px;}
.ls1_c00070{letter-spacing:0.000000px;}
.ls0_c00070{letter-spacing:0.012000px;}
.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;}
}
.ws1_c00070{word-spacing:-19.800000px;}
.ws3_c00070{word-spacing:-15.000000px;}
.ws4_c00070{word-spacing:-14.988000px;}
.ws0_c00070{word-spacing:-13.190400px;}
.ws2_c00070{word-spacing:-10.000001px;}
.ws5_c00070{word-spacing:0.000000px;}
._19_c00070{margin-left:-11.283600px;}
._1b_c00070{margin-left:-7.243200px;}
._1d_c00070{margin-left:-5.705400px;}
._1a_c00070{margin-left:-4.694400px;}
._1_c00070{margin-left:-3.448800px;}
._6_c00070{margin-left:-2.230800px;}
._4_c00070{margin-left:-1.022400px;}
._5_c00070{width:1.692000px;}
._c_c00070{width:2.714400px;}
._0_c00070{width:3.909600px;}
._3_c00070{width:4.953600px;}
._1c_c00070{width:6.007200px;}
._2_c00070{width:7.329600px;}
._11_c00070{width:8.481600px;}
._b_c00070{width:9.763200px;}
._d_c00070{width:10.915200px;}
._8_c00070{width:11.923200px;}
._7_c00070{width:13.658400px;}
._10_c00070{width:14.671200px;}
._a_c00070{width:15.721200px;}
._9_c00070{width:16.941600px;}
._e_c00070{width:18.672000px;}
._f_c00070{width:21.180000px;}
._12_c00070{width:22.965600px;}
._16_c00070{width:24.734400px;}
._13_c00070{width:26.625600px;}
._14_c00070{width:28.238400px;}
._15_c00070{width:29.311200px;}
._17_c00070{width:30.598800px;}
._18_c00070{width:31.766400px;}
.fc0_c00070{color:rgb(0,0,0);}
.fs4_c00070{font-size:40.000002px;}
.fs1_c00070{font-size:48.000000px;}
.fs3_c00070{font-size:60.000000px;}
.fs0_c00070{font-size:72.000000px;}
.fs2_c00070{font-size:84.000000px;}
.y0_c00070{bottom:0.000000px;}
.y19_c00070{bottom:67.500000px;}
.y20_c00070{bottom:132.000000px;}
.y1f_c00070{bottom:151.500000px;}
.y1e_c00070{bottom:174.750000px;}
.y1d_c00070{bottom:216.000000px;}
.y1c_c00070{bottom:235.500000px;}
.y1b_c00070{bottom:255.000000px;}
.y1a_c00070{bottom:278.250000px;}
.y17_c00070{bottom:382.500000px;}
.y16_c00070{bottom:409.500000px;}
.y15_c00070{bottom:436.500000px;}
.y14_c00070{bottom:496.500000px;}
.y13_c00070{bottom:546.000000px;}
.y12_c00070{bottom:573.000000px;}
.y11_c00070{bottom:600.000000px;}
.y10_c00070{bottom:648.000000px;}
.yf_c00070{bottom:675.000000px;}
.ye_c00070{bottom:702.000000px;}
.yd_c00070{bottom:729.000000px;}
.yc_c00070{bottom:777.000000px;}
.yb_c00070{bottom:804.000000px;}
.ya_c00070{bottom:831.000000px;}
.y9_c00070{bottom:858.000000px;}
.y8_c00070{bottom:885.000000px;}
.y7_c00070{bottom:912.000000px;}
.y6_c00070{bottom:960.000000px;}
.y5_c00070{bottom:987.000000px;}
.y4_c00070{bottom:1014.000000px;}
.y3_c00070{bottom:1041.000000px;}
.y2_c00070{bottom:1068.000000px;}
.y1_c00070{bottom:1095.000000px;}
.y18_c00070{bottom:1194.000000px;}
.h5_c00070{height:38.818359px;}
.h2_c00070{height:51.257812px;}
.h6_c00070{height:53.818359px;}
.h4_c00070{height:56.074219px;}
.h1_c00070{height:57.258075px;}
.h3_c00070{height:79.570312px;}
.h0_c00070{height:1263.000000px;}
.w0_c00070{width:892.500000px;}
.x0_c00070{left:0.000000px;}
.x1_c00070{left:150.519750px;}
.x2_c00070{left:281.790150px;}
.x3_c00070{left:810.335100px;}
@media print{
.v2_c00070{vertical-align:-20.521067pt;}
.v3_c00070{vertical-align:-13.333333pt;}
.v0_c00070{vertical-align:0.000000pt;}
.v1_c00070{vertical-align:20.521067pt;}
.ls3_c00070{letter-spacing:-4.272000pt;}
.ls5_c00070{letter-spacing:-1.008000pt;}
.ls4_c00070{letter-spacing:-0.010667pt;}
.ls2_c00070{letter-spacing:-0.008533pt;}
.ls1_c00070{letter-spacing:0.000000pt;}
.ls0_c00070{letter-spacing:0.010667pt;}
.ws1_c00070{word-spacing:-17.600000pt;}
.ws3_c00070{word-spacing:-13.333333pt;}
.ws4_c00070{word-spacing:-13.322667pt;}
.ws0_c00070{word-spacing:-11.724800pt;}
.ws2_c00070{word-spacing:-8.888889pt;}
.ws5_c00070{word-spacing:0.000000pt;}
._19_c00070{margin-left:-10.029867pt;}
._1b_c00070{margin-left:-6.438400pt;}
._1d_c00070{margin-left:-5.071467pt;}
._1a_c00070{margin-left:-4.172800pt;}
._1_c00070{margin-left:-3.065600pt;}
._6_c00070{margin-left:-1.982933pt;}
._4_c00070{margin-left:-0.908800pt;}
._5_c00070{width:1.504000pt;}
._c_c00070{width:2.412800pt;}
._0_c00070{width:3.475200pt;}
._3_c00070{width:4.403200pt;}
._1c_c00070{width:5.339733pt;}
._2_c00070{width:6.515200pt;}
._11_c00070{width:7.539200pt;}
._b_c00070{width:8.678400pt;}
._d_c00070{width:9.702400pt;}
._8_c00070{width:10.598400pt;}
._7_c00070{width:12.140800pt;}
._10_c00070{width:13.041067pt;}
._a_c00070{width:13.974400pt;}
._9_c00070{width:15.059200pt;}
._e_c00070{width:16.597333pt;}
._f_c00070{width:18.826667pt;}
._12_c00070{width:20.413867pt;}
._16_c00070{width:21.986133pt;}
._13_c00070{width:23.667200pt;}
._14_c00070{width:25.100800pt;}
._15_c00070{width:26.054400pt;}
._17_c00070{width:27.198933pt;}
._18_c00070{width:28.236800pt;}
.fs4_c00070{font-size:35.555557pt;}
.fs1_c00070{font-size:42.666667pt;}
.fs3_c00070{font-size:53.333333pt;}
.fs0_c00070{font-size:64.000000pt;}
.fs2_c00070{font-size:74.666667pt;}
.y0_c00070{bottom:0.000000pt;}
.y19_c00070{bottom:60.000000pt;}
.y20_c00070{bottom:117.333333pt;}
.y1f_c00070{bottom:134.666667pt;}
.y1e_c00070{bottom:155.333333pt;}
.y1d_c00070{bottom:192.000000pt;}
.y1c_c00070{bottom:209.333333pt;}
.y1b_c00070{bottom:226.666667pt;}
.y1a_c00070{bottom:247.333333pt;}
.y17_c00070{bottom:340.000000pt;}
.y16_c00070{bottom:364.000000pt;}
.y15_c00070{bottom:388.000000pt;}
.y14_c00070{bottom:441.333333pt;}
.y13_c00070{bottom:485.333333pt;}
.y12_c00070{bottom:509.333333pt;}
.y11_c00070{bottom:533.333333pt;}
.y10_c00070{bottom:576.000000pt;}
.yf_c00070{bottom:600.000000pt;}
.ye_c00070{bottom:624.000000pt;}
.yd_c00070{bottom:648.000000pt;}
.yc_c00070{bottom:690.666667pt;}
.yb_c00070{bottom:714.666667pt;}
.ya_c00070{bottom:738.666667pt;}
.y9_c00070{bottom:762.666667pt;}
.y8_c00070{bottom:786.666667pt;}
.y7_c00070{bottom:810.666667pt;}
.y6_c00070{bottom:853.333333pt;}
.y5_c00070{bottom:877.333333pt;}
.y4_c00070{bottom:901.333333pt;}
.y3_c00070{bottom:925.333333pt;}
.y2_c00070{bottom:949.333333pt;}
.y1_c00070{bottom:973.333333pt;}
.y18_c00070{bottom:1061.333333pt;}
.h5_c00070{height:34.505208pt;}
.h2_c00070{height:45.562500pt;}
.h6_c00070{height:47.838542pt;}
.h4_c00070{height:49.843750pt;}
.h1_c00070{height:50.896067pt;}
.h3_c00070{height:70.729167pt;}
.h0_c00070{height:1122.666667pt;}
.w0_c00070{width:793.333333pt;}
.x0_c00070{left:0.000000pt;}
.x1_c00070{left:133.795333pt;}
.x2_c00070{left:250.480133pt;}
.x3_c00070{left:720.297867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b9eb7f3762513519620cd2ad.woff2')format("woff");}.ff1_c00071{font-family:ff1_c00071;line-height:1.163086;font-style:normal;font-weight:normal;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_298fafca47b5229743981a16.woff2')format("woff");}.ff2_c00071{font-family:ff2_c00071;line-height:0.756836;font-style:normal;font-weight:normal;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_1cea8b7e6ecf0e01b3b7f0f1.woff2')format("woff");}.ff3_c00071{font-family:ff3_c00071;line-height:1.155762;font-style:normal;font-weight:normal;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_219168b08b6444233555f5c1.woff2')format("woff");}.ff4_c00071{font-family:ff4_c00071;line-height:1.115723;font-style:normal;font-weight:normal;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_9eeefa651d573a10f2c3dc6e.woff2')format("woff");}.ff5_c00071{font-family:ff5_c00071;line-height:1.092285;font-style: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);}
.v2_c00071{vertical-align:-23.086200px;}
.v3_c00071{vertical-align:-15.000000px;}
.v0_c00071{vertical-align:0.000000px;}
.v1_c00071{vertical-align:23.086200px;}
.ls6_c00071{letter-spacing:-5.742000px;}
.ls3_c00071{letter-spacing:-3.594000px;}
.ls8_c00071{letter-spacing:-3.450000px;}
.ls9_c00071{letter-spacing:-1.986000px;}
.ls5_c00071{letter-spacing:-1.140000px;}
.ls4_c00071{letter-spacing:-1.032000px;}
.ls7_c00071{letter-spacing:-0.342000px;}
.ls1_c00071{letter-spacing:-0.009600px;}
.ls0_c00071{letter-spacing:0.000000px;}
.ls2_c00071{letter-spacing:0.012000px;}
.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;}
}
.ws2_c00071{word-spacing:-15.000000px;}
.ws0_c00071{word-spacing:-13.190400px;}
.ws1_c00071{word-spacing:-10.000001px;}
.ws3_c00071{word-spacing:0.000000px;}
._d_c00071{margin-left:-10.425600px;}
._18_c00071{margin-left:-7.544220px;}
._19_c00071{margin-left:-5.496000px;}
._7_c00071{margin-left:-4.003200px;}
._0_c00071{margin-left:-2.887200px;}
._6_c00071{margin-left:-1.749600px;}
._4_c00071{width:1.029600px;}
._3_c00071{width:2.080800px;}
._13_c00071{width:3.492000px;}
._2_c00071{width:4.521600px;}
._5_c00071{width:5.652000px;}
._c_c00071{width:6.969600px;}
._b_c00071{width:7.977600px;}
._1_c00071{width:9.468000px;}
._a_c00071{width:10.605600px;}
._16_c00071{width:11.624760px;}
._9_c00071{width:12.664800px;}
._8_c00071{width:14.054400px;}
._12_c00071{width:15.631200px;}
._14_c00071{width:16.812000px;}
._e_c00071{width:18.662400px;}
._17_c00071{width:19.800660px;}
._f_c00071{width:21.585600px;}
._10_c00071{width:22.644000px;}
._11_c00071{width:24.573600px;}
._15_c00071{width:26.035200px;}
.fc0_c00071{color:rgb(0,0,0);}
.fs3_c00071{font-size:40.000002px;}
.fs1_c00071{font-size:48.000000px;}
.fs2_c00071{font-size:60.000000px;}
.fs0_c00071{font-size:72.000000px;}
.y0_c00071{bottom:0.000000px;}
.y13_c00071{bottom:67.500000px;}
.y22_c00071{bottom:132.000000px;}
.y21_c00071{bottom:151.500000px;}
.y20_c00071{bottom:171.000000px;}
.y1f_c00071{bottom:190.500000px;}
.y1e_c00071{bottom:213.750000px;}
.y1d_c00071{bottom:255.000000px;}
.y1c_c00071{bottom:278.250000px;}
.y1b_c00071{bottom:319.500000px;}
.y1a_c00071{bottom:339.000000px;}
.y19_c00071{bottom:362.250000px;}
.y18_c00071{bottom:403.500000px;}
.y17_c00071{bottom:423.000000px;}
.y16_c00071{bottom:442.500000px;}
.y15_c00071{bottom:462.000000px;}
.y14_c00071{bottom:485.250000px;}
.y11_c00071{bottom:600.000000px;}
.y10_c00071{bottom:627.000000px;}
.yf_c00071{bottom:654.000000px;}
.ye_c00071{bottom:702.000000px;}
.yd_c00071{bottom:729.000000px;}
.yc_c00071{bottom:756.000000px;}
.yb_c00071{bottom:783.000000px;}
.ya_c00071{bottom:831.000000px;}
.y9_c00071{bottom:858.000000px;}
.y8_c00071{bottom:885.000000px;}
.y7_c00071{bottom:912.000000px;}
.y6_c00071{bottom:939.000000px;}
.y5_c00071{bottom:966.000000px;}
.y4_c00071{bottom:993.000000px;}
.y3_c00071{bottom:1041.000000px;}
.y2_c00071{bottom:1068.000000px;}
.y1_c00071{bottom:1095.000000px;}
.y12_c00071{bottom:1194.000000px;}
.h5_c00071{height:38.818359px;}
.h4_c00071{height:44.208984px;}
.h6_c00071{height:53.818359px;}
.h3_c00071{height:56.074219px;}
.h1_c00071{height:67.746094px;}
.h2_c00071{height:68.250262px;}
.h0_c00071{height:1263.000000px;}
.w0_c00071{width:892.500000px;}
.x0_c00071{left:0.000000px;}
.x1_c00071{left:65.480310px;}
@media print{
.v2_c00071{vertical-align:-20.521067pt;}
.v3_c00071{vertical-align:-13.333333pt;}
.v0_c00071{vertical-align:0.000000pt;}
.v1_c00071{vertical-align:20.521067pt;}
.ls6_c00071{letter-spacing:-5.104000pt;}
.ls3_c00071{letter-spacing:-3.194667pt;}
.ls8_c00071{letter-spacing:-3.066667pt;}
.ls9_c00071{letter-spacing:-1.765333pt;}
.ls5_c00071{letter-spacing:-1.013333pt;}
.ls4_c00071{letter-spacing:-0.917333pt;}
.ls7_c00071{letter-spacing:-0.304000pt;}
.ls1_c00071{letter-spacing:-0.008533pt;}
.ls0_c00071{letter-spacing:0.000000pt;}
.ls2_c00071{letter-spacing:0.010667pt;}
.ws2_c00071{word-spacing:-13.333333pt;}
.ws0_c00071{word-spacing:-11.724800pt;}
.ws1_c00071{word-spacing:-8.888889pt;}
.ws3_c00071{word-spacing:0.000000pt;}
._d_c00071{margin-left:-9.267200pt;}
._18_c00071{margin-left:-6.705973pt;}
._19_c00071{margin-left:-4.885333pt;}
._7_c00071{margin-left:-3.558400pt;}
._0_c00071{margin-left:-2.566400pt;}
._6_c00071{margin-left:-1.555200pt;}
._4_c00071{width:0.915200pt;}
._3_c00071{width:1.849600pt;}
._13_c00071{width:3.104000pt;}
._2_c00071{width:4.019200pt;}
._5_c00071{width:5.024000pt;}
._c_c00071{width:6.195200pt;}
._b_c00071{width:7.091200pt;}
._1_c00071{width:8.416000pt;}
._a_c00071{width:9.427200pt;}
._16_c00071{width:10.333120pt;}
._9_c00071{width:11.257600pt;}
._8_c00071{width:12.492800pt;}
._12_c00071{width:13.894400pt;}
._14_c00071{width:14.944000pt;}
._e_c00071{width:16.588800pt;}
._17_c00071{width:17.600587pt;}
._f_c00071{width:19.187200pt;}
._10_c00071{width:20.128000pt;}
._11_c00071{width:21.843200pt;}
._15_c00071{width:23.142400pt;}
.fs3_c00071{font-size:35.555557pt;}
.fs1_c00071{font-size:42.666667pt;}
.fs2_c00071{font-size:53.333333pt;}
.fs0_c00071{font-size:64.000000pt;}
.y0_c00071{bottom:0.000000pt;}
.y13_c00071{bottom:60.000000pt;}
.y22_c00071{bottom:117.333333pt;}
.y21_c00071{bottom:134.666667pt;}
.y20_c00071{bottom:152.000000pt;}
.y1f_c00071{bottom:169.333333pt;}
.y1e_c00071{bottom:190.000000pt;}
.y1d_c00071{bottom:226.666667pt;}
.y1c_c00071{bottom:247.333333pt;}
.y1b_c00071{bottom:284.000000pt;}
.y1a_c00071{bottom:301.333333pt;}
.y19_c00071{bottom:322.000000pt;}
.y18_c00071{bottom:358.666667pt;}
.y17_c00071{bottom:376.000000pt;}
.y16_c00071{bottom:393.333333pt;}
.y15_c00071{bottom:410.666667pt;}
.y14_c00071{bottom:431.333333pt;}
.y11_c00071{bottom:533.333333pt;}
.y10_c00071{bottom:557.333333pt;}
.yf_c00071{bottom:581.333333pt;}
.ye_c00071{bottom:624.000000pt;}
.yd_c00071{bottom:648.000000pt;}
.yc_c00071{bottom:672.000000pt;}
.yb_c00071{bottom:696.000000pt;}
.ya_c00071{bottom:738.666667pt;}
.y9_c00071{bottom:762.666667pt;}
.y8_c00071{bottom:786.666667pt;}
.y7_c00071{bottom:810.666667pt;}
.y6_c00071{bottom:834.666667pt;}
.y5_c00071{bottom:858.666667pt;}
.y4_c00071{bottom:882.666667pt;}
.y3_c00071{bottom:925.333333pt;}
.y2_c00071{bottom:949.333333pt;}
.y1_c00071{bottom:973.333333pt;}
.y12_c00071{bottom:1061.333333pt;}
.h5_c00071{height:34.505208pt;}
.h4_c00071{height:39.296875pt;}
.h6_c00071{height:47.838542pt;}
.h3_c00071{height:49.843750pt;}
.h1_c00071{height:60.218750pt;}
.h2_c00071{height:60.666900pt;}
.h0_c00071{height:1122.666667pt;}
.w0_c00071{width:793.333333pt;}
.x0_c00071{left:0.000000pt;}
.x1_c00071{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_65b854a899f1b428d9f7f148.woff2')format("woff");}.ff1_c00072{font-family:ff1_c00072;line-height:1.163086;font-style:normal;font-weight:normal;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_ce1fac48118fad7e5fe75b96.woff2')format("woff");}.ff2_c00072{font-family:ff2_c00072;line-height:1.155762;font-style:normal;font-weight:normal;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_94566c2525b053a3a303738a.woff2')format("woff");}.ff3_c00072{font-family:ff3_c00072;line-height:1.100586;font-style:normal;font-weight:normal;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_9246092a94cb21bef43cecd1.woff2')format("woff");}.ff4_c00072{font-family:ff4_c00072;line-height:1.092285;font-style: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);}
.v2_c00072{vertical-align:-23.086200px;}
.v3_c00072{vertical-align:-15.000000px;}
.v0_c00072{vertical-align:0.000000px;}
.v1_c00072{vertical-align:23.086200px;}
.ls5_c00072{letter-spacing:-3.660000px;}
.ls4_c00072{letter-spacing:-1.560000px;}
.ls6_c00072{letter-spacing:-0.588000px;}
.ls3_c00072{letter-spacing:-0.009600px;}
.ls2_c00072{letter-spacing:0.000000px;}
.ls1_c00072{letter-spacing:0.012000px;}
.ls0_c00072{letter-spacing:2.095200px;}
.sc__c00072{text-shadow:none;}
.sc0_c00072{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00072{-webkit-text-stroke:0px transparent;}
.sc0_c00072{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00072{word-spacing:-19.800000px;}
.ws0_c00072{word-spacing:-13.190400px;}
.ws2_c00072{word-spacing:-10.000001px;}
.ws3_c00072{word-spacing:0.000000px;}
._1c_c00072{margin-left:-6.163200px;}
._1d_c00072{margin-left:-5.155200px;}
._3_c00072{margin-left:-3.952800px;}
._a_c00072{margin-left:-2.952000px;}
._8_c00072{margin-left:-1.591200px;}
._1_c00072{width:1.900800px;}
._2_c00072{width:3.549600px;}
._0_c00072{width:5.457600px;}
._c_c00072{width:6.624000px;}
._b_c00072{width:8.316000px;}
._4_c00072{width:9.410400px;}
._17_c00072{width:10.612800px;}
._d_c00072{width:11.793600px;}
._e_c00072{width:13.118400px;}
._f_c00072{width:14.954400px;}
._16_c00072{width:16.092000px;}
._6_c00072{width:17.114400px;}
._18_c00072{width:18.446400px;}
._5_c00072{width:22.500000px;}
._9_c00072{width:24.141600px;}
._7_c00072{width:25.768800px;}
._12_c00072{width:26.784000px;}
._11_c00072{width:28.396800px;}
._10_c00072{width:30.319200px;}
._14_c00072{width:31.903200px;}
._13_c00072{width:33.249600px;}
._15_c00072{width:35.186400px;}
._19_c00072{width:36.417600px;}
._1b_c00072{width:38.563200px;}
._1a_c00072{width:40.665600px;}
.fc0_c00072{color:rgb(0,0,0);}
.fs3_c00072{font-size:40.000002px;}
.fs1_c00072{font-size:48.000000px;}
.fs2_c00072{font-size:60.000000px;}
.fs0_c00072{font-size:72.000000px;}
.y0_c00072{bottom:0.000000px;}
.y18_c00072{bottom:67.500000px;}
.y20_c00072{bottom:132.000000px;}
.y1f_c00072{bottom:155.250000px;}
.y1e_c00072{bottom:200.250000px;}
.y1d_c00072{bottom:241.500000px;}
.y1c_c00072{bottom:261.000000px;}
.y1b_c00072{bottom:284.250000px;}
.y1a_c00072{bottom:325.500000px;}
.y19_c00072{bottom:348.750000px;}
.y16_c00072{bottom:423.000000px;}
.y15_c00072{bottom:450.000000px;}
.y14_c00072{bottom:477.000000px;}
.y13_c00072{bottom:504.000000px;}
.y12_c00072{bottom:552.000000px;}
.y11_c00072{bottom:579.000000px;}
.y10_c00072{bottom:606.000000px;}
.yf_c00072{bottom:633.000000px;}
.ye_c00072{bottom:660.000000px;}
.yd_c00072{bottom:708.000000px;}
.yc_c00072{bottom:735.000000px;}
.yb_c00072{bottom:762.000000px;}
.ya_c00072{bottom:810.000000px;}
.y9_c00072{bottom:837.000000px;}
.y8_c00072{bottom:864.000000px;}
.y7_c00072{bottom:891.000000px;}
.y6_c00072{bottom:939.000000px;}
.y5_c00072{bottom:966.000000px;}
.y4_c00072{bottom:993.000000px;}
.y3_c00072{bottom:1020.000000px;}
.y2_c00072{bottom:1068.000000px;}
.y1_c00072{bottom:1095.000000px;}
.y17_c00072{bottom:1194.000000px;}
.h4_c00072{height:38.027344px;}
.h5_c00072{height:53.027344px;}
.h3_c00072{height:56.074219px;}
.h1_c00072{height:67.746094px;}
.h2_c00072{height:68.250262px;}
.h0_c00072{height:1263.000000px;}
.w0_c00072{width:892.500000px;}
.x0_c00072{left:0.000000px;}
.x1_c00072{left:150.519750px;}
.x2_c00072{left:281.790150px;}
.x3_c00072{left:810.335100px;}
@media print{
.v2_c00072{vertical-align:-20.521067pt;}
.v3_c00072{vertical-align:-13.333333pt;}
.v0_c00072{vertical-align:0.000000pt;}
.v1_c00072{vertical-align:20.521067pt;}
.ls5_c00072{letter-spacing:-3.253333pt;}
.ls4_c00072{letter-spacing:-1.386667pt;}
.ls6_c00072{letter-spacing:-0.522667pt;}
.ls3_c00072{letter-spacing:-0.008533pt;}
.ls2_c00072{letter-spacing:0.000000pt;}
.ls1_c00072{letter-spacing:0.010667pt;}
.ls0_c00072{letter-spacing:1.862400pt;}
.ws1_c00072{word-spacing:-17.600000pt;}
.ws0_c00072{word-spacing:-11.724800pt;}
.ws2_c00072{word-spacing:-8.888889pt;}
.ws3_c00072{word-spacing:0.000000pt;}
._1c_c00072{margin-left:-5.478400pt;}
._1d_c00072{margin-left:-4.582400pt;}
._3_c00072{margin-left:-3.513600pt;}
._a_c00072{margin-left:-2.624000pt;}
._8_c00072{margin-left:-1.414400pt;}
._1_c00072{width:1.689600pt;}
._2_c00072{width:3.155200pt;}
._0_c00072{width:4.851200pt;}
._c_c00072{width:5.888000pt;}
._b_c00072{width:7.392000pt;}
._4_c00072{width:8.364800pt;}
._17_c00072{width:9.433600pt;}
._d_c00072{width:10.483200pt;}
._e_c00072{width:11.660800pt;}
._f_c00072{width:13.292800pt;}
._16_c00072{width:14.304000pt;}
._6_c00072{width:15.212800pt;}
._18_c00072{width:16.396800pt;}
._5_c00072{width:20.000000pt;}
._9_c00072{width:21.459200pt;}
._7_c00072{width:22.905600pt;}
._12_c00072{width:23.808000pt;}
._11_c00072{width:25.241600pt;}
._10_c00072{width:26.950400pt;}
._14_c00072{width:28.358400pt;}
._13_c00072{width:29.555200pt;}
._15_c00072{width:31.276800pt;}
._19_c00072{width:32.371200pt;}
._1b_c00072{width:34.278400pt;}
._1a_c00072{width:36.147200pt;}
.fs3_c00072{font-size:35.555557pt;}
.fs1_c00072{font-size:42.666667pt;}
.fs2_c00072{font-size:53.333333pt;}
.fs0_c00072{font-size:64.000000pt;}
.y0_c00072{bottom:0.000000pt;}
.y18_c00072{bottom:60.000000pt;}
.y20_c00072{bottom:117.333333pt;}
.y1f_c00072{bottom:138.000000pt;}
.y1e_c00072{bottom:178.000000pt;}
.y1d_c00072{bottom:214.666667pt;}
.y1c_c00072{bottom:232.000000pt;}
.y1b_c00072{bottom:252.666667pt;}
.y1a_c00072{bottom:289.333333pt;}
.y19_c00072{bottom:310.000000pt;}
.y16_c00072{bottom:376.000000pt;}
.y15_c00072{bottom:400.000000pt;}
.y14_c00072{bottom:424.000000pt;}
.y13_c00072{bottom:448.000000pt;}
.y12_c00072{bottom:490.666667pt;}
.y11_c00072{bottom:514.666667pt;}
.y10_c00072{bottom:538.666667pt;}
.yf_c00072{bottom:562.666667pt;}
.ye_c00072{bottom:586.666667pt;}
.yd_c00072{bottom:629.333333pt;}
.yc_c00072{bottom:653.333333pt;}
.yb_c00072{bottom:677.333333pt;}
.ya_c00072{bottom:720.000000pt;}
.y9_c00072{bottom:744.000000pt;}
.y8_c00072{bottom:768.000000pt;}
.y7_c00072{bottom:792.000000pt;}
.y6_c00072{bottom:834.666667pt;}
.y5_c00072{bottom:858.666667pt;}
.y4_c00072{bottom:882.666667pt;}
.y3_c00072{bottom:906.666667pt;}
.y2_c00072{bottom:949.333333pt;}
.y1_c00072{bottom:973.333333pt;}
.y17_c00072{bottom:1061.333333pt;}
.h4_c00072{height:33.802083pt;}
.h5_c00072{height:47.135417pt;}
.h3_c00072{height:49.843750pt;}
.h1_c00072{height:60.218750pt;}
.h2_c00072{height:60.666900pt;}
.h0_c00072{height:1122.666667pt;}
.w0_c00072{width:793.333333pt;}
.x0_c00072{left:0.000000pt;}
.x1_c00072{left:133.795333pt;}
.x2_c00072{left:250.480133pt;}
.x3_c00072{left:720.297867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_abb308238d4a3b81430fc456.woff2')format("woff");}.ff1_c00073{font-family:ff1_c00073;line-height:0.934082;font-style:normal;font-weight:normal;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_562e244549892ca6f861355e.woff2')format("woff");}.ff2_c00073{font-family:ff2_c00073;line-height:0.987793;font-style:normal;font-weight:normal;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_7ebda6e65e730f13e3381d84.woff2')format("woff");}.ff3_c00073{font-family:ff3_c00073;line-height:0.755859;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00073;src:url('chunks/assets/font_47d19718458be866067ee808.woff2')format("woff");}.ff4_c00073{font-family:ff4_c00073;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00073;src:url('chunks/assets/font_10a60c62197bce7106409e49.woff2')format("woff");}.ff5_c00073{font-family:ff5_c00073;line-height:1.115723;font-style:normal;font-weight: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_c00073;src:url('chunks/assets/font_e84190099a4d5a9309822a3e.woff2')format("woff");}.ff6_c00073{font-family:ff6_c00073;line-height:0.890137;font-style: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);}
.v2_c00073{vertical-align:-15.000000px;}
.v0_c00073{vertical-align:0.000000px;}
.v1_c00073{vertical-align:23.086200px;}
.ls3_c00073{letter-spacing:-2.094000px;}
.ls4_c00073{letter-spacing:-1.602000px;}
.ls1_c00073{letter-spacing:-0.009600px;}
.ls0_c00073{letter-spacing:0.000000px;}
.ls2_c00073{letter-spacing:0.012000px;}
.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;}
}
.ws2_c00073{word-spacing:-15.000000px;}
.ws0_c00073{word-spacing:-13.190400px;}
.ws1_c00073{word-spacing:-10.000001px;}
.ws3_c00073{word-spacing:0.000000px;}
._4_c00073{margin-left:-9.900000px;}
._11_c00073{margin-left:-6.350400px;}
._13_c00073{margin-left:-4.953600px;}
._6_c00073{margin-left:-3.708000px;}
._0_c00073{margin-left:-2.347200px;}
._2_c00073{margin-left:-1.245600px;}
._3_c00073{width:1.908000px;}
._1_c00073{width:2.988000px;}
._5_c00073{width:4.579200px;}
._8_c00073{width:5.637600px;}
._7_c00073{width:7.344000px;}
._b_c00073{width:8.380800px;}
._9_c00073{width:10.000800px;}
._a_c00073{width:11.066400px;}
._14_c00073{width:12.355200px;}
._15_c00073{width:13.766400px;}
._d_c00073{width:14.940000px;}
._12_c00073{width:16.351200px;}
._c_c00073{width:17.841600px;}
._16_c00073{width:20.180160px;}
._f_c00073{width:21.895200px;}
._e_c00073{width:23.292000px;}
._10_c00073{width:24.825600px;}
.fc0_c00073{color:rgb(0,0,0);}
.fs4_c00073{font-size:40.000002px;}
.fs1_c00073{font-size:48.000000px;}
.fs2_c00073{font-size:54.000000px;}
.fs3_c00073{font-size:60.000000px;}
.fs0_c00073{font-size:72.000000px;}
.y0_c00073{bottom:0.000000px;}
.y9_c00073{bottom:10.500000px;}
.y8_c00073{bottom:33.000000px;}
.yf_c00073{bottom:67.500000px;}
.y18_c00073{bottom:132.000000px;}
.y17_c00073{bottom:155.250000px;}
.y16_c00073{bottom:196.500000px;}
.y15_c00073{bottom:216.000000px;}
.y14_c00073{bottom:235.500000px;}
.y13_c00073{bottom:255.000000px;}
.y12_c00073{bottom:274.500000px;}
.y11_c00073{bottom:297.750000px;}
.y10_c00073{bottom:342.750000px;}
.yd_c00073{bottom:387.000000px;}
.yc_c00073{bottom:414.000000px;}
.yb_c00073{bottom:441.000000px;}
.ya_c00073{bottom:468.000000px;}
.y7_c00073{bottom:513.000000px;}
.y6_c00073{bottom:960.000000px;}
.y5_c00073{bottom:987.000000px;}
.y4_c00073{bottom:1014.000000px;}
.y3_c00073{bottom:1041.000000px;}
.y2_c00073{bottom:1068.000000px;}
.y1_c00073{bottom:1095.000000px;}
.ye_c00073{bottom:1194.000000px;}
.h7_c00073{height:38.818359px;}
.h4_c00073{height:42.292969px;}
.h6_c00073{height:44.208984px;}
.h2_c00073{height:51.257812px;}
.h8_c00073{height:53.818359px;}
.h5_c00073{height:56.074219px;}
.h1_c00073{height:57.258075px;}
.h3_c00073{height:415.500000px;}
.h0_c00073{height:1263.000000px;}
.w1_c00073{width:676.499850px;}
.w0_c00073{width:892.500000px;}
.x0_c00073{left:0.000000px;}
.x2_c00073{left:9.747758px;}
.x1_c00073{left:65.480310px;}
.x3_c00073{left:132.750690px;}
@media print{
.v2_c00073{vertical-align:-13.333333pt;}
.v0_c00073{vertical-align:0.000000pt;}
.v1_c00073{vertical-align:20.521067pt;}
.ls3_c00073{letter-spacing:-1.861333pt;}
.ls4_c00073{letter-spacing:-1.424000pt;}
.ls1_c00073{letter-spacing:-0.008533pt;}
.ls0_c00073{letter-spacing:0.000000pt;}
.ls2_c00073{letter-spacing:0.010667pt;}
.ws2_c00073{word-spacing:-13.333333pt;}
.ws0_c00073{word-spacing:-11.724800pt;}
.ws1_c00073{word-spacing:-8.888889pt;}
.ws3_c00073{word-spacing:0.000000pt;}
._4_c00073{margin-left:-8.800000pt;}
._11_c00073{margin-left:-5.644800pt;}
._13_c00073{margin-left:-4.403200pt;}
._6_c00073{margin-left:-3.296000pt;}
._0_c00073{margin-left:-2.086400pt;}
._2_c00073{margin-left:-1.107200pt;}
._3_c00073{width:1.696000pt;}
._1_c00073{width:2.656000pt;}
._5_c00073{width:4.070400pt;}
._8_c00073{width:5.011200pt;}
._7_c00073{width:6.528000pt;}
._b_c00073{width:7.449600pt;}
._9_c00073{width:8.889600pt;}
._a_c00073{width:9.836800pt;}
._14_c00073{width:10.982400pt;}
._15_c00073{width:12.236800pt;}
._d_c00073{width:13.280000pt;}
._12_c00073{width:14.534400pt;}
._c_c00073{width:15.859200pt;}
._16_c00073{width:17.937920pt;}
._f_c00073{width:19.462400pt;}
._e_c00073{width:20.704000pt;}
._10_c00073{width:22.067200pt;}
.fs4_c00073{font-size:35.555557pt;}
.fs1_c00073{font-size:42.666667pt;}
.fs2_c00073{font-size:48.000000pt;}
.fs3_c00073{font-size:53.333333pt;}
.fs0_c00073{font-size:64.000000pt;}
.y0_c00073{bottom:0.000000pt;}
.y9_c00073{bottom:9.333333pt;}
.y8_c00073{bottom:29.333333pt;}
.yf_c00073{bottom:60.000000pt;}
.y18_c00073{bottom:117.333333pt;}
.y17_c00073{bottom:138.000000pt;}
.y16_c00073{bottom:174.666667pt;}
.y15_c00073{bottom:192.000000pt;}
.y14_c00073{bottom:209.333333pt;}
.y13_c00073{bottom:226.666667pt;}
.y12_c00073{bottom:244.000000pt;}
.y11_c00073{bottom:264.666667pt;}
.y10_c00073{bottom:304.666667pt;}
.yd_c00073{bottom:344.000000pt;}
.yc_c00073{bottom:368.000000pt;}
.yb_c00073{bottom:392.000000pt;}
.ya_c00073{bottom:416.000000pt;}
.y7_c00073{bottom:456.000000pt;}
.y6_c00073{bottom:853.333333pt;}
.y5_c00073{bottom:877.333333pt;}
.y4_c00073{bottom:901.333333pt;}
.y3_c00073{bottom:925.333333pt;}
.y2_c00073{bottom:949.333333pt;}
.y1_c00073{bottom:973.333333pt;}
.ye_c00073{bottom:1061.333333pt;}
.h7_c00073{height:34.505208pt;}
.h4_c00073{height:37.593750pt;}
.h6_c00073{height:39.296875pt;}
.h2_c00073{height:45.562500pt;}
.h8_c00073{height:47.838542pt;}
.h5_c00073{height:49.843750pt;}
.h1_c00073{height:50.896067pt;}
.h3_c00073{height:369.333333pt;}
.h0_c00073{height:1122.666667pt;}
.w1_c00073{width:601.333200pt;}
.w0_c00073{width:793.333333pt;}
.x0_c00073{left:0.000000pt;}
.x2_c00073{left:8.664673pt;}
.x1_c00073{left:58.204720pt;}
.x3_c00073{left:118.000613pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a8162f97ef41097051328a6e.woff2')format("woff");}.ff1_c00074{font-family:ff1_c00074;line-height:1.163086;font-style:normal;font-weight:normal;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_dc371a1412a79b26d0e1efff.woff2')format("woff");}.ff2_c00074{font-family:ff2_c00074;line-height:0.888672;font-style:normal;font-weight:normal;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_d46ff0d45495a17997ee5dfd.woff2')format("woff");}.ff3_c00074{font-family:ff3_c00074;line-height:1.155762;font-style:normal;font-weight:normal;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_6aede959938137263431d3a1.woff2')format("woff");}.ff4_c00074{font-family:ff4_c00074;line-height:1.115723;font-style:normal;font-weight:normal;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_41d52257f6432c30b27568a8.woff2')format("woff");}.ff5_c00074{font-family:ff5_c00074;line-height:1.092285;font-style: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);}
.v2_c00074{vertical-align:-23.086200px;}
.v3_c00074{vertical-align:-15.000000px;}
.v0_c00074{vertical-align:0.000000px;}
.v1_c00074{vertical-align:23.086200px;}
.ls4_c00074{letter-spacing:-1.644000px;}
.ls3_c00074{letter-spacing:-0.009600px;}
.ls2_c00074{letter-spacing:0.000000px;}
.ls0_c00074{letter-spacing:0.007200px;}
.ls1_c00074{letter-spacing:0.012000px;}
.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;}
}
.ws3_c00074{word-spacing:-19.800000px;}
.ws0_c00074{word-spacing:-13.190400px;}
.ws5_c00074{word-spacing:-10.000001px;}
.ws1_c00074{word-spacing:-4.584000px;}
.ws4_c00074{word-spacing:-2.000002px;}
.ws2_c00074{word-spacing:-0.079200px;}
.ws6_c00074{word-spacing:0.000000px;}
._c_c00074{margin-left:-10.396800px;}
._1b_c00074{margin-left:-8.056800px;}
._1c_c00074{margin-left:-5.275200px;}
._1_c00074{margin-left:-4.096800px;}
._3_c00074{margin-left:-3.088800px;}
._5_c00074{margin-left:-1.850400px;}
._4_c00074{width:1.353600px;}
._6_c00074{width:2.556000px;}
._2_c00074{width:3.708000px;}
._0_c00074{width:4.730400px;}
._14_c00074{width:6.014400px;}
._15_c00074{width:7.826400px;}
._13_c00074{width:9.007200px;}
._17_c00074{width:10.188000px;}
._11_c00074{width:11.232000px;}
._12_c00074{width:12.585600px;}
._9_c00074{width:13.845600px;}
._a_c00074{width:15.667200px;}
._16_c00074{width:16.905600px;}
._b_c00074{width:18.201600px;}
._8_c00074{width:21.326400px;}
._7_c00074{width:22.341600px;}
._1a_c00074{width:24.890400px;}
._f_c00074{width:26.784000px;}
._10_c00074{width:28.533600px;}
._d_c00074{width:31.176000px;}
._e_c00074{width:33.408000px;}
._19_c00074{width:35.978400px;}
._18_c00074{width:36.979200px;}
.fc0_c00074{color:rgb(0,0,0);}
.fs3_c00074{font-size:40.000002px;}
.fs1_c00074{font-size:48.000000px;}
.fs2_c00074{font-size:60.000000px;}
.fs0_c00074{font-size:72.000000px;}
.y0_c00074{bottom:0.000000px;}
.y19_c00074{bottom:67.500000px;}
.y20_c00074{bottom:132.000000px;}
.y1f_c00074{bottom:155.250000px;}
.y1e_c00074{bottom:200.250000px;}
.y1d_c00074{bottom:245.250000px;}
.y1c_c00074{bottom:290.250000px;}
.y1b_c00074{bottom:331.500000px;}
.y1a_c00074{bottom:354.750000px;}
.y17_c00074{bottom:438.000000px;}
.y16_c00074{bottom:465.000000px;}
.y15_c00074{bottom:492.000000px;}
.y14_c00074{bottom:540.000000px;}
.y13_c00074{bottom:567.000000px;}
.y12_c00074{bottom:594.000000px;}
.y11_c00074{bottom:621.000000px;}
.y10_c00074{bottom:648.000000px;}
.yf_c00074{bottom:675.000000px;}
.ye_c00074{bottom:702.000000px;}
.yd_c00074{bottom:729.000000px;}
.yc_c00074{bottom:756.000000px;}
.yb_c00074{bottom:783.000000px;}
.ya_c00074{bottom:810.000000px;}
.y9_c00074{bottom:858.000000px;}
.y8_c00074{bottom:885.000000px;}
.y7_c00074{bottom:912.000000px;}
.y6_c00074{bottom:939.000000px;}
.y5_c00074{bottom:987.000000px;}
.y4_c00074{bottom:1014.000000px;}
.y3_c00074{bottom:1041.000000px;}
.y2_c00074{bottom:1068.000000px;}
.y1_c00074{bottom:1095.000000px;}
.y18_c00074{bottom:1194.000000px;}
.h4_c00074{height:38.818359px;}
.h5_c00074{height:53.818359px;}
.h3_c00074{height:56.074219px;}
.h1_c00074{height:67.746094px;}
.h2_c00074{height:68.250262px;}
.h0_c00074{height:1263.000000px;}
.w0_c00074{width:892.500000px;}
.x0_c00074{left:0.000000px;}
.x1_c00074{left:150.519750px;}
.x2_c00074{left:281.790150px;}
.x3_c00074{left:810.335100px;}
@media print{
.v2_c00074{vertical-align:-20.521067pt;}
.v3_c00074{vertical-align:-13.333333pt;}
.v0_c00074{vertical-align:0.000000pt;}
.v1_c00074{vertical-align:20.521067pt;}
.ls4_c00074{letter-spacing:-1.461333pt;}
.ls3_c00074{letter-spacing:-0.008533pt;}
.ls2_c00074{letter-spacing:0.000000pt;}
.ls0_c00074{letter-spacing:0.006400pt;}
.ls1_c00074{letter-spacing:0.010667pt;}
.ws3_c00074{word-spacing:-17.600000pt;}
.ws0_c00074{word-spacing:-11.724800pt;}
.ws5_c00074{word-spacing:-8.888889pt;}
.ws1_c00074{word-spacing:-4.074667pt;}
.ws4_c00074{word-spacing:-1.777780pt;}
.ws2_c00074{word-spacing:-0.070400pt;}
.ws6_c00074{word-spacing:0.000000pt;}
._c_c00074{margin-left:-9.241600pt;}
._1b_c00074{margin-left:-7.161600pt;}
._1c_c00074{margin-left:-4.689067pt;}
._1_c00074{margin-left:-3.641600pt;}
._3_c00074{margin-left:-2.745600pt;}
._5_c00074{margin-left:-1.644800pt;}
._4_c00074{width:1.203200pt;}
._6_c00074{width:2.272000pt;}
._2_c00074{width:3.296000pt;}
._0_c00074{width:4.204800pt;}
._14_c00074{width:5.346133pt;}
._15_c00074{width:6.956800pt;}
._13_c00074{width:8.006400pt;}
._17_c00074{width:9.056000pt;}
._11_c00074{width:9.984000pt;}
._12_c00074{width:11.187200pt;}
._9_c00074{width:12.307200pt;}
._a_c00074{width:13.926400pt;}
._16_c00074{width:15.027200pt;}
._b_c00074{width:16.179200pt;}
._8_c00074{width:18.956800pt;}
._7_c00074{width:19.859200pt;}
._1a_c00074{width:22.124800pt;}
._f_c00074{width:23.808000pt;}
._10_c00074{width:25.363200pt;}
._d_c00074{width:27.712000pt;}
._e_c00074{width:29.696000pt;}
._19_c00074{width:31.980800pt;}
._18_c00074{width:32.870400pt;}
.fs3_c00074{font-size:35.555557pt;}
.fs1_c00074{font-size:42.666667pt;}
.fs2_c00074{font-size:53.333333pt;}
.fs0_c00074{font-size:64.000000pt;}
.y0_c00074{bottom:0.000000pt;}
.y19_c00074{bottom:60.000000pt;}
.y20_c00074{bottom:117.333333pt;}
.y1f_c00074{bottom:138.000000pt;}
.y1e_c00074{bottom:178.000000pt;}
.y1d_c00074{bottom:218.000000pt;}
.y1c_c00074{bottom:258.000000pt;}
.y1b_c00074{bottom:294.666667pt;}
.y1a_c00074{bottom:315.333333pt;}
.y17_c00074{bottom:389.333333pt;}
.y16_c00074{bottom:413.333333pt;}
.y15_c00074{bottom:437.333333pt;}
.y14_c00074{bottom:480.000000pt;}
.y13_c00074{bottom:504.000000pt;}
.y12_c00074{bottom:528.000000pt;}
.y11_c00074{bottom:552.000000pt;}
.y10_c00074{bottom:576.000000pt;}
.yf_c00074{bottom:600.000000pt;}
.ye_c00074{bottom:624.000000pt;}
.yd_c00074{bottom:648.000000pt;}
.yc_c00074{bottom:672.000000pt;}
.yb_c00074{bottom:696.000000pt;}
.ya_c00074{bottom:720.000000pt;}
.y9_c00074{bottom:762.666667pt;}
.y8_c00074{bottom:786.666667pt;}
.y7_c00074{bottom:810.666667pt;}
.y6_c00074{bottom:834.666667pt;}
.y5_c00074{bottom:877.333333pt;}
.y4_c00074{bottom:901.333333pt;}
.y3_c00074{bottom:925.333333pt;}
.y2_c00074{bottom:949.333333pt;}
.y1_c00074{bottom:973.333333pt;}
.y18_c00074{bottom:1061.333333pt;}
.h4_c00074{height:34.505208pt;}
.h5_c00074{height:47.838542pt;}
.h3_c00074{height:49.843750pt;}
.h1_c00074{height:60.218750pt;}
.h2_c00074{height:60.666900pt;}
.h0_c00074{height:1122.666667pt;}
.w0_c00074{width:793.333333pt;}
.x0_c00074{left:0.000000pt;}
.x1_c00074{left:133.795333pt;}
.x2_c00074{left:250.480133pt;}
.x3_c00074{left:720.297867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_38f2ddb7ac02c25095774f17.woff2')format("woff");}.ff1_c00075{font-family:ff1_c00075;line-height:0.936035;font-style:normal;font-weight:normal;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_05438d7c782ac5c5a29ad988.woff2')format("woff");}.ff2_c00075{font-family:ff2_c00075;line-height:0.934082;font-style:normal;font-weight:normal;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_6c2c9e483df0eb2e535b2d97.woff2')format("woff");}.ff3_c00075{font-family:ff3_c00075;line-height:0.987793;font-style:normal;font-weight:normal;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_33ad48311f087172451caa44.woff2')format("woff");}.ff4_c00075{font-family:ff4_c00075;line-height:0.755859;font-style:normal;font-weight:normal;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_c34116750998faf35387ad0c.woff2')format("woff");}.ff5_c00075{font-family:ff5_c00075;line-height:1.155762;font-style:normal;font-weight: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_c00075;src:url('chunks/assets/font_de479c76b843a2f2cda0da67.woff2')format("woff");}.ff6_c00075{font-family:ff6_c00075;line-height:0.904785;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00075;src:url('chunks/assets/font_adbb1161eb267f2fa518e6b2.woff2')format("woff");}.ff7_c00075{font-family:ff7_c00075;line-height:0.891113;font-style: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);}
.v2_c00075{vertical-align:-15.000000px;}
.v0_c00075{vertical-align:0.000000px;}
.v1_c00075{vertical-align:23.086200px;}
.ls2_c00075{letter-spacing:-0.009600px;}
.ls1_c00075{letter-spacing:-0.005400px;}
.ls0_c00075{letter-spacing:0.000000px;}
.ls3_c00075{letter-spacing:0.012000px;}
.sc__c00075{text-shadow:none;}
.sc0_c00075{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00075{-webkit-text-stroke:0px transparent;}
.sc0_c00075{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00075{word-spacing:-19.800000px;}
.ws1_c00075{word-spacing:-13.190400px;}
.ws2_c00075{word-spacing:-10.000001px;}
.ws3_c00075{word-spacing:0.000000px;}
._18_c00075{margin-left:-10.555200px;}
._13_c00075{margin-left:-7.041600px;}
._19_c00075{margin-left:-5.481222px;}
._7_c00075{margin-left:-4.183200px;}
._e_c00075{margin-left:-3.168000px;}
._0_c00075{margin-left:-2.074800px;}
._15_c00075{margin-left:-1.051200px;}
._c_c00075{width:1.375200px;}
._5_c00075{width:2.966400px;}
._3_c00075{width:4.190400px;}
._d_c00075{width:5.997600px;}
._9_c00075{width:7.351200px;}
._f_c00075{width:8.378400px;}
._a_c00075{width:9.418800px;}
._17_c00075{width:10.432800px;}
._b_c00075{width:11.570400px;}
._14_c00075{width:13.485600px;}
._16_c00075{width:15.114000px;}
._12_c00075{width:17.409600px;}
._10_c00075{width:18.532800px;}
._11_c00075{width:22.789200px;}
._4_c00075{width:24.177600px;}
._6_c00075{width:25.380000px;}
._2_c00075{width:28.332000px;}
._1_c00075{width:30.406800px;}
._8_c00075{width:32.709600px;}
.fc1_c00075{color:transparent;}
.fc0_c00075{color:rgb(0,0,0);}
.fs5_c00075{font-size:40.000002px;}
.fs3_c00075{font-size:48.000000px;}
.fs2_c00075{font-size:54.000000px;}
.fs4_c00075{font-size:60.000000px;}
.fs1_c00075{font-size:72.000000px;}
.fs0_c00075{font-size:84.000000px;}
.y0_c00075{bottom:0.000000px;}
.yd_c00075{bottom:12.000000px;}
.yc_c00075{bottom:31.500000px;}
.y16_c00075{bottom:67.500000px;}
.y17_c00075{bottom:135.750000px;}
.y14_c00075{bottom:178.500000px;}
.y13_c00075{bottom:205.500000px;}
.y12_c00075{bottom:232.500000px;}
.y11_c00075{bottom:280.500000px;}
.y10_c00075{bottom:307.500000px;}
.yf_c00075{bottom:334.500000px;}
.ye_c00075{bottom:361.500000px;}
.yb_c00075{bottom:406.500000px;}
.ya_c00075{bottom:817.500000px;}
.y9_c00075{bottom:844.500000px;}
.y8_c00075{bottom:871.500000px;}
.y7_c00075{bottom:898.500000px;}
.y6_c00075{bottom:925.500000px;}
.y5_c00075{bottom:952.500000px;}
.y4_c00075{bottom:979.500000px;}
.y3_c00075{bottom:1006.500000px;}
.y2_c00075{bottom:1033.500000px;}
.y1_c00075{bottom:1093.500000px;}
.y15_c00075{bottom:1194.000000px;}
.h8_c00075{height:27.480470px;}
.h4_c00075{height:42.292969px;}
.h7_c00075{height:44.208984px;}
.h2_c00075{height:51.257812px;}
.h6_c00075{height:56.074219px;}
.h5_c00075{height:57.258075px;}
.h1_c00075{height:60.128906px;}
.h3_c00075{height:379.500000px;}
.h0_c00075{height:1263.000000px;}
.w1_c00075{width:676.499850px;}
.w0_c00075{width:892.500000px;}
.x0_c00075{left:0.000000px;}
.x2_c00075{left:17.127270px;}
.x1_c00075{left:65.480310px;}
.x3_c00075{left:256.857750px;}
@media print{
.v2_c00075{vertical-align:-13.333333pt;}
.v0_c00075{vertical-align:0.000000pt;}
.v1_c00075{vertical-align:20.521067pt;}
.ls2_c00075{letter-spacing:-0.008533pt;}
.ls1_c00075{letter-spacing:-0.004800pt;}
.ls0_c00075{letter-spacing:0.000000pt;}
.ls3_c00075{letter-spacing:0.010667pt;}
.ws0_c00075{word-spacing:-17.600000pt;}
.ws1_c00075{word-spacing:-11.724800pt;}
.ws2_c00075{word-spacing:-8.888889pt;}
.ws3_c00075{word-spacing:0.000000pt;}
._18_c00075{margin-left:-9.382400pt;}
._13_c00075{margin-left:-6.259200pt;}
._19_c00075{margin-left:-4.872197pt;}
._7_c00075{margin-left:-3.718400pt;}
._e_c00075{margin-left:-2.816000pt;}
._0_c00075{margin-left:-1.844267pt;}
._15_c00075{margin-left:-0.934400pt;}
._c_c00075{width:1.222400pt;}
._5_c00075{width:2.636800pt;}
._3_c00075{width:3.724800pt;}
._d_c00075{width:5.331200pt;}
._9_c00075{width:6.534400pt;}
._f_c00075{width:7.447467pt;}
._a_c00075{width:8.372267pt;}
._17_c00075{width:9.273600pt;}
._b_c00075{width:10.284800pt;}
._14_c00075{width:11.987200pt;}
._16_c00075{width:13.434667pt;}
._12_c00075{width:15.475200pt;}
._10_c00075{width:16.473600pt;}
._11_c00075{width:20.257067pt;}
._4_c00075{width:21.491200pt;}
._6_c00075{width:22.560000pt;}
._2_c00075{width:25.184000pt;}
._1_c00075{width:27.028267pt;}
._8_c00075{width:29.075200pt;}
.fs5_c00075{font-size:35.555557pt;}
.fs3_c00075{font-size:42.666667pt;}
.fs2_c00075{font-size:48.000000pt;}
.fs4_c00075{font-size:53.333333pt;}
.fs1_c00075{font-size:64.000000pt;}
.fs0_c00075{font-size:74.666667pt;}
.y0_c00075{bottom:0.000000pt;}
.yd_c00075{bottom:10.666667pt;}
.yc_c00075{bottom:28.000000pt;}
.y16_c00075{bottom:60.000000pt;}
.y17_c00075{bottom:120.666667pt;}
.y14_c00075{bottom:158.666667pt;}
.y13_c00075{bottom:182.666667pt;}
.y12_c00075{bottom:206.666667pt;}
.y11_c00075{bottom:249.333333pt;}
.y10_c00075{bottom:273.333333pt;}
.yf_c00075{bottom:297.333333pt;}
.ye_c00075{bottom:321.333333pt;}
.yb_c00075{bottom:361.333333pt;}
.ya_c00075{bottom:726.666667pt;}
.y9_c00075{bottom:750.666667pt;}
.y8_c00075{bottom:774.666667pt;}
.y7_c00075{bottom:798.666667pt;}
.y6_c00075{bottom:822.666667pt;}
.y5_c00075{bottom:846.666667pt;}
.y4_c00075{bottom:870.666667pt;}
.y3_c00075{bottom:894.666667pt;}
.y2_c00075{bottom:918.666667pt;}
.y1_c00075{bottom:972.000000pt;}
.y15_c00075{bottom:1061.333333pt;}
.h8_c00075{height:24.427085pt;}
.h4_c00075{height:37.593750pt;}
.h7_c00075{height:39.296875pt;}
.h2_c00075{height:45.562500pt;}
.h6_c00075{height:49.843750pt;}
.h5_c00075{height:50.896067pt;}
.h1_c00075{height:53.447917pt;}
.h3_c00075{height:337.333333pt;}
.h0_c00075{height:1122.666667pt;}
.w1_c00075{width:601.333200pt;}
.w0_c00075{width:793.333333pt;}
.x0_c00075{left:0.000000pt;}
.x2_c00075{left:15.224240pt;}
.x1_c00075{left:58.204720pt;}
.x3_c00075{left:228.318000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_28e6efb196e0cefa26ac9a66.woff2')format("woff");}.ff1_c00076{font-family:ff1_c00076;line-height:0.934082;font-style:normal;font-weight:normal;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_3c930826201e01114ca5ed1f.woff2')format("woff");}.ff2_c00076{font-family:ff2_c00076;line-height:1.155762;font-style:normal;font-weight:normal;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_3bb6e97db94ff8e43359ab02.woff2')format("woff");}.ff3_c00076{font-family:ff3_c00076;line-height:1.101562;font-style:normal;font-weight:normal;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_63ce7930efca8b4228b17af3.woff2')format("woff");}.ff4_c00076{font-family:ff4_c00076;line-height:1.092285;font-style: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);}
.v2_c00076{vertical-align:-15.000000px;}
.v0_c00076{vertical-align:0.000000px;}
.v1_c00076{vertical-align:23.086200px;}
.ls5_c00076{letter-spacing:-5.592000px;}
.ls4_c00076{letter-spacing:-3.090000px;}
.ls6_c00076{letter-spacing:-3.072000px;}
.ls3_c00076{letter-spacing:-2.325600px;}
.ls2_c00076{letter-spacing:-0.009600px;}
.ls1_c00076{letter-spacing:0.000000px;}
.ls0_c00076{letter-spacing:0.012000px;}
.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;}
}
.ws3_c00076{word-spacing:-15.000000px;}
.ws0_c00076{word-spacing:-13.190400px;}
.ws2_c00076{word-spacing:-10.000001px;}
.ws1_c00076{word-spacing:-0.067200px;}
.ws4_c00076{word-spacing:0.000000px;}
._15_c00076{margin-left:-19.650600px;}
._12_c00076{margin-left:-10.051200px;}
._17_c00076{margin-left:-8.718000px;}
._14_c00076{margin-left:-6.577200px;}
._16_c00076{margin-left:-5.297202px;}
._13_c00076{margin-left:-4.273200px;}
._3_c00076{margin-left:-3.182400px;}
._1_c00076{margin-left:-1.936800px;}
._7_c00076{width:1.352400px;}
._0_c00076{width:2.728800px;}
._2_c00076{width:4.701600px;}
._4_c00076{width:5.976000px;}
._b_c00076{width:7.015200px;}
._c_c00076{width:8.085600px;}
._e_c00076{width:9.126000px;}
._d_c00076{width:10.293600px;}
._a_c00076{width:11.995200px;}
._5_c00076{width:13.413600px;}
._10_c00076{width:15.012000px;}
._6_c00076{width:16.099200px;}
._8_c00076{width:17.416800px;}
._9_c00076{width:18.712800px;}
._f_c00076{width:21.859200px;}
._11_c00076{width:23.644800px;}
.fc0_c00076{color:rgb(0,0,0);}
.fs3_c00076{font-size:40.000002px;}
.fs1_c00076{font-size:48.000000px;}
.fs2_c00076{font-size:60.000000px;}
.fs0_c00076{font-size:72.000000px;}
.y0_c00076{bottom:0.000000px;}
.y18_c00076{bottom:67.500000px;}
.y21_c00076{bottom:135.750000px;}
.y20_c00076{bottom:177.000000px;}
.y1f_c00076{bottom:200.250000px;}
.y1e_c00076{bottom:241.500000px;}
.y1d_c00076{bottom:264.750000px;}
.y1c_c00076{bottom:309.750000px;}
.y1b_c00076{bottom:351.000000px;}
.y1a_c00076{bottom:370.500000px;}
.y19_c00076{bottom:393.750000px;}
.y16_c00076{bottom:444.000000px;}
.y15_c00076{bottom:471.000000px;}
.y14_c00076{bottom:498.000000px;}
.y13_c00076{bottom:525.000000px;}
.y12_c00076{bottom:573.000000px;}
.y11_c00076{bottom:600.000000px;}
.y10_c00076{bottom:627.000000px;}
.yf_c00076{bottom:654.000000px;}
.ye_c00076{bottom:702.000000px;}
.yd_c00076{bottom:729.000000px;}
.yc_c00076{bottom:756.000000px;}
.yb_c00076{bottom:783.000000px;}
.ya_c00076{bottom:810.000000px;}
.y9_c00076{bottom:837.000000px;}
.y8_c00076{bottom:864.000000px;}
.y7_c00076{bottom:891.000000px;}
.y6_c00076{bottom:918.000000px;}
.y5_c00076{bottom:966.000000px;}
.y4_c00076{bottom:993.000000px;}
.y3_c00076{bottom:1041.000000px;}
.y2_c00076{bottom:1068.000000px;}
.y1_c00076{bottom:1095.000000px;}
.y17_c00076{bottom:1194.000000px;}
.h6_c00076{height:37.968750px;}
.h4_c00076{height:38.027344px;}
.h1_c00076{height:51.257812px;}
.h5_c00076{height:53.027344px;}
.h3_c00076{height:56.074219px;}
.h2_c00076{height:57.258075px;}
.h0_c00076{height:1263.000000px;}
.w0_c00076{width:892.500000px;}
.x0_c00076{left:0.000000px;}
.x1_c00076{left:150.519750px;}
.x2_c00076{left:281.790150px;}
.x3_c00076{left:810.335100px;}
@media print{
.v2_c00076{vertical-align:-13.333333pt;}
.v0_c00076{vertical-align:0.000000pt;}
.v1_c00076{vertical-align:20.521067pt;}
.ls5_c00076{letter-spacing:-4.970667pt;}
.ls4_c00076{letter-spacing:-2.746667pt;}
.ls6_c00076{letter-spacing:-2.730667pt;}
.ls3_c00076{letter-spacing:-2.067200pt;}
.ls2_c00076{letter-spacing:-0.008533pt;}
.ls1_c00076{letter-spacing:0.000000pt;}
.ls0_c00076{letter-spacing:0.010667pt;}
.ws3_c00076{word-spacing:-13.333333pt;}
.ws0_c00076{word-spacing:-11.724800pt;}
.ws2_c00076{word-spacing:-8.888889pt;}
.ws1_c00076{word-spacing:-0.059733pt;}
.ws4_c00076{word-spacing:0.000000pt;}
._15_c00076{margin-left:-17.467200pt;}
._12_c00076{margin-left:-8.934400pt;}
._17_c00076{margin-left:-7.749333pt;}
._14_c00076{margin-left:-5.846400pt;}
._16_c00076{margin-left:-4.708624pt;}
._13_c00076{margin-left:-3.798400pt;}
._3_c00076{margin-left:-2.828800pt;}
._1_c00076{margin-left:-1.721600pt;}
._7_c00076{width:1.202133pt;}
._0_c00076{width:2.425600pt;}
._2_c00076{width:4.179200pt;}
._4_c00076{width:5.312000pt;}
._b_c00076{width:6.235733pt;}
._c_c00076{width:7.187200pt;}
._e_c00076{width:8.112000pt;}
._d_c00076{width:9.149867pt;}
._a_c00076{width:10.662400pt;}
._5_c00076{width:11.923200pt;}
._10_c00076{width:13.344000pt;}
._6_c00076{width:14.310400pt;}
._8_c00076{width:15.481600pt;}
._9_c00076{width:16.633600pt;}
._f_c00076{width:19.430400pt;}
._11_c00076{width:21.017600pt;}
.fs3_c00076{font-size:35.555557pt;}
.fs1_c00076{font-size:42.666667pt;}
.fs2_c00076{font-size:53.333333pt;}
.fs0_c00076{font-size:64.000000pt;}
.y0_c00076{bottom:0.000000pt;}
.y18_c00076{bottom:60.000000pt;}
.y21_c00076{bottom:120.666667pt;}
.y20_c00076{bottom:157.333333pt;}
.y1f_c00076{bottom:178.000000pt;}
.y1e_c00076{bottom:214.666667pt;}
.y1d_c00076{bottom:235.333333pt;}
.y1c_c00076{bottom:275.333333pt;}
.y1b_c00076{bottom:312.000000pt;}
.y1a_c00076{bottom:329.333333pt;}
.y19_c00076{bottom:350.000000pt;}
.y16_c00076{bottom:394.666667pt;}
.y15_c00076{bottom:418.666667pt;}
.y14_c00076{bottom:442.666667pt;}
.y13_c00076{bottom:466.666667pt;}
.y12_c00076{bottom:509.333333pt;}
.y11_c00076{bottom:533.333333pt;}
.y10_c00076{bottom:557.333333pt;}
.yf_c00076{bottom:581.333333pt;}
.ye_c00076{bottom:624.000000pt;}
.yd_c00076{bottom:648.000000pt;}
.yc_c00076{bottom:672.000000pt;}
.yb_c00076{bottom:696.000000pt;}
.ya_c00076{bottom:720.000000pt;}
.y9_c00076{bottom:744.000000pt;}
.y8_c00076{bottom:768.000000pt;}
.y7_c00076{bottom:792.000000pt;}
.y6_c00076{bottom:816.000000pt;}
.y5_c00076{bottom:858.666667pt;}
.y4_c00076{bottom:882.666667pt;}
.y3_c00076{bottom:925.333333pt;}
.y2_c00076{bottom:949.333333pt;}
.y1_c00076{bottom:973.333333pt;}
.y17_c00076{bottom:1061.333333pt;}
.h6_c00076{height:33.750000pt;}
.h4_c00076{height:33.802083pt;}
.h1_c00076{height:45.562500pt;}
.h5_c00076{height:47.135417pt;}
.h3_c00076{height:49.843750pt;}
.h2_c00076{height:50.896067pt;}
.h0_c00076{height:1122.666667pt;}
.w0_c00076{width:793.333333pt;}
.x0_c00076{left:0.000000pt;}
.x1_c00076{left:133.795333pt;}
.x2_c00076{left:250.480133pt;}
.x3_c00076{left:720.297867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d31a7f47216c433dce363c6a.woff2')format("woff");}.ff1_c00077{font-family:ff1_c00077;line-height:0.934082;font-style:normal;font-weight:normal;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_57d2668d12649a56c646d13e.woff2')format("woff");}.ff2_c00077{font-family:ff2_c00077;line-height:0.755859;font-style:normal;font-weight:normal;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_1be921b814e89a3cff779c46.woff2')format("woff");}.ff3_c00077{font-family:ff3_c00077;line-height:1.155762;font-style:normal;font-weight:normal;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_e2581f8f385cfb78e0ecb613.woff2')format("woff");}.ff4_c00077{font-family:ff4_c00077;line-height:1.115723;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00077;src:url('chunks/assets/font_6fcf606466a7c6af53463a84.woff2')format("woff");}.ff5_c00077{font-family:ff5_c00077;line-height:1.092285;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00077{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00077{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00077{vertical-align:-23.086200px;}
.v3_c00077{vertical-align:-15.000000px;}
.v0_c00077{vertical-align:0.000000px;}
.v1_c00077{vertical-align:23.086200px;}
.ls5_c00077{letter-spacing:-5.952000px;}
.ls8_c00077{letter-spacing:-4.050000px;}
.ls6_c00077{letter-spacing:-2.154000px;}
.ls7_c00077{letter-spacing:-0.126000px;}
.ls3_c00077{letter-spacing:-0.009600px;}
.ls2_c00077{letter-spacing:0.000000px;}
.ls1_c00077{letter-spacing:0.007200px;}
.ls4_c00077{letter-spacing:0.012000px;}
.ls0_c00077{letter-spacing:0.943200px;}
.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;}
}
.ws2_c00077{word-spacing:-15.000000px;}
.ws0_c00077{word-spacing:-13.190400px;}
.ws1_c00077{word-spacing:-10.000001px;}
.ws3_c00077{word-spacing:0.000000px;}
._17_c00077{margin-left:-20.042040px;}
._10_c00077{margin-left:-11.498400px;}
._1b_c00077{margin-left:-10.317600px;}
._12_c00077{margin-left:-8.762400px;}
._20_c00077{margin-left:-6.468840px;}
._16_c00077{margin-left:-5.025600px;}
._b_c00077{margin-left:-3.456000px;}
._0_c00077{margin-left:-1.965600px;}
._7_c00077{width:1.404000px;}
._5_c00077{width:2.426400px;}
._3_c00077{width:3.751200px;}
._e_c00077{width:5.054400px;}
._d_c00077{width:7.020000px;}
._11_c00077{width:8.056800px;}
._f_c00077{width:9.158400px;}
._13_c00077{width:10.785600px;}
._14_c00077{width:12.765600px;}
._1a_c00077{width:13.996800px;}
._15_c00077{width:15.072960px;}
._18_c00077{width:16.506240px;}
._1c_c00077{width:17.560800px;}
._19_c00077{width:18.698880px;}
._1f_c00077{width:19.754358px;}
._1d_c00077{width:20.944800px;}
._21_c00077{width:22.936242px;}
._1e_c00077{width:24.040800px;}
._4_c00077{width:26.416800px;}
._6_c00077{width:27.489600px;}
._8_c00077{width:28.576800px;}
._2_c00077{width:29.980800px;}
._1_c00077{width:32.032800px;}
._9_c00077{width:33.300000px;}
._a_c00077{width:36.525600px;}
._c_c00077{width:38.448000px;}
.fc0_c00077{color:rgb(0,0,0);}
.fs3_c00077{font-size:40.000002px;}
.fs1_c00077{font-size:48.000000px;}
.fs2_c00077{font-size:60.000000px;}
.fs0_c00077{font-size:72.000000px;}
.y0_c00077{bottom:0.000000px;}
.y17_c00077{bottom:67.500000px;}
.y23_c00077{bottom:132.000000px;}
.y22_c00077{bottom:155.250000px;}
.y21_c00077{bottom:200.250000px;}
.y20_c00077{bottom:241.500000px;}
.y1f_c00077{bottom:261.000000px;}
.y1e_c00077{bottom:280.500000px;}
.y1d_c00077{bottom:300.000000px;}
.y1c_c00077{bottom:319.500000px;}
.y1b_c00077{bottom:342.750000px;}
.y1a_c00077{bottom:384.000000px;}
.y19_c00077{bottom:403.500000px;}
.y18_c00077{bottom:426.750000px;}
.y15_c00077{bottom:492.000000px;}
.y14_c00077{bottom:519.000000px;}
.y13_c00077{bottom:546.000000px;}
.y12_c00077{bottom:573.000000px;}
.y11_c00077{bottom:600.000000px;}
.y10_c00077{bottom:648.000000px;}
.yf_c00077{bottom:675.000000px;}
.ye_c00077{bottom:702.000000px;}
.yd_c00077{bottom:729.000000px;}
.yc_c00077{bottom:756.000000px;}
.yb_c00077{bottom:783.000000px;}
.ya_c00077{bottom:810.000000px;}
.y9_c00077{bottom:858.000000px;}
.y8_c00077{bottom:885.000000px;}
.y7_c00077{bottom:912.000000px;}
.y6_c00077{bottom:939.000000px;}
.y5_c00077{bottom:987.000000px;}
.y4_c00077{bottom:1014.000000px;}
.y3_c00077{bottom:1041.000000px;}
.y2_c00077{bottom:1068.000000px;}
.y1_c00077{bottom:1095.000000px;}
.y16_c00077{bottom:1194.000000px;}
.h5_c00077{height:38.818359px;}
.h4_c00077{height:44.208984px;}
.h1_c00077{height:51.257812px;}
.h6_c00077{height:53.818359px;}
.h3_c00077{height:56.074219px;}
.h2_c00077{height:57.258075px;}
.h0_c00077{height:1263.000000px;}
.w0_c00077{width:892.500000px;}
.x0_c00077{left:0.000000px;}
.x1_c00077{left:65.480310px;}
@media print{
.v2_c00077{vertical-align:-20.521067pt;}
.v3_c00077{vertical-align:-13.333333pt;}
.v0_c00077{vertical-align:0.000000pt;}
.v1_c00077{vertical-align:20.521067pt;}
.ls5_c00077{letter-spacing:-5.290667pt;}
.ls8_c00077{letter-spacing:-3.600000pt;}
.ls6_c00077{letter-spacing:-1.914667pt;}
.ls7_c00077{letter-spacing:-0.112000pt;}
.ls3_c00077{letter-spacing:-0.008533pt;}
.ls2_c00077{letter-spacing:0.000000pt;}
.ls1_c00077{letter-spacing:0.006400pt;}
.ls4_c00077{letter-spacing:0.010667pt;}
.ls0_c00077{letter-spacing:0.838400pt;}
.ws2_c00077{word-spacing:-13.333333pt;}
.ws0_c00077{word-spacing:-11.724800pt;}
.ws1_c00077{word-spacing:-8.888889pt;}
.ws3_c00077{word-spacing:0.000000pt;}
._17_c00077{margin-left:-17.815147pt;}
._10_c00077{margin-left:-10.220800pt;}
._1b_c00077{margin-left:-9.171200pt;}
._12_c00077{margin-left:-7.788800pt;}
._20_c00077{margin-left:-5.750080pt;}
._16_c00077{margin-left:-4.467200pt;}
._b_c00077{margin-left:-3.072000pt;}
._0_c00077{margin-left:-1.747200pt;}
._7_c00077{width:1.248000pt;}
._5_c00077{width:2.156800pt;}
._3_c00077{width:3.334400pt;}
._e_c00077{width:4.492800pt;}
._d_c00077{width:6.240000pt;}
._11_c00077{width:7.161600pt;}
._f_c00077{width:8.140800pt;}
._13_c00077{width:9.587200pt;}
._14_c00077{width:11.347200pt;}
._1a_c00077{width:12.441600pt;}
._15_c00077{width:13.398187pt;}
._18_c00077{width:14.672213pt;}
._1c_c00077{width:15.609600pt;}
._19_c00077{width:16.621227pt;}
._1f_c00077{width:17.559429pt;}
._1d_c00077{width:18.617600pt;}
._21_c00077{width:20.387771pt;}
._1e_c00077{width:21.369600pt;}
._4_c00077{width:23.481600pt;}
._6_c00077{width:24.435200pt;}
._8_c00077{width:25.401600pt;}
._2_c00077{width:26.649600pt;}
._1_c00077{width:28.473600pt;}
._9_c00077{width:29.600000pt;}
._a_c00077{width:32.467200pt;}
._c_c00077{width:34.176000pt;}
.fs3_c00077{font-size:35.555557pt;}
.fs1_c00077{font-size:42.666667pt;}
.fs2_c00077{font-size:53.333333pt;}
.fs0_c00077{font-size:64.000000pt;}
.y0_c00077{bottom:0.000000pt;}
.y17_c00077{bottom:60.000000pt;}
.y23_c00077{bottom:117.333333pt;}
.y22_c00077{bottom:138.000000pt;}
.y21_c00077{bottom:178.000000pt;}
.y20_c00077{bottom:214.666667pt;}
.y1f_c00077{bottom:232.000000pt;}
.y1e_c00077{bottom:249.333333pt;}
.y1d_c00077{bottom:266.666667pt;}
.y1c_c00077{bottom:284.000000pt;}
.y1b_c00077{bottom:304.666667pt;}
.y1a_c00077{bottom:341.333333pt;}
.y19_c00077{bottom:358.666667pt;}
.y18_c00077{bottom:379.333333pt;}
.y15_c00077{bottom:437.333333pt;}
.y14_c00077{bottom:461.333333pt;}
.y13_c00077{bottom:485.333333pt;}
.y12_c00077{bottom:509.333333pt;}
.y11_c00077{bottom:533.333333pt;}
.y10_c00077{bottom:576.000000pt;}
.yf_c00077{bottom:600.000000pt;}
.ye_c00077{bottom:624.000000pt;}
.yd_c00077{bottom:648.000000pt;}
.yc_c00077{bottom:672.000000pt;}
.yb_c00077{bottom:696.000000pt;}
.ya_c00077{bottom:720.000000pt;}
.y9_c00077{bottom:762.666667pt;}
.y8_c00077{bottom:786.666667pt;}
.y7_c00077{bottom:810.666667pt;}
.y6_c00077{bottom:834.666667pt;}
.y5_c00077{bottom:877.333333pt;}
.y4_c00077{bottom:901.333333pt;}
.y3_c00077{bottom:925.333333pt;}
.y2_c00077{bottom:949.333333pt;}
.y1_c00077{bottom:973.333333pt;}
.y16_c00077{bottom:1061.333333pt;}
.h5_c00077{height:34.505208pt;}
.h4_c00077{height:39.296875pt;}
.h1_c00077{height:45.562500pt;}
.h6_c00077{height:47.838542pt;}
.h3_c00077{height:49.843750pt;}
.h2_c00077{height:50.896067pt;}
.h0_c00077{height:1122.666667pt;}
.w0_c00077{width:793.333333pt;}
.x0_c00077{left:0.000000pt;}
.x1_c00077{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0f22f1ebe6fe76d70feb7979.woff2')format("woff");}.ff1_c00078{font-family:ff1_c00078;line-height:0.934082;font-style:normal;font-weight:normal;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_a848a9e7d60ceba84b9ff6b5.woff2')format("woff");}.ff2_c00078{font-family:ff2_c00078;line-height:0.924316;font-style:normal;font-weight:normal;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_cf081110b76cb18ab76ecb4d.woff2')format("woff");}.ff3_c00078{font-family:ff3_c00078;line-height:0.892578;font-style:normal;font-weight:normal;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_37a3f475df7c0c839a1f7ac8.woff2')format("woff");}.ff4_c00078{font-family:ff4_c00078;line-height:1.183105;font-style:normal;font-weight:normal;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_2b0a45ca8ca1d6fdf8c89525.woff2')format("woff");}.ff5_c00078{font-family:ff5_c00078;line-height:1.155762;font-style:normal;font-weight: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_c00078;src:url('chunks/assets/font_75da5be94fba888379dcdc58.woff2')format("woff");}.ff6_c00078{font-family:ff6_c00078;line-height:1.100586;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00078;src:url('chunks/assets/font_2f8af689be121159a23b1689.woff2')format("woff");}.ff7_c00078{font-family:ff7_c00078;line-height:1.092285;font-style: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);}
.v2_c00078{vertical-align:-23.086200px;}
.v3_c00078{vertical-align:-15.000000px;}
.v0_c00078{vertical-align:0.000000px;}
.v1_c00078{vertical-align:23.086200px;}
.ls9_c00078{letter-spacing:-1.452000px;}
.ls8_c00078{letter-spacing:-1.422000px;}
.ls7_c00078{letter-spacing:-0.014400px;}
.ls6_c00078{letter-spacing:-0.009600px;}
.ls5_c00078{letter-spacing:0.000000px;}
.ls0_c00078{letter-spacing:0.007200px;}
.ls1_c00078{letter-spacing:0.008400px;}
.ls4_c00078{letter-spacing:0.012000px;}
.ls3_c00078{letter-spacing:0.014400px;}
.ls2_c00078{letter-spacing:0.016800px;}
.sc__c00078{text-shadow:none;}
.sc0_c00078{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00078{-webkit-text-stroke:0px transparent;}
.sc0_c00078{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00078{word-spacing:-24.528000px;}
.ws2_c00078{word-spacing:-19.807200px;}
.ws0_c00078{word-spacing:-19.800000px;}
.ws1_c00078{word-spacing:-13.190400px;}
.ws4_c00078{word-spacing:-10.000001px;}
.ws5_c00078{word-spacing:0.000000px;}
._e_c00078{margin-left:-10.022400px;}
._15_c00078{margin-left:-8.388000px;}
._f_c00078{margin-left:-6.478200px;}
._13_c00078{margin-left:-5.277600px;}
._14_c00078{margin-left:-3.700800px;}
._4_c00078{margin-left:-2.613600px;}
._2_c00078{margin-left:-1.490400px;}
._6_c00078{width:1.843200px;}
._12_c00078{width:2.894400px;}
._0_c00078{width:4.060800px;}
._d_c00078{width:6.098400px;}
._c_c00078{width:7.538400px;}
._10_c00078{width:8.697600px;}
._a_c00078{width:10.231200px;}
._16_c00078{width:11.376000px;}
._b_c00078{width:12.664800px;}
._9_c00078{width:14.659200px;}
._11_c00078{width:15.681600px;}
._8_c00078{width:17.064000px;}
._17_c00078{width:23.748000px;}
._1_c00078{width:26.236800px;}
._18_c00078{width:27.273600px;}
._7_c00078{width:28.468800px;}
._3_c00078{width:31.780800px;}
._5_c00078{width:32.904000px;}
.fc0_c00078{color:rgb(0,0,0);}
.fs4_c00078{font-size:40.000002px;}
.fs1_c00078{font-size:48.000000px;}
.fs3_c00078{font-size:60.000000px;}
.fs0_c00078{font-size:72.000000px;}
.fs2_c00078{font-size:84.000000px;}
.y0_c00078{bottom:0.000000px;}
.y1b_c00078{bottom:67.500000px;}
.y1f_c00078{bottom:135.750000px;}
.y1e_c00078{bottom:177.000000px;}
.y1d_c00078{bottom:196.500000px;}
.y1c_c00078{bottom:219.750000px;}
.y19_c00078{bottom:331.500000px;}
.y18_c00078{bottom:358.500000px;}
.y17_c00078{bottom:385.500000px;}
.y16_c00078{bottom:412.500000px;}
.y15_c00078{bottom:472.500000px;}
.y14_c00078{bottom:496.500000px;}
.y13_c00078{bottom:546.000000px;}
.y12_c00078{bottom:573.000000px;}
.y11_c00078{bottom:600.000000px;}
.y10_c00078{bottom:627.000000px;}
.yf_c00078{bottom:654.000000px;}
.ye_c00078{bottom:702.000000px;}
.yd_c00078{bottom:729.000000px;}
.yc_c00078{bottom:756.000000px;}
.yb_c00078{bottom:783.000000px;}
.ya_c00078{bottom:810.000000px;}
.y9_c00078{bottom:837.000000px;}
.y8_c00078{bottom:864.000000px;}
.y7_c00078{bottom:912.000000px;}
.y6_c00078{bottom:939.000000px;}
.y5_c00078{bottom:966.000000px;}
.y4_c00078{bottom:993.000000px;}
.y3_c00078{bottom:1020.000000px;}
.y2_c00078{bottom:1068.000000px;}
.y1_c00078{bottom:1095.000000px;}
.y1a_c00078{bottom:1194.000000px;}
.h5_c00078{height:38.027344px;}
.h1_c00078{height:51.257812px;}
.h6_c00078{height:53.027344px;}
.h4_c00078{height:56.074219px;}
.h2_c00078{height:57.258075px;}
.h3_c00078{height:80.882812px;}
.h0_c00078{height:1263.000000px;}
.w0_c00078{width:892.500000px;}
.x0_c00078{left:0.000000px;}
.x1_c00078{left:150.519750px;}
.x2_c00078{left:281.790150px;}
.x3_c00078{left:810.335100px;}
@media print{
.v2_c00078{vertical-align:-20.521067pt;}
.v3_c00078{vertical-align:-13.333333pt;}
.v0_c00078{vertical-align:0.000000pt;}
.v1_c00078{vertical-align:20.521067pt;}
.ls9_c00078{letter-spacing:-1.290667pt;}
.ls8_c00078{letter-spacing:-1.264000pt;}
.ls7_c00078{letter-spacing:-0.012800pt;}
.ls6_c00078{letter-spacing:-0.008533pt;}
.ls5_c00078{letter-spacing:0.000000pt;}
.ls0_c00078{letter-spacing:0.006400pt;}
.ls1_c00078{letter-spacing:0.007467pt;}
.ls4_c00078{letter-spacing:0.010667pt;}
.ls3_c00078{letter-spacing:0.012800pt;}
.ls2_c00078{letter-spacing:0.014933pt;}
.ws3_c00078{word-spacing:-21.802667pt;}
.ws2_c00078{word-spacing:-17.606400pt;}
.ws0_c00078{word-spacing:-17.600000pt;}
.ws1_c00078{word-spacing:-11.724800pt;}
.ws4_c00078{word-spacing:-8.888889pt;}
.ws5_c00078{word-spacing:0.000000pt;}
._e_c00078{margin-left:-8.908800pt;}
._15_c00078{margin-left:-7.456000pt;}
._f_c00078{margin-left:-5.758400pt;}
._13_c00078{margin-left:-4.691200pt;}
._14_c00078{margin-left:-3.289600pt;}
._4_c00078{margin-left:-2.323200pt;}
._2_c00078{margin-left:-1.324800pt;}
._6_c00078{width:1.638400pt;}
._12_c00078{width:2.572800pt;}
._0_c00078{width:3.609600pt;}
._d_c00078{width:5.420800pt;}
._c_c00078{width:6.700800pt;}
._10_c00078{width:7.731200pt;}
._a_c00078{width:9.094400pt;}
._16_c00078{width:10.112000pt;}
._b_c00078{width:11.257600pt;}
._9_c00078{width:13.030400pt;}
._11_c00078{width:13.939200pt;}
._8_c00078{width:15.168000pt;}
._17_c00078{width:21.109333pt;}
._1_c00078{width:23.321600pt;}
._18_c00078{width:24.243200pt;}
._7_c00078{width:25.305600pt;}
._3_c00078{width:28.249600pt;}
._5_c00078{width:29.248000pt;}
.fs4_c00078{font-size:35.555557pt;}
.fs1_c00078{font-size:42.666667pt;}
.fs3_c00078{font-size:53.333333pt;}
.fs0_c00078{font-size:64.000000pt;}
.fs2_c00078{font-size:74.666667pt;}
.y0_c00078{bottom:0.000000pt;}
.y1b_c00078{bottom:60.000000pt;}
.y1f_c00078{bottom:120.666667pt;}
.y1e_c00078{bottom:157.333333pt;}
.y1d_c00078{bottom:174.666667pt;}
.y1c_c00078{bottom:195.333333pt;}
.y19_c00078{bottom:294.666667pt;}
.y18_c00078{bottom:318.666667pt;}
.y17_c00078{bottom:342.666667pt;}
.y16_c00078{bottom:366.666667pt;}
.y15_c00078{bottom:420.000000pt;}
.y14_c00078{bottom:441.333333pt;}
.y13_c00078{bottom:485.333333pt;}
.y12_c00078{bottom:509.333333pt;}
.y11_c00078{bottom:533.333333pt;}
.y10_c00078{bottom:557.333333pt;}
.yf_c00078{bottom:581.333333pt;}
.ye_c00078{bottom:624.000000pt;}
.yd_c00078{bottom:648.000000pt;}
.yc_c00078{bottom:672.000000pt;}
.yb_c00078{bottom:696.000000pt;}
.ya_c00078{bottom:720.000000pt;}
.y9_c00078{bottom:744.000000pt;}
.y8_c00078{bottom:768.000000pt;}
.y7_c00078{bottom:810.666667pt;}
.y6_c00078{bottom:834.666667pt;}
.y5_c00078{bottom:858.666667pt;}
.y4_c00078{bottom:882.666667pt;}
.y3_c00078{bottom:906.666667pt;}
.y2_c00078{bottom:949.333333pt;}
.y1_c00078{bottom:973.333333pt;}
.y1a_c00078{bottom:1061.333333pt;}
.h5_c00078{height:33.802083pt;}
.h1_c00078{height:45.562500pt;}
.h6_c00078{height:47.135417pt;}
.h4_c00078{height:49.843750pt;}
.h2_c00078{height:50.896067pt;}
.h3_c00078{height:71.895833pt;}
.h0_c00078{height:1122.666667pt;}
.w0_c00078{width:793.333333pt;}
.x0_c00078{left:0.000000pt;}
.x1_c00078{left:133.795333pt;}
.x2_c00078{left:250.480133pt;}
.x3_c00078{left:720.297867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c1fe8838382e6a2d62842416.woff2')format("woff");}.ff1_c00079{font-family:ff1_c00079;line-height:0.934082;font-style:normal;font-weight:normal;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_1ed8d41f349dd0740524bf6d.woff2')format("woff");}.ff2_c00079{font-family:ff2_c00079;line-height:0.755859;font-style:normal;font-weight:normal;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_55940a5b56ddc91f90631d7a.woff2')format("woff");}.ff3_c00079{font-family:ff3_c00079;line-height:1.155762;font-style:normal;font-weight:normal;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_0c2d0bc5e8ccb5a12b63b37d.woff2')format("woff");}.ff4_c00079{font-family:ff4_c00079;line-height:1.101562;font-style:normal;font-weight:normal;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_4d6fb850996c78b027387d9f.woff2')format("woff");}.ff5_c00079{font-family:ff5_c00079;line-height:0.891113;font-style: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);}
.v2_c00079{vertical-align:-23.086200px;}
.v3_c00079{vertical-align:-15.000000px;}
.v0_c00079{vertical-align:0.000000px;}
.v1_c00079{vertical-align:23.086200px;}
.ls4_c00079{letter-spacing:-4.836000px;}
.ls3_c00079{letter-spacing:-2.718000px;}
.ls5_c00079{letter-spacing:-2.598000px;}
.ls1_c00079{letter-spacing:-0.009600px;}
.ls0_c00079{letter-spacing:0.000000px;}
.ls2_c00079{letter-spacing:0.012000px;}
.sc__c00079{text-shadow:none;}
.sc0_c00079{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00079{-webkit-text-stroke:0px transparent;}
.sc0_c00079{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00079{word-spacing:-19.800000px;}
.ws1_c00079{word-spacing:-13.190400px;}
.ws2_c00079{word-spacing:-10.000001px;}
.ws3_c00079{word-spacing:0.000000px;}
._12_c00079{margin-left:-9.705600px;}
._14_c00079{margin-left:-7.502400px;}
._10_c00079{margin-left:-6.098400px;}
._15_c00079{margin-left:-5.018400px;}
._4_c00079{margin-left:-3.952800px;}
._3_c00079{margin-left:-2.203200px;}
._f_c00079{margin-left:-1.137600px;}
._0_c00079{width:1.267200px;}
._2_c00079{width:2.995200px;}
._6_c00079{width:4.456800px;}
._1_c00079{width:6.076800px;}
._5_c00079{width:7.401600px;}
._e_c00079{width:8.805600px;}
._7_c00079{width:10.267200px;}
._8_c00079{width:11.527200px;}
._11_c00079{width:13.089600px;}
._13_c00079{width:14.371200px;}
._c_c00079{width:15.566400px;}
._9_c00079{width:17.517600px;}
._d_c00079{width:18.748800px;}
._a_c00079{width:22.233600px;}
._b_c00079{width:23.961600px;}
.fc0_c00079{color:rgb(0,0,0);}
.fs3_c00079{font-size:40.000002px;}
.fs1_c00079{font-size:48.000000px;}
.fs2_c00079{font-size:60.000000px;}
.fs0_c00079{font-size:72.000000px;}
.y0_c00079{bottom:0.000000px;}
.y18_c00079{bottom:67.500000px;}
.y21_c00079{bottom:135.750000px;}
.y20_c00079{bottom:177.000000px;}
.y1f_c00079{bottom:200.250000px;}
.y1e_c00079{bottom:241.500000px;}
.y1d_c00079{bottom:261.000000px;}
.y1c_c00079{bottom:280.500000px;}
.y1b_c00079{bottom:300.000000px;}
.y1a_c00079{bottom:319.500000px;}
.y19_c00079{bottom:342.750000px;}
.y16_c00079{bottom:423.000000px;}
.y15_c00079{bottom:450.000000px;}
.y14_c00079{bottom:477.000000px;}
.y13_c00079{bottom:504.000000px;}
.y12_c00079{bottom:552.000000px;}
.y11_c00079{bottom:579.000000px;}
.y10_c00079{bottom:606.000000px;}
.yf_c00079{bottom:654.000000px;}
.ye_c00079{bottom:681.000000px;}
.yd_c00079{bottom:708.000000px;}
.yc_c00079{bottom:735.000000px;}
.yb_c00079{bottom:783.000000px;}
.ya_c00079{bottom:810.000000px;}
.y9_c00079{bottom:837.000000px;}
.y8_c00079{bottom:864.000000px;}
.y7_c00079{bottom:891.000000px;}
.y6_c00079{bottom:939.000000px;}
.y5_c00079{bottom:966.000000px;}
.y4_c00079{bottom:993.000000px;}
.y3_c00079{bottom:1020.000000px;}
.y2_c00079{bottom:1068.000000px;}
.y1_c00079{bottom:1095.000000px;}
.y17_c00079{bottom:1194.000000px;}
.h5_c00079{height:37.968750px;}
.h4_c00079{height:44.208984px;}
.h2_c00079{height:51.257812px;}
.h6_c00079{height:52.968750px;}
.h3_c00079{height:56.074219px;}
.h1_c00079{height:57.258075px;}
.h0_c00079{height:1263.000000px;}
.w0_c00079{width:892.500000px;}
.x0_c00079{left:0.000000px;}
.x1_c00079{left:65.480310px;}
@media print{
.v2_c00079{vertical-align:-20.521067pt;}
.v3_c00079{vertical-align:-13.333333pt;}
.v0_c00079{vertical-align:0.000000pt;}
.v1_c00079{vertical-align:20.521067pt;}
.ls4_c00079{letter-spacing:-4.298667pt;}
.ls3_c00079{letter-spacing:-2.416000pt;}
.ls5_c00079{letter-spacing:-2.309333pt;}
.ls1_c00079{letter-spacing:-0.008533pt;}
.ls0_c00079{letter-spacing:0.000000pt;}
.ls2_c00079{letter-spacing:0.010667pt;}
.ws0_c00079{word-spacing:-17.600000pt;}
.ws1_c00079{word-spacing:-11.724800pt;}
.ws2_c00079{word-spacing:-8.888889pt;}
.ws3_c00079{word-spacing:0.000000pt;}
._12_c00079{margin-left:-8.627200pt;}
._14_c00079{margin-left:-6.668800pt;}
._10_c00079{margin-left:-5.420800pt;}
._15_c00079{margin-left:-4.460800pt;}
._4_c00079{margin-left:-3.513600pt;}
._3_c00079{margin-left:-1.958400pt;}
._f_c00079{margin-left:-1.011200pt;}
._0_c00079{width:1.126400pt;}
._2_c00079{width:2.662400pt;}
._6_c00079{width:3.961600pt;}
._1_c00079{width:5.401600pt;}
._5_c00079{width:6.579200pt;}
._e_c00079{width:7.827200pt;}
._7_c00079{width:9.126400pt;}
._8_c00079{width:10.246400pt;}
._11_c00079{width:11.635200pt;}
._13_c00079{width:12.774400pt;}
._c_c00079{width:13.836800pt;}
._9_c00079{width:15.571200pt;}
._d_c00079{width:16.665600pt;}
._a_c00079{width:19.763200pt;}
._b_c00079{width:21.299200pt;}
.fs3_c00079{font-size:35.555557pt;}
.fs1_c00079{font-size:42.666667pt;}
.fs2_c00079{font-size:53.333333pt;}
.fs0_c00079{font-size:64.000000pt;}
.y0_c00079{bottom:0.000000pt;}
.y18_c00079{bottom:60.000000pt;}
.y21_c00079{bottom:120.666667pt;}
.y20_c00079{bottom:157.333333pt;}
.y1f_c00079{bottom:178.000000pt;}
.y1e_c00079{bottom:214.666667pt;}
.y1d_c00079{bottom:232.000000pt;}
.y1c_c00079{bottom:249.333333pt;}
.y1b_c00079{bottom:266.666667pt;}
.y1a_c00079{bottom:284.000000pt;}
.y19_c00079{bottom:304.666667pt;}
.y16_c00079{bottom:376.000000pt;}
.y15_c00079{bottom:400.000000pt;}
.y14_c00079{bottom:424.000000pt;}
.y13_c00079{bottom:448.000000pt;}
.y12_c00079{bottom:490.666667pt;}
.y11_c00079{bottom:514.666667pt;}
.y10_c00079{bottom:538.666667pt;}
.yf_c00079{bottom:581.333333pt;}
.ye_c00079{bottom:605.333333pt;}
.yd_c00079{bottom:629.333333pt;}
.yc_c00079{bottom:653.333333pt;}
.yb_c00079{bottom:696.000000pt;}
.ya_c00079{bottom:720.000000pt;}
.y9_c00079{bottom:744.000000pt;}
.y8_c00079{bottom:768.000000pt;}
.y7_c00079{bottom:792.000000pt;}
.y6_c00079{bottom:834.666667pt;}
.y5_c00079{bottom:858.666667pt;}
.y4_c00079{bottom:882.666667pt;}
.y3_c00079{bottom:906.666667pt;}
.y2_c00079{bottom:949.333333pt;}
.y1_c00079{bottom:973.333333pt;}
.y17_c00079{bottom:1061.333333pt;}
.h5_c00079{height:33.750000pt;}
.h4_c00079{height:39.296875pt;}
.h2_c00079{height:45.562500pt;}
.h6_c00079{height:47.083333pt;}
.h3_c00079{height:49.843750pt;}
.h1_c00079{height:50.896067pt;}
.h0_c00079{height:1122.666667pt;}
.w0_c00079{width:793.333333pt;}
.x0_c00079{left:0.000000pt;}
.x1_c00079{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_52e89303033f540e2ff5bb56.woff2')format("woff");}.ff1_c00080{font-family:ff1_c00080;line-height:0.934082;font-style:normal;font-weight:normal;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_5e4300e7259d355da867fcd0.woff2')format("woff");}.ff2_c00080{font-family:ff2_c00080;line-height:0.931152;font-style:normal;font-weight:normal;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_2e12d301c16f009e8eed5053.woff2')format("woff");}.ff3_c00080{font-family:ff3_c00080;line-height:0.963867;font-style:normal;font-weight:normal;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_337dd0103a5ae85763c7ceaa.woff2')format("woff");}.ff4_c00080{font-family:ff4_c00080;line-height:1.155762;font-style:normal;font-weight:normal;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_38cdc26ffea27e2429bc9052.woff2')format("woff");}.ff5_c00080{font-family:ff5_c00080;line-height:0.904297;font-style:normal;font-weight: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_c00080;src:url('chunks/assets/font_a4238305c4a182f693c1588b.woff2')format("woff");}.ff6_c00080{font-family:ff6_c00080;line-height:0.889648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00080{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00080{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00080{vertical-align:-23.086200px;}
.v3_c00080{vertical-align:-15.000000px;}
.v0_c00080{vertical-align:0.000000px;}
.v1_c00080{vertical-align:23.086200px;}
.ls4_c00080{letter-spacing:-0.009600px;}
.ls3_c00080{letter-spacing:0.000000px;}
.ls2_c00080{letter-spacing:0.012000px;}
.ls0_c00080{letter-spacing:0.014400px;}
.ls1_c00080{letter-spacing:0.043200px;}
.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;}
}
.ws3_c00080{word-spacing:-15.000000px;}
.ws0_c00080{word-spacing:-13.190400px;}
.ws1_c00080{word-spacing:-10.000001px;}
.ws2_c00080{word-spacing:-2.000002px;}
.ws4_c00080{word-spacing:0.000000px;}
._8_c00080{margin-left:-9.439200px;}
._17_c00080{margin-left:-8.384802px;}
._16_c00080{margin-left:-7.263198px;}
._15_c00080{margin-left:-5.735202px;}
._9_c00080{margin-left:-4.060800px;}
._4_c00080{margin-left:-3.002400px;}
._0_c00080{margin-left:-1.173600px;}
._3_c00080{width:1.569600px;}
._7_c00080{width:3.211200px;}
._2_c00080{width:4.356000px;}
._6_c00080{width:5.968800px;}
._1_c00080{width:7.113600px;}
._5_c00080{width:8.964000px;}
._14_c00080{width:10.836000px;}
._13_c00080{width:11.865600px;}
._12_c00080{width:12.996000px;}
._10_c00080{width:14.018400px;}
._f_c00080{width:16.243200px;}
._11_c00080{width:17.942400px;}
._e_c00080{width:22.608000px;}
._a_c00080{width:25.387200px;}
._b_c00080{width:26.964000px;}
._c_c00080{width:29.959200px;}
._d_c00080{width:31.046400px;}
.fc0_c00080{color:rgb(0,0,0);}
.fs4_c00080{font-size:40.000002px;}
.fs1_c00080{font-size:48.000000px;}
.fs2_c00080{font-size:54.000000px;}
.fs3_c00080{font-size:60.000000px;}
.fs0_c00080{font-size:72.000000px;}
.y0_c00080{bottom:0.000000px;}
.y4_c00080{bottom:12.000000px;}
.yc_c00080{bottom:67.500000px;}
.y16_c00080{bottom:132.000000px;}
.y15_c00080{bottom:151.500000px;}
.y14_c00080{bottom:174.750000px;}
.y13_c00080{bottom:216.000000px;}
.y12_c00080{bottom:235.500000px;}
.y11_c00080{bottom:258.750000px;}
.y10_c00080{bottom:300.000000px;}
.yf_c00080{bottom:319.500000px;}
.ye_c00080{bottom:339.000000px;}
.yd_c00080{bottom:362.250000px;}
.ya_c00080{bottom:438.000000px;}
.y9_c00080{bottom:465.000000px;}
.y8_c00080{bottom:492.000000px;}
.y7_c00080{bottom:519.000000px;}
.y6_c00080{bottom:546.000000px;}
.y5_c00080{bottom:573.000000px;}
.y3_c00080{bottom:618.000000px;}
.y2_c00080{bottom:1068.000000px;}
.y1_c00080{bottom:1095.000000px;}
.yb_c00080{bottom:1194.000000px;}
.h6_c00080{height:27.421876px;}
.h7_c00080{height:41.132812px;}
.h4_c00080{height:41.633789px;}
.h1_c00080{height:51.257812px;}
.h5_c00080{height:56.074219px;}
.h2_c00080{height:57.258075px;}
.h3_c00080{height:418.500000px;}
.h0_c00080{height:1263.000000px;}
.w1_c00080{width:676.499850px;}
.w0_c00080{width:892.500000px;}
.x0_c00080{left:0.000000px;}
.x1_c00080{left:150.519750px;}
.x2_c00080{left:161.629350px;}
.x3_c00080{left:281.790150px;}
.x4_c00080{left:810.335100px;}
@media print{
.v2_c00080{vertical-align:-20.521067pt;}
.v3_c00080{vertical-align:-13.333333pt;}
.v0_c00080{vertical-align:0.000000pt;}
.v1_c00080{vertical-align:20.521067pt;}
.ls4_c00080{letter-spacing:-0.008533pt;}
.ls3_c00080{letter-spacing:0.000000pt;}
.ls2_c00080{letter-spacing:0.010667pt;}
.ls0_c00080{letter-spacing:0.012800pt;}
.ls1_c00080{letter-spacing:0.038400pt;}
.ws3_c00080{word-spacing:-13.333333pt;}
.ws0_c00080{word-spacing:-11.724800pt;}
.ws1_c00080{word-spacing:-8.888889pt;}
.ws2_c00080{word-spacing:-1.777780pt;}
.ws4_c00080{word-spacing:0.000000pt;}
._8_c00080{margin-left:-8.390400pt;}
._17_c00080{margin-left:-7.453157pt;}
._16_c00080{margin-left:-6.456176pt;}
._15_c00080{margin-left:-5.097957pt;}
._9_c00080{margin-left:-3.609600pt;}
._4_c00080{margin-left:-2.668800pt;}
._0_c00080{margin-left:-1.043200pt;}
._3_c00080{width:1.395200pt;}
._7_c00080{width:2.854400pt;}
._2_c00080{width:3.872000pt;}
._6_c00080{width:5.305600pt;}
._1_c00080{width:6.323200pt;}
._5_c00080{width:7.968000pt;}
._14_c00080{width:9.632000pt;}
._13_c00080{width:10.547200pt;}
._12_c00080{width:11.552000pt;}
._10_c00080{width:12.460800pt;}
._f_c00080{width:14.438400pt;}
._11_c00080{width:15.948800pt;}
._e_c00080{width:20.096000pt;}
._a_c00080{width:22.566400pt;}
._b_c00080{width:23.968000pt;}
._c_c00080{width:26.630400pt;}
._d_c00080{width:27.596800pt;}
.fs4_c00080{font-size:35.555557pt;}
.fs1_c00080{font-size:42.666667pt;}
.fs2_c00080{font-size:48.000000pt;}
.fs3_c00080{font-size:53.333333pt;}
.fs0_c00080{font-size:64.000000pt;}
.y0_c00080{bottom:0.000000pt;}
.y4_c00080{bottom:10.666667pt;}
.yc_c00080{bottom:60.000000pt;}
.y16_c00080{bottom:117.333333pt;}
.y15_c00080{bottom:134.666667pt;}
.y14_c00080{bottom:155.333333pt;}
.y13_c00080{bottom:192.000000pt;}
.y12_c00080{bottom:209.333333pt;}
.y11_c00080{bottom:230.000000pt;}
.y10_c00080{bottom:266.666667pt;}
.yf_c00080{bottom:284.000000pt;}
.ye_c00080{bottom:301.333333pt;}
.yd_c00080{bottom:322.000000pt;}
.ya_c00080{bottom:389.333333pt;}
.y9_c00080{bottom:413.333333pt;}
.y8_c00080{bottom:437.333333pt;}
.y7_c00080{bottom:461.333333pt;}
.y6_c00080{bottom:485.333333pt;}
.y5_c00080{bottom:509.333333pt;}
.y3_c00080{bottom:549.333333pt;}
.y2_c00080{bottom:949.333333pt;}
.y1_c00080{bottom:973.333333pt;}
.yb_c00080{bottom:1061.333333pt;}
.h6_c00080{height:24.375001pt;}
.h7_c00080{height:36.562500pt;}
.h4_c00080{height:37.007812pt;}
.h1_c00080{height:45.562500pt;}
.h5_c00080{height:49.843750pt;}
.h2_c00080{height:50.896067pt;}
.h3_c00080{height:372.000000pt;}
.h0_c00080{height:1122.666667pt;}
.w1_c00080{width:601.333200pt;}
.w0_c00080{width:793.333333pt;}
.x0_c00080{left:0.000000pt;}
.x1_c00080{left:133.795333pt;}
.x2_c00080{left:143.670533pt;}
.x3_c00080{left:250.480133pt;}
.x4_c00080{left:720.297867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6955a6466d7c9f5b868022ad.woff2')format("woff");}.ff1_c00081{font-family:ff1_c00081;line-height:0.934082;font-style:normal;font-weight:normal;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_1c21bd03dcfaceecbc5b8626.woff2')format("woff");}.ff2_c00081{font-family:ff2_c00081;line-height:0.756836;font-style:normal;font-weight:normal;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_afac843969e5398bc4d35f36.woff2')format("woff");}.ff3_c00081{font-family:ff3_c00081;line-height:1.155762;font-style:normal;font-weight:normal;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_cf15401e7907e33712422b7f.woff2')format("woff");}.ff4_c00081{font-family:ff4_c00081;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00081;src:url('chunks/assets/font_08f594236418e325a6c74b20.woff2')format("woff");}.ff5_c00081{font-family:ff5_c00081;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00081{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00081{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00081{vertical-align:-23.086200px;}
.v3_c00081{vertical-align:-15.000000px;}
.v0_c00081{vertical-align:0.000000px;}
.v1_c00081{vertical-align:23.086200px;}
.ls1_c00081{letter-spacing:-0.009600px;}
.ls0_c00081{letter-spacing:0.000000px;}
.ls2_c00081{letter-spacing:0.012000px;}
.sc__c00081{text-shadow:none;}
.sc0_c00081{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00081{-webkit-text-stroke:0px transparent;}
.sc0_c00081{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00081{word-spacing:-13.190400px;}
.ws2_c00081{word-spacing:-10.000001px;}
.ws1_c00081{word-spacing:-2.000002px;}
.ws3_c00081{word-spacing:0.000000px;}
._5_c00081{margin-left:-10.584000px;}
._1a_c00081{margin-left:-7.722000px;}
._17_c00081{margin-left:-6.220800px;}
._11_c00081{margin-left:-4.759200px;}
._1_c00081{margin-left:-3.153600px;}
._6_c00081{margin-left:-2.138400px;}
._4_c00081{margin-left:-1.108800px;}
._8_c00081{width:1.267200px;}
._0_c00081{width:2.491200px;}
._3_c00081{width:3.600000px;}
._7_c00081{width:4.615200px;}
._2_c00081{width:5.644800px;}
._b_c00081{width:6.876000px;}
._9_c00081{width:8.128800px;}
._1b_c00081{width:9.235200px;}
._a_c00081{width:10.296000px;}
._c_c00081{width:11.311200px;}
._18_c00081{width:13.354800px;}
._d_c00081{width:14.630400px;}
._19_c00081{width:17.258400px;}
._14_c00081{width:18.266400px;}
._13_c00081{width:20.851200px;}
._15_c00081{width:22.874400px;}
._16_c00081{width:24.055200px;}
._e_c00081{width:26.539200px;}
._10_c00081{width:28.173600px;}
._f_c00081{width:31.550400px;}
._12_c00081{width:33.372000px;}
.fc0_c00081{color:rgb(0,0,0);}
.fs3_c00081{font-size:40.000002px;}
.fs1_c00081{font-size:48.000000px;}
.fs2_c00081{font-size:60.000000px;}
.fs0_c00081{font-size:72.000000px;}
.y0_c00081{bottom:0.000000px;}
.yf_c00081{bottom:67.500000px;}
.y17_c00081{bottom:135.750000px;}
.y16_c00081{bottom:177.000000px;}
.y15_c00081{bottom:196.500000px;}
.y14_c00081{bottom:219.750000px;}
.y13_c00081{bottom:264.750000px;}
.y12_c00081{bottom:306.000000px;}
.y11_c00081{bottom:325.500000px;}
.y10_c00081{bottom:348.750000px;}
.yd_c00081{bottom:708.000000px;}
.yc_c00081{bottom:735.000000px;}
.yb_c00081{bottom:783.000000px;}
.ya_c00081{bottom:810.000000px;}
.y9_c00081{bottom:837.000000px;}
.y8_c00081{bottom:885.000000px;}
.y7_c00081{bottom:912.000000px;}
.y6_c00081{bottom:939.000000px;}
.y5_c00081{bottom:966.000000px;}
.y4_c00081{bottom:993.000000px;}
.y3_c00081{bottom:1041.000000px;}
.y2_c00081{bottom:1068.000000px;}
.y1_c00081{bottom:1095.000000px;}
.ye_c00081{bottom:1194.000000px;}
.h5_c00081{height:27.421876px;}
.h6_c00081{height:41.132812px;}
.h4_c00081{height:44.208984px;}
.h1_c00081{height:51.257812px;}
.h3_c00081{height:56.074219px;}
.h2_c00081{height:57.258075px;}
.h0_c00081{height:1263.000000px;}
.w0_c00081{width:892.500000px;}
.x0_c00081{left:0.000000px;}
.x1_c00081{left:65.480310px;}
@media print{
.v2_c00081{vertical-align:-20.521067pt;}
.v3_c00081{vertical-align:-13.333333pt;}
.v0_c00081{vertical-align:0.000000pt;}
.v1_c00081{vertical-align:20.521067pt;}
.ls1_c00081{letter-spacing:-0.008533pt;}
.ls0_c00081{letter-spacing:0.000000pt;}
.ls2_c00081{letter-spacing:0.010667pt;}
.ws0_c00081{word-spacing:-11.724800pt;}
.ws2_c00081{word-spacing:-8.888889pt;}
.ws1_c00081{word-spacing:-1.777780pt;}
.ws3_c00081{word-spacing:0.000000pt;}
._5_c00081{margin-left:-9.408000pt;}
._1a_c00081{margin-left:-6.864000pt;}
._17_c00081{margin-left:-5.529600pt;}
._11_c00081{margin-left:-4.230400pt;}
._1_c00081{margin-left:-2.803200pt;}
._6_c00081{margin-left:-1.900800pt;}
._4_c00081{margin-left:-0.985600pt;}
._8_c00081{width:1.126400pt;}
._0_c00081{width:2.214400pt;}
._3_c00081{width:3.200000pt;}
._7_c00081{width:4.102400pt;}
._2_c00081{width:5.017600pt;}
._b_c00081{width:6.112000pt;}
._9_c00081{width:7.225600pt;}
._1b_c00081{width:8.209067pt;}
._a_c00081{width:9.152000pt;}
._c_c00081{width:10.054400pt;}
._18_c00081{width:11.870933pt;}
._d_c00081{width:13.004800pt;}
._19_c00081{width:15.340800pt;}
._14_c00081{width:16.236800pt;}
._13_c00081{width:18.534400pt;}
._15_c00081{width:20.332800pt;}
._16_c00081{width:21.382400pt;}
._e_c00081{width:23.590400pt;}
._10_c00081{width:25.043200pt;}
._f_c00081{width:28.044800pt;}
._12_c00081{width:29.664000pt;}
.fs3_c00081{font-size:35.555557pt;}
.fs1_c00081{font-size:42.666667pt;}
.fs2_c00081{font-size:53.333333pt;}
.fs0_c00081{font-size:64.000000pt;}
.y0_c00081{bottom:0.000000pt;}
.yf_c00081{bottom:60.000000pt;}
.y17_c00081{bottom:120.666667pt;}
.y16_c00081{bottom:157.333333pt;}
.y15_c00081{bottom:174.666667pt;}
.y14_c00081{bottom:195.333333pt;}
.y13_c00081{bottom:235.333333pt;}
.y12_c00081{bottom:272.000000pt;}
.y11_c00081{bottom:289.333333pt;}
.y10_c00081{bottom:310.000000pt;}
.yd_c00081{bottom:629.333333pt;}
.yc_c00081{bottom:653.333333pt;}
.yb_c00081{bottom:696.000000pt;}
.ya_c00081{bottom:720.000000pt;}
.y9_c00081{bottom:744.000000pt;}
.y8_c00081{bottom:786.666667pt;}
.y7_c00081{bottom:810.666667pt;}
.y6_c00081{bottom:834.666667pt;}
.y5_c00081{bottom:858.666667pt;}
.y4_c00081{bottom:882.666667pt;}
.y3_c00081{bottom:925.333333pt;}
.y2_c00081{bottom:949.333333pt;}
.y1_c00081{bottom:973.333333pt;}
.ye_c00081{bottom:1061.333333pt;}
.h5_c00081{height:24.375001pt;}
.h6_c00081{height:36.562500pt;}
.h4_c00081{height:39.296875pt;}
.h1_c00081{height:45.562500pt;}
.h3_c00081{height:49.843750pt;}
.h2_c00081{height:50.896067pt;}
.h0_c00081{height:1122.666667pt;}
.w0_c00081{width:793.333333pt;}
.x0_c00081{left:0.000000pt;}
.x1_c00081{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b21422f847f76f21d4c00865.woff2')format("woff");}.ff1_c00082{font-family:ff1_c00082;line-height:0.717285;font-style:normal;font-weight:normal;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_d00fd1a0364d04d0a9102726.woff2')format("woff");}.ff2_c00082{font-family:ff2_c00082;line-height:0.802246;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00082{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00082{vertical-align:0.000000px;}
.ls0_c00082{letter-spacing:-0.016800px;}
.ls1_c00082{letter-spacing:0.000000px;}
.sc__c00082{text-shadow:none;}
.sc0_c00082{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00082{-webkit-text-stroke:0px transparent;}
.sc0_c00082{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00082{word-spacing:0.000000px;}
.fc2_c00082{color:transparent;}
.fc1_c00082{color:rgb(255,255,255);}
.fc0_c00082{color:rgb(6,6,6);}
.fs0_c00082{font-size:84.000000px;}
.fs2_c00082{font-size:132.000000px;}
.fs1_c00082{font-size:144.000000px;}
.y0_c00082{bottom:0.000000px;}
.y4_c00082{bottom:68.835000px;}
.y3_c00082{bottom:110.835000px;}
.y2_c00082{bottom:188.835000px;}
.y1_c00082{bottom:919.500000px;}
.h4_c00082{height:90.234375px;}
.h3_c00082{height:98.437500px;}
.h2_c00082{height:261.000000px;}
.h0_c00082{height:1262.835000px;}
.h1_c00082{height:1263.000000px;}
.w2_c00082{width:586.500000px;}
.w0_c00082{width:892.935000px;}
.w1_c00082{width:893.250000px;}
.x0_c00082{left:0.000000px;}
.x2_c00082{left:16.500000px;}
.x1_c00082{left:280.500000px;}
@media print{
.v0_c00082{vertical-align:0.000000pt;}
.ls0_c00082{letter-spacing:-0.014933pt;}
.ls1_c00082{letter-spacing:0.000000pt;}
.ws0_c00082{word-spacing:0.000000pt;}
.fs0_c00082{font-size:74.666667pt;}
.fs2_c00082{font-size:117.333333pt;}
.fs1_c00082{font-size:128.000000pt;}
.y0_c00082{bottom:0.000000pt;}
.y4_c00082{bottom:61.186667pt;}
.y3_c00082{bottom:98.520000pt;}
.y2_c00082{bottom:167.853333pt;}
.y1_c00082{bottom:817.333333pt;}
.h4_c00082{height:80.208333pt;}
.h3_c00082{height:87.500000pt;}
.h2_c00082{height:232.000000pt;}
.h0_c00082{height:1122.520000pt;}
.h1_c00082{height:1122.666667pt;}
.w2_c00082{width:521.333333pt;}
.w0_c00082{width:793.720000pt;}
.w1_c00082{width:794.000000pt;}
.x0_c00082{left:0.000000pt;}
.x2_c00082{left:14.666667pt;}
.x1_c00082{left:249.333333pt;}
}





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





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_6b510cf06dff08da09cd2137.woff2')format("woff");}.ff1_c00084{font-family:ff1_c00084;line-height:1.124023;font-style:normal;font-weight:normal;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_06a31495d8f664c75dc5347e.woff2')format("woff");}.ff2_c00084{font-family:ff2_c00084;line-height:1.163086;font-style:normal;font-weight:normal;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_63d23241cc7f3bfd6b05790f.woff2')format("woff");}.ff3_c00084{font-family:ff3_c00084;line-height:0.956543;font-style:normal;font-weight:normal;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_1f3e4d21fc26ef562876bbb1.woff2')format("woff");}.ff4_c00084{font-family:ff4_c00084;line-height:0.904297;font-style:normal;font-weight:normal;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_962bd28fd277cad7a6ced8bb.woff2')format("woff");}.ff5_c00084{font-family:ff5_c00084;line-height:0.764160;font-style: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);}
.v2_c00084{vertical-align:-15.000000px;}
.v0_c00084{vertical-align:0.000000px;}
.v1_c00084{vertical-align:23.086200px;}
.ls5_c00084{letter-spacing:-0.007200px;}
.ls3_c00084{letter-spacing:0.000000px;}
.ls0_c00084{letter-spacing:0.010800px;}
.ls1_c00084{letter-spacing:0.012000px;}
.ls4_c00084{letter-spacing:0.014400px;}
.ls2_c00084{letter-spacing:3.999999px;}
.sc__c00084{text-shadow:none;}
.sc0_c00084{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00084{-webkit-text-stroke:0px transparent;}
.sc0_c00084{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00084{word-spacing:-15.000000px;}
.ws0_c00084{word-spacing:-13.200000px;}
.ws2_c00084{word-spacing:0.000000px;}
._10_c00084{margin-left:-6.616800px;}
._b_c00084{margin-left:-5.144400px;}
._7_c00084{margin-left:-3.985200px;}
._d_c00084{margin-left:-2.952000px;}
._0_c00084{margin-left:-1.688400px;}
._3_c00084{width:1.281600px;}
._1_c00084{width:2.325600px;}
._2_c00084{width:3.499200px;}
._4_c00084{width:4.593600px;}
._5_c00084{width:5.925600px;}
._6_c00084{width:7.527600px;}
._e_c00084{width:8.632800px;}
._8_c00084{width:9.914400px;}
._a_c00084{width:11.894400px;}
._9_c00084{width:13.201200px;}
._f_c00084{width:14.785200px;}
._c_c00084{width:16.459200px;}
._11_c00084{width:17.697600px;}
._15_c00084{width:21.787200px;}
._12_c00084{width:23.104800px;}
._14_c00084{width:24.836400px;}
._13_c00084{width:26.078400px;}
._16_c00084{width:27.367200px;}
._17_c00084{width:29.444400px;}
.fc0_c00084{color:rgb(0,0,0);}
.fs5_c00084{font-size:40.000002px;}
.fs3_c00084{font-size:48.000000px;}
.fs4_c00084{font-size:60.000000px;}
.fs2_c00084{font-size:72.000000px;}
.fs0_c00084{font-size:108.000000px;}
.fs1_c00084{font-size:120.000000px;}
.y0_c00084{bottom:0.000000px;}
.y19_c00084{bottom:67.335000px;}
.y1d_c00084{bottom:131.835000px;}
.y1c_c00084{bottom:151.335000px;}
.y1b_c00084{bottom:170.835000px;}
.y1a_c00084{bottom:194.085000px;}
.y17_c00084{bottom:254.835000px;}
.y16_c00084{bottom:281.835000px;}
.y15_c00084{bottom:308.835000px;}
.y14_c00084{bottom:335.835000px;}
.y13_c00084{bottom:362.835000px;}
.y12_c00084{bottom:389.835000px;}
.y11_c00084{bottom:416.835000px;}
.y10_c00084{bottom:443.835000px;}
.yf_c00084{bottom:470.835000px;}
.ye_c00084{bottom:518.835000px;}
.yd_c00084{bottom:545.835000px;}
.yc_c00084{bottom:572.835000px;}
.yb_c00084{bottom:599.835000px;}
.ya_c00084{bottom:626.835000px;}
.y9_c00084{bottom:653.835000px;}
.y8_c00084{bottom:701.835000px;}
.y7_c00084{bottom:728.835000px;}
.y6_c00084{bottom:755.835000px;}
.y5_c00084{bottom:782.835000px;}
.y4_c00084{bottom:830.835000px;}
.y3_c00084{bottom:857.835000px;}
.y2_c00084{bottom:884.835000px;}
.y1_c00084{bottom:1034.835000px;}
.y18_c00084{bottom:1193.835000px;}
.h7_c00084{height:27.421876px;}
.h8_c00084{height:41.132812px;}
.h6_c00084{height:44.121094px;}
.h4_c00084{height:67.746094px;}
.h5_c00084{height:68.250262px;}
.h3_c00084{height:113.671875px;}
.h2_c00084{height:1261.500000px;}
.h0_c00084{height:1262.835000px;}
.h1_c00084{height:1263.000000px;}
.w2_c00084{width:892.500000px;}
.w0_c00084{width:892.935000px;}
.w1_c00084{width:893.250000px;}
.x0_c00084{left:0.000000px;}
.x1_c00084{left:150.519750px;}
.x2_c00084{left:380.516100px;}
.x3_c00084{left:810.770100px;}
@media print{
.v2_c00084{vertical-align:-13.333333pt;}
.v0_c00084{vertical-align:0.000000pt;}
.v1_c00084{vertical-align:20.521067pt;}
.ls5_c00084{letter-spacing:-0.006400pt;}
.ls3_c00084{letter-spacing:0.000000pt;}
.ls0_c00084{letter-spacing:0.009600pt;}
.ls1_c00084{letter-spacing:0.010667pt;}
.ls4_c00084{letter-spacing:0.012800pt;}
.ls2_c00084{letter-spacing:3.555555pt;}
.ws1_c00084{word-spacing:-13.333333pt;}
.ws0_c00084{word-spacing:-11.733333pt;}
.ws2_c00084{word-spacing:0.000000pt;}
._10_c00084{margin-left:-5.881600pt;}
._b_c00084{margin-left:-4.572800pt;}
._7_c00084{margin-left:-3.542400pt;}
._d_c00084{margin-left:-2.624000pt;}
._0_c00084{margin-left:-1.500800pt;}
._3_c00084{width:1.139200pt;}
._1_c00084{width:2.067200pt;}
._2_c00084{width:3.110400pt;}
._4_c00084{width:4.083200pt;}
._5_c00084{width:5.267200pt;}
._6_c00084{width:6.691200pt;}
._e_c00084{width:7.673600pt;}
._8_c00084{width:8.812800pt;}
._a_c00084{width:10.572800pt;}
._9_c00084{width:11.734400pt;}
._f_c00084{width:13.142400pt;}
._c_c00084{width:14.630400pt;}
._11_c00084{width:15.731200pt;}
._15_c00084{width:19.366400pt;}
._12_c00084{width:20.537600pt;}
._14_c00084{width:22.076800pt;}
._13_c00084{width:23.180800pt;}
._16_c00084{width:24.326400pt;}
._17_c00084{width:26.172800pt;}
.fs5_c00084{font-size:35.555557pt;}
.fs3_c00084{font-size:42.666667pt;}
.fs4_c00084{font-size:53.333333pt;}
.fs2_c00084{font-size:64.000000pt;}
.fs0_c00084{font-size:96.000000pt;}
.fs1_c00084{font-size:106.666667pt;}
.y0_c00084{bottom:0.000000pt;}
.y19_c00084{bottom:59.853333pt;}
.y1d_c00084{bottom:117.186667pt;}
.y1c_c00084{bottom:134.520000pt;}
.y1b_c00084{bottom:151.853333pt;}
.y1a_c00084{bottom:172.520000pt;}
.y17_c00084{bottom:226.520000pt;}
.y16_c00084{bottom:250.520000pt;}
.y15_c00084{bottom:274.520000pt;}
.y14_c00084{bottom:298.520000pt;}
.y13_c00084{bottom:322.520000pt;}
.y12_c00084{bottom:346.520000pt;}
.y11_c00084{bottom:370.520000pt;}
.y10_c00084{bottom:394.520000pt;}
.yf_c00084{bottom:418.520000pt;}
.ye_c00084{bottom:461.186667pt;}
.yd_c00084{bottom:485.186667pt;}
.yc_c00084{bottom:509.186667pt;}
.yb_c00084{bottom:533.186667pt;}
.ya_c00084{bottom:557.186667pt;}
.y9_c00084{bottom:581.186667pt;}
.y8_c00084{bottom:623.853333pt;}
.y7_c00084{bottom:647.853333pt;}
.y6_c00084{bottom:671.853333pt;}
.y5_c00084{bottom:695.853333pt;}
.y4_c00084{bottom:738.520000pt;}
.y3_c00084{bottom:762.520000pt;}
.y2_c00084{bottom:786.520000pt;}
.y1_c00084{bottom:919.853333pt;}
.y18_c00084{bottom:1061.186667pt;}
.h7_c00084{height:24.375001pt;}
.h8_c00084{height:36.562500pt;}
.h6_c00084{height:39.218750pt;}
.h4_c00084{height:60.218750pt;}
.h5_c00084{height:60.666900pt;}
.h3_c00084{height:101.041667pt;}
.h2_c00084{height:1121.333333pt;}
.h0_c00084{height:1122.520000pt;}
.h1_c00084{height:1122.666667pt;}
.w2_c00084{width:793.333333pt;}
.w0_c00084{width:793.720000pt;}
.w1_c00084{width:794.000000pt;}
.x0_c00084{left:0.000000pt;}
.x1_c00084{left:133.795333pt;}
.x2_c00084{left:338.236533pt;}
.x3_c00084{left:720.684533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bd2e020e715b4fcefc973dae.woff2')format("woff");}.ff1_c00085{font-family:ff1_c00085;line-height:1.163086;font-style:normal;font-weight:normal;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_d420f86eaefae41734b6b0e8.woff2')format("woff");}.ff2_c00085{font-family:ff2_c00085;line-height:0.756836;font-style:normal;font-weight:normal;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_a645eb6072c23cd97bb4326f.woff2')format("woff");}.ff3_c00085{font-family:ff3_c00085;line-height:1.155762;font-style:normal;font-weight:normal;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_ce4a005be4ed3513b722834b.woff2')format("woff");}.ff4_c00085{font-family:ff4_c00085;line-height:0.904297;font-style:normal;font-weight:normal;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_39a8c37ff004cfab4dbc8644.woff2')format("woff");}.ff5_c00085{font-family:ff5_c00085;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00085{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00085{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00085{vertical-align:-23.086200px;}
.v3_c00085{vertical-align:-15.000000px;}
.v0_c00085{vertical-align:0.000000px;}
.v1_c00085{vertical-align:23.086200px;}
.ls3_c00085{letter-spacing:0.000000px;}
.ls4_c00085{letter-spacing:0.012000px;}
.ls2_c00085{letter-spacing:0.787440px;}
.ls0_c00085{letter-spacing:2.110800px;}
.ls1_c00085{letter-spacing:2.915520px;}
.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:-19.800000px;}
.ws3_c00085{word-spacing:-15.000000px;}
.ws1_c00085{word-spacing:-13.200000px;}
.ws2_c00085{word-spacing:-10.000001px;}
.ws4_c00085{word-spacing:0.000000px;}
._1e_c00085{margin-left:-16.587840px;}
._20_c00085{margin-left:-7.518000px;}
._1f_c00085{margin-left:-6.289200px;}
._14_c00085{margin-left:-5.011200px;}
._7_c00085{margin-left:-3.859200px;}
._0_c00085{margin-left:-2.066400px;}
._1d_c00085{margin-left:-1.029600px;}
._2_c00085{width:1.260000px;}
._f_c00085{width:2.311200px;}
._4_c00085{width:3.520800px;}
._b_c00085{width:4.946400px;}
._e_c00085{width:5.947200px;}
._d_c00085{width:7.732800px;}
._17_c00085{width:9.187200px;}
._1a_c00085{width:10.576800px;}
._1b_c00085{width:11.937600px;}
._1c_c00085{width:13.284000px;}
._19_c00085{width:14.580000px;}
._5_c00085{width:15.760800px;}
._18_c00085{width:17.172000px;}
._3_c00085{width:18.439200px;}
._1_c00085{width:21.664800px;}
._16_c00085{width:24.357600px;}
._15_c00085{width:25.783200px;}
._c_c00085{width:27.057600px;}
._6_c00085{width:28.461600px;}
._9_c00085{width:30.765600px;}
._a_c00085{width:31.953600px;}
._13_c00085{width:34.819200px;}
._8_c00085{width:35.841600px;}
._12_c00085{width:37.051200px;}
._11_c00085{width:38.332800px;}
._10_c00085{width:41.234400px;}
.fc1_c00085{color:rgb(0,0,153);}
.fc0_c00085{color:rgb(0,0,0);}
.fs3_c00085{font-size:40.000002px;}
.fs1_c00085{font-size:48.000000px;}
.fs2_c00085{font-size:60.000000px;}
.fs0_c00085{font-size:72.000000px;}
.y0_c00085{bottom:0.000000px;}
.y1b_c00085{bottom:67.335000px;}
.y23_c00085{bottom:131.835000px;}
.y22_c00085{bottom:151.335000px;}
.y21_c00085{bottom:174.585000px;}
.y20_c00085{bottom:215.835000px;}
.y1f_c00085{bottom:235.335000px;}
.y1e_c00085{bottom:254.835000px;}
.y1d_c00085{bottom:274.335000px;}
.y1c_c00085{bottom:297.585000px;}
.y19_c00085{bottom:362.835000px;}
.y18_c00085{bottom:389.835000px;}
.y17_c00085{bottom:416.835000px;}
.y16_c00085{bottom:443.835000px;}
.y15_c00085{bottom:470.835000px;}
.y14_c00085{bottom:497.835000px;}
.y13_c00085{bottom:545.835000px;}
.y12_c00085{bottom:572.835000px;}
.y11_c00085{bottom:599.835000px;}
.y10_c00085{bottom:626.835000px;}
.yf_c00085{bottom:653.835000px;}
.ye_c00085{bottom:701.835000px;}
.yd_c00085{bottom:728.835000px;}
.yc_c00085{bottom:755.835000px;}
.yb_c00085{bottom:782.835000px;}
.ya_c00085{bottom:809.835000px;}
.y9_c00085{bottom:836.835000px;}
.y8_c00085{bottom:863.835000px;}
.y7_c00085{bottom:890.835000px;}
.y6_c00085{bottom:917.835000px;}
.y5_c00085{bottom:965.835000px;}
.y4_c00085{bottom:992.835000px;}
.y3_c00085{bottom:1019.835000px;}
.y2_c00085{bottom:1067.835000px;}
.y1_c00085{bottom:1094.835000px;}
.y1a_c00085{bottom:1193.835000px;}
.h7_c00085{height:27.421876px;}
.h8_c00085{height:41.132812px;}
.h6_c00085{height:44.208984px;}
.h5_c00085{height:56.074219px;}
.h3_c00085{height:67.746094px;}
.h4_c00085{height:68.250262px;}
.h2_c00085{height:1261.500000px;}
.h0_c00085{height:1262.835000px;}
.h1_c00085{height:1263.000000px;}
.w2_c00085{width:892.500000px;}
.w0_c00085{width:892.935000px;}
.w1_c00085{width:893.250000px;}
.x0_c00085{left:0.000000px;}
.x1_c00085{left:65.480310px;}
@media print{
.v2_c00085{vertical-align:-20.521067pt;}
.v3_c00085{vertical-align:-13.333333pt;}
.v0_c00085{vertical-align:0.000000pt;}
.v1_c00085{vertical-align:20.521067pt;}
.ls3_c00085{letter-spacing:0.000000pt;}
.ls4_c00085{letter-spacing:0.010667pt;}
.ls2_c00085{letter-spacing:0.699947pt;}
.ls0_c00085{letter-spacing:1.876267pt;}
.ls1_c00085{letter-spacing:2.591573pt;}
.ws0_c00085{word-spacing:-17.600000pt;}
.ws3_c00085{word-spacing:-13.333333pt;}
.ws1_c00085{word-spacing:-11.733333pt;}
.ws2_c00085{word-spacing:-8.888889pt;}
.ws4_c00085{word-spacing:0.000000pt;}
._1e_c00085{margin-left:-14.744747pt;}
._20_c00085{margin-left:-6.682667pt;}
._1f_c00085{margin-left:-5.590400pt;}
._14_c00085{margin-left:-4.454400pt;}
._7_c00085{margin-left:-3.430400pt;}
._0_c00085{margin-left:-1.836800pt;}
._1d_c00085{margin-left:-0.915200pt;}
._2_c00085{width:1.120000pt;}
._f_c00085{width:2.054400pt;}
._4_c00085{width:3.129600pt;}
._b_c00085{width:4.396800pt;}
._e_c00085{width:5.286400pt;}
._d_c00085{width:6.873600pt;}
._17_c00085{width:8.166400pt;}
._1a_c00085{width:9.401600pt;}
._1b_c00085{width:10.611200pt;}
._1c_c00085{width:11.808000pt;}
._19_c00085{width:12.960000pt;}
._5_c00085{width:14.009600pt;}
._18_c00085{width:15.264000pt;}
._3_c00085{width:16.390400pt;}
._1_c00085{width:19.257600pt;}
._16_c00085{width:21.651200pt;}
._15_c00085{width:22.918400pt;}
._c_c00085{width:24.051200pt;}
._6_c00085{width:25.299200pt;}
._9_c00085{width:27.347200pt;}
._a_c00085{width:28.403200pt;}
._13_c00085{width:30.950400pt;}
._8_c00085{width:31.859200pt;}
._12_c00085{width:32.934400pt;}
._11_c00085{width:34.073600pt;}
._10_c00085{width:36.652800pt;}
.fs3_c00085{font-size:35.555557pt;}
.fs1_c00085{font-size:42.666667pt;}
.fs2_c00085{font-size:53.333333pt;}
.fs0_c00085{font-size:64.000000pt;}
.y0_c00085{bottom:0.000000pt;}
.y1b_c00085{bottom:59.853333pt;}
.y23_c00085{bottom:117.186667pt;}
.y22_c00085{bottom:134.520000pt;}
.y21_c00085{bottom:155.186667pt;}
.y20_c00085{bottom:191.853333pt;}
.y1f_c00085{bottom:209.186667pt;}
.y1e_c00085{bottom:226.520000pt;}
.y1d_c00085{bottom:243.853333pt;}
.y1c_c00085{bottom:264.520000pt;}
.y19_c00085{bottom:322.520000pt;}
.y18_c00085{bottom:346.520000pt;}
.y17_c00085{bottom:370.520000pt;}
.y16_c00085{bottom:394.520000pt;}
.y15_c00085{bottom:418.520000pt;}
.y14_c00085{bottom:442.520000pt;}
.y13_c00085{bottom:485.186667pt;}
.y12_c00085{bottom:509.186667pt;}
.y11_c00085{bottom:533.186667pt;}
.y10_c00085{bottom:557.186667pt;}
.yf_c00085{bottom:581.186667pt;}
.ye_c00085{bottom:623.853333pt;}
.yd_c00085{bottom:647.853333pt;}
.yc_c00085{bottom:671.853333pt;}
.yb_c00085{bottom:695.853333pt;}
.ya_c00085{bottom:719.853333pt;}
.y9_c00085{bottom:743.853333pt;}
.y8_c00085{bottom:767.853333pt;}
.y7_c00085{bottom:791.853333pt;}
.y6_c00085{bottom:815.853333pt;}
.y5_c00085{bottom:858.520000pt;}
.y4_c00085{bottom:882.520000pt;}
.y3_c00085{bottom:906.520000pt;}
.y2_c00085{bottom:949.186667pt;}
.y1_c00085{bottom:973.186667pt;}
.y1a_c00085{bottom:1061.186667pt;}
.h7_c00085{height:24.375001pt;}
.h8_c00085{height:36.562500pt;}
.h6_c00085{height:39.296875pt;}
.h5_c00085{height:49.843750pt;}
.h3_c00085{height:60.218750pt;}
.h4_c00085{height:60.666900pt;}
.h2_c00085{height:1121.333333pt;}
.h0_c00085{height:1122.520000pt;}
.h1_c00085{height:1122.666667pt;}
.w2_c00085{width:793.333333pt;}
.w0_c00085{width:793.720000pt;}
.w1_c00085{width:794.000000pt;}
.x0_c00085{left:0.000000pt;}
.x1_c00085{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_363b16775078c733dd499a80.woff2')format("woff");}.ff1_c00086{font-family:ff1_c00086;line-height:1.163086;font-style:normal;font-weight:normal;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_047b66da0f2dc7c1d58828ee.woff2')format("woff");}.ff2_c00086{font-family:ff2_c00086;line-height:0.956543;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00086{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00086{vertical-align:0.000000px;}
.ls2_c00086{letter-spacing:0.000000px;}
.ls1_c00086{letter-spacing:0.012000px;}
.ls0_c00086{letter-spacing:1.771200px;}
.sc__c00086{text-shadow:none;}
.sc0_c00086{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00086{-webkit-text-stroke:0px transparent;}
.sc0_c00086{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00086{word-spacing:-19.800000px;}
.ws1_c00086{word-spacing:0.000000px;}
._1b_c00086{margin-left:-7.192800px;}
._8_c00086{margin-left:-5.544000px;}
._6_c00086{margin-left:-4.320000px;}
._2_c00086{margin-left:-2.592000px;}
._b_c00086{margin-left:-1.584000px;}
._4_c00086{width:1.440000px;}
._0_c00086{width:2.448000px;}
._c_c00086{width:3.679200px;}
._13_c00086{width:4.701600px;}
._d_c00086{width:5.990400px;}
._14_c00086{width:8.085600px;}
._11_c00086{width:10.044000px;}
._10_c00086{width:11.232000px;}
._e_c00086{width:13.701600px;}
._15_c00086{width:15.004800px;}
._f_c00086{width:16.308000px;}
._12_c00086{width:18.043200px;}
._19_c00086{width:20.808000px;}
._18_c00086{width:24.170400px;}
._16_c00086{width:25.999200px;}
._17_c00086{width:27.518400px;}
._1a_c00086{width:28.792800px;}
._1_c00086{width:30.816000px;}
._5_c00086{width:31.896000px;}
._a_c00086{width:33.408000px;}
._3_c00086{width:35.928000px;}
._7_c00086{width:37.656000px;}
._9_c00086{width:38.736000px;}
.fc0_c00086{color:rgb(0,0,0);}
.fs1_c00086{font-size:60.000000px;}
.fs0_c00086{font-size:72.000000px;}
.y0_c00086{bottom:0.000000px;}
.y1f_c00086{bottom:67.335000px;}
.y1d_c00086{bottom:233.835000px;}
.y1c_c00086{bottom:260.835000px;}
.y1b_c00086{bottom:287.835000px;}
.y1a_c00086{bottom:314.835000px;}
.y19_c00086{bottom:362.835000px;}
.y18_c00086{bottom:389.835000px;}
.y17_c00086{bottom:416.835000px;}
.y16_c00086{bottom:443.835000px;}
.y15_c00086{bottom:470.835000px;}
.y14_c00086{bottom:497.835000px;}
.y13_c00086{bottom:545.835000px;}
.y12_c00086{bottom:572.835000px;}
.y11_c00086{bottom:599.835000px;}
.y10_c00086{bottom:626.835000px;}
.yf_c00086{bottom:653.835000px;}
.ye_c00086{bottom:680.835000px;}
.yd_c00086{bottom:707.835000px;}
.yc_c00086{bottom:734.835000px;}
.yb_c00086{bottom:761.835000px;}
.ya_c00086{bottom:809.835000px;}
.y9_c00086{bottom:836.835000px;}
.y8_c00086{bottom:863.835000px;}
.y7_c00086{bottom:890.835000px;}
.y6_c00086{bottom:917.835000px;}
.y5_c00086{bottom:965.835000px;}
.y4_c00086{bottom:992.835000px;}
.y3_c00086{bottom:1040.835000px;}
.y2_c00086{bottom:1067.835000px;}
.y1_c00086{bottom:1094.835000px;}
.y1e_c00086{bottom:1193.835000px;}
.h4_c00086{height:44.121094px;}
.h3_c00086{height:67.746094px;}
.h2_c00086{height:1261.500000px;}
.h0_c00086{height:1262.835000px;}
.h1_c00086{height:1263.000000px;}
.w2_c00086{width:892.500000px;}
.w0_c00086{width:892.935000px;}
.w1_c00086{width:893.250000px;}
.x0_c00086{left:0.000000px;}
.x1_c00086{left:150.519750px;}
.x2_c00086{left:380.516100px;}
.x3_c00086{left:810.770100px;}
@media print{
.v0_c00086{vertical-align:0.000000pt;}
.ls2_c00086{letter-spacing:0.000000pt;}
.ls1_c00086{letter-spacing:0.010667pt;}
.ls0_c00086{letter-spacing:1.574400pt;}
.ws0_c00086{word-spacing:-17.600000pt;}
.ws1_c00086{word-spacing:0.000000pt;}
._1b_c00086{margin-left:-6.393600pt;}
._8_c00086{margin-left:-4.928000pt;}
._6_c00086{margin-left:-3.840000pt;}
._2_c00086{margin-left:-2.304000pt;}
._b_c00086{margin-left:-1.408000pt;}
._4_c00086{width:1.280000pt;}
._0_c00086{width:2.176000pt;}
._c_c00086{width:3.270400pt;}
._13_c00086{width:4.179200pt;}
._d_c00086{width:5.324800pt;}
._14_c00086{width:7.187200pt;}
._11_c00086{width:8.928000pt;}
._10_c00086{width:9.984000pt;}
._e_c00086{width:12.179200pt;}
._15_c00086{width:13.337600pt;}
._f_c00086{width:14.496000pt;}
._12_c00086{width:16.038400pt;}
._19_c00086{width:18.496000pt;}
._18_c00086{width:21.484800pt;}
._16_c00086{width:23.110400pt;}
._17_c00086{width:24.460800pt;}
._1a_c00086{width:25.593600pt;}
._1_c00086{width:27.392000pt;}
._5_c00086{width:28.352000pt;}
._a_c00086{width:29.696000pt;}
._3_c00086{width:31.936000pt;}
._7_c00086{width:33.472000pt;}
._9_c00086{width:34.432000pt;}
.fs1_c00086{font-size:53.333333pt;}
.fs0_c00086{font-size:64.000000pt;}
.y0_c00086{bottom:0.000000pt;}
.y1f_c00086{bottom:59.853333pt;}
.y1d_c00086{bottom:207.853333pt;}
.y1c_c00086{bottom:231.853333pt;}
.y1b_c00086{bottom:255.853333pt;}
.y1a_c00086{bottom:279.853333pt;}
.y19_c00086{bottom:322.520000pt;}
.y18_c00086{bottom:346.520000pt;}
.y17_c00086{bottom:370.520000pt;}
.y16_c00086{bottom:394.520000pt;}
.y15_c00086{bottom:418.520000pt;}
.y14_c00086{bottom:442.520000pt;}
.y13_c00086{bottom:485.186667pt;}
.y12_c00086{bottom:509.186667pt;}
.y11_c00086{bottom:533.186667pt;}
.y10_c00086{bottom:557.186667pt;}
.yf_c00086{bottom:581.186667pt;}
.ye_c00086{bottom:605.186667pt;}
.yd_c00086{bottom:629.186667pt;}
.yc_c00086{bottom:653.186667pt;}
.yb_c00086{bottom:677.186667pt;}
.ya_c00086{bottom:719.853333pt;}
.y9_c00086{bottom:743.853333pt;}
.y8_c00086{bottom:767.853333pt;}
.y7_c00086{bottom:791.853333pt;}
.y6_c00086{bottom:815.853333pt;}
.y5_c00086{bottom:858.520000pt;}
.y4_c00086{bottom:882.520000pt;}
.y3_c00086{bottom:925.186667pt;}
.y2_c00086{bottom:949.186667pt;}
.y1_c00086{bottom:973.186667pt;}
.y1e_c00086{bottom:1061.186667pt;}
.h4_c00086{height:39.218750pt;}
.h3_c00086{height:60.218750pt;}
.h2_c00086{height:1121.333333pt;}
.h0_c00086{height:1122.520000pt;}
.h1_c00086{height:1122.666667pt;}
.w2_c00086{width:793.333333pt;}
.w0_c00086{width:793.720000pt;}
.w1_c00086{width:794.000000pt;}
.x0_c00086{left:0.000000pt;}
.x1_c00086{left:133.795333pt;}
.x2_c00086{left:338.236533pt;}
.x3_c00086{left:720.684533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_810fc067a3284dd943206db4.woff2')format("woff");}.ff1_c00087{font-family:ff1_c00087;line-height:1.124023;font-style:normal;font-weight:normal;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_0b970f87e0cb4c1f0a9397b7.woff2')format("woff");}.ff2_c00087{font-family:ff2_c00087;line-height:0.934082;font-style:normal;font-weight:normal;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_863be1a024abc6d66b14aafd.woff2')format("woff");}.ff3_c00087{font-family:ff3_c00087;line-height:0.756836;font-style:normal;font-weight:normal;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_b0e05d04230b697681034fe3.woff2')format("woff");}.ff4_c00087{font-family:ff4_c00087;line-height:1.155762;font-style:normal;font-weight:normal;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_d32136fe3e7bc7f6ee9caa6b.woff2')format("woff");}.ff5_c00087{font-family:ff5_c00087;line-height:1.112305;font-style:normal;font-weight: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_c00087;src:url('chunks/assets/font_bca35c9a4440df2805ca44a1.woff2')format("woff");}.ff6_c00087{font-family:ff6_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);}
.v2_c00087{vertical-align:-23.086200px;}
.v3_c00087{vertical-align:-15.000000px;}
.v0_c00087{vertical-align:0.000000px;}
.v1_c00087{vertical-align:23.086200px;}
.ls4_c00087{letter-spacing:0.000000px;}
.ls0_c00087{letter-spacing:0.010800px;}
.ls5_c00087{letter-spacing:0.012000px;}
.ls3_c00087{letter-spacing:3.999999px;}
.ls2_c00087{letter-spacing:4.186920px;}
.ls1_c00087{letter-spacing:4.509000px;}
.sc__c00087{text-shadow:none;}
.sc0_c00087{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00087{-webkit-text-stroke:0px transparent;}
.sc0_c00087{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00087{word-spacing:-19.800000px;}
.ws1_c00087{word-spacing:-13.200000px;}
.ws2_c00087{word-spacing:-10.000001px;}
.ws3_c00087{word-spacing:0.000000px;}
._1d_c00087{margin-left:-11.179440px;}
._a_c00087{margin-left:-7.214400px;}
._1_c00087{margin-left:-4.820160px;}
._13_c00087{margin-left:-3.486960px;}
._0_c00087{margin-left:-2.193840px;}
._f_c00087{margin-left:-1.065600px;}
._b_c00087{width:1.144800px;}
._2_c00087{width:2.210400px;}
._7_c00087{width:4.082400px;}
._5_c00087{width:5.176800px;}
._12_c00087{width:6.646320px;}
._6_c00087{width:8.136000px;}
._8_c00087{width:9.194400px;}
._3_c00087{width:11.131200px;}
._c_c00087{width:12.139200px;}
._9_c00087{width:13.262400px;}
._1b_c00087{width:14.313360px;}
._4_c00087{width:15.492240px;}
._10_c00087{width:16.804800px;}
._e_c00087{width:18.396000px;}
._20_c00087{width:19.829160px;}
._d_c00087{width:21.441600px;}
._11_c00087{width:22.562640px;}
._1a_c00087{width:24.432960px;}
._1f_c00087{width:25.478640px;}
._1c_c00087{width:26.822160px;}
._1e_c00087{width:28.112160px;}
._15_c00087{width:33.854400px;}
._18_c00087{width:34.927200px;}
._16_c00087{width:36.072000px;}
._17_c00087{width:38.157840px;}
._14_c00087{width:40.856160px;}
._19_c00087{width:42.283920px;}
.fc0_c00087{color:rgb(0,0,0);}
.fs6_c00087{font-size:40.000002px;}
.fs4_c00087{font-size:48.000000px;}
.fs5_c00087{font-size:60.000000px;}
.fs3_c00087{font-size:72.000000px;}
.fs2_c00087{font-size:84.000000px;}
.fs0_c00087{font-size:108.000000px;}
.fs1_c00087{font-size:120.000000px;}
.y0_c00087{bottom:0.000000px;}
.y15_c00087{bottom:67.335000px;}
.y1b_c00087{bottom:131.835000px;}
.y1a_c00087{bottom:151.335000px;}
.y19_c00087{bottom:174.585000px;}
.y18_c00087{bottom:215.835000px;}
.y17_c00087{bottom:239.085000px;}
.y16_c00087{bottom:284.085000px;}
.y13_c00087{bottom:337.335000px;}
.y12_c00087{bottom:364.335000px;}
.y11_c00087{bottom:412.335000px;}
.y10_c00087{bottom:439.335000px;}
.yf_c00087{bottom:466.335000px;}
.ye_c00087{bottom:493.335000px;}
.yd_c00087{bottom:520.335000px;}
.yc_c00087{bottom:547.335000px;}
.yb_c00087{bottom:574.335000px;}
.ya_c00087{bottom:601.335000px;}
.y9_c00087{bottom:628.335000px;}
.y8_c00087{bottom:655.335000px;}
.y7_c00087{bottom:703.335000px;}
.y6_c00087{bottom:730.335000px;}
.y5_c00087{bottom:757.335000px;}
.y4_c00087{bottom:784.335000px;}
.y3_c00087{bottom:811.335000px;}
.y2_c00087{bottom:871.335000px;}
.y1_c00087{bottom:1039.335000px;}
.y14_c00087{bottom:1193.835000px;}
.h9_c00087{height:38.671875px;}
.h8_c00087{height:44.208984px;}
.h5_c00087{height:51.257812px;}
.ha_c00087{height:53.671875px;}
.h7_c00087{height:56.074219px;}
.h6_c00087{height:57.258075px;}
.h4_c00087{height:79.570312px;}
.h3_c00087{height:113.671875px;}
.h2_c00087{height:1261.500000px;}
.h0_c00087{height:1262.835000px;}
.h1_c00087{height:1263.000000px;}
.w2_c00087{width:892.500000px;}
.w0_c00087{width:892.935000px;}
.w1_c00087{width:893.250000px;}
.x0_c00087{left:0.000000px;}
.x1_c00087{left:65.480310px;}
@media print{
.v2_c00087{vertical-align:-20.521067pt;}
.v3_c00087{vertical-align:-13.333333pt;}
.v0_c00087{vertical-align:0.000000pt;}
.v1_c00087{vertical-align:20.521067pt;}
.ls4_c00087{letter-spacing:0.000000pt;}
.ls0_c00087{letter-spacing:0.009600pt;}
.ls5_c00087{letter-spacing:0.010667pt;}
.ls3_c00087{letter-spacing:3.555555pt;}
.ls2_c00087{letter-spacing:3.721707pt;}
.ls1_c00087{letter-spacing:4.008000pt;}
.ws0_c00087{word-spacing:-17.600000pt;}
.ws1_c00087{word-spacing:-11.733333pt;}
.ws2_c00087{word-spacing:-8.888889pt;}
.ws3_c00087{word-spacing:0.000000pt;}
._1d_c00087{margin-left:-9.937280pt;}
._a_c00087{margin-left:-6.412800pt;}
._1_c00087{margin-left:-4.284587pt;}
._13_c00087{margin-left:-3.099520pt;}
._0_c00087{margin-left:-1.950080pt;}
._f_c00087{margin-left:-0.947200pt;}
._b_c00087{width:1.017600pt;}
._2_c00087{width:1.964800pt;}
._7_c00087{width:3.628800pt;}
._5_c00087{width:4.601600pt;}
._12_c00087{width:5.907840pt;}
._6_c00087{width:7.232000pt;}
._8_c00087{width:8.172800pt;}
._3_c00087{width:9.894400pt;}
._c_c00087{width:10.790400pt;}
._9_c00087{width:11.788800pt;}
._1b_c00087{width:12.722987pt;}
._4_c00087{width:13.770880pt;}
._10_c00087{width:14.937600pt;}
._e_c00087{width:16.352000pt;}
._20_c00087{width:17.625920pt;}
._d_c00087{width:19.059200pt;}
._11_c00087{width:20.055680pt;}
._1a_c00087{width:21.718187pt;}
._1f_c00087{width:22.647680pt;}
._1c_c00087{width:23.841920pt;}
._1e_c00087{width:24.988587pt;}
._15_c00087{width:30.092800pt;}
._18_c00087{width:31.046400pt;}
._16_c00087{width:32.064000pt;}
._17_c00087{width:33.918080pt;}
._14_c00087{width:36.316587pt;}
._19_c00087{width:37.585707pt;}
.fs6_c00087{font-size:35.555557pt;}
.fs4_c00087{font-size:42.666667pt;}
.fs5_c00087{font-size:53.333333pt;}
.fs3_c00087{font-size:64.000000pt;}
.fs2_c00087{font-size:74.666667pt;}
.fs0_c00087{font-size:96.000000pt;}
.fs1_c00087{font-size:106.666667pt;}
.y0_c00087{bottom:0.000000pt;}
.y15_c00087{bottom:59.853333pt;}
.y1b_c00087{bottom:117.186667pt;}
.y1a_c00087{bottom:134.520000pt;}
.y19_c00087{bottom:155.186667pt;}
.y18_c00087{bottom:191.853333pt;}
.y17_c00087{bottom:212.520000pt;}
.y16_c00087{bottom:252.520000pt;}
.y13_c00087{bottom:299.853333pt;}
.y12_c00087{bottom:323.853333pt;}
.y11_c00087{bottom:366.520000pt;}
.y10_c00087{bottom:390.520000pt;}
.yf_c00087{bottom:414.520000pt;}
.ye_c00087{bottom:438.520000pt;}
.yd_c00087{bottom:462.520000pt;}
.yc_c00087{bottom:486.520000pt;}
.yb_c00087{bottom:510.520000pt;}
.ya_c00087{bottom:534.520000pt;}
.y9_c00087{bottom:558.520000pt;}
.y8_c00087{bottom:582.520000pt;}
.y7_c00087{bottom:625.186667pt;}
.y6_c00087{bottom:649.186667pt;}
.y5_c00087{bottom:673.186667pt;}
.y4_c00087{bottom:697.186667pt;}
.y3_c00087{bottom:721.186667pt;}
.y2_c00087{bottom:774.520000pt;}
.y1_c00087{bottom:923.853333pt;}
.y14_c00087{bottom:1061.186667pt;}
.h9_c00087{height:34.375000pt;}
.h8_c00087{height:39.296875pt;}
.h5_c00087{height:45.562500pt;}
.ha_c00087{height:47.708333pt;}
.h7_c00087{height:49.843750pt;}
.h6_c00087{height:50.896067pt;}
.h4_c00087{height:70.729167pt;}
.h3_c00087{height:101.041667pt;}
.h2_c00087{height:1121.333333pt;}
.h0_c00087{height:1122.520000pt;}
.h1_c00087{height:1122.666667pt;}
.w2_c00087{width:793.333333pt;}
.w0_c00087{width:793.720000pt;}
.w1_c00087{width:794.000000pt;}
.x0_c00087{left:0.000000pt;}
.x1_c00087{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_364cbba7e22be953a86f4dee.woff2')format("woff");}.ff1_c00088{font-family:ff1_c00088;line-height:0.934082;font-style:normal;font-weight:normal;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_3d2bc79b16e25dcdfe0a04a7.woff2')format("woff");}.ff2_c00088{font-family:ff2_c00088;line-height:0.956543;font-style:normal;font-weight:normal;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_cf9e26541871b74d67474b44.woff2')format("woff");}.ff3_c00088{font-family:ff3_c00088;line-height:0.904785;font-style:normal;font-weight:normal;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_baf1d8344ac0d8b7b65dff63.woff2')format("woff");}.ff4_c00088{font-family:ff4_c00088;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00088{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00088{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00088{vertical-align:-23.086200px;}
.v3_c00088{vertical-align:-15.400200px;}
.v0_c00088{vertical-align:0.000000px;}
.v1_c00088{vertical-align:23.086200px;}
.ls8_c00088{letter-spacing:-0.014400px;}
.ls9_c00088{letter-spacing:-0.012000px;}
.ls7_c00088{letter-spacing:0.000000px;}
.ls5_c00088{letter-spacing:0.005599px;}
.ls4_c00088{letter-spacing:0.012000px;}
.ls2_c00088{letter-spacing:0.739200px;}
.ls3_c00088{letter-spacing:1.345200px;}
.ls0_c00088{letter-spacing:1.911000px;}
.ls1_c00088{letter-spacing:2.204400px;}
.ls6_c00088{letter-spacing:3.999999px;}
.sc__c00088{text-shadow:none;}
.sc0_c00088{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00088{-webkit-text-stroke:0px transparent;}
.sc0_c00088{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00088{word-spacing:-19.800000px;}
.ws0_c00088{word-spacing:-19.785600px;}
.ws3_c00088{word-spacing:-14.988000px;}
.ws2_c00088{word-spacing:-10.000001px;}
.ws4_c00088{word-spacing:0.000000px;}
._15_c00088{margin-left:-10.584000px;}
._13_c00088{margin-left:-7.192800px;}
._1c_c00088{margin-left:-5.856000px;}
._19_c00088{margin-left:-4.615200px;}
._3_c00088{margin-left:-3.499200px;}
._0_c00088{margin-left:-2.476800px;}
._7_c00088{margin-left:-1.180800px;}
._4_c00088{width:1.180800px;}
._6_c00088{width:2.188800px;}
._5_c00088{width:4.032000px;}
._2_c00088{width:5.486400px;}
._1a_c00088{width:6.832800px;}
._1_c00088{width:7.963200px;}
._1b_c00088{width:9.115200px;}
._17_c00088{width:10.879200px;}
._16_c00088{width:12.715200px;}
._11_c00088{width:13.838400px;}
._f_c00088{width:15.307200px;}
._10_c00088{width:16.452000px;}
._18_c00088{width:17.632800px;}
._12_c00088{width:18.763200px;}
._14_c00088{width:20.901600px;}
._e_c00088{width:22.075200px;}
._d_c00088{width:24.091200px;}
._c_c00088{width:30.412800px;}
._9_c00088{width:31.802400px;}
._b_c00088{width:33.681600px;}
._a_c00088{width:35.899200px;}
._8_c00088{width:39.398400px;}
.fc0_c00088{color:rgb(0,0,0);}
.fs3_c00088{font-size:40.000002px;}
.fs1_c00088{font-size:48.000000px;}
.fs2_c00088{font-size:60.000000px;}
.fs0_c00088{font-size:72.000000px;}
.y0_c00088{bottom:0.000000px;}
.y1a_c00088{bottom:67.335000px;}
.y20_c00088{bottom:131.835000px;}
.y1f_c00088{bottom:155.085000px;}
.y1e_c00088{bottom:200.085000px;}
.y1d_c00088{bottom:241.335000px;}
.y1c_c00088{bottom:264.585000px;}
.y1b_c00088{bottom:309.685050px;}
.y18_c00088{bottom:389.835000px;}
.y17_c00088{bottom:416.835000px;}
.y16_c00088{bottom:443.835000px;}
.y15_c00088{bottom:470.835000px;}
.y14_c00088{bottom:497.835000px;}
.y13_c00088{bottom:524.835000px;}
.y12_c00088{bottom:551.835000px;}
.y11_c00088{bottom:599.835000px;}
.y10_c00088{bottom:626.835000px;}
.yf_c00088{bottom:653.835000px;}
.ye_c00088{bottom:680.835000px;}
.yd_c00088{bottom:707.835000px;}
.yc_c00088{bottom:755.835000px;}
.yb_c00088{bottom:782.835000px;}
.ya_c00088{bottom:809.835000px;}
.y9_c00088{bottom:836.835000px;}
.y8_c00088{bottom:884.835000px;}
.y7_c00088{bottom:911.835000px;}
.y6_c00088{bottom:938.835000px;}
.y5_c00088{bottom:965.835000px;}
.y4_c00088{bottom:1013.835000px;}
.y3_c00088{bottom:1040.835000px;}
.y2_c00088{bottom:1067.835000px;}
.y1_c00088{bottom:1094.835000px;}
.y19_c00088{bottom:1193.835000px;}
.h7_c00088{height:27.480470px;}
.h6_c00088{height:29.414064px;}
.h8_c00088{height:41.220703px;}
.h5_c00088{height:44.121094px;}
.h3_c00088{height:51.257812px;}
.h4_c00088{height:57.258075px;}
.h2_c00088{height:1261.500000px;}
.h0_c00088{height:1262.835000px;}
.h1_c00088{height:1263.000000px;}
.w2_c00088{width:892.500000px;}
.w0_c00088{width:892.935000px;}
.w1_c00088{width:893.250000px;}
.x0_c00088{left:0.000000px;}
.x1_c00088{left:150.519750px;}
.x2_c00088{left:380.516100px;}
.x3_c00088{left:810.770100px;}
@media print{
.v2_c00088{vertical-align:-20.521067pt;}
.v3_c00088{vertical-align:-13.689067pt;}
.v0_c00088{vertical-align:0.000000pt;}
.v1_c00088{vertical-align:20.521067pt;}
.ls8_c00088{letter-spacing:-0.012800pt;}
.ls9_c00088{letter-spacing:-0.010667pt;}
.ls7_c00088{letter-spacing:0.000000pt;}
.ls5_c00088{letter-spacing:0.004977pt;}
.ls4_c00088{letter-spacing:0.010667pt;}
.ls2_c00088{letter-spacing:0.657067pt;}
.ls3_c00088{letter-spacing:1.195733pt;}
.ls0_c00088{letter-spacing:1.698667pt;}
.ls1_c00088{letter-spacing:1.959467pt;}
.ls6_c00088{letter-spacing:3.555555pt;}
.ws1_c00088{word-spacing:-17.600000pt;}
.ws0_c00088{word-spacing:-17.587200pt;}
.ws3_c00088{word-spacing:-13.322667pt;}
.ws2_c00088{word-spacing:-8.888889pt;}
.ws4_c00088{word-spacing:0.000000pt;}
._15_c00088{margin-left:-9.408000pt;}
._13_c00088{margin-left:-6.393600pt;}
._1c_c00088{margin-left:-5.205333pt;}
._19_c00088{margin-left:-4.102400pt;}
._3_c00088{margin-left:-3.110400pt;}
._0_c00088{margin-left:-2.201600pt;}
._7_c00088{margin-left:-1.049600pt;}
._4_c00088{width:1.049600pt;}
._6_c00088{width:1.945600pt;}
._5_c00088{width:3.584000pt;}
._2_c00088{width:4.876800pt;}
._1a_c00088{width:6.073600pt;}
._1_c00088{width:7.078400pt;}
._1b_c00088{width:8.102400pt;}
._17_c00088{width:9.670400pt;}
._16_c00088{width:11.302400pt;}
._11_c00088{width:12.300800pt;}
._f_c00088{width:13.606400pt;}
._10_c00088{width:14.624000pt;}
._18_c00088{width:15.673600pt;}
._12_c00088{width:16.678400pt;}
._14_c00088{width:18.579200pt;}
._e_c00088{width:19.622400pt;}
._d_c00088{width:21.414400pt;}
._c_c00088{width:27.033600pt;}
._9_c00088{width:28.268800pt;}
._b_c00088{width:29.939200pt;}
._a_c00088{width:31.910400pt;}
._8_c00088{width:35.020800pt;}
.fs3_c00088{font-size:35.555557pt;}
.fs1_c00088{font-size:42.666667pt;}
.fs2_c00088{font-size:53.333333pt;}
.fs0_c00088{font-size:64.000000pt;}
.y0_c00088{bottom:0.000000pt;}
.y1a_c00088{bottom:59.853333pt;}
.y20_c00088{bottom:117.186667pt;}
.y1f_c00088{bottom:137.853333pt;}
.y1e_c00088{bottom:177.853333pt;}
.y1d_c00088{bottom:214.520000pt;}
.y1c_c00088{bottom:235.186667pt;}
.y1b_c00088{bottom:275.275600pt;}
.y18_c00088{bottom:346.520000pt;}
.y17_c00088{bottom:370.520000pt;}
.y16_c00088{bottom:394.520000pt;}
.y15_c00088{bottom:418.520000pt;}
.y14_c00088{bottom:442.520000pt;}
.y13_c00088{bottom:466.520000pt;}
.y12_c00088{bottom:490.520000pt;}
.y11_c00088{bottom:533.186667pt;}
.y10_c00088{bottom:557.186667pt;}
.yf_c00088{bottom:581.186667pt;}
.ye_c00088{bottom:605.186667pt;}
.yd_c00088{bottom:629.186667pt;}
.yc_c00088{bottom:671.853333pt;}
.yb_c00088{bottom:695.853333pt;}
.ya_c00088{bottom:719.853333pt;}
.y9_c00088{bottom:743.853333pt;}
.y8_c00088{bottom:786.520000pt;}
.y7_c00088{bottom:810.520000pt;}
.y6_c00088{bottom:834.520000pt;}
.y5_c00088{bottom:858.520000pt;}
.y4_c00088{bottom:901.186667pt;}
.y3_c00088{bottom:925.186667pt;}
.y2_c00088{bottom:949.186667pt;}
.y1_c00088{bottom:973.186667pt;}
.y19_c00088{bottom:1061.186667pt;}
.h7_c00088{height:24.427085pt;}
.h6_c00088{height:26.145835pt;}
.h8_c00088{height:36.640625pt;}
.h5_c00088{height:39.218750pt;}
.h3_c00088{height:45.562500pt;}
.h4_c00088{height:50.896067pt;}
.h2_c00088{height:1121.333333pt;}
.h0_c00088{height:1122.520000pt;}
.h1_c00088{height:1122.666667pt;}
.w2_c00088{width:793.333333pt;}
.w0_c00088{width:793.720000pt;}
.w1_c00088{width:794.000000pt;}
.x0_c00088{left:0.000000pt;}
.x1_c00088{left:133.795333pt;}
.x2_c00088{left:338.236533pt;}
.x3_c00088{left:720.684533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_28ffa66cb3064221b56fe1f1.woff2')format("woff");}.ff1_c00089{font-family:ff1_c00089;line-height:0.934082;font-style:normal;font-weight:normal;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_e2342d96690e6d7b5996e434.woff2')format("woff");}.ff2_c00089{font-family:ff2_c00089;line-height:1.167480;font-style:normal;font-weight:normal;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_67f0be3d883ea27c9611c8a9.woff2')format("woff");}.ff3_c00089{font-family:ff3_c00089;line-height:0.932129;font-style:normal;font-weight:normal;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_4445edfbb4285dbd58f0db5d.woff2')format("woff");}.ff4_c00089{font-family:ff4_c00089;line-height:0.756836;font-style:normal;font-weight:normal;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_39ad18c6bf250cec0cb070a5.woff2')format("woff");}.ff5_c00089{font-family:ff5_c00089;line-height:1.155762;font-style:normal;font-weight: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_c67761b539493169ae3c3bb5.woff2')format("woff");}.ff6_c00089{font-family:ff6_c00089;line-height:0.903320;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00089;src:url('chunks/assets/font_f8c6e067bda35bf18e15b0df.woff2')format("woff");}.ff7_c00089{font-family:ff7_c00089;line-height:0.891113;font-style: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);}
.v2_c00089{vertical-align:-15.000000px;}
.v0_c00089{vertical-align:0.000000px;}
.v1_c00089{vertical-align:23.086200px;}
.ls6_c00089{letter-spacing:-0.014400px;}
.ls5_c00089{letter-spacing:0.000000px;}
.ls1_c00089{letter-spacing:0.005280px;}
.ls2_c00089{letter-spacing:0.008400px;}
.ls7_c00089{letter-spacing:0.012000px;}
.ls4_c00089{letter-spacing:0.014400px;}
.ls0_c00089{letter-spacing:0.259200px;}
.ls3_c00089{letter-spacing:0.329340px;}
.sc__c00089{text-shadow:none;}
.sc0_c00089{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00089{-webkit-text-stroke:0px transparent;}
.sc0_c00089{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00089{word-spacing:-24.284400px;}
.ws2_c00089{word-spacing:-19.814400px;}
.ws1_c00089{word-spacing:-19.800000px;}
.ws3_c00089{word-spacing:-10.000001px;}
.ws4_c00089{word-spacing:0.000000px;}
._14_c00089{margin-left:-10.022400px;}
._15_c00089{margin-left:-8.517600px;}
._7_c00089{margin-left:-4.032000px;}
._16_c00089{margin-left:-2.887200px;}
._5_c00089{margin-left:-1.857600px;}
._3_c00089{width:1.281600px;}
._1_c00089{width:2.808000px;}
._c_c00089{width:4.824000px;}
._11_c00089{width:6.696000px;}
._12_c00089{width:8.683200px;}
._13_c00089{width:10.447200px;}
._2_c00089{width:11.606400px;}
._4_c00089{width:13.046400px;}
._0_c00089{width:14.320800px;}
._6_c00089{width:16.185600px;}
._17_c00089{width:18.432000px;}
._10_c00089{width:20.973600px;}
._f_c00089{width:22.233600px;}
._1b_c00089{width:23.589960px;}
._1a_c00089{width:25.920000px;}
._d_c00089{width:30.888000px;}
._a_c00089{width:32.832000px;}
._e_c00089{width:34.358400px;}
._9_c00089{width:35.568000px;}
._b_c00089{width:37.425600px;}
._8_c00089{width:39.672000px;}
._19_c00089{width:40.680000px;}
._18_c00089{width:41.824800px;}
.fc0_c00089{color:rgb(0,0,0);}
.fs5_c00089{font-size:40.000002px;}
.fs3_c00089{font-size:48.000000px;}
.fs4_c00089{font-size:60.000000px;}
.fs0_c00089{font-size:72.000000px;}
.fs2_c00089{font-size:78.000000px;}
.fs1_c00089{font-size:84.000000px;}
.y0_c00089{bottom:0.000000px;}
.y1c_c00089{bottom:67.335000px;}
.y1d_c00089{bottom:135.585000px;}
.y1a_c00089{bottom:238.335000px;}
.y19_c00089{bottom:265.335000px;}
.y18_c00089{bottom:292.335000px;}
.y17_c00089{bottom:319.335000px;}
.y16_c00089{bottom:346.335000px;}
.y15_c00089{bottom:394.335000px;}
.y14_c00089{bottom:421.335000px;}
.y13_c00089{bottom:448.335000px;}
.y12_c00089{bottom:494.835000px;}
.y11_c00089{bottom:565.335000px;}
.y10_c00089{bottom:592.335000px;}
.yf_c00089{bottom:640.335000px;}
.ye_c00089{bottom:667.335000px;}
.yd_c00089{bottom:694.335000px;}
.yc_c00089{bottom:721.335000px;}
.yb_c00089{bottom:748.335000px;}
.ya_c00089{bottom:775.335000px;}
.y9_c00089{bottom:802.335000px;}
.y8_c00089{bottom:862.335000px;}
.y7_c00089{bottom:911.835000px;}
.y6_c00089{bottom:938.835000px;}
.y5_c00089{bottom:965.835000px;}
.y4_c00089{bottom:1013.835000px;}
.y3_c00089{bottom:1040.835000px;}
.y2_c00089{bottom:1067.835000px;}
.y1_c00089{bottom:1094.835000px;}
.y1b_c00089{bottom:1193.835000px;}
.h9_c00089{height:27.421876px;}
.h8_c00089{height:44.208984px;}
.h3_c00089{height:51.257812px;}
.h7_c00089{height:56.074219px;}
.h6_c00089{height:57.258075px;}
.h5_c00089{height:73.886719px;}
.h4_c00089{height:79.570312px;}
.h2_c00089{height:1261.500000px;}
.h0_c00089{height:1262.835000px;}
.h1_c00089{height:1263.000000px;}
.w2_c00089{width:892.500000px;}
.w0_c00089{width:892.935000px;}
.w1_c00089{width:893.250000px;}
.x0_c00089{left:0.000000px;}
.x1_c00089{left:65.480310px;}
@media print{
.v2_c00089{vertical-align:-13.333333pt;}
.v0_c00089{vertical-align:0.000000pt;}
.v1_c00089{vertical-align:20.521067pt;}
.ls6_c00089{letter-spacing:-0.012800pt;}
.ls5_c00089{letter-spacing:0.000000pt;}
.ls1_c00089{letter-spacing:0.004693pt;}
.ls2_c00089{letter-spacing:0.007467pt;}
.ls7_c00089{letter-spacing:0.010667pt;}
.ls4_c00089{letter-spacing:0.012800pt;}
.ls0_c00089{letter-spacing:0.230400pt;}
.ls3_c00089{letter-spacing:0.292747pt;}
.ws0_c00089{word-spacing:-21.586133pt;}
.ws2_c00089{word-spacing:-17.612800pt;}
.ws1_c00089{word-spacing:-17.600000pt;}
.ws3_c00089{word-spacing:-8.888889pt;}
.ws4_c00089{word-spacing:0.000000pt;}
._14_c00089{margin-left:-8.908800pt;}
._15_c00089{margin-left:-7.571200pt;}
._7_c00089{margin-left:-3.584000pt;}
._16_c00089{margin-left:-2.566400pt;}
._5_c00089{margin-left:-1.651200pt;}
._3_c00089{width:1.139200pt;}
._1_c00089{width:2.496000pt;}
._c_c00089{width:4.288000pt;}
._11_c00089{width:5.952000pt;}
._12_c00089{width:7.718400pt;}
._13_c00089{width:9.286400pt;}
._2_c00089{width:10.316800pt;}
._4_c00089{width:11.596800pt;}
._0_c00089{width:12.729600pt;}
._6_c00089{width:14.387200pt;}
._17_c00089{width:16.384000pt;}
._10_c00089{width:18.643200pt;}
._f_c00089{width:19.763200pt;}
._1b_c00089{width:20.968853pt;}
._1a_c00089{width:23.040000pt;}
._d_c00089{width:27.456000pt;}
._a_c00089{width:29.184000pt;}
._e_c00089{width:30.540800pt;}
._9_c00089{width:31.616000pt;}
._b_c00089{width:33.267200pt;}
._8_c00089{width:35.264000pt;}
._19_c00089{width:36.160000pt;}
._18_c00089{width:37.177600pt;}
.fs5_c00089{font-size:35.555557pt;}
.fs3_c00089{font-size:42.666667pt;}
.fs4_c00089{font-size:53.333333pt;}
.fs0_c00089{font-size:64.000000pt;}
.fs2_c00089{font-size:69.333333pt;}
.fs1_c00089{font-size:74.666667pt;}
.y0_c00089{bottom:0.000000pt;}
.y1c_c00089{bottom:59.853333pt;}
.y1d_c00089{bottom:120.520000pt;}
.y1a_c00089{bottom:211.853333pt;}
.y19_c00089{bottom:235.853333pt;}
.y18_c00089{bottom:259.853333pt;}
.y17_c00089{bottom:283.853333pt;}
.y16_c00089{bottom:307.853333pt;}
.y15_c00089{bottom:350.520000pt;}
.y14_c00089{bottom:374.520000pt;}
.y13_c00089{bottom:398.520000pt;}
.y12_c00089{bottom:439.853333pt;}
.y11_c00089{bottom:502.520000pt;}
.y10_c00089{bottom:526.520000pt;}
.yf_c00089{bottom:569.186667pt;}
.ye_c00089{bottom:593.186667pt;}
.yd_c00089{bottom:617.186667pt;}
.yc_c00089{bottom:641.186667pt;}
.yb_c00089{bottom:665.186667pt;}
.ya_c00089{bottom:689.186667pt;}
.y9_c00089{bottom:713.186667pt;}
.y8_c00089{bottom:766.520000pt;}
.y7_c00089{bottom:810.520000pt;}
.y6_c00089{bottom:834.520000pt;}
.y5_c00089{bottom:858.520000pt;}
.y4_c00089{bottom:901.186667pt;}
.y3_c00089{bottom:925.186667pt;}
.y2_c00089{bottom:949.186667pt;}
.y1_c00089{bottom:973.186667pt;}
.y1b_c00089{bottom:1061.186667pt;}
.h9_c00089{height:24.375001pt;}
.h8_c00089{height:39.296875pt;}
.h3_c00089{height:45.562500pt;}
.h7_c00089{height:49.843750pt;}
.h6_c00089{height:50.896067pt;}
.h5_c00089{height:65.677083pt;}
.h4_c00089{height:70.729167pt;}
.h2_c00089{height:1121.333333pt;}
.h0_c00089{height:1122.520000pt;}
.h1_c00089{height:1122.666667pt;}
.w2_c00089{width:793.333333pt;}
.w0_c00089{width:793.720000pt;}
.w1_c00089{width:794.000000pt;}
.x0_c00089{left:0.000000pt;}
.x1_c00089{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6353289dca1279666b6be452.woff2')format("woff");}.ff1_c00090{font-family:ff1_c00090;line-height:0.934082;font-style:normal;font-weight:normal;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_83ac38e7eb09878eb80d099d.woff2')format("woff");}.ff2_c00090{font-family:ff2_c00090;line-height:0.987793;font-style:normal;font-weight:normal;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_f22c4949f409b3ef1e9dc88a.woff2')format("woff");}.ff3_c00090{font-family:ff3_c00090;line-height:0.888672;font-style:normal;font-weight:normal;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_90f8d90a08fbfa2a60ac1bd6.woff2')format("woff");}.ff4_c00090{font-family:ff4_c00090;line-height:0.936035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00090;src:url('chunks/assets/font_0df0a451b6ff449969476e46.woff2')format("woff");}.ff5_c00090{font-family:ff5_c00090;line-height:0.956543;font-style:normal;font-weight: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_c00090;src:url('chunks/assets/font_8acbb3d9881d6f2eeacb6831.woff2')format("woff");}.ff6_c00090{font-family:ff6_c00090;line-height:0.904785;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00090;src:url('chunks/assets/font_c5f1ee13d96508e4248d5d79.woff2')format("woff");}.ff7_c00090{font-family:ff7_c00090;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00090{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00090{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00090{vertical-align:-23.086200px;}
.v3_c00090{vertical-align:-15.400200px;}
.v0_c00090{vertical-align:0.000000px;}
.v1_c00090{vertical-align:23.086200px;}
.ls5_c00090{letter-spacing:-0.014400px;}
.ls6_c00090{letter-spacing:-0.009600px;}
.ls4_c00090{letter-spacing:0.000000px;}
.ls2_c00090{letter-spacing:0.005599px;}
.ls7_c00090{letter-spacing:0.008000px;}
.ls1_c00090{letter-spacing:0.012000px;}
.ls0_c00090{letter-spacing:0.014400px;}
.ls3_c00090{letter-spacing:4.714800px;}
.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:-19.814400px;}
.ws0_c00090{word-spacing:-13.200000px;}
.ws2_c00090{word-spacing:-13.190400px;}
.ws3_c00090{word-spacing:-11.128001px;}
.ws4_c00090{word-spacing:0.000000px;}
._8_c00090{margin-left:-9.741600px;}
._9_c00090{margin-left:-7.264800px;}
._16_c00090{margin-left:-5.653202px;}
._2_c00090{margin-left:-4.118400px;}
._b_c00090{margin-left:-2.721600px;}
._0_c00090{margin-left:-1.677600px;}
._5_c00090{width:1.540800px;}
._7_c00090{width:3.427200px;}
._a_c00090{width:4.449600px;}
._6_c00090{width:5.479200px;}
._4_c00090{width:7.077600px;}
._1_c00090{width:8.726400px;}
._c_c00090{width:9.950400px;}
._3_c00090{width:11.181600px;}
._d_c00090{width:12.549600px;}
._18_c00090{width:16.087800px;}
._f_c00090{width:18.282000px;}
._17_c00090{width:19.289402px;}
._10_c00090{width:21.362400px;}
._11_c00090{width:22.693800px;}
._e_c00090{width:25.069800px;}
._12_c00090{width:26.287200px;}
._15_c00090{width:27.871200px;}
._13_c00090{width:30.571200px;}
._14_c00090{width:31.960800px;}
.fc0_c00090{color:rgb(0,0,0);}
.fs5_c00090{font-size:40.000002px;}
.fs1_c00090{font-size:48.000000px;}
.fs2_c00090{font-size:54.000000px;}
.fs4_c00090{font-size:60.000000px;}
.fs0_c00090{font-size:72.000000px;}
.fs3_c00090{font-size:78.000000px;}
.y0_c00090{bottom:0.000000px;}
.y5_c00090{bottom:10.500000px;}
.y4_c00090{bottom:39.000000px;}
.yf_c00090{bottom:67.335000px;}
.y12_c00090{bottom:131.835000px;}
.y11_c00090{bottom:155.185050px;}
.y10_c00090{bottom:200.185050px;}
.yd_c00090{bottom:304.335000px;}
.yc_c00090{bottom:331.335000px;}
.yb_c00090{bottom:358.335000px;}
.ya_c00090{bottom:385.335000px;}
.y9_c00090{bottom:431.835000px;}
.y8_c00090{bottom:502.335000px;}
.y7_c00090{bottom:529.335000px;}
.y6_c00090{bottom:556.335000px;}
.y3_c00090{bottom:601.335000px;}
.y2_c00090{bottom:1067.835000px;}
.y1_c00090{bottom:1094.835000px;}
.ye_c00090{bottom:1193.835000px;}
.h9_c00090{height:29.414064px;}
.ha_c00090{height:41.220703px;}
.h6_c00090{height:42.292969px;}
.h8_c00090{height:44.121094px;}
.h3_c00090{height:51.257812px;}
.h7_c00090{height:55.833984px;}
.h4_c00090{height:57.258075px;}
.h5_c00090{height:435.000000px;}
.h2_c00090{height:1261.500000px;}
.h0_c00090{height:1262.835000px;}
.h1_c00090{height:1263.000000px;}
.w3_c00090{width:676.934850px;}
.w2_c00090{width:892.500000px;}
.w0_c00090{width:892.935000px;}
.w1_c00090{width:893.250000px;}
.x0_c00090{left:0.000000px;}
.x2_c00090{left:32.486130px;}
.x1_c00090{left:150.519750px;}
.x3_c00090{left:186.460650px;}
.x4_c00090{left:380.516100px;}
.x5_c00090{left:810.770100px;}
@media print{
.v2_c00090{vertical-align:-20.521067pt;}
.v3_c00090{vertical-align:-13.689067pt;}
.v0_c00090{vertical-align:0.000000pt;}
.v1_c00090{vertical-align:20.521067pt;}
.ls5_c00090{letter-spacing:-0.012800pt;}
.ls6_c00090{letter-spacing:-0.008533pt;}
.ls4_c00090{letter-spacing:0.000000pt;}
.ls2_c00090{letter-spacing:0.004977pt;}
.ls7_c00090{letter-spacing:0.007111pt;}
.ls1_c00090{letter-spacing:0.010667pt;}
.ls0_c00090{letter-spacing:0.012800pt;}
.ls3_c00090{letter-spacing:4.190933pt;}
.ws1_c00090{word-spacing:-17.612800pt;}
.ws0_c00090{word-spacing:-11.733333pt;}
.ws2_c00090{word-spacing:-11.724800pt;}
.ws3_c00090{word-spacing:-9.891556pt;}
.ws4_c00090{word-spacing:0.000000pt;}
._8_c00090{margin-left:-8.659200pt;}
._9_c00090{margin-left:-6.457600pt;}
._16_c00090{margin-left:-5.025069pt;}
._2_c00090{margin-left:-3.660800pt;}
._b_c00090{margin-left:-2.419200pt;}
._0_c00090{margin-left:-1.491200pt;}
._5_c00090{width:1.369600pt;}
._7_c00090{width:3.046400pt;}
._a_c00090{width:3.955200pt;}
._6_c00090{width:4.870400pt;}
._4_c00090{width:6.291200pt;}
._1_c00090{width:7.756800pt;}
._c_c00090{width:8.844800pt;}
._3_c00090{width:9.939200pt;}
._d_c00090{width:11.155200pt;}
._18_c00090{width:14.300267pt;}
._f_c00090{width:16.250667pt;}
._17_c00090{width:17.146135pt;}
._10_c00090{width:18.988800pt;}
._11_c00090{width:20.172267pt;}
._e_c00090{width:22.284267pt;}
._12_c00090{width:23.366400pt;}
._15_c00090{width:24.774400pt;}
._13_c00090{width:27.174400pt;}
._14_c00090{width:28.409600pt;}
.fs5_c00090{font-size:35.555557pt;}
.fs1_c00090{font-size:42.666667pt;}
.fs2_c00090{font-size:48.000000pt;}
.fs4_c00090{font-size:53.333333pt;}
.fs0_c00090{font-size:64.000000pt;}
.fs3_c00090{font-size:69.333333pt;}
.y0_c00090{bottom:0.000000pt;}
.y5_c00090{bottom:9.333333pt;}
.y4_c00090{bottom:34.666667pt;}
.yf_c00090{bottom:59.853333pt;}
.y12_c00090{bottom:117.186667pt;}
.y11_c00090{bottom:137.942267pt;}
.y10_c00090{bottom:177.942267pt;}
.yd_c00090{bottom:270.520000pt;}
.yc_c00090{bottom:294.520000pt;}
.yb_c00090{bottom:318.520000pt;}
.ya_c00090{bottom:342.520000pt;}
.y9_c00090{bottom:383.853333pt;}
.y8_c00090{bottom:446.520000pt;}
.y7_c00090{bottom:470.520000pt;}
.y6_c00090{bottom:494.520000pt;}
.y3_c00090{bottom:534.520000pt;}
.y2_c00090{bottom:949.186667pt;}
.y1_c00090{bottom:973.186667pt;}
.ye_c00090{bottom:1061.186667pt;}
.h9_c00090{height:26.145835pt;}
.ha_c00090{height:36.640625pt;}
.h6_c00090{height:37.593750pt;}
.h8_c00090{height:39.218750pt;}
.h3_c00090{height:45.562500pt;}
.h7_c00090{height:49.630208pt;}
.h4_c00090{height:50.896067pt;}
.h5_c00090{height:386.666667pt;}
.h2_c00090{height:1121.333333pt;}
.h0_c00090{height:1122.520000pt;}
.h1_c00090{height:1122.666667pt;}
.w3_c00090{width:601.719867pt;}
.w2_c00090{width:793.333333pt;}
.w0_c00090{width:793.720000pt;}
.w1_c00090{width:794.000000pt;}
.x0_c00090{left:0.000000pt;}
.x2_c00090{left:28.876560pt;}
.x1_c00090{left:133.795333pt;}
.x3_c00090{left:165.742800pt;}
.x4_c00090{left:338.236533pt;}
.x5_c00090{left:720.684533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8f851dd251993496388915ec.woff2')format("woff");}.ff1_c00091{font-family:ff1_c00091;line-height:0.934082;font-style:normal;font-weight:normal;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_4a972985c89be93f3155876e.woff2')format("woff");}.ff2_c00091{font-family:ff2_c00091;line-height:0.756836;font-style:normal;font-weight:normal;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_a197fa038c2e0e94c48be539.woff2')format("woff");}.ff3_c00091{font-family:ff3_c00091;line-height:1.155762;font-style:normal;font-weight:normal;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_0b8b3e550586690f9b6060ff.woff2')format("woff");}.ff4_c00091{font-family:ff4_c00091;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00091;src:url('chunks/assets/font_2de1a20bed8ebf4801c0d2ea.woff2')format("woff");}.ff5_c00091{font-family:ff5_c00091;line-height:0.891113;font-style: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);}
.v2_c00091{vertical-align:-23.086200px;}
.v3_c00091{vertical-align:-15.000000px;}
.v0_c00091{vertical-align:0.000000px;}
.v1_c00091{vertical-align:23.086200px;}
.ls2_c00091{letter-spacing:-0.014400px;}
.ls1_c00091{letter-spacing:-0.009600px;}
.ls0_c00091{letter-spacing:0.000000px;}
.ls3_c00091{letter-spacing:0.012000px;}
.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;}
}
.ws2_c00091{word-spacing:-15.000000px;}
.ws0_c00091{word-spacing:-13.190400px;}
.ws1_c00091{word-spacing:-10.000001px;}
.ws3_c00091{word-spacing:0.000000px;}
._7_c00091{margin-left:-6.170400px;}
._e_c00091{margin-left:-4.276800px;}
._8_c00091{margin-left:-2.887200px;}
._0_c00091{margin-left:-1.814400px;}
._5_c00091{width:1.828800px;}
._11_c00091{width:3.160800px;}
._3_c00091{width:4.168800px;}
._12_c00091{width:5.716800px;}
._10_c00091{width:6.912000px;}
._1a_c00091{width:8.164800px;}
._4_c00091{width:9.540000px;}
._19_c00091{width:10.684800px;}
._6_c00091{width:11.685600px;}
._2_c00091{width:13.694400px;}
._1_c00091{width:15.544800px;}
._f_c00091{width:17.431200px;}
._13_c00091{width:18.777600px;}
._1b_c00091{width:19.995600px;}
._15_c00091{width:21.643200px;}
._14_c00091{width:23.277600px;}
._18_c00091{width:24.307200px;}
._a_c00091{width:25.516800px;}
._16_c00091{width:26.632800px;}
._d_c00091{width:27.748800px;}
._b_c00091{width:29.592000px;}
._c_c00091{width:31.464000px;}
._9_c00091{width:32.486400px;}
._17_c00091{width:33.552000px;}
.fc0_c00091{color:rgb(0,0,0);}
.fs3_c00091{font-size:40.000002px;}
.fs1_c00091{font-size:48.000000px;}
.fs2_c00091{font-size:60.000000px;}
.fs0_c00091{font-size:72.000000px;}
.y0_c00091{bottom:0.000000px;}
.y18_c00091{bottom:67.335000px;}
.y20_c00091{bottom:131.835000px;}
.y1f_c00091{bottom:151.335000px;}
.y1e_c00091{bottom:174.585000px;}
.y1d_c00091{bottom:219.585000px;}
.y1c_c00091{bottom:264.585000px;}
.y1b_c00091{bottom:309.585000px;}
.y1a_c00091{bottom:350.835000px;}
.y19_c00091{bottom:374.085000px;}
.y16_c00091{bottom:422.835000px;}
.y15_c00091{bottom:449.835000px;}
.y14_c00091{bottom:497.835000px;}
.y13_c00091{bottom:524.835000px;}
.y12_c00091{bottom:551.835000px;}
.y11_c00091{bottom:599.835000px;}
.y10_c00091{bottom:626.835000px;}
.yf_c00091{bottom:653.835000px;}
.ye_c00091{bottom:680.835000px;}
.yd_c00091{bottom:707.835000px;}
.yc_c00091{bottom:734.835000px;}
.yb_c00091{bottom:761.835000px;}
.ya_c00091{bottom:788.835000px;}
.y9_c00091{bottom:815.835000px;}
.y8_c00091{bottom:863.835000px;}
.y7_c00091{bottom:890.835000px;}
.y6_c00091{bottom:917.835000px;}
.y5_c00091{bottom:965.835000px;}
.y4_c00091{bottom:992.835000px;}
.y3_c00091{bottom:1019.835000px;}
.y2_c00091{bottom:1067.835000px;}
.y1_c00091{bottom:1094.835000px;}
.y17_c00091{bottom:1193.835000px;}
.h7_c00091{height:38.671875px;}
.h6_c00091{height:44.208984px;}
.h3_c00091{height:51.257812px;}
.h8_c00091{height:53.671875px;}
.h5_c00091{height:56.074219px;}
.h4_c00091{height:57.258075px;}
.h2_c00091{height:1261.500000px;}
.h0_c00091{height:1262.835000px;}
.h1_c00091{height:1263.000000px;}
.w2_c00091{width:892.500000px;}
.w0_c00091{width:892.935000px;}
.w1_c00091{width:893.250000px;}
.x0_c00091{left:0.000000px;}
.x1_c00091{left:65.480310px;}
@media print{
.v2_c00091{vertical-align:-20.521067pt;}
.v3_c00091{vertical-align:-13.333333pt;}
.v0_c00091{vertical-align:0.000000pt;}
.v1_c00091{vertical-align:20.521067pt;}
.ls2_c00091{letter-spacing:-0.012800pt;}
.ls1_c00091{letter-spacing:-0.008533pt;}
.ls0_c00091{letter-spacing:0.000000pt;}
.ls3_c00091{letter-spacing:0.010667pt;}
.ws2_c00091{word-spacing:-13.333333pt;}
.ws0_c00091{word-spacing:-11.724800pt;}
.ws1_c00091{word-spacing:-8.888889pt;}
.ws3_c00091{word-spacing:0.000000pt;}
._7_c00091{margin-left:-5.484800pt;}
._e_c00091{margin-left:-3.801600pt;}
._8_c00091{margin-left:-2.566400pt;}
._0_c00091{margin-left:-1.612800pt;}
._5_c00091{width:1.625600pt;}
._11_c00091{width:2.809600pt;}
._3_c00091{width:3.705600pt;}
._12_c00091{width:5.081600pt;}
._10_c00091{width:6.144000pt;}
._1a_c00091{width:7.257600pt;}
._4_c00091{width:8.480000pt;}
._19_c00091{width:9.497600pt;}
._6_c00091{width:10.387200pt;}
._2_c00091{width:12.172800pt;}
._1_c00091{width:13.817600pt;}
._f_c00091{width:15.494400pt;}
._13_c00091{width:16.691200pt;}
._1b_c00091{width:17.773867pt;}
._15_c00091{width:19.238400pt;}
._14_c00091{width:20.691200pt;}
._18_c00091{width:21.606400pt;}
._a_c00091{width:22.681600pt;}
._16_c00091{width:23.673600pt;}
._d_c00091{width:24.665600pt;}
._b_c00091{width:26.304000pt;}
._c_c00091{width:27.968000pt;}
._9_c00091{width:28.876800pt;}
._17_c00091{width:29.824000pt;}
.fs3_c00091{font-size:35.555557pt;}
.fs1_c00091{font-size:42.666667pt;}
.fs2_c00091{font-size:53.333333pt;}
.fs0_c00091{font-size:64.000000pt;}
.y0_c00091{bottom:0.000000pt;}
.y18_c00091{bottom:59.853333pt;}
.y20_c00091{bottom:117.186667pt;}
.y1f_c00091{bottom:134.520000pt;}
.y1e_c00091{bottom:155.186667pt;}
.y1d_c00091{bottom:195.186667pt;}
.y1c_c00091{bottom:235.186667pt;}
.y1b_c00091{bottom:275.186667pt;}
.y1a_c00091{bottom:311.853333pt;}
.y19_c00091{bottom:332.520000pt;}
.y16_c00091{bottom:375.853333pt;}
.y15_c00091{bottom:399.853333pt;}
.y14_c00091{bottom:442.520000pt;}
.y13_c00091{bottom:466.520000pt;}
.y12_c00091{bottom:490.520000pt;}
.y11_c00091{bottom:533.186667pt;}
.y10_c00091{bottom:557.186667pt;}
.yf_c00091{bottom:581.186667pt;}
.ye_c00091{bottom:605.186667pt;}
.yd_c00091{bottom:629.186667pt;}
.yc_c00091{bottom:653.186667pt;}
.yb_c00091{bottom:677.186667pt;}
.ya_c00091{bottom:701.186667pt;}
.y9_c00091{bottom:725.186667pt;}
.y8_c00091{bottom:767.853333pt;}
.y7_c00091{bottom:791.853333pt;}
.y6_c00091{bottom:815.853333pt;}
.y5_c00091{bottom:858.520000pt;}
.y4_c00091{bottom:882.520000pt;}
.y3_c00091{bottom:906.520000pt;}
.y2_c00091{bottom:949.186667pt;}
.y1_c00091{bottom:973.186667pt;}
.y17_c00091{bottom:1061.186667pt;}
.h7_c00091{height:34.375000pt;}
.h6_c00091{height:39.296875pt;}
.h3_c00091{height:45.562500pt;}
.h8_c00091{height:47.708333pt;}
.h5_c00091{height:49.843750pt;}
.h4_c00091{height:50.896067pt;}
.h2_c00091{height:1121.333333pt;}
.h0_c00091{height:1122.520000pt;}
.h1_c00091{height:1122.666667pt;}
.w2_c00091{width:793.333333pt;}
.w0_c00091{width:793.720000pt;}
.w1_c00091{width:794.000000pt;}
.x0_c00091{left:0.000000pt;}
.x1_c00091{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a9e0c61853401e39493a3ef5.woff2')format("woff");}.ff1_c00092{font-family:ff1_c00092;line-height:1.163086;font-style:normal;font-weight:normal;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_a90cc4b871f6ff6c2f80612d.woff2')format("woff");}.ff2_c00092{font-family:ff2_c00092;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00092;src:url('chunks/assets/font_989644bb05f16896467f0213.woff2')format("woff");}.ff3_c00092{font-family:ff3_c00092;line-height:0.915527;font-style:normal;font-weight:normal;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_7ec714f2aef93f4e08ca8814.woff2')format("woff");}.ff4_c00092{font-family:ff4_c00092;line-height:0.956543;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00092;src:url('chunks/assets/font_450b61aef5dc1e680e28b8d6.woff2')format("woff");}.ff5_c00092{font-family:ff5_c00092;line-height:1.112305;font-style:normal;font-weight: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_c00092;src:url('chunks/assets/font_e097192bd176efc869ce5632.woff2')format("woff");}.ff6_c00092{font-family:ff6_c00092;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00092{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00092{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00092{vertical-align:-23.086200px;}
.v3_c00092{vertical-align:-15.000000px;}
.v0_c00092{vertical-align:0.000000px;}
.v1_c00092{vertical-align:23.086200px;}
.ls4_c00092{letter-spacing:-4.440000px;}
.ls2_c00092{letter-spacing:-0.009600px;}
.ls3_c00092{letter-spacing:-0.007200px;}
.ls1_c00092{letter-spacing:0.000000px;}
.ls0_c00092{letter-spacing:0.012000px;}
.sc__c00092{text-shadow:none;}
.sc0_c00092{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00092{-webkit-text-stroke:0px transparent;}
.sc0_c00092{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00092{word-spacing:-13.190400px;}
.ws1_c00092{word-spacing:-10.000001px;}
.ws2_c00092{word-spacing:0.000000px;}
._1b_c00092{margin-left:-9.764400px;}
._1c_c00092{margin-left:-6.988002px;}
._b_c00092{margin-left:-4.053600px;}
._0_c00092{margin-left:-2.491200px;}
._8_c00092{margin-left:-1.476000px;}
._4_c00092{width:1.108800px;}
._7_c00092{width:2.275200px;}
._a_c00092{width:3.823800px;}
._1_c00092{width:5.090400px;}
._1a_c00092{width:6.384600px;}
._13_c00092{width:7.919400px;}
._12_c00092{width:9.504000px;}
._10_c00092{width:11.023200px;}
._c_c00092{width:12.023400px;}
._11_c00092{width:13.048200px;}
._2_c00092{width:14.148000px;}
._9_c00092{width:15.710400px;}
._5_c00092{width:17.136000px;}
._3_c00092{width:18.295200px;}
._6_c00092{width:20.851200px;}
._f_c00092{width:22.082400px;}
._d_c00092{width:23.270400px;}
._19_c00092{width:24.669000px;}
._e_c00092{width:25.970400px;}
._15_c00092{width:28.108200px;}
._17_c00092{width:29.858400px;}
._14_c00092{width:31.917600px;}
._16_c00092{width:34.387200px;}
._18_c00092{width:35.740800px;}
.fc0_c00092{color:rgb(0,0,0);}
.fs4_c00092{font-size:40.000002px;}
.fs1_c00092{font-size:48.000000px;}
.fs2_c00092{font-size:54.000000px;}
.fs3_c00092{font-size:60.000000px;}
.fs0_c00092{font-size:72.000000px;}
.y0_c00092{bottom:0.000000px;}
.ya_c00092{bottom:12.000000px;}
.y16_c00092{bottom:67.335000px;}
.y1b_c00092{bottom:135.585000px;}
.y1a_c00092{bottom:180.585000px;}
.y19_c00092{bottom:225.585000px;}
.y18_c00092{bottom:266.835000px;}
.y17_c00092{bottom:290.085000px;}
.y14_c00092{bottom:338.835000px;}
.y13_c00092{bottom:365.835000px;}
.y12_c00092{bottom:413.835000px;}
.y11_c00092{bottom:440.835000px;}
.y10_c00092{bottom:467.835000px;}
.yf_c00092{bottom:494.835000px;}
.ye_c00092{bottom:521.835000px;}
.yd_c00092{bottom:548.835000px;}
.yc_c00092{bottom:575.835000px;}
.yb_c00092{bottom:602.835000px;}
.y9_c00092{bottom:643.335000px;}
.y8_c00092{bottom:905.835000px;}
.y7_c00092{bottom:932.835000px;}
.y6_c00092{bottom:959.835000px;}
.y5_c00092{bottom:986.835000px;}
.y4_c00092{bottom:1013.835000px;}
.y3_c00092{bottom:1040.835000px;}
.y2_c00092{bottom:1067.835000px;}
.y1_c00092{bottom:1094.835000px;}
.y15_c00092{bottom:1193.835000px;}
.h8_c00092{height:38.671875px;}
.h6_c00092{height:41.633789px;}
.h7_c00092{height:44.121094px;}
.h9_c00092{height:53.671875px;}
.h3_c00092{height:67.746094px;}
.h4_c00092{height:68.250262px;}
.h5_c00092{height:231.000000px;}
.h2_c00092{height:1261.500000px;}
.h0_c00092{height:1262.835000px;}
.h1_c00092{height:1263.000000px;}
.w3_c00092{width:676.934850px;}
.w2_c00092{width:892.500000px;}
.w0_c00092{width:892.935000px;}
.w1_c00092{width:893.250000px;}
.x0_c00092{left:0.000000px;}
.x1_c00092{left:150.519750px;}
.x2_c00092{left:202.491900px;}
.x3_c00092{left:380.516100px;}
.x4_c00092{left:810.770100px;}
@media print{
.v2_c00092{vertical-align:-20.521067pt;}
.v3_c00092{vertical-align:-13.333333pt;}
.v0_c00092{vertical-align:0.000000pt;}
.v1_c00092{vertical-align:20.521067pt;}
.ls4_c00092{letter-spacing:-3.946667pt;}
.ls2_c00092{letter-spacing:-0.008533pt;}
.ls3_c00092{letter-spacing:-0.006400pt;}
.ls1_c00092{letter-spacing:0.000000pt;}
.ls0_c00092{letter-spacing:0.010667pt;}
.ws0_c00092{word-spacing:-11.724800pt;}
.ws1_c00092{word-spacing:-8.888889pt;}
.ws2_c00092{word-spacing:0.000000pt;}
._1b_c00092{margin-left:-8.679467pt;}
._1c_c00092{margin-left:-6.211557pt;}
._b_c00092{margin-left:-3.603200pt;}
._0_c00092{margin-left:-2.214400pt;}
._8_c00092{margin-left:-1.312000pt;}
._4_c00092{width:0.985600pt;}
._7_c00092{width:2.022400pt;}
._a_c00092{width:3.398933pt;}
._1_c00092{width:4.524800pt;}
._1a_c00092{width:5.675200pt;}
._13_c00092{width:7.039467pt;}
._12_c00092{width:8.448000pt;}
._10_c00092{width:9.798400pt;}
._c_c00092{width:10.687467pt;}
._11_c00092{width:11.598400pt;}
._2_c00092{width:12.576000pt;}
._9_c00092{width:13.964800pt;}
._5_c00092{width:15.232000pt;}
._3_c00092{width:16.262400pt;}
._6_c00092{width:18.534400pt;}
._f_c00092{width:19.628800pt;}
._d_c00092{width:20.684800pt;}
._19_c00092{width:21.928000pt;}
._e_c00092{width:23.084800pt;}
._15_c00092{width:24.985067pt;}
._17_c00092{width:26.540800pt;}
._14_c00092{width:28.371200pt;}
._16_c00092{width:30.566400pt;}
._18_c00092{width:31.769600pt;}
.fs4_c00092{font-size:35.555557pt;}
.fs1_c00092{font-size:42.666667pt;}
.fs2_c00092{font-size:48.000000pt;}
.fs3_c00092{font-size:53.333333pt;}
.fs0_c00092{font-size:64.000000pt;}
.y0_c00092{bottom:0.000000pt;}
.ya_c00092{bottom:10.666667pt;}
.y16_c00092{bottom:59.853333pt;}
.y1b_c00092{bottom:120.520000pt;}
.y1a_c00092{bottom:160.520000pt;}
.y19_c00092{bottom:200.520000pt;}
.y18_c00092{bottom:237.186667pt;}
.y17_c00092{bottom:257.853333pt;}
.y14_c00092{bottom:301.186667pt;}
.y13_c00092{bottom:325.186667pt;}
.y12_c00092{bottom:367.853333pt;}
.y11_c00092{bottom:391.853333pt;}
.y10_c00092{bottom:415.853333pt;}
.yf_c00092{bottom:439.853333pt;}
.ye_c00092{bottom:463.853333pt;}
.yd_c00092{bottom:487.853333pt;}
.yc_c00092{bottom:511.853333pt;}
.yb_c00092{bottom:535.853333pt;}
.y9_c00092{bottom:571.853333pt;}
.y8_c00092{bottom:805.186667pt;}
.y7_c00092{bottom:829.186667pt;}
.y6_c00092{bottom:853.186667pt;}
.y5_c00092{bottom:877.186667pt;}
.y4_c00092{bottom:901.186667pt;}
.y3_c00092{bottom:925.186667pt;}
.y2_c00092{bottom:949.186667pt;}
.y1_c00092{bottom:973.186667pt;}
.y15_c00092{bottom:1061.186667pt;}
.h8_c00092{height:34.375000pt;}
.h6_c00092{height:37.007812pt;}
.h7_c00092{height:39.218750pt;}
.h9_c00092{height:47.708333pt;}
.h3_c00092{height:60.218750pt;}
.h4_c00092{height:60.666900pt;}
.h5_c00092{height:205.333333pt;}
.h2_c00092{height:1121.333333pt;}
.h0_c00092{height:1122.520000pt;}
.h1_c00092{height:1122.666667pt;}
.w3_c00092{width:601.719867pt;}
.w2_c00092{width:793.333333pt;}
.w0_c00092{width:793.720000pt;}
.w1_c00092{width:794.000000pt;}
.x0_c00092{left:0.000000pt;}
.x1_c00092{left:133.795333pt;}
.x2_c00092{left:179.992800pt;}
.x3_c00092{left:338.236533pt;}
.x4_c00092{left:720.684533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_61b5a2457459adadcf15586d.woff2')format("woff");}.ff1_c00093{font-family:ff1_c00093;line-height:1.163086;font-style:normal;font-weight:normal;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_9e55bcc0e04b86904daa1136.woff2')format("woff");}.ff2_c00093{font-family:ff2_c00093;line-height:0.888672;font-style:normal;font-weight:normal;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_1460e64857ed9f37364e065e.woff2')format("woff");}.ff3_c00093{font-family:ff3_c00093;line-height:0.975586;font-style:normal;font-weight:normal;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_fd4532cfdce052acc5ba906f.woff2')format("woff");}.ff4_c00093{font-family:ff4_c00093;line-height:0.756348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00093;src:url('chunks/assets/font_5fd2713da5ddf0eaca750dee.woff2')format("woff");}.ff5_c00093{font-family:ff5_c00093;line-height:1.155762;font-style:normal;font-weight: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_c00093;src:url('chunks/assets/font_fadf1fc34b02cfa3c80e8aea.woff2')format("woff");}.ff6_c00093{font-family:ff6_c00093;line-height:0.904785;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00093;src:url('chunks/assets/font_964e5b3d51de21d1e1995b03.woff2')format("woff");}.ff7_c00093{font-family:ff7_c00093;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00093{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00093{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00093{vertical-align:-23.086200px;}
.v3_c00093{vertical-align:-15.000000px;}
.v0_c00093{vertical-align:0.000000px;}
.v1_c00093{vertical-align:23.086200px;}
.ls2_c00093{letter-spacing:-0.009600px;}
.ls1_c00093{letter-spacing:0.000000px;}
.ls3_c00093{letter-spacing:0.012000px;}
.ls0_c00093{letter-spacing:0.266400px;}
.sc__c00093{text-shadow:none;}
.sc0_c00093{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00093{-webkit-text-stroke:0px transparent;}
.sc0_c00093{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00093{word-spacing:-19.800000px;}
.ws1_c00093{word-spacing:-13.190400px;}
.ws2_c00093{word-spacing:-10.000001px;}
.ws3_c00093{word-spacing:0.000000px;}
._6_c00093{margin-left:-4.125600px;}
._3_c00093{margin-left:-2.304000px;}
._8_c00093{margin-left:-1.087200px;}
._0_c00093{width:1.137600px;}
._2_c00093{width:2.448000px;}
._1_c00093{width:4.435200px;}
._5_c00093{width:5.558400px;}
._9_c00093{width:6.717600px;}
._4_c00093{width:8.560800px;}
._7_c00093{width:9.770400px;}
._17_c00093{width:10.771200px;}
._d_c00093{width:11.880000px;}
._c_c00093{width:13.010400px;}
._b_c00093{width:14.104800px;}
._a_c00093{width:16.142400px;}
._18_c00093{width:17.539200px;}
._16_c00093{width:18.544560px;}
._1a_c00093{width:22.960800px;}
._19_c00093{width:24.098400px;}
._1b_c00093{width:25.776000px;}
._f_c00093{width:29.995200px;}
._13_c00093{width:31.132800px;}
._11_c00093{width:32.378400px;}
._10_c00093{width:33.580800px;}
._e_c00093{width:34.689600px;}
._14_c00093{width:36.727200px;}
._12_c00093{width:37.872000px;}
._15_c00093{width:39.765600px;}
.fc0_c00093{color:rgb(0,0,0);}
.fs4_c00093{font-size:40.000002px;}
.fs1_c00093{font-size:48.000000px;}
.fs2_c00093{font-size:54.000000px;}
.fs3_c00093{font-size:60.000000px;}
.fs0_c00093{font-size:72.000000px;}
.y0_c00093{bottom:0.000000px;}
.yb_c00093{bottom:12.000000px;}
.y11_c00093{bottom:67.335000px;}
.y12_c00093{bottom:135.585000px;}
.yf_c00093{bottom:193.335000px;}
.ye_c00093{bottom:220.335000px;}
.yd_c00093{bottom:247.335000px;}
.yc_c00093{bottom:274.335000px;}
.ya_c00093{bottom:319.335000px;}
.y9_c00093{bottom:857.835000px;}
.y8_c00093{bottom:884.835000px;}
.y7_c00093{bottom:911.835000px;}
.y6_c00093{bottom:938.835000px;}
.y5_c00093{bottom:965.835000px;}
.y4_c00093{bottom:992.835000px;}
.y3_c00093{bottom:1040.835000px;}
.y2_c00093{bottom:1067.835000px;}
.y1_c00093{bottom:1094.835000px;}
.y10_c00093{bottom:1193.835000px;}
.h9_c00093{height:27.480470px;}
.h6_c00093{height:41.633789px;}
.h8_c00093{height:44.208984px;}
.h7_c00093{height:56.074219px;}
.h3_c00093{height:67.746094px;}
.h4_c00093{height:68.250262px;}
.h5_c00093{height:528.000000px;}
.h2_c00093{height:1261.500000px;}
.h0_c00093{height:1262.835000px;}
.h1_c00093{height:1263.000000px;}
.w3_c00093{width:676.935000px;}
.w2_c00093{width:892.500000px;}
.w0_c00093{width:892.935000px;}
.w1_c00093{width:893.250000px;}
.x0_c00093{left:0.000000px;}
.x1_c00093{left:65.480310px;}
.x2_c00093{left:143.353590px;}
@media print{
.v2_c00093{vertical-align:-20.521067pt;}
.v3_c00093{vertical-align:-13.333333pt;}
.v0_c00093{vertical-align:0.000000pt;}
.v1_c00093{vertical-align:20.521067pt;}
.ls2_c00093{letter-spacing:-0.008533pt;}
.ls1_c00093{letter-spacing:0.000000pt;}
.ls3_c00093{letter-spacing:0.010667pt;}
.ls0_c00093{letter-spacing:0.236800pt;}
.ws0_c00093{word-spacing:-17.600000pt;}
.ws1_c00093{word-spacing:-11.724800pt;}
.ws2_c00093{word-spacing:-8.888889pt;}
.ws3_c00093{word-spacing:0.000000pt;}
._6_c00093{margin-left:-3.667200pt;}
._3_c00093{margin-left:-2.048000pt;}
._8_c00093{margin-left:-0.966400pt;}
._0_c00093{width:1.011200pt;}
._2_c00093{width:2.176000pt;}
._1_c00093{width:3.942400pt;}
._5_c00093{width:4.940800pt;}
._9_c00093{width:5.971200pt;}
._4_c00093{width:7.609600pt;}
._7_c00093{width:8.684800pt;}
._17_c00093{width:9.574400pt;}
._d_c00093{width:10.560000pt;}
._c_c00093{width:11.564800pt;}
._b_c00093{width:12.537600pt;}
._a_c00093{width:14.348800pt;}
._18_c00093{width:15.590400pt;}
._16_c00093{width:16.484053pt;}
._1a_c00093{width:20.409600pt;}
._19_c00093{width:21.420800pt;}
._1b_c00093{width:22.912000pt;}
._f_c00093{width:26.662400pt;}
._13_c00093{width:27.673600pt;}
._11_c00093{width:28.780800pt;}
._10_c00093{width:29.849600pt;}
._e_c00093{width:30.835200pt;}
._14_c00093{width:32.646400pt;}
._12_c00093{width:33.664000pt;}
._15_c00093{width:35.347200pt;}
.fs4_c00093{font-size:35.555557pt;}
.fs1_c00093{font-size:42.666667pt;}
.fs2_c00093{font-size:48.000000pt;}
.fs3_c00093{font-size:53.333333pt;}
.fs0_c00093{font-size:64.000000pt;}
.y0_c00093{bottom:0.000000pt;}
.yb_c00093{bottom:10.666667pt;}
.y11_c00093{bottom:59.853333pt;}
.y12_c00093{bottom:120.520000pt;}
.yf_c00093{bottom:171.853333pt;}
.ye_c00093{bottom:195.853333pt;}
.yd_c00093{bottom:219.853333pt;}
.yc_c00093{bottom:243.853333pt;}
.ya_c00093{bottom:283.853333pt;}
.y9_c00093{bottom:762.520000pt;}
.y8_c00093{bottom:786.520000pt;}
.y7_c00093{bottom:810.520000pt;}
.y6_c00093{bottom:834.520000pt;}
.y5_c00093{bottom:858.520000pt;}
.y4_c00093{bottom:882.520000pt;}
.y3_c00093{bottom:925.186667pt;}
.y2_c00093{bottom:949.186667pt;}
.y1_c00093{bottom:973.186667pt;}
.y10_c00093{bottom:1061.186667pt;}
.h9_c00093{height:24.427085pt;}
.h6_c00093{height:37.007812pt;}
.h8_c00093{height:39.296875pt;}
.h7_c00093{height:49.843750pt;}
.h3_c00093{height:60.218750pt;}
.h4_c00093{height:60.666900pt;}
.h5_c00093{height:469.333333pt;}
.h2_c00093{height:1121.333333pt;}
.h0_c00093{height:1122.520000pt;}
.h1_c00093{height:1122.666667pt;}
.w3_c00093{width:601.720000pt;}
.w2_c00093{width:793.333333pt;}
.w0_c00093{width:793.720000pt;}
.w1_c00093{width:794.000000pt;}
.x0_c00093{left:0.000000pt;}
.x1_c00093{left:58.204720pt;}
.x2_c00093{left:127.425413pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fc48da8511e1d0e6dbafe4dd.woff2')format("woff");}.ff1_c00094{font-family:ff1_c00094;line-height:0.934082;font-style:normal;font-weight:normal;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_1acd9b6ec589429f9066b019.woff2')format("woff");}.ff2_c00094{font-family:ff2_c00094;line-height:0.956543;font-style:normal;font-weight:normal;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_218d5cb51385c6984afe8e92.woff2')format("woff");}.ff3_c00094{font-family:ff3_c00094;line-height:1.112305;font-style:normal;font-weight:normal;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_59f26b2ef9de4d571e7d9a57.woff2')format("woff");}.ff4_c00094{font-family:ff4_c00094;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00094{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00094{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00094{vertical-align:-23.086200px;}
.v3_c00094{vertical-align:-15.000000px;}
.v0_c00094{vertical-align:0.000000px;}
.v1_c00094{vertical-align:23.086200px;}
.ls2_c00094{letter-spacing:-0.009600px;}
.ls1_c00094{letter-spacing:0.000000px;}
.ls0_c00094{letter-spacing:0.012000px;}
.sc__c00094{text-shadow:none;}
.sc0_c00094{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00094{-webkit-text-stroke:0px transparent;}
.sc0_c00094{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00094{word-spacing:-19.800000px;}
.ws0_c00094{word-spacing:-13.190400px;}
.ws2_c00094{word-spacing:-10.000001px;}
.ws3_c00094{word-spacing:-2.000002px;}
.ws5_c00094{word-spacing:0.000000px;}
.ws4_c00094{word-spacing:3.999998px;}
._7_c00094{margin-left:-19.224000px;}
._15_c00094{margin-left:-8.216802px;}
._17_c00094{margin-left:-6.729798px;}
._14_c00094{margin-left:-5.325600px;}
._1_c00094{margin-left:-4.284000px;}
._5_c00094{margin-left:-2.541600px;}
._3_c00094{margin-left:-1.260000px;}
._2_c00094{width:1.893600px;}
._4_c00094{width:3.564000px;}
._6_c00094{width:5.025600px;}
._0_c00094{width:6.134400px;}
._c_c00094{width:7.149600px;}
._8_c00094{width:8.676000px;}
._a_c00094{width:10.447200px;}
._b_c00094{width:12.124800px;}
._e_c00094{width:13.500000px;}
._9_c00094{width:14.760000px;}
._d_c00094{width:16.538400px;}
._f_c00094{width:17.704800px;}
._16_c00094{width:20.126400px;}
._10_c00094{width:21.232800px;}
._13_c00094{width:22.255200px;}
._11_c00094{width:24.969600px;}
._12_c00094{width:26.906400px;}
.fc0_c00094{color:rgb(0,0,0);}
.fs3_c00094{font-size:40.000002px;}
.fs1_c00094{font-size:48.000000px;}
.fs2_c00094{font-size:60.000000px;}
.fs0_c00094{font-size:72.000000px;}
.y0_c00094{bottom:0.000000px;}
.y17_c00094{bottom:67.335000px;}
.y21_c00094{bottom:131.835000px;}
.y20_c00094{bottom:155.085000px;}
.y1f_c00094{bottom:196.335000px;}
.y1e_c00094{bottom:219.585000px;}
.y1d_c00094{bottom:260.835000px;}
.y1c_c00094{bottom:284.085000px;}
.y1b_c00094{bottom:329.085000px;}
.y1a_c00094{bottom:370.335000px;}
.y19_c00094{bottom:393.585000px;}
.y18_c00094{bottom:438.585000px;}
.y15_c00094{bottom:512.835000px;}
.y14_c00094{bottom:539.835000px;}
.y13_c00094{bottom:566.835000px;}
.y12_c00094{bottom:593.835000px;}
.y11_c00094{bottom:620.835000px;}
.y10_c00094{bottom:647.835000px;}
.yf_c00094{bottom:674.835000px;}
.ye_c00094{bottom:701.835000px;}
.yd_c00094{bottom:728.835000px;}
.yc_c00094{bottom:755.835000px;}
.yb_c00094{bottom:782.835000px;}
.ya_c00094{bottom:809.835000px;}
.y9_c00094{bottom:836.835000px;}
.y8_c00094{bottom:884.835000px;}
.y7_c00094{bottom:911.835000px;}
.y6_c00094{bottom:938.835000px;}
.y5_c00094{bottom:965.835000px;}
.y4_c00094{bottom:992.835000px;}
.y3_c00094{bottom:1019.835000px;}
.y2_c00094{bottom:1067.835000px;}
.y1_c00094{bottom:1094.835000px;}
.y16_c00094{bottom:1193.835000px;}
.h6_c00094{height:38.671875px;}
.h5_c00094{height:44.121094px;}
.h3_c00094{height:51.257812px;}
.h7_c00094{height:53.671875px;}
.h4_c00094{height:57.258075px;}
.h2_c00094{height:1261.500000px;}
.h0_c00094{height:1262.835000px;}
.h1_c00094{height:1263.000000px;}
.w2_c00094{width:892.500000px;}
.w0_c00094{width:892.935000px;}
.w1_c00094{width:893.250000px;}
.x0_c00094{left:0.000000px;}
.x1_c00094{left:150.519750px;}
.x2_c00094{left:380.516100px;}
.x3_c00094{left:810.770100px;}
@media print{
.v2_c00094{vertical-align:-20.521067pt;}
.v3_c00094{vertical-align:-13.333333pt;}
.v0_c00094{vertical-align:0.000000pt;}
.v1_c00094{vertical-align:20.521067pt;}
.ls2_c00094{letter-spacing:-0.008533pt;}
.ls1_c00094{letter-spacing:0.000000pt;}
.ls0_c00094{letter-spacing:0.010667pt;}
.ws1_c00094{word-spacing:-17.600000pt;}
.ws0_c00094{word-spacing:-11.724800pt;}
.ws2_c00094{word-spacing:-8.888889pt;}
.ws3_c00094{word-spacing:-1.777780pt;}
.ws5_c00094{word-spacing:0.000000pt;}
.ws4_c00094{word-spacing:3.555553pt;}
._7_c00094{margin-left:-17.088000pt;}
._15_c00094{margin-left:-7.303824pt;}
._17_c00094{margin-left:-5.982043pt;}
._14_c00094{margin-left:-4.733867pt;}
._1_c00094{margin-left:-3.808000pt;}
._5_c00094{margin-left:-2.259200pt;}
._3_c00094{margin-left:-1.120000pt;}
._2_c00094{width:1.683200pt;}
._4_c00094{width:3.168000pt;}
._6_c00094{width:4.467200pt;}
._0_c00094{width:5.452800pt;}
._c_c00094{width:6.355200pt;}
._8_c00094{width:7.712000pt;}
._a_c00094{width:9.286400pt;}
._b_c00094{width:10.777600pt;}
._e_c00094{width:12.000000pt;}
._9_c00094{width:13.120000pt;}
._d_c00094{width:14.700800pt;}
._f_c00094{width:15.737600pt;}
._16_c00094{width:17.890133pt;}
._10_c00094{width:18.873600pt;}
._13_c00094{width:19.782400pt;}
._11_c00094{width:22.195200pt;}
._12_c00094{width:23.916800pt;}
.fs3_c00094{font-size:35.555557pt;}
.fs1_c00094{font-size:42.666667pt;}
.fs2_c00094{font-size:53.333333pt;}
.fs0_c00094{font-size:64.000000pt;}
.y0_c00094{bottom:0.000000pt;}
.y17_c00094{bottom:59.853333pt;}
.y21_c00094{bottom:117.186667pt;}
.y20_c00094{bottom:137.853333pt;}
.y1f_c00094{bottom:174.520000pt;}
.y1e_c00094{bottom:195.186667pt;}
.y1d_c00094{bottom:231.853333pt;}
.y1c_c00094{bottom:252.520000pt;}
.y1b_c00094{bottom:292.520000pt;}
.y1a_c00094{bottom:329.186667pt;}
.y19_c00094{bottom:349.853333pt;}
.y18_c00094{bottom:389.853333pt;}
.y15_c00094{bottom:455.853333pt;}
.y14_c00094{bottom:479.853333pt;}
.y13_c00094{bottom:503.853333pt;}
.y12_c00094{bottom:527.853333pt;}
.y11_c00094{bottom:551.853333pt;}
.y10_c00094{bottom:575.853333pt;}
.yf_c00094{bottom:599.853333pt;}
.ye_c00094{bottom:623.853333pt;}
.yd_c00094{bottom:647.853333pt;}
.yc_c00094{bottom:671.853333pt;}
.yb_c00094{bottom:695.853333pt;}
.ya_c00094{bottom:719.853333pt;}
.y9_c00094{bottom:743.853333pt;}
.y8_c00094{bottom:786.520000pt;}
.y7_c00094{bottom:810.520000pt;}
.y6_c00094{bottom:834.520000pt;}
.y5_c00094{bottom:858.520000pt;}
.y4_c00094{bottom:882.520000pt;}
.y3_c00094{bottom:906.520000pt;}
.y2_c00094{bottom:949.186667pt;}
.y1_c00094{bottom:973.186667pt;}
.y16_c00094{bottom:1061.186667pt;}
.h6_c00094{height:34.375000pt;}
.h5_c00094{height:39.218750pt;}
.h3_c00094{height:45.562500pt;}
.h7_c00094{height:47.708333pt;}
.h4_c00094{height:50.896067pt;}
.h2_c00094{height:1121.333333pt;}
.h0_c00094{height:1122.520000pt;}
.h1_c00094{height:1122.666667pt;}
.w2_c00094{width:793.333333pt;}
.w0_c00094{width:793.720000pt;}
.w1_c00094{width:794.000000pt;}
.x0_c00094{left:0.000000pt;}
.x1_c00094{left:133.795333pt;}
.x2_c00094{left:338.236533pt;}
.x3_c00094{left:720.684533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b2155a97bf1ffc8b7f4e666c.woff2')format("woff");}.ff1_c00095{font-family:ff1_c00095;line-height:0.936035;font-style:normal;font-weight:normal;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_ab7006e16a9acd2024371b95.woff2')format("woff");}.ff2_c00095{font-family:ff2_c00095;line-height:0.934082;font-style:normal;font-weight:normal;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_1bedbc22ed43f838fe229f83.woff2')format("woff");}.ff3_c00095{font-family:ff3_c00095;line-height:0.931152;font-style:normal;font-weight:normal;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_81d70be58b9fd9ca873f11b6.woff2')format("woff");}.ff4_c00095{font-family:ff4_c00095;line-height:0.975586;font-style:normal;font-weight:normal;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_3aac49b44ae4fc34c2874b54.woff2')format("woff");}.ff5_c00095{font-family:ff5_c00095;line-height:0.756348;font-style:normal;font-weight: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_3cb750bae3826f9eb0a87c67.woff2')format("woff");}.ff6_c00095{font-family:ff6_c00095;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00095;src:url('chunks/assets/font_9240fd71e0ad4198020ad2dc.woff2')format("woff");}.ff7_c00095{font-family:ff7_c00095;line-height:0.904785;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00095;src:url('chunks/assets/font_27a36226c47d7680b0195911.woff2')format("woff");}.ff8_c00095{font-family:ff8_c00095;line-height:0.891113;font-style: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);}
.v2_c00095{vertical-align:-23.086200px;}
.v3_c00095{vertical-align:-15.000000px;}
.v0_c00095{vertical-align:0.000000px;}
.v1_c00095{vertical-align:23.086200px;}
.ls4_c00095{letter-spacing:-0.009600px;}
.ls3_c00095{letter-spacing:-0.007200px;}
.ls2_c00095{letter-spacing:0.000000px;}
.ls5_c00095{letter-spacing:0.012000px;}
.ls0_c00095{letter-spacing:0.014400px;}
.ls1_c00095{letter-spacing:0.547200px;}
.sc__c00095{text-shadow:none;}
.sc0_c00095{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00095{-webkit-text-stroke:0px transparent;}
.sc0_c00095{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00095{word-spacing:-13.190400px;}
.ws2_c00095{word-spacing:-10.000001px;}
.ws0_c00095{word-spacing:-0.086400px;}
.ws3_c00095{word-spacing:0.000000px;}
._0_c00095{margin-left:-8.509800px;}
._6_c00095{margin-left:-4.716000px;}
._1_c00095{margin-left:-3.376800px;}
._4_c00095{margin-left:-1.224000px;}
._3_c00095{width:1.929600px;}
._5_c00095{width:3.967200px;}
._2_c00095{width:5.068800px;}
._8_c00095{width:6.948000px;}
._f_c00095{width:7.970400px;}
._9_c00095{width:9.619200px;}
._d_c00095{width:11.966400px;}
._7_c00095{width:13.068000px;}
._a_c00095{width:14.918400px;}
._c_c00095{width:15.984000px;}
._b_c00095{width:17.164800px;}
._e_c00095{width:18.367200px;}
._10_c00095{width:33.206400px;}
._11_c00095{width:35.136000px;}
._14_c00095{width:36.360000px;}
._13_c00095{width:38.584800px;}
._12_c00095{width:39.924000px;}
.fc1_c00095{color:transparent;}
.fc0_c00095{color:rgb(0,0,0);}
.fs5_c00095{font-size:40.000002px;}
.fs2_c00095{font-size:48.000000px;}
.fs3_c00095{font-size:54.000000px;}
.fs4_c00095{font-size:60.000000px;}
.fs1_c00095{font-size:72.000000px;}
.fs0_c00095{font-size:78.000000px;}
.y0_c00095{bottom:0.000000px;}
.yd_c00095{bottom:10.500000px;}
.yf_c00095{bottom:67.335000px;}
.y11_c00095{bottom:135.585000px;}
.y10_c00095{bottom:180.585000px;}
.yc_c00095{bottom:220.335000px;}
.yb_c00095{bottom:740.835000px;}
.ya_c00095{bottom:767.835000px;}
.y9_c00095{bottom:794.835000px;}
.y8_c00095{bottom:841.335000px;}
.y7_c00095{bottom:911.835000px;}
.y6_c00095{bottom:938.835000px;}
.y5_c00095{bottom:965.835000px;}
.y4_c00095{bottom:992.835000px;}
.y3_c00095{bottom:1019.835000px;}
.y2_c00095{bottom:1046.835000px;}
.y1_c00095{bottom:1093.335000px;}
.ye_c00095{bottom:1193.835000px;}
.ha_c00095{height:27.480470px;}
.h7_c00095{height:41.633789px;}
.h9_c00095{height:44.208984px;}
.h4_c00095{height:51.257812px;}
.h3_c00095{height:55.833984px;}
.h8_c00095{height:56.074219px;}
.h5_c00095{height:57.258075px;}
.h6_c00095{height:510.000000px;}
.h2_c00095{height:1261.500000px;}
.h0_c00095{height:1262.835000px;}
.h1_c00095{height:1263.000000px;}
.w3_c00095{width:676.935000px;}
.w2_c00095{width:892.500000px;}
.w0_c00095{width:892.935000px;}
.w1_c00095{width:893.250000px;}
.x0_c00095{left:0.000000px;}
.x1_c00095{left:65.480310px;}
.x2_c00095{left:172.123500px;}
@media print{
.v2_c00095{vertical-align:-20.521067pt;}
.v3_c00095{vertical-align:-13.333333pt;}
.v0_c00095{vertical-align:0.000000pt;}
.v1_c00095{vertical-align:20.521067pt;}
.ls4_c00095{letter-spacing:-0.008533pt;}
.ls3_c00095{letter-spacing:-0.006400pt;}
.ls2_c00095{letter-spacing:0.000000pt;}
.ls5_c00095{letter-spacing:0.010667pt;}
.ls0_c00095{letter-spacing:0.012800pt;}
.ls1_c00095{letter-spacing:0.486400pt;}
.ws1_c00095{word-spacing:-11.724800pt;}
.ws2_c00095{word-spacing:-8.888889pt;}
.ws0_c00095{word-spacing:-0.076800pt;}
.ws3_c00095{word-spacing:0.000000pt;}
._0_c00095{margin-left:-7.564267pt;}
._6_c00095{margin-left:-4.192000pt;}
._1_c00095{margin-left:-3.001600pt;}
._4_c00095{margin-left:-1.088000pt;}
._3_c00095{width:1.715200pt;}
._5_c00095{width:3.526400pt;}
._2_c00095{width:4.505600pt;}
._8_c00095{width:6.176000pt;}
._f_c00095{width:7.084800pt;}
._9_c00095{width:8.550400pt;}
._d_c00095{width:10.636800pt;}
._7_c00095{width:11.616000pt;}
._a_c00095{width:13.260800pt;}
._c_c00095{width:14.208000pt;}
._b_c00095{width:15.257600pt;}
._e_c00095{width:16.326400pt;}
._10_c00095{width:29.516800pt;}
._11_c00095{width:31.232000pt;}
._14_c00095{width:32.320000pt;}
._13_c00095{width:34.297600pt;}
._12_c00095{width:35.488000pt;}
.fs5_c00095{font-size:35.555557pt;}
.fs2_c00095{font-size:42.666667pt;}
.fs3_c00095{font-size:48.000000pt;}
.fs4_c00095{font-size:53.333333pt;}
.fs1_c00095{font-size:64.000000pt;}
.fs0_c00095{font-size:69.333333pt;}
.y0_c00095{bottom:0.000000pt;}
.yd_c00095{bottom:9.333333pt;}
.yf_c00095{bottom:59.853333pt;}
.y11_c00095{bottom:120.520000pt;}
.y10_c00095{bottom:160.520000pt;}
.yc_c00095{bottom:195.853333pt;}
.yb_c00095{bottom:658.520000pt;}
.ya_c00095{bottom:682.520000pt;}
.y9_c00095{bottom:706.520000pt;}
.y8_c00095{bottom:747.853333pt;}
.y7_c00095{bottom:810.520000pt;}
.y6_c00095{bottom:834.520000pt;}
.y5_c00095{bottom:858.520000pt;}
.y4_c00095{bottom:882.520000pt;}
.y3_c00095{bottom:906.520000pt;}
.y2_c00095{bottom:930.520000pt;}
.y1_c00095{bottom:971.853333pt;}
.ye_c00095{bottom:1061.186667pt;}
.ha_c00095{height:24.427085pt;}
.h7_c00095{height:37.007812pt;}
.h9_c00095{height:39.296875pt;}
.h4_c00095{height:45.562500pt;}
.h3_c00095{height:49.630208pt;}
.h8_c00095{height:49.843750pt;}
.h5_c00095{height:50.896067pt;}
.h6_c00095{height:453.333333pt;}
.h2_c00095{height:1121.333333pt;}
.h0_c00095{height:1122.520000pt;}
.h1_c00095{height:1122.666667pt;}
.w3_c00095{width:601.720000pt;}
.w2_c00095{width:793.333333pt;}
.w0_c00095{width:793.720000pt;}
.w1_c00095{width:794.000000pt;}
.x0_c00095{left:0.000000pt;}
.x1_c00095{left:58.204720pt;}
.x2_c00095{left:152.998667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5d22b36c5eb8150bf65df01b.woff2')format("woff");}.ff1_c00096{font-family:ff1_c00096;line-height:0.934082;font-style:normal;font-weight:normal;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_b832d5422995d629d8789abb.woff2')format("woff");}.ff2_c00096{font-family:ff2_c00096;line-height:0.932129;font-style:normal;font-weight:normal;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_b765f8c5763a71d9f5523167.woff2')format("woff");}.ff3_c00096{font-family:ff3_c00096;line-height:0.939453;font-style:normal;font-weight:normal;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_81c4dd064500cd1775a2f2d3.woff2')format("woff");}.ff4_c00096{font-family:ff4_c00096;line-height:0.956543;font-style:normal;font-weight:normal;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_b285a046376af64c840d2b1b.woff2')format("woff");}.ff5_c00096{font-family:ff5_c00096;line-height:1.112305;font-style:normal;font-weight: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_c00096;src:url('chunks/assets/font_1a5988581d96d5bf0b6e563d.woff2')format("woff");}.ff6_c00096{font-family:ff6_c00096;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00096{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00096{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00096{vertical-align:-23.086200px;}
.v3_c00096{vertical-align:-15.000000px;}
.v0_c00096{vertical-align:0.000000px;}
.v1_c00096{vertical-align:23.086200px;}
.ls6_c00096{letter-spacing:-4.440000px;}
.ls3_c00096{letter-spacing:-0.014400px;}
.ls4_c00096{letter-spacing:-0.009600px;}
.ls2_c00096{letter-spacing:0.000000px;}
.ls0_c00096{letter-spacing:0.007200px;}
.ls5_c00096{letter-spacing:0.007800px;}
.ls1_c00096{letter-spacing:0.012000px;}
.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:-19.800000px;}
.ws3_c00096{word-spacing:-15.000000px;}
.ws1_c00096{word-spacing:-13.190400px;}
.ws2_c00096{word-spacing:-10.000001px;}
.ws4_c00096{word-spacing:0.000000px;}
._15_c00096{margin-left:-8.517600px;}
._1a_c00096{margin-left:-5.236002px;}
._7_c00096{margin-left:-4.039200px;}
._b_c00096{margin-left:-3.038400px;}
._5_c00096{margin-left:-1.864800px;}
._1_c00096{width:1.843200px;}
._e_c00096{width:2.844000px;}
._3_c00096{width:3.895200px;}
._4_c00096{width:4.924800px;}
._2_c00096{width:7.005600px;}
._0_c00096{width:8.834400px;}
._6_c00096{width:10.720800px;}
._16_c00096{width:11.755200px;}
._f_c00096{width:13.305600px;}
._12_c00096{width:14.928000px;}
._10_c00096{width:16.351200px;}
._11_c00096{width:18.439200px;}
._14_c00096{width:21.197400px;}
._13_c00096{width:22.240800px;}
._17_c00096{width:24.184800px;}
._19_c00096{width:25.704000px;}
._18_c00096{width:27.280800px;}
._a_c00096{width:31.413600px;}
._d_c00096{width:35.366400px;}
._9_c00096{width:37.144800px;}
._c_c00096{width:38.368800px;}
._8_c00096{width:39.391200px;}
.fc0_c00096{color:rgb(0,0,0);}
.fs4_c00096{font-size:40.000002px;}
.fs2_c00096{font-size:48.000000px;}
.fs3_c00096{font-size:60.000000px;}
.fs0_c00096{font-size:72.000000px;}
.fs1_c00096{font-size:78.000000px;}
.y0_c00096{bottom:0.000000px;}
.y1a_c00096{bottom:67.335000px;}
.y1e_c00096{bottom:131.835000px;}
.y1d_c00096{bottom:151.335000px;}
.y1c_c00096{bottom:174.585000px;}
.y1b_c00096{bottom:219.585000px;}
.y18_c00096{bottom:284.835000px;}
.y17_c00096{bottom:311.835000px;}
.y16_c00096{bottom:338.835000px;}
.y15_c00096{bottom:365.835000px;}
.y14_c00096{bottom:412.335000px;}
.y13_c00096{bottom:482.835000px;}
.y12_c00096{bottom:509.835000px;}
.y11_c00096{bottom:536.835000px;}
.y10_c00096{bottom:563.835000px;}
.yf_c00096{bottom:611.835000px;}
.ye_c00096{bottom:638.835000px;}
.yd_c00096{bottom:686.835000px;}
.yc_c00096{bottom:713.835000px;}
.yb_c00096{bottom:740.835000px;}
.ya_c00096{bottom:767.835000px;}
.y9_c00096{bottom:794.835000px;}
.y8_c00096{bottom:821.835000px;}
.y7_c00096{bottom:868.335000px;}
.y6_c00096{bottom:938.835000px;}
.y5_c00096{bottom:965.835000px;}
.y4_c00096{bottom:992.835000px;}
.y3_c00096{bottom:1040.835000px;}
.y2_c00096{bottom:1067.835000px;}
.y1_c00096{bottom:1094.835000px;}
.y19_c00096{bottom:1193.835000px;}
.h7_c00096{height:38.671875px;}
.h6_c00096{height:44.121094px;}
.h3_c00096{height:51.257812px;}
.h8_c00096{height:53.671875px;}
.h4_c00096{height:56.100586px;}
.h5_c00096{height:57.258075px;}
.h2_c00096{height:1261.500000px;}
.h0_c00096{height:1262.835000px;}
.h1_c00096{height:1263.000000px;}
.w2_c00096{width:892.500000px;}
.w0_c00096{width:892.935000px;}
.w1_c00096{width:893.250000px;}
.x0_c00096{left:0.000000px;}
.x1_c00096{left:150.519750px;}
.x2_c00096{left:380.516100px;}
.x3_c00096{left:810.770100px;}
@media print{
.v2_c00096{vertical-align:-20.521067pt;}
.v3_c00096{vertical-align:-13.333333pt;}
.v0_c00096{vertical-align:0.000000pt;}
.v1_c00096{vertical-align:20.521067pt;}
.ls6_c00096{letter-spacing:-3.946667pt;}
.ls3_c00096{letter-spacing:-0.012800pt;}
.ls4_c00096{letter-spacing:-0.008533pt;}
.ls2_c00096{letter-spacing:0.000000pt;}
.ls0_c00096{letter-spacing:0.006400pt;}
.ls5_c00096{letter-spacing:0.006933pt;}
.ls1_c00096{letter-spacing:0.010667pt;}
.ws0_c00096{word-spacing:-17.600000pt;}
.ws3_c00096{word-spacing:-13.333333pt;}
.ws1_c00096{word-spacing:-11.724800pt;}
.ws2_c00096{word-spacing:-8.888889pt;}
.ws4_c00096{word-spacing:0.000000pt;}
._15_c00096{margin-left:-7.571200pt;}
._1a_c00096{margin-left:-4.654224pt;}
._7_c00096{margin-left:-3.590400pt;}
._b_c00096{margin-left:-2.700800pt;}
._5_c00096{margin-left:-1.657600pt;}
._1_c00096{width:1.638400pt;}
._e_c00096{width:2.528000pt;}
._3_c00096{width:3.462400pt;}
._4_c00096{width:4.377600pt;}
._2_c00096{width:6.227200pt;}
._0_c00096{width:7.852800pt;}
._6_c00096{width:9.529600pt;}
._16_c00096{width:10.449067pt;}
._f_c00096{width:11.827200pt;}
._12_c00096{width:13.269333pt;}
._10_c00096{width:14.534400pt;}
._11_c00096{width:16.390400pt;}
._14_c00096{width:18.842133pt;}
._13_c00096{width:19.769600pt;}
._17_c00096{width:21.497600pt;}
._19_c00096{width:22.848000pt;}
._18_c00096{width:24.249600pt;}
._a_c00096{width:27.923200pt;}
._d_c00096{width:31.436800pt;}
._9_c00096{width:33.017600pt;}
._c_c00096{width:34.105600pt;}
._8_c00096{width:35.014400pt;}
.fs4_c00096{font-size:35.555557pt;}
.fs2_c00096{font-size:42.666667pt;}
.fs3_c00096{font-size:53.333333pt;}
.fs0_c00096{font-size:64.000000pt;}
.fs1_c00096{font-size:69.333333pt;}
.y0_c00096{bottom:0.000000pt;}
.y1a_c00096{bottom:59.853333pt;}
.y1e_c00096{bottom:117.186667pt;}
.y1d_c00096{bottom:134.520000pt;}
.y1c_c00096{bottom:155.186667pt;}
.y1b_c00096{bottom:195.186667pt;}
.y18_c00096{bottom:253.186667pt;}
.y17_c00096{bottom:277.186667pt;}
.y16_c00096{bottom:301.186667pt;}
.y15_c00096{bottom:325.186667pt;}
.y14_c00096{bottom:366.520000pt;}
.y13_c00096{bottom:429.186667pt;}
.y12_c00096{bottom:453.186667pt;}
.y11_c00096{bottom:477.186667pt;}
.y10_c00096{bottom:501.186667pt;}
.yf_c00096{bottom:543.853333pt;}
.ye_c00096{bottom:567.853333pt;}
.yd_c00096{bottom:610.520000pt;}
.yc_c00096{bottom:634.520000pt;}
.yb_c00096{bottom:658.520000pt;}
.ya_c00096{bottom:682.520000pt;}
.y9_c00096{bottom:706.520000pt;}
.y8_c00096{bottom:730.520000pt;}
.y7_c00096{bottom:771.853333pt;}
.y6_c00096{bottom:834.520000pt;}
.y5_c00096{bottom:858.520000pt;}
.y4_c00096{bottom:882.520000pt;}
.y3_c00096{bottom:925.186667pt;}
.y2_c00096{bottom:949.186667pt;}
.y1_c00096{bottom:973.186667pt;}
.y19_c00096{bottom:1061.186667pt;}
.h7_c00096{height:34.375000pt;}
.h6_c00096{height:39.218750pt;}
.h3_c00096{height:45.562500pt;}
.h8_c00096{height:47.708333pt;}
.h4_c00096{height:49.867188pt;}
.h5_c00096{height:50.896067pt;}
.h2_c00096{height:1121.333333pt;}
.h0_c00096{height:1122.520000pt;}
.h1_c00096{height:1122.666667pt;}
.w2_c00096{width:793.333333pt;}
.w0_c00096{width:793.720000pt;}
.w1_c00096{width:794.000000pt;}
.x0_c00096{left:0.000000pt;}
.x1_c00096{left:133.795333pt;}
.x2_c00096{left:338.236533pt;}
.x3_c00096{left:720.684533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7a052975ab325c1e5a1c31e8.woff2')format("woff");}.ff1_c00097{font-family:ff1_c00097;line-height:0.934082;font-style:normal;font-weight:normal;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_edbeae2c5b17f321568d412c.woff2')format("woff");}.ff2_c00097{font-family:ff2_c00097;line-height:0.756348;font-style:normal;font-weight:normal;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_7fdfe45a3c8fbf3dc9fa0199.woff2')format("woff");}.ff3_c00097{font-family:ff3_c00097;line-height:1.155762;font-style:normal;font-weight:normal;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_cdcd874934f144a7412371a3.woff2')format("woff");}.ff4_c00097{font-family:ff4_c00097;line-height:0.903320;font-style:normal;font-weight:normal;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_05bad2df2cb8d6b7697af888.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);}
.v2_c00097{vertical-align:-23.086200px;}
.v3_c00097{vertical-align:-15.000000px;}
.v0_c00097{vertical-align:0.000000px;}
.v1_c00097{vertical-align:23.086200px;}
.ls4_c00097{letter-spacing:-4.482000px;}
.ls5_c00097{letter-spacing:-0.156000px;}
.ls2_c00097{letter-spacing:-0.009600px;}
.ls1_c00097{letter-spacing:0.000000px;}
.ls0_c00097{letter-spacing:0.007200px;}
.ls3_c00097{letter-spacing:0.012000px;}
.sc__c00097{text-shadow:none;}
.sc0_c00097{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00097{-webkit-text-stroke:0px transparent;}
.sc0_c00097{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00097{word-spacing:-19.800000px;}
.ws0_c00097{word-spacing:-13.190400px;}
.ws2_c00097{word-spacing:-10.000001px;}
.ws3_c00097{word-spacing:0.000000px;}
._16_c00097{margin-left:-10.584000px;}
._f_c00097{margin-left:-6.703200px;}
._9_c00097{margin-left:-4.132800px;}
._4_c00097{margin-left:-2.916000px;}
._2_c00097{margin-left:-1.209600px;}
._0_c00097{width:1.173600px;}
._6_c00097{width:2.347200px;}
._1_c00097{width:3.376800px;}
._3_c00097{width:4.399200px;}
._5_c00097{width:5.464800px;}
._7_c00097{width:7.056000px;}
._8_c00097{width:8.532000px;}
._a_c00097{width:9.554400px;}
._18_c00097{width:10.569600px;}
._15_c00097{width:11.800800px;}
._e_c00097{width:13.680000px;}
._b_c00097{width:15.724800px;}
._c_c00097{width:17.496000px;}
._d_c00097{width:21.600000px;}
._14_c00097{width:22.608000px;}
._11_c00097{width:23.659200px;}
._13_c00097{width:24.804000px;}
._12_c00097{width:26.503200px;}
._10_c00097{width:27.756000px;}
._17_c00097{width:30.160800px;}
.fc0_c00097{color:rgb(0,0,0);}
.fs3_c00097{font-size:40.000002px;}
.fs1_c00097{font-size:48.000000px;}
.fs2_c00097{font-size:60.000000px;}
.fs0_c00097{font-size:72.000000px;}
.y0_c00097{bottom:0.000000px;}
.y19_c00097{bottom:67.335000px;}
.y21_c00097{bottom:135.585000px;}
.y20_c00097{bottom:176.835000px;}
.y1f_c00097{bottom:200.085000px;}
.y1e_c00097{bottom:241.335000px;}
.y1d_c00097{bottom:264.585000px;}
.y1c_c00097{bottom:305.835000px;}
.y1b_c00097{bottom:325.335000px;}
.y1a_c00097{bottom:348.585000px;}
.y17_c00097{bottom:437.835000px;}
.y16_c00097{bottom:464.835000px;}
.y15_c00097{bottom:491.835000px;}
.y14_c00097{bottom:539.835000px;}
.y13_c00097{bottom:566.835000px;}
.y12_c00097{bottom:593.835000px;}
.y11_c00097{bottom:620.835000px;}
.y10_c00097{bottom:647.835000px;}
.yf_c00097{bottom:674.835000px;}
.ye_c00097{bottom:722.835000px;}
.yd_c00097{bottom:749.835000px;}
.yc_c00097{bottom:797.835000px;}
.yb_c00097{bottom:824.835000px;}
.ya_c00097{bottom:851.835000px;}
.y9_c00097{bottom:878.835000px;}
.y8_c00097{bottom:905.835000px;}
.y7_c00097{bottom:932.835000px;}
.y6_c00097{bottom:959.835000px;}
.y5_c00097{bottom:986.835000px;}
.y4_c00097{bottom:1013.835000px;}
.y3_c00097{bottom:1040.835000px;}
.y2_c00097{bottom:1067.835000px;}
.y1_c00097{bottom:1094.835000px;}
.y18_c00097{bottom:1193.835000px;}
.h7_c00097{height:27.421876px;}
.h8_c00097{height:41.132812px;}
.h6_c00097{height:44.208984px;}
.h3_c00097{height:51.257812px;}
.h5_c00097{height:56.074219px;}
.h4_c00097{height:57.258075px;}
.h2_c00097{height:1261.500000px;}
.h0_c00097{height:1262.835000px;}
.h1_c00097{height:1263.000000px;}
.w2_c00097{width:892.500000px;}
.w0_c00097{width:892.935000px;}
.w1_c00097{width:893.250000px;}
.x0_c00097{left:0.000000px;}
.x1_c00097{left:65.480310px;}
@media print{
.v2_c00097{vertical-align:-20.521067pt;}
.v3_c00097{vertical-align:-13.333333pt;}
.v0_c00097{vertical-align:0.000000pt;}
.v1_c00097{vertical-align:20.521067pt;}
.ls4_c00097{letter-spacing:-3.984000pt;}
.ls5_c00097{letter-spacing:-0.138667pt;}
.ls2_c00097{letter-spacing:-0.008533pt;}
.ls1_c00097{letter-spacing:0.000000pt;}
.ls0_c00097{letter-spacing:0.006400pt;}
.ls3_c00097{letter-spacing:0.010667pt;}
.ws1_c00097{word-spacing:-17.600000pt;}
.ws0_c00097{word-spacing:-11.724800pt;}
.ws2_c00097{word-spacing:-8.888889pt;}
.ws3_c00097{word-spacing:0.000000pt;}
._16_c00097{margin-left:-9.408000pt;}
._f_c00097{margin-left:-5.958400pt;}
._9_c00097{margin-left:-3.673600pt;}
._4_c00097{margin-left:-2.592000pt;}
._2_c00097{margin-left:-1.075200pt;}
._0_c00097{width:1.043200pt;}
._6_c00097{width:2.086400pt;}
._1_c00097{width:3.001600pt;}
._3_c00097{width:3.910400pt;}
._5_c00097{width:4.857600pt;}
._7_c00097{width:6.272000pt;}
._8_c00097{width:7.584000pt;}
._a_c00097{width:8.492800pt;}
._18_c00097{width:9.395200pt;}
._15_c00097{width:10.489600pt;}
._e_c00097{width:12.160000pt;}
._b_c00097{width:13.977600pt;}
._c_c00097{width:15.552000pt;}
._d_c00097{width:19.200000pt;}
._14_c00097{width:20.096000pt;}
._11_c00097{width:21.030400pt;}
._13_c00097{width:22.048000pt;}
._12_c00097{width:23.558400pt;}
._10_c00097{width:24.672000pt;}
._17_c00097{width:26.809600pt;}
.fs3_c00097{font-size:35.555557pt;}
.fs1_c00097{font-size:42.666667pt;}
.fs2_c00097{font-size:53.333333pt;}
.fs0_c00097{font-size:64.000000pt;}
.y0_c00097{bottom:0.000000pt;}
.y19_c00097{bottom:59.853333pt;}
.y21_c00097{bottom:120.520000pt;}
.y20_c00097{bottom:157.186667pt;}
.y1f_c00097{bottom:177.853333pt;}
.y1e_c00097{bottom:214.520000pt;}
.y1d_c00097{bottom:235.186667pt;}
.y1c_c00097{bottom:271.853333pt;}
.y1b_c00097{bottom:289.186667pt;}
.y1a_c00097{bottom:309.853333pt;}
.y17_c00097{bottom:389.186667pt;}
.y16_c00097{bottom:413.186667pt;}
.y15_c00097{bottom:437.186667pt;}
.y14_c00097{bottom:479.853333pt;}
.y13_c00097{bottom:503.853333pt;}
.y12_c00097{bottom:527.853333pt;}
.y11_c00097{bottom:551.853333pt;}
.y10_c00097{bottom:575.853333pt;}
.yf_c00097{bottom:599.853333pt;}
.ye_c00097{bottom:642.520000pt;}
.yd_c00097{bottom:666.520000pt;}
.yc_c00097{bottom:709.186667pt;}
.yb_c00097{bottom:733.186667pt;}
.ya_c00097{bottom:757.186667pt;}
.y9_c00097{bottom:781.186667pt;}
.y8_c00097{bottom:805.186667pt;}
.y7_c00097{bottom:829.186667pt;}
.y6_c00097{bottom:853.186667pt;}
.y5_c00097{bottom:877.186667pt;}
.y4_c00097{bottom:901.186667pt;}
.y3_c00097{bottom:925.186667pt;}
.y2_c00097{bottom:949.186667pt;}
.y1_c00097{bottom:973.186667pt;}
.y18_c00097{bottom:1061.186667pt;}
.h7_c00097{height:24.375001pt;}
.h8_c00097{height:36.562500pt;}
.h6_c00097{height:39.296875pt;}
.h3_c00097{height:45.562500pt;}
.h5_c00097{height:49.843750pt;}
.h4_c00097{height:50.896067pt;}
.h2_c00097{height:1121.333333pt;}
.h0_c00097{height:1122.520000pt;}
.h1_c00097{height:1122.666667pt;}
.w2_c00097{width:793.333333pt;}
.w0_c00097{width:793.720000pt;}
.w1_c00097{width:794.000000pt;}
.x0_c00097{left:0.000000pt;}
.x1_c00097{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_edce80df125d5fb7394e339b.woff2')format("woff");}.ff1_c00098{font-family:ff1_c00098;line-height:0.934082;font-style:normal;font-weight:normal;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_200f36170c8241fec8747174.woff2')format("woff");}.ff2_c00098{font-family:ff2_c00098;line-height:0.956543;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00098{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00098{vertical-align:0.000000px;}
.ls1_c00098{letter-spacing:0.000000px;}
.ls0_c00098{letter-spacing:0.012000px;}
.sc__c00098{text-shadow:none;}
.sc0_c00098{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00098{-webkit-text-stroke:0px transparent;}
.sc0_c00098{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00098{word-spacing:0.000000px;}
._5_c00098{margin-left:-3.967200px;}
._1_c00098{margin-left:-2.858400px;}
._9_c00098{margin-left:-1.634400px;}
._7_c00098{width:1.231200px;}
._3_c00098{width:2.620800px;}
._4_c00098{width:4.644000px;}
._8_c00098{width:6.069600px;}
._0_c00098{width:7.228800px;}
._2_c00098{width:10.123200px;}
._6_c00098{width:11.181600px;}
._b_c00098{width:26.748000px;}
._a_c00098{width:29.376000px;}
._d_c00098{width:30.996000px;}
._c_c00098{width:32.198400px;}
.fc0_c00098{color:rgb(0,0,0);}
.fs1_c00098{font-size:60.000000px;}
.fs0_c00098{font-size:72.000000px;}
.y0_c00098{bottom:0.000000px;}
.y6_c00098{bottom:67.335000px;}
.y4_c00098{bottom:1013.835000px;}
.y3_c00098{bottom:1040.835000px;}
.y2_c00098{bottom:1067.835000px;}
.y1_c00098{bottom:1094.835000px;}
.y5_c00098{bottom:1193.835000px;}
.h4_c00098{height:44.121094px;}
.h3_c00098{height:51.257812px;}
.h2_c00098{height:1261.500000px;}
.h0_c00098{height:1262.835000px;}
.h1_c00098{height:1263.000000px;}
.w2_c00098{width:892.500000px;}
.w0_c00098{width:892.935000px;}
.w1_c00098{width:893.250000px;}
.x0_c00098{left:0.000000px;}
.x1_c00098{left:150.519750px;}
.x2_c00098{left:380.516100px;}
.x3_c00098{left:810.770100px;}
@media print{
.v0_c00098{vertical-align:0.000000pt;}
.ls1_c00098{letter-spacing:0.000000pt;}
.ls0_c00098{letter-spacing:0.010667pt;}
.ws0_c00098{word-spacing:0.000000pt;}
._5_c00098{margin-left:-3.526400pt;}
._1_c00098{margin-left:-2.540800pt;}
._9_c00098{margin-left:-1.452800pt;}
._7_c00098{width:1.094400pt;}
._3_c00098{width:2.329600pt;}
._4_c00098{width:4.128000pt;}
._8_c00098{width:5.395200pt;}
._0_c00098{width:6.425600pt;}
._2_c00098{width:8.998400pt;}
._6_c00098{width:9.939200pt;}
._b_c00098{width:23.776000pt;}
._a_c00098{width:26.112000pt;}
._d_c00098{width:27.552000pt;}
._c_c00098{width:28.620800pt;}
.fs1_c00098{font-size:53.333333pt;}
.fs0_c00098{font-size:64.000000pt;}
.y0_c00098{bottom:0.000000pt;}
.y6_c00098{bottom:59.853333pt;}
.y4_c00098{bottom:901.186667pt;}
.y3_c00098{bottom:925.186667pt;}
.y2_c00098{bottom:949.186667pt;}
.y1_c00098{bottom:973.186667pt;}
.y5_c00098{bottom:1061.186667pt;}
.h4_c00098{height:39.218750pt;}
.h3_c00098{height:45.562500pt;}
.h2_c00098{height:1121.333333pt;}
.h0_c00098{height:1122.520000pt;}
.h1_c00098{height:1122.666667pt;}
.w2_c00098{width:793.333333pt;}
.w0_c00098{width:793.720000pt;}
.w1_c00098{width:794.000000pt;}
.x0_c00098{left:0.000000pt;}
.x1_c00098{left:133.795333pt;}
.x2_c00098{left:338.236533pt;}
.x3_c00098{left:720.684533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9b168149f9570c3e5ac599f2.woff2')format("woff");}.ff1_c00099{font-family:ff1_c00099;line-height:0.892578;font-style:normal;font-weight:normal;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_bc857719d9d888169fef4a50.woff2')format("woff");}.ff2_c00099{font-family:ff2_c00099;line-height:0.934082;font-style:normal;font-weight:normal;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_60fc8789168985f54ec94777.woff2')format("woff");}.ff3_c00099{font-family:ff3_c00099;line-height:0.932129;font-style:normal;font-weight:normal;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_d1507b91917c15f4acf25704.woff2')format("woff");}.ff4_c00099{font-family:ff4_c00099;line-height:0.756348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00099;src:url('chunks/assets/font_39c9a4f011575ee890f13146.woff2')format("woff");}.ff5_c00099{font-family:ff5_c00099;line-height:1.155762;font-style:normal;font-weight: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_c00099;src:url('chunks/assets/font_6b5f4c8456e04efedda6b232.woff2')format("woff");}.ff6_c00099{font-family:ff6_c00099;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00099;src:url('chunks/assets/font_af497699d76b8e96f61c3b1d.woff2')format("woff");}.ff7_c00099{font-family:ff7_c00099;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00099{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00099{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00099{vertical-align:-23.086200px;}
.v4_c00099{vertical-align:-19.238400px;}
.v3_c00099{vertical-align:-15.000000px;}
.v0_c00099{vertical-align:0.000000px;}
.v1_c00099{vertical-align:23.086200px;}
.lsb_c00099{letter-spacing:-2.562000px;}
.ls9_c00099{letter-spacing:-0.468000px;}
.ls8_c00099{letter-spacing:-0.014400px;}
.lsd_c00099{letter-spacing:-0.012000px;}
.ls7_c00099{letter-spacing:0.000000px;}
.ls0_c00099{letter-spacing:0.010800px;}
.lsa_c00099{letter-spacing:0.012000px;}
.ls2_c00099{letter-spacing:0.014400px;}
.ls1_c00099{letter-spacing:0.182400px;}
.ls4_c00099{letter-spacing:0.211200px;}
.ls3_c00099{letter-spacing:0.481800px;}
.lsc_c00099{letter-spacing:1.960000px;}
.ls6_c00099{letter-spacing:3.999999px;}
.ls5_c00099{letter-spacing:15.552000px;}
.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:-19.800000px;}
.ws3_c00099{word-spacing:-10.000001px;}
.ws1_c00099{word-spacing:-0.086400px;}
.ws0_c00099{word-spacing:-0.057600px;}
.ws4_c00099{word-spacing:0.000000px;}
._19_c00099{margin-left:-6.642021px;}
._1a_c00099{margin-left:-5.438220px;}
._3_c00099{margin-left:-4.118400px;}
._1_c00099{margin-left:-2.887200px;}
._0_c00099{margin-left:-1.848120px;}
._9_c00099{width:1.656000px;}
._7_c00099{width:2.800800px;}
._d_c00099{width:4.255200px;}
._b_c00099{width:5.709600px;}
._f_c00099{width:7.521720px;}
._c_c00099{width:8.568000px;}
._e_c00099{width:9.576000px;}
._8_c00099{width:11.628000px;}
._a_c00099{width:12.758400px;}
._5_c00099{width:14.400000px;}
._6_c00099{width:16.276920px;}
._2_c00099{width:17.287200px;}
._4_c00099{width:18.583200px;}
._15_c00099{width:21.878160px;}
._18_c00099{width:23.242320px;}
._16_c00099{width:25.336800px;}
._17_c00099{width:26.596800px;}
._12_c00099{width:31.708800px;}
._14_c00099{width:32.911200px;}
._13_c00099{width:34.509600px;}
._10_c00099{width:36.372120px;}
._11_c00099{width:37.411200px;}
.fc0_c00099{color:rgb(0,0,0);}
.fs5_c00099{font-size:40.000002px;}
.fs3_c00099{font-size:48.000000px;}
.fs4_c00099{font-size:60.000000px;}
.fs2_c00099{font-size:72.000000px;}
.fs0_c00099{font-size:108.000000px;}
.fs1_c00099{font-size:120.000000px;}
.y0_c00099{bottom:0.000000px;}
.y12_c00099{bottom:67.335000px;}
.y1d_c00099{bottom:131.835000px;}
.y1c_c00099{bottom:151.335000px;}
.y1b_c00099{bottom:170.835000px;}
.y1a_c00099{bottom:195.144600px;}
.y19_c00099{bottom:235.335000px;}
.y18_c00099{bottom:254.835000px;}
.y17_c00099{bottom:274.335000px;}
.y16_c00099{bottom:293.835000px;}
.y15_c00099{bottom:317.085000px;}
.y14_c00099{bottom:362.085000px;}
.y13_c00099{bottom:407.085000px;}
.y10_c00099{bottom:487.335000px;}
.yf_c00099{bottom:514.335000px;}
.ye_c00099{bottom:541.335000px;}
.yd_c00099{bottom:568.335000px;}
.yc_c00099{bottom:595.335000px;}
.yb_c00099{bottom:643.335000px;}
.ya_c00099{bottom:670.335000px;}
.y9_c00099{bottom:697.335000px;}
.y8_c00099{bottom:724.335000px;}
.y7_c00099{bottom:751.335000px;}
.y6_c00099{bottom:778.335000px;}
.y5_c00099{bottom:805.335000px;}
.y4_c00099{bottom:832.335000px;}
.y3_c00099{bottom:859.335000px;}
.y2_c00099{bottom:886.335000px;}
.y1_c00099{bottom:1036.335000px;}
.y11_c00099{bottom:1193.835000px;}
.ha_c00099{height:34.433475px;}
.h8_c00099{height:38.671875px;}
.h7_c00099{height:44.208984px;}
.h4_c00099{height:51.257812px;}
.h9_c00099{height:53.671875px;}
.h6_c00099{height:56.074219px;}
.h5_c00099{height:57.258075px;}
.h3_c00099{height:85.898438px;}
.h2_c00099{height:1261.500000px;}
.h0_c00099{height:1262.835000px;}
.h1_c00099{height:1263.000000px;}
.w2_c00099{width:892.500000px;}
.w0_c00099{width:892.935000px;}
.w1_c00099{width:893.250000px;}
.x0_c00099{left:0.000000px;}
.x1_c00099{left:65.480310px;}
@media print{
.v2_c00099{vertical-align:-20.521067pt;}
.v4_c00099{vertical-align:-17.100800pt;}
.v3_c00099{vertical-align:-13.333333pt;}
.v0_c00099{vertical-align:0.000000pt;}
.v1_c00099{vertical-align:20.521067pt;}
.lsb_c00099{letter-spacing:-2.277333pt;}
.ls9_c00099{letter-spacing:-0.416000pt;}
.ls8_c00099{letter-spacing:-0.012800pt;}
.lsd_c00099{letter-spacing:-0.010667pt;}
.ls7_c00099{letter-spacing:0.000000pt;}
.ls0_c00099{letter-spacing:0.009600pt;}
.lsa_c00099{letter-spacing:0.010667pt;}
.ls2_c00099{letter-spacing:0.012800pt;}
.ls1_c00099{letter-spacing:0.162133pt;}
.ls4_c00099{letter-spacing:0.187733pt;}
.ls3_c00099{letter-spacing:0.428267pt;}
.lsc_c00099{letter-spacing:1.742222pt;}
.ls6_c00099{letter-spacing:3.555555pt;}
.ls5_c00099{letter-spacing:13.824000pt;}
.ws2_c00099{word-spacing:-17.600000pt;}
.ws3_c00099{word-spacing:-8.888889pt;}
.ws1_c00099{word-spacing:-0.076800pt;}
.ws0_c00099{word-spacing:-0.051200pt;}
.ws4_c00099{word-spacing:0.000000pt;}
._19_c00099{margin-left:-5.904019pt;}
._1a_c00099{margin-left:-4.833973pt;}
._3_c00099{margin-left:-3.660800pt;}
._1_c00099{margin-left:-2.566400pt;}
._0_c00099{margin-left:-1.642773pt;}
._9_c00099{width:1.472000pt;}
._7_c00099{width:2.489600pt;}
._d_c00099{width:3.782400pt;}
._b_c00099{width:5.075200pt;}
._f_c00099{width:6.685973pt;}
._c_c00099{width:7.616000pt;}
._e_c00099{width:8.512000pt;}
._8_c00099{width:10.336000pt;}
._a_c00099{width:11.340800pt;}
._5_c00099{width:12.800000pt;}
._6_c00099{width:14.468373pt;}
._2_c00099{width:15.366400pt;}
._4_c00099{width:16.518400pt;}
._15_c00099{width:19.447253pt;}
._18_c00099{width:20.659840pt;}
._16_c00099{width:22.521600pt;}
._17_c00099{width:23.641600pt;}
._12_c00099{width:28.185600pt;}
._14_c00099{width:29.254400pt;}
._13_c00099{width:30.675200pt;}
._10_c00099{width:32.330773pt;}
._11_c00099{width:33.254400pt;}
.fs5_c00099{font-size:35.555557pt;}
.fs3_c00099{font-size:42.666667pt;}
.fs4_c00099{font-size:53.333333pt;}
.fs2_c00099{font-size:64.000000pt;}
.fs0_c00099{font-size:96.000000pt;}
.fs1_c00099{font-size:106.666667pt;}
.y0_c00099{bottom:0.000000pt;}
.y12_c00099{bottom:59.853333pt;}
.y1d_c00099{bottom:117.186667pt;}
.y1c_c00099{bottom:134.520000pt;}
.y1b_c00099{bottom:151.853333pt;}
.y1a_c00099{bottom:173.461867pt;}
.y19_c00099{bottom:209.186667pt;}
.y18_c00099{bottom:226.520000pt;}
.y17_c00099{bottom:243.853333pt;}
.y16_c00099{bottom:261.186667pt;}
.y15_c00099{bottom:281.853333pt;}
.y14_c00099{bottom:321.853333pt;}
.y13_c00099{bottom:361.853333pt;}
.y10_c00099{bottom:433.186667pt;}
.yf_c00099{bottom:457.186667pt;}
.ye_c00099{bottom:481.186667pt;}
.yd_c00099{bottom:505.186667pt;}
.yc_c00099{bottom:529.186667pt;}
.yb_c00099{bottom:571.853333pt;}
.ya_c00099{bottom:595.853333pt;}
.y9_c00099{bottom:619.853333pt;}
.y8_c00099{bottom:643.853333pt;}
.y7_c00099{bottom:667.853333pt;}
.y6_c00099{bottom:691.853333pt;}
.y5_c00099{bottom:715.853333pt;}
.y4_c00099{bottom:739.853333pt;}
.y3_c00099{bottom:763.853333pt;}
.y2_c00099{bottom:787.853333pt;}
.y1_c00099{bottom:921.186667pt;}
.y11_c00099{bottom:1061.186667pt;}
.ha_c00099{height:30.607533pt;}
.h8_c00099{height:34.375000pt;}
.h7_c00099{height:39.296875pt;}
.h4_c00099{height:45.562500pt;}
.h9_c00099{height:47.708333pt;}
.h6_c00099{height:49.843750pt;}
.h5_c00099{height:50.896067pt;}
.h3_c00099{height:76.354167pt;}
.h2_c00099{height:1121.333333pt;}
.h0_c00099{height:1122.520000pt;}
.h1_c00099{height:1122.666667pt;}
.w2_c00099{width:793.333333pt;}
.w0_c00099{width:793.720000pt;}
.w1_c00099{width:794.000000pt;}
.x0_c00099{left:0.000000pt;}
.x1_c00099{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_52a248edb41f3d045784695f.woff2')format("woff");}.ff1_c00100{font-family:ff1_c00100;line-height:1.163086;font-style:normal;font-weight:normal;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_3c9766349d68cad1ace11291.woff2')format("woff");}.ff2_c00100{font-family:ff2_c00100;line-height:0.976074;font-style:normal;font-weight:normal;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_9df4f01b27bcf1b6940b859a.woff2')format("woff");}.ff3_c00100{font-family:ff3_c00100;line-height:0.956543;font-style:normal;font-weight:normal;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_8730dc3cffb286fd6bfe896b.woff2')format("woff");}.ff4_c00100{font-family:ff4_c00100;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00100;src:url('chunks/assets/font_7b2ccb480baaccd7b1ab29a6.woff2')format("woff");}.ff5_c00100{font-family:ff5_c00100;line-height:0.889648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00100{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00100{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00100{vertical-align:-23.086200px;}
.v3_c00100{vertical-align:-15.000000px;}
.v0_c00100{vertical-align:0.000000px;}
.v1_c00100{vertical-align:23.086200px;}
.ls5_c00100{letter-spacing:-5.130000px;}
.ls6_c00100{letter-spacing:-0.012000px;}
.ls4_c00100{letter-spacing:0.000000px;}
.ls2_c00100{letter-spacing:0.012000px;}
.ls0_c00100{letter-spacing:0.096000px;}
.ls1_c00100{letter-spacing:1.528200px;}
.ls3_c00100{letter-spacing:3.999999px;}
.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:-14.988000px;}
.ws0_c00100{word-spacing:-13.200000px;}
.ws1_c00100{word-spacing:-10.000001px;}
.ws3_c00100{word-spacing:0.000000px;}
._11_c00100{margin-left:-7.929600px;}
._12_c00100{margin-left:-6.642201px;}
._10_c00100{margin-left:-5.640000px;}
._5_c00100{margin-left:-4.380000px;}
._3_c00100{margin-left:-3.009600px;}
._1_c00100{margin-left:-1.108800px;}
._0_c00100{width:1.396800px;}
._2_c00100{width:2.505600px;}
._4_c00100{width:4.413600px;}
._6_c00100{width:5.709600px;}
._f_c00100{width:7.552800px;}
._7_c00100{width:8.920800px;}
._d_c00100{width:10.792800px;}
._b_c00100{width:11.959200px;}
._9_c00100{width:13.334400px;}
._8_c00100{width:14.472000px;}
._c_c00100{width:16.336800px;}
._a_c00100{width:17.728800px;}
._e_c00100{width:21.009600px;}
.fc0_c00100{color:rgb(0,0,0);}
.fs4_c00100{font-size:40.000002px;}
.fs1_c00100{font-size:48.000000px;}
.fs2_c00100{font-size:54.000000px;}
.fs3_c00100{font-size:60.000000px;}
.fs0_c00100{font-size:72.000000px;}
.y0_c00100{bottom:0.000000px;}
.y8_c00100{bottom:10.500000px;}
.y7_c00100{bottom:33.000000px;}
.ye_c00100{bottom:67.335000px;}
.y17_c00100{bottom:135.585000px;}
.y16_c00100{bottom:176.835000px;}
.y15_c00100{bottom:200.085000px;}
.y14_c00100{bottom:241.335000px;}
.y13_c00100{bottom:260.835000px;}
.y12_c00100{bottom:280.335000px;}
.y11_c00100{bottom:299.835000px;}
.y10_c00100{bottom:319.335000px;}
.yf_c00100{bottom:342.585000px;}
.yc_c00100{bottom:437.835000px;}
.yb_c00100{bottom:464.835000px;}
.ya_c00100{bottom:491.835000px;}
.y9_c00100{bottom:518.835000px;}
.y6_c00100{bottom:559.335000px;}
.y5_c00100{bottom:986.835000px;}
.y4_c00100{bottom:1013.835000px;}
.y3_c00100{bottom:1040.835000px;}
.y2_c00100{bottom:1067.835000px;}
.y1_c00100{bottom:1094.835000px;}
.yd_c00100{bottom:1193.835000px;}
.h8_c00100{height:38.671875px;}
.h6_c00100{height:42.292969px;}
.h7_c00100{height:44.121094px;}
.h9_c00100{height:53.671875px;}
.h4_c00100{height:67.746094px;}
.h3_c00100{height:68.250262px;}
.h5_c00100{height:396.000000px;}
.h2_c00100{height:1261.500000px;}
.h0_c00100{height:1262.835000px;}
.h1_c00100{height:1263.000000px;}
.w3_c00100{width:573.000000px;}
.w2_c00100{width:892.500000px;}
.w0_c00100{width:892.935000px;}
.w1_c00100{width:893.250000px;}
.x0_c00100{left:0.000000px;}
.x3_c00100{left:35.962260px;}
.x1_c00100{left:150.519750px;}
.x2_c00100{left:202.500000px;}
.x4_c00100{left:230.140050px;}
.x5_c00100{left:380.516100px;}
.x6_c00100{left:810.770100px;}
@media print{
.v2_c00100{vertical-align:-20.521067pt;}
.v3_c00100{vertical-align:-13.333333pt;}
.v0_c00100{vertical-align:0.000000pt;}
.v1_c00100{vertical-align:20.521067pt;}
.ls5_c00100{letter-spacing:-4.560000pt;}
.ls6_c00100{letter-spacing:-0.010667pt;}
.ls4_c00100{letter-spacing:0.000000pt;}
.ls2_c00100{letter-spacing:0.010667pt;}
.ls0_c00100{letter-spacing:0.085333pt;}
.ls1_c00100{letter-spacing:1.358400pt;}
.ls3_c00100{letter-spacing:3.555555pt;}
.ws2_c00100{word-spacing:-13.322667pt;}
.ws0_c00100{word-spacing:-11.733333pt;}
.ws1_c00100{word-spacing:-8.888889pt;}
.ws3_c00100{word-spacing:0.000000pt;}
._11_c00100{margin-left:-7.048533pt;}
._12_c00100{margin-left:-5.904179pt;}
._10_c00100{margin-left:-5.013333pt;}
._5_c00100{margin-left:-3.893333pt;}
._3_c00100{margin-left:-2.675200pt;}
._1_c00100{margin-left:-0.985600pt;}
._0_c00100{width:1.241600pt;}
._2_c00100{width:2.227200pt;}
._4_c00100{width:3.923200pt;}
._6_c00100{width:5.075200pt;}
._f_c00100{width:6.713600pt;}
._7_c00100{width:7.929600pt;}
._d_c00100{width:9.593600pt;}
._b_c00100{width:10.630400pt;}
._9_c00100{width:11.852800pt;}
._8_c00100{width:12.864000pt;}
._c_c00100{width:14.521600pt;}
._a_c00100{width:15.758933pt;}
._e_c00100{width:18.675200pt;}
.fs4_c00100{font-size:35.555557pt;}
.fs1_c00100{font-size:42.666667pt;}
.fs2_c00100{font-size:48.000000pt;}
.fs3_c00100{font-size:53.333333pt;}
.fs0_c00100{font-size:64.000000pt;}
.y0_c00100{bottom:0.000000pt;}
.y8_c00100{bottom:9.333333pt;}
.y7_c00100{bottom:29.333333pt;}
.ye_c00100{bottom:59.853333pt;}
.y17_c00100{bottom:120.520000pt;}
.y16_c00100{bottom:157.186667pt;}
.y15_c00100{bottom:177.853333pt;}
.y14_c00100{bottom:214.520000pt;}
.y13_c00100{bottom:231.853333pt;}
.y12_c00100{bottom:249.186667pt;}
.y11_c00100{bottom:266.520000pt;}
.y10_c00100{bottom:283.853333pt;}
.yf_c00100{bottom:304.520000pt;}
.yc_c00100{bottom:389.186667pt;}
.yb_c00100{bottom:413.186667pt;}
.ya_c00100{bottom:437.186667pt;}
.y9_c00100{bottom:461.186667pt;}
.y6_c00100{bottom:497.186667pt;}
.y5_c00100{bottom:877.186667pt;}
.y4_c00100{bottom:901.186667pt;}
.y3_c00100{bottom:925.186667pt;}
.y2_c00100{bottom:949.186667pt;}
.y1_c00100{bottom:973.186667pt;}
.yd_c00100{bottom:1061.186667pt;}
.h8_c00100{height:34.375000pt;}
.h6_c00100{height:37.593750pt;}
.h7_c00100{height:39.218750pt;}
.h9_c00100{height:47.708333pt;}
.h4_c00100{height:60.218750pt;}
.h3_c00100{height:60.666900pt;}
.h5_c00100{height:352.000000pt;}
.h2_c00100{height:1121.333333pt;}
.h0_c00100{height:1122.520000pt;}
.h1_c00100{height:1122.666667pt;}
.w3_c00100{width:509.333333pt;}
.w2_c00100{width:793.333333pt;}
.w0_c00100{width:793.720000pt;}
.w1_c00100{width:794.000000pt;}
.x0_c00100{left:0.000000pt;}
.x3_c00100{left:31.966453pt;}
.x1_c00100{left:133.795333pt;}
.x2_c00100{left:180.000000pt;}
.x4_c00100{left:204.568933pt;}
.x5_c00100{left:338.236533pt;}
.x6_c00100{left:720.684533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9938a1d38f2d1f3f30236549.woff2')format("woff");}.ff1_c00101{font-family:ff1_c00101;line-height:0.934082;font-style:normal;font-weight:normal;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_6088aec20df83039ba407eb2.woff2')format("woff");}.ff2_c00101{font-family:ff2_c00101;line-height:0.892578;font-style:normal;font-weight:normal;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_a43943f58878cd90857d7815.woff2')format("woff");}.ff3_c00101{font-family:ff3_c00101;line-height:0.756836;font-style:normal;font-weight:normal;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_45ad5763af85ec50492de373.woff2')format("woff");}.ff4_c00101{font-family:ff4_c00101;line-height:1.155762;font-style:normal;font-weight:normal;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_2bb73e78968c1e152886106d.woff2')format("woff");}.ff5_c00101{font-family:ff5_c00101;line-height:1.112305;font-style:normal;font-weight: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_18a260bd4843adc90a389939.woff2')format("woff");}.ff6_c00101{font-family:ff6_c00101;line-height:0.891113;font-style: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);}
.v2_c00101{vertical-align:-23.086200px;}
.v3_c00101{vertical-align:-15.000000px;}
.v0_c00101{vertical-align:0.000000px;}
.v1_c00101{vertical-align:23.086200px;}
.ls7_c00101{letter-spacing:-0.522000px;}
.ls6_c00101{letter-spacing:-0.012000px;}
.ls3_c00101{letter-spacing:-0.009600px;}
.ls2_c00101{letter-spacing:0.000000px;}
.ls1_c00101{letter-spacing:0.007200px;}
.ls5_c00101{letter-spacing:0.012000px;}
.ls4_c00101{letter-spacing:0.828000px;}
.ls0_c00101{letter-spacing:1.309800px;}
.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;}
}
.ws3_c00101{word-spacing:-14.988000px;}
.ws0_c00101{word-spacing:-13.200000px;}
.ws1_c00101{word-spacing:-13.190400px;}
.ws2_c00101{word-spacing:-10.000001px;}
.ws4_c00101{word-spacing:0.000000px;}
._16_c00101{margin-left:-8.266842px;}
._a_c00101{margin-left:-7.120800px;}
._b_c00101{margin-left:-5.275200px;}
._15_c00101{margin-left:-4.240962px;}
._7_c00101{margin-left:-3.196800px;}
._5_c00101{margin-left:-1.821600px;}
._3_c00101{width:1.360800px;}
._1_c00101{width:2.599200px;}
._9_c00101{width:4.007760px;}
._2_c00101{width:5.169600px;}
._4_c00101{width:6.429600px;}
._0_c00101{width:7.812000px;}
._6_c00101{width:9.604800px;}
._8_c00101{width:10.929600px;}
._14_c00101{width:13.977840px;}
._d_c00101{width:17.654400px;}
._13_c00101{width:21.329040px;}
._c_c00101{width:22.492800px;}
._e_c00101{width:23.817600px;}
._10_c00101{width:25.344000px;}
._11_c00101{width:27.129600px;}
._f_c00101{width:28.814400px;}
._12_c00101{width:30.367200px;}
.fc0_c00101{color:rgb(0,0,0);}
.fs4_c00101{font-size:40.000002px;}
.fs1_c00101{font-size:48.000000px;}
.fs3_c00101{font-size:60.000000px;}
.fs0_c00101{font-size:72.000000px;}
.fs2_c00101{font-size:84.000000px;}
.y0_c00101{bottom:0.000000px;}
.y12_c00101{bottom:67.335000px;}
.y1b_c00101{bottom:135.585000px;}
.y1a_c00101{bottom:176.835000px;}
.y19_c00101{bottom:200.085000px;}
.y18_c00101{bottom:245.085000px;}
.y17_c00101{bottom:286.335000px;}
.y16_c00101{bottom:309.585000px;}
.y15_c00101{bottom:354.585000px;}
.y14_c00101{bottom:395.835000px;}
.y13_c00101{bottom:419.085000px;}
.y10_c00101{bottom:557.835000px;}
.yf_c00101{bottom:584.835000px;}
.ye_c00101{bottom:611.835000px;}
.yd_c00101{bottom:638.835000px;}
.yc_c00101{bottom:665.835000px;}
.yb_c00101{bottom:725.835000px;}
.ya_c00101{bottom:775.335000px;}
.y9_c00101{bottom:802.335000px;}
.y8_c00101{bottom:829.335000px;}
.y7_c00101{bottom:856.335000px;}
.y6_c00101{bottom:883.335000px;}
.y5_c00101{bottom:910.335000px;}
.y4_c00101{bottom:970.335000px;}
.y3_c00101{bottom:1019.835000px;}
.y2_c00101{bottom:1067.835000px;}
.y1_c00101{bottom:1094.835000px;}
.y11_c00101{bottom:1193.835000px;}
.h8_c00101{height:38.671875px;}
.h7_c00101{height:44.208984px;}
.h3_c00101{height:51.257812px;}
.h9_c00101{height:53.671875px;}
.h6_c00101{height:56.074219px;}
.h4_c00101{height:57.258075px;}
.h5_c00101{height:60.128906px;}
.h2_c00101{height:1261.500000px;}
.h0_c00101{height:1262.835000px;}
.h1_c00101{height:1263.000000px;}
.w2_c00101{width:892.500000px;}
.w0_c00101{width:892.935000px;}
.w1_c00101{width:893.250000px;}
.x0_c00101{left:0.000000px;}
.x1_c00101{left:65.480310px;}
@media print{
.v2_c00101{vertical-align:-20.521067pt;}
.v3_c00101{vertical-align:-13.333333pt;}
.v0_c00101{vertical-align:0.000000pt;}
.v1_c00101{vertical-align:20.521067pt;}
.ls7_c00101{letter-spacing:-0.464000pt;}
.ls6_c00101{letter-spacing:-0.010667pt;}
.ls3_c00101{letter-spacing:-0.008533pt;}
.ls2_c00101{letter-spacing:0.000000pt;}
.ls1_c00101{letter-spacing:0.006400pt;}
.ls5_c00101{letter-spacing:0.010667pt;}
.ls4_c00101{letter-spacing:0.736000pt;}
.ls0_c00101{letter-spacing:1.164267pt;}
.ws3_c00101{word-spacing:-13.322667pt;}
.ws0_c00101{word-spacing:-11.733333pt;}
.ws1_c00101{word-spacing:-11.724800pt;}
.ws2_c00101{word-spacing:-8.888889pt;}
.ws4_c00101{word-spacing:0.000000pt;}
._16_c00101{margin-left:-7.348304pt;}
._a_c00101{margin-left:-6.329600pt;}
._b_c00101{margin-left:-4.689067pt;}
._15_c00101{margin-left:-3.769744pt;}
._7_c00101{margin-left:-2.841600pt;}
._5_c00101{margin-left:-1.619200pt;}
._3_c00101{width:1.209600pt;}
._1_c00101{width:2.310400pt;}
._9_c00101{width:3.562453pt;}
._2_c00101{width:4.595200pt;}
._4_c00101{width:5.715200pt;}
._0_c00101{width:6.944000pt;}
._6_c00101{width:8.537600pt;}
._8_c00101{width:9.715200pt;}
._14_c00101{width:12.424747pt;}
._d_c00101{width:15.692800pt;}
._13_c00101{width:18.959147pt;}
._c_c00101{width:19.993600pt;}
._e_c00101{width:21.171200pt;}
._10_c00101{width:22.528000pt;}
._11_c00101{width:24.115200pt;}
._f_c00101{width:25.612800pt;}
._12_c00101{width:26.993067pt;}
.fs4_c00101{font-size:35.555557pt;}
.fs1_c00101{font-size:42.666667pt;}
.fs3_c00101{font-size:53.333333pt;}
.fs0_c00101{font-size:64.000000pt;}
.fs2_c00101{font-size:74.666667pt;}
.y0_c00101{bottom:0.000000pt;}
.y12_c00101{bottom:59.853333pt;}
.y1b_c00101{bottom:120.520000pt;}
.y1a_c00101{bottom:157.186667pt;}
.y19_c00101{bottom:177.853333pt;}
.y18_c00101{bottom:217.853333pt;}
.y17_c00101{bottom:254.520000pt;}
.y16_c00101{bottom:275.186667pt;}
.y15_c00101{bottom:315.186667pt;}
.y14_c00101{bottom:351.853333pt;}
.y13_c00101{bottom:372.520000pt;}
.y10_c00101{bottom:495.853333pt;}
.yf_c00101{bottom:519.853333pt;}
.ye_c00101{bottom:543.853333pt;}
.yd_c00101{bottom:567.853333pt;}
.yc_c00101{bottom:591.853333pt;}
.yb_c00101{bottom:645.186667pt;}
.ya_c00101{bottom:689.186667pt;}
.y9_c00101{bottom:713.186667pt;}
.y8_c00101{bottom:737.186667pt;}
.y7_c00101{bottom:761.186667pt;}
.y6_c00101{bottom:785.186667pt;}
.y5_c00101{bottom:809.186667pt;}
.y4_c00101{bottom:862.520000pt;}
.y3_c00101{bottom:906.520000pt;}
.y2_c00101{bottom:949.186667pt;}
.y1_c00101{bottom:973.186667pt;}
.y11_c00101{bottom:1061.186667pt;}
.h8_c00101{height:34.375000pt;}
.h7_c00101{height:39.296875pt;}
.h3_c00101{height:45.562500pt;}
.h9_c00101{height:47.708333pt;}
.h6_c00101{height:49.843750pt;}
.h4_c00101{height:50.896067pt;}
.h5_c00101{height:53.447917pt;}
.h2_c00101{height:1121.333333pt;}
.h0_c00101{height:1122.520000pt;}
.h1_c00101{height:1122.666667pt;}
.w2_c00101{width:793.333333pt;}
.w0_c00101{width:793.720000pt;}
.w1_c00101{width:794.000000pt;}
.x0_c00101{left:0.000000pt;}
.x1_c00101{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0be9187c1c03d88956006c8b.woff2')format("woff");}.ff1_c00102{font-family:ff1_c00102;line-height:0.934082;font-style:normal;font-weight:normal;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_d2808c2b35fe96bca5a26d68.woff2')format("woff");}.ff2_c00102{font-family:ff2_c00102;line-height:0.892578;font-style:normal;font-weight:normal;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_129e40e885f3937e870244aa.woff2')format("woff");}.ff3_c00102{font-family:ff3_c00102;line-height:0.956543;font-style:normal;font-weight:normal;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_a3d6ed42093f36a2707eedfb.woff2')format("woff");}.ff4_c00102{font-family:ff4_c00102;line-height:1.112305;font-style:normal;font-weight:normal;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_1b66b2cf73460fbabbb0dab3.woff2')format("woff");}.ff5_c00102{font-family:ff5_c00102;line-height:0.889648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00102{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00102{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00102{vertical-align:-23.086200px;}
.v3_c00102{vertical-align:-15.000000px;}
.v0_c00102{vertical-align:0.000000px;}
.v1_c00102{vertical-align:23.086200px;}
.ls4_c00102{letter-spacing:-0.309600px;}
.ls3_c00102{letter-spacing:-0.009600px;}
.ls2_c00102{letter-spacing:0.000000px;}
.ls0_c00102{letter-spacing:0.008400px;}
.ls1_c00102{letter-spacing:0.012000px;}
.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:-19.800000px;}
.ws3_c00102{word-spacing:-15.000000px;}
.ws0_c00102{word-spacing:-13.190400px;}
.ws2_c00102{word-spacing:-10.000001px;}
.ws4_c00102{word-spacing:0.000000px;}
._1e_c00102{margin-left:-8.207202px;}
._2_c00102{margin-left:-7.200000px;}
._5_c00102{margin-left:-4.082400px;}
._3_c00102{margin-left:-2.865600px;}
._0_c00102{margin-left:-1.252800px;}
._d_c00102{width:1.000800px;}
._1_c00102{width:2.188800px;}
._7_c00102{width:3.531000px;}
._4_c00102{width:4.701600px;}
._a_c00102{width:6.012000px;}
._1d_c00102{width:7.018398px;}
._6_c00102{width:8.200800px;}
._b_c00102{width:9.446400px;}
._9_c00102{width:11.030400px;}
._8_c00102{width:12.254400px;}
._1c_c00102{width:13.485600px;}
._10_c00102{width:14.577000px;}
._e_c00102{width:16.480800px;}
._11_c00102{width:17.640000px;}
._c_c00102{width:18.705600px;}
._f_c00102{width:20.872800px;}
._19_c00102{width:22.540200px;}
._13_c00102{width:24.120000px;}
._12_c00102{width:25.120800px;}
._15_c00102{width:27.036000px;}
._17_c00102{width:28.245600px;}
._16_c00102{width:29.246400px;}
._14_c00102{width:30.492000px;}
._18_c00102{width:31.734600px;}
._1b_c00102{width:33.236400px;}
._1a_c00102{width:34.646400px;}
.fc1_c00102{color:rgb(0,0,153);}
.fc0_c00102{color:rgb(0,0,0);}
.fs4_c00102{font-size:40.000002px;}
.fs1_c00102{font-size:48.000000px;}
.fs3_c00102{font-size:60.000000px;}
.fs0_c00102{font-size:72.000000px;}
.fs2_c00102{font-size:84.000000px;}
.y0_c00102{bottom:0.000000px;}
.y16_c00102{bottom:67.335000px;}
.y1c_c00102{bottom:159.585000px;}
.y1b_c00102{bottom:200.835000px;}
.y1a_c00102{bottom:224.085000px;}
.y19_c00102{bottom:269.085000px;}
.y18_c00102{bottom:310.335000px;}
.y17_c00102{bottom:333.585000px;}
.y14_c00102{bottom:463.335000px;}
.y13_c00102{bottom:490.335000px;}
.y12_c00102{bottom:517.335000px;}
.y11_c00102{bottom:544.335000px;}
.y10_c00102{bottom:592.335000px;}
.yf_c00102{bottom:619.335000px;}
.ye_c00102{bottom:667.335000px;}
.yd_c00102{bottom:694.335000px;}
.yc_c00102{bottom:754.335000px;}
.yb_c00102{bottom:803.835000px;}
.ya_c00102{bottom:830.835000px;}
.y9_c00102{bottom:857.835000px;}
.y8_c00102{bottom:884.835000px;}
.y7_c00102{bottom:911.835000px;}
.y6_c00102{bottom:938.835000px;}
.y5_c00102{bottom:965.835000px;}
.y4_c00102{bottom:1013.835000px;}
.y3_c00102{bottom:1040.835000px;}
.y2_c00102{bottom:1067.835000px;}
.y1_c00102{bottom:1094.835000px;}
.y15_c00102{bottom:1193.835000px;}
.h7_c00102{height:38.671875px;}
.h6_c00102{height:44.121094px;}
.h3_c00102{height:51.257812px;}
.h8_c00102{height:53.671875px;}
.h4_c00102{height:57.258075px;}
.h5_c00102{height:60.128906px;}
.h2_c00102{height:1261.500000px;}
.h0_c00102{height:1262.835000px;}
.h1_c00102{height:1263.000000px;}
.w2_c00102{width:892.500000px;}
.w0_c00102{width:892.935000px;}
.w1_c00102{width:893.250000px;}
.x0_c00102{left:0.000000px;}
.x1_c00102{left:150.519750px;}
.x2_c00102{left:380.516100px;}
.x3_c00102{left:810.770100px;}
@media print{
.v2_c00102{vertical-align:-20.521067pt;}
.v3_c00102{vertical-align:-13.333333pt;}
.v0_c00102{vertical-align:0.000000pt;}
.v1_c00102{vertical-align:20.521067pt;}
.ls4_c00102{letter-spacing:-0.275200pt;}
.ls3_c00102{letter-spacing:-0.008533pt;}
.ls2_c00102{letter-spacing:0.000000pt;}
.ls0_c00102{letter-spacing:0.007467pt;}
.ls1_c00102{letter-spacing:0.010667pt;}
.ws1_c00102{word-spacing:-17.600000pt;}
.ws3_c00102{word-spacing:-13.333333pt;}
.ws0_c00102{word-spacing:-11.724800pt;}
.ws2_c00102{word-spacing:-8.888889pt;}
.ws4_c00102{word-spacing:0.000000pt;}
._1e_c00102{margin-left:-7.295291pt;}
._2_c00102{margin-left:-6.400000pt;}
._5_c00102{margin-left:-3.628800pt;}
._3_c00102{margin-left:-2.547200pt;}
._0_c00102{margin-left:-1.113600pt;}
._d_c00102{width:0.889600pt;}
._1_c00102{width:1.945600pt;}
._7_c00102{width:3.138667pt;}
._4_c00102{width:4.179200pt;}
._a_c00102{width:5.344000pt;}
._1d_c00102{width:6.238576pt;}
._6_c00102{width:7.289600pt;}
._b_c00102{width:8.396800pt;}
._9_c00102{width:9.804800pt;}
._8_c00102{width:10.892800pt;}
._1c_c00102{width:11.987200pt;}
._10_c00102{width:12.957333pt;}
._e_c00102{width:14.649600pt;}
._11_c00102{width:15.680000pt;}
._c_c00102{width:16.627200pt;}
._f_c00102{width:18.553600pt;}
._19_c00102{width:20.035733pt;}
._13_c00102{width:21.440000pt;}
._12_c00102{width:22.329600pt;}
._15_c00102{width:24.032000pt;}
._17_c00102{width:25.107200pt;}
._16_c00102{width:25.996800pt;}
._14_c00102{width:27.104000pt;}
._18_c00102{width:28.208533pt;}
._1b_c00102{width:29.543467pt;}
._1a_c00102{width:30.796800pt;}
.fs4_c00102{font-size:35.555557pt;}
.fs1_c00102{font-size:42.666667pt;}
.fs3_c00102{font-size:53.333333pt;}
.fs0_c00102{font-size:64.000000pt;}
.fs2_c00102{font-size:74.666667pt;}
.y0_c00102{bottom:0.000000pt;}
.y16_c00102{bottom:59.853333pt;}
.y1c_c00102{bottom:141.853333pt;}
.y1b_c00102{bottom:178.520000pt;}
.y1a_c00102{bottom:199.186667pt;}
.y19_c00102{bottom:239.186667pt;}
.y18_c00102{bottom:275.853333pt;}
.y17_c00102{bottom:296.520000pt;}
.y14_c00102{bottom:411.853333pt;}
.y13_c00102{bottom:435.853333pt;}
.y12_c00102{bottom:459.853333pt;}
.y11_c00102{bottom:483.853333pt;}
.y10_c00102{bottom:526.520000pt;}
.yf_c00102{bottom:550.520000pt;}
.ye_c00102{bottom:593.186667pt;}
.yd_c00102{bottom:617.186667pt;}
.yc_c00102{bottom:670.520000pt;}
.yb_c00102{bottom:714.520000pt;}
.ya_c00102{bottom:738.520000pt;}
.y9_c00102{bottom:762.520000pt;}
.y8_c00102{bottom:786.520000pt;}
.y7_c00102{bottom:810.520000pt;}
.y6_c00102{bottom:834.520000pt;}
.y5_c00102{bottom:858.520000pt;}
.y4_c00102{bottom:901.186667pt;}
.y3_c00102{bottom:925.186667pt;}
.y2_c00102{bottom:949.186667pt;}
.y1_c00102{bottom:973.186667pt;}
.y15_c00102{bottom:1061.186667pt;}
.h7_c00102{height:34.375000pt;}
.h6_c00102{height:39.218750pt;}
.h3_c00102{height:45.562500pt;}
.h8_c00102{height:47.708333pt;}
.h4_c00102{height:50.896067pt;}
.h5_c00102{height:53.447917pt;}
.h2_c00102{height:1121.333333pt;}
.h0_c00102{height:1122.520000pt;}
.h1_c00102{height:1122.666667pt;}
.w2_c00102{width:793.333333pt;}
.w0_c00102{width:793.720000pt;}
.w1_c00102{width:794.000000pt;}
.x0_c00102{left:0.000000pt;}
.x1_c00102{left:133.795333pt;}
.x2_c00102{left:338.236533pt;}
.x3_c00102{left:720.684533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c11198b060102f60c9c13e94.woff2')format("woff");}.ff1_c00103{font-family:ff1_c00103;line-height:0.934082;font-style:normal;font-weight:normal;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_f9841abe691c0b03dd937056.woff2')format("woff");}.ff2_c00103{font-family:ff2_c00103;line-height:0.892578;font-style:normal;font-weight:normal;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_43769df90ee27daa4c037e64.woff2')format("woff");}.ff3_c00103{font-family:ff3_c00103;line-height:0.755859;font-style:normal;font-weight:normal;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_2c70b308555939a4a1be0ea4.woff2')format("woff");}.ff4_c00103{font-family:ff4_c00103;line-height:1.155762;font-style:normal;font-weight:normal;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_c07c3f651c3b512e11966a77.woff2')format("woff");}.ff5_c00103{font-family:ff5_c00103;line-height:1.112305;font-style:normal;font-weight: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_c00103;src:url('chunks/assets/font_e78290037879dfebd90b6eb7.woff2')format("woff");}.ff6_c00103{font-family:ff6_c00103;line-height:0.891113;font-style: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);}
.v2_c00103{vertical-align:-23.086200px;}
.v3_c00103{vertical-align:-15.000000px;}
.v0_c00103{vertical-align:0.000000px;}
.v1_c00103{vertical-align:23.086200px;}
.ls2_c00103{letter-spacing:-0.009600px;}
.ls1_c00103{letter-spacing:0.000000px;}
.ls3_c00103{letter-spacing:0.012000px;}
.ls0_c00103{letter-spacing:1.209600px;}
.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:-19.800000px;}
.ws0_c00103{word-spacing:-13.190400px;}
.ws2_c00103{word-spacing:-10.000001px;}
.ws3_c00103{word-spacing:0.000000px;}
._10_c00103{margin-left:-7.344000px;}
._1b_c00103{margin-left:-6.307200px;}
._5_c00103{margin-left:-4.363200px;}
._1_c00103{margin-left:-3.312000px;}
._b_c00103{margin-left:-1.620000px;}
._6_c00103{width:1.252800px;}
._0_c00103{width:2.469600px;}
._4_c00103{width:3.715200px;}
._3_c00103{width:5.536800px;}
._2_c00103{width:7.243200px;}
._19_c00103{width:9.158400px;}
._18_c00103{width:10.706400px;}
._1a_c00103{width:11.923200px;}
._8_c00103{width:12.938400px;}
._9_c00103{width:14.241600px;}
._a_c00103{width:15.494400px;}
._7_c00103{width:16.682400px;}
._c_c00103{width:18.338400px;}
._15_c00103{width:21.117600px;}
._16_c00103{width:22.168800px;}
._14_c00103{width:23.270400px;}
._17_c00103{width:25.394400px;}
._e_c00103{width:30.484800px;}
._12_c00103{width:31.730400px;}
._f_c00103{width:34.200000px;}
._13_c00103{width:35.820000px;}
._11_c00103{width:37.512000px;}
._d_c00103{width:38.563200px;}
.fc0_c00103{color:rgb(0,0,0);}
.fs4_c00103{font-size:40.000002px;}
.fs1_c00103{font-size:48.000000px;}
.fs3_c00103{font-size:60.000000px;}
.fs0_c00103{font-size:72.000000px;}
.fs2_c00103{font-size:84.000000px;}
.y0_c00103{bottom:0.000000px;}
.y19_c00103{bottom:67.335000px;}
.y1e_c00103{bottom:131.835000px;}
.y1d_c00103{bottom:155.085000px;}
.y1c_c00103{bottom:200.085000px;}
.y1b_c00103{bottom:245.085000px;}
.y1a_c00103{bottom:290.085000px;}
.y17_c00103{bottom:382.335000px;}
.y16_c00103{bottom:409.335000px;}
.y15_c00103{bottom:436.335000px;}
.y14_c00103{bottom:463.335000px;}
.y13_c00103{bottom:490.335000px;}
.y12_c00103{bottom:538.335000px;}
.y11_c00103{bottom:565.335000px;}
.y10_c00103{bottom:592.335000px;}
.yf_c00103{bottom:619.335000px;}
.ye_c00103{bottom:646.335000px;}
.yd_c00103{bottom:673.335000px;}
.yc_c00103{bottom:700.335000px;}
.yb_c00103{bottom:748.335000px;}
.ya_c00103{bottom:796.335000px;}
.y9_c00103{bottom:823.335000px;}
.y8_c00103{bottom:850.335000px;}
.y7_c00103{bottom:877.335000px;}
.y6_c00103{bottom:937.335000px;}
.y5_c00103{bottom:986.835000px;}
.y4_c00103{bottom:1013.835000px;}
.y3_c00103{bottom:1040.835000px;}
.y2_c00103{bottom:1067.835000px;}
.y1_c00103{bottom:1094.835000px;}
.y18_c00103{bottom:1193.835000px;}
.h8_c00103{height:38.671875px;}
.h7_c00103{height:44.208984px;}
.h4_c00103{height:51.257812px;}
.h9_c00103{height:53.671875px;}
.h6_c00103{height:56.074219px;}
.h3_c00103{height:57.258075px;}
.h5_c00103{height:60.128906px;}
.h2_c00103{height:1261.500000px;}
.h0_c00103{height:1262.835000px;}
.h1_c00103{height:1263.000000px;}
.w2_c00103{width:892.500000px;}
.w0_c00103{width:892.935000px;}
.w1_c00103{width:893.250000px;}
.x0_c00103{left:0.000000px;}
.x1_c00103{left:65.480310px;}
@media print{
.v2_c00103{vertical-align:-20.521067pt;}
.v3_c00103{vertical-align:-13.333333pt;}
.v0_c00103{vertical-align:0.000000pt;}
.v1_c00103{vertical-align:20.521067pt;}
.ls2_c00103{letter-spacing:-0.008533pt;}
.ls1_c00103{letter-spacing:0.000000pt;}
.ls3_c00103{letter-spacing:0.010667pt;}
.ls0_c00103{letter-spacing:1.075200pt;}
.ws1_c00103{word-spacing:-17.600000pt;}
.ws0_c00103{word-spacing:-11.724800pt;}
.ws2_c00103{word-spacing:-8.888889pt;}
.ws3_c00103{word-spacing:0.000000pt;}
._10_c00103{margin-left:-6.528000pt;}
._1b_c00103{margin-left:-5.606400pt;}
._5_c00103{margin-left:-3.878400pt;}
._1_c00103{margin-left:-2.944000pt;}
._b_c00103{margin-left:-1.440000pt;}
._6_c00103{width:1.113600pt;}
._0_c00103{width:2.195200pt;}
._4_c00103{width:3.302400pt;}
._3_c00103{width:4.921600pt;}
._2_c00103{width:6.438400pt;}
._19_c00103{width:8.140800pt;}
._18_c00103{width:9.516800pt;}
._1a_c00103{width:10.598400pt;}
._8_c00103{width:11.500800pt;}
._9_c00103{width:12.659200pt;}
._a_c00103{width:13.772800pt;}
._7_c00103{width:14.828800pt;}
._c_c00103{width:16.300800pt;}
._15_c00103{width:18.771200pt;}
._16_c00103{width:19.705600pt;}
._14_c00103{width:20.684800pt;}
._17_c00103{width:22.572800pt;}
._e_c00103{width:27.097600pt;}
._12_c00103{width:28.204800pt;}
._f_c00103{width:30.400000pt;}
._13_c00103{width:31.840000pt;}
._11_c00103{width:33.344000pt;}
._d_c00103{width:34.278400pt;}
.fs4_c00103{font-size:35.555557pt;}
.fs1_c00103{font-size:42.666667pt;}
.fs3_c00103{font-size:53.333333pt;}
.fs0_c00103{font-size:64.000000pt;}
.fs2_c00103{font-size:74.666667pt;}
.y0_c00103{bottom:0.000000pt;}
.y19_c00103{bottom:59.853333pt;}
.y1e_c00103{bottom:117.186667pt;}
.y1d_c00103{bottom:137.853333pt;}
.y1c_c00103{bottom:177.853333pt;}
.y1b_c00103{bottom:217.853333pt;}
.y1a_c00103{bottom:257.853333pt;}
.y17_c00103{bottom:339.853333pt;}
.y16_c00103{bottom:363.853333pt;}
.y15_c00103{bottom:387.853333pt;}
.y14_c00103{bottom:411.853333pt;}
.y13_c00103{bottom:435.853333pt;}
.y12_c00103{bottom:478.520000pt;}
.y11_c00103{bottom:502.520000pt;}
.y10_c00103{bottom:526.520000pt;}
.yf_c00103{bottom:550.520000pt;}
.ye_c00103{bottom:574.520000pt;}
.yd_c00103{bottom:598.520000pt;}
.yc_c00103{bottom:622.520000pt;}
.yb_c00103{bottom:665.186667pt;}
.ya_c00103{bottom:707.853333pt;}
.y9_c00103{bottom:731.853333pt;}
.y8_c00103{bottom:755.853333pt;}
.y7_c00103{bottom:779.853333pt;}
.y6_c00103{bottom:833.186667pt;}
.y5_c00103{bottom:877.186667pt;}
.y4_c00103{bottom:901.186667pt;}
.y3_c00103{bottom:925.186667pt;}
.y2_c00103{bottom:949.186667pt;}
.y1_c00103{bottom:973.186667pt;}
.y18_c00103{bottom:1061.186667pt;}
.h8_c00103{height:34.375000pt;}
.h7_c00103{height:39.296875pt;}
.h4_c00103{height:45.562500pt;}
.h9_c00103{height:47.708333pt;}
.h6_c00103{height:49.843750pt;}
.h3_c00103{height:50.896067pt;}
.h5_c00103{height:53.447917pt;}
.h2_c00103{height:1121.333333pt;}
.h0_c00103{height:1122.520000pt;}
.h1_c00103{height:1122.666667pt;}
.w2_c00103{width:793.333333pt;}
.w0_c00103{width:793.720000pt;}
.w1_c00103{width:794.000000pt;}
.x0_c00103{left:0.000000pt;}
.x1_c00103{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a720ee7f7e775aa563521e87.woff2')format("woff");}.ff1_c00104{font-family:ff1_c00104;line-height:0.933105;font-style:normal;font-weight:normal;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_0139ce122dccdefeb006b182.woff2')format("woff");}.ff2_c00104{font-family:ff2_c00104;line-height:0.932129;font-style:normal;font-weight:normal;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_2189a5642ddaebabf0ff3036.woff2')format("woff");}.ff3_c00104{font-family:ff3_c00104;line-height:0.987793;font-style:normal;font-weight:normal;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_1f72b95f1271ce73c2971a2d.woff2')format("woff");}.ff4_c00104{font-family:ff4_c00104;line-height:0.956543;font-style:normal;font-weight:normal;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_3fa251bf11b71066a580a455.woff2')format("woff");}.ff5_c00104{font-family:ff5_c00104;line-height:0.903320;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00104{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00104{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00104{vertical-align:-23.086200px;}
.v3_c00104{vertical-align:-15.000000px;}
.v0_c00104{vertical-align:0.000000px;}
.v1_c00104{vertical-align:23.086200px;}
.ls5_c00104{letter-spacing:-0.014400px;}
.ls7_c00104{letter-spacing:-0.009600px;}
.ls4_c00104{letter-spacing:0.000000px;}
.ls3_c00104{letter-spacing:0.012000px;}
.ls0_c00104{letter-spacing:0.014400px;}
.ls2_c00104{letter-spacing:0.027000px;}
.ls1_c00104{letter-spacing:0.223200px;}
.ls6_c00104{letter-spacing:4.420800px;}
.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;}
}
.ws3_c00104{word-spacing:-17.091000px;}
.ws2_c00104{word-spacing:-13.190400px;}
.ws4_c00104{word-spacing:-10.000001px;}
.ws1_c00104{word-spacing:-0.086400px;}
.ws0_c00104{word-spacing:-0.057600px;}
.ws5_c00104{word-spacing:0.000000px;}
._a_c00104{margin-left:-6.465600px;}
._1_c00104{margin-left:-4.276800px;}
._d_c00104{margin-left:-3.168000px;}
._5_c00104{margin-left:-1.987200px;}
._8_c00104{width:1.648800px;}
._3_c00104{width:2.764800px;}
._4_c00104{width:3.981600px;}
._7_c00104{width:5.234400px;}
._1b_c00104{width:6.282000px;}
._9_c00104{width:7.795200px;}
._1c_c00104{width:8.831604px;}
._1a_c00104{width:10.343598px;}
._19_c00104{width:14.695200px;}
._15_c00104{width:15.804000px;}
._16_c00104{width:17.078400px;}
._18_c00104{width:18.403200px;}
._c_c00104{width:20.844000px;}
._17_c00104{width:21.859200px;}
._0_c00104{width:22.860000px;}
._6_c00104{width:24.249600px;}
._b_c00104{width:25.272000px;}
._2_c00104{width:27.172800px;}
._f_c00104{width:28.555200px;}
._e_c00104{width:30.463200px;}
._14_c00104{width:32.947200px;}
._11_c00104{width:33.991200px;}
._10_c00104{width:35.712000px;}
._12_c00104{width:37.699200px;}
._13_c00104{width:38.808000px;}
.fc0_c00104{color:rgb(0,0,0);}
.fs4_c00104{font-size:40.000002px;}
.fs1_c00104{font-size:48.000000px;}
.fs2_c00104{font-size:54.000000px;}
.fs3_c00104{font-size:60.000000px;}
.fs0_c00104{font-size:72.000000px;}
.y0_c00104{bottom:0.000000px;}
.yc_c00104{bottom:12.000000px;}
.yb_c00104{bottom:31.500000px;}
.ya_c00104{bottom:54.000000px;}
.ye_c00104{bottom:67.335000px;}
.y10_c00104{bottom:131.835000px;}
.yf_c00104{bottom:155.085000px;}
.y9_c00104{bottom:202.335000px;}
.y8_c00104{bottom:884.835000px;}
.y7_c00104{bottom:911.835000px;}
.y6_c00104{bottom:938.835000px;}
.y5_c00104{bottom:965.835000px;}
.y4_c00104{bottom:992.835000px;}
.y3_c00104{bottom:1019.835000px;}
.y2_c00104{bottom:1067.835000px;}
.y1_c00104{bottom:1094.835000px;}
.yd_c00104{bottom:1193.835000px;}
.h9_c00104{height:27.421876px;}
.ha_c00104{height:41.132812px;}
.h7_c00104{height:42.292969px;}
.h8_c00104{height:44.121094px;}
.h3_c00104{height:51.187500px;}
.h4_c00104{height:51.257812px;}
.h5_c00104{height:57.211200px;}
.h6_c00104{height:651.000000px;}
.h2_c00104{height:1261.500000px;}
.h0_c00104{height:1262.835000px;}
.h1_c00104{height:1263.000000px;}
.w3_c00104{width:676.934850px;}
.w2_c00104{width:892.500000px;}
.w0_c00104{width:892.935000px;}
.w1_c00104{width:893.250000px;}
.x0_c00104{left:0.000000px;}
.x3_c00104{left:8.467461px;}
.x2_c00104{left:26.158005px;}
.x1_c00104{left:150.519750px;}
.x4_c00104{left:300.525150px;}
.x5_c00104{left:380.516100px;}
.x6_c00104{left:802.427700px;}
@media print{
.v2_c00104{vertical-align:-20.521067pt;}
.v3_c00104{vertical-align:-13.333333pt;}
.v0_c00104{vertical-align:0.000000pt;}
.v1_c00104{vertical-align:20.521067pt;}
.ls5_c00104{letter-spacing:-0.012800pt;}
.ls7_c00104{letter-spacing:-0.008533pt;}
.ls4_c00104{letter-spacing:0.000000pt;}
.ls3_c00104{letter-spacing:0.010667pt;}
.ls0_c00104{letter-spacing:0.012800pt;}
.ls2_c00104{letter-spacing:0.024000pt;}
.ls1_c00104{letter-spacing:0.198400pt;}
.ls6_c00104{letter-spacing:3.929600pt;}
.ws3_c00104{word-spacing:-15.192000pt;}
.ws2_c00104{word-spacing:-11.724800pt;}
.ws4_c00104{word-spacing:-8.888889pt;}
.ws1_c00104{word-spacing:-0.076800pt;}
.ws0_c00104{word-spacing:-0.051200pt;}
.ws5_c00104{word-spacing:0.000000pt;}
._a_c00104{margin-left:-5.747200pt;}
._1_c00104{margin-left:-3.801600pt;}
._d_c00104{margin-left:-2.816000pt;}
._5_c00104{margin-left:-1.766400pt;}
._8_c00104{width:1.465600pt;}
._3_c00104{width:2.457600pt;}
._4_c00104{width:3.539200pt;}
._7_c00104{width:4.652800pt;}
._1b_c00104{width:5.584000pt;}
._9_c00104{width:6.929067pt;}
._1c_c00104{width:7.850315pt;}
._1a_c00104{width:9.194309pt;}
._19_c00104{width:13.062400pt;}
._15_c00104{width:14.048000pt;}
._16_c00104{width:15.180800pt;}
._18_c00104{width:16.358400pt;}
._c_c00104{width:18.528000pt;}
._17_c00104{width:19.430400pt;}
._0_c00104{width:20.320000pt;}
._6_c00104{width:21.555200pt;}
._b_c00104{width:22.464000pt;}
._2_c00104{width:24.153600pt;}
._f_c00104{width:25.382400pt;}
._e_c00104{width:27.078400pt;}
._14_c00104{width:29.286400pt;}
._11_c00104{width:30.214400pt;}
._10_c00104{width:31.744000pt;}
._12_c00104{width:33.510400pt;}
._13_c00104{width:34.496000pt;}
.fs4_c00104{font-size:35.555557pt;}
.fs1_c00104{font-size:42.666667pt;}
.fs2_c00104{font-size:48.000000pt;}
.fs3_c00104{font-size:53.333333pt;}
.fs0_c00104{font-size:64.000000pt;}
.y0_c00104{bottom:0.000000pt;}
.yc_c00104{bottom:10.666667pt;}
.yb_c00104{bottom:28.000000pt;}
.ya_c00104{bottom:48.000000pt;}
.ye_c00104{bottom:59.853333pt;}
.y10_c00104{bottom:117.186667pt;}
.yf_c00104{bottom:137.853333pt;}
.y9_c00104{bottom:179.853333pt;}
.y8_c00104{bottom:786.520000pt;}
.y7_c00104{bottom:810.520000pt;}
.y6_c00104{bottom:834.520000pt;}
.y5_c00104{bottom:858.520000pt;}
.y4_c00104{bottom:882.520000pt;}
.y3_c00104{bottom:906.520000pt;}
.y2_c00104{bottom:949.186667pt;}
.y1_c00104{bottom:973.186667pt;}
.yd_c00104{bottom:1061.186667pt;}
.h9_c00104{height:24.375001pt;}
.ha_c00104{height:36.562500pt;}
.h7_c00104{height:37.593750pt;}
.h8_c00104{height:39.218750pt;}
.h3_c00104{height:45.500000pt;}
.h4_c00104{height:45.562500pt;}
.h5_c00104{height:50.854400pt;}
.h6_c00104{height:578.666667pt;}
.h2_c00104{height:1121.333333pt;}
.h0_c00104{height:1122.520000pt;}
.h1_c00104{height:1122.666667pt;}
.w3_c00104{width:601.719867pt;}
.w2_c00104{width:793.333333pt;}
.w0_c00104{width:793.720000pt;}
.w1_c00104{width:794.000000pt;}
.x0_c00104{left:0.000000pt;}
.x3_c00104{left:7.526632pt;}
.x2_c00104{left:23.251560pt;}
.x1_c00104{left:133.795333pt;}
.x4_c00104{left:267.133467pt;}
.x5_c00104{left:338.236533pt;}
.x6_c00104{left:713.269067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b54ca38f0590a2a4dafedb7c.woff2')format("woff");}.ff1_c00105{font-family:ff1_c00105;line-height:0.934082;font-style:normal;font-weight:normal;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_6bd3fb046a6690b0f0d07316.woff2')format("woff");}.ff2_c00105{font-family:ff2_c00105;line-height:0.892578;font-style:normal;font-weight:normal;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_a822c7c6db7fbe886483070f.woff2')format("woff");}.ff3_c00105{font-family:ff3_c00105;line-height:0.755859;font-style:normal;font-weight:normal;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_9ed1ab314cc0f61d6ad72d65.woff2')format("woff");}.ff4_c00105{font-family:ff4_c00105;line-height:1.155762;font-style:normal;font-weight:normal;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_6026f3c4e3009c5012a01b4e.woff2')format("woff");}.ff5_c00105{font-family:ff5_c00105;line-height:1.112305;font-style:normal;font-weight: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_e2e05bc87e0f87e0b3026aa0.woff2')format("woff");}.ff6_c00105{font-family:ff6_c00105;line-height:0.889648;font-style: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);}
.v2_c00105{vertical-align:-23.086200px;}
.v3_c00105{vertical-align:-15.000000px;}
.v0_c00105{vertical-align:0.000000px;}
.v1_c00105{vertical-align:23.086200px;}
.ls2_c00105{letter-spacing:-0.009600px;}
.ls3_c00105{letter-spacing:-0.007200px;}
.ls1_c00105{letter-spacing:0.000000px;}
.ls4_c00105{letter-spacing:0.012000px;}
.ls0_c00105{letter-spacing:1.483200px;}
.sc__c00105{text-shadow:none;}
.sc0_c00105{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00105{-webkit-text-stroke:0px transparent;}
.sc0_c00105{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00105{word-spacing:-13.190400px;}
.ws1_c00105{word-spacing:-10.000001px;}
.ws2_c00105{word-spacing:0.000000px;}
._17_c00105{margin-left:-8.466042px;}
._15_c00105{margin-left:-6.436800px;}
._d_c00105{margin-left:-5.076000px;}
._1_c00105{margin-left:-3.880800px;}
._3_c00105{margin-left:-2.289600px;}
._5_c00105{margin-left:-1.087200px;}
._7_c00105{width:1.648800px;}
._9_c00105{width:3.254400px;}
._b_c00105{width:4.852800px;}
._c_c00105{width:5.968800px;}
._a_c00105{width:7.855200px;}
._8_c00105{width:9.489600px;}
._0_c00105{width:11.066400px;}
._6_c00105{width:12.218400px;}
._4_c00105{width:13.392000px;}
._2_c00105{width:15.033600px;}
._f_c00105{width:16.099200px;}
._16_c00105{width:17.344800px;}
._e_c00105{width:18.633600px;}
._10_c00105{width:30.513600px;}
._11_c00105{width:33.768000px;}
._13_c00105{width:36.057600px;}
._14_c00105{width:37.648800px;}
._12_c00105{width:38.844000px;}
.fc0_c00105{color:rgb(0,0,0);}
.fs4_c00105{font-size:40.000002px;}
.fs1_c00105{font-size:48.000000px;}
.fs3_c00105{font-size:60.000000px;}
.fs0_c00105{font-size:72.000000px;}
.fs2_c00105{font-size:84.000000px;}
.y0_c00105{bottom:0.000000px;}
.y16_c00105{bottom:67.335000px;}
.y1d_c00105{bottom:135.585000px;}
.y1c_c00105{bottom:180.585000px;}
.y1b_c00105{bottom:221.835000px;}
.y1a_c00105{bottom:245.085000px;}
.y19_c00105{bottom:286.335000px;}
.y18_c00105{bottom:309.585000px;}
.y17_c00105{bottom:354.585000px;}
.y14_c00105{bottom:475.335000px;}
.y13_c00105{bottom:502.335000px;}
.y12_c00105{bottom:529.335000px;}
.y11_c00105{bottom:556.335000px;}
.y10_c00105{bottom:583.335000px;}
.yf_c00105{bottom:631.335000px;}
.ye_c00105{bottom:680.835000px;}
.yd_c00105{bottom:707.835000px;}
.yc_c00105{bottom:734.835000px;}
.yb_c00105{bottom:761.835000px;}
.ya_c00105{bottom:809.835000px;}
.y9_c00105{bottom:836.835000px;}
.y8_c00105{bottom:863.835000px;}
.y7_c00105{bottom:890.835000px;}
.y6_c00105{bottom:938.835000px;}
.y5_c00105{bottom:965.835000px;}
.y4_c00105{bottom:992.835000px;}
.y3_c00105{bottom:1040.835000px;}
.y2_c00105{bottom:1067.835000px;}
.y1_c00105{bottom:1094.835000px;}
.y15_c00105{bottom:1193.835000px;}
.h8_c00105{height:38.671875px;}
.h7_c00105{height:44.208984px;}
.h3_c00105{height:51.257812px;}
.h9_c00105{height:53.671875px;}
.h6_c00105{height:56.074219px;}
.h4_c00105{height:57.258075px;}
.h5_c00105{height:60.128906px;}
.h2_c00105{height:1261.500000px;}
.h0_c00105{height:1262.835000px;}
.h1_c00105{height:1263.000000px;}
.w2_c00105{width:892.500000px;}
.w0_c00105{width:892.935000px;}
.w1_c00105{width:893.250000px;}
.x0_c00105{left:0.000000px;}
.x1_c00105{left:65.480310px;}
@media print{
.v2_c00105{vertical-align:-20.521067pt;}
.v3_c00105{vertical-align:-13.333333pt;}
.v0_c00105{vertical-align:0.000000pt;}
.v1_c00105{vertical-align:20.521067pt;}
.ls2_c00105{letter-spacing:-0.008533pt;}
.ls3_c00105{letter-spacing:-0.006400pt;}
.ls1_c00105{letter-spacing:0.000000pt;}
.ls4_c00105{letter-spacing:0.010667pt;}
.ls0_c00105{letter-spacing:1.318400pt;}
.ws0_c00105{word-spacing:-11.724800pt;}
.ws1_c00105{word-spacing:-8.888889pt;}
.ws2_c00105{word-spacing:0.000000pt;}
._17_c00105{margin-left:-7.525371pt;}
._15_c00105{margin-left:-5.721600pt;}
._d_c00105{margin-left:-4.512000pt;}
._1_c00105{margin-left:-3.449600pt;}
._3_c00105{margin-left:-2.035200pt;}
._5_c00105{margin-left:-0.966400pt;}
._7_c00105{width:1.465600pt;}
._9_c00105{width:2.892800pt;}
._b_c00105{width:4.313600pt;}
._c_c00105{width:5.305600pt;}
._a_c00105{width:6.982400pt;}
._8_c00105{width:8.435200pt;}
._0_c00105{width:9.836800pt;}
._6_c00105{width:10.860800pt;}
._4_c00105{width:11.904000pt;}
._2_c00105{width:13.363200pt;}
._f_c00105{width:14.310400pt;}
._16_c00105{width:15.417600pt;}
._e_c00105{width:16.563200pt;}
._10_c00105{width:27.123200pt;}
._11_c00105{width:30.016000pt;}
._13_c00105{width:32.051200pt;}
._14_c00105{width:33.465600pt;}
._12_c00105{width:34.528000pt;}
.fs4_c00105{font-size:35.555557pt;}
.fs1_c00105{font-size:42.666667pt;}
.fs3_c00105{font-size:53.333333pt;}
.fs0_c00105{font-size:64.000000pt;}
.fs2_c00105{font-size:74.666667pt;}
.y0_c00105{bottom:0.000000pt;}
.y16_c00105{bottom:59.853333pt;}
.y1d_c00105{bottom:120.520000pt;}
.y1c_c00105{bottom:160.520000pt;}
.y1b_c00105{bottom:197.186667pt;}
.y1a_c00105{bottom:217.853333pt;}
.y19_c00105{bottom:254.520000pt;}
.y18_c00105{bottom:275.186667pt;}
.y17_c00105{bottom:315.186667pt;}
.y14_c00105{bottom:422.520000pt;}
.y13_c00105{bottom:446.520000pt;}
.y12_c00105{bottom:470.520000pt;}
.y11_c00105{bottom:494.520000pt;}
.y10_c00105{bottom:518.520000pt;}
.yf_c00105{bottom:561.186667pt;}
.ye_c00105{bottom:605.186667pt;}
.yd_c00105{bottom:629.186667pt;}
.yc_c00105{bottom:653.186667pt;}
.yb_c00105{bottom:677.186667pt;}
.ya_c00105{bottom:719.853333pt;}
.y9_c00105{bottom:743.853333pt;}
.y8_c00105{bottom:767.853333pt;}
.y7_c00105{bottom:791.853333pt;}
.y6_c00105{bottom:834.520000pt;}
.y5_c00105{bottom:858.520000pt;}
.y4_c00105{bottom:882.520000pt;}
.y3_c00105{bottom:925.186667pt;}
.y2_c00105{bottom:949.186667pt;}
.y1_c00105{bottom:973.186667pt;}
.y15_c00105{bottom:1061.186667pt;}
.h8_c00105{height:34.375000pt;}
.h7_c00105{height:39.296875pt;}
.h3_c00105{height:45.562500pt;}
.h9_c00105{height:47.708333pt;}
.h6_c00105{height:49.843750pt;}
.h4_c00105{height:50.896067pt;}
.h5_c00105{height:53.447917pt;}
.h2_c00105{height:1121.333333pt;}
.h0_c00105{height:1122.520000pt;}
.h1_c00105{height:1122.666667pt;}
.w2_c00105{width:793.333333pt;}
.w0_c00105{width:793.720000pt;}
.w1_c00105{width:794.000000pt;}
.x0_c00105{left:0.000000pt;}
.x1_c00105{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b7c9cedde6575256b33171a9.woff2')format("woff");}.ff1_c00106{font-family:ff1_c00106;line-height:0.892578;font-style:normal;font-weight:normal;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_445345c81d49768ef902150d.woff2')format("woff");}.ff2_c00106{font-family:ff2_c00106;line-height:0.934082;font-style:normal;font-weight:normal;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_a729c167f947b3d4a89d7a10.woff2')format("woff");}.ff3_c00106{font-family:ff3_c00106;line-height:0.932129;font-style:normal;font-weight:normal;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_871c191a3bb851e3b39f5c71.woff2')format("woff");}.ff4_c00106{font-family:ff4_c00106;line-height:0.963867;font-style:normal;font-weight:normal;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_eb0fd28b6641c9488e97fa84.woff2')format("woff");}.ff5_c00106{font-family:ff5_c00106;line-height:0.956543;font-style:normal;font-weight: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_c00106;src:url('chunks/assets/font_4066b433cb8d077a02b001e6.woff2')format("woff");}.ff6_c00106{font-family:ff6_c00106;line-height:0.905762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00106;src:url('chunks/assets/font_f62b8908b7bdba6a5c266561.woff2')format("woff");}.ff7_c00106{font-family:ff7_c00106;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00106{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00106{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00106{vertical-align:-23.086200px;}
.v3_c00106{vertical-align:-15.400200px;}
.v0_c00106{vertical-align:0.000000px;}
.v1_c00106{vertical-align:23.086200px;}
.ls9_c00106{letter-spacing:-0.014400px;}
.lsb_c00106{letter-spacing:-0.012000px;}
.ls8_c00106{letter-spacing:-0.007200px;}
.ls7_c00106{letter-spacing:0.000000px;}
.ls6_c00106{letter-spacing:0.010800px;}
.ls2_c00106{letter-spacing:0.012000px;}
.ls1_c00106{letter-spacing:0.014400px;}
.ls0_c00106{letter-spacing:0.961800px;}
.lsa_c00106{letter-spacing:1.101600px;}
.ls3_c00106{letter-spacing:1.759999px;}
.ls4_c00106{letter-spacing:4.313400px;}
.ls5_c00106{letter-spacing:9.999999px;}
.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;}
}
.ws3_c00106{word-spacing:-19.814400px;}
.ws1_c00106{word-spacing:-19.792800px;}
.ws0_c00106{word-spacing:-19.785600px;}
.ws5_c00106{word-spacing:-15.000000px;}
.ws4_c00106{word-spacing:-14.988000px;}
.ws2_c00106{word-spacing:-13.200000px;}
.ws6_c00106{word-spacing:0.000000px;}
._12_c00106{margin-left:-5.668200px;}
._5_c00106{margin-left:-4.327200px;}
._d_c00106{margin-left:-2.688000px;}
._1_c00106{margin-left:-1.656000px;}
._0_c00106{width:1.994400px;}
._9_c00106{width:3.254400px;}
._8_c00106{width:4.687200px;}
._a_c00106{width:6.062400px;}
._7_c00106{width:7.315200px;}
._b_c00106{width:9.324000px;}
._c_c00106{width:10.980000px;}
._10_c00106{width:12.102000px;}
._6_c00106{width:13.665600px;}
._11_c00106{width:16.465200px;}
._13_c00106{width:18.400800px;}
._14_c00106{width:20.406600px;}
._4_c00106{width:21.744000px;}
._3_c00106{width:22.838400px;}
._2_c00106{width:24.458400px;}
._e_c00106{width:28.140000px;}
._f_c00106{width:29.145600px;}
.fc1_c00106{color:transparent;}
.fc0_c00106{color:rgb(0,0,0);}
.fs6_c00106{font-size:40.000002px;}
.fs3_c00106{font-size:48.000000px;}
.fs4_c00106{font-size:54.000000px;}
.fs5_c00106{font-size:60.000000px;}
.fs2_c00106{font-size:72.000000px;}
.fs0_c00106{font-size:108.000000px;}
.fs1_c00106{font-size:120.000000px;}
.y0_c00106{bottom:0.000000px;}
.yb_c00106{bottom:10.500000px;}
.yd_c00106{bottom:67.335000px;}
.y12_c00106{bottom:131.835000px;}
.y11_c00106{bottom:155.085000px;}
.y10_c00106{bottom:196.335000px;}
.yf_c00106{bottom:215.835000px;}
.ye_c00106{bottom:239.185050px;}
.ya_c00106{bottom:284.835000px;}
.y9_c00106{bottom:697.335000px;}
.y8_c00106{bottom:724.335000px;}
.y7_c00106{bottom:751.335000px;}
.y6_c00106{bottom:778.335000px;}
.y5_c00106{bottom:805.335000px;}
.y4_c00106{bottom:832.335000px;}
.y3_c00106{bottom:859.335000px;}
.y2_c00106{bottom:886.335000px;}
.y1_c00106{bottom:1036.335000px;}
.yc_c00106{bottom:1193.835000px;}
.hb_c00106{height:27.480470px;}
.h9_c00106{height:29.414064px;}
.ha_c00106{height:41.220703px;}
.h7_c00106{height:41.633789px;}
.h8_c00106{height:44.121094px;}
.h4_c00106{height:51.257812px;}
.h5_c00106{height:57.258075px;}
.h3_c00106{height:85.898438px;}
.h6_c00106{height:381.000000px;}
.h2_c00106{height:1261.500000px;}
.h0_c00106{height:1262.835000px;}
.h1_c00106{height:1263.000000px;}
.w3_c00106{width:676.934850px;}
.w2_c00106{width:892.500000px;}
.w0_c00106{width:892.935000px;}
.w1_c00106{width:893.250000px;}
.x0_c00106{left:0.000000px;}
.x2_c00106{left:21.461355px;}
.x1_c00106{left:150.519750px;}
.x3_c00106{left:380.516100px;}
.x4_c00106{left:802.427700px;}
@media print{
.v2_c00106{vertical-align:-20.521067pt;}
.v3_c00106{vertical-align:-13.689067pt;}
.v0_c00106{vertical-align:0.000000pt;}
.v1_c00106{vertical-align:20.521067pt;}
.ls9_c00106{letter-spacing:-0.012800pt;}
.lsb_c00106{letter-spacing:-0.010667pt;}
.ls8_c00106{letter-spacing:-0.006400pt;}
.ls7_c00106{letter-spacing:0.000000pt;}
.ls6_c00106{letter-spacing:0.009600pt;}
.ls2_c00106{letter-spacing:0.010667pt;}
.ls1_c00106{letter-spacing:0.012800pt;}
.ls0_c00106{letter-spacing:0.854933pt;}
.lsa_c00106{letter-spacing:0.979200pt;}
.ls3_c00106{letter-spacing:1.564443pt;}
.ls4_c00106{letter-spacing:3.834133pt;}
.ls5_c00106{letter-spacing:8.888888pt;}
.ws3_c00106{word-spacing:-17.612800pt;}
.ws1_c00106{word-spacing:-17.593600pt;}
.ws0_c00106{word-spacing:-17.587200pt;}
.ws5_c00106{word-spacing:-13.333333pt;}
.ws4_c00106{word-spacing:-13.322667pt;}
.ws2_c00106{word-spacing:-11.733333pt;}
.ws6_c00106{word-spacing:0.000000pt;}
._12_c00106{margin-left:-5.038400pt;}
._5_c00106{margin-left:-3.846400pt;}
._d_c00106{margin-left:-2.389333pt;}
._1_c00106{margin-left:-1.472000pt;}
._0_c00106{width:1.772800pt;}
._9_c00106{width:2.892800pt;}
._8_c00106{width:4.166400pt;}
._a_c00106{width:5.388800pt;}
._7_c00106{width:6.502400pt;}
._b_c00106{width:8.288000pt;}
._c_c00106{width:9.760000pt;}
._10_c00106{width:10.757333pt;}
._6_c00106{width:12.147200pt;}
._11_c00106{width:14.635733pt;}
._13_c00106{width:16.356267pt;}
._14_c00106{width:18.139200pt;}
._4_c00106{width:19.328000pt;}
._3_c00106{width:20.300800pt;}
._2_c00106{width:21.740800pt;}
._e_c00106{width:25.013333pt;}
._f_c00106{width:25.907200pt;}
.fs6_c00106{font-size:35.555557pt;}
.fs3_c00106{font-size:42.666667pt;}
.fs4_c00106{font-size:48.000000pt;}
.fs5_c00106{font-size:53.333333pt;}
.fs2_c00106{font-size:64.000000pt;}
.fs0_c00106{font-size:96.000000pt;}
.fs1_c00106{font-size:106.666667pt;}
.y0_c00106{bottom:0.000000pt;}
.yb_c00106{bottom:9.333333pt;}
.yd_c00106{bottom:59.853333pt;}
.y12_c00106{bottom:117.186667pt;}
.y11_c00106{bottom:137.853333pt;}
.y10_c00106{bottom:174.520000pt;}
.yf_c00106{bottom:191.853333pt;}
.ye_c00106{bottom:212.608933pt;}
.ya_c00106{bottom:253.186667pt;}
.y9_c00106{bottom:619.853333pt;}
.y8_c00106{bottom:643.853333pt;}
.y7_c00106{bottom:667.853333pt;}
.y6_c00106{bottom:691.853333pt;}
.y5_c00106{bottom:715.853333pt;}
.y4_c00106{bottom:739.853333pt;}
.y3_c00106{bottom:763.853333pt;}
.y2_c00106{bottom:787.853333pt;}
.y1_c00106{bottom:921.186667pt;}
.yc_c00106{bottom:1061.186667pt;}
.hb_c00106{height:24.427085pt;}
.h9_c00106{height:26.145835pt;}
.ha_c00106{height:36.640625pt;}
.h7_c00106{height:37.007812pt;}
.h8_c00106{height:39.218750pt;}
.h4_c00106{height:45.562500pt;}
.h5_c00106{height:50.896067pt;}
.h3_c00106{height:76.354167pt;}
.h6_c00106{height:338.666667pt;}
.h2_c00106{height:1121.333333pt;}
.h0_c00106{height:1122.520000pt;}
.h1_c00106{height:1122.666667pt;}
.w3_c00106{width:601.719867pt;}
.w2_c00106{width:793.333333pt;}
.w0_c00106{width:793.720000pt;}
.w1_c00106{width:794.000000pt;}
.x0_c00106{left:0.000000pt;}
.x2_c00106{left:19.076760pt;}
.x1_c00106{left:133.795333pt;}
.x3_c00106{left:338.236533pt;}
.x4_c00106{left:713.269067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b77319fb157437402c81a02a.woff2')format("woff");}.ff1_c00107{font-family:ff1_c00107;line-height:0.934082;font-style:normal;font-weight:normal;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_8d438b962fc82558a5c870a7.woff2')format("woff");}.ff2_c00107{font-family:ff2_c00107;line-height:0.892578;font-style:normal;font-weight:normal;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_3ab6f4768f58ecfd6a617cb6.woff2')format("woff");}.ff3_c00107{font-family:ff3_c00107;line-height:0.755859;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00107;src:url('chunks/assets/font_22043af56826b92883e0c0b0.woff2')format("woff");}.ff4_c00107{font-family:ff4_c00107;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00107;src:url('chunks/assets/font_b6d887b13924ae96d192d715.woff2')format("woff");}.ff5_c00107{font-family:ff5_c00107;line-height:0.904785;font-style:normal;font-weight: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_c00107;src:url('chunks/assets/font_434fd903853a34de3bcc428b.woff2')format("woff");}.ff6_c00107{font-family:ff6_c00107;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00107{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00107{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00107{vertical-align:-23.086200px;}
.v3_c00107{vertical-align:-15.000000px;}
.v0_c00107{vertical-align:0.000000px;}
.v1_c00107{vertical-align:23.086200px;}
.ls2_c00107{letter-spacing:0.000000px;}
.ls3_c00107{letter-spacing:0.012000px;}
.ls1_c00107{letter-spacing:2.971200px;}
.ls0_c00107{letter-spacing:6.003600px;}
.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:-13.200000px;}
.ws1_c00107{word-spacing:-10.000001px;}
.ws2_c00107{word-spacing:0.000000px;}
._1d_c00107{margin-left:-7.164000px;}
._c_c00107{margin-left:-4.471200px;}
._2_c00107{margin-left:-2.865600px;}
._7_c00107{margin-left:-1.029600px;}
._5_c00107{width:1.389600px;}
._0_c00107{width:2.995200px;}
._1_c00107{width:3.996000px;}
._6_c00107{width:5.644800px;}
._4_c00107{width:7.012800px;}
._8_c00107{width:8.042400px;}
._3_c00107{width:9.864000px;}
._15_c00107{width:11.836800px;}
._1c_c00107{width:12.880800px;}
._16_c00107{width:13.910400px;}
._1a_c00107{width:15.681600px;}
._b_c00107{width:16.977600px;}
._a_c00107{width:18.684000px;}
._1b_c00107{width:21.744000px;}
._9_c00107{width:22.766400px;}
._19_c00107{width:24.278400px;}
._14_c00107{width:25.632000px;}
._13_c00107{width:26.704800px;}
._17_c00107{width:27.820800px;}
._18_c00107{width:29.181600px;}
._12_c00107{width:30.304800px;}
._10_c00107{width:31.903200px;}
._d_c00107{width:33.307200px;}
._f_c00107{width:34.524000px;}
._e_c00107{width:35.935200px;}
._11_c00107{width:37.389600px;}
.fc0_c00107{color:rgb(0,0,0);}
.fs4_c00107{font-size:40.000002px;}
.fs1_c00107{font-size:48.000000px;}
.fs3_c00107{font-size:60.000000px;}
.fs0_c00107{font-size:72.000000px;}
.fs2_c00107{font-size:84.000000px;}
.y0_c00107{bottom:0.000000px;}
.y1b_c00107{bottom:67.335000px;}
.y1e_c00107{bottom:135.585000px;}
.y1d_c00107{bottom:180.585000px;}
.y1c_c00107{bottom:225.585000px;}
.y19_c00107{bottom:286.335000px;}
.y18_c00107{bottom:313.335000px;}
.y17_c00107{bottom:361.335000px;}
.y16_c00107{bottom:388.335000px;}
.y15_c00107{bottom:415.335000px;}
.y14_c00107{bottom:463.335000px;}
.y13_c00107{bottom:490.335000px;}
.y12_c00107{bottom:550.335000px;}
.y11_c00107{bottom:599.835000px;}
.y10_c00107{bottom:626.835000px;}
.yf_c00107{bottom:674.835000px;}
.ye_c00107{bottom:701.835000px;}
.yd_c00107{bottom:728.835000px;}
.yc_c00107{bottom:755.835000px;}
.yb_c00107{bottom:782.835000px;}
.ya_c00107{bottom:830.835000px;}
.y9_c00107{bottom:857.835000px;}
.y8_c00107{bottom:884.835000px;}
.y7_c00107{bottom:911.835000px;}
.y6_c00107{bottom:938.835000px;}
.y5_c00107{bottom:965.835000px;}
.y4_c00107{bottom:1013.835000px;}
.y3_c00107{bottom:1040.835000px;}
.y2_c00107{bottom:1067.835000px;}
.y1_c00107{bottom:1094.835000px;}
.y1a_c00107{bottom:1193.835000px;}
.h8_c00107{height:27.480470px;}
.h7_c00107{height:44.208984px;}
.h3_c00107{height:51.257812px;}
.h6_c00107{height:56.074219px;}
.h4_c00107{height:57.258075px;}
.h5_c00107{height:60.128906px;}
.h2_c00107{height:1261.500000px;}
.h0_c00107{height:1262.835000px;}
.h1_c00107{height:1263.000000px;}
.w2_c00107{width:892.500000px;}
.w0_c00107{width:892.935000px;}
.w1_c00107{width:893.250000px;}
.x0_c00107{left:0.000000px;}
.x1_c00107{left:65.480310px;}
@media print{
.v2_c00107{vertical-align:-20.521067pt;}
.v3_c00107{vertical-align:-13.333333pt;}
.v0_c00107{vertical-align:0.000000pt;}
.v1_c00107{vertical-align:20.521067pt;}
.ls2_c00107{letter-spacing:0.000000pt;}
.ls3_c00107{letter-spacing:0.010667pt;}
.ls1_c00107{letter-spacing:2.641067pt;}
.ls0_c00107{letter-spacing:5.336533pt;}
.ws0_c00107{word-spacing:-11.733333pt;}
.ws1_c00107{word-spacing:-8.888889pt;}
.ws2_c00107{word-spacing:0.000000pt;}
._1d_c00107{margin-left:-6.368000pt;}
._c_c00107{margin-left:-3.974400pt;}
._2_c00107{margin-left:-2.547200pt;}
._7_c00107{margin-left:-0.915200pt;}
._5_c00107{width:1.235200pt;}
._0_c00107{width:2.662400pt;}
._1_c00107{width:3.552000pt;}
._6_c00107{width:5.017600pt;}
._4_c00107{width:6.233600pt;}
._8_c00107{width:7.148800pt;}
._3_c00107{width:8.768000pt;}
._15_c00107{width:10.521600pt;}
._1c_c00107{width:11.449600pt;}
._16_c00107{width:12.364800pt;}
._1a_c00107{width:13.939200pt;}
._b_c00107{width:15.091200pt;}
._a_c00107{width:16.608000pt;}
._1b_c00107{width:19.328000pt;}
._9_c00107{width:20.236800pt;}
._19_c00107{width:21.580800pt;}
._14_c00107{width:22.784000pt;}
._13_c00107{width:23.737600pt;}
._17_c00107{width:24.729600pt;}
._18_c00107{width:25.939200pt;}
._12_c00107{width:26.937600pt;}
._10_c00107{width:28.358400pt;}
._d_c00107{width:29.606400pt;}
._f_c00107{width:30.688000pt;}
._e_c00107{width:31.942400pt;}
._11_c00107{width:33.235200pt;}
.fs4_c00107{font-size:35.555557pt;}
.fs1_c00107{font-size:42.666667pt;}
.fs3_c00107{font-size:53.333333pt;}
.fs0_c00107{font-size:64.000000pt;}
.fs2_c00107{font-size:74.666667pt;}
.y0_c00107{bottom:0.000000pt;}
.y1b_c00107{bottom:59.853333pt;}
.y1e_c00107{bottom:120.520000pt;}
.y1d_c00107{bottom:160.520000pt;}
.y1c_c00107{bottom:200.520000pt;}
.y19_c00107{bottom:254.520000pt;}
.y18_c00107{bottom:278.520000pt;}
.y17_c00107{bottom:321.186667pt;}
.y16_c00107{bottom:345.186667pt;}
.y15_c00107{bottom:369.186667pt;}
.y14_c00107{bottom:411.853333pt;}
.y13_c00107{bottom:435.853333pt;}
.y12_c00107{bottom:489.186667pt;}
.y11_c00107{bottom:533.186667pt;}
.y10_c00107{bottom:557.186667pt;}
.yf_c00107{bottom:599.853333pt;}
.ye_c00107{bottom:623.853333pt;}
.yd_c00107{bottom:647.853333pt;}
.yc_c00107{bottom:671.853333pt;}
.yb_c00107{bottom:695.853333pt;}
.ya_c00107{bottom:738.520000pt;}
.y9_c00107{bottom:762.520000pt;}
.y8_c00107{bottom:786.520000pt;}
.y7_c00107{bottom:810.520000pt;}
.y6_c00107{bottom:834.520000pt;}
.y5_c00107{bottom:858.520000pt;}
.y4_c00107{bottom:901.186667pt;}
.y3_c00107{bottom:925.186667pt;}
.y2_c00107{bottom:949.186667pt;}
.y1_c00107{bottom:973.186667pt;}
.y1a_c00107{bottom:1061.186667pt;}
.h8_c00107{height:24.427085pt;}
.h7_c00107{height:39.296875pt;}
.h3_c00107{height:45.562500pt;}
.h6_c00107{height:49.843750pt;}
.h4_c00107{height:50.896067pt;}
.h5_c00107{height:53.447917pt;}
.h2_c00107{height:1121.333333pt;}
.h0_c00107{height:1122.520000pt;}
.h1_c00107{height:1122.666667pt;}
.w2_c00107{width:793.333333pt;}
.w0_c00107{width:793.720000pt;}
.w1_c00107{width:794.000000pt;}
.x0_c00107{left:0.000000pt;}
.x1_c00107{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_12c62b98da3a279d887c147d.woff2')format("woff");}.ff1_c00108{font-family:ff1_c00108;line-height:0.934082;font-style:normal;font-weight:normal;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_65d6b78f030b226a3701c619.woff2')format("woff");}.ff2_c00108{font-family:ff2_c00108;line-height:1.124023;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00108;src:url('chunks/assets/font_69630a0eb4e2ab35c391ff22.woff2')format("woff");}.ff3_c00108{font-family:ff3_c00108;line-height:0.932129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00108;src:url('chunks/assets/font_21a5c05685d70157a1629095.woff2')format("woff");}.ff4_c00108{font-family:ff4_c00108;line-height:0.956543;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00108;src:url('chunks/assets/font_7091205454a1244b5c52eaee.woff2')format("woff");}.ff5_c00108{font-family:ff5_c00108;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00108;src:url('chunks/assets/font_de3c148f964b4b103cd1c123.woff2')format("woff");}.ff6_c00108{font-family:ff6_c00108;line-height:0.891113;font-style: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);}
.v2_c00108{vertical-align:-23.086200px;}
.v3_c00108{vertical-align:-15.000000px;}
.v0_c00108{vertical-align:0.000000px;}
.v1_c00108{vertical-align:23.086200px;}
.lsc_c00108{letter-spacing:-3.024000px;}
.lsb_c00108{letter-spacing:-0.014400px;}
.lsa_c00108{letter-spacing:0.000000px;}
.ls3_c00108{letter-spacing:0.008400px;}
.ls6_c00108{letter-spacing:0.012000px;}
.ls1_c00108{letter-spacing:0.014400px;}
.ls2_c00108{letter-spacing:0.610800px;}
.ls8_c00108{letter-spacing:1.759999px;}
.ls5_c00108{letter-spacing:2.080800px;}
.ls4_c00108{letter-spacing:2.205600px;}
.ls9_c00108{letter-spacing:3.727200px;}
.ls0_c00108{letter-spacing:3.961800px;}
.ls7_c00108{letter-spacing:3.999999px;}
.sc__c00108{text-shadow:none;}
.sc0_c00108{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00108{-webkit-text-stroke:0px transparent;}
.sc0_c00108{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00108{word-spacing:-19.800000px;}
.ws4_c00108{word-spacing:-13.200000px;}
.ws5_c00108{word-spacing:-10.000001px;}
.ws1_c00108{word-spacing:-0.086400px;}
.ws2_c00108{word-spacing:-0.072000px;}
.ws3_c00108{word-spacing:-0.057600px;}
.ws6_c00108{word-spacing:0.000000px;}
._19_c00108{margin-left:-7.686000px;}
._18_c00108{margin-left:-5.991000px;}
._6_c00108{margin-left:-4.888800px;}
._1_c00108{margin-left:-3.470400px;}
._10_c00108{margin-left:-2.462400px;}
._0_c00108{margin-left:-1.252800px;}
._5_c00108{width:1.224000px;}
._4_c00108{width:2.656800px;}
._3_c00108{width:3.729600px;}
._e_c00108{width:4.881600px;}
._2_c00108{width:5.976000px;}
._8_c00108{width:7.891200px;}
._7_c00108{width:9.633600px;}
._17_c00108{width:10.804800px;}
._9_c00108{width:12.146400px;}
._b_c00108{width:13.262400px;}
._a_c00108{width:14.623200px;}
._d_c00108{width:16.862400px;}
._c_c00108{width:18.007200px;}
._11_c00108{width:21.686400px;}
._f_c00108{width:23.212800px;}
._13_c00108{width:30.175200px;}
._14_c00108{width:31.608000px;}
._15_c00108{width:32.904000px;}
._16_c00108{width:34.948800px;}
._12_c00108{width:36.230400px;}
.fc0_c00108{color:rgb(0,0,0);}
.fs4_c00108{font-size:40.000002px;}
.fs2_c00108{font-size:48.000000px;}
.fs3_c00108{font-size:60.000000px;}
.fs0_c00108{font-size:72.000000px;}
.fs1_c00108{font-size:84.000000px;}
.y0_c00108{bottom:0.000000px;}
.y16_c00108{bottom:67.335000px;}
.y1d_c00108{bottom:135.585000px;}
.y1c_c00108{bottom:176.835000px;}
.y1b_c00108{bottom:196.335000px;}
.y1a_c00108{bottom:219.685050px;}
.y19_c00108{bottom:260.835000px;}
.y18_c00108{bottom:284.085000px;}
.y17_c00108{bottom:329.085000px;}
.y14_c00108{bottom:428.835000px;}
.y13_c00108{bottom:455.835000px;}
.y12_c00108{bottom:482.835000px;}
.y11_c00108{bottom:509.835000px;}
.y10_c00108{bottom:569.835000px;}
.yf_c00108{bottom:619.335000px;}
.ye_c00108{bottom:646.335000px;}
.yd_c00108{bottom:694.335000px;}
.yc_c00108{bottom:721.335000px;}
.yb_c00108{bottom:748.335000px;}
.ya_c00108{bottom:775.335000px;}
.y9_c00108{bottom:802.335000px;}
.y8_c00108{bottom:829.335000px;}
.y7_c00108{bottom:856.335000px;}
.y6_c00108{bottom:904.335000px;}
.y5_c00108{bottom:931.335000px;}
.y4_c00108{bottom:958.335000px;}
.y3_c00108{bottom:1018.335000px;}
.y2_c00108{bottom:1067.835000px;}
.y1_c00108{bottom:1094.835000px;}
.y15_c00108{bottom:1193.835000px;}
.h9_c00108{height:38.271675px;}
.h7_c00108{height:38.671875px;}
.h6_c00108{height:44.121094px;}
.h3_c00108{height:51.257812px;}
.h8_c00108{height:53.671875px;}
.h5_c00108{height:57.258075px;}
.h4_c00108{height:79.570312px;}
.h2_c00108{height:1261.500000px;}
.h0_c00108{height:1262.835000px;}
.h1_c00108{height:1263.000000px;}
.w2_c00108{width:892.500000px;}
.w0_c00108{width:892.935000px;}
.w1_c00108{width:893.250000px;}
.x0_c00108{left:0.000000px;}
.x1_c00108{left:150.519750px;}
.x2_c00108{left:380.516100px;}
.x3_c00108{left:802.427700px;}
@media print{
.v2_c00108{vertical-align:-20.521067pt;}
.v3_c00108{vertical-align:-13.333333pt;}
.v0_c00108{vertical-align:0.000000pt;}
.v1_c00108{vertical-align:20.521067pt;}
.lsc_c00108{letter-spacing:-2.688000pt;}
.lsb_c00108{letter-spacing:-0.012800pt;}
.lsa_c00108{letter-spacing:0.000000pt;}
.ls3_c00108{letter-spacing:0.007467pt;}
.ls6_c00108{letter-spacing:0.010667pt;}
.ls1_c00108{letter-spacing:0.012800pt;}
.ls2_c00108{letter-spacing:0.542933pt;}
.ls8_c00108{letter-spacing:1.564443pt;}
.ls5_c00108{letter-spacing:1.849600pt;}
.ls4_c00108{letter-spacing:1.960533pt;}
.ls9_c00108{letter-spacing:3.313067pt;}
.ls0_c00108{letter-spacing:3.521600pt;}
.ls7_c00108{letter-spacing:3.555555pt;}
.ws0_c00108{word-spacing:-17.600000pt;}
.ws4_c00108{word-spacing:-11.733333pt;}
.ws5_c00108{word-spacing:-8.888889pt;}
.ws1_c00108{word-spacing:-0.076800pt;}
.ws2_c00108{word-spacing:-0.064000pt;}
.ws3_c00108{word-spacing:-0.051200pt;}
.ws6_c00108{word-spacing:0.000000pt;}
._19_c00108{margin-left:-6.832000pt;}
._18_c00108{margin-left:-5.325333pt;}
._6_c00108{margin-left:-4.345600pt;}
._1_c00108{margin-left:-3.084800pt;}
._10_c00108{margin-left:-2.188800pt;}
._0_c00108{margin-left:-1.113600pt;}
._5_c00108{width:1.088000pt;}
._4_c00108{width:2.361600pt;}
._3_c00108{width:3.315200pt;}
._e_c00108{width:4.339200pt;}
._2_c00108{width:5.312000pt;}
._8_c00108{width:7.014400pt;}
._7_c00108{width:8.563200pt;}
._17_c00108{width:9.604267pt;}
._9_c00108{width:10.796800pt;}
._b_c00108{width:11.788800pt;}
._a_c00108{width:12.998400pt;}
._d_c00108{width:14.988800pt;}
._c_c00108{width:16.006400pt;}
._11_c00108{width:19.276800pt;}
._f_c00108{width:20.633600pt;}
._13_c00108{width:26.822400pt;}
._14_c00108{width:28.096000pt;}
._15_c00108{width:29.248000pt;}
._16_c00108{width:31.065600pt;}
._12_c00108{width:32.204800pt;}
.fs4_c00108{font-size:35.555557pt;}
.fs2_c00108{font-size:42.666667pt;}
.fs3_c00108{font-size:53.333333pt;}
.fs0_c00108{font-size:64.000000pt;}
.fs1_c00108{font-size:74.666667pt;}
.y0_c00108{bottom:0.000000pt;}
.y16_c00108{bottom:59.853333pt;}
.y1d_c00108{bottom:120.520000pt;}
.y1c_c00108{bottom:157.186667pt;}
.y1b_c00108{bottom:174.520000pt;}
.y1a_c00108{bottom:195.275600pt;}
.y19_c00108{bottom:231.853333pt;}
.y18_c00108{bottom:252.520000pt;}
.y17_c00108{bottom:292.520000pt;}
.y14_c00108{bottom:381.186667pt;}
.y13_c00108{bottom:405.186667pt;}
.y12_c00108{bottom:429.186667pt;}
.y11_c00108{bottom:453.186667pt;}
.y10_c00108{bottom:506.520000pt;}
.yf_c00108{bottom:550.520000pt;}
.ye_c00108{bottom:574.520000pt;}
.yd_c00108{bottom:617.186667pt;}
.yc_c00108{bottom:641.186667pt;}
.yb_c00108{bottom:665.186667pt;}
.ya_c00108{bottom:689.186667pt;}
.y9_c00108{bottom:713.186667pt;}
.y8_c00108{bottom:737.186667pt;}
.y7_c00108{bottom:761.186667pt;}
.y6_c00108{bottom:803.853333pt;}
.y5_c00108{bottom:827.853333pt;}
.y4_c00108{bottom:851.853333pt;}
.y3_c00108{bottom:905.186667pt;}
.y2_c00108{bottom:949.186667pt;}
.y1_c00108{bottom:973.186667pt;}
.y15_c00108{bottom:1061.186667pt;}
.h9_c00108{height:34.019267pt;}
.h7_c00108{height:34.375000pt;}
.h6_c00108{height:39.218750pt;}
.h3_c00108{height:45.562500pt;}
.h8_c00108{height:47.708333pt;}
.h5_c00108{height:50.896067pt;}
.h4_c00108{height:70.729167pt;}
.h2_c00108{height:1121.333333pt;}
.h0_c00108{height:1122.520000pt;}
.h1_c00108{height:1122.666667pt;}
.w2_c00108{width:793.333333pt;}
.w0_c00108{width:793.720000pt;}
.w1_c00108{width:794.000000pt;}
.x0_c00108{left:0.000000pt;}
.x1_c00108{left:133.795333pt;}
.x2_c00108{left:338.236533pt;}
.x3_c00108{left:713.269067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7be29d9ed05619b4ccd3cd7d.woff2')format("woff");}.ff1_c00109{font-family:ff1_c00109;line-height:1.163086;font-style:normal;font-weight:normal;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_b9a15d24e2218d5a96678273.woff2')format("woff");}.ff2_c00109{font-family:ff2_c00109;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00109;src:url('chunks/assets/font_b75885e519d2257f0ffc8c74.woff2')format("woff");}.ff3_c00109{font-family:ff3_c00109;line-height:0.892578;font-style:normal;font-weight:normal;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_1898732e10b602ddfc03e226.woff2')format("woff");}.ff4_c00109{font-family:ff4_c00109;line-height:0.755859;font-style:normal;font-weight:normal;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_498f776bee53dd7f7c81ba0a.woff2')format("woff");}.ff5_c00109{font-family:ff5_c00109;line-height:1.155762;font-style:normal;font-weight: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_c00109;src:url('chunks/assets/font_a985f85b2cd676733f759de3.woff2')format("woff");}.ff6_c00109{font-family:ff6_c00109;line-height:0.904785;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00109;src:url('chunks/assets/font_4e4cedda95ae59f0d077a993.woff2')format("woff");}.ff7_c00109{font-family:ff7_c00109;line-height:0.891113;font-style: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);}
.v2_c00109{vertical-align:-23.086200px;}
.v3_c00109{vertical-align:-15.000000px;}
.v0_c00109{vertical-align:0.000000px;}
.v1_c00109{vertical-align:23.086200px;}
.ls1_c00109{letter-spacing:-0.009600px;}
.ls2_c00109{letter-spacing:-0.007200px;}
.ls0_c00109{letter-spacing:0.000000px;}
.ls3_c00109{letter-spacing:0.012000px;}
.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;}
}
.ws2_c00109{word-spacing:-19.792800px;}
.ws1_c00109{word-spacing:-13.190400px;}
.ws3_c00109{word-spacing:-10.000001px;}
.ws0_c00109{word-spacing:-0.072000px;}
.ws4_c00109{word-spacing:0.000000px;}
._e_c00109{margin-left:-7.920000px;}
._6_c00109{margin-left:-4.543200px;}
._b_c00109{margin-left:-3.429120px;}
._0_c00109{margin-left:-1.490400px;}
._2_c00109{width:1.778400px;}
._c_c00109{width:3.038400px;}
._3_c00109{width:4.298400px;}
._4_c00109{width:5.947200px;}
._1_c00109{width:7.473600px;}
._d_c00109{width:9.676800px;}
._a_c00109{width:10.922400px;}
._7_c00109{width:12.928560px;}
._9_c00109{width:14.479200px;}
._5_c00109{width:16.236000px;}
._8_c00109{width:17.704800px;}
.fc0_c00109{color:rgb(0,0,0);}
.fs4_c00109{font-size:40.000002px;}
.fs1_c00109{font-size:48.000000px;}
.fs3_c00109{font-size:60.000000px;}
.fs0_c00109{font-size:72.000000px;}
.fs2_c00109{font-size:84.000000px;}
.y0_c00109{bottom:0.000000px;}
.y14_c00109{bottom:67.335000px;}
.y17_c00109{bottom:135.585000px;}
.y16_c00109{bottom:180.585000px;}
.y15_c00109{bottom:225.585000px;}
.y12_c00109{bottom:530.835000px;}
.y11_c00109{bottom:557.835000px;}
.y10_c00109{bottom:605.835000px;}
.yf_c00109{bottom:632.835000px;}
.ye_c00109{bottom:659.835000px;}
.yd_c00109{bottom:703.335000px;}
.yc_c00109{bottom:725.835000px;}
.yb_c00109{bottom:748.335000px;}
.ya_c00109{bottom:808.335000px;}
.y9_c00109{bottom:857.835000px;}
.y8_c00109{bottom:884.835000px;}
.y7_c00109{bottom:911.835000px;}
.y6_c00109{bottom:959.835000px;}
.y5_c00109{bottom:986.835000px;}
.y4_c00109{bottom:1013.835000px;}
.y3_c00109{bottom:1040.835000px;}
.y2_c00109{bottom:1067.835000px;}
.y1_c00109{bottom:1094.835000px;}
.y13_c00109{bottom:1193.835000px;}
.h8_c00109{height:27.480470px;}
.h7_c00109{height:44.208984px;}
.h6_c00109{height:56.074219px;}
.h5_c00109{height:60.128906px;}
.h3_c00109{height:67.746094px;}
.h4_c00109{height:68.250262px;}
.h2_c00109{height:1261.500000px;}
.h0_c00109{height:1262.835000px;}
.h1_c00109{height:1263.000000px;}
.w2_c00109{width:892.500000px;}
.w0_c00109{width:892.935000px;}
.w1_c00109{width:893.250000px;}
.x0_c00109{left:0.000000px;}
.x1_c00109{left:65.480310px;}
@media print{
.v2_c00109{vertical-align:-20.521067pt;}
.v3_c00109{vertical-align:-13.333333pt;}
.v0_c00109{vertical-align:0.000000pt;}
.v1_c00109{vertical-align:20.521067pt;}
.ls1_c00109{letter-spacing:-0.008533pt;}
.ls2_c00109{letter-spacing:-0.006400pt;}
.ls0_c00109{letter-spacing:0.000000pt;}
.ls3_c00109{letter-spacing:0.010667pt;}
.ws2_c00109{word-spacing:-17.593600pt;}
.ws1_c00109{word-spacing:-11.724800pt;}
.ws3_c00109{word-spacing:-8.888889pt;}
.ws0_c00109{word-spacing:-0.064000pt;}
.ws4_c00109{word-spacing:0.000000pt;}
._e_c00109{margin-left:-7.040000pt;}
._6_c00109{margin-left:-4.038400pt;}
._b_c00109{margin-left:-3.048107pt;}
._0_c00109{margin-left:-1.324800pt;}
._2_c00109{width:1.580800pt;}
._c_c00109{width:2.700800pt;}
._3_c00109{width:3.820800pt;}
._4_c00109{width:5.286400pt;}
._1_c00109{width:6.643200pt;}
._d_c00109{width:8.601600pt;}
._a_c00109{width:9.708800pt;}
._7_c00109{width:11.492053pt;}
._9_c00109{width:12.870400pt;}
._5_c00109{width:14.432000pt;}
._8_c00109{width:15.737600pt;}
.fs4_c00109{font-size:35.555557pt;}
.fs1_c00109{font-size:42.666667pt;}
.fs3_c00109{font-size:53.333333pt;}
.fs0_c00109{font-size:64.000000pt;}
.fs2_c00109{font-size:74.666667pt;}
.y0_c00109{bottom:0.000000pt;}
.y14_c00109{bottom:59.853333pt;}
.y17_c00109{bottom:120.520000pt;}
.y16_c00109{bottom:160.520000pt;}
.y15_c00109{bottom:200.520000pt;}
.y12_c00109{bottom:471.853333pt;}
.y11_c00109{bottom:495.853333pt;}
.y10_c00109{bottom:538.520000pt;}
.yf_c00109{bottom:562.520000pt;}
.ye_c00109{bottom:586.520000pt;}
.yd_c00109{bottom:625.186667pt;}
.yc_c00109{bottom:645.186667pt;}
.yb_c00109{bottom:665.186667pt;}
.ya_c00109{bottom:718.520000pt;}
.y9_c00109{bottom:762.520000pt;}
.y8_c00109{bottom:786.520000pt;}
.y7_c00109{bottom:810.520000pt;}
.y6_c00109{bottom:853.186667pt;}
.y5_c00109{bottom:877.186667pt;}
.y4_c00109{bottom:901.186667pt;}
.y3_c00109{bottom:925.186667pt;}
.y2_c00109{bottom:949.186667pt;}
.y1_c00109{bottom:973.186667pt;}
.y13_c00109{bottom:1061.186667pt;}
.h8_c00109{height:24.427085pt;}
.h7_c00109{height:39.296875pt;}
.h6_c00109{height:49.843750pt;}
.h5_c00109{height:53.447917pt;}
.h3_c00109{height:60.218750pt;}
.h4_c00109{height:60.666900pt;}
.h2_c00109{height:1121.333333pt;}
.h0_c00109{height:1122.520000pt;}
.h1_c00109{height:1122.666667pt;}
.w2_c00109{width:793.333333pt;}
.w0_c00109{width:793.720000pt;}
.w1_c00109{width:794.000000pt;}
.x0_c00109{left:0.000000pt;}
.x1_c00109{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e7b021850219e7f0c0c8b665.woff2')format("woff");}.ff1_c00110{font-family:ff1_c00110;line-height:1.167480;font-style:normal;font-weight:normal;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_810290833c97d331a0ac99fc.woff2')format("woff");}.ff2_c00110{font-family:ff2_c00110;line-height:0.934082;font-style:normal;font-weight:normal;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_e46a91a2fe1b6a352939a8a5.woff2')format("woff");}.ff3_c00110{font-family:ff3_c00110;line-height:0.956543;font-style:normal;font-weight:normal;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_b79892a20ca16338a4305524.woff2')format("woff");}.ff4_c00110{font-family:ff4_c00110;line-height:1.044922;font-style:normal;font-weight:normal;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_be376c1c17354c5a3cd67b4f.woff2')format("woff");}.ff5_c00110{font-family:ff5_c00110;line-height:0.891113;font-style: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);}
.v2_c00110{vertical-align:-23.086200px;}
.v3_c00110{vertical-align:-15.400200px;}
.v0_c00110{vertical-align:0.000000px;}
.v1_c00110{vertical-align:23.086200px;}
.ls9_c00110{letter-spacing:-0.007200px;}
.ls8_c00110{letter-spacing:0.000000px;}
.ls6_c00110{letter-spacing:0.005599px;}
.ls1_c00110{letter-spacing:0.007800px;}
.ls0_c00110{letter-spacing:0.010800px;}
.ls5_c00110{letter-spacing:0.012000px;}
.ls4_c00110{letter-spacing:1.436400px;}
.ls3_c00110{letter-spacing:2.616600px;}
.ls2_c00110{letter-spacing:2.928000px;}
.ls7_c00110{letter-spacing:3.999999px;}
.sc__c00110{text-shadow:none;}
.sc0_c00110{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00110{-webkit-text-stroke:0px transparent;}
.sc0_c00110{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00110{word-spacing:-22.549800px;}
.ws1_c00110{word-spacing:-22.542000px;}
.ws2_c00110{word-spacing:-13.200000px;}
.ws3_c00110{word-spacing:-10.000001px;}
.ws4_c00110{word-spacing:0.000000px;}
._11_c00110{margin-left:-9.280800px;}
._7_c00110{margin-left:-7.221600px;}
._16_c00110{margin-left:-6.184800px;}
._8_c00110{margin-left:-4.766400px;}
._3_c00110{margin-left:-3.621600px;}
._1_c00110{margin-left:-1.778400px;}
._c_c00110{width:1.166400px;}
._a_c00110{width:2.188800px;}
._5_c00110{width:4.212000px;}
._b_c00110{width:5.479200px;}
._14_c00110{width:7.329600px;}
._e_c00110{width:8.546400px;}
._13_c00110{width:9.619200px;}
._d_c00110{width:10.720800px;}
._f_c00110{width:12.499200px;}
._12_c00110{width:14.256000px;}
._10_c00110{width:15.580800px;}
._15_c00110{width:16.624800px;}
._6_c00110{width:18.302400px;}
._0_c00110{width:22.536000px;}
._2_c00110{width:24.256800px;}
._4_c00110{width:26.071200px;}
._9_c00110{width:27.237600px;}
.fc2_c00110{color:transparent;}
.fc1_c00110{color:rgb(255,255,255);}
.fc0_c00110{color:rgb(0,0,0);}
.fs6_c00110{font-size:40.000002px;}
.fs4_c00110{font-size:48.000000px;}
.fs5_c00110{font-size:60.000000px;}
.fs3_c00110{font-size:72.000000px;}
.fs2_c00110{font-size:78.000000px;}
.fs7_c00110{font-size:96.000000px;}
.fs0_c00110{font-size:108.000000px;}
.fs1_c00110{font-size:120.000000px;}
.y0_c00110{bottom:0.000000px;}
.y18_c00110{bottom:43.500000px;}
.y11_c00110{bottom:67.335000px;}
.y16_c00110{bottom:135.685050px;}
.y15_c00110{bottom:176.835000px;}
.y14_c00110{bottom:200.085000px;}
.y13_c00110{bottom:245.085000px;}
.y12_c00110{bottom:290.185050px;}
.yf_c00110{bottom:338.835000px;}
.ye_c00110{bottom:361.335000px;}
.yd_c00110{bottom:425.835000px;}
.yc_c00110{bottom:496.335000px;}
.yb_c00110{bottom:523.335000px;}
.ya_c00110{bottom:550.335000px;}
.y9_c00110{bottom:598.335000px;}
.y8_c00110{bottom:625.335000px;}
.y7_c00110{bottom:652.335000px;}
.y6_c00110{bottom:679.335000px;}
.y5_c00110{bottom:706.335000px;}
.y4_c00110{bottom:733.335000px;}
.y3_c00110{bottom:760.335000px;}
.y2_c00110{bottom:806.835000px;}
.y17_c00110{bottom:844.335000px;}
.y1_c00110{bottom:1036.335000px;}
.y10_c00110{bottom:1193.835000px;}
.h8_c00110{height:34.170112px;}
.h9_c00110{height:34.570312px;}
.h7_c00110{height:44.121094px;}
.ha_c00110{height:49.570312px;}
.h5_c00110{height:51.257812px;}
.h6_c00110{height:57.258075px;}
.hc_c00110{height:68.343750px;}
.h4_c00110{height:73.886719px;}
.hb_c00110{height:90.000000px;}
.h3_c00110{height:113.671875px;}
.h2_c00110{height:1261.500000px;}
.h0_c00110{height:1262.835000px;}
.h1_c00110{height:1263.000000px;}
.w3_c00110{width:372.000000px;}
.w2_c00110{width:892.500000px;}
.w0_c00110{width:892.935000px;}
.w1_c00110{width:893.250000px;}
.x0_c00110{left:0.000000px;}
.x4_c00110{left:30.298875px;}
.x1_c00110{left:150.519750px;}
.x2_c00110{left:380.516100px;}
.x3_c00110{left:802.427700px;}
@media print{
.v2_c00110{vertical-align:-20.521067pt;}
.v3_c00110{vertical-align:-13.689067pt;}
.v0_c00110{vertical-align:0.000000pt;}
.v1_c00110{vertical-align:20.521067pt;}
.ls9_c00110{letter-spacing:-0.006400pt;}
.ls8_c00110{letter-spacing:0.000000pt;}
.ls6_c00110{letter-spacing:0.004977pt;}
.ls1_c00110{letter-spacing:0.006933pt;}
.ls0_c00110{letter-spacing:0.009600pt;}
.ls5_c00110{letter-spacing:0.010667pt;}
.ls4_c00110{letter-spacing:1.276800pt;}
.ls3_c00110{letter-spacing:2.325867pt;}
.ls2_c00110{letter-spacing:2.602667pt;}
.ls7_c00110{letter-spacing:3.555555pt;}
.ws0_c00110{word-spacing:-20.044267pt;}
.ws1_c00110{word-spacing:-20.037333pt;}
.ws2_c00110{word-spacing:-11.733333pt;}
.ws3_c00110{word-spacing:-8.888889pt;}
.ws4_c00110{word-spacing:0.000000pt;}
._11_c00110{margin-left:-8.249600pt;}
._7_c00110{margin-left:-6.419200pt;}
._16_c00110{margin-left:-5.497600pt;}
._8_c00110{margin-left:-4.236800pt;}
._3_c00110{margin-left:-3.219200pt;}
._1_c00110{margin-left:-1.580800pt;}
._c_c00110{width:1.036800pt;}
._a_c00110{width:1.945600pt;}
._5_c00110{width:3.744000pt;}
._b_c00110{width:4.870400pt;}
._14_c00110{width:6.515200pt;}
._e_c00110{width:7.596800pt;}
._13_c00110{width:8.550400pt;}
._d_c00110{width:9.529600pt;}
._f_c00110{width:11.110400pt;}
._12_c00110{width:12.672000pt;}
._10_c00110{width:13.849600pt;}
._15_c00110{width:14.777600pt;}
._6_c00110{width:16.268800pt;}
._0_c00110{width:20.032000pt;}
._2_c00110{width:21.561600pt;}
._4_c00110{width:23.174400pt;}
._9_c00110{width:24.211200pt;}
.fs6_c00110{font-size:35.555557pt;}
.fs4_c00110{font-size:42.666667pt;}
.fs5_c00110{font-size:53.333333pt;}
.fs3_c00110{font-size:64.000000pt;}
.fs2_c00110{font-size:69.333333pt;}
.fs7_c00110{font-size:85.333333pt;}
.fs0_c00110{font-size:96.000000pt;}
.fs1_c00110{font-size:106.666667pt;}
.y0_c00110{bottom:0.000000pt;}
.y18_c00110{bottom:38.666667pt;}
.y11_c00110{bottom:59.853333pt;}
.y16_c00110{bottom:120.608933pt;}
.y15_c00110{bottom:157.186667pt;}
.y14_c00110{bottom:177.853333pt;}
.y13_c00110{bottom:217.853333pt;}
.y12_c00110{bottom:257.942267pt;}
.yf_c00110{bottom:301.186667pt;}
.ye_c00110{bottom:321.186667pt;}
.yd_c00110{bottom:378.520000pt;}
.yc_c00110{bottom:441.186667pt;}
.yb_c00110{bottom:465.186667pt;}
.ya_c00110{bottom:489.186667pt;}
.y9_c00110{bottom:531.853333pt;}
.y8_c00110{bottom:555.853333pt;}
.y7_c00110{bottom:579.853333pt;}
.y6_c00110{bottom:603.853333pt;}
.y5_c00110{bottom:627.853333pt;}
.y4_c00110{bottom:651.853333pt;}
.y3_c00110{bottom:675.853333pt;}
.y2_c00110{bottom:717.186667pt;}
.y17_c00110{bottom:750.520000pt;}
.y1_c00110{bottom:921.186667pt;}
.y10_c00110{bottom:1061.186667pt;}
.h8_c00110{height:30.373433pt;}
.h9_c00110{height:30.729167pt;}
.h7_c00110{height:39.218750pt;}
.ha_c00110{height:44.062500pt;}
.h5_c00110{height:45.562500pt;}
.h6_c00110{height:50.896067pt;}
.hc_c00110{height:60.750000pt;}
.h4_c00110{height:65.677083pt;}
.hb_c00110{height:80.000000pt;}
.h3_c00110{height:101.041667pt;}
.h2_c00110{height:1121.333333pt;}
.h0_c00110{height:1122.520000pt;}
.h1_c00110{height:1122.666667pt;}
.w3_c00110{width:330.666667pt;}
.w2_c00110{width:793.333333pt;}
.w0_c00110{width:793.720000pt;}
.w1_c00110{width:794.000000pt;}
.x0_c00110{left:0.000000pt;}
.x4_c00110{left:26.932333pt;}
.x1_c00110{left:133.795333pt;}
.x2_c00110{left:338.236533pt;}
.x3_c00110{left:713.269067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_113ad83b8332d160f98afbbf.woff2')format("woff");}.ff1_c00111{font-family:ff1_c00111;line-height:1.163086;font-style:normal;font-weight:normal;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_45bb42c82504403267a132c8.woff2')format("woff");}.ff2_c00111{font-family:ff2_c00111;line-height:0.975586;font-style:normal;font-weight:normal;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_6d41e6372a8b81ebb32c8d42.woff2')format("woff");}.ff3_c00111{font-family:ff3_c00111;line-height:0.756836;font-style:normal;font-weight:normal;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_a027783dabd8dc21e3d62f9b.woff2')format("woff");}.ff4_c00111{font-family:ff4_c00111;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00111{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00111{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00111{vertical-align:0.000000px;}
.ls0_c00111{letter-spacing:0.000000px;}
.ls1_c00111{letter-spacing:0.012000px;}
.sc__c00111{text-shadow:none;}
.sc0_c00111{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00111{-webkit-text-stroke:0px transparent;}
.sc0_c00111{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00111{word-spacing:-17.064000px;}
.ws1_c00111{word-spacing:0.000000px;}
._b_c00111{margin-left:-6.300000px;}
._4_c00111{margin-left:-3.304800px;}
._2_c00111{margin-left:-2.188800px;}
._6_c00111{margin-left:-1.087200px;}
._9_c00111{width:1.742400px;}
._0_c00111{width:3.240000px;}
._1_c00111{width:5.212800px;}
._a_c00111{width:6.710400px;}
._8_c00111{width:8.402400px;}
._7_c00111{width:9.576000px;}
._3_c00111{width:10.605600px;}
._5_c00111{width:11.714400px;}
._c_c00111{width:13.644000px;}
._d_c00111{width:14.990400px;}
._f_c00111{width:16.322400px;}
._e_c00111{width:17.625600px;}
.fc1_c00111{color:rgb(0,0,153);}
.fc0_c00111{color:rgb(0,0,0);}
.fs1_c00111{font-size:54.000000px;}
.fs2_c00111{font-size:60.000000px;}
.fs0_c00111{font-size:72.000000px;}
.y0_c00111{bottom:0.000000px;}
.yb_c00111{bottom:10.500000px;}
.ya_c00111{bottom:39.000000px;}
.y10_c00111{bottom:67.335000px;}
.ye_c00111{bottom:157.335000px;}
.yd_c00111{bottom:184.335000px;}
.yc_c00111{bottom:211.335000px;}
.y9_c00111{bottom:256.335000px;}
.y8_c00111{bottom:869.835000px;}
.y7_c00111{bottom:896.835000px;}
.y6_c00111{bottom:944.835000px;}
.y5_c00111{bottom:971.835000px;}
.y4_c00111{bottom:998.835000px;}
.y3_c00111{bottom:1025.835000px;}
.y2_c00111{bottom:1072.335000px;}
.y1_c00111{bottom:1094.835000px;}
.yf_c00111{bottom:1193.835000px;}
.h5_c00111{height:41.633789px;}
.h7_c00111{height:44.208984px;}
.h6_c00111{height:56.074219px;}
.h3_c00111{height:67.746094px;}
.h4_c00111{height:582.000000px;}
.h2_c00111{height:1261.500000px;}
.h0_c00111{height:1262.835000px;}
.h1_c00111{height:1263.000000px;}
.w3_c00111{width:676.935000px;}
.w2_c00111{width:892.500000px;}
.w0_c00111{width:892.935000px;}
.w1_c00111{width:893.250000px;}
.x0_c00111{left:0.000000px;}
.x1_c00111{left:65.480310px;}
.x3_c00111{left:132.602370px;}
.x2_c00111{left:210.896400px;}
@media print{
.v0_c00111{vertical-align:0.000000pt;}
.ls0_c00111{letter-spacing:0.000000pt;}
.ls1_c00111{letter-spacing:0.010667pt;}
.ws0_c00111{word-spacing:-15.168000pt;}
.ws1_c00111{word-spacing:0.000000pt;}
._b_c00111{margin-left:-5.600000pt;}
._4_c00111{margin-left:-2.937600pt;}
._2_c00111{margin-left:-1.945600pt;}
._6_c00111{margin-left:-0.966400pt;}
._9_c00111{width:1.548800pt;}
._0_c00111{width:2.880000pt;}
._1_c00111{width:4.633600pt;}
._a_c00111{width:5.964800pt;}
._8_c00111{width:7.468800pt;}
._7_c00111{width:8.512000pt;}
._3_c00111{width:9.427200pt;}
._5_c00111{width:10.412800pt;}
._c_c00111{width:12.128000pt;}
._d_c00111{width:13.324800pt;}
._f_c00111{width:14.508800pt;}
._e_c00111{width:15.667200pt;}
.fs1_c00111{font-size:48.000000pt;}
.fs2_c00111{font-size:53.333333pt;}
.fs0_c00111{font-size:64.000000pt;}
.y0_c00111{bottom:0.000000pt;}
.yb_c00111{bottom:9.333333pt;}
.ya_c00111{bottom:34.666667pt;}
.y10_c00111{bottom:59.853333pt;}
.ye_c00111{bottom:139.853333pt;}
.yd_c00111{bottom:163.853333pt;}
.yc_c00111{bottom:187.853333pt;}
.y9_c00111{bottom:227.853333pt;}
.y8_c00111{bottom:773.186667pt;}
.y7_c00111{bottom:797.186667pt;}
.y6_c00111{bottom:839.853333pt;}
.y5_c00111{bottom:863.853333pt;}
.y4_c00111{bottom:887.853333pt;}
.y3_c00111{bottom:911.853333pt;}
.y2_c00111{bottom:953.186667pt;}
.y1_c00111{bottom:973.186667pt;}
.yf_c00111{bottom:1061.186667pt;}
.h5_c00111{height:37.007812pt;}
.h7_c00111{height:39.296875pt;}
.h6_c00111{height:49.843750pt;}
.h3_c00111{height:60.218750pt;}
.h4_c00111{height:517.333333pt;}
.h2_c00111{height:1121.333333pt;}
.h0_c00111{height:1122.520000pt;}
.h1_c00111{height:1122.666667pt;}
.w3_c00111{width:601.720000pt;}
.w2_c00111{width:793.333333pt;}
.w0_c00111{width:793.720000pt;}
.w1_c00111{width:794.000000pt;}
.x0_c00111{left:0.000000pt;}
.x1_c00111{left:58.204720pt;}
.x3_c00111{left:117.868773pt;}
.x2_c00111{left:187.463467pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ee5fad6885ee2e0a116dc8fa.woff2')format("woff");}.ff1_c00112{font-family:ff1_c00112;line-height:0.933105;font-style:normal;font-weight:normal;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_3b0889a67a621b862f510d58.woff2')format("woff");}.ff2_c00112{font-family:ff2_c00112;line-height:0.956543;font-style: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;}
.ls1_c00112{letter-spacing:0.000000px;}
.ls2_c00112{letter-spacing:0.007200px;}
.ls0_c00112{letter-spacing:0.012000px;}
.sc__c00112{text-shadow:none;}
.sc0_c00112{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00112{-webkit-text-stroke:0px transparent;}
.sc0_c00112{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00112{word-spacing:0.000000px;}
._e_c00112{margin-left:-4.334400px;}
._0_c00112{margin-left:-2.764800px;}
._7_c00112{margin-left:-1.051200px;}
._4_c00112{width:1.360800px;}
._2_c00112{width:2.743200px;}
._b_c00112{width:4.046400px;}
._9_c00112{width:5.112000px;}
._c_c00112{width:6.364800px;}
._a_c00112{width:7.898400px;}
._d_c00112{width:9.223200px;}
._3_c00112{width:10.260000px;}
._5_c00112{width:11.692800px;}
._6_c00112{width:13.053600px;}
._8_c00112{width:14.068800px;}
._1_c00112{width:15.811200px;}
._f_c00112{width:17.179200px;}
._10_c00112{width:18.727200px;}
.fc0_c00112{color:rgb(0,0,0);}
.fs1_c00112{font-size:60.000000px;}
.fs0_c00112{font-size:72.000000px;}
.y0_c00112{bottom:0.000000px;}
.ya_c00112{bottom:67.335000px;}
.y8_c00112{bottom:884.835000px;}
.y7_c00112{bottom:911.835000px;}
.y6_c00112{bottom:938.835000px;}
.y5_c00112{bottom:965.835000px;}
.y4_c00112{bottom:1013.835000px;}
.y3_c00112{bottom:1040.835000px;}
.y2_c00112{bottom:1067.835000px;}
.y1_c00112{bottom:1094.835000px;}
.y9_c00112{bottom:1193.835000px;}
.h4_c00112{height:44.121094px;}
.h3_c00112{height:51.187500px;}
.h2_c00112{height:1261.500000px;}
.h0_c00112{height:1262.835000px;}
.h1_c00112{height:1263.000000px;}
.w2_c00112{width:892.500000px;}
.w0_c00112{width:892.935000px;}
.w1_c00112{width:893.250000px;}
.x0_c00112{left:0.000000px;}
.x1_c00112{left:150.519750px;}
.x2_c00112{left:380.516100px;}
.x3_c00112{left:802.427700px;}
@media print{
.v0_c00112{vertical-align:0.000000pt;}
.ls1_c00112{letter-spacing:0.000000pt;}
.ls2_c00112{letter-spacing:0.006400pt;}
.ls0_c00112{letter-spacing:0.010667pt;}
.ws0_c00112{word-spacing:0.000000pt;}
._e_c00112{margin-left:-3.852800pt;}
._0_c00112{margin-left:-2.457600pt;}
._7_c00112{margin-left:-0.934400pt;}
._4_c00112{width:1.209600pt;}
._2_c00112{width:2.438400pt;}
._b_c00112{width:3.596800pt;}
._9_c00112{width:4.544000pt;}
._c_c00112{width:5.657600pt;}
._a_c00112{width:7.020800pt;}
._d_c00112{width:8.198400pt;}
._3_c00112{width:9.120000pt;}
._5_c00112{width:10.393600pt;}
._6_c00112{width:11.603200pt;}
._8_c00112{width:12.505600pt;}
._1_c00112{width:14.054400pt;}
._f_c00112{width:15.270400pt;}
._10_c00112{width:16.646400pt;}
.fs1_c00112{font-size:53.333333pt;}
.fs0_c00112{font-size:64.000000pt;}
.y0_c00112{bottom:0.000000pt;}
.ya_c00112{bottom:59.853333pt;}
.y8_c00112{bottom:786.520000pt;}
.y7_c00112{bottom:810.520000pt;}
.y6_c00112{bottom:834.520000pt;}
.y5_c00112{bottom:858.520000pt;}
.y4_c00112{bottom:901.186667pt;}
.y3_c00112{bottom:925.186667pt;}
.y2_c00112{bottom:949.186667pt;}
.y1_c00112{bottom:973.186667pt;}
.y9_c00112{bottom:1061.186667pt;}
.h4_c00112{height:39.218750pt;}
.h3_c00112{height:45.500000pt;}
.h2_c00112{height:1121.333333pt;}
.h0_c00112{height:1122.520000pt;}
.h1_c00112{height:1122.666667pt;}
.w2_c00112{width:793.333333pt;}
.w0_c00112{width:793.720000pt;}
.w1_c00112{width:794.000000pt;}
.x0_c00112{left:0.000000pt;}
.x1_c00112{left:133.795333pt;}
.x2_c00112{left:338.236533pt;}
.x3_c00112{left:713.269067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_967fc77e838c91ed6a88d95f.woff2')format("woff");}.ff1_c00113{font-family:ff1_c00113;line-height:0.939453;font-style:normal;font-weight:normal;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_0154dc790bd3c4be9a7e8949.woff2')format("woff");}.ff2_c00113{font-family:ff2_c00113;line-height:0.934082;font-style:normal;font-weight:normal;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_a52daf461be41c0f9a971c88.woff2')format("woff");}.ff3_c00113{font-family:ff3_c00113;line-height:0.755859;font-style:normal;font-weight:normal;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_6c94492a8ebe58b4a4f617e3.woff2')format("woff");}.ff4_c00113{font-family:ff4_c00113;line-height:1.155762;font-style:normal;font-weight:normal;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_bab7dc0139696342fae501a3.woff2')format("woff");}.ff5_c00113{font-family:ff5_c00113;line-height:1.043945;font-style:normal;font-weight: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_c00113;src:url('chunks/assets/font_9c49efbe5c65e384907d9b51.woff2')format("woff");}.ff6_c00113{font-family:ff6_c00113;line-height:0.891113;font-style: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);}
.v2_c00113{vertical-align:-23.086200px;}
.v3_c00113{vertical-align:-15.400200px;}
.v0_c00113{vertical-align:0.000000px;}
.v1_c00113{vertical-align:23.086200px;}
.ls4_c00113{letter-spacing:0.000000px;}
.ls2_c00113{letter-spacing:0.006019px;}
.ls1_c00113{letter-spacing:0.007800px;}
.ls5_c00113{letter-spacing:0.012000px;}
.ls0_c00113{letter-spacing:1.704600px;}
.ls3_c00113{letter-spacing:3.999999px;}
.sc__c00113{text-shadow:none;}
.sc0_c00113{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00113{-webkit-text-stroke:0px transparent;}
.sc0_c00113{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00113{word-spacing:-19.800000px;}
.ws0_c00113{word-spacing:-13.200000px;}
.ws2_c00113{word-spacing:0.000000px;}
._12_c00113{margin-left:-9.280800px;}
._19_c00113{margin-left:-7.084800px;}
._15_c00113{margin-left:-5.648040px;}
._8_c00113{margin-left:-4.341600px;}
._b_c00113{margin-left:-2.685600px;}
._0_c00113{margin-left:-1.533600px;}
._6_c00113{width:1.015200px;}
._2_c00113{width:2.520000px;}
._5_c00113{width:4.140000px;}
._3_c00113{width:5.760000px;}
._7_c00113{width:7.264800px;}
._4_c00113{width:8.287200px;}
._1_c00113{width:9.842400px;}
._a_c00113{width:11.599200px;}
._9_c00113{width:12.801600px;}
._c_c00113{width:14.198400px;}
._d_c00113{width:15.239760px;}
._13_c00113{width:16.325040px;}
._e_c00113{width:17.640000px;}
._14_c00113{width:18.698400px;}
._f_c00113{width:21.398400px;}
._11_c00113{width:23.911200px;}
._18_c00113{width:25.732800px;}
._10_c00113{width:27.626400px;}
._17_c00113{width:28.972800px;}
._16_c00113{width:30.780000px;}
.fc1_c00113{color:rgb(255,255,255);}
.fc0_c00113{color:rgb(0,0,0);}
.fs5_c00113{font-size:40.000002px;}
.fs2_c00113{font-size:48.000000px;}
.fs4_c00113{font-size:60.000000px;}
.fs1_c00113{font-size:72.000000px;}
.fs0_c00113{font-size:78.000000px;}
.fs3_c00113{font-size:96.000000px;}
.y0_c00113{bottom:0.000000px;}
.y18_c00113{bottom:67.335000px;}
.y1b_c00113{bottom:131.835000px;}
.y1a_c00113{bottom:155.085000px;}
.y19_c00113{bottom:200.185050px;}
.y15_c00113{bottom:302.835000px;}
.y14_c00113{bottom:329.835000px;}
.y13_c00113{bottom:356.835000px;}
.y12_c00113{bottom:403.335000px;}
.y11_c00113{bottom:473.835000px;}
.y10_c00113{bottom:500.835000px;}
.yf_c00113{bottom:548.835000px;}
.ye_c00113{bottom:575.835000px;}
.yd_c00113{bottom:602.835000px;}
.yc_c00113{bottom:650.835000px;}
.yb_c00113{bottom:677.835000px;}
.ya_c00113{bottom:704.835000px;}
.y9_c00113{bottom:752.835000px;}
.y8_c00113{bottom:779.835000px;}
.y7_c00113{bottom:806.835000px;}
.y6_c00113{bottom:833.835000px;}
.y5_c00113{bottom:860.835000px;}
.y4_c00113{bottom:887.835000px;}
.y3_c00113{bottom:914.835000px;}
.y2_c00113{bottom:941.835000px;}
.y1_c00113{bottom:988.335000px;}
.y16_c00113{bottom:1066.335000px;}
.y17_c00113{bottom:1193.835000px;}
.h9_c00113{height:34.170112px;}
.ha_c00113{height:34.570312px;}
.h8_c00113{height:44.208984px;}
.hb_c00113{height:49.570312px;}
.h4_c00113{height:51.257812px;}
.h7_c00113{height:56.074219px;}
.h3_c00113{height:56.100586px;}
.h5_c00113{height:57.258075px;}
.h6_c00113{height:68.343750px;}
.h2_c00113{height:1261.500000px;}
.h0_c00113{height:1262.835000px;}
.h1_c00113{height:1263.000000px;}
.w2_c00113{width:892.500000px;}
.w0_c00113{width:892.935000px;}
.w1_c00113{width:893.250000px;}
.x0_c00113{left:0.000000px;}
.x1_c00113{left:65.480310px;}
.x2_c00113{left:94.798875px;}
@media print{
.v2_c00113{vertical-align:-20.521067pt;}
.v3_c00113{vertical-align:-13.689067pt;}
.v0_c00113{vertical-align:0.000000pt;}
.v1_c00113{vertical-align:20.521067pt;}
.ls4_c00113{letter-spacing:0.000000pt;}
.ls2_c00113{letter-spacing:0.005350pt;}
.ls1_c00113{letter-spacing:0.006933pt;}
.ls5_c00113{letter-spacing:0.010667pt;}
.ls0_c00113{letter-spacing:1.515200pt;}
.ls3_c00113{letter-spacing:3.555555pt;}
.ws1_c00113{word-spacing:-17.600000pt;}
.ws0_c00113{word-spacing:-11.733333pt;}
.ws2_c00113{word-spacing:0.000000pt;}
._12_c00113{margin-left:-8.249600pt;}
._19_c00113{margin-left:-6.297600pt;}
._15_c00113{margin-left:-5.020480pt;}
._8_c00113{margin-left:-3.859200pt;}
._b_c00113{margin-left:-2.387200pt;}
._0_c00113{margin-left:-1.363200pt;}
._6_c00113{width:0.902400pt;}
._2_c00113{width:2.240000pt;}
._5_c00113{width:3.680000pt;}
._3_c00113{width:5.120000pt;}
._7_c00113{width:6.457600pt;}
._4_c00113{width:7.366400pt;}
._1_c00113{width:8.748800pt;}
._a_c00113{width:10.310400pt;}
._9_c00113{width:11.379200pt;}
._c_c00113{width:12.620800pt;}
._d_c00113{width:13.546453pt;}
._13_c00113{width:14.511147pt;}
._e_c00113{width:15.680000pt;}
._14_c00113{width:16.620800pt;}
._f_c00113{width:19.020800pt;}
._11_c00113{width:21.254400pt;}
._18_c00113{width:22.873600pt;}
._10_c00113{width:24.556800pt;}
._17_c00113{width:25.753600pt;}
._16_c00113{width:27.360000pt;}
.fs5_c00113{font-size:35.555557pt;}
.fs2_c00113{font-size:42.666667pt;}
.fs4_c00113{font-size:53.333333pt;}
.fs1_c00113{font-size:64.000000pt;}
.fs0_c00113{font-size:69.333333pt;}
.fs3_c00113{font-size:85.333333pt;}
.y0_c00113{bottom:0.000000pt;}
.y18_c00113{bottom:59.853333pt;}
.y1b_c00113{bottom:117.186667pt;}
.y1a_c00113{bottom:137.853333pt;}
.y19_c00113{bottom:177.942267pt;}
.y15_c00113{bottom:269.186667pt;}
.y14_c00113{bottom:293.186667pt;}
.y13_c00113{bottom:317.186667pt;}
.y12_c00113{bottom:358.520000pt;}
.y11_c00113{bottom:421.186667pt;}
.y10_c00113{bottom:445.186667pt;}
.yf_c00113{bottom:487.853333pt;}
.ye_c00113{bottom:511.853333pt;}
.yd_c00113{bottom:535.853333pt;}
.yc_c00113{bottom:578.520000pt;}
.yb_c00113{bottom:602.520000pt;}
.ya_c00113{bottom:626.520000pt;}
.y9_c00113{bottom:669.186667pt;}
.y8_c00113{bottom:693.186667pt;}
.y7_c00113{bottom:717.186667pt;}
.y6_c00113{bottom:741.186667pt;}
.y5_c00113{bottom:765.186667pt;}
.y4_c00113{bottom:789.186667pt;}
.y3_c00113{bottom:813.186667pt;}
.y2_c00113{bottom:837.186667pt;}
.y1_c00113{bottom:878.520000pt;}
.y16_c00113{bottom:947.853333pt;}
.y17_c00113{bottom:1061.186667pt;}
.h9_c00113{height:30.373433pt;}
.ha_c00113{height:30.729167pt;}
.h8_c00113{height:39.296875pt;}
.hb_c00113{height:44.062500pt;}
.h4_c00113{height:45.562500pt;}
.h7_c00113{height:49.843750pt;}
.h3_c00113{height:49.867188pt;}
.h5_c00113{height:50.896067pt;}
.h6_c00113{height:60.750000pt;}
.h2_c00113{height:1121.333333pt;}
.h0_c00113{height:1122.520000pt;}
.h1_c00113{height:1122.666667pt;}
.w2_c00113{width:793.333333pt;}
.w0_c00113{width:793.720000pt;}
.w1_c00113{width:794.000000pt;}
.x0_c00113{left:0.000000pt;}
.x1_c00113{left:58.204720pt;}
.x2_c00113{left:84.265667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_16e4c9e567b6bf31f22e0569.woff2')format("woff");}.ff1_c00114{font-family:ff1_c00114;line-height:0.934082;font-style:normal;font-weight:normal;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_0dc871e10e387d9798e93838.woff2')format("woff");}.ff2_c00114{font-family:ff2_c00114;line-height:0.915527;font-style:normal;font-weight:normal;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_7da0de55dc5b750ca6fd793e.woff2')format("woff");}.ff3_c00114{font-family:ff3_c00114;line-height:0.932129;font-style:normal;font-weight:normal;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_042d7c3a46acc5a60295edde.woff2')format("woff");}.ff4_c00114{font-family:ff4_c00114;line-height:0.956543;font-style:normal;font-weight:normal;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_2bcc2ccb53614e856fa17fc2.woff2')format("woff");}.ff5_c00114{font-family:ff5_c00114;line-height:0.900391;font-style:normal;font-weight: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_c00114;src:url('chunks/assets/font_36d66dc4b5eb063de316e7fc.woff2')format("woff");}.ff6_c00114{font-family:ff6_c00114;line-height:0.891113;font-style: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);}
.v2_c00114{vertical-align:-23.086200px;}
.v3_c00114{vertical-align:-15.000000px;}
.v0_c00114{vertical-align:0.000000px;}
.v1_c00114{vertical-align:23.086200px;}
.ls5_c00114{letter-spacing:-0.014400px;}
.ls4_c00114{letter-spacing:0.000000px;}
.ls3_c00114{letter-spacing:0.005599px;}
.ls2_c00114{letter-spacing:0.012000px;}
.ls0_c00114{letter-spacing:0.014400px;}
.ls1_c00114{letter-spacing:3.760800px;}
.sc__c00114{text-shadow:none;}
.sc0_c00114{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00114{-webkit-text-stroke:0px transparent;}
.sc0_c00114{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00114{word-spacing:-13.200000px;}
.ws3_c00114{word-spacing:-10.000001px;}
.ws1_c00114{word-spacing:-0.086400px;}
.ws2_c00114{word-spacing:-0.057600px;}
.ws4_c00114{word-spacing:0.000000px;}
._9_c00114{margin-left:-7.171200px;}
._2_c00114{margin-left:-3.751200px;}
._0_c00114{margin-left:-2.282400px;}
._8_c00114{margin-left:-1.051200px;}
._7_c00114{width:1.152000px;}
._1_c00114{width:2.361600px;}
._3_c00114{width:3.794400px;}
._4_c00114{width:5.832000px;}
._6_c00114{width:7.243200px;}
._5_c00114{width:8.856000px;}
.fc0_c00114{color:rgb(0,0,0);}
.fs4_c00114{font-size:40.000002px;}
.fs1_c00114{font-size:48.000000px;}
.fs2_c00114{font-size:54.000000px;}
.fs3_c00114{font-size:60.000000px;}
.fs0_c00114{font-size:72.000000px;}
.y0_c00114{bottom:0.000000px;}
.y6_c00114{bottom:12.000000px;}
.yd_c00114{bottom:67.335000px;}
.yf_c00114{bottom:135.685050px;}
.ye_c00114{bottom:180.585000px;}
.yb_c00114{bottom:259.335000px;}
.ya_c00114{bottom:286.335000px;}
.y9_c00114{bottom:313.335000px;}
.y8_c00114{bottom:340.335000px;}
.y7_c00114{bottom:367.335000px;}
.y5_c00114{bottom:412.335000px;}
.y4_c00114{bottom:1013.835000px;}
.y3_c00114{bottom:1040.835000px;}
.y2_c00114{bottom:1067.835000px;}
.y1_c00114{bottom:1094.835000px;}
.yc_c00114{bottom:1193.835000px;}
.h8_c00114{height:27.304689px;}
.h9_c00114{height:29.414064px;}
.h6_c00114{height:41.633789px;}
.h7_c00114{height:44.121094px;}
.h3_c00114{height:51.257812px;}
.h4_c00114{height:57.258075px;}
.h5_c00114{height:570.000000px;}
.h2_c00114{height:1261.500000px;}
.h0_c00114{height:1262.835000px;}
.h1_c00114{height:1263.000000px;}
.w3_c00114{width:676.934850px;}
.w2_c00114{width:892.500000px;}
.w0_c00114{width:892.935000px;}
.w1_c00114{width:893.250000px;}
.x0_c00114{left:0.000000px;}
.x1_c00114{left:150.519750px;}
.x2_c00114{left:261.231450px;}
.x3_c00114{left:380.516100px;}
.x4_c00114{left:802.427700px;}
@media print{
.v2_c00114{vertical-align:-20.521067pt;}
.v3_c00114{vertical-align:-13.333333pt;}
.v0_c00114{vertical-align:0.000000pt;}
.v1_c00114{vertical-align:20.521067pt;}
.ls5_c00114{letter-spacing:-0.012800pt;}
.ls4_c00114{letter-spacing:0.000000pt;}
.ls3_c00114{letter-spacing:0.004977pt;}
.ls2_c00114{letter-spacing:0.010667pt;}
.ls0_c00114{letter-spacing:0.012800pt;}
.ls1_c00114{letter-spacing:3.342933pt;}
.ws0_c00114{word-spacing:-11.733333pt;}
.ws3_c00114{word-spacing:-8.888889pt;}
.ws1_c00114{word-spacing:-0.076800pt;}
.ws2_c00114{word-spacing:-0.051200pt;}
.ws4_c00114{word-spacing:0.000000pt;}
._9_c00114{margin-left:-6.374400pt;}
._2_c00114{margin-left:-3.334400pt;}
._0_c00114{margin-left:-2.028800pt;}
._8_c00114{margin-left:-0.934400pt;}
._7_c00114{width:1.024000pt;}
._1_c00114{width:2.099200pt;}
._3_c00114{width:3.372800pt;}
._4_c00114{width:5.184000pt;}
._6_c00114{width:6.438400pt;}
._5_c00114{width:7.872000pt;}
.fs4_c00114{font-size:35.555557pt;}
.fs1_c00114{font-size:42.666667pt;}
.fs2_c00114{font-size:48.000000pt;}
.fs3_c00114{font-size:53.333333pt;}
.fs0_c00114{font-size:64.000000pt;}
.y0_c00114{bottom:0.000000pt;}
.y6_c00114{bottom:10.666667pt;}
.yd_c00114{bottom:59.853333pt;}
.yf_c00114{bottom:120.608933pt;}
.ye_c00114{bottom:160.520000pt;}
.yb_c00114{bottom:230.520000pt;}
.ya_c00114{bottom:254.520000pt;}
.y9_c00114{bottom:278.520000pt;}
.y8_c00114{bottom:302.520000pt;}
.y7_c00114{bottom:326.520000pt;}
.y5_c00114{bottom:366.520000pt;}
.y4_c00114{bottom:901.186667pt;}
.y3_c00114{bottom:925.186667pt;}
.y2_c00114{bottom:949.186667pt;}
.y1_c00114{bottom:973.186667pt;}
.yc_c00114{bottom:1061.186667pt;}
.h8_c00114{height:24.270835pt;}
.h9_c00114{height:26.145835pt;}
.h6_c00114{height:37.007812pt;}
.h7_c00114{height:39.218750pt;}
.h3_c00114{height:45.562500pt;}
.h4_c00114{height:50.896067pt;}
.h5_c00114{height:506.666667pt;}
.h2_c00114{height:1121.333333pt;}
.h0_c00114{height:1122.520000pt;}
.h1_c00114{height:1122.666667pt;}
.w3_c00114{width:601.719867pt;}
.w2_c00114{width:793.333333pt;}
.w0_c00114{width:793.720000pt;}
.w1_c00114{width:794.000000pt;}
.x0_c00114{left:0.000000pt;}
.x1_c00114{left:133.795333pt;}
.x2_c00114{left:232.205733pt;}
.x3_c00114{left:338.236533pt;}
.x4_c00114{left:713.269067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_59ea72712a41180242a85ed8.woff2')format("woff");}.ff1_c00115{font-family:ff1_c00115;line-height:0.933105;font-style:normal;font-weight:normal;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_25f208d201f7e59f5f8ec613.woff2')format("woff");}.ff2_c00115{font-family:ff2_c00115;line-height:0.987793;font-style:normal;font-weight:normal;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_e57159597063f6fb99ad6074.woff2')format("woff");}.ff3_c00115{font-family:ff3_c00115;line-height:0.755859;font-style:normal;font-weight:normal;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_d639b3fe29438dfb7cd8ddde.woff2')format("woff");}.ff4_c00115{font-family:ff4_c00115;line-height:1.155762;font-style:normal;font-weight:normal;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_39127cae645c8d38858d8f80.woff2')format("woff");}.ff5_c00115{font-family:ff5_c00115;line-height:0.904785;font-style:normal;font-weight: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_c00115;src:url('chunks/assets/font_14f76893553ea058472d7d9e.woff2')format("woff");}.ff6_c00115{font-family:ff6_c00115;line-height:0.891113;font-style: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);}
.v2_c00115{vertical-align:-23.086200px;}
.v3_c00115{vertical-align:-15.000000px;}
.v0_c00115{vertical-align:0.000000px;}
.v1_c00115{vertical-align:23.086200px;}
.ls0_c00115{letter-spacing:0.000000px;}
.ls1_c00115{letter-spacing:0.012000px;}
.sc__c00115{text-shadow:none;}
.sc0_c00115{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00115{-webkit-text-stroke:0px transparent;}
.sc0_c00115{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00115{word-spacing:-17.064000px;}
.ws0_c00115{word-spacing:-13.200000px;}
.ws2_c00115{word-spacing:-10.000001px;}
.ws3_c00115{word-spacing:0.000000px;}
._a_c00115{margin-left:-4.528800px;}
._5_c00115{margin-left:-2.793600px;}
._0_c00115{margin-left:-1.490400px;}
._7_c00115{width:1.368000px;}
._2_c00115{width:3.002400px;}
._c_c00115{width:4.694400px;}
._3_c00115{width:11.570400px;}
._8_c00115{width:13.204800px;}
._4_c00115{width:14.594400px;}
._1_c00115{width:16.034400px;}
._6_c00115{width:17.301600px;}
._9_c00115{width:20.959200px;}
._b_c00115{width:22.687200px;}
.fc1_c00115{color:rgb(0,0,153);}
.fc0_c00115{color:rgb(0,0,0);}
.fs4_c00115{font-size:40.000002px;}
.fs1_c00115{font-size:48.000000px;}
.fs2_c00115{font-size:54.000000px;}
.fs3_c00115{font-size:60.000000px;}
.fs0_c00115{font-size:72.000000px;}
.y0_c00115{bottom:0.000000px;}
.y7_c00115{bottom:10.500000px;}
.y6_c00115{bottom:33.000000px;}
.y9_c00115{bottom:67.335000px;}
.ya_c00115{bottom:135.585000px;}
.y5_c00115{bottom:689.835000px;}
.y4_c00115{bottom:1013.835000px;}
.y3_c00115{bottom:1040.835000px;}
.y2_c00115{bottom:1067.835000px;}
.y1_c00115{bottom:1094.835000px;}
.y8_c00115{bottom:1193.835000px;}
.h9_c00115{height:27.480470px;}
.h6_c00115{height:42.292969px;}
.h8_c00115{height:44.208984px;}
.h3_c00115{height:51.187500px;}
.h7_c00115{height:56.074219px;}
.h4_c00115{height:57.211200px;}
.h5_c00115{height:270.000000px;}
.h2_c00115{height:1261.500000px;}
.h0_c00115{height:1262.835000px;}
.h1_c00115{height:1263.000000px;}
.w3_c00115{width:676.935000px;}
.w2_c00115{width:892.500000px;}
.w0_c00115{width:892.935000px;}
.w1_c00115{width:893.250000px;}
.x0_c00115{left:0.000000px;}
.x2_c00115{left:7.704300px;}
.x3_c00115{left:62.811720px;}
.x1_c00115{left:65.480310px;}
@media print{
.v2_c00115{vertical-align:-20.521067pt;}
.v3_c00115{vertical-align:-13.333333pt;}
.v0_c00115{vertical-align:0.000000pt;}
.v1_c00115{vertical-align:20.521067pt;}
.ls0_c00115{letter-spacing:0.000000pt;}
.ls1_c00115{letter-spacing:0.010667pt;}
.ws1_c00115{word-spacing:-15.168000pt;}
.ws0_c00115{word-spacing:-11.733333pt;}
.ws2_c00115{word-spacing:-8.888889pt;}
.ws3_c00115{word-spacing:0.000000pt;}
._a_c00115{margin-left:-4.025600pt;}
._5_c00115{margin-left:-2.483200pt;}
._0_c00115{margin-left:-1.324800pt;}
._7_c00115{width:1.216000pt;}
._2_c00115{width:2.668800pt;}
._c_c00115{width:4.172800pt;}
._3_c00115{width:10.284800pt;}
._8_c00115{width:11.737600pt;}
._4_c00115{width:12.972800pt;}
._1_c00115{width:14.252800pt;}
._6_c00115{width:15.379200pt;}
._9_c00115{width:18.630400pt;}
._b_c00115{width:20.166400pt;}
.fs4_c00115{font-size:35.555557pt;}
.fs1_c00115{font-size:42.666667pt;}
.fs2_c00115{font-size:48.000000pt;}
.fs3_c00115{font-size:53.333333pt;}
.fs0_c00115{font-size:64.000000pt;}
.y0_c00115{bottom:0.000000pt;}
.y7_c00115{bottom:9.333333pt;}
.y6_c00115{bottom:29.333333pt;}
.y9_c00115{bottom:59.853333pt;}
.ya_c00115{bottom:120.520000pt;}
.y5_c00115{bottom:613.186667pt;}
.y4_c00115{bottom:901.186667pt;}
.y3_c00115{bottom:925.186667pt;}
.y2_c00115{bottom:949.186667pt;}
.y1_c00115{bottom:973.186667pt;}
.y8_c00115{bottom:1061.186667pt;}
.h9_c00115{height:24.427085pt;}
.h6_c00115{height:37.593750pt;}
.h8_c00115{height:39.296875pt;}
.h3_c00115{height:45.500000pt;}
.h7_c00115{height:49.843750pt;}
.h4_c00115{height:50.854400pt;}
.h5_c00115{height:240.000000pt;}
.h2_c00115{height:1121.333333pt;}
.h0_c00115{height:1122.520000pt;}
.h1_c00115{height:1122.666667pt;}
.w3_c00115{width:601.720000pt;}
.w2_c00115{width:793.333333pt;}
.w0_c00115{width:793.720000pt;}
.w1_c00115{width:794.000000pt;}
.x0_c00115{left:0.000000pt;}
.x2_c00115{left:6.848267pt;}
.x3_c00115{left:55.832640pt;}
.x1_c00115{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_69c4b9cc4b1a2f910034dcc9.woff2')format("woff");}.ff1_c00116{font-family:ff1_c00116;line-height:0.884766;font-style:normal;font-weight:normal;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_1047eaf1625257fac47a8571.woff2')format("woff");}.ff2_c00116{font-family:ff2_c00116;line-height:0.934082;font-style:normal;font-weight:normal;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_2234c8d223036f8ed507dcc9.woff2')format("woff");}.ff3_c00116{font-family:ff3_c00116;line-height:0.956543;font-style:normal;font-weight:normal;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_72c8bafcd36030c188b1bffd.woff2')format("woff");}.ff4_c00116{font-family:ff4_c00116;line-height:1.043945;font-style:normal;font-weight:normal;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_ada6b417a7dc0dcba73f48b5.woff2')format("woff");}.ff5_c00116{font-family:ff5_c00116;line-height:0.891113;font-style: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);}
.v2_c00116{vertical-align:-23.086200px;}
.v3_c00116{vertical-align:-15.000000px;}
.v0_c00116{vertical-align:0.000000px;}
.v1_c00116{vertical-align:23.086200px;}
.ls6_c00116{letter-spacing:0.000000px;}
.ls2_c00116{letter-spacing:0.007200px;}
.ls0_c00116{letter-spacing:0.007800px;}
.ls5_c00116{letter-spacing:0.012000px;}
.ls4_c00116{letter-spacing:0.247200px;}
.ls3_c00116{letter-spacing:2.590800px;}
.ls1_c00116{letter-spacing:2.696400px;}
.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;}
}
.ws3_c00116{word-spacing:-19.800000px;}
.ws2_c00116{word-spacing:-13.200000px;}
.ws4_c00116{word-spacing:-10.000001px;}
.ws0_c00116{word-spacing:-0.085800px;}
.ws1_c00116{word-spacing:-0.078000px;}
.ws5_c00116{word-spacing:0.000000px;}
._14_c00116{margin-left:-9.489600px;}
._16_c00116{margin-left:-7.236000px;}
._17_c00116{margin-left:-5.547801px;}
._5_c00116{margin-left:-4.492800px;}
._15_c00116{margin-left:-3.261600px;}
._2_c00116{margin-left:-2.232000px;}
._7_c00116{margin-left:-1.022400px;}
._4_c00116{width:1.296000px;}
._0_c00116{width:2.325600px;}
._1_c00116{width:3.758400px;}
._3_c00116{width:5.277600px;}
._6_c00116{width:7.250400px;}
._b_c00116{width:8.913600px;}
._a_c00116{width:11.059200px;}
._f_c00116{width:12.081600px;}
._8_c00116{width:13.500000px;}
._9_c00116{width:14.940000px;}
._e_c00116{width:16.293600px;}
._c_c00116{width:18.734400px;}
._12_c00116{width:22.204800px;}
._d_c00116{width:23.767200px;}
._11_c00116{width:25.243200px;}
._13_c00116{width:26.654400px;}
._10_c00116{width:28.929600px;}
.fc1_c00116{color:rgb(255,255,255);}
.fc0_c00116{color:rgb(0,0,0);}
.fs4_c00116{font-size:40.000002px;}
.fs2_c00116{font-size:48.000000px;}
.fs3_c00116{font-size:60.000000px;}
.fs1_c00116{font-size:72.000000px;}
.fs0_c00116{font-size:78.000000px;}
.fs5_c00116{font-size:96.000000px;}
.y0_c00116{bottom:0.000000px;}
.y15_c00116{bottom:67.335000px;}
.y19_c00116{bottom:135.585000px;}
.y18_c00116{bottom:180.585000px;}
.y17_c00116{bottom:225.585000px;}
.y16_c00116{bottom:270.585000px;}
.y13_c00116{bottom:373.335000px;}
.y12_c00116{bottom:400.335000px;}
.y11_c00116{bottom:448.335000px;}
.y10_c00116{bottom:475.335000px;}
.yf_c00116{bottom:523.335000px;}
.ye_c00116{bottom:550.335000px;}
.yd_c00116{bottom:577.335000px;}
.yc_c00116{bottom:604.335000px;}
.yb_c00116{bottom:652.335000px;}
.ya_c00116{bottom:679.335000px;}
.y9_c00116{bottom:706.335000px;}
.y8_c00116{bottom:733.335000px;}
.y7_c00116{bottom:781.335000px;}
.y6_c00116{bottom:808.335000px;}
.y5_c00116{bottom:835.335000px;}
.y4_c00116{bottom:862.335000px;}
.y3_c00116{bottom:910.335000px;}
.y2_c00116{bottom:937.335000px;}
.y1_c00116{bottom:983.835000px;}
.y1a_c00116{bottom:1066.335000px;}
.y14_c00116{bottom:1193.835000px;}
.h7_c00116{height:34.570312px;}
.h6_c00116{height:44.121094px;}
.h4_c00116{height:51.257812px;}
.h3_c00116{height:55.529297px;}
.h5_c00116{height:57.258075px;}
.h8_c00116{height:68.343750px;}
.h2_c00116{height:1261.500000px;}
.h0_c00116{height:1262.835000px;}
.h1_c00116{height:1263.000000px;}
.w2_c00116{width:892.500000px;}
.w0_c00116{width:892.935000px;}
.w1_c00116{width:893.250000px;}
.x0_c00116{left:0.000000px;}
.x1_c00116{left:150.519750px;}
.x4_c00116{left:180.298875px;}
.x2_c00116{left:380.516100px;}
.x3_c00116{left:802.427700px;}
@media print{
.v2_c00116{vertical-align:-20.521067pt;}
.v3_c00116{vertical-align:-13.333333pt;}
.v0_c00116{vertical-align:0.000000pt;}
.v1_c00116{vertical-align:20.521067pt;}
.ls6_c00116{letter-spacing:0.000000pt;}
.ls2_c00116{letter-spacing:0.006400pt;}
.ls0_c00116{letter-spacing:0.006933pt;}
.ls5_c00116{letter-spacing:0.010667pt;}
.ls4_c00116{letter-spacing:0.219733pt;}
.ls3_c00116{letter-spacing:2.302933pt;}
.ls1_c00116{letter-spacing:2.396800pt;}
.ws3_c00116{word-spacing:-17.600000pt;}
.ws2_c00116{word-spacing:-11.733333pt;}
.ws4_c00116{word-spacing:-8.888889pt;}
.ws0_c00116{word-spacing:-0.076267pt;}
.ws1_c00116{word-spacing:-0.069333pt;}
.ws5_c00116{word-spacing:0.000000pt;}
._14_c00116{margin-left:-8.435200pt;}
._16_c00116{margin-left:-6.432000pt;}
._17_c00116{margin-left:-4.931379pt;}
._5_c00116{margin-left:-3.993600pt;}
._15_c00116{margin-left:-2.899200pt;}
._2_c00116{margin-left:-1.984000pt;}
._7_c00116{margin-left:-0.908800pt;}
._4_c00116{width:1.152000pt;}
._0_c00116{width:2.067200pt;}
._1_c00116{width:3.340800pt;}
._3_c00116{width:4.691200pt;}
._6_c00116{width:6.444800pt;}
._b_c00116{width:7.923200pt;}
._a_c00116{width:9.830400pt;}
._f_c00116{width:10.739200pt;}
._8_c00116{width:12.000000pt;}
._9_c00116{width:13.280000pt;}
._e_c00116{width:14.483200pt;}
._c_c00116{width:16.652800pt;}
._12_c00116{width:19.737600pt;}
._d_c00116{width:21.126400pt;}
._11_c00116{width:22.438400pt;}
._13_c00116{width:23.692800pt;}
._10_c00116{width:25.715200pt;}
.fs4_c00116{font-size:35.555557pt;}
.fs2_c00116{font-size:42.666667pt;}
.fs3_c00116{font-size:53.333333pt;}
.fs1_c00116{font-size:64.000000pt;}
.fs0_c00116{font-size:69.333333pt;}
.fs5_c00116{font-size:85.333333pt;}
.y0_c00116{bottom:0.000000pt;}
.y15_c00116{bottom:59.853333pt;}
.y19_c00116{bottom:120.520000pt;}
.y18_c00116{bottom:160.520000pt;}
.y17_c00116{bottom:200.520000pt;}
.y16_c00116{bottom:240.520000pt;}
.y13_c00116{bottom:331.853333pt;}
.y12_c00116{bottom:355.853333pt;}
.y11_c00116{bottom:398.520000pt;}
.y10_c00116{bottom:422.520000pt;}
.yf_c00116{bottom:465.186667pt;}
.ye_c00116{bottom:489.186667pt;}
.yd_c00116{bottom:513.186667pt;}
.yc_c00116{bottom:537.186667pt;}
.yb_c00116{bottom:579.853333pt;}
.ya_c00116{bottom:603.853333pt;}
.y9_c00116{bottom:627.853333pt;}
.y8_c00116{bottom:651.853333pt;}
.y7_c00116{bottom:694.520000pt;}
.y6_c00116{bottom:718.520000pt;}
.y5_c00116{bottom:742.520000pt;}
.y4_c00116{bottom:766.520000pt;}
.y3_c00116{bottom:809.186667pt;}
.y2_c00116{bottom:833.186667pt;}
.y1_c00116{bottom:874.520000pt;}
.y1a_c00116{bottom:947.853333pt;}
.y14_c00116{bottom:1061.186667pt;}
.h7_c00116{height:30.729167pt;}
.h6_c00116{height:39.218750pt;}
.h4_c00116{height:45.562500pt;}
.h3_c00116{height:49.359375pt;}
.h5_c00116{height:50.896067pt;}
.h8_c00116{height:60.750000pt;}
.h2_c00116{height:1121.333333pt;}
.h0_c00116{height:1122.520000pt;}
.h1_c00116{height:1122.666667pt;}
.w2_c00116{width:793.333333pt;}
.w0_c00116{width:793.720000pt;}
.w1_c00116{width:794.000000pt;}
.x0_c00116{left:0.000000pt;}
.x1_c00116{left:133.795333pt;}
.x4_c00116{left:160.265667pt;}
.x2_c00116{left:338.236533pt;}
.x3_c00116{left:713.269067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_56e6ae19d64389260a2a43f9.woff2')format("woff");}.ff1_c00117{font-family:ff1_c00117;line-height:0.939453;font-style:normal;font-weight:normal;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_b17041e149bd07896615b5d7.woff2')format("woff");}.ff2_c00117{font-family:ff2_c00117;line-height:0.934082;font-style:normal;font-weight:normal;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_51e60d1c7296b2b54db65023.woff2')format("woff");}.ff3_c00117{font-family:ff3_c00117;line-height:0.932129;font-style:normal;font-weight:normal;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_554d7820eb8c63958e0b6d54.woff2')format("woff");}.ff4_c00117{font-family:ff4_c00117;line-height:0.976074;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00117;src:url('chunks/assets/font_563ef13c0d85380d15a2492e.woff2')format("woff");}.ff5_c00117{font-family:ff5_c00117;line-height:0.755859;font-style:normal;font-weight: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_c00117;src:url('chunks/assets/font_b1eb25d9eb31f4f62628c8af.woff2')format("woff");}.ff6_c00117{font-family:ff6_c00117;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00117;src:url('chunks/assets/font_fd3d13df66365d87ce6e6f50.woff2')format("woff");}.ff7_c00117{font-family:ff7_c00117;line-height:0.901367;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00117;src:url('chunks/assets/font_2013dbfda76c35c353a86bad.woff2')format("woff");}.ff8_c00117{font-family:ff8_c00117;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00117{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00117{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00117{vertical-align:-23.086200px;}
.v3_c00117{vertical-align:-15.400200px;}
.v0_c00117{vertical-align:0.000000px;}
.v1_c00117{vertical-align:23.086200px;}
.ls4_c00117{letter-spacing:-0.014400px;}
.ls3_c00117{letter-spacing:0.000000px;}
.ls2_c00117{letter-spacing:0.006019px;}
.ls0_c00117{letter-spacing:0.007800px;}
.ls5_c00117{letter-spacing:0.012000px;}
.ls1_c00117{letter-spacing:2.376600px;}
.sc__c00117{text-shadow:none;}
.sc0_c00117{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00117{-webkit-text-stroke:0px transparent;}
.sc0_c00117{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00117{word-spacing:-13.200000px;}
.ws2_c00117{word-spacing:-10.000001px;}
.ws0_c00117{word-spacing:-0.057600px;}
.ws3_c00117{word-spacing:0.000000px;}
._11_c00117{margin-left:-6.580800px;}
._14_c00117{margin-left:-5.286441px;}
._1_c00117{margin-left:-3.960000px;}
._a_c00117{margin-left:-2.512800px;}
._6_c00117{margin-left:-1.058400px;}
._5_c00117{width:1.706400px;}
._3_c00117{width:3.636000px;}
._9_c00117{width:5.529600px;}
._b_c00117{width:7.142400px;}
._13_c00117{width:8.164800px;}
._c_c00117{width:9.165600px;}
._12_c00117{width:10.656000px;}
._10_c00117{width:12.261600px;}
._f_c00117{width:13.449600px;}
._d_c00117{width:15.415200px;}
._e_c00117{width:16.531200px;}
._4_c00117{width:17.784000px;}
._0_c00117{width:21.369600px;}
._8_c00117{width:22.485600px;}
._7_c00117{width:24.242400px;}
._2_c00117{width:25.408800px;}
.fc0_c00117{color:rgb(0,0,0);}
.fs5_c00117{font-size:40.000002px;}
.fs2_c00117{font-size:48.000000px;}
.fs3_c00117{font-size:54.000000px;}
.fs4_c00117{font-size:60.000000px;}
.fs1_c00117{font-size:72.000000px;}
.fs0_c00117{font-size:78.000000px;}
.y0_c00117{bottom:0.000000px;}
.yb_c00117{bottom:12.000000px;}
.y13_c00117{bottom:67.335000px;}
.y15_c00117{bottom:135.585000px;}
.y14_c00117{bottom:180.685050px;}
.y11_c00117{bottom:232.335000px;}
.y10_c00117{bottom:259.335000px;}
.yf_c00117{bottom:286.335000px;}
.ye_c00117{bottom:313.335000px;}
.yd_c00117{bottom:340.335000px;}
.yc_c00117{bottom:367.335000px;}
.ya_c00117{bottom:412.335000px;}
.y9_c00117{bottom:842.835000px;}
.y8_c00117{bottom:869.835000px;}
.y7_c00117{bottom:896.835000px;}
.y6_c00117{bottom:923.835000px;}
.y5_c00117{bottom:950.835000px;}
.y4_c00117{bottom:997.335000px;}
.y3_c00117{bottom:1021.335000px;}
.y2_c00117{bottom:1046.835000px;}
.y1_c00117{bottom:1093.335000px;}
.y12_c00117{bottom:1193.835000px;}
.hb_c00117{height:27.343751px;}
.ha_c00117{height:29.472658px;}
.h7_c00117{height:42.292969px;}
.h9_c00117{height:44.208984px;}
.h4_c00117{height:51.257812px;}
.h8_c00117{height:56.074219px;}
.h3_c00117{height:56.100586px;}
.h5_c00117{height:57.258075px;}
.h6_c00117{height:399.000000px;}
.h2_c00117{height:1261.500000px;}
.h0_c00117{height:1262.835000px;}
.h1_c00117{height:1263.000000px;}
.w3_c00117{width:676.935000px;}
.w2_c00117{width:892.500000px;}
.w0_c00117{width:892.935000px;}
.w1_c00117{width:893.250000px;}
.x0_c00117{left:0.000000px;}
.x1_c00117{left:65.480310px;}
.x2_c00117{left:215.952300px;}
@media print{
.v2_c00117{vertical-align:-20.521067pt;}
.v3_c00117{vertical-align:-13.689067pt;}
.v0_c00117{vertical-align:0.000000pt;}
.v1_c00117{vertical-align:20.521067pt;}
.ls4_c00117{letter-spacing:-0.012800pt;}
.ls3_c00117{letter-spacing:0.000000pt;}
.ls2_c00117{letter-spacing:0.005350pt;}
.ls0_c00117{letter-spacing:0.006933pt;}
.ls5_c00117{letter-spacing:0.010667pt;}
.ls1_c00117{letter-spacing:2.112533pt;}
.ws1_c00117{word-spacing:-11.733333pt;}
.ws2_c00117{word-spacing:-8.888889pt;}
.ws0_c00117{word-spacing:-0.051200pt;}
.ws3_c00117{word-spacing:0.000000pt;}
._11_c00117{margin-left:-5.849600pt;}
._14_c00117{margin-left:-4.699059pt;}
._1_c00117{margin-left:-3.520000pt;}
._a_c00117{margin-left:-2.233600pt;}
._6_c00117{margin-left:-0.940800pt;}
._5_c00117{width:1.516800pt;}
._3_c00117{width:3.232000pt;}
._9_c00117{width:4.915200pt;}
._b_c00117{width:6.348800pt;}
._13_c00117{width:7.257600pt;}
._c_c00117{width:8.147200pt;}
._12_c00117{width:9.472000pt;}
._10_c00117{width:10.899200pt;}
._f_c00117{width:11.955200pt;}
._d_c00117{width:13.702400pt;}
._e_c00117{width:14.694400pt;}
._4_c00117{width:15.808000pt;}
._0_c00117{width:18.995200pt;}
._8_c00117{width:19.987200pt;}
._7_c00117{width:21.548800pt;}
._2_c00117{width:22.585600pt;}
.fs5_c00117{font-size:35.555557pt;}
.fs2_c00117{font-size:42.666667pt;}
.fs3_c00117{font-size:48.000000pt;}
.fs4_c00117{font-size:53.333333pt;}
.fs1_c00117{font-size:64.000000pt;}
.fs0_c00117{font-size:69.333333pt;}
.y0_c00117{bottom:0.000000pt;}
.yb_c00117{bottom:10.666667pt;}
.y13_c00117{bottom:59.853333pt;}
.y15_c00117{bottom:120.520000pt;}
.y14_c00117{bottom:160.608933pt;}
.y11_c00117{bottom:206.520000pt;}
.y10_c00117{bottom:230.520000pt;}
.yf_c00117{bottom:254.520000pt;}
.ye_c00117{bottom:278.520000pt;}
.yd_c00117{bottom:302.520000pt;}
.yc_c00117{bottom:326.520000pt;}
.ya_c00117{bottom:366.520000pt;}
.y9_c00117{bottom:749.186667pt;}
.y8_c00117{bottom:773.186667pt;}
.y7_c00117{bottom:797.186667pt;}
.y6_c00117{bottom:821.186667pt;}
.y5_c00117{bottom:845.186667pt;}
.y4_c00117{bottom:886.520000pt;}
.y3_c00117{bottom:907.853333pt;}
.y2_c00117{bottom:930.520000pt;}
.y1_c00117{bottom:971.853333pt;}
.y12_c00117{bottom:1061.186667pt;}
.hb_c00117{height:24.305557pt;}
.ha_c00117{height:26.197918pt;}
.h7_c00117{height:37.593750pt;}
.h9_c00117{height:39.296875pt;}
.h4_c00117{height:45.562500pt;}
.h8_c00117{height:49.843750pt;}
.h3_c00117{height:49.867188pt;}
.h5_c00117{height:50.896067pt;}
.h6_c00117{height:354.666667pt;}
.h2_c00117{height:1121.333333pt;}
.h0_c00117{height:1122.520000pt;}
.h1_c00117{height:1122.666667pt;}
.w3_c00117{width:601.720000pt;}
.w2_c00117{width:793.333333pt;}
.w0_c00117{width:793.720000pt;}
.w1_c00117{width:794.000000pt;}
.x0_c00117{left:0.000000pt;}
.x1_c00117{left:58.204720pt;}
.x2_c00117{left:191.957600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ff53c7fcdc3b0d4dca9623d4.woff2')format("woff");}.ff1_c00118{font-family:ff1_c00118;line-height:0.994141;font-style:normal;font-weight:normal;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_57c8581800c1aced98707bbf.woff2')format("woff");}.ff2_c00118{font-family:ff2_c00118;line-height:0.956543;font-style: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;}
.ls3_c00118{letter-spacing:0.000000px;}
.ls1_c00118{letter-spacing:0.010800px;}
.ls2_c00118{letter-spacing:0.012000px;}
.ls0_c00118{letter-spacing:0.021600px;}
.sc__c00118{text-shadow:none;}
.sc0_c00118{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00118{-webkit-text-stroke:0px transparent;}
.sc0_c00118{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00118{word-spacing:-17.064000px;}
.ws1_c00118{word-spacing:0.000000px;}
._7_c00118{margin-left:-16.961400px;}
._8_c00118{margin-left:-3.402000px;}
._0_c00118{margin-left:-1.960446px;}
._6_c00118{width:1.002000px;}
._5_c00118{width:2.241000px;}
._1_c00118{width:3.250800px;}
._2_c00118{width:4.935600px;}
._3_c00118{width:8.132400px;}
._4_c00118{width:10.157646px;}
.fc1_c00118{color:rgb(0,0,153);}
.fc0_c00118{color:rgb(0,0,0);}
.fs0_c00118{font-size:54.000000px;}
.fs1_c00118{font-size:60.000000px;}
.y0_c00118{bottom:0.000000px;}
.y3_c00118{bottom:10.500000px;}
.y6_c00118{bottom:27.000000px;}
.y2_c00118{bottom:39.000000px;}
.y5_c00118{bottom:55.500000px;}
.y8_c00118{bottom:67.335000px;}
.y4_c00118{bottom:175.335000px;}
.y1_c00118{bottom:643.335000px;}
.y7_c00118{bottom:1193.835000px;}
.h3_c00118{height:42.292969px;}
.h6_c00118{height:44.121094px;}
.h4_c00118{height:369.000000px;}
.h2_c00118{height:469.500000px;}
.h5_c00118{height:1261.500000px;}
.h0_c00118{height:1262.835000px;}
.h1_c00118{height:1263.000000px;}
.w2_c00118{width:676.934850px;}
.w3_c00118{width:892.500000px;}
.w0_c00118{width:892.935000px;}
.w1_c00118{width:893.250000px;}
.x0_c00118{left:0.000000px;}
.x2_c00118{left:7.500000px;}
.x3_c00118{left:11.372612px;}
.x1_c00118{left:150.000000px;}
.x4_c00118{left:380.516100px;}
.x5_c00118{left:802.427700px;}
@media print{
.v0_c00118{vertical-align:0.000000pt;}
.ls3_c00118{letter-spacing:0.000000pt;}
.ls1_c00118{letter-spacing:0.009600pt;}
.ls2_c00118{letter-spacing:0.010667pt;}
.ls0_c00118{letter-spacing:0.019200pt;}
.ws0_c00118{word-spacing:-15.168000pt;}
.ws1_c00118{word-spacing:0.000000pt;}
._7_c00118{margin-left:-15.076800pt;}
._8_c00118{margin-left:-3.024000pt;}
._0_c00118{margin-left:-1.742619pt;}
._6_c00118{width:0.890667pt;}
._5_c00118{width:1.992000pt;}
._1_c00118{width:2.889600pt;}
._2_c00118{width:4.387200pt;}
._3_c00118{width:7.228800pt;}
._4_c00118{width:9.029019pt;}
.fs0_c00118{font-size:48.000000pt;}
.fs1_c00118{font-size:53.333333pt;}
.y0_c00118{bottom:0.000000pt;}
.y3_c00118{bottom:9.333333pt;}
.y6_c00118{bottom:24.000000pt;}
.y2_c00118{bottom:34.666667pt;}
.y5_c00118{bottom:49.333333pt;}
.y8_c00118{bottom:59.853333pt;}
.y4_c00118{bottom:155.853333pt;}
.y1_c00118{bottom:571.853333pt;}
.y7_c00118{bottom:1061.186667pt;}
.h3_c00118{height:37.593750pt;}
.h6_c00118{height:39.218750pt;}
.h4_c00118{height:328.000000pt;}
.h2_c00118{height:417.333333pt;}
.h5_c00118{height:1121.333333pt;}
.h0_c00118{height:1122.520000pt;}
.h1_c00118{height:1122.666667pt;}
.w2_c00118{width:601.719867pt;}
.w3_c00118{width:793.333333pt;}
.w0_c00118{width:793.720000pt;}
.w1_c00118{width:794.000000pt;}
.x0_c00118{left:0.000000pt;}
.x2_c00118{left:6.666667pt;}
.x3_c00118{left:10.108988pt;}
.x1_c00118{left:133.333333pt;}
.x4_c00118{left:338.236533pt;}
.x5_c00118{left:713.269067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b76e44237a51a9df83489619.woff2')format("woff");}.ff1_c00119{font-family:ff1_c00119;line-height:0.987793;font-style:normal;font-weight:normal;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_05d3fef551cff9b0f86cf135.woff2')format("woff");}.ff2_c00119{font-family:ff2_c00119;line-height:0.933105;font-style:normal;font-weight:normal;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_fc175e1023826b3c1bb3af29.woff2')format("woff");}.ff3_c00119{font-family:ff3_c00119;line-height:0.755859;font-style:normal;font-weight:normal;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_58fb79810ff2d8fb4bb64786.woff2')format("woff");}.ff4_c00119{font-family:ff4_c00119;line-height:1.155762;font-style:normal;font-weight:normal;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_0975186e9e6ae1ea66d88a6d.woff2')format("woff");}.ff5_c00119{font-family:ff5_c00119;line-height:0.904785;font-style:normal;font-weight: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_c00119;src:url('chunks/assets/font_6dd22de19e17f5849fea698b.woff2')format("woff");}.ff6_c00119{font-family:ff6_c00119;line-height:0.701172;font-style: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);}
.v2_c00119{vertical-align:-15.000000px;}
.v0_c00119{vertical-align:0.000000px;}
.v1_c00119{vertical-align:23.086200px;}
.ls1_c00119{letter-spacing:0.000000px;}
.ls2_c00119{letter-spacing:0.012000px;}
.ls0_c00119{letter-spacing:0.681000px;}
.sc__c00119{text-shadow:none;}
.sc0_c00119{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00119{-webkit-text-stroke:0px transparent;}
.sc0_c00119{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00119{word-spacing:-17.064000px;}
.ws1_c00119{word-spacing:-10.000001px;}
.ws2_c00119{word-spacing:0.000000px;}
._5_c00119{margin-left:-4.075200px;}
._3_c00119{margin-left:-1.828800px;}
._0_c00119{width:2.325600px;}
._7_c00119{width:4.658400px;}
._1_c00119{width:6.552000px;}
._2_c00119{width:8.928000px;}
._4_c00119{width:10.706400px;}
._6_c00119{width:12.974400px;}
.fc1_c00119{color:rgb(0,0,153);}
.fc0_c00119{color:rgb(0,0,0);}
.fs4_c00119{font-size:40.000002px;}
.fs2_c00119{font-size:48.000000px;}
.fs0_c00119{font-size:54.000000px;}
.fs3_c00119{font-size:60.000000px;}
.fs1_c00119{font-size:72.000000px;}
.y0_c00119{bottom:0.000000px;}
.y2_c00119{bottom:12.000000px;}
.y7_c00119{bottom:67.335000px;}
.y8_c00119{bottom:135.585000px;}
.y5_c00119{bottom:179.835000px;}
.y4_c00119{bottom:631.335000px;}
.y3_c00119{bottom:658.335000px;}
.y1_c00119{bottom:698.835000px;}
.y6_c00119{bottom:1193.835000px;}
.ha_c00119{height:27.480470px;}
.h3_c00119{height:42.292969px;}
.h9_c00119{height:44.208984px;}
.h5_c00119{height:51.187500px;}
.h8_c00119{height:56.074219px;}
.h6_c00119{height:57.211200px;}
.h2_c00119{height:414.000000px;}
.h7_c00119{height:420.000000px;}
.h4_c00119{height:1261.500000px;}
.h0_c00119{height:1262.835000px;}
.h1_c00119{height:1263.000000px;}
.w2_c00119{width:676.934850px;}
.w3_c00119{width:892.500000px;}
.w0_c00119{width:892.935000px;}
.w1_c00119{width:893.250000px;}
.x0_c00119{left:0.000000px;}
.x2_c00119{left:46.707945px;}
.x1_c00119{left:66.000000px;}
.x3_c00119{left:124.893240px;}
@media print{
.v2_c00119{vertical-align:-13.333333pt;}
.v0_c00119{vertical-align:0.000000pt;}
.v1_c00119{vertical-align:20.521067pt;}
.ls1_c00119{letter-spacing:0.000000pt;}
.ls2_c00119{letter-spacing:0.010667pt;}
.ls0_c00119{letter-spacing:0.605333pt;}
.ws0_c00119{word-spacing:-15.168000pt;}
.ws1_c00119{word-spacing:-8.888889pt;}
.ws2_c00119{word-spacing:0.000000pt;}
._5_c00119{margin-left:-3.622400pt;}
._3_c00119{margin-left:-1.625600pt;}
._0_c00119{width:2.067200pt;}
._7_c00119{width:4.140800pt;}
._1_c00119{width:5.824000pt;}
._2_c00119{width:7.936000pt;}
._4_c00119{width:9.516800pt;}
._6_c00119{width:11.532800pt;}
.fs4_c00119{font-size:35.555557pt;}
.fs2_c00119{font-size:42.666667pt;}
.fs0_c00119{font-size:48.000000pt;}
.fs3_c00119{font-size:53.333333pt;}
.fs1_c00119{font-size:64.000000pt;}
.y0_c00119{bottom:0.000000pt;}
.y2_c00119{bottom:10.666667pt;}
.y7_c00119{bottom:59.853333pt;}
.y8_c00119{bottom:120.520000pt;}
.y5_c00119{bottom:159.853333pt;}
.y4_c00119{bottom:561.186667pt;}
.y3_c00119{bottom:585.186667pt;}
.y1_c00119{bottom:621.186667pt;}
.y6_c00119{bottom:1061.186667pt;}
.ha_c00119{height:24.427085pt;}
.h3_c00119{height:37.593750pt;}
.h9_c00119{height:39.296875pt;}
.h5_c00119{height:45.500000pt;}
.h8_c00119{height:49.843750pt;}
.h6_c00119{height:50.854400pt;}
.h2_c00119{height:368.000000pt;}
.h7_c00119{height:373.333333pt;}
.h4_c00119{height:1121.333333pt;}
.h0_c00119{height:1122.520000pt;}
.h1_c00119{height:1122.666667pt;}
.w2_c00119{width:601.719867pt;}
.w3_c00119{width:793.333333pt;}
.w0_c00119{width:793.720000pt;}
.w1_c00119{width:794.000000pt;}
.x0_c00119{left:0.000000pt;}
.x2_c00119{left:41.518173pt;}
.x1_c00119{left:58.666667pt;}
.x3_c00119{left:111.016213pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0f0e903e313418208f6ff33c.woff2')format("woff");}.ff1_c00120{font-family:ff1_c00120;line-height:0.934082;font-style:normal;font-weight:normal;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_15d3cdba49ddfc6d2ef63b87.woff2')format("woff");}.ff2_c00120{font-family:ff2_c00120;line-height:0.994141;font-style:normal;font-weight:normal;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_1045384dcbce37bb018600d3.woff2')format("woff");}.ff3_c00120{font-family:ff3_c00120;line-height:0.956543;font-style: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;}
.ls1_c00120{letter-spacing:0.000000px;}
.ls0_c00120{letter-spacing:0.012000px;}
.sc__c00120{text-shadow:none;}
.sc0_c00120{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00120{-webkit-text-stroke:0px transparent;}
.sc0_c00120{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00120{word-spacing:-17.064000px;}
.ws1_c00120{word-spacing:0.000000px;}
._d_c00120{margin-left:-4.701600px;}
._2_c00120{margin-left:-3.009600px;}
._1_c00120{margin-left:-1.792800px;}
._3_c00120{width:1.202400px;}
._0_c00120{width:3.117600px;}
._4_c00120{width:4.521600px;}
._c_c00120{width:5.630400px;}
._b_c00120{width:7.063200px;}
._9_c00120{width:8.222400px;}
._a_c00120{width:10.072800px;}
._e_c00120{width:11.664000px;}
._8_c00120{width:27.700200px;}
._6_c00120{width:29.642400px;}
._7_c00120{width:30.888000px;}
._5_c00120{width:32.745600px;}
.fc1_c00120{color:rgb(0,0,153);}
.fc0_c00120{color:rgb(0,0,0);}
.fs1_c00120{font-size:54.000000px;}
.fs2_c00120{font-size:60.000000px;}
.fs0_c00120{font-size:72.000000px;}
.y0_c00120{bottom:0.000000px;}
.y7_c00120{bottom:10.500000px;}
.y6_c00120{bottom:46.500000px;}
.y5_c00120{bottom:63.000000px;}
.yd_c00120{bottom:67.335000px;}
.yb_c00120{bottom:541.335000px;}
.ya_c00120{bottom:568.335000px;}
.y9_c00120{bottom:595.335000px;}
.y8_c00120{bottom:622.335000px;}
.y4_c00120{bottom:662.835000px;}
.y3_c00120{bottom:1040.835000px;}
.y2_c00120{bottom:1067.835000px;}
.y1_c00120{bottom:1094.835000px;}
.yc_c00120{bottom:1193.835000px;}
.h5_c00120{height:42.292969px;}
.h6_c00120{height:44.121094px;}
.h3_c00120{height:51.257812px;}
.h4_c00120{height:346.500000px;}
.h2_c00120{height:1261.500000px;}
.h0_c00120{height:1262.835000px;}
.h1_c00120{height:1263.000000px;}
.w3_c00120{width:676.935000px;}
.w2_c00120{width:892.500000px;}
.w0_c00120{width:892.935000px;}
.w1_c00120{width:893.250000px;}
.x0_c00120{left:0.000000px;}
.x2_c00120{left:8.142380px;}
.x1_c00120{left:150.519750px;}
.x3_c00120{left:380.516100px;}
.x4_c00120{left:802.427700px;}
@media print{
.v0_c00120{vertical-align:0.000000pt;}
.ls1_c00120{letter-spacing:0.000000pt;}
.ls0_c00120{letter-spacing:0.010667pt;}
.ws0_c00120{word-spacing:-15.168000pt;}
.ws1_c00120{word-spacing:0.000000pt;}
._d_c00120{margin-left:-4.179200pt;}
._2_c00120{margin-left:-2.675200pt;}
._1_c00120{margin-left:-1.593600pt;}
._3_c00120{width:1.068800pt;}
._0_c00120{width:2.771200pt;}
._4_c00120{width:4.019200pt;}
._c_c00120{width:5.004800pt;}
._b_c00120{width:6.278400pt;}
._9_c00120{width:7.308800pt;}
._a_c00120{width:8.953600pt;}
._e_c00120{width:10.368000pt;}
._8_c00120{width:24.622400pt;}
._6_c00120{width:26.348800pt;}
._7_c00120{width:27.456000pt;}
._5_c00120{width:29.107200pt;}
.fs1_c00120{font-size:48.000000pt;}
.fs2_c00120{font-size:53.333333pt;}
.fs0_c00120{font-size:64.000000pt;}
.y0_c00120{bottom:0.000000pt;}
.y7_c00120{bottom:9.333333pt;}
.y6_c00120{bottom:41.333333pt;}
.y5_c00120{bottom:56.000000pt;}
.yd_c00120{bottom:59.853333pt;}
.yb_c00120{bottom:481.186667pt;}
.ya_c00120{bottom:505.186667pt;}
.y9_c00120{bottom:529.186667pt;}
.y8_c00120{bottom:553.186667pt;}
.y4_c00120{bottom:589.186667pt;}
.y3_c00120{bottom:925.186667pt;}
.y2_c00120{bottom:949.186667pt;}
.y1_c00120{bottom:973.186667pt;}
.yc_c00120{bottom:1061.186667pt;}
.h5_c00120{height:37.593750pt;}
.h6_c00120{height:39.218750pt;}
.h3_c00120{height:45.562500pt;}
.h4_c00120{height:308.000000pt;}
.h2_c00120{height:1121.333333pt;}
.h0_c00120{height:1122.520000pt;}
.h1_c00120{height:1122.666667pt;}
.w3_c00120{width:601.720000pt;}
.w2_c00120{width:793.333333pt;}
.w0_c00120{width:793.720000pt;}
.w1_c00120{width:794.000000pt;}
.x0_c00120{left:0.000000pt;}
.x2_c00120{left:7.237671pt;}
.x1_c00120{left:133.795333pt;}
.x3_c00120{left:338.236533pt;}
.x4_c00120{left:713.269067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_21a65403d5b0998f48e79b19.woff2')format("woff");}.ff1_c00121{font-family:ff1_c00121;line-height:0.884766;font-style:normal;font-weight:normal;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_fa7ddaa4a786379fc1768929.woff2')format("woff");}.ff2_c00121{font-family:ff2_c00121;line-height:1.163086;font-style:normal;font-weight:normal;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_2119f7ee7f0a572c8411790e.woff2')format("woff");}.ff3_c00121{font-family:ff3_c00121;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00121;src:url('chunks/assets/font_5c385ef565f7c0f0b9bbdbaf.woff2')format("woff");}.ff4_c00121{font-family:ff4_c00121;line-height:0.756836;font-style:normal;font-weight:normal;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_e7283b8b35da32a00ec1ccaa.woff2')format("woff");}.ff5_c00121{font-family:ff5_c00121;line-height:1.155762;font-style:normal;font-weight: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_c00121;src:url('chunks/assets/font_fe52d489907c47b50f81b0b0.woff2')format("woff");}.ff6_c00121{font-family:ff6_c00121;line-height:1.043945;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00121;src:url('chunks/assets/font_744e5c94d184cd3fa0938e58.woff2')format("woff");}.ff7_c00121{font-family:ff7_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;}
.m0_c00121{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00121{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00121{vertical-align:-23.086200px;}
.v3_c00121{vertical-align:-15.000000px;}
.v0_c00121{vertical-align:0.000000px;}
.v1_c00121{vertical-align:23.086200px;}
.ls7_c00121{letter-spacing:-4.362000px;}
.ls5_c00121{letter-spacing:-0.007200px;}
.ls4_c00121{letter-spacing:0.000000px;}
.ls0_c00121{letter-spacing:0.007800px;}
.ls6_c00121{letter-spacing:0.012000px;}
.ls1_c00121{letter-spacing:1.775400px;}
.ls3_c00121{letter-spacing:3.999999px;}
.ls2_c00121{letter-spacing:4.369200px;}
.sc__c00121{text-shadow:none;}
.sc0_c00121{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00121{-webkit-text-stroke:0px transparent;}
.sc0_c00121{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00121{word-spacing:-19.800000px;}
.ws1_c00121{word-spacing:-13.200000px;}
.ws2_c00121{word-spacing:-10.000001px;}
.ws3_c00121{word-spacing:0.000000px;}
._4_c00121{margin-left:-20.254440px;}
._15_c00121{margin-left:-10.922400px;}
._16_c00121{margin-left:-7.698000px;}
._d_c00121{margin-left:-4.888800px;}
._3_c00121{margin-left:-3.412800px;}
._1_c00121{margin-left:-1.792800px;}
._0_c00121{width:1.425600px;}
._2_c00121{width:3.254400px;}
._e_c00121{width:4.428000px;}
._c_c00121{width:5.565600px;}
._13_c00121{width:6.717600px;}
._f_c00121{width:7.840800px;}
._10_c00121{width:9.547200px;}
._11_c00121{width:11.239200px;}
._12_c00121{width:12.888000px;}
._5_c00121{width:14.774400px;}
._6_c00121{width:16.567200px;}
._7_c00121{width:18.014400px;}
._8_c00121{width:21.254400px;}
._14_c00121{width:22.766400px;}
._b_c00121{width:24.674400px;}
._9_c00121{width:26.143200px;}
._a_c00121{width:27.799200px;}
.fc1_c00121{color:rgb(255,255,255);}
.fc0_c00121{color:rgb(0,0,0);}
.fs5_c00121{font-size:40.000002px;}
.fs2_c00121{font-size:48.000000px;}
.fs4_c00121{font-size:60.000000px;}
.fs1_c00121{font-size:72.000000px;}
.fs0_c00121{font-size:78.000000px;}
.fs3_c00121{font-size:96.000000px;}
.y0_c00121{bottom:0.000000px;}
.y18_c00121{bottom:67.335000px;}
.y1e_c00121{bottom:131.835000px;}
.y1d_c00121{bottom:155.085000px;}
.y1c_c00121{bottom:200.085000px;}
.y1b_c00121{bottom:245.085000px;}
.y1a_c00121{bottom:286.335000px;}
.y19_c00121{bottom:309.585000px;}
.y15_c00121{bottom:386.835000px;}
.y14_c00121{bottom:413.835000px;}
.y13_c00121{bottom:461.835000px;}
.y12_c00121{bottom:488.835000px;}
.y11_c00121{bottom:515.835000px;}
.y10_c00121{bottom:542.835000px;}
.yf_c00121{bottom:569.835000px;}
.ye_c00121{bottom:596.835000px;}
.yd_c00121{bottom:623.835000px;}
.yc_c00121{bottom:650.835000px;}
.yb_c00121{bottom:677.835000px;}
.ya_c00121{bottom:725.835000px;}
.y9_c00121{bottom:752.835000px;}
.y8_c00121{bottom:779.835000px;}
.y7_c00121{bottom:806.835000px;}
.y6_c00121{bottom:833.835000px;}
.y5_c00121{bottom:860.835000px;}
.y4_c00121{bottom:887.835000px;}
.y3_c00121{bottom:914.835000px;}
.y2_c00121{bottom:941.835000px;}
.y1_c00121{bottom:988.335000px;}
.y16_c00121{bottom:1066.335000px;}
.y17_c00121{bottom:1193.835000px;}
.h9_c00121{height:34.570312px;}
.h8_c00121{height:44.208984px;}
.ha_c00121{height:49.570312px;}
.h3_c00121{height:55.224609px;}
.h7_c00121{height:56.074219px;}
.h4_c00121{height:67.746094px;}
.h5_c00121{height:68.250262px;}
.h6_c00121{height:90.328125px;}
.h2_c00121{height:1261.500000px;}
.h0_c00121{height:1262.835000px;}
.h1_c00121{height:1263.000000px;}
.w2_c00121{width:892.500000px;}
.w0_c00121{width:892.935000px;}
.w1_c00121{width:893.250000px;}
.x0_c00121{left:0.000000px;}
.x1_c00121{left:65.480310px;}
.x2_c00121{left:94.798875px;}
@media print{
.v2_c00121{vertical-align:-20.521067pt;}
.v3_c00121{vertical-align:-13.333333pt;}
.v0_c00121{vertical-align:0.000000pt;}
.v1_c00121{vertical-align:20.521067pt;}
.ls7_c00121{letter-spacing:-3.877333pt;}
.ls5_c00121{letter-spacing:-0.006400pt;}
.ls4_c00121{letter-spacing:0.000000pt;}
.ls0_c00121{letter-spacing:0.006933pt;}
.ls6_c00121{letter-spacing:0.010667pt;}
.ls1_c00121{letter-spacing:1.578133pt;}
.ls3_c00121{letter-spacing:3.555555pt;}
.ls2_c00121{letter-spacing:3.883733pt;}
.ws0_c00121{word-spacing:-17.600000pt;}
.ws1_c00121{word-spacing:-11.733333pt;}
.ws2_c00121{word-spacing:-8.888889pt;}
.ws3_c00121{word-spacing:0.000000pt;}
._4_c00121{margin-left:-18.003947pt;}
._15_c00121{margin-left:-9.708800pt;}
._16_c00121{margin-left:-6.842667pt;}
._d_c00121{margin-left:-4.345600pt;}
._3_c00121{margin-left:-3.033600pt;}
._1_c00121{margin-left:-1.593600pt;}
._0_c00121{width:1.267200pt;}
._2_c00121{width:2.892800pt;}
._e_c00121{width:3.936000pt;}
._c_c00121{width:4.947200pt;}
._13_c00121{width:5.971200pt;}
._f_c00121{width:6.969600pt;}
._10_c00121{width:8.486400pt;}
._11_c00121{width:9.990400pt;}
._12_c00121{width:11.456000pt;}
._5_c00121{width:13.132800pt;}
._6_c00121{width:14.726400pt;}
._7_c00121{width:16.012800pt;}
._8_c00121{width:18.892800pt;}
._14_c00121{width:20.236800pt;}
._b_c00121{width:21.932800pt;}
._9_c00121{width:23.238400pt;}
._a_c00121{width:24.710400pt;}
.fs5_c00121{font-size:35.555557pt;}
.fs2_c00121{font-size:42.666667pt;}
.fs4_c00121{font-size:53.333333pt;}
.fs1_c00121{font-size:64.000000pt;}
.fs0_c00121{font-size:69.333333pt;}
.fs3_c00121{font-size:85.333333pt;}
.y0_c00121{bottom:0.000000pt;}
.y18_c00121{bottom:59.853333pt;}
.y1e_c00121{bottom:117.186667pt;}
.y1d_c00121{bottom:137.853333pt;}
.y1c_c00121{bottom:177.853333pt;}
.y1b_c00121{bottom:217.853333pt;}
.y1a_c00121{bottom:254.520000pt;}
.y19_c00121{bottom:275.186667pt;}
.y15_c00121{bottom:343.853333pt;}
.y14_c00121{bottom:367.853333pt;}
.y13_c00121{bottom:410.520000pt;}
.y12_c00121{bottom:434.520000pt;}
.y11_c00121{bottom:458.520000pt;}
.y10_c00121{bottom:482.520000pt;}
.yf_c00121{bottom:506.520000pt;}
.ye_c00121{bottom:530.520000pt;}
.yd_c00121{bottom:554.520000pt;}
.yc_c00121{bottom:578.520000pt;}
.yb_c00121{bottom:602.520000pt;}
.ya_c00121{bottom:645.186667pt;}
.y9_c00121{bottom:669.186667pt;}
.y8_c00121{bottom:693.186667pt;}
.y7_c00121{bottom:717.186667pt;}
.y6_c00121{bottom:741.186667pt;}
.y5_c00121{bottom:765.186667pt;}
.y4_c00121{bottom:789.186667pt;}
.y3_c00121{bottom:813.186667pt;}
.y2_c00121{bottom:837.186667pt;}
.y1_c00121{bottom:878.520000pt;}
.y16_c00121{bottom:947.853333pt;}
.y17_c00121{bottom:1061.186667pt;}
.h9_c00121{height:30.729167pt;}
.h8_c00121{height:39.296875pt;}
.ha_c00121{height:44.062500pt;}
.h3_c00121{height:49.088542pt;}
.h7_c00121{height:49.843750pt;}
.h4_c00121{height:60.218750pt;}
.h5_c00121{height:60.666900pt;}
.h6_c00121{height:80.291667pt;}
.h2_c00121{height:1121.333333pt;}
.h0_c00121{height:1122.520000pt;}
.h1_c00121{height:1122.666667pt;}
.w2_c00121{width:793.333333pt;}
.w0_c00121{width:793.720000pt;}
.w1_c00121{width:794.000000pt;}
.x0_c00121{left:0.000000pt;}
.x1_c00121{left:58.204720pt;}
.x2_c00121{left:84.265667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8ceb3cf06cc6d622ee78ff68.woff2')format("woff");}.ff1_c00122{font-family:ff1_c00122;line-height:1.163086;font-style:normal;font-weight:normal;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_80454b7d0ed1f37efa780ce3.woff2')format("woff");}.ff2_c00122{font-family:ff2_c00122;line-height:0.939453;font-style:normal;font-weight:normal;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_f63ff851bf486684aedd093c.woff2')format("woff");}.ff3_c00122{font-family:ff3_c00122;line-height:0.932129;font-style:normal;font-weight:normal;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_a485c4934a9eceadb20ea5d5.woff2')format("woff");}.ff4_c00122{font-family:ff4_c00122;line-height:0.956543;font-style:normal;font-weight:normal;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_eed02d3007866d6b04222831.woff2')format("woff");}.ff5_c00122{font-family:ff5_c00122;line-height:1.044922;font-style:normal;font-weight: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_c00122;src:url('chunks/assets/font_6acdccbd17ff7f4dcab2d434.woff2')format("woff");}.ff6_c00122{font-family:ff6_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;}
.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);}
.v2_c00122{vertical-align:-23.086200px;}
.v3_c00122{vertical-align:-15.000000px;}
.v0_c00122{vertical-align:0.000000px;}
.v1_c00122{vertical-align:23.086200px;}
.ls4_c00122{letter-spacing:-5.610000px;}
.ls3_c00122{letter-spacing:0.000000px;}
.ls0_c00122{letter-spacing:0.007800px;}
.ls1_c00122{letter-spacing:0.012000px;}
.ls2_c00122{letter-spacing:3.999999px;}
.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;}
}
.ws1_c00122{word-spacing:-19.800000px;}
.ws0_c00122{word-spacing:-13.200000px;}
.ws2_c00122{word-spacing:-10.000001px;}
.ws3_c00122{word-spacing:0.000000px;}
._4_c00122{margin-left:-9.619200px;}
._13_c00122{margin-left:-6.658800px;}
._b_c00122{margin-left:-4.642800px;}
._a_c00122{margin-left:-2.649600px;}
._5_c00122{margin-left:-1.108800px;}
._2_c00122{width:1.015200px;}
._3_c00122{width:2.232000px;}
._1_c00122{width:3.636000px;}
._0_c00122{width:4.708800px;}
._c_c00122{width:5.852400px;}
._14_c00122{width:7.152000px;}
._f_c00122{width:8.208000px;}
._10_c00122{width:9.460800px;}
._d_c00122{width:10.490400px;}
._e_c00122{width:11.512800px;}
._11_c00122{width:12.528000px;}
._12_c00122{width:14.026800px;}
._17_c00122{width:15.109200px;}
._16_c00122{width:17.647200px;}
._9_c00122{width:18.792000px;}
._7_c00122{width:21.420000px;}
._15_c00122{width:22.544400px;}
._6_c00122{width:23.587200px;}
._8_c00122{width:24.703200px;}
.fc0_c00122{color:rgb(0,0,0);}
.fs4_c00122{font-size:40.000002px;}
.fs1_c00122{font-size:48.000000px;}
.fs3_c00122{font-size:60.000000px;}
.fs0_c00122{font-size:72.000000px;}
.fs2_c00122{font-size:78.000000px;}
.y0_c00122{bottom:0.000000px;}
.y1b_c00122{bottom:67.335000px;}
.y1f_c00122{bottom:135.585000px;}
.y1e_c00122{bottom:176.835000px;}
.y1d_c00122{bottom:200.085000px;}
.y1c_c00122{bottom:245.085000px;}
.y19_c00122{bottom:299.835000px;}
.y18_c00122{bottom:326.835000px;}
.y17_c00122{bottom:353.835000px;}
.y16_c00122{bottom:401.835000px;}
.y15_c00122{bottom:428.835000px;}
.y14_c00122{bottom:455.835000px;}
.y13_c00122{bottom:482.835000px;}
.y12_c00122{bottom:509.835000px;}
.y11_c00122{bottom:536.835000px;}
.y10_c00122{bottom:584.835000px;}
.yf_c00122{bottom:611.835000px;}
.ye_c00122{bottom:638.835000px;}
.yd_c00122{bottom:686.835000px;}
.yc_c00122{bottom:713.835000px;}
.yb_c00122{bottom:740.835000px;}
.ya_c00122{bottom:767.835000px;}
.y9_c00122{bottom:814.335000px;}
.y8_c00122{bottom:884.835000px;}
.y7_c00122{bottom:911.835000px;}
.y6_c00122{bottom:938.835000px;}
.y5_c00122{bottom:965.835000px;}
.y4_c00122{bottom:992.835000px;}
.y3_c00122{bottom:1019.835000px;}
.y2_c00122{bottom:1067.835000px;}
.y1_c00122{bottom:1094.835000px;}
.y1a_c00122{bottom:1193.835000px;}
.h7_c00122{height:34.570312px;}
.h6_c00122{height:44.121094px;}
.h8_c00122{height:49.570312px;}
.h5_c00122{height:56.100586px;}
.h3_c00122{height:67.746094px;}
.h4_c00122{height:68.250262px;}
.h2_c00122{height:1261.500000px;}
.h0_c00122{height:1262.835000px;}
.h1_c00122{height:1263.000000px;}
.w2_c00122{width:892.500000px;}
.w0_c00122{width:892.935000px;}
.w1_c00122{width:893.250000px;}
.x0_c00122{left:0.000000px;}
.x1_c00122{left:150.519750px;}
.x2_c00122{left:380.516100px;}
.x3_c00122{left:802.427700px;}
@media print{
.v2_c00122{vertical-align:-20.521067pt;}
.v3_c00122{vertical-align:-13.333333pt;}
.v0_c00122{vertical-align:0.000000pt;}
.v1_c00122{vertical-align:20.521067pt;}
.ls4_c00122{letter-spacing:-4.986667pt;}
.ls3_c00122{letter-spacing:0.000000pt;}
.ls0_c00122{letter-spacing:0.006933pt;}
.ls1_c00122{letter-spacing:0.010667pt;}
.ls2_c00122{letter-spacing:3.555555pt;}
.ws1_c00122{word-spacing:-17.600000pt;}
.ws0_c00122{word-spacing:-11.733333pt;}
.ws2_c00122{word-spacing:-8.888889pt;}
.ws3_c00122{word-spacing:0.000000pt;}
._4_c00122{margin-left:-8.550400pt;}
._13_c00122{margin-left:-5.918933pt;}
._b_c00122{margin-left:-4.126933pt;}
._a_c00122{margin-left:-2.355200pt;}
._5_c00122{margin-left:-0.985600pt;}
._2_c00122{width:0.902400pt;}
._3_c00122{width:1.984000pt;}
._1_c00122{width:3.232000pt;}
._0_c00122{width:4.185600pt;}
._c_c00122{width:5.202133pt;}
._14_c00122{width:6.357333pt;}
._f_c00122{width:7.296000pt;}
._10_c00122{width:8.409600pt;}
._d_c00122{width:9.324800pt;}
._e_c00122{width:10.233600pt;}
._11_c00122{width:11.136000pt;}
._12_c00122{width:12.468267pt;}
._17_c00122{width:13.430400pt;}
._16_c00122{width:15.686400pt;}
._9_c00122{width:16.704000pt;}
._7_c00122{width:19.040000pt;}
._15_c00122{width:20.039467pt;}
._6_c00122{width:20.966400pt;}
._8_c00122{width:21.958400pt;}
.fs4_c00122{font-size:35.555557pt;}
.fs1_c00122{font-size:42.666667pt;}
.fs3_c00122{font-size:53.333333pt;}
.fs0_c00122{font-size:64.000000pt;}
.fs2_c00122{font-size:69.333333pt;}
.y0_c00122{bottom:0.000000pt;}
.y1b_c00122{bottom:59.853333pt;}
.y1f_c00122{bottom:120.520000pt;}
.y1e_c00122{bottom:157.186667pt;}
.y1d_c00122{bottom:177.853333pt;}
.y1c_c00122{bottom:217.853333pt;}
.y19_c00122{bottom:266.520000pt;}
.y18_c00122{bottom:290.520000pt;}
.y17_c00122{bottom:314.520000pt;}
.y16_c00122{bottom:357.186667pt;}
.y15_c00122{bottom:381.186667pt;}
.y14_c00122{bottom:405.186667pt;}
.y13_c00122{bottom:429.186667pt;}
.y12_c00122{bottom:453.186667pt;}
.y11_c00122{bottom:477.186667pt;}
.y10_c00122{bottom:519.853333pt;}
.yf_c00122{bottom:543.853333pt;}
.ye_c00122{bottom:567.853333pt;}
.yd_c00122{bottom:610.520000pt;}
.yc_c00122{bottom:634.520000pt;}
.yb_c00122{bottom:658.520000pt;}
.ya_c00122{bottom:682.520000pt;}
.y9_c00122{bottom:723.853333pt;}
.y8_c00122{bottom:786.520000pt;}
.y7_c00122{bottom:810.520000pt;}
.y6_c00122{bottom:834.520000pt;}
.y5_c00122{bottom:858.520000pt;}
.y4_c00122{bottom:882.520000pt;}
.y3_c00122{bottom:906.520000pt;}
.y2_c00122{bottom:949.186667pt;}
.y1_c00122{bottom:973.186667pt;}
.y1a_c00122{bottom:1061.186667pt;}
.h7_c00122{height:30.729167pt;}
.h6_c00122{height:39.218750pt;}
.h8_c00122{height:44.062500pt;}
.h5_c00122{height:49.867188pt;}
.h3_c00122{height:60.218750pt;}
.h4_c00122{height:60.666900pt;}
.h2_c00122{height:1121.333333pt;}
.h0_c00122{height:1122.520000pt;}
.h1_c00122{height:1122.666667pt;}
.w2_c00122{width:793.333333pt;}
.w0_c00122{width:793.720000pt;}
.w1_c00122{width:794.000000pt;}
.x0_c00122{left:0.000000pt;}
.x1_c00122{left:133.795333pt;}
.x2_c00122{left:338.236533pt;}
.x3_c00122{left:713.269067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_86dcd06c1b31a1c06fe22912.woff2')format("woff");}.ff1_c00123{font-family:ff1_c00123;line-height:0.934082;font-style:normal;font-weight:normal;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_9f6dfc325b2813237044d36d.woff2')format("woff");}.ff2_c00123{font-family:ff2_c00123;line-height:0.755859;font-style:normal;font-weight:normal;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_9af93874fb88c295c33b157b.woff2')format("woff");}.ff3_c00123{font-family:ff3_c00123;line-height:1.155762;font-style:normal;font-weight:normal;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_123742630b960bfdbdd66cfc.woff2')format("woff");}.ff4_c00123{font-family:ff4_c00123;line-height:0.904785;font-style:normal;font-weight:normal;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_c432f3a2e9de9a8529a9d3fe.woff2')format("woff");}.ff5_c00123{font-family:ff5_c00123;line-height:0.892090;font-style: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);}
.v2_c00123{vertical-align:-23.086200px;}
.v3_c00123{vertical-align:-15.000000px;}
.v0_c00123{vertical-align:0.000000px;}
.v1_c00123{vertical-align:23.086200px;}
.ls1_c00123{letter-spacing:-0.009600px;}
.ls0_c00123{letter-spacing:0.000000px;}
.ls2_c00123{letter-spacing:0.012000px;}
.sc__c00123{text-shadow:none;}
.sc0_c00123{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00123{-webkit-text-stroke:0px transparent;}
.sc0_c00123{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00123{word-spacing:-19.800000px;}
.ws0_c00123{word-spacing:-13.200000px;}
.ws2_c00123{word-spacing:-13.190400px;}
.ws3_c00123{word-spacing:-10.000001px;}
.ws4_c00123{word-spacing:0.000000px;}
._11_c00123{margin-left:-7.228800px;}
._a_c00123{margin-left:-4.636800px;}
._1_c00123{margin-left:-3.506400px;}
._c_c00123{margin-left:-2.469600px;}
._3_c00123{margin-left:-1.224000px;}
._2_c00123{width:1.512000px;}
._4_c00123{width:2.577600px;}
._0_c00123{width:4.320000px;}
._f_c00123{width:5.774400px;}
._10_c00123{width:7.560000px;}
._9_c00123{width:8.611200px;}
._5_c00123{width:10.346400px;}
._e_c00123{width:11.397600px;}
._8_c00123{width:12.938400px;}
._7_c00123{width:14.126400px;}
._d_c00123{width:15.379200px;}
._6_c00123{width:16.401600px;}
._b_c00123{width:17.496000px;}
.fc0_c00123{color:rgb(0,0,0);}
.fs3_c00123{font-size:40.000002px;}
.fs1_c00123{font-size:48.000000px;}
.fs2_c00123{font-size:60.000000px;}
.fs0_c00123{font-size:72.000000px;}
.y0_c00123{bottom:0.000000px;}
.y1c_c00123{bottom:67.335000px;}
.y1f_c00123{bottom:135.585000px;}
.y1e_c00123{bottom:180.585000px;}
.y1d_c00123{bottom:225.585000px;}
.y1a_c00123{bottom:314.835000px;}
.y19_c00123{bottom:341.835000px;}
.y18_c00123{bottom:368.835000px;}
.y17_c00123{bottom:395.835000px;}
.y16_c00123{bottom:443.835000px;}
.y15_c00123{bottom:470.835000px;}
.y14_c00123{bottom:497.835000px;}
.y13_c00123{bottom:545.835000px;}
.y12_c00123{bottom:572.835000px;}
.y11_c00123{bottom:599.835000px;}
.y10_c00123{bottom:626.835000px;}
.yf_c00123{bottom:653.835000px;}
.ye_c00123{bottom:680.835000px;}
.yd_c00123{bottom:707.835000px;}
.yc_c00123{bottom:734.835000px;}
.yb_c00123{bottom:761.835000px;}
.ya_c00123{bottom:809.835000px;}
.y9_c00123{bottom:836.835000px;}
.y8_c00123{bottom:863.835000px;}
.y7_c00123{bottom:911.835000px;}
.y6_c00123{bottom:938.835000px;}
.y5_c00123{bottom:965.835000px;}
.y4_c00123{bottom:992.835000px;}
.y3_c00123{bottom:1040.835000px;}
.y2_c00123{bottom:1067.835000px;}
.y1_c00123{bottom:1094.835000px;}
.y1b_c00123{bottom:1193.835000px;}
.h7_c00123{height:27.480470px;}
.h6_c00123{height:44.208984px;}
.h3_c00123{height:51.257812px;}
.h5_c00123{height:56.074219px;}
.h4_c00123{height:57.258075px;}
.h2_c00123{height:1261.500000px;}
.h0_c00123{height:1262.835000px;}
.h1_c00123{height:1263.000000px;}
.w2_c00123{width:892.500000px;}
.w0_c00123{width:892.935000px;}
.w1_c00123{width:893.250000px;}
.x0_c00123{left:0.000000px;}
.x1_c00123{left:65.480310px;}
@media print{
.v2_c00123{vertical-align:-20.521067pt;}
.v3_c00123{vertical-align:-13.333333pt;}
.v0_c00123{vertical-align:0.000000pt;}
.v1_c00123{vertical-align:20.521067pt;}
.ls1_c00123{letter-spacing:-0.008533pt;}
.ls0_c00123{letter-spacing:0.000000pt;}
.ls2_c00123{letter-spacing:0.010667pt;}
.ws1_c00123{word-spacing:-17.600000pt;}
.ws0_c00123{word-spacing:-11.733333pt;}
.ws2_c00123{word-spacing:-11.724800pt;}
.ws3_c00123{word-spacing:-8.888889pt;}
.ws4_c00123{word-spacing:0.000000pt;}
._11_c00123{margin-left:-6.425600pt;}
._a_c00123{margin-left:-4.121600pt;}
._1_c00123{margin-left:-3.116800pt;}
._c_c00123{margin-left:-2.195200pt;}
._3_c00123{margin-left:-1.088000pt;}
._2_c00123{width:1.344000pt;}
._4_c00123{width:2.291200pt;}
._0_c00123{width:3.840000pt;}
._f_c00123{width:5.132800pt;}
._10_c00123{width:6.720000pt;}
._9_c00123{width:7.654400pt;}
._5_c00123{width:9.196800pt;}
._e_c00123{width:10.131200pt;}
._8_c00123{width:11.500800pt;}
._7_c00123{width:12.556800pt;}
._d_c00123{width:13.670400pt;}
._6_c00123{width:14.579200pt;}
._b_c00123{width:15.552000pt;}
.fs3_c00123{font-size:35.555557pt;}
.fs1_c00123{font-size:42.666667pt;}
.fs2_c00123{font-size:53.333333pt;}
.fs0_c00123{font-size:64.000000pt;}
.y0_c00123{bottom:0.000000pt;}
.y1c_c00123{bottom:59.853333pt;}
.y1f_c00123{bottom:120.520000pt;}
.y1e_c00123{bottom:160.520000pt;}
.y1d_c00123{bottom:200.520000pt;}
.y1a_c00123{bottom:279.853333pt;}
.y19_c00123{bottom:303.853333pt;}
.y18_c00123{bottom:327.853333pt;}
.y17_c00123{bottom:351.853333pt;}
.y16_c00123{bottom:394.520000pt;}
.y15_c00123{bottom:418.520000pt;}
.y14_c00123{bottom:442.520000pt;}
.y13_c00123{bottom:485.186667pt;}
.y12_c00123{bottom:509.186667pt;}
.y11_c00123{bottom:533.186667pt;}
.y10_c00123{bottom:557.186667pt;}
.yf_c00123{bottom:581.186667pt;}
.ye_c00123{bottom:605.186667pt;}
.yd_c00123{bottom:629.186667pt;}
.yc_c00123{bottom:653.186667pt;}
.yb_c00123{bottom:677.186667pt;}
.ya_c00123{bottom:719.853333pt;}
.y9_c00123{bottom:743.853333pt;}
.y8_c00123{bottom:767.853333pt;}
.y7_c00123{bottom:810.520000pt;}
.y6_c00123{bottom:834.520000pt;}
.y5_c00123{bottom:858.520000pt;}
.y4_c00123{bottom:882.520000pt;}
.y3_c00123{bottom:925.186667pt;}
.y2_c00123{bottom:949.186667pt;}
.y1_c00123{bottom:973.186667pt;}
.y1b_c00123{bottom:1061.186667pt;}
.h7_c00123{height:24.427085pt;}
.h6_c00123{height:39.296875pt;}
.h3_c00123{height:45.562500pt;}
.h5_c00123{height:49.843750pt;}
.h4_c00123{height:50.896067pt;}
.h2_c00123{height:1121.333333pt;}
.h0_c00123{height:1122.520000pt;}
.h1_c00123{height:1122.666667pt;}
.w2_c00123{width:793.333333pt;}
.w0_c00123{width:793.720000pt;}
.w1_c00123{width:794.000000pt;}
.x0_c00123{left:0.000000pt;}
.x1_c00123{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2ff68382c203c5386b749214.woff2')format("woff");}.ff1_c00124{font-family:ff1_c00124;line-height:0.934082;font-style:normal;font-weight:normal;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_8e03a9066471c033a21750cd.woff2')format("woff");}.ff2_c00124{font-family:ff2_c00124;line-height:0.976074;font-style:normal;font-weight:normal;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_5e6efff2b639bb759d391219.woff2')format("woff");}.ff3_c00124{font-family:ff3_c00124;line-height:0.956543;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00124{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00124{vertical-align:0.000000px;}
.ls1_c00124{letter-spacing:0.000000px;}
.ls0_c00124{letter-spacing:0.012000px;}
.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:0.000000px;}
._5_c00124{margin-left:-4.312800px;}
._1_c00124{margin-left:-2.764800px;}
._9_c00124{margin-left:-1.519200px;}
._3_c00124{width:1.533600px;}
._d_c00124{width:2.635200px;}
._8_c00124{width:3.708000px;}
._7_c00124{width:5.205600px;}
._a_c00124{width:6.861600px;}
._b_c00124{width:7.912800px;}
._c_c00124{width:9.576000px;}
._11_c00124{width:10.612800px;}
._14_c00124{width:12.153600px;}
._f_c00124{width:13.248000px;}
._e_c00124{width:14.306400px;}
._10_c00124{width:15.832800px;}
._12_c00124{width:17.380800px;}
._13_c00124{width:18.576000px;}
._4_c00124{width:24.458400px;}
._0_c00124{width:25.884000px;}
._2_c00124{width:28.663200px;}
._6_c00124{width:30.304800px;}
.fc0_c00124{color:rgb(0,0,0);}
.fs1_c00124{font-size:54.000000px;}
.fs2_c00124{font-size:60.000000px;}
.fs0_c00124{font-size:72.000000px;}
.y0_c00124{bottom:0.000000px;}
.y4_c00124{bottom:24.000000px;}
.yd_c00124{bottom:67.335000px;}
.yb_c00124{bottom:182.835000px;}
.ya_c00124{bottom:209.835000px;}
.y9_c00124{bottom:236.835000px;}
.y8_c00124{bottom:263.835000px;}
.y7_c00124{bottom:311.835000px;}
.y6_c00124{bottom:338.835000px;}
.y5_c00124{bottom:365.835000px;}
.y3_c00124{bottom:410.835000px;}
.y2_c00124{bottom:1067.835000px;}
.y1_c00124{bottom:1094.835000px;}
.yc_c00124{bottom:1193.835000px;}
.h5_c00124{height:42.292969px;}
.h6_c00124{height:44.121094px;}
.h3_c00124{height:51.257812px;}
.h4_c00124{height:625.500000px;}
.h2_c00124{height:1261.500000px;}
.h0_c00124{height:1262.835000px;}
.h1_c00124{height:1263.000000px;}
.w3_c00124{width:676.500000px;}
.w2_c00124{width:892.500000px;}
.w0_c00124{width:892.935000px;}
.w1_c00124{width:893.250000px;}
.x0_c00124{left:0.000000px;}
.x2_c00124{left:68.955315px;}
.x1_c00124{left:150.519750px;}
.x3_c00124{left:380.516100px;}
.x4_c00124{left:802.427700px;}
@media print{
.v0_c00124{vertical-align:0.000000pt;}
.ls1_c00124{letter-spacing:0.000000pt;}
.ls0_c00124{letter-spacing:0.010667pt;}
.ws0_c00124{word-spacing:0.000000pt;}
._5_c00124{margin-left:-3.833600pt;}
._1_c00124{margin-left:-2.457600pt;}
._9_c00124{margin-left:-1.350400pt;}
._3_c00124{width:1.363200pt;}
._d_c00124{width:2.342400pt;}
._8_c00124{width:3.296000pt;}
._7_c00124{width:4.627200pt;}
._a_c00124{width:6.099200pt;}
._b_c00124{width:7.033600pt;}
._c_c00124{width:8.512000pt;}
._11_c00124{width:9.433600pt;}
._14_c00124{width:10.803200pt;}
._f_c00124{width:11.776000pt;}
._e_c00124{width:12.716800pt;}
._10_c00124{width:14.073600pt;}
._12_c00124{width:15.449600pt;}
._13_c00124{width:16.512000pt;}
._4_c00124{width:21.740800pt;}
._0_c00124{width:23.008000pt;}
._2_c00124{width:25.478400pt;}
._6_c00124{width:26.937600pt;}
.fs1_c00124{font-size:48.000000pt;}
.fs2_c00124{font-size:53.333333pt;}
.fs0_c00124{font-size:64.000000pt;}
.y0_c00124{bottom:0.000000pt;}
.y4_c00124{bottom:21.333333pt;}
.yd_c00124{bottom:59.853333pt;}
.yb_c00124{bottom:162.520000pt;}
.ya_c00124{bottom:186.520000pt;}
.y9_c00124{bottom:210.520000pt;}
.y8_c00124{bottom:234.520000pt;}
.y7_c00124{bottom:277.186667pt;}
.y6_c00124{bottom:301.186667pt;}
.y5_c00124{bottom:325.186667pt;}
.y3_c00124{bottom:365.186667pt;}
.y2_c00124{bottom:949.186667pt;}
.y1_c00124{bottom:973.186667pt;}
.yc_c00124{bottom:1061.186667pt;}
.h5_c00124{height:37.593750pt;}
.h6_c00124{height:39.218750pt;}
.h3_c00124{height:45.562500pt;}
.h4_c00124{height:556.000000pt;}
.h2_c00124{height:1121.333333pt;}
.h0_c00124{height:1122.520000pt;}
.h1_c00124{height:1122.666667pt;}
.w3_c00124{width:601.333333pt;}
.w2_c00124{width:793.333333pt;}
.w0_c00124{width:793.720000pt;}
.w1_c00124{width:794.000000pt;}
.x0_c00124{left:0.000000pt;}
.x2_c00124{left:61.293613pt;}
.x1_c00124{left:133.795333pt;}
.x3_c00124{left:338.236533pt;}
.x4_c00124{left:713.269067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_386f12f312e2738c3bf80a03.woff2')format("woff");}.ff1_c00125{font-family:ff1_c00125;line-height:0.934082;font-style:normal;font-weight:normal;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_6b4b3442dd3d0f219a70be24.woff2')format("woff");}.ff2_c00125{font-family:ff2_c00125;line-height:0.987793;font-style:normal;font-weight:normal;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_38f077e32a9872e09c91ea28.woff2')format("woff");}.ff3_c00125{font-family:ff3_c00125;line-height:0.811035;font-style:normal;font-weight:normal;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_cc340bcae12c8b4a1e20848a.woff2')format("woff");}.ff4_c00125{font-family:ff4_c00125;line-height:0.755859;font-style:normal;font-weight:normal;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_9730ab738652eefc77822184.woff2')format("woff");}.ff5_c00125{font-family:ff5_c00125;line-height:1.155762;font-style:normal;font-weight: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_c00125;src:url('chunks/assets/font_2203de027a91aaa0be64e708.woff2')format("woff");}.ff6_c00125{font-family:ff6_c00125;line-height:0.904785;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00125;src:url('chunks/assets/font_c0a204ba1ff590e5c27ca38a.woff2')format("woff");}.ff7_c00125{font-family:ff7_c00125;line-height:0.892090;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00125{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00125{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00125{vertical-align:-23.086200px;}
.v3_c00125{vertical-align:-15.000000px;}
.v0_c00125{vertical-align:0.000000px;}
.v1_c00125{vertical-align:23.086200px;}
.ls2_c00125{letter-spacing:-0.009600px;}
.ls1_c00125{letter-spacing:0.000000px;}
.ls3_c00125{letter-spacing:0.012000px;}
.ls0_c00125{letter-spacing:0.021600px;}
.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:-17.064000px;}
.ws0_c00125{word-spacing:-13.190400px;}
.ws3_c00125{word-spacing:-10.000001px;}
.ws2_c00125{word-spacing:-0.054000px;}
.ws4_c00125{word-spacing:0.000000px;}
._14_c00125{margin-left:-9.590760px;}
._13_c00125{margin-left:-7.120800px;}
._15_c00125{margin-left:-5.545242px;}
._9_c00125{margin-left:-3.844800px;}
._b_c00125{margin-left:-2.555640px;}
._3_c00125{margin-left:-1.029600px;}
._5_c00125{width:1.000800px;}
._1_c00125{width:2.649600px;}
._6_c00125{width:4.140000px;}
._7_c00125{width:5.587200px;}
._2_c00125{width:7.099200px;}
._8_c00125{width:8.755200px;}
._0_c00125{width:9.763200px;}
._4_c00125{width:10.800000px;}
._c_c00125{width:12.232800px;}
._a_c00125{width:13.550400px;}
._d_c00125{width:14.910480px;}
._f_c00125{width:16.438320px;}
._10_c00125{width:18.345600px;}
._11_c00125{width:21.008880px;}
._e_c00125{width:22.197600px;}
._12_c00125{width:23.760360px;}
.fc1_c00125{color:rgb(0,0,153);}
.fc0_c00125{color:rgb(0,0,0);}
.fs4_c00125{font-size:40.000002px;}
.fs1_c00125{font-size:48.000000px;}
.fs2_c00125{font-size:54.000000px;}
.fs3_c00125{font-size:60.000000px;}
.fs0_c00125{font-size:72.000000px;}
.y0_c00125{bottom:0.000000px;}
.y12_c00125{bottom:10.500000px;}
.y11_c00125{bottom:34.500000px;}
.y14_c00125{bottom:67.335000px;}
.y16_c00125{bottom:135.585000px;}
.y15_c00125{bottom:180.585000px;}
.y10_c00125{bottom:220.335000px;}
.yf_c00125{bottom:653.835000px;}
.ye_c00125{bottom:680.835000px;}
.yd_c00125{bottom:707.835000px;}
.yc_c00125{bottom:734.835000px;}
.yb_c00125{bottom:782.835000px;}
.ya_c00125{bottom:809.835000px;}
.y9_c00125{bottom:857.835000px;}
.y8_c00125{bottom:884.835000px;}
.y7_c00125{bottom:911.835000px;}
.y6_c00125{bottom:938.835000px;}
.y5_c00125{bottom:965.835000px;}
.y4_c00125{bottom:992.835000px;}
.y3_c00125{bottom:1019.835000px;}
.y2_c00125{bottom:1067.835000px;}
.y1_c00125{bottom:1094.835000px;}
.y13_c00125{bottom:1193.835000px;}
.h9_c00125{height:27.480470px;}
.h6_c00125{height:42.292969px;}
.h8_c00125{height:44.208984px;}
.h3_c00125{height:51.257812px;}
.h7_c00125{height:56.074219px;}
.h4_c00125{height:57.258075px;}
.h5_c00125{height:402.000000px;}
.h2_c00125{height:1261.500000px;}
.h0_c00125{height:1262.835000px;}
.h1_c00125{height:1263.000000px;}
.w3_c00125{width:676.934850px;}
.w2_c00125{width:892.500000px;}
.w0_c00125{width:892.935000px;}
.w1_c00125{width:893.250000px;}
.x0_c00125{left:0.000000px;}
.x1_c00125{left:65.480310px;}
.x3_c00125{left:91.930965px;}
.x2_c00125{left:155.673600px;}
@media print{
.v2_c00125{vertical-align:-20.521067pt;}
.v3_c00125{vertical-align:-13.333333pt;}
.v0_c00125{vertical-align:0.000000pt;}
.v1_c00125{vertical-align:20.521067pt;}
.ls2_c00125{letter-spacing:-0.008533pt;}
.ls1_c00125{letter-spacing:0.000000pt;}
.ls3_c00125{letter-spacing:0.010667pt;}
.ls0_c00125{letter-spacing:0.019200pt;}
.ws1_c00125{word-spacing:-15.168000pt;}
.ws0_c00125{word-spacing:-11.724800pt;}
.ws3_c00125{word-spacing:-8.888889pt;}
.ws2_c00125{word-spacing:-0.048000pt;}
.ws4_c00125{word-spacing:0.000000pt;}
._14_c00125{margin-left:-8.525120pt;}
._13_c00125{margin-left:-6.329600pt;}
._15_c00125{margin-left:-4.929104pt;}
._9_c00125{margin-left:-3.417600pt;}
._b_c00125{margin-left:-2.271680pt;}
._3_c00125{margin-left:-0.915200pt;}
._5_c00125{width:0.889600pt;}
._1_c00125{width:2.355200pt;}
._6_c00125{width:3.680000pt;}
._7_c00125{width:4.966400pt;}
._2_c00125{width:6.310400pt;}
._8_c00125{width:7.782400pt;}
._0_c00125{width:8.678400pt;}
._4_c00125{width:9.600000pt;}
._c_c00125{width:10.873600pt;}
._a_c00125{width:12.044800pt;}
._d_c00125{width:13.253760pt;}
._f_c00125{width:14.611840pt;}
._10_c00125{width:16.307200pt;}
._11_c00125{width:18.674560pt;}
._e_c00125{width:19.731200pt;}
._12_c00125{width:21.120320pt;}
.fs4_c00125{font-size:35.555557pt;}
.fs1_c00125{font-size:42.666667pt;}
.fs2_c00125{font-size:48.000000pt;}
.fs3_c00125{font-size:53.333333pt;}
.fs0_c00125{font-size:64.000000pt;}
.y0_c00125{bottom:0.000000pt;}
.y12_c00125{bottom:9.333333pt;}
.y11_c00125{bottom:30.666667pt;}
.y14_c00125{bottom:59.853333pt;}
.y16_c00125{bottom:120.520000pt;}
.y15_c00125{bottom:160.520000pt;}
.y10_c00125{bottom:195.853333pt;}
.yf_c00125{bottom:581.186667pt;}
.ye_c00125{bottom:605.186667pt;}
.yd_c00125{bottom:629.186667pt;}
.yc_c00125{bottom:653.186667pt;}
.yb_c00125{bottom:695.853333pt;}
.ya_c00125{bottom:719.853333pt;}
.y9_c00125{bottom:762.520000pt;}
.y8_c00125{bottom:786.520000pt;}
.y7_c00125{bottom:810.520000pt;}
.y6_c00125{bottom:834.520000pt;}
.y5_c00125{bottom:858.520000pt;}
.y4_c00125{bottom:882.520000pt;}
.y3_c00125{bottom:906.520000pt;}
.y2_c00125{bottom:949.186667pt;}
.y1_c00125{bottom:973.186667pt;}
.y13_c00125{bottom:1061.186667pt;}
.h9_c00125{height:24.427085pt;}
.h6_c00125{height:37.593750pt;}
.h8_c00125{height:39.296875pt;}
.h3_c00125{height:45.562500pt;}
.h7_c00125{height:49.843750pt;}
.h4_c00125{height:50.896067pt;}
.h5_c00125{height:357.333333pt;}
.h2_c00125{height:1121.333333pt;}
.h0_c00125{height:1122.520000pt;}
.h1_c00125{height:1122.666667pt;}
.w3_c00125{width:601.719867pt;}
.w2_c00125{width:793.333333pt;}
.w0_c00125{width:793.720000pt;}
.w1_c00125{width:794.000000pt;}
.x0_c00125{left:0.000000pt;}
.x1_c00125{left:58.204720pt;}
.x3_c00125{left:81.716413pt;}
.x2_c00125{left:138.376533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8e170c0c6c60184d0cdfa021.woff2')format("woff");}.ff1_c00126{font-family:ff1_c00126;line-height:0.934082;font-style:normal;font-weight:normal;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_ec9fd85fd16375b0cc0b2321.woff2')format("woff");}.ff2_c00126{font-family:ff2_c00126;line-height:0.956543;font-style:normal;font-weight:normal;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_81c8b753d89d39a50b61180f.woff2')format("woff");}.ff3_c00126{font-family:ff3_c00126;line-height:0.904785;font-style:normal;font-weight:normal;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_9ef20decae9c7698e8b03ca9.woff2')format("woff");}.ff4_c00126{font-family:ff4_c00126;line-height:0.892090;font-style: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);}
.v2_c00126{vertical-align:-23.086200px;}
.v3_c00126{vertical-align:-15.000000px;}
.v0_c00126{vertical-align:0.000000px;}
.v1_c00126{vertical-align:23.086200px;}
.ls2_c00126{letter-spacing:-0.009600px;}
.ls1_c00126{letter-spacing:0.000000px;}
.ls0_c00126{letter-spacing:0.012000px;}
.sc__c00126{text-shadow:none;}
.sc0_c00126{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00126{-webkit-text-stroke:0px transparent;}
.sc0_c00126{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00126{word-spacing:-19.800000px;}
.ws0_c00126{word-spacing:-13.190400px;}
.ws2_c00126{word-spacing:-10.000001px;}
.ws3_c00126{word-spacing:0.000000px;}
._0_c00126{margin-left:-10.584000px;}
._11_c00126{margin-left:-9.280800px;}
._10_c00126{margin-left:-8.172000px;}
._14_c00126{margin-left:-7.149600px;}
._15_c00126{margin-left:-5.545602px;}
._e_c00126{margin-left:-4.334400px;}
._2_c00126{margin-left:-2.923200px;}
._4_c00126{margin-left:-1.332000px;}
._5_c00126{width:1.058400px;}
._3_c00126{width:2.354400px;}
._1_c00126{width:3.945600px;}
._a_c00126{width:4.989600px;}
._f_c00126{width:6.364800px;}
._d_c00126{width:8.128800px;}
._13_c00126{width:9.194400px;}
._b_c00126{width:10.512000px;}
._12_c00126{width:11.592000px;}
._7_c00126{width:13.140000px;}
._8_c00126{width:14.457600px;}
._6_c00126{width:15.487200px;}
._c_c00126{width:16.790400px;}
._9_c00126{width:18.532800px;}
.fc0_c00126{color:rgb(0,0,0);}
.fs3_c00126{font-size:40.000002px;}
.fs1_c00126{font-size:48.000000px;}
.fs2_c00126{font-size:60.000000px;}
.fs0_c00126{font-size:72.000000px;}
.y0_c00126{bottom:0.000000px;}
.y1d_c00126{bottom:67.335000px;}
.y20_c00126{bottom:135.585000px;}
.y1f_c00126{bottom:180.585000px;}
.y1e_c00126{bottom:225.585000px;}
.y1b_c00126{bottom:287.835000px;}
.y1a_c00126{bottom:314.835000px;}
.y19_c00126{bottom:341.835000px;}
.y18_c00126{bottom:389.835000px;}
.y17_c00126{bottom:416.835000px;}
.y16_c00126{bottom:443.835000px;}
.y15_c00126{bottom:470.835000px;}
.y14_c00126{bottom:497.835000px;}
.y13_c00126{bottom:545.835000px;}
.y12_c00126{bottom:572.835000px;}
.y11_c00126{bottom:599.835000px;}
.y10_c00126{bottom:626.835000px;}
.yf_c00126{bottom:653.835000px;}
.ye_c00126{bottom:701.835000px;}
.yd_c00126{bottom:728.835000px;}
.yc_c00126{bottom:755.835000px;}
.yb_c00126{bottom:782.835000px;}
.ya_c00126{bottom:809.835000px;}
.y9_c00126{bottom:836.835000px;}
.y8_c00126{bottom:884.835000px;}
.y7_c00126{bottom:911.835000px;}
.y6_c00126{bottom:938.835000px;}
.y5_c00126{bottom:986.835000px;}
.y4_c00126{bottom:1013.835000px;}
.y3_c00126{bottom:1040.835000px;}
.y2_c00126{bottom:1067.835000px;}
.y1_c00126{bottom:1094.835000px;}
.y1c_c00126{bottom:1193.835000px;}
.h6_c00126{height:27.480470px;}
.h5_c00126{height:44.121094px;}
.h3_c00126{height:51.257812px;}
.h4_c00126{height:57.258075px;}
.h2_c00126{height:1261.500000px;}
.h0_c00126{height:1262.835000px;}
.h1_c00126{height:1263.000000px;}
.w2_c00126{width:892.500000px;}
.w0_c00126{width:892.935000px;}
.w1_c00126{width:893.250000px;}
.x0_c00126{left:0.000000px;}
.x1_c00126{left:150.519750px;}
.x2_c00126{left:380.516100px;}
.x3_c00126{left:802.427700px;}
@media print{
.v2_c00126{vertical-align:-20.521067pt;}
.v3_c00126{vertical-align:-13.333333pt;}
.v0_c00126{vertical-align:0.000000pt;}
.v1_c00126{vertical-align:20.521067pt;}
.ls2_c00126{letter-spacing:-0.008533pt;}
.ls1_c00126{letter-spacing:0.000000pt;}
.ls0_c00126{letter-spacing:0.010667pt;}
.ws1_c00126{word-spacing:-17.600000pt;}
.ws0_c00126{word-spacing:-11.724800pt;}
.ws2_c00126{word-spacing:-8.888889pt;}
.ws3_c00126{word-spacing:0.000000pt;}
._0_c00126{margin-left:-9.408000pt;}
._11_c00126{margin-left:-8.249600pt;}
._10_c00126{margin-left:-7.264000pt;}
._14_c00126{margin-left:-6.355200pt;}
._15_c00126{margin-left:-4.929424pt;}
._e_c00126{margin-left:-3.852800pt;}
._2_c00126{margin-left:-2.598400pt;}
._4_c00126{margin-left:-1.184000pt;}
._5_c00126{width:0.940800pt;}
._3_c00126{width:2.092800pt;}
._1_c00126{width:3.507200pt;}
._a_c00126{width:4.435200pt;}
._f_c00126{width:5.657600pt;}
._d_c00126{width:7.225600pt;}
._13_c00126{width:8.172800pt;}
._b_c00126{width:9.344000pt;}
._12_c00126{width:10.304000pt;}
._7_c00126{width:11.680000pt;}
._8_c00126{width:12.851200pt;}
._6_c00126{width:13.766400pt;}
._c_c00126{width:14.924800pt;}
._9_c00126{width:16.473600pt;}
.fs3_c00126{font-size:35.555557pt;}
.fs1_c00126{font-size:42.666667pt;}
.fs2_c00126{font-size:53.333333pt;}
.fs0_c00126{font-size:64.000000pt;}
.y0_c00126{bottom:0.000000pt;}
.y1d_c00126{bottom:59.853333pt;}
.y20_c00126{bottom:120.520000pt;}
.y1f_c00126{bottom:160.520000pt;}
.y1e_c00126{bottom:200.520000pt;}
.y1b_c00126{bottom:255.853333pt;}
.y1a_c00126{bottom:279.853333pt;}
.y19_c00126{bottom:303.853333pt;}
.y18_c00126{bottom:346.520000pt;}
.y17_c00126{bottom:370.520000pt;}
.y16_c00126{bottom:394.520000pt;}
.y15_c00126{bottom:418.520000pt;}
.y14_c00126{bottom:442.520000pt;}
.y13_c00126{bottom:485.186667pt;}
.y12_c00126{bottom:509.186667pt;}
.y11_c00126{bottom:533.186667pt;}
.y10_c00126{bottom:557.186667pt;}
.yf_c00126{bottom:581.186667pt;}
.ye_c00126{bottom:623.853333pt;}
.yd_c00126{bottom:647.853333pt;}
.yc_c00126{bottom:671.853333pt;}
.yb_c00126{bottom:695.853333pt;}
.ya_c00126{bottom:719.853333pt;}
.y9_c00126{bottom:743.853333pt;}
.y8_c00126{bottom:786.520000pt;}
.y7_c00126{bottom:810.520000pt;}
.y6_c00126{bottom:834.520000pt;}
.y5_c00126{bottom:877.186667pt;}
.y4_c00126{bottom:901.186667pt;}
.y3_c00126{bottom:925.186667pt;}
.y2_c00126{bottom:949.186667pt;}
.y1_c00126{bottom:973.186667pt;}
.y1c_c00126{bottom:1061.186667pt;}
.h6_c00126{height:24.427085pt;}
.h5_c00126{height:39.218750pt;}
.h3_c00126{height:45.562500pt;}
.h4_c00126{height:50.896067pt;}
.h2_c00126{height:1121.333333pt;}
.h0_c00126{height:1122.520000pt;}
.h1_c00126{height:1122.666667pt;}
.w2_c00126{width:793.333333pt;}
.w0_c00126{width:793.720000pt;}
.w1_c00126{width:794.000000pt;}
.x0_c00126{left:0.000000pt;}
.x1_c00126{left:133.795333pt;}
.x2_c00126{left:338.236533pt;}
.x3_c00126{left:713.269067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a66f40322cd800456c0a7937.woff2')format("woff");}.ff1_c00127{font-family:ff1_c00127;line-height:0.934082;font-style:normal;font-weight:normal;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_b284d4bcbb1968a1bbee204f.woff2')format("woff");}.ff2_c00127{font-family:ff2_c00127;line-height:0.755859;font-style:normal;font-weight:normal;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_49ed6b8342616ad5251b7bed.woff2')format("woff");}.ff3_c00127{font-family:ff3_c00127;line-height:1.155762;font-style:normal;font-weight:normal;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_08cdec326e30f37c812104da.woff2')format("woff");}.ff4_c00127{font-family:ff4_c00127;line-height:0.904785;font-style:normal;font-weight:normal;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_42e1ab591ab7cb1f1d1c6ee4.woff2')format("woff");}.ff5_c00127{font-family:ff5_c00127;line-height:0.892090;font-style: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);}
.v2_c00127{vertical-align:-23.086200px;}
.v3_c00127{vertical-align:-15.000000px;}
.v0_c00127{vertical-align:0.000000px;}
.v1_c00127{vertical-align:23.086200px;}
.ls4_c00127{letter-spacing:-2.100000px;}
.ls1_c00127{letter-spacing:-0.009600px;}
.ls0_c00127{letter-spacing:0.000000px;}
.ls3_c00127{letter-spacing:0.012000px;}
.ls2_c00127{letter-spacing:0.529200px;}
.sc__c00127{text-shadow:none;}
.sc0_c00127{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00127{-webkit-text-stroke:0px transparent;}
.sc0_c00127{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00127{word-spacing:-19.800000px;}
.ws0_c00127{word-spacing:-13.190400px;}
.ws2_c00127{word-spacing:-10.000001px;}
.ws3_c00127{word-spacing:0.000000px;}
._b_c00127{margin-left:-10.857600px;}
._0_c00127{margin-left:-7.228800px;}
._18_c00127{margin-left:-5.823642px;}
._f_c00127{margin-left:-4.320000px;}
._1_c00127{margin-left:-3.110400px;}
._2_c00127{margin-left:-2.008800px;}
._12_c00127{margin-left:-1.008000px;}
._7_c00127{width:1.584000px;}
._9_c00127{width:2.844000px;}
._5_c00127{width:4.046400px;}
._e_c00127{width:5.457600px;}
._a_c00127{width:7.257600px;}
._c_c00127{width:8.344800px;}
._10_c00127{width:9.684000px;}
._d_c00127{width:11.044800px;}
._6_c00127{width:12.254400px;}
._11_c00127{width:13.464000px;}
._8_c00127{width:14.832000px;}
._4_c00127{width:16.329600px;}
._3_c00127{width:17.920800px;}
._16_c00127{width:23.263200px;}
._15_c00127{width:24.472800px;}
._13_c00127{width:26.121600px;}
._14_c00127{width:28.116000px;}
._17_c00127{width:29.181600px;}
.fc0_c00127{color:rgb(0,0,0);}
.fs4_c00127{font-size:40.000002px;}
.fs1_c00127{font-size:48.000000px;}
.fs2_c00127{font-size:54.000000px;}
.fs3_c00127{font-size:60.000000px;}
.fs0_c00127{font-size:72.000000px;}
.y0_c00127{bottom:0.000000px;}
.y1d_c00127{bottom:67.335000px;}
.y21_c00127{bottom:135.585000px;}
.y20_c00127{bottom:180.585000px;}
.y1f_c00127{bottom:221.835000px;}
.y1e_c00127{bottom:245.085000px;}
.y1b_c00127{bottom:308.835000px;}
.y1a_c00127{bottom:335.835000px;}
.y19_c00127{bottom:362.835000px;}
.y18_c00127{bottom:389.835000px;}
.y17_c00127{bottom:416.835000px;}
.y16_c00127{bottom:464.835000px;}
.y15_c00127{bottom:491.835000px;}
.y14_c00127{bottom:518.835000px;}
.y13_c00127{bottom:566.835000px;}
.y12_c00127{bottom:593.835000px;}
.y11_c00127{bottom:620.835000px;}
.y10_c00127{bottom:647.835000px;}
.yf_c00127{bottom:674.835000px;}
.ye_c00127{bottom:701.835000px;}
.yd_c00127{bottom:749.835000px;}
.yc_c00127{bottom:776.835000px;}
.yb_c00127{bottom:803.835000px;}
.ya_c00127{bottom:830.835000px;}
.y9_c00127{bottom:857.835000px;}
.y8_c00127{bottom:884.835000px;}
.y7_c00127{bottom:911.835000px;}
.y6_c00127{bottom:938.835000px;}
.y5_c00127{bottom:965.835000px;}
.y4_c00127{bottom:992.835000px;}
.y3_c00127{bottom:1040.835000px;}
.y2_c00127{bottom:1067.835000px;}
.y1_c00127{bottom:1094.835000px;}
.y1c_c00127{bottom:1193.835000px;}
.h7_c00127{height:27.480470px;}
.h8_c00127{height:41.220703px;}
.h6_c00127{height:44.208984px;}
.h3_c00127{height:51.257812px;}
.h5_c00127{height:56.074219px;}
.h4_c00127{height:57.258075px;}
.h2_c00127{height:1261.500000px;}
.h0_c00127{height:1262.835000px;}
.h1_c00127{height:1263.000000px;}
.w2_c00127{width:892.500000px;}
.w0_c00127{width:892.935000px;}
.w1_c00127{width:893.250000px;}
.x0_c00127{left:0.000000px;}
.x1_c00127{left:65.480310px;}
@media print{
.v2_c00127{vertical-align:-20.521067pt;}
.v3_c00127{vertical-align:-13.333333pt;}
.v0_c00127{vertical-align:0.000000pt;}
.v1_c00127{vertical-align:20.521067pt;}
.ls4_c00127{letter-spacing:-1.866667pt;}
.ls1_c00127{letter-spacing:-0.008533pt;}
.ls0_c00127{letter-spacing:0.000000pt;}
.ls3_c00127{letter-spacing:0.010667pt;}
.ls2_c00127{letter-spacing:0.470400pt;}
.ws1_c00127{word-spacing:-17.600000pt;}
.ws0_c00127{word-spacing:-11.724800pt;}
.ws2_c00127{word-spacing:-8.888889pt;}
.ws3_c00127{word-spacing:0.000000pt;}
._b_c00127{margin-left:-9.651200pt;}
._0_c00127{margin-left:-6.425600pt;}
._18_c00127{margin-left:-5.176571pt;}
._f_c00127{margin-left:-3.840000pt;}
._1_c00127{margin-left:-2.764800pt;}
._2_c00127{margin-left:-1.785600pt;}
._12_c00127{margin-left:-0.896000pt;}
._7_c00127{width:1.408000pt;}
._9_c00127{width:2.528000pt;}
._5_c00127{width:3.596800pt;}
._e_c00127{width:4.851200pt;}
._a_c00127{width:6.451200pt;}
._c_c00127{width:7.417600pt;}
._10_c00127{width:8.608000pt;}
._d_c00127{width:9.817600pt;}
._6_c00127{width:10.892800pt;}
._11_c00127{width:11.968000pt;}
._8_c00127{width:13.184000pt;}
._4_c00127{width:14.515200pt;}
._3_c00127{width:15.929600pt;}
._16_c00127{width:20.678400pt;}
._15_c00127{width:21.753600pt;}
._13_c00127{width:23.219200pt;}
._14_c00127{width:24.992000pt;}
._17_c00127{width:25.939200pt;}
.fs4_c00127{font-size:35.555557pt;}
.fs1_c00127{font-size:42.666667pt;}
.fs2_c00127{font-size:48.000000pt;}
.fs3_c00127{font-size:53.333333pt;}
.fs0_c00127{font-size:64.000000pt;}
.y0_c00127{bottom:0.000000pt;}
.y1d_c00127{bottom:59.853333pt;}
.y21_c00127{bottom:120.520000pt;}
.y20_c00127{bottom:160.520000pt;}
.y1f_c00127{bottom:197.186667pt;}
.y1e_c00127{bottom:217.853333pt;}
.y1b_c00127{bottom:274.520000pt;}
.y1a_c00127{bottom:298.520000pt;}
.y19_c00127{bottom:322.520000pt;}
.y18_c00127{bottom:346.520000pt;}
.y17_c00127{bottom:370.520000pt;}
.y16_c00127{bottom:413.186667pt;}
.y15_c00127{bottom:437.186667pt;}
.y14_c00127{bottom:461.186667pt;}
.y13_c00127{bottom:503.853333pt;}
.y12_c00127{bottom:527.853333pt;}
.y11_c00127{bottom:551.853333pt;}
.y10_c00127{bottom:575.853333pt;}
.yf_c00127{bottom:599.853333pt;}
.ye_c00127{bottom:623.853333pt;}
.yd_c00127{bottom:666.520000pt;}
.yc_c00127{bottom:690.520000pt;}
.yb_c00127{bottom:714.520000pt;}
.ya_c00127{bottom:738.520000pt;}
.y9_c00127{bottom:762.520000pt;}
.y8_c00127{bottom:786.520000pt;}
.y7_c00127{bottom:810.520000pt;}
.y6_c00127{bottom:834.520000pt;}
.y5_c00127{bottom:858.520000pt;}
.y4_c00127{bottom:882.520000pt;}
.y3_c00127{bottom:925.186667pt;}
.y2_c00127{bottom:949.186667pt;}
.y1_c00127{bottom:973.186667pt;}
.y1c_c00127{bottom:1061.186667pt;}
.h7_c00127{height:24.427085pt;}
.h8_c00127{height:36.640625pt;}
.h6_c00127{height:39.296875pt;}
.h3_c00127{height:45.562500pt;}
.h5_c00127{height:49.843750pt;}
.h4_c00127{height:50.896067pt;}
.h2_c00127{height:1121.333333pt;}
.h0_c00127{height:1122.520000pt;}
.h1_c00127{height:1122.666667pt;}
.w2_c00127{width:793.333333pt;}
.w0_c00127{width:793.720000pt;}
.w1_c00127{width:794.000000pt;}
.x0_c00127{left:0.000000pt;}
.x1_c00127{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_dad032b4064c23aa1e2f81e3.woff2')format("woff");}.ff1_c00128{font-family:ff1_c00128;line-height:0.934082;font-style:normal;font-weight:normal;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_5cd5c0ae5f8210bae45358d9.woff2')format("woff");}.ff2_c00128{font-family:ff2_c00128;line-height:0.956543;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00128{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00128{vertical-align:0.000000px;}
.ls1_c00128{letter-spacing:0.000000px;}
.ls0_c00128{letter-spacing:0.012000px;}
.sc__c00128{text-shadow:none;}
.sc0_c00128{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00128{-webkit-text-stroke:0px transparent;}
.sc0_c00128{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00128{word-spacing:0.000000px;}
._0_c00128{margin-left:-10.584000px;}
._e_c00128{margin-left:-7.264800px;}
._3_c00128{margin-left:-2.815200px;}
._6_c00128{margin-left:-1.533600px;}
._1_c00128{width:1.245600px;}
._f_c00128{width:2.260800px;}
._2_c00128{width:3.319200px;}
._5_c00128{width:4.564800px;}
._7_c00128{width:6.134400px;}
._4_c00128{width:7.322400px;}
._9_c00128{width:12.232800px;}
._c_c00128{width:14.277600px;}
._8_c00128{width:15.487200px;}
._a_c00128{width:17.020800px;}
._b_c00128{width:18.302400px;}
._d_c00128{width:21.016800px;}
.fc0_c00128{color:rgb(0,0,0);}
.fs1_c00128{font-size:60.000000px;}
.fs0_c00128{font-size:72.000000px;}
.y0_c00128{bottom:0.000000px;}
.y8_c00128{bottom:67.335000px;}
.y6_c00128{bottom:959.835000px;}
.y5_c00128{bottom:986.835000px;}
.y4_c00128{bottom:1013.835000px;}
.y3_c00128{bottom:1040.835000px;}
.y2_c00128{bottom:1067.835000px;}
.y1_c00128{bottom:1094.835000px;}
.y7_c00128{bottom:1193.835000px;}
.h4_c00128{height:44.121094px;}
.h3_c00128{height:51.257812px;}
.h2_c00128{height:1261.500000px;}
.h0_c00128{height:1262.835000px;}
.h1_c00128{height:1263.000000px;}
.w2_c00128{width:892.500000px;}
.w0_c00128{width:892.935000px;}
.w1_c00128{width:893.250000px;}
.x0_c00128{left:0.000000px;}
.x1_c00128{left:150.519750px;}
.x2_c00128{left:380.516100px;}
.x3_c00128{left:802.427700px;}
@media print{
.v0_c00128{vertical-align:0.000000pt;}
.ls1_c00128{letter-spacing:0.000000pt;}
.ls0_c00128{letter-spacing:0.010667pt;}
.ws0_c00128{word-spacing:0.000000pt;}
._0_c00128{margin-left:-9.408000pt;}
._e_c00128{margin-left:-6.457600pt;}
._3_c00128{margin-left:-2.502400pt;}
._6_c00128{margin-left:-1.363200pt;}
._1_c00128{width:1.107200pt;}
._f_c00128{width:2.009600pt;}
._2_c00128{width:2.950400pt;}
._5_c00128{width:4.057600pt;}
._7_c00128{width:5.452800pt;}
._4_c00128{width:6.508800pt;}
._9_c00128{width:10.873600pt;}
._c_c00128{width:12.691200pt;}
._8_c00128{width:13.766400pt;}
._a_c00128{width:15.129600pt;}
._b_c00128{width:16.268800pt;}
._d_c00128{width:18.681600pt;}
.fs1_c00128{font-size:53.333333pt;}
.fs0_c00128{font-size:64.000000pt;}
.y0_c00128{bottom:0.000000pt;}
.y8_c00128{bottom:59.853333pt;}
.y6_c00128{bottom:853.186667pt;}
.y5_c00128{bottom:877.186667pt;}
.y4_c00128{bottom:901.186667pt;}
.y3_c00128{bottom:925.186667pt;}
.y2_c00128{bottom:949.186667pt;}
.y1_c00128{bottom:973.186667pt;}
.y7_c00128{bottom:1061.186667pt;}
.h4_c00128{height:39.218750pt;}
.h3_c00128{height:45.562500pt;}
.h2_c00128{height:1121.333333pt;}
.h0_c00128{height:1122.520000pt;}
.h1_c00128{height:1122.666667pt;}
.w2_c00128{width:793.333333pt;}
.w0_c00128{width:793.720000pt;}
.w1_c00128{width:794.000000pt;}
.x0_c00128{left:0.000000pt;}
.x1_c00128{left:133.795333pt;}
.x2_c00128{left:338.236533pt;}
.x3_c00128{left:713.269067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_84bb4558b32f75ce9943c0ba.woff2')format("woff");}.ff1_c00129{font-family:ff1_c00129;line-height:0.939453;font-style:normal;font-weight:normal;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_e786f2f4143a92f81478930f.woff2')format("woff");}.ff2_c00129{font-family:ff2_c00129;line-height:0.934082;font-style:normal;font-weight:normal;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_034d9c8e16106ba860082c3d.woff2')format("woff");}.ff3_c00129{font-family:ff3_c00129;line-height:0.888672;font-style:normal;font-weight:normal;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_946df1b0c0da5842b6c88323.woff2')format("woff");}.ff4_c00129{font-family:ff4_c00129;line-height:0.755859;font-style:normal;font-weight:normal;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_ca9d8ee2a45823f6cb9d0f92.woff2')format("woff");}.ff5_c00129{font-family:ff5_c00129;line-height:1.155762;font-style:normal;font-weight: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_c00129;src:url('chunks/assets/font_43145d1a548103034fc2a80b.woff2')format("woff");}.ff6_c00129{font-family:ff6_c00129;line-height:0.905762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00129;src:url('chunks/assets/font_b74db64f6e7ae0aa5265f491.woff2')format("woff");}.ff7_c00129{font-family:ff7_c00129;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00129{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00129{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00129{vertical-align:-23.086200px;}
.v3_c00129{vertical-align:-15.000000px;}
.v0_c00129{vertical-align:0.000000px;}
.v1_c00129{vertical-align:23.086200px;}
.ls5_c00129{letter-spacing:-0.014400px;}
.ls6_c00129{letter-spacing:-0.007200px;}
.ls4_c00129{letter-spacing:0.000000px;}
.ls3_c00129{letter-spacing:0.006019px;}
.ls0_c00129{letter-spacing:0.007800px;}
.ls7_c00129{letter-spacing:0.012000px;}
.ls1_c00129{letter-spacing:0.517200px;}
.ls2_c00129{letter-spacing:3.999999px;}
.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:-15.000000px;}
.ws0_c00129{word-spacing:-13.200000px;}
.ws2_c00129{word-spacing:0.000000px;}
._10_c00129{margin-left:-10.584000px;}
._d_c00129{margin-left:-9.189960px;}
._2_c00129{margin-left:-7.920000px;}
._16_c00129{margin-left:-5.669040px;}
._a_c00129{margin-left:-3.662040px;}
._7_c00129{margin-left:-1.843200px;}
._9_c00129{width:1.152000px;}
._0_c00129{width:2.196000px;}
._5_c00129{width:3.729600px;}
._4_c00129{width:5.198400px;}
._6_c00129{width:7.185600px;}
._1_c00129{width:8.431200px;}
._c_c00129{width:9.623640px;}
._3_c00129{width:10.634400px;}
._8_c00129{width:12.283200px;}
._b_c00129{width:13.320000px;}
._f_c00129{width:14.529600px;}
._e_c00129{width:16.430400px;}
._15_c00129{width:23.378400px;}
._11_c00129{width:24.451200px;}
._13_c00129{width:25.610400px;}
._12_c00129{width:27.439200px;}
._14_c00129{width:29.222040px;}
.fc1_c00129{color:rgb(255,255,255);}
.fc0_c00129{color:rgb(0,0,0);}
.fs5_c00129{font-size:40.000002px;}
.fs2_c00129{font-size:48.000000px;}
.fs4_c00129{font-size:60.000000px;}
.fs1_c00129{font-size:72.000000px;}
.fs0_c00129{font-size:78.000000px;}
.fs3_c00129{font-size:96.000000px;}
.y0_c00129{bottom:0.000000px;}
.y17_c00129{bottom:67.335000px;}
.y1d_c00129{bottom:135.685050px;}
.y1c_c00129{bottom:176.835000px;}
.y1b_c00129{bottom:200.085000px;}
.y1a_c00129{bottom:241.335000px;}
.y19_c00129{bottom:260.835000px;}
.y18_c00129{bottom:284.085000px;}
.y14_c00129{bottom:353.835000px;}
.y13_c00129{bottom:380.835000px;}
.y12_c00129{bottom:407.835000px;}
.y11_c00129{bottom:454.335000px;}
.y10_c00129{bottom:524.835000px;}
.yf_c00129{bottom:551.835000px;}
.ye_c00129{bottom:578.835000px;}
.yd_c00129{bottom:605.835000px;}
.yc_c00129{bottom:632.835000px;}
.yb_c00129{bottom:680.835000px;}
.ya_c00129{bottom:707.835000px;}
.y9_c00129{bottom:734.835000px;}
.y8_c00129{bottom:761.835000px;}
.y7_c00129{bottom:788.835000px;}
.y6_c00129{bottom:815.835000px;}
.y5_c00129{bottom:863.835000px;}
.y4_c00129{bottom:890.835000px;}
.y3_c00129{bottom:917.835000px;}
.y2_c00129{bottom:944.835000px;}
.y1_c00129{bottom:991.335000px;}
.y15_c00129{bottom:1066.335000px;}
.y16_c00129{bottom:1193.835000px;}
.h9_c00129{height:27.480470px;}
.hb_c00129{height:29.472658px;}
.ha_c00129{height:41.220703px;}
.h8_c00129{height:44.208984px;}
.h4_c00129{height:51.257812px;}
.h7_c00129{height:56.074219px;}
.h3_c00129{height:56.100586px;}
.h5_c00129{height:57.258075px;}
.h6_c00129{height:68.343750px;}
.h2_c00129{height:1261.500000px;}
.h0_c00129{height:1262.835000px;}
.h1_c00129{height:1263.000000px;}
.w2_c00129{width:892.500000px;}
.w0_c00129{width:892.935000px;}
.w1_c00129{width:893.250000px;}
.x0_c00129{left:0.000000px;}
.x1_c00129{left:65.480310px;}
.x2_c00129{left:94.798875px;}
@media print{
.v2_c00129{vertical-align:-20.521067pt;}
.v3_c00129{vertical-align:-13.333333pt;}
.v0_c00129{vertical-align:0.000000pt;}
.v1_c00129{vertical-align:20.521067pt;}
.ls5_c00129{letter-spacing:-0.012800pt;}
.ls6_c00129{letter-spacing:-0.006400pt;}
.ls4_c00129{letter-spacing:0.000000pt;}
.ls3_c00129{letter-spacing:0.005350pt;}
.ls0_c00129{letter-spacing:0.006933pt;}
.ls7_c00129{letter-spacing:0.010667pt;}
.ls1_c00129{letter-spacing:0.459733pt;}
.ls2_c00129{letter-spacing:3.555555pt;}
.ws1_c00129{word-spacing:-13.333333pt;}
.ws0_c00129{word-spacing:-11.733333pt;}
.ws2_c00129{word-spacing:0.000000pt;}
._10_c00129{margin-left:-9.408000pt;}
._d_c00129{margin-left:-8.168853pt;}
._2_c00129{margin-left:-7.040000pt;}
._16_c00129{margin-left:-5.039147pt;}
._a_c00129{margin-left:-3.255147pt;}
._7_c00129{margin-left:-1.638400pt;}
._9_c00129{width:1.024000pt;}
._0_c00129{width:1.952000pt;}
._5_c00129{width:3.315200pt;}
._4_c00129{width:4.620800pt;}
._6_c00129{width:6.387200pt;}
._1_c00129{width:7.494400pt;}
._c_c00129{width:8.554347pt;}
._3_c00129{width:9.452800pt;}
._8_c00129{width:10.918400pt;}
._b_c00129{width:11.840000pt;}
._f_c00129{width:12.915200pt;}
._e_c00129{width:14.604800pt;}
._15_c00129{width:20.780800pt;}
._11_c00129{width:21.734400pt;}
._13_c00129{width:22.764800pt;}
._12_c00129{width:24.390400pt;}
._14_c00129{width:25.975147pt;}
.fs5_c00129{font-size:35.555557pt;}
.fs2_c00129{font-size:42.666667pt;}
.fs4_c00129{font-size:53.333333pt;}
.fs1_c00129{font-size:64.000000pt;}
.fs0_c00129{font-size:69.333333pt;}
.fs3_c00129{font-size:85.333333pt;}
.y0_c00129{bottom:0.000000pt;}
.y17_c00129{bottom:59.853333pt;}
.y1d_c00129{bottom:120.608933pt;}
.y1c_c00129{bottom:157.186667pt;}
.y1b_c00129{bottom:177.853333pt;}
.y1a_c00129{bottom:214.520000pt;}
.y19_c00129{bottom:231.853333pt;}
.y18_c00129{bottom:252.520000pt;}
.y14_c00129{bottom:314.520000pt;}
.y13_c00129{bottom:338.520000pt;}
.y12_c00129{bottom:362.520000pt;}
.y11_c00129{bottom:403.853333pt;}
.y10_c00129{bottom:466.520000pt;}
.yf_c00129{bottom:490.520000pt;}
.ye_c00129{bottom:514.520000pt;}
.yd_c00129{bottom:538.520000pt;}
.yc_c00129{bottom:562.520000pt;}
.yb_c00129{bottom:605.186667pt;}
.ya_c00129{bottom:629.186667pt;}
.y9_c00129{bottom:653.186667pt;}
.y8_c00129{bottom:677.186667pt;}
.y7_c00129{bottom:701.186667pt;}
.y6_c00129{bottom:725.186667pt;}
.y5_c00129{bottom:767.853333pt;}
.y4_c00129{bottom:791.853333pt;}
.y3_c00129{bottom:815.853333pt;}
.y2_c00129{bottom:839.853333pt;}
.y1_c00129{bottom:881.186667pt;}
.y15_c00129{bottom:947.853333pt;}
.y16_c00129{bottom:1061.186667pt;}
.h9_c00129{height:24.427085pt;}
.hb_c00129{height:26.197918pt;}
.ha_c00129{height:36.640625pt;}
.h8_c00129{height:39.296875pt;}
.h4_c00129{height:45.562500pt;}
.h7_c00129{height:49.843750pt;}
.h3_c00129{height:49.867188pt;}
.h5_c00129{height:50.896067pt;}
.h6_c00129{height:60.750000pt;}
.h2_c00129{height:1121.333333pt;}
.h0_c00129{height:1122.520000pt;}
.h1_c00129{height:1122.666667pt;}
.w2_c00129{width:793.333333pt;}
.w0_c00129{width:793.720000pt;}
.w1_c00129{width:794.000000pt;}
.x0_c00129{left:0.000000pt;}
.x1_c00129{left:58.204720pt;}
.x2_c00129{left:84.265667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ea48f88717a2a0f06ca3e266.woff2')format("woff");}.ff1_c00130{font-family:ff1_c00130;line-height:0.934082;font-style:normal;font-weight:normal;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_5608a81d6cd719583288c320.woff2')format("woff");}.ff2_c00130{font-family:ff2_c00130;line-height:0.987793;font-style:normal;font-weight:normal;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_f24524121b7bc92304fe4fa5.woff2')format("woff");}.ff3_c00130{font-family:ff3_c00130;line-height:0.956543;font-style:normal;font-weight:normal;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_92f5817e138b83190c951b0a.woff2')format("woff");}.ff4_c00130{font-family:ff4_c00130;line-height:0.904785;font-style: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);}
.v2_c00130{vertical-align:-23.086200px;}
.v3_c00130{vertical-align:-15.000000px;}
.v0_c00130{vertical-align:0.000000px;}
.v1_c00130{vertical-align:23.086200px;}
.ls4_c00130{letter-spacing:0.000000px;}
.ls2_c00130{letter-spacing:0.012000px;}
.ls1_c00130{letter-spacing:0.016200px;}
.ls0_c00130{letter-spacing:0.304800px;}
.ls3_c00130{letter-spacing:3.999999px;}
.sc__c00130{text-shadow:none;}
.sc0_c00130{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00130{-webkit-text-stroke:0px transparent;}
.sc0_c00130{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00130{word-spacing:-19.800000px;}
.ws2_c00130{word-spacing:-17.080200px;}
.ws1_c00130{word-spacing:-17.064000px;}
.ws3_c00130{word-spacing:-13.200000px;}
.ws4_c00130{word-spacing:0.000000px;}
._15_c00130{margin-left:-13.218000px;}
._f_c00130{margin-left:-6.955200px;}
._d_c00130{margin-left:-5.220000px;}
._5_c00130{margin-left:-4.032000px;}
._2_c00130{margin-left:-2.908800px;}
._8_c00130{margin-left:-1.267200px;}
._9_c00130{width:1.094400px;}
._0_c00130{width:2.325600px;}
._a_c00130{width:3.650400px;}
._6_c00130{width:4.658400px;}
._b_c00130{width:6.494400px;}
._10_c00130{width:7.869600px;}
._e_c00130{width:9.518400px;}
._7_c00130{width:10.756800px;}
._1_c00130{width:12.715200px;}
._4_c00130{width:15.076800px;}
._c_c00130{width:16.149600px;}
._3_c00130{width:18.000000px;}
._14_c00130{width:20.463600px;}
._13_c00130{width:30.715200px;}
._11_c00130{width:33.055200px;}
._12_c00130{width:34.120800px;}
.fc1_c00130{color:rgb(0,0,153);}
.fc0_c00130{color:rgb(0,0,0);}
.fs4_c00130{font-size:40.000002px;}
.fs1_c00130{font-size:48.000000px;}
.fs2_c00130{font-size:54.000000px;}
.fs3_c00130{font-size:60.000000px;}
.fs0_c00130{font-size:72.000000px;}
.y0_c00130{bottom:0.000000px;}
.ye_c00130{bottom:4.500000px;}
.yd_c00130{bottom:21.000000px;}
.yc_c00130{bottom:49.500000px;}
.y17_c00130{bottom:67.335000px;}
.yb_c00130{bottom:67.500000px;}
.y1b_c00130{bottom:131.835000px;}
.y1a_c00130{bottom:155.085000px;}
.y19_c00130{bottom:196.335000px;}
.y18_c00130{bottom:219.585000px;}
.y15_c00130{bottom:286.335000px;}
.y14_c00130{bottom:313.335000px;}
.y13_c00130{bottom:340.335000px;}
.y12_c00130{bottom:367.335000px;}
.y11_c00130{bottom:394.335000px;}
.y10_c00130{bottom:421.335000px;}
.yf_c00130{bottom:448.335000px;}
.ya_c00130{bottom:493.335000px;}
.y9_c00130{bottom:878.835000px;}
.y8_c00130{bottom:905.835000px;}
.y7_c00130{bottom:932.835000px;}
.y6_c00130{bottom:959.835000px;}
.y5_c00130{bottom:986.835000px;}
.y4_c00130{bottom:1013.835000px;}
.y3_c00130{bottom:1040.835000px;}
.y2_c00130{bottom:1067.835000px;}
.y1_c00130{bottom:1094.835000px;}
.y16_c00130{bottom:1193.835000px;}
.h8_c00130{height:27.480470px;}
.h9_c00130{height:41.220703px;}
.h6_c00130{height:42.292969px;}
.h7_c00130{height:44.121094px;}
.h3_c00130{height:51.257812px;}
.h4_c00130{height:57.258075px;}
.h5_c00130{height:354.000000px;}
.h2_c00130{height:1261.500000px;}
.h0_c00130{height:1262.835000px;}
.h1_c00130{height:1263.000000px;}
.w3_c00130{width:676.935000px;}
.w2_c00130{width:892.500000px;}
.w0_c00130{width:892.935000px;}
.w1_c00130{width:893.250000px;}
.x0_c00130{left:0.000000px;}
.x4_c00130{left:53.560140px;}
.x2_c00130{left:65.626425px;}
.x3_c00130{left:139.220535px;}
.x1_c00130{left:150.519750px;}
.x5_c00130{left:193.892850px;}
.x6_c00130{left:380.516100px;}
.x7_c00130{left:802.427700px;}
@media print{
.v2_c00130{vertical-align:-20.521067pt;}
.v3_c00130{vertical-align:-13.333333pt;}
.v0_c00130{vertical-align:0.000000pt;}
.v1_c00130{vertical-align:20.521067pt;}
.ls4_c00130{letter-spacing:0.000000pt;}
.ls2_c00130{letter-spacing:0.010667pt;}
.ls1_c00130{letter-spacing:0.014400pt;}
.ls0_c00130{letter-spacing:0.270933pt;}
.ls3_c00130{letter-spacing:3.555555pt;}
.ws0_c00130{word-spacing:-17.600000pt;}
.ws2_c00130{word-spacing:-15.182400pt;}
.ws1_c00130{word-spacing:-15.168000pt;}
.ws3_c00130{word-spacing:-11.733333pt;}
.ws4_c00130{word-spacing:0.000000pt;}
._15_c00130{margin-left:-11.749333pt;}
._f_c00130{margin-left:-6.182400pt;}
._d_c00130{margin-left:-4.640000pt;}
._5_c00130{margin-left:-3.584000pt;}
._2_c00130{margin-left:-2.585600pt;}
._8_c00130{margin-left:-1.126400pt;}
._9_c00130{width:0.972800pt;}
._0_c00130{width:2.067200pt;}
._a_c00130{width:3.244800pt;}
._6_c00130{width:4.140800pt;}
._b_c00130{width:5.772800pt;}
._10_c00130{width:6.995200pt;}
._e_c00130{width:8.460800pt;}
._7_c00130{width:9.561600pt;}
._1_c00130{width:11.302400pt;}
._4_c00130{width:13.401600pt;}
._c_c00130{width:14.355200pt;}
._3_c00130{width:16.000000pt;}
._14_c00130{width:18.189867pt;}
._13_c00130{width:27.302400pt;}
._11_c00130{width:29.382400pt;}
._12_c00130{width:30.329600pt;}
.fs4_c00130{font-size:35.555557pt;}
.fs1_c00130{font-size:42.666667pt;}
.fs2_c00130{font-size:48.000000pt;}
.fs3_c00130{font-size:53.333333pt;}
.fs0_c00130{font-size:64.000000pt;}
.y0_c00130{bottom:0.000000pt;}
.ye_c00130{bottom:4.000000pt;}
.yd_c00130{bottom:18.666667pt;}
.yc_c00130{bottom:44.000000pt;}
.y17_c00130{bottom:59.853333pt;}
.yb_c00130{bottom:60.000000pt;}
.y1b_c00130{bottom:117.186667pt;}
.y1a_c00130{bottom:137.853333pt;}
.y19_c00130{bottom:174.520000pt;}
.y18_c00130{bottom:195.186667pt;}
.y15_c00130{bottom:254.520000pt;}
.y14_c00130{bottom:278.520000pt;}
.y13_c00130{bottom:302.520000pt;}
.y12_c00130{bottom:326.520000pt;}
.y11_c00130{bottom:350.520000pt;}
.y10_c00130{bottom:374.520000pt;}
.yf_c00130{bottom:398.520000pt;}
.ya_c00130{bottom:438.520000pt;}
.y9_c00130{bottom:781.186667pt;}
.y8_c00130{bottom:805.186667pt;}
.y7_c00130{bottom:829.186667pt;}
.y6_c00130{bottom:853.186667pt;}
.y5_c00130{bottom:877.186667pt;}
.y4_c00130{bottom:901.186667pt;}
.y3_c00130{bottom:925.186667pt;}
.y2_c00130{bottom:949.186667pt;}
.y1_c00130{bottom:973.186667pt;}
.y16_c00130{bottom:1061.186667pt;}
.h8_c00130{height:24.427085pt;}
.h9_c00130{height:36.640625pt;}
.h6_c00130{height:37.593750pt;}
.h7_c00130{height:39.218750pt;}
.h3_c00130{height:45.562500pt;}
.h4_c00130{height:50.896067pt;}
.h5_c00130{height:314.666667pt;}
.h2_c00130{height:1121.333333pt;}
.h0_c00130{height:1122.520000pt;}
.h1_c00130{height:1122.666667pt;}
.w3_c00130{width:601.720000pt;}
.w2_c00130{width:793.333333pt;}
.w0_c00130{width:793.720000pt;}
.w1_c00130{width:794.000000pt;}
.x0_c00130{left:0.000000pt;}
.x4_c00130{left:47.609013pt;}
.x2_c00130{left:58.334600pt;}
.x3_c00130{left:123.751587pt;}
.x1_c00130{left:133.795333pt;}
.x5_c00130{left:172.349200pt;}
.x6_c00130{left:338.236533pt;}
.x7_c00130{left:713.269067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_494a564830f82181f1bee3e4.woff2')format("woff");}.ff1_c00131{font-family:ff1_c00131;line-height:0.934082;font-style:normal;font-weight:normal;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_876776617fbeada740b45b70.woff2')format("woff");}.ff2_c00131{font-family:ff2_c00131;line-height:0.987793;font-style:normal;font-weight:normal;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_81ab9c3c8088c0f94a5b4a97.woff2')format("woff");}.ff3_c00131{font-family:ff3_c00131;line-height:0.756836;font-style:normal;font-weight:normal;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_4137bcc3f90ccf31a7b742fb.woff2')format("woff");}.ff4_c00131{font-family:ff4_c00131;line-height:1.155762;font-style:normal;font-weight:normal;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_83a7500911c5151ee740752b.woff2')format("woff");}.ff5_c00131{font-family:ff5_c00131;line-height:0.904785;font-style: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);}
.v2_c00131{vertical-align:-23.086200px;}
.v3_c00131{vertical-align:-15.000000px;}
.v0_c00131{vertical-align:0.000000px;}
.v1_c00131{vertical-align:23.086200px;}
.ls5_c00131{letter-spacing:0.000000px;}
.ls6_c00131{letter-spacing:0.012000px;}
.ls2_c00131{letter-spacing:0.021600px;}
.ls0_c00131{letter-spacing:0.059400px;}
.ls3_c00131{letter-spacing:0.418359px;}
.ls1_c00131{letter-spacing:2.392200px;}
.ls4_c00131{letter-spacing:3.999999px;}
.sc__c00131{text-shadow:none;}
.sc0_c00131{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00131{-webkit-text-stroke:0px transparent;}
.sc0_c00131{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00131{word-spacing:-19.800000px;}
.ws1_c00131{word-spacing:-15.000000px;}
.ws2_c00131{word-spacing:0.000000px;}
._12_c00131{margin-left:-13.254000px;}
._e_c00131{margin-left:-6.717600px;}
._13_c00131{margin-left:-5.672400px;}
._6_c00131{margin-left:-3.902400px;}
._2_c00131{margin-left:-2.390400px;}
._4_c00131{margin-left:-1.087200px;}
._5_c00131{width:1.152000px;}
._0_c00131{width:2.721600px;}
._8_c00131{width:4.672800px;}
._d_c00131{width:5.767200px;}
._f_c00131{width:6.933600px;}
._c_c00131{width:8.186400px;}
._9_c00131{width:9.230400px;}
._a_c00131{width:10.411200px;}
._10_c00131{width:11.412000px;}
._7_c00131{width:12.736800px;}
._b_c00131{width:14.702400px;}
._1_c00131{width:16.862400px;}
._11_c00131{width:18.619200px;}
._14_c00131{width:20.340000px;}
._3_c00131{width:21.528000px;}
.fc1_c00131{color:rgb(0,0,153);}
.fc0_c00131{color:rgb(0,0,0);}
.fs4_c00131{font-size:40.000002px;}
.fs1_c00131{font-size:48.000000px;}
.fs2_c00131{font-size:54.000000px;}
.fs3_c00131{font-size:60.000000px;}
.fs0_c00131{font-size:72.000000px;}
.y0_c00131{bottom:0.000000px;}
.y14_c00131{bottom:12.000000px;}
.y13_c00131{bottom:34.500000px;}
.y16_c00131{bottom:67.335000px;}
.y1a_c00131{bottom:131.835000px;}
.y19_c00131{bottom:155.085000px;}
.y18_c00131{bottom:196.335000px;}
.y17_c00131{bottom:219.585000px;}
.y12_c00131{bottom:256.335000px;}
.y11_c00131{bottom:599.835000px;}
.y10_c00131{bottom:626.835000px;}
.yf_c00131{bottom:674.835000px;}
.ye_c00131{bottom:701.835000px;}
.yd_c00131{bottom:749.835000px;}
.yc_c00131{bottom:776.835000px;}
.yb_c00131{bottom:803.835000px;}
.ya_c00131{bottom:830.835000px;}
.y9_c00131{bottom:857.835000px;}
.y8_c00131{bottom:884.835000px;}
.y7_c00131{bottom:911.835000px;}
.y6_c00131{bottom:938.835000px;}
.y5_c00131{bottom:965.835000px;}
.y4_c00131{bottom:992.835000px;}
.y3_c00131{bottom:1019.835000px;}
.y2_c00131{bottom:1067.835000px;}
.y1_c00131{bottom:1094.835000px;}
.y15_c00131{bottom:1193.835000px;}
.h9_c00131{height:27.480470px;}
.ha_c00131{height:41.220703px;}
.h6_c00131{height:42.292969px;}
.h8_c00131{height:44.208984px;}
.h3_c00131{height:51.257812px;}
.h7_c00131{height:56.074219px;}
.h4_c00131{height:57.258075px;}
.h5_c00131{height:312.000000px;}
.h2_c00131{height:1261.500000px;}
.h0_c00131{height:1262.835000px;}
.h1_c00131{height:1263.000000px;}
.w3_c00131{width:676.934850px;}
.w2_c00131{width:892.500000px;}
.w0_c00131{width:892.935000px;}
.w1_c00131{width:893.250000px;}
.x0_c00131{left:0.000000px;}
.x2_c00131{left:7.500000px;}
.x1_c00131{left:65.480310px;}
@media print{
.v2_c00131{vertical-align:-20.521067pt;}
.v3_c00131{vertical-align:-13.333333pt;}
.v0_c00131{vertical-align:0.000000pt;}
.v1_c00131{vertical-align:20.521067pt;}
.ls5_c00131{letter-spacing:0.000000pt;}
.ls6_c00131{letter-spacing:0.010667pt;}
.ls2_c00131{letter-spacing:0.019200pt;}
.ls0_c00131{letter-spacing:0.052800pt;}
.ls3_c00131{letter-spacing:0.371875pt;}
.ls1_c00131{letter-spacing:2.126400pt;}
.ls4_c00131{letter-spacing:3.555555pt;}
.ws0_c00131{word-spacing:-17.600000pt;}
.ws1_c00131{word-spacing:-13.333333pt;}
.ws2_c00131{word-spacing:0.000000pt;}
._12_c00131{margin-left:-11.781333pt;}
._e_c00131{margin-left:-5.971200pt;}
._13_c00131{margin-left:-5.042133pt;}
._6_c00131{margin-left:-3.468800pt;}
._2_c00131{margin-left:-2.124800pt;}
._4_c00131{margin-left:-0.966400pt;}
._5_c00131{width:1.024000pt;}
._0_c00131{width:2.419200pt;}
._8_c00131{width:4.153600pt;}
._d_c00131{width:5.126400pt;}
._f_c00131{width:6.163200pt;}
._c_c00131{width:7.276800pt;}
._9_c00131{width:8.204800pt;}
._a_c00131{width:9.254400pt;}
._10_c00131{width:10.144000pt;}
._7_c00131{width:11.321600pt;}
._b_c00131{width:13.068800pt;}
._1_c00131{width:14.988800pt;}
._11_c00131{width:16.550400pt;}
._14_c00131{width:18.080000pt;}
._3_c00131{width:19.136000pt;}
.fs4_c00131{font-size:35.555557pt;}
.fs1_c00131{font-size:42.666667pt;}
.fs2_c00131{font-size:48.000000pt;}
.fs3_c00131{font-size:53.333333pt;}
.fs0_c00131{font-size:64.000000pt;}
.y0_c00131{bottom:0.000000pt;}
.y14_c00131{bottom:10.666667pt;}
.y13_c00131{bottom:30.666667pt;}
.y16_c00131{bottom:59.853333pt;}
.y1a_c00131{bottom:117.186667pt;}
.y19_c00131{bottom:137.853333pt;}
.y18_c00131{bottom:174.520000pt;}
.y17_c00131{bottom:195.186667pt;}
.y12_c00131{bottom:227.853333pt;}
.y11_c00131{bottom:533.186667pt;}
.y10_c00131{bottom:557.186667pt;}
.yf_c00131{bottom:599.853333pt;}
.ye_c00131{bottom:623.853333pt;}
.yd_c00131{bottom:666.520000pt;}
.yc_c00131{bottom:690.520000pt;}
.yb_c00131{bottom:714.520000pt;}
.ya_c00131{bottom:738.520000pt;}
.y9_c00131{bottom:762.520000pt;}
.y8_c00131{bottom:786.520000pt;}
.y7_c00131{bottom:810.520000pt;}
.y6_c00131{bottom:834.520000pt;}
.y5_c00131{bottom:858.520000pt;}
.y4_c00131{bottom:882.520000pt;}
.y3_c00131{bottom:906.520000pt;}
.y2_c00131{bottom:949.186667pt;}
.y1_c00131{bottom:973.186667pt;}
.y15_c00131{bottom:1061.186667pt;}
.h9_c00131{height:24.427085pt;}
.ha_c00131{height:36.640625pt;}
.h6_c00131{height:37.593750pt;}
.h8_c00131{height:39.296875pt;}
.h3_c00131{height:45.562500pt;}
.h7_c00131{height:49.843750pt;}
.h4_c00131{height:50.896067pt;}
.h5_c00131{height:277.333333pt;}
.h2_c00131{height:1121.333333pt;}
.h0_c00131{height:1122.520000pt;}
.h1_c00131{height:1122.666667pt;}
.w3_c00131{width:601.719867pt;}
.w2_c00131{width:793.333333pt;}
.w0_c00131{width:793.720000pt;}
.w1_c00131{width:794.000000pt;}
.x0_c00131{left:0.000000pt;}
.x2_c00131{left:6.666667pt;}
.x1_c00131{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e4efa9317bb9e1762a9ad188.woff2')format("woff");}.ff1_c00132{font-family:ff1_c00132;line-height:0.933105;font-style:normal;font-weight:normal;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_cb63aeebe64096849d9b785c.woff2')format("woff");}.ff2_c00132{font-family:ff2_c00132;line-height:0.987793;font-style:normal;font-weight:normal;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_1812b9a2e44de4315b1a0bb9.woff2')format("woff");}.ff3_c00132{font-family:ff3_c00132;line-height:0.956543;font-style:normal;font-weight:normal;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_1bce1602d1c90b8e4a348f3f.woff2')format("woff");}.ff4_c00132{font-family:ff4_c00132;line-height:0.904785;font-style:normal;font-weight:normal;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_0e0a5a3914a7ab6e63e50223.woff2')format("woff");}.ff5_c00132{font-family:ff5_c00132;line-height:0.891113;font-style: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);}
.v2_c00132{vertical-align:-23.086200px;}
.v3_c00132{vertical-align:-15.400200px;}
.v0_c00132{vertical-align:0.000000px;}
.v1_c00132{vertical-align:23.086200px;}
.ls4_c00132{letter-spacing:0.000000px;}
.ls2_c00132{letter-spacing:0.005599px;}
.ls1_c00132{letter-spacing:0.012000px;}
.ls0_c00132{letter-spacing:1.688400px;}
.ls3_c00132{letter-spacing:3.999999px;}
.sc__c00132{text-shadow:none;}
.sc0_c00132{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00132{-webkit-text-stroke:0px transparent;}
.sc0_c00132{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00132{word-spacing:-13.200000px;}
.ws1_c00132{word-spacing:0.000000px;}
._11_c00132{margin-left:-13.218000px;}
._b_c00132{margin-left:-6.741600px;}
._12_c00132{margin-left:-5.667600px;}
._7_c00132{margin-left:-3.729600px;}
._4_c00132{margin-left:-1.828800px;}
._2_c00132{width:1.180800px;}
._0_c00132{width:2.325600px;}
._9_c00132{width:4.053600px;}
._a_c00132{width:5.054400px;}
._8_c00132{width:6.206400px;}
._c_c00132{width:7.516800px;}
._d_c00132{width:8.683200px;}
._e_c00132{width:10.274400px;}
._1_c00132{width:12.103200px;}
._3_c00132{width:13.240800px;}
._6_c00132{width:14.378400px;}
._5_c00132{width:16.293600px;}
._f_c00132{width:18.348000px;}
._10_c00132{width:20.283600px;}
.fc0_c00132{color:rgb(0,0,0);}
.fs4_c00132{font-size:40.000002px;}
.fs1_c00132{font-size:48.000000px;}
.fs2_c00132{font-size:54.000000px;}
.fs3_c00132{font-size:60.000000px;}
.fs0_c00132{font-size:72.000000px;}
.y0_c00132{bottom:0.000000px;}
.y10_c00132{bottom:10.500000px;}
.yf_c00132{bottom:31.500000px;}
.y12_c00132{bottom:67.335000px;}
.y15_c00132{bottom:131.835000px;}
.y14_c00132{bottom:155.085000px;}
.y13_c00132{bottom:200.185050px;}
.ye_c00132{bottom:236.835000px;}
.yd_c00132{bottom:749.835000px;}
.yc_c00132{bottom:776.835000px;}
.yb_c00132{bottom:803.835000px;}
.ya_c00132{bottom:830.835000px;}
.y9_c00132{bottom:857.835000px;}
.y8_c00132{bottom:884.835000px;}
.y7_c00132{bottom:932.835000px;}
.y6_c00132{bottom:959.835000px;}
.y5_c00132{bottom:986.835000px;}
.y4_c00132{bottom:1013.835000px;}
.y3_c00132{bottom:1040.835000px;}
.y2_c00132{bottom:1067.835000px;}
.y1_c00132{bottom:1094.835000px;}
.y11_c00132{bottom:1193.835000px;}
.h9_c00132{height:27.480470px;}
.h8_c00132{height:29.414064px;}
.ha_c00132{height:41.220703px;}
.h6_c00132{height:42.292969px;}
.h7_c00132{height:44.121094px;}
.h3_c00132{height:51.187500px;}
.h4_c00132{height:57.211200px;}
.h5_c00132{height:481.500000px;}
.h2_c00132{height:1261.500000px;}
.h0_c00132{height:1262.835000px;}
.h1_c00132{height:1263.000000px;}
.w3_c00132{width:676.935000px;}
.w2_c00132{width:892.500000px;}
.w0_c00132{width:892.935000px;}
.w1_c00132{width:893.250000px;}
.x0_c00132{left:0.000000px;}
.x2_c00132{left:98.367870px;}
.x1_c00132{left:150.519750px;}
.x3_c00132{left:234.775200px;}
.x4_c00132{left:380.516100px;}
.x5_c00132{left:802.427700px;}
@media print{
.v2_c00132{vertical-align:-20.521067pt;}
.v3_c00132{vertical-align:-13.689067pt;}
.v0_c00132{vertical-align:0.000000pt;}
.v1_c00132{vertical-align:20.521067pt;}
.ls4_c00132{letter-spacing:0.000000pt;}
.ls2_c00132{letter-spacing:0.004977pt;}
.ls1_c00132{letter-spacing:0.010667pt;}
.ls0_c00132{letter-spacing:1.500800pt;}
.ls3_c00132{letter-spacing:3.555555pt;}
.ws0_c00132{word-spacing:-11.733333pt;}
.ws1_c00132{word-spacing:0.000000pt;}
._11_c00132{margin-left:-11.749333pt;}
._b_c00132{margin-left:-5.992533pt;}
._12_c00132{margin-left:-5.037867pt;}
._7_c00132{margin-left:-3.315200pt;}
._4_c00132{margin-left:-1.625600pt;}
._2_c00132{width:1.049600pt;}
._0_c00132{width:2.067200pt;}
._9_c00132{width:3.603200pt;}
._a_c00132{width:4.492800pt;}
._8_c00132{width:5.516800pt;}
._c_c00132{width:6.681600pt;}
._d_c00132{width:7.718400pt;}
._e_c00132{width:9.132800pt;}
._1_c00132{width:10.758400pt;}
._3_c00132{width:11.769600pt;}
._6_c00132{width:12.780800pt;}
._5_c00132{width:14.483200pt;}
._f_c00132{width:16.309333pt;}
._10_c00132{width:18.029867pt;}
.fs4_c00132{font-size:35.555557pt;}
.fs1_c00132{font-size:42.666667pt;}
.fs2_c00132{font-size:48.000000pt;}
.fs3_c00132{font-size:53.333333pt;}
.fs0_c00132{font-size:64.000000pt;}
.y0_c00132{bottom:0.000000pt;}
.y10_c00132{bottom:9.333333pt;}
.yf_c00132{bottom:28.000000pt;}
.y12_c00132{bottom:59.853333pt;}
.y15_c00132{bottom:117.186667pt;}
.y14_c00132{bottom:137.853333pt;}
.y13_c00132{bottom:177.942267pt;}
.ye_c00132{bottom:210.520000pt;}
.yd_c00132{bottom:666.520000pt;}
.yc_c00132{bottom:690.520000pt;}
.yb_c00132{bottom:714.520000pt;}
.ya_c00132{bottom:738.520000pt;}
.y9_c00132{bottom:762.520000pt;}
.y8_c00132{bottom:786.520000pt;}
.y7_c00132{bottom:829.186667pt;}
.y6_c00132{bottom:853.186667pt;}
.y5_c00132{bottom:877.186667pt;}
.y4_c00132{bottom:901.186667pt;}
.y3_c00132{bottom:925.186667pt;}
.y2_c00132{bottom:949.186667pt;}
.y1_c00132{bottom:973.186667pt;}
.y11_c00132{bottom:1061.186667pt;}
.h9_c00132{height:24.427085pt;}
.h8_c00132{height:26.145835pt;}
.ha_c00132{height:36.640625pt;}
.h6_c00132{height:37.593750pt;}
.h7_c00132{height:39.218750pt;}
.h3_c00132{height:45.500000pt;}
.h4_c00132{height:50.854400pt;}
.h5_c00132{height:428.000000pt;}
.h2_c00132{height:1121.333333pt;}
.h0_c00132{height:1122.520000pt;}
.h1_c00132{height:1122.666667pt;}
.w3_c00132{width:601.720000pt;}
.w2_c00132{width:793.333333pt;}
.w0_c00132{width:793.720000pt;}
.w1_c00132{width:794.000000pt;}
.x0_c00132{left:0.000000pt;}
.x2_c00132{left:87.438107pt;}
.x1_c00132{left:133.795333pt;}
.x3_c00132{left:208.689067pt;}
.x4_c00132{left:338.236533pt;}
.x5_c00132{left:713.269067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_84d96b9610a8cf3e7620a2a8.woff2')format("woff");}.ff1_c00133{font-family:ff1_c00133;line-height:0.933105;font-style:normal;font-weight:normal;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_840da5facb2a79b5a2cdd150.woff2')format("woff");}.ff2_c00133{font-family:ff2_c00133;line-height:0.987793;font-style:normal;font-weight:normal;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_370e2de348b4ce9c1ef439fb.woff2')format("woff");}.ff3_c00133{font-family:ff3_c00133;line-height:0.755859;font-style:normal;font-weight:normal;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_bd7aced5650a40ed75311153.woff2')format("woff");}.ff4_c00133{font-family:ff4_c00133;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00133{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00133{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00133{vertical-align:0.000000px;}
.ls1_c00133{letter-spacing:0.000000px;}
.ls2_c00133{letter-spacing:0.012000px;}
.ls0_c00133{letter-spacing:0.016200px;}
.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:-17.080200px;}
.ws0_c00133{word-spacing:-17.064000px;}
.ws2_c00133{word-spacing:0.000000px;}
._b_c00133{margin-left:-7.164000px;}
._4_c00133{margin-left:-4.795200px;}
._9_c00133{margin-left:-2.908800px;}
._2_c00133{margin-left:-1.094400px;}
._7_c00133{width:1.044000px;}
._0_c00133{width:2.325600px;}
._1_c00133{width:3.816000px;}
._8_c00133{width:5.126400px;}
._6_c00133{width:6.148800px;}
._3_c00133{width:7.308000px;}
._a_c00133{width:9.172800px;}
._5_c00133{width:10.778400px;}
._d_c00133{width:12.758400px;}
._c_c00133{width:14.378400px;}
._f_c00133{width:15.710400px;}
._e_c00133{width:16.747200px;}
._10_c00133{width:18.705600px;}
._11_c00133{width:21.038400px;}
._12_c00133{width:23.508000px;}
._16_c00133{width:28.929600px;}
._15_c00133{width:30.772800px;}
._13_c00133{width:32.104800px;}
._14_c00133{width:36.057600px;}
.fc1_c00133{color:rgb(0,0,153);}
.fc0_c00133{color:rgb(0,0,0);}
.fs1_c00133{font-size:54.000000px;}
.fs2_c00133{font-size:60.000000px;}
.fs0_c00133{font-size:72.000000px;}
.y0_c00133{bottom:0.000000px;}
.y10_c00133{bottom:10.500000px;}
.yf_c00133{bottom:28.500000px;}
.y18_c00133{bottom:67.335000px;}
.y16_c00133{bottom:133.335000px;}
.y15_c00133{bottom:160.335000px;}
.y14_c00133{bottom:187.335000px;}
.y13_c00133{bottom:214.335000px;}
.y12_c00133{bottom:241.335000px;}
.y11_c00133{bottom:268.335000px;}
.ye_c00133{bottom:313.335000px;}
.yd_c00133{bottom:728.835000px;}
.yc_c00133{bottom:755.835000px;}
.yb_c00133{bottom:782.835000px;}
.ya_c00133{bottom:809.835000px;}
.y9_c00133{bottom:857.835000px;}
.y8_c00133{bottom:884.835000px;}
.y7_c00133{bottom:911.835000px;}
.y6_c00133{bottom:938.835000px;}
.y5_c00133{bottom:965.835000px;}
.y4_c00133{bottom:992.835000px;}
.y3_c00133{bottom:1019.835000px;}
.y2_c00133{bottom:1067.835000px;}
.y1_c00133{bottom:1094.835000px;}
.y17_c00133{bottom:1193.835000px;}
.h5_c00133{height:42.292969px;}
.h7_c00133{height:44.208984px;}
.h3_c00133{height:51.187500px;}
.h6_c00133{height:56.074219px;}
.h4_c00133{height:384.000000px;}
.h2_c00133{height:1261.500000px;}
.h0_c00133{height:1262.835000px;}
.h1_c00133{height:1263.000000px;}
.w3_c00133{width:676.934850px;}
.w2_c00133{width:892.500000px;}
.w0_c00133{width:892.935000px;}
.w1_c00133{width:893.250000px;}
.x0_c00133{left:0.000000px;}
.x2_c00133{left:11.385795px;}
.x1_c00133{left:65.480310px;}
.x3_c00133{left:260.901750px;}
@media print{
.v0_c00133{vertical-align:0.000000pt;}
.ls1_c00133{letter-spacing:0.000000pt;}
.ls2_c00133{letter-spacing:0.010667pt;}
.ls0_c00133{letter-spacing:0.014400pt;}
.ws1_c00133{word-spacing:-15.182400pt;}
.ws0_c00133{word-spacing:-15.168000pt;}
.ws2_c00133{word-spacing:0.000000pt;}
._b_c00133{margin-left:-6.368000pt;}
._4_c00133{margin-left:-4.262400pt;}
._9_c00133{margin-left:-2.585600pt;}
._2_c00133{margin-left:-0.972800pt;}
._7_c00133{width:0.928000pt;}
._0_c00133{width:2.067200pt;}
._1_c00133{width:3.392000pt;}
._8_c00133{width:4.556800pt;}
._6_c00133{width:5.465600pt;}
._3_c00133{width:6.496000pt;}
._a_c00133{width:8.153600pt;}
._5_c00133{width:9.580800pt;}
._d_c00133{width:11.340800pt;}
._c_c00133{width:12.780800pt;}
._f_c00133{width:13.964800pt;}
._e_c00133{width:14.886400pt;}
._10_c00133{width:16.627200pt;}
._11_c00133{width:18.700800pt;}
._12_c00133{width:20.896000pt;}
._16_c00133{width:25.715200pt;}
._15_c00133{width:27.353600pt;}
._13_c00133{width:28.537600pt;}
._14_c00133{width:32.051200pt;}
.fs1_c00133{font-size:48.000000pt;}
.fs2_c00133{font-size:53.333333pt;}
.fs0_c00133{font-size:64.000000pt;}
.y0_c00133{bottom:0.000000pt;}
.y10_c00133{bottom:9.333333pt;}
.yf_c00133{bottom:25.333333pt;}
.y18_c00133{bottom:59.853333pt;}
.y16_c00133{bottom:118.520000pt;}
.y15_c00133{bottom:142.520000pt;}
.y14_c00133{bottom:166.520000pt;}
.y13_c00133{bottom:190.520000pt;}
.y12_c00133{bottom:214.520000pt;}
.y11_c00133{bottom:238.520000pt;}
.ye_c00133{bottom:278.520000pt;}
.yd_c00133{bottom:647.853333pt;}
.yc_c00133{bottom:671.853333pt;}
.yb_c00133{bottom:695.853333pt;}
.ya_c00133{bottom:719.853333pt;}
.y9_c00133{bottom:762.520000pt;}
.y8_c00133{bottom:786.520000pt;}
.y7_c00133{bottom:810.520000pt;}
.y6_c00133{bottom:834.520000pt;}
.y5_c00133{bottom:858.520000pt;}
.y4_c00133{bottom:882.520000pt;}
.y3_c00133{bottom:906.520000pt;}
.y2_c00133{bottom:949.186667pt;}
.y1_c00133{bottom:973.186667pt;}
.y17_c00133{bottom:1061.186667pt;}
.h5_c00133{height:37.593750pt;}
.h7_c00133{height:39.296875pt;}
.h3_c00133{height:45.500000pt;}
.h6_c00133{height:49.843750pt;}
.h4_c00133{height:341.333333pt;}
.h2_c00133{height:1121.333333pt;}
.h0_c00133{height:1122.520000pt;}
.h1_c00133{height:1122.666667pt;}
.w3_c00133{width:601.719867pt;}
.w2_c00133{width:793.333333pt;}
.w0_c00133{width:793.720000pt;}
.w1_c00133{width:794.000000pt;}
.x0_c00133{left:0.000000pt;}
.x2_c00133{left:10.120707pt;}
.x1_c00133{left:58.204720pt;}
.x3_c00133{left:231.912667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4641e96e84fe621c25ed3cf5.woff2')format("woff");}.ff1_c00134{font-family:ff1_c00134;line-height:0.934082;font-style:normal;font-weight:normal;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_6322b096103a2b52e06192de.woff2')format("woff");}.ff2_c00134{font-family:ff2_c00134;line-height:0.956543;font-style:normal;font-weight:normal;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_7467e9e5c578ec917569aa7e.woff2')format("woff");}.ff3_c00134{font-family:ff3_c00134;line-height:0.903320;font-style: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);}
.v2_c00134{vertical-align:-23.086200px;}
.v3_c00134{vertical-align:-15.000000px;}
.v0_c00134{vertical-align:0.000000px;}
.v1_c00134{vertical-align:23.086200px;}
.ls2_c00134{letter-spacing:-0.009600px;}
.ls1_c00134{letter-spacing:0.000000px;}
.ls0_c00134{letter-spacing:0.012000px;}
.sc__c00134{text-shadow:none;}
.sc0_c00134{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00134{-webkit-text-stroke:0px transparent;}
.sc0_c00134{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00134{word-spacing:-13.190400px;}
.ws1_c00134{word-spacing:-10.000001px;}
.ws2_c00134{word-spacing:0.000000px;}
._10_c00134{margin-left:-14.490000px;}
._e_c00134{margin-left:-5.897202px;}
._a_c00134{margin-left:-3.765600px;}
._1_c00134{margin-left:-1.980000px;}
._5_c00134{width:1.252800px;}
._3_c00134{width:2.376000px;}
._4_c00134{width:3.686400px;}
._0_c00134{width:5.320800px;}
._2_c00134{width:7.286400px;}
._b_c00134{width:8.834400px;}
._d_c00134{width:10.670400px;}
._c_c00134{width:11.685600px;}
._9_c00134{width:13.068000px;}
._8_c00134{width:14.198400px;}
._6_c00134{width:15.408000px;}
._7_c00134{width:17.416800px;}
._f_c00134{width:19.689600px;}
.fc0_c00134{color:rgb(0,0,0);}
.fs3_c00134{font-size:40.000002px;}
.fs1_c00134{font-size:48.000000px;}
.fs2_c00134{font-size:60.000000px;}
.fs0_c00134{font-size:72.000000px;}
.y0_c00134{bottom:0.000000px;}
.y8_c00134{bottom:67.335000px;}
.yc_c00134{bottom:131.835000px;}
.yb_c00134{bottom:155.085000px;}
.ya_c00134{bottom:196.335000px;}
.y9_c00134{bottom:219.585000px;}
.y6_c00134{bottom:938.835000px;}
.y5_c00134{bottom:965.835000px;}
.y4_c00134{bottom:992.835000px;}
.y3_c00134{bottom:1019.835000px;}
.y2_c00134{bottom:1067.835000px;}
.y1_c00134{bottom:1094.835000px;}
.y7_c00134{bottom:1193.835000px;}
.h6_c00134{height:27.421876px;}
.h7_c00134{height:41.132812px;}
.h5_c00134{height:44.121094px;}
.h3_c00134{height:51.257812px;}
.h4_c00134{height:57.258075px;}
.h2_c00134{height:1261.500000px;}
.h0_c00134{height:1262.835000px;}
.h1_c00134{height:1263.000000px;}
.w2_c00134{width:892.500000px;}
.w0_c00134{width:892.935000px;}
.w1_c00134{width:893.250000px;}
.x0_c00134{left:0.000000px;}
.x1_c00134{left:150.519750px;}
.x2_c00134{left:380.516100px;}
.x3_c00134{left:802.427700px;}
@media print{
.v2_c00134{vertical-align:-20.521067pt;}
.v3_c00134{vertical-align:-13.333333pt;}
.v0_c00134{vertical-align:0.000000pt;}
.v1_c00134{vertical-align:20.521067pt;}
.ls2_c00134{letter-spacing:-0.008533pt;}
.ls1_c00134{letter-spacing:0.000000pt;}
.ls0_c00134{letter-spacing:0.010667pt;}
.ws0_c00134{word-spacing:-11.724800pt;}
.ws1_c00134{word-spacing:-8.888889pt;}
.ws2_c00134{word-spacing:0.000000pt;}
._10_c00134{margin-left:-12.880000pt;}
._e_c00134{margin-left:-5.241957pt;}
._a_c00134{margin-left:-3.347200pt;}
._1_c00134{margin-left:-1.760000pt;}
._5_c00134{width:1.113600pt;}
._3_c00134{width:2.112000pt;}
._4_c00134{width:3.276800pt;}
._0_c00134{width:4.729600pt;}
._2_c00134{width:6.476800pt;}
._b_c00134{width:7.852800pt;}
._d_c00134{width:9.484800pt;}
._c_c00134{width:10.387200pt;}
._9_c00134{width:11.616000pt;}
._8_c00134{width:12.620800pt;}
._6_c00134{width:13.696000pt;}
._7_c00134{width:15.481600pt;}
._f_c00134{width:17.501867pt;}
.fs3_c00134{font-size:35.555557pt;}
.fs1_c00134{font-size:42.666667pt;}
.fs2_c00134{font-size:53.333333pt;}
.fs0_c00134{font-size:64.000000pt;}
.y0_c00134{bottom:0.000000pt;}
.y8_c00134{bottom:59.853333pt;}
.yc_c00134{bottom:117.186667pt;}
.yb_c00134{bottom:137.853333pt;}
.ya_c00134{bottom:174.520000pt;}
.y9_c00134{bottom:195.186667pt;}
.y6_c00134{bottom:834.520000pt;}
.y5_c00134{bottom:858.520000pt;}
.y4_c00134{bottom:882.520000pt;}
.y3_c00134{bottom:906.520000pt;}
.y2_c00134{bottom:949.186667pt;}
.y1_c00134{bottom:973.186667pt;}
.y7_c00134{bottom:1061.186667pt;}
.h6_c00134{height:24.375001pt;}
.h7_c00134{height:36.562500pt;}
.h5_c00134{height:39.218750pt;}
.h3_c00134{height:45.562500pt;}
.h4_c00134{height:50.896067pt;}
.h2_c00134{height:1121.333333pt;}
.h0_c00134{height:1122.520000pt;}
.h1_c00134{height:1122.666667pt;}
.w2_c00134{width:793.333333pt;}
.w0_c00134{width:793.720000pt;}
.w1_c00134{width:794.000000pt;}
.x0_c00134{left:0.000000pt;}
.x1_c00134{left:133.795333pt;}
.x2_c00134{left:338.236533pt;}
.x3_c00134{left:713.269067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_be9403ceeac569a9a749f5a2.woff2')format("woff");}.ff1_c00135{font-family:ff1_c00135;line-height:0.884766;font-style:normal;font-weight:normal;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_5d93dcec4beffb754af6e806.woff2')format("woff");}.ff2_c00135{font-family:ff2_c00135;line-height:0.934082;font-style:normal;font-weight:normal;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_ba2ed54a3cc91b9cb0720b03.woff2')format("woff");}.ff3_c00135{font-family:ff3_c00135;line-height:0.888672;font-style:normal;font-weight:normal;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_f7dda71bee8b624b125c314a.woff2')format("woff");}.ff4_c00135{font-family:ff4_c00135;line-height:0.755859;font-style:normal;font-weight:normal;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_11a40a5ec57c7cb046724cd9.woff2')format("woff");}.ff5_c00135{font-family:ff5_c00135;line-height:1.155762;font-style:normal;font-weight: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_c00135;src:url('chunks/assets/font_d88077213633522e1e715a2f.woff2')format("woff");}.ff6_c00135{font-family:ff6_c00135;line-height:1.043945;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00135;src:url('chunks/assets/font_3bae7f7ee0f0ce5bf66e4005.woff2')format("woff");}.ff7_c00135{font-family:ff7_c00135;line-height:0.891113;font-style: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);}
.v2_c00135{vertical-align:-23.086200px;}
.v3_c00135{vertical-align:-15.000000px;}
.v0_c00135{vertical-align:0.000000px;}
.v1_c00135{vertical-align:23.086200px;}
.ls9_c00135{letter-spacing:-0.019200px;}
.ls8_c00135{letter-spacing:-0.007200px;}
.ls6_c00135{letter-spacing:0.000000px;}
.ls5_c00135{letter-spacing:0.006019px;}
.ls1_c00135{letter-spacing:0.007200px;}
.ls0_c00135{letter-spacing:0.007800px;}
.lsa_c00135{letter-spacing:0.012000px;}
.ls3_c00135{letter-spacing:0.341400px;}
.ls2_c00135{letter-spacing:1.382280px;}
.ls4_c00135{letter-spacing:3.999999px;}
.ls7_c00135{letter-spacing:13.701600px;}
.sc__c00135{text-shadow:none;}
.sc0_c00135{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00135{-webkit-text-stroke:0px transparent;}
.sc0_c00135{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00135{word-spacing:-19.807200px;}
.ws1_c00135{word-spacing:-13.200000px;}
.ws2_c00135{word-spacing:-10.000001px;}
.ws3_c00135{word-spacing:0.000000px;}
._18_c00135{margin-left:-10.598400px;}
._a_c00135{margin-left:-9.429720px;}
._19_c00135{margin-left:-8.013600px;}
._1a_c00135{margin-left:-6.642021px;}
._1_c00135{margin-left:-4.471200px;}
._7_c00135{margin-left:-3.276000px;}
._4_c00135{margin-left:-1.468800px;}
._3_c00135{width:1.036800px;}
._6_c00135{width:2.844000px;}
._0_c00135{width:4.543200px;}
._5_c00135{width:6.537600px;}
._15_c00135{width:7.545600px;}
._2_c00135{width:9.057600px;}
._9_c00135{width:10.600800px;}
._17_c00135{width:11.656800px;}
._8_c00135{width:13.819200px;}
._b_c00135{width:15.612000px;}
._f_c00135{width:16.773600px;}
._c_c00135{width:18.084000px;}
._d_c00135{width:21.196800px;}
._e_c00135{width:22.341600px;}
._14_c00135{width:24.804000px;}
._10_c00135{width:26.784000px;}
._11_c00135{width:28.072800px;}
._12_c00135{width:30.513600px;}
._13_c00135{width:31.723200px;}
._16_c00135{width:35.421720px;}
.fc1_c00135{color:rgb(255,255,255);}
.fc0_c00135{color:rgb(0,0,0);}
.fs5_c00135{font-size:40.000002px;}
.fs2_c00135{font-size:48.000000px;}
.fs4_c00135{font-size:60.000000px;}
.fs1_c00135{font-size:72.000000px;}
.fs0_c00135{font-size:78.000000px;}
.fs3_c00135{font-size:96.000000px;}
.y0_c00135{bottom:0.000000px;}
.y18_c00135{bottom:67.335000px;}
.y1d_c00135{bottom:135.685050px;}
.y1c_c00135{bottom:180.585000px;}
.y1b_c00135{bottom:225.585000px;}
.y1a_c00135{bottom:266.835000px;}
.y19_c00135{bottom:290.085000px;}
.y14_c00135{bottom:389.835000px;}
.y13_c00135{bottom:416.835000px;}
.y12_c00135{bottom:443.835000px;}
.y11_c00135{bottom:470.835000px;}
.y10_c00135{bottom:497.835000px;}
.yf_c00135{bottom:545.835000px;}
.ye_c00135{bottom:572.835000px;}
.yd_c00135{bottom:599.835000px;}
.yc_c00135{bottom:626.835000px;}
.yb_c00135{bottom:653.835000px;}
.ya_c00135{bottom:680.835000px;}
.y9_c00135{bottom:707.835000px;}
.y8_c00135{bottom:734.835000px;}
.y7_c00135{bottom:782.835000px;}
.y6_c00135{bottom:809.835000px;}
.y5_c00135{bottom:836.835000px;}
.y4_c00135{bottom:863.835000px;}
.y3_c00135{bottom:890.835000px;}
.y2_c00135{bottom:917.835000px;}
.y1_c00135{bottom:964.335000px;}
.y16_c00135{bottom:1037.835000px;}
.y15_c00135{bottom:1066.335000px;}
.y17_c00135{bottom:1193.835000px;}
.hb_c00135{height:34.170112px;}
.h9_c00135{height:34.570312px;}
.h8_c00135{height:44.208984px;}
.ha_c00135{height:49.570312px;}
.h4_c00135{height:51.257812px;}
.h3_c00135{height:55.224609px;}
.h7_c00135{height:56.074219px;}
.h5_c00135{height:57.258075px;}
.h6_c00135{height:68.343750px;}
.h2_c00135{height:1261.500000px;}
.h0_c00135{height:1262.835000px;}
.h1_c00135{height:1263.000000px;}
.w2_c00135{width:892.500000px;}
.w0_c00135{width:892.935000px;}
.w1_c00135{width:893.250000px;}
.x0_c00135{left:0.000000px;}
.x1_c00135{left:65.480310px;}
.x3_c00135{left:88.564335px;}
.x2_c00135{left:94.798875px;}
@media print{
.v2_c00135{vertical-align:-20.521067pt;}
.v3_c00135{vertical-align:-13.333333pt;}
.v0_c00135{vertical-align:0.000000pt;}
.v1_c00135{vertical-align:20.521067pt;}
.ls9_c00135{letter-spacing:-0.017067pt;}
.ls8_c00135{letter-spacing:-0.006400pt;}
.ls6_c00135{letter-spacing:0.000000pt;}
.ls5_c00135{letter-spacing:0.005350pt;}
.ls1_c00135{letter-spacing:0.006400pt;}
.ls0_c00135{letter-spacing:0.006933pt;}
.lsa_c00135{letter-spacing:0.010667pt;}
.ls3_c00135{letter-spacing:0.303467pt;}
.ls2_c00135{letter-spacing:1.228693pt;}
.ls4_c00135{letter-spacing:3.555555pt;}
.ls7_c00135{letter-spacing:12.179200pt;}
.ws0_c00135{word-spacing:-17.606400pt;}
.ws1_c00135{word-spacing:-11.733333pt;}
.ws2_c00135{word-spacing:-8.888889pt;}
.ws3_c00135{word-spacing:0.000000pt;}
._18_c00135{margin-left:-9.420800pt;}
._a_c00135{margin-left:-8.381973pt;}
._19_c00135{margin-left:-7.123200pt;}
._1a_c00135{margin-left:-5.904019pt;}
._1_c00135{margin-left:-3.974400pt;}
._7_c00135{margin-left:-2.912000pt;}
._4_c00135{margin-left:-1.305600pt;}
._3_c00135{width:0.921600pt;}
._6_c00135{width:2.528000pt;}
._0_c00135{width:4.038400pt;}
._5_c00135{width:5.811200pt;}
._15_c00135{width:6.707200pt;}
._2_c00135{width:8.051200pt;}
._9_c00135{width:9.422933pt;}
._17_c00135{width:10.361600pt;}
._8_c00135{width:12.283733pt;}
._b_c00135{width:13.877333pt;}
._f_c00135{width:14.909867pt;}
._c_c00135{width:16.074667pt;}
._d_c00135{width:18.841600pt;}
._e_c00135{width:19.859200pt;}
._14_c00135{width:22.048000pt;}
._10_c00135{width:23.808000pt;}
._11_c00135{width:24.953600pt;}
._12_c00135{width:27.123200pt;}
._13_c00135{width:28.198400pt;}
._16_c00135{width:31.485973pt;}
.fs5_c00135{font-size:35.555557pt;}
.fs2_c00135{font-size:42.666667pt;}
.fs4_c00135{font-size:53.333333pt;}
.fs1_c00135{font-size:64.000000pt;}
.fs0_c00135{font-size:69.333333pt;}
.fs3_c00135{font-size:85.333333pt;}
.y0_c00135{bottom:0.000000pt;}
.y18_c00135{bottom:59.853333pt;}
.y1d_c00135{bottom:120.608933pt;}
.y1c_c00135{bottom:160.520000pt;}
.y1b_c00135{bottom:200.520000pt;}
.y1a_c00135{bottom:237.186667pt;}
.y19_c00135{bottom:257.853333pt;}
.y14_c00135{bottom:346.520000pt;}
.y13_c00135{bottom:370.520000pt;}
.y12_c00135{bottom:394.520000pt;}
.y11_c00135{bottom:418.520000pt;}
.y10_c00135{bottom:442.520000pt;}
.yf_c00135{bottom:485.186667pt;}
.ye_c00135{bottom:509.186667pt;}
.yd_c00135{bottom:533.186667pt;}
.yc_c00135{bottom:557.186667pt;}
.yb_c00135{bottom:581.186667pt;}
.ya_c00135{bottom:605.186667pt;}
.y9_c00135{bottom:629.186667pt;}
.y8_c00135{bottom:653.186667pt;}
.y7_c00135{bottom:695.853333pt;}
.y6_c00135{bottom:719.853333pt;}
.y5_c00135{bottom:743.853333pt;}
.y4_c00135{bottom:767.853333pt;}
.y3_c00135{bottom:791.853333pt;}
.y2_c00135{bottom:815.853333pt;}
.y1_c00135{bottom:857.186667pt;}
.y16_c00135{bottom:922.520000pt;}
.y15_c00135{bottom:947.853333pt;}
.y17_c00135{bottom:1061.186667pt;}
.hb_c00135{height:30.373433pt;}
.h9_c00135{height:30.729167pt;}
.h8_c00135{height:39.296875pt;}
.ha_c00135{height:44.062500pt;}
.h4_c00135{height:45.562500pt;}
.h3_c00135{height:49.088542pt;}
.h7_c00135{height:49.843750pt;}
.h5_c00135{height:50.896067pt;}
.h6_c00135{height:60.750000pt;}
.h2_c00135{height:1121.333333pt;}
.h0_c00135{height:1122.520000pt;}
.h1_c00135{height:1122.666667pt;}
.w2_c00135{width:793.333333pt;}
.w0_c00135{width:793.720000pt;}
.w1_c00135{width:794.000000pt;}
.x0_c00135{left:0.000000pt;}
.x1_c00135{left:58.204720pt;}
.x3_c00135{left:78.723853pt;}
.x2_c00135{left:84.265667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e1b21609bd66ee93cf016356.woff2')format("woff");}.ff1_c00136{font-family:ff1_c00136;line-height:0.934082;font-style:normal;font-weight:normal;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_1d3ef45e767808395e42dc0b.woff2')format("woff");}.ff2_c00136{font-family:ff2_c00136;line-height:0.956543;font-style:normal;font-weight:normal;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_38b86baee5636335d2cb2432.woff2')format("woff");}.ff3_c00136{font-family:ff3_c00136;line-height:1.043945;font-style:normal;font-weight:normal;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_2cd81c1752baedd3affeccfb.woff2')format("woff");}.ff4_c00136{font-family:ff4_c00136;line-height:0.891113;font-style: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);}
.v2_c00136{vertical-align:-23.086200px;}
.v3_c00136{vertical-align:-15.000000px;}
.v0_c00136{vertical-align:0.000000px;}
.v1_c00136{vertical-align:23.086200px;}
.ls3_c00136{letter-spacing:0.000000px;}
.ls1_c00136{letter-spacing:0.012000px;}
.ls2_c00136{letter-spacing:3.999999px;}
.ls0_c00136{letter-spacing:4.035600px;}
.sc__c00136{text-shadow:none;}
.sc0_c00136{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00136{-webkit-text-stroke:0px transparent;}
.sc0_c00136{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00136{word-spacing:-15.000000px;}
.ws0_c00136{word-spacing:-13.200000px;}
.ws2_c00136{word-spacing:-10.000001px;}
.ws3_c00136{word-spacing:0.000000px;}
._1d_c00136{margin-left:-14.601600px;}
._c_c00136{margin-left:-9.681600px;}
._1c_c00136{margin-left:-7.557600px;}
._10_c00136{margin-left:-6.256800px;}
._19_c00136{margin-left:-5.032800px;}
._0_c00136{margin-left:-3.787200px;}
._e_c00136{margin-left:-2.592000px;}
._7_c00136{margin-left:-1.219200px;}
._2_c00136{width:1.360800px;}
._9_c00136{width:2.390400px;}
._4_c00136{width:3.736800px;}
._12_c00136{width:4.953600px;}
._11_c00136{width:6.072000px;}
._f_c00136{width:7.507200px;}
._8_c00136{width:8.548800px;}
._d_c00136{width:9.720000px;}
._a_c00136{width:10.792800px;}
._b_c00136{width:11.822400px;}
._1b_c00136{width:12.830400px;}
._5_c00136{width:14.011200px;}
._13_c00136{width:15.422400px;}
._3_c00136{width:16.473600px;}
._6_c00136{width:17.863200px;}
._1_c00136{width:21.715200px;}
._14_c00136{width:23.731200px;}
._15_c00136{width:24.955200px;}
._16_c00136{width:26.078400px;}
._17_c00136{width:28.713600px;}
._1a_c00136{width:29.853600px;}
._18_c00136{width:31.579200px;}
.fc1_c00136{color:rgb(0,0,153);}
.fc0_c00136{color:rgb(0,0,0);}
.fs3_c00136{font-size:40.000002px;}
.fs1_c00136{font-size:48.000000px;}
.fs2_c00136{font-size:60.000000px;}
.fs0_c00136{font-size:72.000000px;}
.y0_c00136{bottom:0.000000px;}
.y1a_c00136{bottom:67.335000px;}
.y1f_c00136{bottom:135.585000px;}
.y1e_c00136{bottom:180.585000px;}
.y1d_c00136{bottom:225.585000px;}
.y1c_c00136{bottom:266.835000px;}
.y1b_c00136{bottom:290.085000px;}
.y18_c00136{bottom:368.835000px;}
.y17_c00136{bottom:395.835000px;}
.y16_c00136{bottom:443.835000px;}
.y15_c00136{bottom:470.835000px;}
.y14_c00136{bottom:518.835000px;}
.y13_c00136{bottom:545.835000px;}
.y12_c00136{bottom:572.835000px;}
.y11_c00136{bottom:599.835000px;}
.y10_c00136{bottom:626.835000px;}
.yf_c00136{bottom:653.835000px;}
.ye_c00136{bottom:680.835000px;}
.yd_c00136{bottom:728.835000px;}
.yc_c00136{bottom:755.835000px;}
.yb_c00136{bottom:782.835000px;}
.ya_c00136{bottom:830.835000px;}
.y9_c00136{bottom:857.835000px;}
.y8_c00136{bottom:884.835000px;}
.y7_c00136{bottom:911.835000px;}
.y6_c00136{bottom:938.835000px;}
.y5_c00136{bottom:986.835000px;}
.y4_c00136{bottom:1013.835000px;}
.y3_c00136{bottom:1040.835000px;}
.y2_c00136{bottom:1067.835000px;}
.y1_c00136{bottom:1094.835000px;}
.y19_c00136{bottom:1193.835000px;}
.h6_c00136{height:34.570312px;}
.h5_c00136{height:44.121094px;}
.h7_c00136{height:49.570312px;}
.h4_c00136{height:51.257812px;}
.h3_c00136{height:57.258075px;}
.h2_c00136{height:1261.500000px;}
.h0_c00136{height:1262.835000px;}
.h1_c00136{height:1263.000000px;}
.w2_c00136{width:892.500000px;}
.w0_c00136{width:892.935000px;}
.w1_c00136{width:893.250000px;}
.x0_c00136{left:0.000000px;}
.x1_c00136{left:150.519750px;}
.x4_c00136{left:152.201850px;}
.x2_c00136{left:380.516100px;}
.x3_c00136{left:802.427700px;}
@media print{
.v2_c00136{vertical-align:-20.521067pt;}
.v3_c00136{vertical-align:-13.333333pt;}
.v0_c00136{vertical-align:0.000000pt;}
.v1_c00136{vertical-align:20.521067pt;}
.ls3_c00136{letter-spacing:0.000000pt;}
.ls1_c00136{letter-spacing:0.010667pt;}
.ls2_c00136{letter-spacing:3.555555pt;}
.ls0_c00136{letter-spacing:3.587200pt;}
.ws1_c00136{word-spacing:-13.333333pt;}
.ws0_c00136{word-spacing:-11.733333pt;}
.ws2_c00136{word-spacing:-8.888889pt;}
.ws3_c00136{word-spacing:0.000000pt;}
._1d_c00136{margin-left:-12.979200pt;}
._c_c00136{margin-left:-8.605867pt;}
._1c_c00136{margin-left:-6.717867pt;}
._10_c00136{margin-left:-5.561600pt;}
._19_c00136{margin-left:-4.473600pt;}
._0_c00136{margin-left:-3.366400pt;}
._e_c00136{margin-left:-2.304000pt;}
._7_c00136{margin-left:-1.083733pt;}
._2_c00136{width:1.209600pt;}
._9_c00136{width:2.124800pt;}
._4_c00136{width:3.321600pt;}
._12_c00136{width:4.403200pt;}
._11_c00136{width:5.397333pt;}
._f_c00136{width:6.673067pt;}
._8_c00136{width:7.598933pt;}
._d_c00136{width:8.640000pt;}
._a_c00136{width:9.593600pt;}
._b_c00136{width:10.508800pt;}
._1b_c00136{width:11.404800pt;}
._5_c00136{width:12.454400pt;}
._13_c00136{width:13.708800pt;}
._3_c00136{width:14.643200pt;}
._6_c00136{width:15.878400pt;}
._1_c00136{width:19.302400pt;}
._14_c00136{width:21.094400pt;}
._15_c00136{width:22.182400pt;}
._16_c00136{width:23.180800pt;}
._17_c00136{width:25.523200pt;}
._1a_c00136{width:26.536533pt;}
._18_c00136{width:28.070400pt;}
.fs3_c00136{font-size:35.555557pt;}
.fs1_c00136{font-size:42.666667pt;}
.fs2_c00136{font-size:53.333333pt;}
.fs0_c00136{font-size:64.000000pt;}
.y0_c00136{bottom:0.000000pt;}
.y1a_c00136{bottom:59.853333pt;}
.y1f_c00136{bottom:120.520000pt;}
.y1e_c00136{bottom:160.520000pt;}
.y1d_c00136{bottom:200.520000pt;}
.y1c_c00136{bottom:237.186667pt;}
.y1b_c00136{bottom:257.853333pt;}
.y18_c00136{bottom:327.853333pt;}
.y17_c00136{bottom:351.853333pt;}
.y16_c00136{bottom:394.520000pt;}
.y15_c00136{bottom:418.520000pt;}
.y14_c00136{bottom:461.186667pt;}
.y13_c00136{bottom:485.186667pt;}
.y12_c00136{bottom:509.186667pt;}
.y11_c00136{bottom:533.186667pt;}
.y10_c00136{bottom:557.186667pt;}
.yf_c00136{bottom:581.186667pt;}
.ye_c00136{bottom:605.186667pt;}
.yd_c00136{bottom:647.853333pt;}
.yc_c00136{bottom:671.853333pt;}
.yb_c00136{bottom:695.853333pt;}
.ya_c00136{bottom:738.520000pt;}
.y9_c00136{bottom:762.520000pt;}
.y8_c00136{bottom:786.520000pt;}
.y7_c00136{bottom:810.520000pt;}
.y6_c00136{bottom:834.520000pt;}
.y5_c00136{bottom:877.186667pt;}
.y4_c00136{bottom:901.186667pt;}
.y3_c00136{bottom:925.186667pt;}
.y2_c00136{bottom:949.186667pt;}
.y1_c00136{bottom:973.186667pt;}
.y19_c00136{bottom:1061.186667pt;}
.h6_c00136{height:30.729167pt;}
.h5_c00136{height:39.218750pt;}
.h7_c00136{height:44.062500pt;}
.h4_c00136{height:45.562500pt;}
.h3_c00136{height:50.896067pt;}
.h2_c00136{height:1121.333333pt;}
.h0_c00136{height:1122.520000pt;}
.h1_c00136{height:1122.666667pt;}
.w2_c00136{width:793.333333pt;}
.w0_c00136{width:793.720000pt;}
.w1_c00136{width:794.000000pt;}
.x0_c00136{left:0.000000pt;}
.x1_c00136{left:133.795333pt;}
.x4_c00136{left:135.290533pt;}
.x2_c00136{left:338.236533pt;}
.x3_c00136{left:713.269067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_da8805c148ab14c891acca64.woff2')format("woff");}.ff1_c00137{font-family:ff1_c00137;line-height:0.934082;font-style:normal;font-weight:normal;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_1a355219c06522896641713e.woff2')format("woff");}.ff2_c00137{font-family:ff2_c00137;line-height:0.939453;font-style:normal;font-weight:normal;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_bd7d35a1134e134b3f6fc3f6.woff2')format("woff");}.ff3_c00137{font-family:ff3_c00137;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00137;src:url('chunks/assets/font_daecc43ed1983ba6ab5a9240.woff2')format("woff");}.ff4_c00137{font-family:ff4_c00137;line-height:0.755859;font-style:normal;font-weight:normal;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_863b2803df75599c3c7cd613.woff2')format("woff");}.ff5_c00137{font-family:ff5_c00137;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00137{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00137{vertical-align:0.000000px;}
.ls2_c00137{letter-spacing:0.000000px;}
.ls0_c00137{letter-spacing:0.007800px;}
.ls3_c00137{letter-spacing:0.012000px;}
.ls1_c00137{letter-spacing:1.836000px;}
.sc__c00137{text-shadow:none;}
.sc0_c00137{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00137{-webkit-text-stroke:0px transparent;}
.sc0_c00137{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00137{word-spacing:-19.800000px;}
.ws1_c00137{word-spacing:0.000000px;}
._1b_c00137{margin-left:-6.408000px;}
._7_c00137{margin-left:-3.880800px;}
._0_c00137{margin-left:-1.915200px;}
._d_c00137{width:1.000800px;}
._2_c00137{width:2.232000px;}
._12_c00137{width:3.427200px;}
._4_c00137{width:4.593600px;}
._3_c00137{width:5.630400px;}
._1_c00137{width:6.696000px;}
._13_c00137{width:7.711200px;}
._5_c00137{width:8.863200px;}
._6_c00137{width:10.785600px;}
._8_c00137{width:12.744000px;}
._c_c00137{width:13.766400px;}
._11_c00137{width:15.105600px;}
._e_c00137{width:16.250400px;}
._10_c00137{width:17.438400px;}
._f_c00137{width:18.489600px;}
._b_c00137{width:21.837600px;}
._1d_c00137{width:22.881600px;}
._a_c00137{width:24.004800px;}
._9_c00137{width:26.013600px;}
._14_c00137{width:27.554400px;}
._16_c00137{width:28.821600px;}
._15_c00137{width:29.822400px;}
._1a_c00137{width:30.909600px;}
._18_c00137{width:31.989600px;}
._17_c00137{width:33.703200px;}
._1c_c00137{width:35.524800px;}
._1e_c00137{width:37.598400px;}
._19_c00137{width:39.376800px;}
.fc0_c00137{color:rgb(0,0,0);}
.fs2_c00137{font-size:60.000000px;}
.fs0_c00137{font-size:72.000000px;}
.fs1_c00137{font-size:78.000000px;}
.y0_c00137{bottom:0.000000px;}
.y1e_c00137{bottom:67.335000px;}
.y1c_c00137{bottom:239.835000px;}
.y1b_c00137{bottom:266.835000px;}
.y1a_c00137{bottom:293.835000px;}
.y19_c00137{bottom:320.835000px;}
.y18_c00137{bottom:368.835000px;}
.y17_c00137{bottom:395.835000px;}
.y16_c00137{bottom:422.835000px;}
.y15_c00137{bottom:449.835000px;}
.y14_c00137{bottom:476.835000px;}
.y13_c00137{bottom:503.835000px;}
.y12_c00137{bottom:530.835000px;}
.y11_c00137{bottom:557.835000px;}
.y10_c00137{bottom:584.835000px;}
.yf_c00137{bottom:611.835000px;}
.ye_c00137{bottom:638.835000px;}
.yd_c00137{bottom:665.835000px;}
.yc_c00137{bottom:713.835000px;}
.yb_c00137{bottom:740.835000px;}
.ya_c00137{bottom:767.835000px;}
.y9_c00137{bottom:794.835000px;}
.y8_c00137{bottom:821.835000px;}
.y7_c00137{bottom:848.835000px;}
.y6_c00137{bottom:875.835000px;}
.y5_c00137{bottom:902.835000px;}
.y4_c00137{bottom:949.335000px;}
.y3_c00137{bottom:1019.835000px;}
.y2_c00137{bottom:1067.835000px;}
.y1_c00137{bottom:1094.835000px;}
.y1d_c00137{bottom:1193.835000px;}
.h6_c00137{height:44.208984px;}
.h3_c00137{height:51.257812px;}
.h5_c00137{height:56.074219px;}
.h4_c00137{height:56.100586px;}
.h2_c00137{height:1261.500000px;}
.h0_c00137{height:1262.835000px;}
.h1_c00137{height:1263.000000px;}
.w2_c00137{width:892.500000px;}
.w0_c00137{width:892.935000px;}
.w1_c00137{width:893.250000px;}
.x0_c00137{left:0.000000px;}
.x1_c00137{left:65.480310px;}
@media print{
.v0_c00137{vertical-align:0.000000pt;}
.ls2_c00137{letter-spacing:0.000000pt;}
.ls0_c00137{letter-spacing:0.006933pt;}
.ls3_c00137{letter-spacing:0.010667pt;}
.ls1_c00137{letter-spacing:1.632000pt;}
.ws0_c00137{word-spacing:-17.600000pt;}
.ws1_c00137{word-spacing:0.000000pt;}
._1b_c00137{margin-left:-5.696000pt;}
._7_c00137{margin-left:-3.449600pt;}
._0_c00137{margin-left:-1.702400pt;}
._d_c00137{width:0.889600pt;}
._2_c00137{width:1.984000pt;}
._12_c00137{width:3.046400pt;}
._4_c00137{width:4.083200pt;}
._3_c00137{width:5.004800pt;}
._1_c00137{width:5.952000pt;}
._13_c00137{width:6.854400pt;}
._5_c00137{width:7.878400pt;}
._6_c00137{width:9.587200pt;}
._8_c00137{width:11.328000pt;}
._c_c00137{width:12.236800pt;}
._11_c00137{width:13.427200pt;}
._e_c00137{width:14.444800pt;}
._10_c00137{width:15.500800pt;}
._f_c00137{width:16.435200pt;}
._b_c00137{width:19.411200pt;}
._1d_c00137{width:20.339200pt;}
._a_c00137{width:21.337600pt;}
._9_c00137{width:23.123200pt;}
._14_c00137{width:24.492800pt;}
._16_c00137{width:25.619200pt;}
._15_c00137{width:26.508800pt;}
._1a_c00137{width:27.475200pt;}
._18_c00137{width:28.435200pt;}
._17_c00137{width:29.958400pt;}
._1c_c00137{width:31.577600pt;}
._1e_c00137{width:33.420800pt;}
._19_c00137{width:35.001600pt;}
.fs2_c00137{font-size:53.333333pt;}
.fs0_c00137{font-size:64.000000pt;}
.fs1_c00137{font-size:69.333333pt;}
.y0_c00137{bottom:0.000000pt;}
.y1e_c00137{bottom:59.853333pt;}
.y1c_c00137{bottom:213.186667pt;}
.y1b_c00137{bottom:237.186667pt;}
.y1a_c00137{bottom:261.186667pt;}
.y19_c00137{bottom:285.186667pt;}
.y18_c00137{bottom:327.853333pt;}
.y17_c00137{bottom:351.853333pt;}
.y16_c00137{bottom:375.853333pt;}
.y15_c00137{bottom:399.853333pt;}
.y14_c00137{bottom:423.853333pt;}
.y13_c00137{bottom:447.853333pt;}
.y12_c00137{bottom:471.853333pt;}
.y11_c00137{bottom:495.853333pt;}
.y10_c00137{bottom:519.853333pt;}
.yf_c00137{bottom:543.853333pt;}
.ye_c00137{bottom:567.853333pt;}
.yd_c00137{bottom:591.853333pt;}
.yc_c00137{bottom:634.520000pt;}
.yb_c00137{bottom:658.520000pt;}
.ya_c00137{bottom:682.520000pt;}
.y9_c00137{bottom:706.520000pt;}
.y8_c00137{bottom:730.520000pt;}
.y7_c00137{bottom:754.520000pt;}
.y6_c00137{bottom:778.520000pt;}
.y5_c00137{bottom:802.520000pt;}
.y4_c00137{bottom:843.853333pt;}
.y3_c00137{bottom:906.520000pt;}
.y2_c00137{bottom:949.186667pt;}
.y1_c00137{bottom:973.186667pt;}
.y1d_c00137{bottom:1061.186667pt;}
.h6_c00137{height:39.296875pt;}
.h3_c00137{height:45.562500pt;}
.h5_c00137{height:49.843750pt;}
.h4_c00137{height:49.867188pt;}
.h2_c00137{height:1121.333333pt;}
.h0_c00137{height:1122.520000pt;}
.h1_c00137{height:1122.666667pt;}
.w2_c00137{width:793.333333pt;}
.w0_c00137{width:793.720000pt;}
.w1_c00137{width:794.000000pt;}
.x0_c00137{left:0.000000pt;}
.x1_c00137{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e4d3d3d576038f02c5d2a7bf.woff2')format("woff");}.ff1_c00138{font-family:ff1_c00138;line-height:0.933105;font-style:normal;font-weight:normal;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_70081f4f1fe860bfe36c3b72.woff2')format("woff");}.ff2_c00138{font-family:ff2_c00138;line-height:0.956543;font-style: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;}
.ls1_c00138{letter-spacing:0.000000px;}
.ls0_c00138{letter-spacing:0.012000px;}
.sc__c00138{text-shadow:none;}
.sc0_c00138{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00138{-webkit-text-stroke:0px transparent;}
.sc0_c00138{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00138{word-spacing:0.000000px;}
._3_c00138{margin-left:-4.737600px;}
._8_c00138{margin-left:-3.182400px;}
._5_c00138{margin-left:-1.814400px;}
._a_c00138{width:1.036800px;}
._0_c00138{width:2.815200px;}
._f_c00138{width:3.909600px;}
._7_c00138{width:5.054400px;}
._11_c00138{width:6.400800px;}
._9_c00138{width:7.552800px;}
._10_c00138{width:8.971200px;}
._d_c00138{width:17.049600px;}
._c_c00138{width:22.111200px;}
._e_c00138{width:25.286400px;}
._b_c00138{width:26.373600px;}
._1_c00138{width:32.342400px;}
._2_c00138{width:35.172000px;}
._6_c00138{width:37.036800px;}
._4_c00138{width:39.873600px;}
.fc0_c00138{color:rgb(0,0,0);}
.fs1_c00138{font-size:60.000000px;}
.fs0_c00138{font-size:72.000000px;}
.y0_c00138{bottom:0.000000px;}
.ya_c00138{bottom:67.335000px;}
.y8_c00138{bottom:199.335000px;}
.y7_c00138{bottom:226.335000px;}
.y6_c00138{bottom:253.335000px;}
.y5_c00138{bottom:301.335000px;}
.y4_c00138{bottom:328.335000px;}
.y3_c00138{bottom:355.335000px;}
.y2_c00138{bottom:382.335000px;}
.y1_c00138{bottom:409.335000px;}
.y9_c00138{bottom:1193.835000px;}
.h4_c00138{height:44.121094px;}
.h3_c00138{height:51.187500px;}
.h2_c00138{height:1261.500000px;}
.h0_c00138{height:1262.835000px;}
.h1_c00138{height:1263.000000px;}
.w2_c00138{width:892.500000px;}
.w0_c00138{width:892.935000px;}
.w1_c00138{width:893.250000px;}
.x0_c00138{left:0.000000px;}
.x1_c00138{left:151.252200px;}
.x2_c00138{left:380.516100px;}
.x3_c00138{left:802.427700px;}
@media print{
.v0_c00138{vertical-align:0.000000pt;}
.ls1_c00138{letter-spacing:0.000000pt;}
.ls0_c00138{letter-spacing:0.010667pt;}
.ws0_c00138{word-spacing:0.000000pt;}
._3_c00138{margin-left:-4.211200pt;}
._8_c00138{margin-left:-2.828800pt;}
._5_c00138{margin-left:-1.612800pt;}
._a_c00138{width:0.921600pt;}
._0_c00138{width:2.502400pt;}
._f_c00138{width:3.475200pt;}
._7_c00138{width:4.492800pt;}
._11_c00138{width:5.689600pt;}
._9_c00138{width:6.713600pt;}
._10_c00138{width:7.974400pt;}
._d_c00138{width:15.155200pt;}
._c_c00138{width:19.654400pt;}
._e_c00138{width:22.476800pt;}
._b_c00138{width:23.443200pt;}
._1_c00138{width:28.748800pt;}
._2_c00138{width:31.264000pt;}
._6_c00138{width:32.921600pt;}
._4_c00138{width:35.443200pt;}
.fs1_c00138{font-size:53.333333pt;}
.fs0_c00138{font-size:64.000000pt;}
.y0_c00138{bottom:0.000000pt;}
.ya_c00138{bottom:59.853333pt;}
.y8_c00138{bottom:177.186667pt;}
.y7_c00138{bottom:201.186667pt;}
.y6_c00138{bottom:225.186667pt;}
.y5_c00138{bottom:267.853333pt;}
.y4_c00138{bottom:291.853333pt;}
.y3_c00138{bottom:315.853333pt;}
.y2_c00138{bottom:339.853333pt;}
.y1_c00138{bottom:363.853333pt;}
.y9_c00138{bottom:1061.186667pt;}
.h4_c00138{height:39.218750pt;}
.h3_c00138{height:45.500000pt;}
.h2_c00138{height:1121.333333pt;}
.h0_c00138{height:1122.520000pt;}
.h1_c00138{height:1122.666667pt;}
.w2_c00138{width:793.333333pt;}
.w0_c00138{width:793.720000pt;}
.w1_c00138{width:794.000000pt;}
.x0_c00138{left:0.000000pt;}
.x1_c00138{left:134.446400pt;}
.x2_c00138{left:338.236533pt;}
.x3_c00138{left:713.269067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8c562d69d71b248d71b33ce9.woff2')format("woff");}.ff1_c00139{font-family:ff1_c00139;line-height:0.934082;font-style:normal;font-weight:normal;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_fe037601d6ec3a7440e957e8.woff2')format("woff");}.ff2_c00139{font-family:ff2_c00139;line-height:0.892578;font-style:normal;font-weight:normal;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_f705403518e47f3b5b0c34da.woff2')format("woff");}.ff3_c00139{font-family:ff3_c00139;line-height:0.755859;font-style:normal;font-weight:normal;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_d1f28023b077f55bb0b8a867.woff2')format("woff");}.ff4_c00139{font-family:ff4_c00139;line-height:1.155762;font-style:normal;font-weight:normal;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_ad36dfd5ccd6b9a462c500e7.woff2')format("woff");}.ff5_c00139{font-family:ff5_c00139;line-height:0.904785;font-style:normal;font-weight: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_c00139;src:url('chunks/assets/font_7943189a8ab35f9882fc3d00.woff2')format("woff");}.ff6_c00139{font-family:ff6_c00139;line-height:0.704590;font-style: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);}
.v2_c00139{vertical-align:-23.086200px;}
.v3_c00139{vertical-align:-15.000000px;}
.v0_c00139{vertical-align:0.000000px;}
.v1_c00139{vertical-align:23.086200px;}
.ls3_c00139{letter-spacing:-4.068000px;}
.ls4_c00139{letter-spacing:-3.139200px;}
.ls2_c00139{letter-spacing:-0.009600px;}
.ls1_c00139{letter-spacing:0.000000px;}
.ls5_c00139{letter-spacing:0.012000px;}
.ls0_c00139{letter-spacing:3.999999px;}
.sc__c00139{text-shadow:none;}
.sc0_c00139{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00139{-webkit-text-stroke:0px transparent;}
.sc0_c00139{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00139{word-spacing:-19.800000px;}
.ws3_c00139{word-spacing:-15.000000px;}
.ws0_c00139{word-spacing:-13.200000px;}
.ws2_c00139{word-spacing:-13.190400px;}
.ws4_c00139{word-spacing:-10.000001px;}
.ws5_c00139{word-spacing:0.000000px;}
._1a_c00139{margin-left:-16.965600px;}
._1b_c00139{margin-left:-15.779202px;}
._14_c00139{margin-left:-11.505600px;}
._12_c00139{margin-left:-7.156800px;}
._19_c00139{margin-left:-5.334000px;}
._0_c00139{margin-left:-3.945600px;}
._4_c00139{margin-left:-2.311200px;}
._7_c00139{margin-left:-1.130400px;}
._1_c00139{width:1.908000px;}
._16_c00139{width:2.924760px;}
._9_c00139{width:3.945600px;}
._2_c00139{width:5.025600px;}
._3_c00139{width:6.904800px;}
._15_c00139{width:7.999200px;}
._5_c00139{width:9.244800px;}
._6_c00139{width:10.843200px;}
._c_c00139{width:11.908800px;}
._8_c00139{width:13.413600px;}
._a_c00139{width:14.608800px;}
._b_c00139{width:15.739200px;}
._13_c00139{width:16.747200px;}
._e_c00139{width:18.648000px;}
._1c_c00139{width:19.926438px;}
._d_c00139{width:21.600000px;}
._f_c00139{width:22.629600px;}
._17_c00139{width:23.796000px;}
._10_c00139{width:24.940800px;}
._11_c00139{width:26.560800px;}
._18_c00139{width:27.561600px;}
.fc1_c00139{color:rgb(0,0,153);}
.fc0_c00139{color:rgb(0,0,0);}
.fs3_c00139{font-size:40.000002px;}
.fs1_c00139{font-size:48.000000px;}
.fs2_c00139{font-size:60.000000px;}
.fs0_c00139{font-size:72.000000px;}
.y0_c00139{bottom:0.000000px;}
.y19_c00139{bottom:67.335000px;}
.y20_c00139{bottom:135.585000px;}
.y1f_c00139{bottom:176.835000px;}
.y1e_c00139{bottom:200.085000px;}
.y1d_c00139{bottom:241.335000px;}
.y1c_c00139{bottom:264.585000px;}
.y1b_c00139{bottom:305.835000px;}
.y1a_c00139{bottom:329.085000px;}
.y17_c00139{bottom:376.335000px;}
.y16_c00139{bottom:403.335000px;}
.y15_c00139{bottom:430.335000px;}
.y14_c00139{bottom:457.335000px;}
.y13_c00139{bottom:484.335000px;}
.y12_c00139{bottom:532.335000px;}
.y11_c00139{bottom:559.335000px;}
.y10_c00139{bottom:586.335000px;}
.yf_c00139{bottom:613.335000px;}
.ye_c00139{bottom:640.335000px;}
.yd_c00139{bottom:688.335000px;}
.yc_c00139{bottom:715.335000px;}
.yb_c00139{bottom:742.335000px;}
.ya_c00139{bottom:769.335000px;}
.y9_c00139{bottom:815.835000px;}
.y8_c00139{bottom:884.835000px;}
.y7_c00139{bottom:911.835000px;}
.y6_c00139{bottom:938.835000px;}
.y5_c00139{bottom:986.835000px;}
.y4_c00139{bottom:1013.835000px;}
.y3_c00139{bottom:1040.835000px;}
.y2_c00139{bottom:1067.835000px;}
.y1_c00139{bottom:1094.835000px;}
.y18_c00139{bottom:1193.835000px;}
.h8_c00139{height:27.480470px;}
.h9_c00139{height:41.220703px;}
.h7_c00139{height:44.208984px;}
.h3_c00139{height:51.257812px;}
.h5_c00139{height:51.539062px;}
.h6_c00139{height:56.074219px;}
.h4_c00139{height:57.258075px;}
.h2_c00139{height:1261.500000px;}
.h0_c00139{height:1262.835000px;}
.h1_c00139{height:1263.000000px;}
.w2_c00139{width:892.500000px;}
.w0_c00139{width:892.935000px;}
.w1_c00139{width:893.250000px;}
.x0_c00139{left:0.000000px;}
.x1_c00139{left:65.480310px;}
@media print{
.v2_c00139{vertical-align:-20.521067pt;}
.v3_c00139{vertical-align:-13.333333pt;}
.v0_c00139{vertical-align:0.000000pt;}
.v1_c00139{vertical-align:20.521067pt;}
.ls3_c00139{letter-spacing:-3.616000pt;}
.ls4_c00139{letter-spacing:-2.790400pt;}
.ls2_c00139{letter-spacing:-0.008533pt;}
.ls1_c00139{letter-spacing:0.000000pt;}
.ls5_c00139{letter-spacing:0.010667pt;}
.ls0_c00139{letter-spacing:3.555555pt;}
.ws1_c00139{word-spacing:-17.600000pt;}
.ws3_c00139{word-spacing:-13.333333pt;}
.ws0_c00139{word-spacing:-11.733333pt;}
.ws2_c00139{word-spacing:-11.724800pt;}
.ws4_c00139{word-spacing:-8.888889pt;}
.ws5_c00139{word-spacing:0.000000pt;}
._1a_c00139{margin-left:-15.080533pt;}
._1b_c00139{margin-left:-14.025957pt;}
._14_c00139{margin-left:-10.227200pt;}
._12_c00139{margin-left:-6.361600pt;}
._19_c00139{margin-left:-4.741333pt;}
._0_c00139{margin-left:-3.507200pt;}
._4_c00139{margin-left:-2.054400pt;}
._7_c00139{margin-left:-1.004800pt;}
._1_c00139{width:1.696000pt;}
._16_c00139{width:2.599787pt;}
._9_c00139{width:3.507200pt;}
._2_c00139{width:4.467200pt;}
._3_c00139{width:6.137600pt;}
._15_c00139{width:7.110400pt;}
._5_c00139{width:8.217600pt;}
._6_c00139{width:9.638400pt;}
._c_c00139{width:10.585600pt;}
._8_c00139{width:11.923200pt;}
._a_c00139{width:12.985600pt;}
._b_c00139{width:13.990400pt;}
._13_c00139{width:14.886400pt;}
._e_c00139{width:16.576000pt;}
._1c_c00139{width:17.712389pt;}
._d_c00139{width:19.200000pt;}
._f_c00139{width:20.115200pt;}
._17_c00139{width:21.152000pt;}
._10_c00139{width:22.169600pt;}
._11_c00139{width:23.609600pt;}
._18_c00139{width:24.499200pt;}
.fs3_c00139{font-size:35.555557pt;}
.fs1_c00139{font-size:42.666667pt;}
.fs2_c00139{font-size:53.333333pt;}
.fs0_c00139{font-size:64.000000pt;}
.y0_c00139{bottom:0.000000pt;}
.y19_c00139{bottom:59.853333pt;}
.y20_c00139{bottom:120.520000pt;}
.y1f_c00139{bottom:157.186667pt;}
.y1e_c00139{bottom:177.853333pt;}
.y1d_c00139{bottom:214.520000pt;}
.y1c_c00139{bottom:235.186667pt;}
.y1b_c00139{bottom:271.853333pt;}
.y1a_c00139{bottom:292.520000pt;}
.y17_c00139{bottom:334.520000pt;}
.y16_c00139{bottom:358.520000pt;}
.y15_c00139{bottom:382.520000pt;}
.y14_c00139{bottom:406.520000pt;}
.y13_c00139{bottom:430.520000pt;}
.y12_c00139{bottom:473.186667pt;}
.y11_c00139{bottom:497.186667pt;}
.y10_c00139{bottom:521.186667pt;}
.yf_c00139{bottom:545.186667pt;}
.ye_c00139{bottom:569.186667pt;}
.yd_c00139{bottom:611.853333pt;}
.yc_c00139{bottom:635.853333pt;}
.yb_c00139{bottom:659.853333pt;}
.ya_c00139{bottom:683.853333pt;}
.y9_c00139{bottom:725.186667pt;}
.y8_c00139{bottom:786.520000pt;}
.y7_c00139{bottom:810.520000pt;}
.y6_c00139{bottom:834.520000pt;}
.y5_c00139{bottom:877.186667pt;}
.y4_c00139{bottom:901.186667pt;}
.y3_c00139{bottom:925.186667pt;}
.y2_c00139{bottom:949.186667pt;}
.y1_c00139{bottom:973.186667pt;}
.y18_c00139{bottom:1061.186667pt;}
.h8_c00139{height:24.427085pt;}
.h9_c00139{height:36.640625pt;}
.h7_c00139{height:39.296875pt;}
.h3_c00139{height:45.562500pt;}
.h5_c00139{height:45.812500pt;}
.h6_c00139{height:49.843750pt;}
.h4_c00139{height:50.896067pt;}
.h2_c00139{height:1121.333333pt;}
.h0_c00139{height:1122.520000pt;}
.h1_c00139{height:1122.666667pt;}
.w2_c00139{width:793.333333pt;}
.w0_c00139{width:793.720000pt;}
.w1_c00139{width:794.000000pt;}
.x0_c00139{left:0.000000pt;}
.x1_c00139{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4ec27bcc0c18d733c5070f51.woff2')format("woff");}.ff1_c00140{font-family:ff1_c00140;line-height:0.934082;font-style:normal;font-weight:normal;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_947aceb14cb28cd5122962fc.woff2')format("woff");}.ff2_c00140{font-family:ff2_c00140;line-height:0.975586;font-style:normal;font-weight:normal;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_60d280a78307e78e0672a3cd.woff2')format("woff");}.ff3_c00140{font-family:ff3_c00140;line-height:0.956543;font-style:normal;font-weight:normal;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_7d837dcacdfa3158f4c85490.woff2')format("woff");}.ff4_c00140{font-family:ff4_c00140;line-height:0.903320;font-style: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);}
.v2_c00140{vertical-align:-23.086200px;}
.v3_c00140{vertical-align:-15.000000px;}
.v0_c00140{vertical-align:0.000000px;}
.v1_c00140{vertical-align:23.086200px;}
.ls2_c00140{letter-spacing:-0.009600px;}
.ls1_c00140{letter-spacing:0.000000px;}
.ls0_c00140{letter-spacing:0.012000px;}
.sc__c00140{text-shadow:none;}
.sc0_c00140{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00140{-webkit-text-stroke:0px transparent;}
.sc0_c00140{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00140{word-spacing:-19.800000px;}
.ws3_c00140{word-spacing:-15.000000px;}
.ws1_c00140{word-spacing:-13.190400px;}
.ws2_c00140{word-spacing:-10.000001px;}
.ws4_c00140{word-spacing:0.000000px;}
._15_c00140{margin-left:-19.324002px;}
._12_c00140{margin-left:-10.231200px;}
._10_c00140{margin-left:-7.142400px;}
._4_c00140{margin-left:-4.521600px;}
._e_c00140{margin-left:-2.844000px;}
._2_c00140{margin-left:-1.699200px;}
._9_c00140{width:1.843200px;}
._0_c00140{width:3.628800px;}
._7_c00140{width:4.716000px;}
._b_c00140{width:6.048000px;}
._f_c00140{width:7.264800px;}
._c_c00140{width:8.308800px;}
._d_c00140{width:9.864000px;}
._11_c00140{width:11.260800px;}
._8_c00140{width:12.729600px;}
._1_c00140{width:13.838400px;}
._a_c00140{width:15.652800px;}
._6_c00140{width:17.460000px;}
._3_c00140{width:18.511200px;}
._5_c00140{width:21.967200px;}
._14_c00140{width:23.709600px;}
._13_c00140{width:24.962400px;}
._17_c00140{width:58.519200px;}
._16_c00140{width:60.280800px;}
._19_c00140{width:62.160000px;}
._1a_c00140{width:64.968000px;}
._18_c00140{width:66.645600px;}
.fc1_c00140{color:rgb(0,0,153);}
.fc0_c00140{color:rgb(0,0,0);}
.fs4_c00140{font-size:40.000002px;}
.fs2_c00140{font-size:48.000000px;}
.fs1_c00140{font-size:54.000000px;}
.fs3_c00140{font-size:60.000000px;}
.fs0_c00140{font-size:72.000000px;}
.y0_c00140{bottom:0.000000px;}
.y4_c00140{bottom:12.000000px;}
.y16_c00140{bottom:67.335000px;}
.y19_c00140{bottom:131.835000px;}
.y18_c00140{bottom:151.335000px;}
.y17_c00140{bottom:174.585000px;}
.y14_c00140{bottom:238.335000px;}
.y13_c00140{bottom:265.335000px;}
.y12_c00140{bottom:292.335000px;}
.y11_c00140{bottom:319.335000px;}
.y10_c00140{bottom:346.335000px;}
.yf_c00140{bottom:394.335000px;}
.ye_c00140{bottom:421.335000px;}
.yd_c00140{bottom:448.335000px;}
.yc_c00140{bottom:475.335000px;}
.yb_c00140{bottom:502.335000px;}
.ya_c00140{bottom:529.335000px;}
.y9_c00140{bottom:556.335000px;}
.y8_c00140{bottom:604.335000px;}
.y7_c00140{bottom:631.335000px;}
.y6_c00140{bottom:658.335000px;}
.y5_c00140{bottom:685.335000px;}
.y3_c00140{bottom:730.335000px;}
.y2_c00140{bottom:1067.835000px;}
.y1_c00140{bottom:1094.835000px;}
.y15_c00140{bottom:1193.835000px;}
.h8_c00140{height:27.421876px;}
.h9_c00140{height:41.132812px;}
.h5_c00140{height:41.633789px;}
.h7_c00140{height:44.121094px;}
.h3_c00140{height:51.257812px;}
.h6_c00140{height:57.258075px;}
.h4_c00140{height:306.000000px;}
.h2_c00140{height:1261.500000px;}
.h0_c00140{height:1262.835000px;}
.h1_c00140{height:1263.000000px;}
.w3_c00140{width:676.934850px;}
.w2_c00140{width:892.500000px;}
.w0_c00140{width:892.935000px;}
.w1_c00140{width:893.250000px;}
.x0_c00140{left:0.000000px;}
.x2_c00140{left:124.899840px;}
.x1_c00140{left:150.519750px;}
.x3_c00140{left:380.516100px;}
.x4_c00140{left:802.427700px;}
@media print{
.v2_c00140{vertical-align:-20.521067pt;}
.v3_c00140{vertical-align:-13.333333pt;}
.v0_c00140{vertical-align:0.000000pt;}
.v1_c00140{vertical-align:20.521067pt;}
.ls2_c00140{letter-spacing:-0.008533pt;}
.ls1_c00140{letter-spacing:0.000000pt;}
.ls0_c00140{letter-spacing:0.010667pt;}
.ws0_c00140{word-spacing:-17.600000pt;}
.ws3_c00140{word-spacing:-13.333333pt;}
.ws1_c00140{word-spacing:-11.724800pt;}
.ws2_c00140{word-spacing:-8.888889pt;}
.ws4_c00140{word-spacing:0.000000pt;}
._15_c00140{margin-left:-17.176891pt;}
._12_c00140{margin-left:-9.094400pt;}
._10_c00140{margin-left:-6.348800pt;}
._4_c00140{margin-left:-4.019200pt;}
._e_c00140{margin-left:-2.528000pt;}
._2_c00140{margin-left:-1.510400pt;}
._9_c00140{width:1.638400pt;}
._0_c00140{width:3.225600pt;}
._7_c00140{width:4.192000pt;}
._b_c00140{width:5.376000pt;}
._f_c00140{width:6.457600pt;}
._c_c00140{width:7.385600pt;}
._d_c00140{width:8.768000pt;}
._11_c00140{width:10.009600pt;}
._8_c00140{width:11.315200pt;}
._1_c00140{width:12.300800pt;}
._a_c00140{width:13.913600pt;}
._6_c00140{width:15.520000pt;}
._3_c00140{width:16.454400pt;}
._5_c00140{width:19.526400pt;}
._14_c00140{width:21.075200pt;}
._13_c00140{width:22.188800pt;}
._17_c00140{width:52.017067pt;}
._16_c00140{width:53.582933pt;}
._19_c00140{width:55.253333pt;}
._1a_c00140{width:57.749333pt;}
._18_c00140{width:59.240533pt;}
.fs4_c00140{font-size:35.555557pt;}
.fs2_c00140{font-size:42.666667pt;}
.fs1_c00140{font-size:48.000000pt;}
.fs3_c00140{font-size:53.333333pt;}
.fs0_c00140{font-size:64.000000pt;}
.y0_c00140{bottom:0.000000pt;}
.y4_c00140{bottom:10.666667pt;}
.y16_c00140{bottom:59.853333pt;}
.y19_c00140{bottom:117.186667pt;}
.y18_c00140{bottom:134.520000pt;}
.y17_c00140{bottom:155.186667pt;}
.y14_c00140{bottom:211.853333pt;}
.y13_c00140{bottom:235.853333pt;}
.y12_c00140{bottom:259.853333pt;}
.y11_c00140{bottom:283.853333pt;}
.y10_c00140{bottom:307.853333pt;}
.yf_c00140{bottom:350.520000pt;}
.ye_c00140{bottom:374.520000pt;}
.yd_c00140{bottom:398.520000pt;}
.yc_c00140{bottom:422.520000pt;}
.yb_c00140{bottom:446.520000pt;}
.ya_c00140{bottom:470.520000pt;}
.y9_c00140{bottom:494.520000pt;}
.y8_c00140{bottom:537.186667pt;}
.y7_c00140{bottom:561.186667pt;}
.y6_c00140{bottom:585.186667pt;}
.y5_c00140{bottom:609.186667pt;}
.y3_c00140{bottom:649.186667pt;}
.y2_c00140{bottom:949.186667pt;}
.y1_c00140{bottom:973.186667pt;}
.y15_c00140{bottom:1061.186667pt;}
.h8_c00140{height:24.375001pt;}
.h9_c00140{height:36.562500pt;}
.h5_c00140{height:37.007812pt;}
.h7_c00140{height:39.218750pt;}
.h3_c00140{height:45.562500pt;}
.h6_c00140{height:50.896067pt;}
.h4_c00140{height:272.000000pt;}
.h2_c00140{height:1121.333333pt;}
.h0_c00140{height:1122.520000pt;}
.h1_c00140{height:1122.666667pt;}
.w3_c00140{width:601.719867pt;}
.w2_c00140{width:793.333333pt;}
.w0_c00140{width:793.720000pt;}
.w1_c00140{width:794.000000pt;}
.x0_c00140{left:0.000000pt;}
.x2_c00140{left:111.022080pt;}
.x1_c00140{left:133.795333pt;}
.x3_c00140{left:338.236533pt;}
.x4_c00140{left:713.269067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ea5747832963298f1c600a84.woff2')format("woff");}.ff1_c00141{font-family:ff1_c00141;line-height:0.934082;font-style:normal;font-weight:normal;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_1fe07411005a7e5a74baf847.woff2')format("woff");}.ff2_c00141{font-family:ff2_c00141;line-height:0.975586;font-style:normal;font-weight:normal;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_a2ac78c50a371d7f0d5a6d06.woff2')format("woff");}.ff3_c00141{font-family:ff3_c00141;line-height:0.756836;font-style:normal;font-weight:normal;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_ae5634957a7ac518cf272d08.woff2')format("woff");}.ff4_c00141{font-family:ff4_c00141;line-height:1.155762;font-style:normal;font-weight:normal;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_6ee4800d8b34d599adf69854.woff2')format("woff");}.ff5_c00141{font-family:ff5_c00141;line-height:0.904785;font-style: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);}
.v2_c00141{vertical-align:-23.086200px;}
.v3_c00141{vertical-align:-15.000000px;}
.v0_c00141{vertical-align:0.000000px;}
.v1_c00141{vertical-align:23.086200px;}
.ls2_c00141{letter-spacing:-0.009600px;}
.ls1_c00141{letter-spacing:0.000000px;}
.ls3_c00141{letter-spacing:0.012000px;}
.ls0_c00141{letter-spacing:0.016200px;}
.sc__c00141{text-shadow:none;}
.sc0_c00141{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00141{-webkit-text-stroke:0px transparent;}
.sc0_c00141{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00141{word-spacing:-19.800000px;}
.ws2_c00141{word-spacing:-17.080200px;}
.ws4_c00141{word-spacing:-15.000000px;}
.ws1_c00141{word-spacing:-13.190400px;}
.ws3_c00141{word-spacing:-10.000001px;}
.ws5_c00141{word-spacing:0.000000px;}
._13_c00141{margin-left:-19.324002px;}
._e_c00141{margin-left:-10.188000px;}
._c_c00141{margin-left:-4.737600px;}
._a_c00141{margin-left:-3.326400px;}
._3_c00141{margin-left:-1.728000px;}
._0_c00141{width:1.584000px;}
._6_c00141{width:2.678400px;}
._d_c00141{width:3.772800px;}
._5_c00141{width:4.788000px;}
._1_c00141{width:5.824800px;}
._2_c00141{width:7.351200px;}
._4_c00141{width:9.144000px;}
._8_c00141{width:11.030400px;}
._7_c00141{width:12.384000px;}
._9_c00141{width:14.126400px;}
._b_c00141{width:15.717600px;}
._12_c00141{width:17.366400px;}
._f_c00141{width:21.672000px;}
._10_c00141{width:23.968800px;}
._11_c00141{width:25.660800px;}
._14_c00141{width:45.699600px;}
._15_c00141{width:48.402000px;}
._16_c00141{width:50.106000px;}
._18_c00141{width:51.680400px;}
._17_c00141{width:53.163600px;}
._19_c00141{width:55.695600px;}
._1a_c00141{width:56.814000px;}
._1c_c00141{width:58.410000px;}
._1b_c00141{width:61.700400px;}
._1d_c00141{width:63.129600px;}
.fc1_c00141{color:rgb(0,0,153);}
.fc0_c00141{color:rgb(0,0,0);}
.fs4_c00141{font-size:40.000002px;}
.fs1_c00141{font-size:48.000000px;}
.fs2_c00141{font-size:54.000000px;}
.fs3_c00141{font-size:60.000000px;}
.fs0_c00141{font-size:72.000000px;}
.y0_c00141{bottom:0.000000px;}
.yc_c00141{bottom:12.000000px;}
.yb_c00141{bottom:36.000000px;}
.ya_c00141{bottom:58.500000px;}
.y12_c00141{bottom:67.335000px;}
.y18_c00141{bottom:131.835000px;}
.y17_c00141{bottom:151.335000px;}
.y16_c00141{bottom:174.585000px;}
.y15_c00141{bottom:215.835000px;}
.y14_c00141{bottom:235.335000px;}
.y13_c00141{bottom:258.585000px;}
.y10_c00141{bottom:359.835000px;}
.yf_c00141{bottom:386.835000px;}
.ye_c00141{bottom:413.835000px;}
.yd_c00141{bottom:440.835000px;}
.y9_c00141{bottom:485.835000px;}
.y8_c00141{bottom:884.835000px;}
.y7_c00141{bottom:911.835000px;}
.y6_c00141{bottom:938.835000px;}
.y5_c00141{bottom:965.835000px;}
.y4_c00141{bottom:992.835000px;}
.y3_c00141{bottom:1019.835000px;}
.y2_c00141{bottom:1067.835000px;}
.y1_c00141{bottom:1094.835000px;}
.y11_c00141{bottom:1193.835000px;}
.h9_c00141{height:27.480470px;}
.ha_c00141{height:41.220703px;}
.h6_c00141{height:41.633789px;}
.h8_c00141{height:44.208984px;}
.h3_c00141{height:51.257812px;}
.h7_c00141{height:56.074219px;}
.h4_c00141{height:57.258075px;}
.h5_c00141{height:367.500000px;}
.h2_c00141{height:1261.500000px;}
.h0_c00141{height:1262.835000px;}
.h1_c00141{height:1263.000000px;}
.w3_c00141{width:676.934850px;}
.w2_c00141{width:892.500000px;}
.w0_c00141{width:892.935000px;}
.w1_c00141{width:893.250000px;}
.x0_c00141{left:0.000000px;}
.x2_c00141{left:7.668663px;}
.x1_c00141{left:65.480310px;}
@media print{
.v2_c00141{vertical-align:-20.521067pt;}
.v3_c00141{vertical-align:-13.333333pt;}
.v0_c00141{vertical-align:0.000000pt;}
.v1_c00141{vertical-align:20.521067pt;}
.ls2_c00141{letter-spacing:-0.008533pt;}
.ls1_c00141{letter-spacing:0.000000pt;}
.ls3_c00141{letter-spacing:0.010667pt;}
.ls0_c00141{letter-spacing:0.014400pt;}
.ws0_c00141{word-spacing:-17.600000pt;}
.ws2_c00141{word-spacing:-15.182400pt;}
.ws4_c00141{word-spacing:-13.333333pt;}
.ws1_c00141{word-spacing:-11.724800pt;}
.ws3_c00141{word-spacing:-8.888889pt;}
.ws5_c00141{word-spacing:0.000000pt;}
._13_c00141{margin-left:-17.176891pt;}
._e_c00141{margin-left:-9.056000pt;}
._c_c00141{margin-left:-4.211200pt;}
._a_c00141{margin-left:-2.956800pt;}
._3_c00141{margin-left:-1.536000pt;}
._0_c00141{width:1.408000pt;}
._6_c00141{width:2.380800pt;}
._d_c00141{width:3.353600pt;}
._5_c00141{width:4.256000pt;}
._1_c00141{width:5.177600pt;}
._2_c00141{width:6.534400pt;}
._4_c00141{width:8.128000pt;}
._8_c00141{width:9.804800pt;}
._7_c00141{width:11.008000pt;}
._9_c00141{width:12.556800pt;}
._b_c00141{width:13.971200pt;}
._12_c00141{width:15.436800pt;}
._f_c00141{width:19.264000pt;}
._10_c00141{width:21.305600pt;}
._11_c00141{width:22.809600pt;}
._14_c00141{width:40.621867pt;}
._15_c00141{width:43.024000pt;}
._16_c00141{width:44.538667pt;}
._18_c00141{width:45.938133pt;}
._17_c00141{width:47.256533pt;}
._19_c00141{width:49.507200pt;}
._1a_c00141{width:50.501333pt;}
._1c_c00141{width:51.920000pt;}
._1b_c00141{width:54.844800pt;}
._1d_c00141{width:56.115200pt;}
.fs4_c00141{font-size:35.555557pt;}
.fs1_c00141{font-size:42.666667pt;}
.fs2_c00141{font-size:48.000000pt;}
.fs3_c00141{font-size:53.333333pt;}
.fs0_c00141{font-size:64.000000pt;}
.y0_c00141{bottom:0.000000pt;}
.yc_c00141{bottom:10.666667pt;}
.yb_c00141{bottom:32.000000pt;}
.ya_c00141{bottom:52.000000pt;}
.y12_c00141{bottom:59.853333pt;}
.y18_c00141{bottom:117.186667pt;}
.y17_c00141{bottom:134.520000pt;}
.y16_c00141{bottom:155.186667pt;}
.y15_c00141{bottom:191.853333pt;}
.y14_c00141{bottom:209.186667pt;}
.y13_c00141{bottom:229.853333pt;}
.y10_c00141{bottom:319.853333pt;}
.yf_c00141{bottom:343.853333pt;}
.ye_c00141{bottom:367.853333pt;}
.yd_c00141{bottom:391.853333pt;}
.y9_c00141{bottom:431.853333pt;}
.y8_c00141{bottom:786.520000pt;}
.y7_c00141{bottom:810.520000pt;}
.y6_c00141{bottom:834.520000pt;}
.y5_c00141{bottom:858.520000pt;}
.y4_c00141{bottom:882.520000pt;}
.y3_c00141{bottom:906.520000pt;}
.y2_c00141{bottom:949.186667pt;}
.y1_c00141{bottom:973.186667pt;}
.y11_c00141{bottom:1061.186667pt;}
.h9_c00141{height:24.427085pt;}
.ha_c00141{height:36.640625pt;}
.h6_c00141{height:37.007812pt;}
.h8_c00141{height:39.296875pt;}
.h3_c00141{height:45.562500pt;}
.h7_c00141{height:49.843750pt;}
.h4_c00141{height:50.896067pt;}
.h5_c00141{height:326.666667pt;}
.h2_c00141{height:1121.333333pt;}
.h0_c00141{height:1122.520000pt;}
.h1_c00141{height:1122.666667pt;}
.w3_c00141{width:601.719867pt;}
.w2_c00141{width:793.333333pt;}
.w0_c00141{width:793.720000pt;}
.w1_c00141{width:794.000000pt;}
.x0_c00141{left:0.000000pt;}
.x2_c00141{left:6.816589pt;}
.x1_c00141{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_01faff31841db0a73cd1880c.woff2')format("woff");}.ff1_c00142{font-family:ff1_c00142;line-height:0.934082;font-style:normal;font-weight:normal;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_73d36bc4f47dff242289c57e.woff2')format("woff");}.ff2_c00142{font-family:ff2_c00142;line-height:0.975586;font-style:normal;font-weight:normal;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_0f9e1b1b84178cc1acd0f464.woff2')format("woff");}.ff3_c00142{font-family:ff3_c00142;line-height:0.956543;font-style:normal;font-weight:normal;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_e6ed647e5b1d49c717ec381a.woff2')format("woff");}.ff4_c00142{font-family:ff4_c00142;line-height:0.903320;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00142{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00142{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00142{vertical-align:-23.086200px;}
.v3_c00142{vertical-align:-15.000000px;}
.v0_c00142{vertical-align:0.000000px;}
.v1_c00142{vertical-align:23.086200px;}
.ls2_c00142{letter-spacing:-0.009600px;}
.ls1_c00142{letter-spacing:0.000000px;}
.ls0_c00142{letter-spacing:0.012000px;}
.sc__c00142{text-shadow:none;}
.sc0_c00142{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00142{-webkit-text-stroke:0px transparent;}
.sc0_c00142{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00142{word-spacing:-19.800000px;}
.ws3_c00142{word-spacing:-15.000000px;}
.ws0_c00142{word-spacing:-13.190400px;}
.ws2_c00142{word-spacing:-10.000001px;}
.ws4_c00142{word-spacing:0.000000px;}
._11_c00142{margin-left:-18.634800px;}
._b_c00142{margin-left:-6.494400px;}
._e_c00142{margin-left:-4.471200px;}
._5_c00142{margin-left:-2.865600px;}
._2_c00142{margin-left:-1.728000px;}
._1_c00142{width:1.756800px;}
._0_c00142{width:3.398400px;}
._3_c00142{width:4.802400px;}
._a_c00142{width:6.451200px;}
._12_c00142{width:7.552800px;}
._10_c00142{width:8.569998px;}
._f_c00142{width:9.921600px;}
._4_c00142{width:13.363200px;}
._8_c00142{width:14.774400px;}
._9_c00142{width:16.452000px;}
._7_c00142{width:18.187200px;}
._6_c00142{width:21.067200px;}
._d_c00142{width:23.515200px;}
._c_c00142{width:25.322400px;}
._13_c00142{width:56.617200px;}
._15_c00142{width:58.410000px;}
._14_c00142{width:61.263600px;}
._17_c00142{width:62.899200px;}
._16_c00142{width:64.862400px;}
.fc1_c00142{color:rgb(0,0,153);}
.fc0_c00142{color:rgb(0,0,0);}
.fs4_c00142{font-size:40.000002px;}
.fs1_c00142{font-size:48.000000px;}
.fs2_c00142{font-size:54.000000px;}
.fs3_c00142{font-size:60.000000px;}
.fs0_c00142{font-size:72.000000px;}
.y0_c00142{bottom:0.000000px;}
.y8_c00142{bottom:12.000000px;}
.y12_c00142{bottom:67.335000px;}
.y18_c00142{bottom:131.835000px;}
.y17_c00142{bottom:151.335000px;}
.y16_c00142{bottom:174.585000px;}
.y15_c00142{bottom:215.835000px;}
.y14_c00142{bottom:235.335000px;}
.y13_c00142{bottom:258.585000px;}
.y10_c00142{bottom:337.335000px;}
.yf_c00142{bottom:364.335000px;}
.ye_c00142{bottom:412.335000px;}
.yd_c00142{bottom:439.335000px;}
.yc_c00142{bottom:487.335000px;}
.yb_c00142{bottom:514.335000px;}
.ya_c00142{bottom:541.335000px;}
.y9_c00142{bottom:568.335000px;}
.y7_c00142{bottom:613.335000px;}
.y6_c00142{bottom:959.835000px;}
.y5_c00142{bottom:986.835000px;}
.y4_c00142{bottom:1013.835000px;}
.y3_c00142{bottom:1040.835000px;}
.y2_c00142{bottom:1067.835000px;}
.y1_c00142{bottom:1094.835000px;}
.y11_c00142{bottom:1193.835000px;}
.h8_c00142{height:27.421876px;}
.h9_c00142{height:41.132812px;}
.h6_c00142{height:41.633789px;}
.h7_c00142{height:44.121094px;}
.h3_c00142{height:51.257812px;}
.h4_c00142{height:57.258075px;}
.h5_c00142{height:315.000000px;}
.h2_c00142{height:1261.500000px;}
.h0_c00142{height:1262.835000px;}
.h1_c00142{height:1263.000000px;}
.w3_c00142{width:676.934850px;}
.w2_c00142{width:892.500000px;}
.w0_c00142{width:892.935000px;}
.w1_c00142{width:893.250000px;}
.x0_c00142{left:0.000000px;}
.x2_c00142{left:32.736630px;}
.x1_c00142{left:150.519750px;}
.x3_c00142{left:380.516100px;}
.x4_c00142{left:802.427700px;}
@media print{
.v2_c00142{vertical-align:-20.521067pt;}
.v3_c00142{vertical-align:-13.333333pt;}
.v0_c00142{vertical-align:0.000000pt;}
.v1_c00142{vertical-align:20.521067pt;}
.ls2_c00142{letter-spacing:-0.008533pt;}
.ls1_c00142{letter-spacing:0.000000pt;}
.ls0_c00142{letter-spacing:0.010667pt;}
.ws1_c00142{word-spacing:-17.600000pt;}
.ws3_c00142{word-spacing:-13.333333pt;}
.ws0_c00142{word-spacing:-11.724800pt;}
.ws2_c00142{word-spacing:-8.888889pt;}
.ws4_c00142{word-spacing:0.000000pt;}
._11_c00142{margin-left:-16.564267pt;}
._b_c00142{margin-left:-5.772800pt;}
._e_c00142{margin-left:-3.974400pt;}
._5_c00142{margin-left:-2.547200pt;}
._2_c00142{margin-left:-1.536000pt;}
._1_c00142{width:1.561600pt;}
._0_c00142{width:3.020800pt;}
._3_c00142{width:4.268800pt;}
._a_c00142{width:5.734400pt;}
._12_c00142{width:6.713600pt;}
._10_c00142{width:7.617776pt;}
._f_c00142{width:8.819200pt;}
._4_c00142{width:11.878400pt;}
._8_c00142{width:13.132800pt;}
._9_c00142{width:14.624000pt;}
._7_c00142{width:16.166400pt;}
._6_c00142{width:18.726400pt;}
._d_c00142{width:20.902400pt;}
._c_c00142{width:22.508800pt;}
._13_c00142{width:50.326400pt;}
._15_c00142{width:51.920000pt;}
._14_c00142{width:54.456533pt;}
._17_c00142{width:55.910400pt;}
._16_c00142{width:57.655467pt;}
.fs4_c00142{font-size:35.555557pt;}
.fs1_c00142{font-size:42.666667pt;}
.fs2_c00142{font-size:48.000000pt;}
.fs3_c00142{font-size:53.333333pt;}
.fs0_c00142{font-size:64.000000pt;}
.y0_c00142{bottom:0.000000pt;}
.y8_c00142{bottom:10.666667pt;}
.y12_c00142{bottom:59.853333pt;}
.y18_c00142{bottom:117.186667pt;}
.y17_c00142{bottom:134.520000pt;}
.y16_c00142{bottom:155.186667pt;}
.y15_c00142{bottom:191.853333pt;}
.y14_c00142{bottom:209.186667pt;}
.y13_c00142{bottom:229.853333pt;}
.y10_c00142{bottom:299.853333pt;}
.yf_c00142{bottom:323.853333pt;}
.ye_c00142{bottom:366.520000pt;}
.yd_c00142{bottom:390.520000pt;}
.yc_c00142{bottom:433.186667pt;}
.yb_c00142{bottom:457.186667pt;}
.ya_c00142{bottom:481.186667pt;}
.y9_c00142{bottom:505.186667pt;}
.y7_c00142{bottom:545.186667pt;}
.y6_c00142{bottom:853.186667pt;}
.y5_c00142{bottom:877.186667pt;}
.y4_c00142{bottom:901.186667pt;}
.y3_c00142{bottom:925.186667pt;}
.y2_c00142{bottom:949.186667pt;}
.y1_c00142{bottom:973.186667pt;}
.y11_c00142{bottom:1061.186667pt;}
.h8_c00142{height:24.375001pt;}
.h9_c00142{height:36.562500pt;}
.h6_c00142{height:37.007812pt;}
.h7_c00142{height:39.218750pt;}
.h3_c00142{height:45.562500pt;}
.h4_c00142{height:50.896067pt;}
.h5_c00142{height:280.000000pt;}
.h2_c00142{height:1121.333333pt;}
.h0_c00142{height:1122.520000pt;}
.h1_c00142{height:1122.666667pt;}
.w3_c00142{width:601.719867pt;}
.w2_c00142{width:793.333333pt;}
.w0_c00142{width:793.720000pt;}
.w1_c00142{width:794.000000pt;}
.x0_c00142{left:0.000000pt;}
.x2_c00142{left:29.099227pt;}
.x1_c00142{left:133.795333pt;}
.x3_c00142{left:338.236533pt;}
.x4_c00142{left:713.269067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8014f057d1f62dcebb6f79dd.woff2')format("woff");}.ff1_c00143{font-family:ff1_c00143;line-height:0.934082;font-style:normal;font-weight:normal;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_c2a33d28273cdc86ecdc78ec.woff2')format("woff");}.ff2_c00143{font-family:ff2_c00143;line-height:0.975586;font-style:normal;font-weight:normal;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_02171fc0db6f9a744e50197e.woff2')format("woff");}.ff3_c00143{font-family:ff3_c00143;line-height:0.755859;font-style:normal;font-weight:normal;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_ae0e1d2048da7ebc01d7a1b7.woff2')format("woff");}.ff4_c00143{font-family:ff4_c00143;line-height:1.155762;font-style:normal;font-weight:normal;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_8ae34c5b5e3ea2b71913bcff.woff2')format("woff");}.ff5_c00143{font-family:ff5_c00143;line-height:0.903320;font-style: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);}
.v2_c00143{vertical-align:-23.086200px;}
.v3_c00143{vertical-align:-15.000000px;}
.v0_c00143{vertical-align:0.000000px;}
.v1_c00143{vertical-align:23.086200px;}
.ls2_c00143{letter-spacing:-0.009600px;}
.ls1_c00143{letter-spacing:0.000000px;}
.ls3_c00143{letter-spacing:0.012000px;}
.ls0_c00143{letter-spacing:2.116800px;}
.sc__c00143{text-shadow:none;}
.sc0_c00143{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00143{-webkit-text-stroke:0px transparent;}
.sc0_c00143{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00143{word-spacing:-19.800000px;}
.ws3_c00143{word-spacing:-15.000000px;}
.ws1_c00143{word-spacing:-13.190400px;}
.ws2_c00143{word-spacing:-10.000001px;}
.ws4_c00143{word-spacing:0.000000px;}
._19_c00143{margin-left:-19.488000px;}
._8_c00143{margin-left:-4.896000px;}
._13_c00143{margin-left:-3.268800px;}
._1_c00143{margin-left:-2.181600px;}
._10_c00143{margin-left:-1.152000px;}
._3_c00143{width:1.778400px;}
._5_c00143{width:2.966400px;}
._7_c00143{width:4.579200px;}
._11_c00143{width:5.702400px;}
._6_c00143{width:6.717600px;}
._4_c00143{width:7.992000px;}
._0_c00143{width:9.784800px;}
._2_c00143{width:11.980800px;}
._17_c00143{width:13.392000px;}
._16_c00143{width:14.508000px;}
._15_c00143{width:15.652800px;}
._f_c00143{width:16.884000px;}
._d_c00143{width:18.698400px;}
._e_c00143{width:20.908800px;}
._18_c00143{width:24.082398px;}
._12_c00143{width:29.412000px;}
._c_c00143{width:30.837600px;}
._b_c00143{width:32.904000px;}
._a_c00143{width:35.013600px;}
._14_c00143{width:36.288000px;}
._9_c00143{width:37.728000px;}
._1a_c00143{width:56.871600px;}
._1c_c00143{width:58.686000px;}
._1d_c00143{width:59.790000px;}
._1f_c00143{width:60.920760px;}
._1b_c00143{width:61.942800px;}
._1e_c00143{width:63.606000px;}
.fc1_c00143{color:rgb(0,0,153);}
.fc0_c00143{color:rgb(0,0,0);}
.fs4_c00143{font-size:40.000002px;}
.fs1_c00143{font-size:48.000000px;}
.fs2_c00143{font-size:54.000000px;}
.fs3_c00143{font-size:60.000000px;}
.fs0_c00143{font-size:72.000000px;}
.y0_c00143{bottom:0.000000px;}
.y6_c00143{bottom:12.000000px;}
.yb_c00143{bottom:67.335000px;}
.ye_c00143{bottom:131.835000px;}
.yd_c00143{bottom:151.335000px;}
.yc_c00143{bottom:174.585000px;}
.y9_c00143{bottom:238.335000px;}
.y8_c00143{bottom:265.335000px;}
.y7_c00143{bottom:292.335000px;}
.y5_c00143{bottom:337.335000px;}
.y4_c00143{bottom:1013.835000px;}
.y3_c00143{bottom:1040.835000px;}
.y2_c00143{bottom:1067.835000px;}
.y1_c00143{bottom:1094.835000px;}
.ya_c00143{bottom:1193.835000px;}
.h9_c00143{height:27.421876px;}
.ha_c00143{height:41.132812px;}
.h6_c00143{height:41.633789px;}
.h8_c00143{height:44.208984px;}
.h3_c00143{height:51.257812px;}
.h7_c00143{height:56.074219px;}
.h4_c00143{height:57.258075px;}
.h5_c00143{height:645.000000px;}
.h2_c00143{height:1261.500000px;}
.h0_c00143{height:1262.835000px;}
.h1_c00143{height:1263.000000px;}
.w3_c00143{width:676.934850px;}
.w2_c00143{width:892.500000px;}
.w0_c00143{width:892.935000px;}
.w1_c00143{width:893.250000px;}
.x0_c00143{left:0.000000px;}
.x1_c00143{left:65.480310px;}
.x2_c00143{left:222.712200px;}
@media print{
.v2_c00143{vertical-align:-20.521067pt;}
.v3_c00143{vertical-align:-13.333333pt;}
.v0_c00143{vertical-align:0.000000pt;}
.v1_c00143{vertical-align:20.521067pt;}
.ls2_c00143{letter-spacing:-0.008533pt;}
.ls1_c00143{letter-spacing:0.000000pt;}
.ls3_c00143{letter-spacing:0.010667pt;}
.ls0_c00143{letter-spacing:1.881600pt;}
.ws0_c00143{word-spacing:-17.600000pt;}
.ws3_c00143{word-spacing:-13.333333pt;}
.ws1_c00143{word-spacing:-11.724800pt;}
.ws2_c00143{word-spacing:-8.888889pt;}
.ws4_c00143{word-spacing:0.000000pt;}
._19_c00143{margin-left:-17.322667pt;}
._8_c00143{margin-left:-4.352000pt;}
._13_c00143{margin-left:-2.905600pt;}
._1_c00143{margin-left:-1.939200pt;}
._10_c00143{margin-left:-1.024000pt;}
._3_c00143{width:1.580800pt;}
._5_c00143{width:2.636800pt;}
._7_c00143{width:4.070400pt;}
._11_c00143{width:5.068800pt;}
._6_c00143{width:5.971200pt;}
._4_c00143{width:7.104000pt;}
._0_c00143{width:8.697600pt;}
._2_c00143{width:10.649600pt;}
._17_c00143{width:11.904000pt;}
._16_c00143{width:12.896000pt;}
._15_c00143{width:13.913600pt;}
._f_c00143{width:15.008000pt;}
._d_c00143{width:16.620800pt;}
._e_c00143{width:18.585600pt;}
._18_c00143{width:21.406576pt;}
._12_c00143{width:26.144000pt;}
._c_c00143{width:27.411200pt;}
._b_c00143{width:29.248000pt;}
._a_c00143{width:31.123200pt;}
._14_c00143{width:32.256000pt;}
._9_c00143{width:33.536000pt;}
._1a_c00143{width:50.552533pt;}
._1c_c00143{width:52.165333pt;}
._1d_c00143{width:53.146667pt;}
._1f_c00143{width:54.151787pt;}
._1b_c00143{width:55.060267pt;}
._1e_c00143{width:56.538667pt;}
.fs4_c00143{font-size:35.555557pt;}
.fs1_c00143{font-size:42.666667pt;}
.fs2_c00143{font-size:48.000000pt;}
.fs3_c00143{font-size:53.333333pt;}
.fs0_c00143{font-size:64.000000pt;}
.y0_c00143{bottom:0.000000pt;}
.y6_c00143{bottom:10.666667pt;}
.yb_c00143{bottom:59.853333pt;}
.ye_c00143{bottom:117.186667pt;}
.yd_c00143{bottom:134.520000pt;}
.yc_c00143{bottom:155.186667pt;}
.y9_c00143{bottom:211.853333pt;}
.y8_c00143{bottom:235.853333pt;}
.y7_c00143{bottom:259.853333pt;}
.y5_c00143{bottom:299.853333pt;}
.y4_c00143{bottom:901.186667pt;}
.y3_c00143{bottom:925.186667pt;}
.y2_c00143{bottom:949.186667pt;}
.y1_c00143{bottom:973.186667pt;}
.ya_c00143{bottom:1061.186667pt;}
.h9_c00143{height:24.375001pt;}
.ha_c00143{height:36.562500pt;}
.h6_c00143{height:37.007812pt;}
.h8_c00143{height:39.296875pt;}
.h3_c00143{height:45.562500pt;}
.h7_c00143{height:49.843750pt;}
.h4_c00143{height:50.896067pt;}
.h5_c00143{height:573.333333pt;}
.h2_c00143{height:1121.333333pt;}
.h0_c00143{height:1122.520000pt;}
.h1_c00143{height:1122.666667pt;}
.w3_c00143{width:601.719867pt;}
.w2_c00143{width:793.333333pt;}
.w0_c00143{width:793.720000pt;}
.w1_c00143{width:794.000000pt;}
.x0_c00143{left:0.000000pt;}
.x1_c00143{left:58.204720pt;}
.x2_c00143{left:197.966400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4d73d5c12dc4c91516ac309c.woff2')format("woff");}.ff1_c00144{font-family:ff1_c00144;line-height:0.934082;font-style:normal;font-weight:normal;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_b9e392538eac4c6ac190a3bb.woff2')format("woff");}.ff2_c00144{font-family:ff2_c00144;line-height:0.963867;font-style:normal;font-weight:normal;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_9dbd7a0fc8c986d5e9732c67.woff2')format("woff");}.ff3_c00144{font-family:ff3_c00144;line-height:0.956543;font-style:normal;font-weight:normal;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_6fde1b21ab310d5c0dedc277.woff2')format("woff");}.ff4_c00144{font-family:ff4_c00144;line-height:0.904297;font-style: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);}
.v2_c00144{vertical-align:-23.086200px;}
.v3_c00144{vertical-align:-15.000000px;}
.v0_c00144{vertical-align:0.000000px;}
.v1_c00144{vertical-align:23.086200px;}
.ls2_c00144{letter-spacing:-0.009600px;}
.ls1_c00144{letter-spacing:0.000000px;}
.ls0_c00144{letter-spacing:0.012000px;}
.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:-15.000000px;}
.ws0_c00144{word-spacing:-13.190400px;}
.ws1_c00144{word-spacing:-10.000001px;}
.ws3_c00144{word-spacing:0.000000px;}
._12_c00144{margin-left:-19.237602px;}
._f_c00144{margin-left:-7.236000px;}
._6_c00144{margin-left:-5.251800px;}
._3_c00144{margin-left:-3.693600px;}
._1_c00144{margin-left:-1.965600px;}
._4_c00144{width:1.555200px;}
._0_c00144{width:2.757600px;}
._2_c00144{width:4.485600px;}
._5_c00144{width:5.973600px;}
._e_c00144{width:8.128800px;}
._c_c00144{width:9.201600px;}
._d_c00144{width:10.965600px;}
._9_c00144{width:12.744000px;}
._b_c00144{width:14.421600px;}
._a_c00144{width:15.573600px;}
._7_c00144{width:16.617600px;}
._8_c00144{width:18.021600px;}
._11_c00144{width:20.944800px;}
._10_c00144{width:24.069600px;}
._13_c00144{width:59.366400px;}
._15_c00144{width:62.160000px;}
._16_c00144{width:64.089600px;}
._14_c00144{width:67.399800px;}
.fc1_c00144{color:rgb(0,0,153);}
.fc0_c00144{color:rgb(0,0,0);}
.fs4_c00144{font-size:40.000002px;}
.fs1_c00144{font-size:48.000000px;}
.fs2_c00144{font-size:54.000000px;}
.fs3_c00144{font-size:60.000000px;}
.fs0_c00144{font-size:72.000000px;}
.y0_c00144{bottom:0.000000px;}
.y4_c00144{bottom:12.000000px;}
.y12_c00144{bottom:67.335000px;}
.y1a_c00144{bottom:131.835000px;}
.y19_c00144{bottom:151.335000px;}
.y18_c00144{bottom:174.585000px;}
.y17_c00144{bottom:215.835000px;}
.y16_c00144{bottom:239.085000px;}
.y15_c00144{bottom:280.335000px;}
.y14_c00144{bottom:299.835000px;}
.y13_c00144{bottom:323.085000px;}
.y10_c00144{bottom:386.835000px;}
.yf_c00144{bottom:413.835000px;}
.ye_c00144{bottom:440.835000px;}
.yd_c00144{bottom:467.835000px;}
.yc_c00144{bottom:494.835000px;}
.yb_c00144{bottom:521.835000px;}
.ya_c00144{bottom:569.835000px;}
.y9_c00144{bottom:596.835000px;}
.y8_c00144{bottom:644.835000px;}
.y7_c00144{bottom:671.835000px;}
.y6_c00144{bottom:698.835000px;}
.y5_c00144{bottom:725.835000px;}
.y3_c00144{bottom:766.335000px;}
.y2_c00144{bottom:1067.835000px;}
.y1_c00144{bottom:1094.835000px;}
.y11_c00144{bottom:1193.835000px;}
.h8_c00144{height:27.421876px;}
.h9_c00144{height:41.132812px;}
.h6_c00144{height:41.633789px;}
.h7_c00144{height:44.121094px;}
.h3_c00144{height:51.257812px;}
.h4_c00144{height:57.258075px;}
.h5_c00144{height:270.000000px;}
.h2_c00144{height:1261.500000px;}
.h0_c00144{height:1262.835000px;}
.h1_c00144{height:1263.000000px;}
.w3_c00144{width:676.935000px;}
.w2_c00144{width:892.500000px;}
.w0_c00144{width:892.935000px;}
.w1_c00144{width:893.250000px;}
.x0_c00144{left:0.000000px;}
.x2_c00144{left:137.256180px;}
.x1_c00144{left:150.519750px;}
.x3_c00144{left:380.516100px;}
.x4_c00144{left:802.427700px;}
@media print{
.v2_c00144{vertical-align:-20.521067pt;}
.v3_c00144{vertical-align:-13.333333pt;}
.v0_c00144{vertical-align:0.000000pt;}
.v1_c00144{vertical-align:20.521067pt;}
.ls2_c00144{letter-spacing:-0.008533pt;}
.ls1_c00144{letter-spacing:0.000000pt;}
.ls0_c00144{letter-spacing:0.010667pt;}
.ws2_c00144{word-spacing:-13.333333pt;}
.ws0_c00144{word-spacing:-11.724800pt;}
.ws1_c00144{word-spacing:-8.888889pt;}
.ws3_c00144{word-spacing:0.000000pt;}
._12_c00144{margin-left:-17.100091pt;}
._f_c00144{margin-left:-6.432000pt;}
._6_c00144{margin-left:-4.668267pt;}
._3_c00144{margin-left:-3.283200pt;}
._1_c00144{margin-left:-1.747200pt;}
._4_c00144{width:1.382400pt;}
._0_c00144{width:2.451200pt;}
._2_c00144{width:3.987200pt;}
._5_c00144{width:5.309867pt;}
._e_c00144{width:7.225600pt;}
._c_c00144{width:8.179200pt;}
._d_c00144{width:9.747200pt;}
._9_c00144{width:11.328000pt;}
._b_c00144{width:12.819200pt;}
._a_c00144{width:13.843200pt;}
._7_c00144{width:14.771200pt;}
._8_c00144{width:16.019200pt;}
._11_c00144{width:18.617600pt;}
._10_c00144{width:21.395200pt;}
._13_c00144{width:52.770133pt;}
._15_c00144{width:55.253333pt;}
._16_c00144{width:56.968533pt;}
._14_c00144{width:59.910933pt;}
.fs4_c00144{font-size:35.555557pt;}
.fs1_c00144{font-size:42.666667pt;}
.fs2_c00144{font-size:48.000000pt;}
.fs3_c00144{font-size:53.333333pt;}
.fs0_c00144{font-size:64.000000pt;}
.y0_c00144{bottom:0.000000pt;}
.y4_c00144{bottom:10.666667pt;}
.y12_c00144{bottom:59.853333pt;}
.y1a_c00144{bottom:117.186667pt;}
.y19_c00144{bottom:134.520000pt;}
.y18_c00144{bottom:155.186667pt;}
.y17_c00144{bottom:191.853333pt;}
.y16_c00144{bottom:212.520000pt;}
.y15_c00144{bottom:249.186667pt;}
.y14_c00144{bottom:266.520000pt;}
.y13_c00144{bottom:287.186667pt;}
.y10_c00144{bottom:343.853333pt;}
.yf_c00144{bottom:367.853333pt;}
.ye_c00144{bottom:391.853333pt;}
.yd_c00144{bottom:415.853333pt;}
.yc_c00144{bottom:439.853333pt;}
.yb_c00144{bottom:463.853333pt;}
.ya_c00144{bottom:506.520000pt;}
.y9_c00144{bottom:530.520000pt;}
.y8_c00144{bottom:573.186667pt;}
.y7_c00144{bottom:597.186667pt;}
.y6_c00144{bottom:621.186667pt;}
.y5_c00144{bottom:645.186667pt;}
.y3_c00144{bottom:681.186667pt;}
.y2_c00144{bottom:949.186667pt;}
.y1_c00144{bottom:973.186667pt;}
.y11_c00144{bottom:1061.186667pt;}
.h8_c00144{height:24.375001pt;}
.h9_c00144{height:36.562500pt;}
.h6_c00144{height:37.007812pt;}
.h7_c00144{height:39.218750pt;}
.h3_c00144{height:45.562500pt;}
.h4_c00144{height:50.896067pt;}
.h5_c00144{height:240.000000pt;}
.h2_c00144{height:1121.333333pt;}
.h0_c00144{height:1122.520000pt;}
.h1_c00144{height:1122.666667pt;}
.w3_c00144{width:601.720000pt;}
.w2_c00144{width:793.333333pt;}
.w0_c00144{width:793.720000pt;}
.w1_c00144{width:794.000000pt;}
.x0_c00144{left:0.000000pt;}
.x2_c00144{left:122.005493pt;}
.x1_c00144{left:133.795333pt;}
.x3_c00144{left:338.236533pt;}
.x4_c00144{left:713.269067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8fb7adecd91c0fc16cc2dc33.woff2')format("woff");}.ff1_c00145{font-family:ff1_c00145;line-height:0.934082;font-style:normal;font-weight:normal;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_4b802d25bd69575e41e08699.woff2')format("woff");}.ff2_c00145{font-family:ff2_c00145;line-height:0.963867;font-style:normal;font-weight:normal;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_ff5fe425bc22a86a3cf543a3.woff2')format("woff");}.ff3_c00145{font-family:ff3_c00145;line-height:0.925293;font-style:normal;font-weight:normal;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_134692f53aececb5f3472a7c.woff2')format("woff");}.ff4_c00145{font-family:ff4_c00145;line-height:0.755859;font-style:normal;font-weight:normal;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_09343da4467a2a266b96f3d6.woff2')format("woff");}.ff5_c00145{font-family:ff5_c00145;line-height:1.155762;font-style:normal;font-weight: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_c00145;src:url('chunks/assets/font_93b9e65943b63b23ff5c6a72.woff2')format("woff");}.ff6_c00145{font-family:ff6_c00145;line-height:0.903320;font-style: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);}
.v2_c00145{vertical-align:-15.000000px;}
.v0_c00145{vertical-align:0.000000px;}
.v1_c00145{vertical-align:23.086200px;}
.ls2_c00145{letter-spacing:-0.009600px;}
.ls3_c00145{letter-spacing:-0.007200px;}
.ls1_c00145{letter-spacing:0.000000px;}
.ls4_c00145{letter-spacing:0.012000px;}
.ls0_c00145{letter-spacing:0.014400px;}
.sc__c00145{text-shadow:none;}
.sc0_c00145{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00145{-webkit-text-stroke:0px transparent;}
.sc0_c00145{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00145{word-spacing:-19.800000px;}
.ws3_c00145{word-spacing:-15.000000px;}
.ws1_c00145{word-spacing:-13.190400px;}
.ws2_c00145{word-spacing:-10.000001px;}
.ws4_c00145{word-spacing:0.000000px;}
._11_c00145{margin-left:-19.360002px;}
._b_c00145{margin-left:-6.962400px;}
._12_c00145{margin-left:-5.588400px;}
._5_c00145{margin-left:-3.888000px;}
._3_c00145{margin-left:-2.649600px;}
._1_c00145{margin-left:-1.404000px;}
._0_c00145{width:1.944000px;}
._2_c00145{width:3.477600px;}
._4_c00145{width:4.629600px;}
._6_c00145{width:6.285600px;}
._f_c00145{width:8.164800px;}
._e_c00145{width:9.576000px;}
._10_c00145{width:11.253600px;}
._d_c00145{width:15.055200px;}
._c_c00145{width:16.351200px;}
._a_c00145{width:17.827200px;}
._8_c00145{width:21.448800px;}
._9_c00145{width:22.766400px;}
._7_c00145{width:27.352800px;}
._14_c00145{width:58.670400px;}
._13_c00145{width:60.180000px;}
._16_c00145{width:62.160000px;}
._17_c00145{width:64.773600px;}
._15_c00145{width:67.712400px;}
.fc1_c00145{color:rgb(0,0,153);}
.fc0_c00145{color:rgb(0,0,0);}
.fs4_c00145{font-size:40.000002px;}
.fs2_c00145{font-size:48.000000px;}
.fs1_c00145{font-size:54.000000px;}
.fs3_c00145{font-size:60.000000px;}
.fs0_c00145{font-size:72.000000px;}
.y0_c00145{bottom:0.000000px;}
.y6_c00145{bottom:10.500000px;}
.y5_c00145{bottom:34.500000px;}
.y13_c00145{bottom:67.335000px;}
.y16_c00145{bottom:131.835000px;}
.y15_c00145{bottom:151.335000px;}
.y14_c00145{bottom:174.585000px;}
.y11_c00145{bottom:223.335000px;}
.y10_c00145{bottom:250.335000px;}
.yf_c00145{bottom:277.335000px;}
.ye_c00145{bottom:304.335000px;}
.yd_c00145{bottom:331.335000px;}
.yc_c00145{bottom:379.335000px;}
.yb_c00145{bottom:406.335000px;}
.ya_c00145{bottom:433.335000px;}
.y9_c00145{bottom:460.335000px;}
.y8_c00145{bottom:508.335000px;}
.y7_c00145{bottom:535.335000px;}
.y4_c00145{bottom:580.335000px;}
.y3_c00145{bottom:1040.835000px;}
.y2_c00145{bottom:1067.835000px;}
.y1_c00145{bottom:1094.835000px;}
.y12_c00145{bottom:1193.835000px;}
.h9_c00145{height:27.421876px;}
.ha_c00145{height:41.132812px;}
.h5_c00145{height:41.633789px;}
.h8_c00145{height:44.208984px;}
.h3_c00145{height:51.257812px;}
.h7_c00145{height:56.074219px;}
.h6_c00145{height:57.258075px;}
.h4_c00145{height:429.000000px;}
.h2_c00145{height:1261.500000px;}
.h0_c00145{height:1262.835000px;}
.h1_c00145{height:1263.000000px;}
.w3_c00145{width:676.934850px;}
.w2_c00145{width:892.500000px;}
.w0_c00145{width:892.935000px;}
.w1_c00145{width:893.250000px;}
.x0_c00145{left:0.000000px;}
.x1_c00145{left:65.480310px;}
.x2_c00145{left:83.803275px;}
.x3_c00145{left:242.092050px;}
@media print{
.v2_c00145{vertical-align:-13.333333pt;}
.v0_c00145{vertical-align:0.000000pt;}
.v1_c00145{vertical-align:20.521067pt;}
.ls2_c00145{letter-spacing:-0.008533pt;}
.ls3_c00145{letter-spacing:-0.006400pt;}
.ls1_c00145{letter-spacing:0.000000pt;}
.ls4_c00145{letter-spacing:0.010667pt;}
.ls0_c00145{letter-spacing:0.012800pt;}
.ws0_c00145{word-spacing:-17.600000pt;}
.ws3_c00145{word-spacing:-13.333333pt;}
.ws1_c00145{word-spacing:-11.724800pt;}
.ws2_c00145{word-spacing:-8.888889pt;}
.ws4_c00145{word-spacing:0.000000pt;}
._11_c00145{margin-left:-17.208891pt;}
._b_c00145{margin-left:-6.188800pt;}
._12_c00145{margin-left:-4.967467pt;}
._5_c00145{margin-left:-3.456000pt;}
._3_c00145{margin-left:-2.355200pt;}
._1_c00145{margin-left:-1.248000pt;}
._0_c00145{width:1.728000pt;}
._2_c00145{width:3.091200pt;}
._4_c00145{width:4.115200pt;}
._6_c00145{width:5.587200pt;}
._f_c00145{width:7.257600pt;}
._e_c00145{width:8.512000pt;}
._10_c00145{width:10.003200pt;}
._d_c00145{width:13.382400pt;}
._c_c00145{width:14.534400pt;}
._a_c00145{width:15.846400pt;}
._8_c00145{width:19.065600pt;}
._9_c00145{width:20.236800pt;}
._7_c00145{width:24.313600pt;}
._14_c00145{width:52.151467pt;}
._13_c00145{width:53.493333pt;}
._16_c00145{width:55.253333pt;}
._17_c00145{width:57.576533pt;}
._15_c00145{width:60.188800pt;}
.fs4_c00145{font-size:35.555557pt;}
.fs2_c00145{font-size:42.666667pt;}
.fs1_c00145{font-size:48.000000pt;}
.fs3_c00145{font-size:53.333333pt;}
.fs0_c00145{font-size:64.000000pt;}
.y0_c00145{bottom:0.000000pt;}
.y6_c00145{bottom:9.333333pt;}
.y5_c00145{bottom:30.666667pt;}
.y13_c00145{bottom:59.853333pt;}
.y16_c00145{bottom:117.186667pt;}
.y15_c00145{bottom:134.520000pt;}
.y14_c00145{bottom:155.186667pt;}
.y11_c00145{bottom:198.520000pt;}
.y10_c00145{bottom:222.520000pt;}
.yf_c00145{bottom:246.520000pt;}
.ye_c00145{bottom:270.520000pt;}
.yd_c00145{bottom:294.520000pt;}
.yc_c00145{bottom:337.186667pt;}
.yb_c00145{bottom:361.186667pt;}
.ya_c00145{bottom:385.186667pt;}
.y9_c00145{bottom:409.186667pt;}
.y8_c00145{bottom:451.853333pt;}
.y7_c00145{bottom:475.853333pt;}
.y4_c00145{bottom:515.853333pt;}
.y3_c00145{bottom:925.186667pt;}
.y2_c00145{bottom:949.186667pt;}
.y1_c00145{bottom:973.186667pt;}
.y12_c00145{bottom:1061.186667pt;}
.h9_c00145{height:24.375001pt;}
.ha_c00145{height:36.562500pt;}
.h5_c00145{height:37.007812pt;}
.h8_c00145{height:39.296875pt;}
.h3_c00145{height:45.562500pt;}
.h7_c00145{height:49.843750pt;}
.h6_c00145{height:50.896067pt;}
.h4_c00145{height:381.333333pt;}
.h2_c00145{height:1121.333333pt;}
.h0_c00145{height:1122.520000pt;}
.h1_c00145{height:1122.666667pt;}
.w3_c00145{width:601.719867pt;}
.w2_c00145{width:793.333333pt;}
.w0_c00145{width:793.720000pt;}
.w1_c00145{width:794.000000pt;}
.x0_c00145{left:0.000000pt;}
.x1_c00145{left:58.204720pt;}
.x2_c00145{left:74.491800pt;}
.x3_c00145{left:215.192933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_93a0032aba9602910f025c93.woff2')format("woff");}.ff1_c00146{font-family:ff1_c00146;line-height:0.976074;font-style:normal;font-weight:normal;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_a856df8a76add13483e7a5ba.woff2')format("woff");}.ff2_c00146{font-family:ff2_c00146;line-height:0.933105;font-style:normal;font-weight:normal;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_3b91450f7343b50c16f1e4f6.woff2')format("woff");}.ff3_c00146{font-family:ff3_c00146;line-height:0.925293;font-style:normal;font-weight:normal;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_68c65db92c1b683ccc75ca9a.woff2')format("woff");}.ff4_c00146{font-family:ff4_c00146;line-height:0.956543;font-style:normal;font-weight:normal;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_0ff553f99bc0a2691a0db2cb.woff2')format("woff");}.ff5_c00146{font-family:ff5_c00146;line-height:0.904785;font-style: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);}
.v2_c00146{vertical-align:-23.086200px;}
.v3_c00146{vertical-align:-15.000000px;}
.v0_c00146{vertical-align:0.000000px;}
.v1_c00146{vertical-align:23.086200px;}
.ls3_c00146{letter-spacing:-0.009600px;}
.ls2_c00146{letter-spacing:0.000000px;}
.ls1_c00146{letter-spacing:0.012000px;}
.ls0_c00146{letter-spacing:0.014400px;}
.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;}
}
.ws2_c00146{word-spacing:-15.000000px;}
.ws0_c00146{word-spacing:-13.190400px;}
.ws1_c00146{word-spacing:-10.000001px;}
.ws3_c00146{word-spacing:0.000000px;}
._c_c00146{margin-left:-19.488000px;}
._12_c00146{margin-left:-5.646000px;}
._8_c00146{margin-left:-3.988800px;}
._1_c00146{margin-left:-2.059200px;}
._7_c00146{margin-left:-1.051200px;}
._5_c00146{width:1.317600px;}
._3_c00146{width:2.959200px;}
._a_c00146{width:4.392000px;}
._4_c00146{width:5.788800px;}
._6_c00146{width:7.336800px;}
._0_c00146{width:8.683200px;}
._2_c00146{width:10.771200px;}
._9_c00146{width:11.836800px;}
._b_c00146{width:23.182398px;}
._d_c00146{width:55.414800px;}
._e_c00146{width:57.080400px;}
._10_c00146{width:58.410000px;}
._11_c00146{width:60.475200px;}
._f_c00146{width:62.362800px;}
._13_c00146{width:63.996000px;}
.fc1_c00146{color:rgb(0,0,153);}
.fc0_c00146{color:rgb(0,0,0);}
.fs4_c00146{font-size:40.000002px;}
.fs2_c00146{font-size:48.000000px;}
.fs0_c00146{font-size:54.000000px;}
.fs3_c00146{font-size:60.000000px;}
.fs1_c00146{font-size:72.000000px;}
.y0_c00146{bottom:0.000000px;}
.yc_c00146{bottom:10.500000px;}
.y2_c00146{bottom:12.000000px;}
.yb_c00146{bottom:36.000000px;}
.ye_c00146{bottom:67.335000px;}
.y11_c00146{bottom:131.835000px;}
.y10_c00146{bottom:151.335000px;}
.yf_c00146{bottom:174.585000px;}
.ya_c00146{bottom:218.835000px;}
.y9_c00146{bottom:568.335000px;}
.y8_c00146{bottom:595.335000px;}
.y7_c00146{bottom:622.335000px;}
.y6_c00146{bottom:649.335000px;}
.y5_c00146{bottom:676.335000px;}
.y4_c00146{bottom:703.335000px;}
.y3_c00146{bottom:730.335000px;}
.y1_c00146{bottom:775.335000px;}
.yd_c00146{bottom:1193.835000px;}
.h9_c00146{height:27.480470px;}
.ha_c00146{height:41.220703px;}
.h3_c00146{height:42.292969px;}
.h8_c00146{height:44.121094px;}
.h5_c00146{height:51.187500px;}
.h6_c00146{height:57.211200px;}
.h7_c00146{height:318.000000px;}
.h2_c00146{height:337.500000px;}
.h4_c00146{height:1261.500000px;}
.h0_c00146{height:1262.835000px;}
.h1_c00146{height:1263.000000px;}
.w2_c00146{width:490.500000px;}
.w4_c00146{width:676.935000px;}
.w3_c00146{width:892.500000px;}
.w0_c00146{width:892.935000px;}
.w1_c00146{width:893.250000px;}
.x0_c00146{left:0.000000px;}
.x4_c00146{left:33.883620px;}
.x2_c00146{left:133.446540px;}
.x3_c00146{left:150.519750px;}
.x1_c00146{left:243.000000px;}
.x5_c00146{left:380.516100px;}
.x6_c00146{left:802.427700px;}
@media print{
.v2_c00146{vertical-align:-20.521067pt;}
.v3_c00146{vertical-align:-13.333333pt;}
.v0_c00146{vertical-align:0.000000pt;}
.v1_c00146{vertical-align:20.521067pt;}
.ls3_c00146{letter-spacing:-0.008533pt;}
.ls2_c00146{letter-spacing:0.000000pt;}
.ls1_c00146{letter-spacing:0.010667pt;}
.ls0_c00146{letter-spacing:0.012800pt;}
.ws2_c00146{word-spacing:-13.333333pt;}
.ws0_c00146{word-spacing:-11.724800pt;}
.ws1_c00146{word-spacing:-8.888889pt;}
.ws3_c00146{word-spacing:0.000000pt;}
._c_c00146{margin-left:-17.322667pt;}
._12_c00146{margin-left:-5.018667pt;}
._8_c00146{margin-left:-3.545600pt;}
._1_c00146{margin-left:-1.830400pt;}
._7_c00146{margin-left:-0.934400pt;}
._5_c00146{width:1.171200pt;}
._3_c00146{width:2.630400pt;}
._a_c00146{width:3.904000pt;}
._4_c00146{width:5.145600pt;}
._6_c00146{width:6.521600pt;}
._0_c00146{width:7.718400pt;}
._2_c00146{width:9.574400pt;}
._9_c00146{width:10.521600pt;}
._b_c00146{width:20.606576pt;}
._d_c00146{width:49.257600pt;}
._e_c00146{width:50.738133pt;}
._10_c00146{width:51.920000pt;}
._11_c00146{width:53.755733pt;}
._f_c00146{width:55.433600pt;}
._13_c00146{width:56.885333pt;}
.fs4_c00146{font-size:35.555557pt;}
.fs2_c00146{font-size:42.666667pt;}
.fs0_c00146{font-size:48.000000pt;}
.fs3_c00146{font-size:53.333333pt;}
.fs1_c00146{font-size:64.000000pt;}
.y0_c00146{bottom:0.000000pt;}
.yc_c00146{bottom:9.333333pt;}
.y2_c00146{bottom:10.666667pt;}
.yb_c00146{bottom:32.000000pt;}
.ye_c00146{bottom:59.853333pt;}
.y11_c00146{bottom:117.186667pt;}
.y10_c00146{bottom:134.520000pt;}
.yf_c00146{bottom:155.186667pt;}
.ya_c00146{bottom:194.520000pt;}
.y9_c00146{bottom:505.186667pt;}
.y8_c00146{bottom:529.186667pt;}
.y7_c00146{bottom:553.186667pt;}
.y6_c00146{bottom:577.186667pt;}
.y5_c00146{bottom:601.186667pt;}
.y4_c00146{bottom:625.186667pt;}
.y3_c00146{bottom:649.186667pt;}
.y1_c00146{bottom:689.186667pt;}
.yd_c00146{bottom:1061.186667pt;}
.h9_c00146{height:24.427085pt;}
.ha_c00146{height:36.640625pt;}
.h3_c00146{height:37.593750pt;}
.h8_c00146{height:39.218750pt;}
.h5_c00146{height:45.500000pt;}
.h6_c00146{height:50.854400pt;}
.h7_c00146{height:282.666667pt;}
.h2_c00146{height:300.000000pt;}
.h4_c00146{height:1121.333333pt;}
.h0_c00146{height:1122.520000pt;}
.h1_c00146{height:1122.666667pt;}
.w2_c00146{width:436.000000pt;}
.w4_c00146{width:601.720000pt;}
.w3_c00146{width:793.333333pt;}
.w0_c00146{width:793.720000pt;}
.w1_c00146{width:794.000000pt;}
.x0_c00146{left:0.000000pt;}
.x4_c00146{left:30.118773pt;}
.x2_c00146{left:118.619147pt;}
.x3_c00146{left:133.795333pt;}
.x1_c00146{left:216.000000pt;}
.x5_c00146{left:338.236533pt;}
.x6_c00146{left:713.269067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ea3fe93ada9632d54b501595.woff2')format("woff");}.ff1_c00147{font-family:ff1_c00147;line-height:0.934082;font-style:normal;font-weight:normal;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_45da8bf620404deaccc3d950.woff2')format("woff");}.ff2_c00147{font-family:ff2_c00147;line-height:0.987793;font-style:normal;font-weight:normal;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_d324cc95b4f505e4d3bc31c1.woff2')format("woff");}.ff3_c00147{font-family:ff3_c00147;line-height:0.755859;font-style:normal;font-weight:normal;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_d3d18798e42fa8b545443180.woff2')format("woff");}.ff4_c00147{font-family:ff4_c00147;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00147;src:url('chunks/assets/font_ba0f86a08bf63a1c9d75bf91.woff2')format("woff");}.ff5_c00147{font-family:ff5_c00147;line-height:0.904785;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00147{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00147{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00147{vertical-align:-15.000000px;}
.v0_c00147{vertical-align:0.000000px;}
.v1_c00147{vertical-align:23.086200px;}
.ls1_c00147{letter-spacing:-0.009600px;}
.ls0_c00147{letter-spacing:0.000000px;}
.ls2_c00147{letter-spacing:0.012000px;}
.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;}
}
.ws2_c00147{word-spacing:-15.000000px;}
.ws0_c00147{word-spacing:-13.190400px;}
.ws1_c00147{word-spacing:-10.000001px;}
.ws3_c00147{word-spacing:0.000000px;}
._14_c00147{margin-left:-20.080002px;}
._f_c00147{margin-left:-8.380800px;}
._13_c00147{margin-left:-6.350400px;}
._9_c00147{margin-left:-4.730400px;}
._3_c00147{margin-left:-2.800800px;}
._1_c00147{margin-left:-1.634400px;}
._b_c00147{width:1.029600px;}
._7_c00147{width:2.476800px;}
._5_c00147{width:3.592800px;}
._6_c00147{width:4.874400px;}
._8_c00147{width:6.026400px;}
._c_c00147{width:7.113600px;}
._0_c00147{width:8.474400px;}
._2_c00147{width:10.137600px;}
._4_c00147{width:11.340000px;}
._a_c00147{width:13.226400px;}
._11_c00147{width:14.256000px;}
._12_c00147{width:16.236000px;}
._10_c00147{width:20.815200px;}
._d_c00147{width:24.775200px;}
._e_c00147{width:26.704800px;}
._15_c00147{width:55.897200px;}
._16_c00147{width:57.368400px;}
._18_c00147{width:58.410000px;}
._17_c00147{width:61.174800px;}
._1a_c00147{width:63.158400px;}
._19_c00147{width:64.742400px;}
.fc1_c00147{color:rgb(0,0,153);}
.fc0_c00147{color:rgb(0,0,0);}
.fs4_c00147{font-size:40.000002px;}
.fs2_c00147{font-size:48.000000px;}
.fs1_c00147{font-size:54.000000px;}
.fs3_c00147{font-size:60.000000px;}
.fs0_c00147{font-size:72.000000px;}
.y0_c00147{bottom:0.000000px;}
.y6_c00147{bottom:10.500000px;}
.y5_c00147{bottom:36.000000px;}
.y10_c00147{bottom:67.335000px;}
.y13_c00147{bottom:131.835000px;}
.y12_c00147{bottom:151.335000px;}
.y11_c00147{bottom:174.585000px;}
.ye_c00147{bottom:253.335000px;}
.yd_c00147{bottom:280.335000px;}
.yc_c00147{bottom:307.335000px;}
.yb_c00147{bottom:334.335000px;}
.ya_c00147{bottom:361.335000px;}
.y9_c00147{bottom:388.335000px;}
.y8_c00147{bottom:415.335000px;}
.y7_c00147{bottom:442.335000px;}
.y4_c00147{bottom:487.335000px;}
.y3_c00147{bottom:1040.835000px;}
.y2_c00147{bottom:1067.835000px;}
.y1_c00147{bottom:1094.835000px;}
.yf_c00147{bottom:1193.835000px;}
.h9_c00147{height:27.480470px;}
.ha_c00147{height:41.220703px;}
.h5_c00147{height:42.292969px;}
.h8_c00147{height:44.208984px;}
.h3_c00147{height:51.257812px;}
.h7_c00147{height:56.074219px;}
.h6_c00147{height:57.258075px;}
.h4_c00147{height:522.000000px;}
.h2_c00147{height:1261.500000px;}
.h0_c00147{height:1262.835000px;}
.h1_c00147{height:1263.000000px;}
.w3_c00147{width:676.934850px;}
.w2_c00147{width:892.500000px;}
.w0_c00147{width:892.935000px;}
.w1_c00147{width:893.250000px;}
.x0_c00147{left:0.000000px;}
.x2_c00147{left:33.194760px;}
.x1_c00147{left:65.480310px;}
.x3_c00147{left:242.092050px;}
@media print{
.v2_c00147{vertical-align:-13.333333pt;}
.v0_c00147{vertical-align:0.000000pt;}
.v1_c00147{vertical-align:20.521067pt;}
.ls1_c00147{letter-spacing:-0.008533pt;}
.ls0_c00147{letter-spacing:0.000000pt;}
.ls2_c00147{letter-spacing:0.010667pt;}
.ws2_c00147{word-spacing:-13.333333pt;}
.ws0_c00147{word-spacing:-11.724800pt;}
.ws1_c00147{word-spacing:-8.888889pt;}
.ws3_c00147{word-spacing:0.000000pt;}
._14_c00147{margin-left:-17.848891pt;}
._f_c00147{margin-left:-7.449600pt;}
._13_c00147{margin-left:-5.644800pt;}
._9_c00147{margin-left:-4.204800pt;}
._3_c00147{margin-left:-2.489600pt;}
._1_c00147{margin-left:-1.452800pt;}
._b_c00147{width:0.915200pt;}
._7_c00147{width:2.201600pt;}
._5_c00147{width:3.193600pt;}
._6_c00147{width:4.332800pt;}
._8_c00147{width:5.356800pt;}
._c_c00147{width:6.323200pt;}
._0_c00147{width:7.532800pt;}
._2_c00147{width:9.011200pt;}
._4_c00147{width:10.080000pt;}
._a_c00147{width:11.756800pt;}
._11_c00147{width:12.672000pt;}
._12_c00147{width:14.432000pt;}
._10_c00147{width:18.502400pt;}
._d_c00147{width:22.022400pt;}
._e_c00147{width:23.737600pt;}
._15_c00147{width:49.686400pt;}
._16_c00147{width:50.994133pt;}
._18_c00147{width:51.920000pt;}
._17_c00147{width:54.377600pt;}
._1a_c00147{width:56.140800pt;}
._19_c00147{width:57.548800pt;}
.fs4_c00147{font-size:35.555557pt;}
.fs2_c00147{font-size:42.666667pt;}
.fs1_c00147{font-size:48.000000pt;}
.fs3_c00147{font-size:53.333333pt;}
.fs0_c00147{font-size:64.000000pt;}
.y0_c00147{bottom:0.000000pt;}
.y6_c00147{bottom:9.333333pt;}
.y5_c00147{bottom:32.000000pt;}
.y10_c00147{bottom:59.853333pt;}
.y13_c00147{bottom:117.186667pt;}
.y12_c00147{bottom:134.520000pt;}
.y11_c00147{bottom:155.186667pt;}
.ye_c00147{bottom:225.186667pt;}
.yd_c00147{bottom:249.186667pt;}
.yc_c00147{bottom:273.186667pt;}
.yb_c00147{bottom:297.186667pt;}
.ya_c00147{bottom:321.186667pt;}
.y9_c00147{bottom:345.186667pt;}
.y8_c00147{bottom:369.186667pt;}
.y7_c00147{bottom:393.186667pt;}
.y4_c00147{bottom:433.186667pt;}
.y3_c00147{bottom:925.186667pt;}
.y2_c00147{bottom:949.186667pt;}
.y1_c00147{bottom:973.186667pt;}
.yf_c00147{bottom:1061.186667pt;}
.h9_c00147{height:24.427085pt;}
.ha_c00147{height:36.640625pt;}
.h5_c00147{height:37.593750pt;}
.h8_c00147{height:39.296875pt;}
.h3_c00147{height:45.562500pt;}
.h7_c00147{height:49.843750pt;}
.h6_c00147{height:50.896067pt;}
.h4_c00147{height:464.000000pt;}
.h2_c00147{height:1121.333333pt;}
.h0_c00147{height:1122.520000pt;}
.h1_c00147{height:1122.666667pt;}
.w3_c00147{width:601.719867pt;}
.w2_c00147{width:793.333333pt;}
.w0_c00147{width:793.720000pt;}
.w1_c00147{width:794.000000pt;}
.x0_c00147{left:0.000000pt;}
.x2_c00147{left:29.506453pt;}
.x1_c00147{left:58.204720pt;}
.x3_c00147{left:215.192933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_142a25dc176d8023a9798568.woff2')format("woff");}.ff1_c00148{font-family:ff1_c00148;line-height:0.963867;font-style:normal;font-weight:normal;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_8f778aecd7eb905d2fa59f38.woff2')format("woff");}.ff2_c00148{font-family:ff2_c00148;line-height:0.933105;font-style:normal;font-weight:normal;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_992a7c16458abfc0ead9a9f2.woff2')format("woff");}.ff3_c00148{font-family:ff3_c00148;line-height:0.956543;font-style:normal;font-weight:normal;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_9aeed814a6f655110b175f10.woff2')format("woff");}.ff4_c00148{font-family:ff4_c00148;line-height:0.904785;font-style: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);}
.v2_c00148{vertical-align:-15.000000px;}
.v0_c00148{vertical-align:0.000000px;}
.v1_c00148{vertical-align:23.086200px;}
.ls2_c00148{letter-spacing:-0.009600px;}
.ls1_c00148{letter-spacing:0.000000px;}
.ls0_c00148{letter-spacing:0.012000px;}
.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:-15.000000px;}
.ws0_c00148{word-spacing:-13.190400px;}
.ws1_c00148{word-spacing:-10.000001px;}
.ws3_c00148{word-spacing:0.000000px;}
._14_c00148{margin-left:-19.488000px;}
._1_c00148{margin-left:-7.200000px;}
._19_c00148{margin-left:-5.508000px;}
._a_c00148{margin-left:-4.384800px;}
._2_c00148{margin-left:-2.836800px;}
._4_c00148{margin-left:-1.569600px;}
._0_c00148{width:1.252800px;}
._5_c00148{width:2.808000px;}
._3_c00148{width:4.068000px;}
._6_c00148{width:5.104800px;}
._e_c00148{width:6.120000px;}
._9_c00148{width:7.905600px;}
._f_c00148{width:9.295200px;}
._8_c00148{width:10.728000px;}
._7_c00148{width:11.973600px;}
._10_c00148{width:13.665600px;}
._d_c00148{width:15.112800px;}
._b_c00148{width:16.408800px;}
._c_c00148{width:17.978400px;}
._11_c00148{width:21.024000px;}
._12_c00148{width:22.622400px;}
._13_c00148{width:24.607998px;}
._15_c00148{width:41.820000px;}
._16_c00148{width:44.652000px;}
._17_c00148{width:46.245600px;}
._18_c00148{width:47.440800px;}
._1b_c00148{width:49.116600px;}
._1a_c00148{width:50.196000px;}
.fc1_c00148{color:rgb(0,0,153);}
.fc0_c00148{color:rgb(0,0,0);}
.fs4_c00148{font-size:40.000002px;}
.fs2_c00148{font-size:48.000000px;}
.fs0_c00148{font-size:54.000000px;}
.fs3_c00148{font-size:60.000000px;}
.fs1_c00148{font-size:72.000000px;}
.y0_c00148{bottom:0.000000px;}
.y4_c00148{bottom:12.000000px;}
.y3_c00148{bottom:37.500000px;}
.y2_c00148{bottom:60.000000px;}
.y12_c00148{bottom:67.335000px;}
.y15_c00148{bottom:131.835000px;}
.y14_c00148{bottom:151.335000px;}
.y13_c00148{bottom:174.585000px;}
.y10_c00148{bottom:284.835000px;}
.yf_c00148{bottom:311.835000px;}
.ye_c00148{bottom:338.835000px;}
.yd_c00148{bottom:386.835000px;}
.yc_c00148{bottom:413.835000px;}
.yb_c00148{bottom:461.835000px;}
.ya_c00148{bottom:488.835000px;}
.y9_c00148{bottom:515.835000px;}
.y8_c00148{bottom:542.835000px;}
.y7_c00148{bottom:569.835000px;}
.y6_c00148{bottom:596.835000px;}
.y5_c00148{bottom:623.835000px;}
.y1_c00148{bottom:664.335000px;}
.y11_c00148{bottom:1193.835000px;}
.h8_c00148{height:27.480470px;}
.h9_c00148{height:41.220703px;}
.h3_c00148{height:41.633789px;}
.h7_c00148{height:44.121094px;}
.h5_c00148{height:51.187500px;}
.h6_c00148{height:57.211200px;}
.h2_c00148{height:448.500000px;}
.h4_c00148{height:1261.500000px;}
.h0_c00148{height:1262.835000px;}
.h1_c00148{height:1263.000000px;}
.w2_c00148{width:676.935000px;}
.w3_c00148{width:892.500000px;}
.w0_c00148{width:892.935000px;}
.w1_c00148{width:893.250000px;}
.x0_c00148{left:0.000000px;}
.x2_c00148{left:19.721145px;}
.x3_c00148{left:140.472975px;}
.x1_c00148{left:150.000000px;}
.x4_c00148{left:242.092050px;}
.x5_c00148{left:380.516100px;}
.x6_c00148{left:802.427700px;}
@media print{
.v2_c00148{vertical-align:-13.333333pt;}
.v0_c00148{vertical-align:0.000000pt;}
.v1_c00148{vertical-align:20.521067pt;}
.ls2_c00148{letter-spacing:-0.008533pt;}
.ls1_c00148{letter-spacing:0.000000pt;}
.ls0_c00148{letter-spacing:0.010667pt;}
.ws2_c00148{word-spacing:-13.333333pt;}
.ws0_c00148{word-spacing:-11.724800pt;}
.ws1_c00148{word-spacing:-8.888889pt;}
.ws3_c00148{word-spacing:0.000000pt;}
._14_c00148{margin-left:-17.322667pt;}
._1_c00148{margin-left:-6.400000pt;}
._19_c00148{margin-left:-4.896000pt;}
._a_c00148{margin-left:-3.897600pt;}
._2_c00148{margin-left:-2.521600pt;}
._4_c00148{margin-left:-1.395200pt;}
._0_c00148{width:1.113600pt;}
._5_c00148{width:2.496000pt;}
._3_c00148{width:3.616000pt;}
._6_c00148{width:4.537600pt;}
._e_c00148{width:5.440000pt;}
._9_c00148{width:7.027200pt;}
._f_c00148{width:8.262400pt;}
._8_c00148{width:9.536000pt;}
._7_c00148{width:10.643200pt;}
._10_c00148{width:12.147200pt;}
._d_c00148{width:13.433600pt;}
._b_c00148{width:14.585600pt;}
._c_c00148{width:15.980800pt;}
._11_c00148{width:18.688000pt;}
._12_c00148{width:20.108800pt;}
._13_c00148{width:21.873776pt;}
._15_c00148{width:37.173333pt;}
._16_c00148{width:39.690667pt;}
._17_c00148{width:41.107200pt;}
._18_c00148{width:42.169600pt;}
._1b_c00148{width:43.659200pt;}
._1a_c00148{width:44.618667pt;}
.fs4_c00148{font-size:35.555557pt;}
.fs2_c00148{font-size:42.666667pt;}
.fs0_c00148{font-size:48.000000pt;}
.fs3_c00148{font-size:53.333333pt;}
.fs1_c00148{font-size:64.000000pt;}
.y0_c00148{bottom:0.000000pt;}
.y4_c00148{bottom:10.666667pt;}
.y3_c00148{bottom:33.333333pt;}
.y2_c00148{bottom:53.333333pt;}
.y12_c00148{bottom:59.853333pt;}
.y15_c00148{bottom:117.186667pt;}
.y14_c00148{bottom:134.520000pt;}
.y13_c00148{bottom:155.186667pt;}
.y10_c00148{bottom:253.186667pt;}
.yf_c00148{bottom:277.186667pt;}
.ye_c00148{bottom:301.186667pt;}
.yd_c00148{bottom:343.853333pt;}
.yc_c00148{bottom:367.853333pt;}
.yb_c00148{bottom:410.520000pt;}
.ya_c00148{bottom:434.520000pt;}
.y9_c00148{bottom:458.520000pt;}
.y8_c00148{bottom:482.520000pt;}
.y7_c00148{bottom:506.520000pt;}
.y6_c00148{bottom:530.520000pt;}
.y5_c00148{bottom:554.520000pt;}
.y1_c00148{bottom:590.520000pt;}
.y11_c00148{bottom:1061.186667pt;}
.h8_c00148{height:24.427085pt;}
.h9_c00148{height:36.640625pt;}
.h3_c00148{height:37.007812pt;}
.h7_c00148{height:39.218750pt;}
.h5_c00148{height:45.500000pt;}
.h6_c00148{height:50.854400pt;}
.h2_c00148{height:398.666667pt;}
.h4_c00148{height:1121.333333pt;}
.h0_c00148{height:1122.520000pt;}
.h1_c00148{height:1122.666667pt;}
.w2_c00148{width:601.720000pt;}
.w3_c00148{width:793.333333pt;}
.w0_c00148{width:793.720000pt;}
.w1_c00148{width:794.000000pt;}
.x0_c00148{left:0.000000pt;}
.x2_c00148{left:17.529907pt;}
.x3_c00148{left:124.864867pt;}
.x1_c00148{left:133.333333pt;}
.x4_c00148{left:215.192933pt;}
.x5_c00148{left:338.236533pt;}
.x6_c00148{left:713.269067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bceb97a128d91b9af31e1e7b.woff2')format("woff");}.ff1_c00149{font-family:ff1_c00149;line-height:0.934082;font-style:normal;font-weight:normal;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_022f5a4885d49bd2663958cd.woff2')format("woff");}.ff2_c00149{font-family:ff2_c00149;line-height:0.963867;font-style:normal;font-weight:normal;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_371a7e5937c12aa29236176c.woff2')format("woff");}.ff3_c00149{font-family:ff3_c00149;line-height:0.936035;font-style:normal;font-weight:normal;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_648f0539b95053f94f4e8f57.woff2')format("woff");}.ff4_c00149{font-family:ff4_c00149;line-height:0.755859;font-style:normal;font-weight:normal;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_5108f4a9b4c68fe3ae8d6f74.woff2')format("woff");}.ff5_c00149{font-family:ff5_c00149;line-height:1.155762;font-style:normal;font-weight: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_c00149;src:url('chunks/assets/font_79d45a0a27f6bc0c9c587499.woff2')format("woff");}.ff6_c00149{font-family:ff6_c00149;line-height:0.904785;font-style: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);}
.v2_c00149{vertical-align:-15.000000px;}
.v0_c00149{vertical-align:0.000000px;}
.v1_c00149{vertical-align:23.086200px;}
.ls1_c00149{letter-spacing:-0.009600px;}
.ls0_c00149{letter-spacing:0.000000px;}
.ls2_c00149{letter-spacing:0.007200px;}
.ls3_c00149{letter-spacing:0.012000px;}
.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:-15.000000px;}
.ws0_c00149{word-spacing:-13.190400px;}
.ws1_c00149{word-spacing:-10.000001px;}
.ws3_c00149{word-spacing:0.000000px;}
._12_c00149{margin-left:-18.834402px;}
._19_c00149{margin-left:-16.878000px;}
._d_c00149{margin-left:-9.201600px;}
._5_c00149{margin-left:-4.888800px;}
._b_c00149{margin-left:-2.815200px;}
._1_c00149{margin-left:-1.533600px;}
._3_c00149{width:1.080000px;}
._0_c00149{width:2.325600px;}
._4_c00149{width:3.391200px;}
._2_c00149{width:4.420800px;}
._8_c00149{width:6.148800px;}
._7_c00149{width:7.214400px;}
._1a_c00149{width:8.223600px;}
._6_c00149{width:9.525600px;}
._a_c00149{width:11.052000px;}
._c_c00149{width:12.340800px;}
._9_c00149{width:14.464800px;}
._e_c00149{width:16.027200px;}
._11_c00149{width:18.331200px;}
._18_c00149{width:20.008398px;}
._10_c00149{width:21.247200px;}
._f_c00149{width:23.220000px;}
._14_c00149{width:58.756800px;}
._13_c00149{width:59.798400px;}
._16_c00149{width:62.160000px;}
._17_c00149{width:64.939200px;}
._15_c00149{width:67.012800px;}
.fc1_c00149{color:rgb(0,0,153);}
.fc0_c00149{color:rgb(0,0,0);}
.fs4_c00149{font-size:40.000002px;}
.fs1_c00149{font-size:48.000000px;}
.fs2_c00149{font-size:54.000000px;}
.fs3_c00149{font-size:60.000000px;}
.fs0_c00149{font-size:72.000000px;}
.y0_c00149{bottom:0.000000px;}
.y4_c00149{bottom:12.000000px;}
.y13_c00149{bottom:67.335000px;}
.y1a_c00149{bottom:131.835000px;}
.y19_c00149{bottom:155.085000px;}
.y18_c00149{bottom:196.335000px;}
.y17_c00149{bottom:219.585000px;}
.y16_c00149{bottom:260.835000px;}
.y15_c00149{bottom:280.335000px;}
.y14_c00149{bottom:303.585000px;}
.y11_c00149{bottom:349.335000px;}
.y10_c00149{bottom:376.335000px;}
.yf_c00149{bottom:403.335000px;}
.ye_c00149{bottom:430.335000px;}
.yd_c00149{bottom:457.335000px;}
.yc_c00149{bottom:484.335000px;}
.yb_c00149{bottom:532.335000px;}
.ya_c00149{bottom:559.335000px;}
.y9_c00149{bottom:607.335000px;}
.y8_c00149{bottom:634.335000px;}
.y7_c00149{bottom:661.335000px;}
.y6_c00149{bottom:688.335000px;}
.y5_c00149{bottom:734.835000px;}
.y3_c00149{bottom:800.835000px;}
.y2_c00149{bottom:1067.835000px;}
.y1_c00149{bottom:1094.835000px;}
.y12_c00149{bottom:1193.835000px;}
.ha_c00149{height:27.480470px;}
.hb_c00149{height:41.220703px;}
.h6_c00149{height:41.633789px;}
.h9_c00149{height:44.208984px;}
.h3_c00149{height:51.257812px;}
.h7_c00149{height:51.539062px;}
.h8_c00149{height:56.074219px;}
.h4_c00149{height:57.258075px;}
.h5_c00149{height:235.500000px;}
.h2_c00149{height:1261.500000px;}
.h0_c00149{height:1262.835000px;}
.h1_c00149{height:1263.000000px;}
.w3_c00149{width:676.934850px;}
.w2_c00149{width:892.500000px;}
.w0_c00149{width:892.935000px;}
.w1_c00149{width:893.250000px;}
.x0_c00149{left:0.000000px;}
.x1_c00149{left:65.480310px;}
.x2_c00149{left:153.083100px;}
@media print{
.v2_c00149{vertical-align:-13.333333pt;}
.v0_c00149{vertical-align:0.000000pt;}
.v1_c00149{vertical-align:20.521067pt;}
.ls1_c00149{letter-spacing:-0.008533pt;}
.ls0_c00149{letter-spacing:0.000000pt;}
.ls2_c00149{letter-spacing:0.006400pt;}
.ls3_c00149{letter-spacing:0.010667pt;}
.ws2_c00149{word-spacing:-13.333333pt;}
.ws0_c00149{word-spacing:-11.724800pt;}
.ws1_c00149{word-spacing:-8.888889pt;}
.ws3_c00149{word-spacing:0.000000pt;}
._12_c00149{margin-left:-16.741691pt;}
._19_c00149{margin-left:-15.002667pt;}
._d_c00149{margin-left:-8.179200pt;}
._5_c00149{margin-left:-4.345600pt;}
._b_c00149{margin-left:-2.502400pt;}
._1_c00149{margin-left:-1.363200pt;}
._3_c00149{width:0.960000pt;}
._0_c00149{width:2.067200pt;}
._4_c00149{width:3.014400pt;}
._2_c00149{width:3.929600pt;}
._8_c00149{width:5.465600pt;}
._7_c00149{width:6.412800pt;}
._1a_c00149{width:7.309867pt;}
._6_c00149{width:8.467200pt;}
._a_c00149{width:9.824000pt;}
._c_c00149{width:10.969600pt;}
._9_c00149{width:12.857600pt;}
._e_c00149{width:14.246400pt;}
._11_c00149{width:16.294400pt;}
._18_c00149{width:17.785243pt;}
._10_c00149{width:18.886400pt;}
._f_c00149{width:20.640000pt;}
._14_c00149{width:52.228267pt;}
._13_c00149{width:53.154133pt;}
._16_c00149{width:55.253333pt;}
._17_c00149{width:57.723733pt;}
._15_c00149{width:59.566933pt;}
.fs4_c00149{font-size:35.555557pt;}
.fs1_c00149{font-size:42.666667pt;}
.fs2_c00149{font-size:48.000000pt;}
.fs3_c00149{font-size:53.333333pt;}
.fs0_c00149{font-size:64.000000pt;}
.y0_c00149{bottom:0.000000pt;}
.y4_c00149{bottom:10.666667pt;}
.y13_c00149{bottom:59.853333pt;}
.y1a_c00149{bottom:117.186667pt;}
.y19_c00149{bottom:137.853333pt;}
.y18_c00149{bottom:174.520000pt;}
.y17_c00149{bottom:195.186667pt;}
.y16_c00149{bottom:231.853333pt;}
.y15_c00149{bottom:249.186667pt;}
.y14_c00149{bottom:269.853333pt;}
.y11_c00149{bottom:310.520000pt;}
.y10_c00149{bottom:334.520000pt;}
.yf_c00149{bottom:358.520000pt;}
.ye_c00149{bottom:382.520000pt;}
.yd_c00149{bottom:406.520000pt;}
.yc_c00149{bottom:430.520000pt;}
.yb_c00149{bottom:473.186667pt;}
.ya_c00149{bottom:497.186667pt;}
.y9_c00149{bottom:539.853333pt;}
.y8_c00149{bottom:563.853333pt;}
.y7_c00149{bottom:587.853333pt;}
.y6_c00149{bottom:611.853333pt;}
.y5_c00149{bottom:653.186667pt;}
.y3_c00149{bottom:711.853333pt;}
.y2_c00149{bottom:949.186667pt;}
.y1_c00149{bottom:973.186667pt;}
.y12_c00149{bottom:1061.186667pt;}
.ha_c00149{height:24.427085pt;}
.hb_c00149{height:36.640625pt;}
.h6_c00149{height:37.007812pt;}
.h9_c00149{height:39.296875pt;}
.h3_c00149{height:45.562500pt;}
.h7_c00149{height:45.812500pt;}
.h8_c00149{height:49.843750pt;}
.h4_c00149{height:50.896067pt;}
.h5_c00149{height:209.333333pt;}
.h2_c00149{height:1121.333333pt;}
.h0_c00149{height:1122.520000pt;}
.h1_c00149{height:1122.666667pt;}
.w3_c00149{width:601.719867pt;}
.w2_c00149{width:793.333333pt;}
.w0_c00149{width:793.720000pt;}
.w1_c00149{width:794.000000pt;}
.x0_c00149{left:0.000000pt;}
.x1_c00149{left:58.204720pt;}
.x2_c00149{left:136.073867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9e50d68759e8f4b107054e35.woff2')format("woff");}.ff1_c00150{font-family:ff1_c00150;line-height:0.987793;font-style:normal;font-weight:normal;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_9a1fdc1686da0c8e83fa848a.woff2')format("woff");}.ff2_c00150{font-family:ff2_c00150;line-height:0.933105;font-style:normal;font-weight:normal;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_b08dd8629b8253ffb69c1092.woff2')format("woff");}.ff3_c00150{font-family:ff3_c00150;line-height:0.956543;font-style:normal;font-weight:normal;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_d9ff1967ed71512eeeafea78.woff2')format("woff");}.ff4_c00150{font-family:ff4_c00150;line-height:0.903320;font-style: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);}
.v2_c00150{vertical-align:-23.086200px;}
.v3_c00150{vertical-align:-15.000000px;}
.v0_c00150{vertical-align:0.000000px;}
.v1_c00150{vertical-align:23.086200px;}
.ls2_c00150{letter-spacing:-0.009600px;}
.ls3_c00150{letter-spacing:-0.007200px;}
.ls1_c00150{letter-spacing:0.000000px;}
.ls0_c00150{letter-spacing:0.012000px;}
.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;}
}
.ws2_c00150{word-spacing:-15.000000px;}
.ws0_c00150{word-spacing:-13.190400px;}
.ws1_c00150{word-spacing:-10.000001px;}
.ws3_c00150{word-spacing:0.000000px;}
._c_c00150{margin-left:-18.827202px;}
._d_c00150{margin-left:-5.394000px;}
._0_c00150{margin-left:-3.945600px;}
._6_c00150{margin-left:-2.196000px;}
._1_c00150{width:1.540800px;}
._3_c00150{width:2.959200px;}
._8_c00150{width:4.096800px;}
._9_c00150{width:5.587200px;}
._4_c00150{width:6.652800px;}
._2_c00150{width:8.107200px;}
._5_c00150{width:9.648000px;}
._7_c00150{width:11.808000px;}
._a_c00150{width:23.464800px;}
._b_c00150{width:24.480000px;}
._e_c00150{width:55.414800px;}
._f_c00150{width:56.857200px;}
._11_c00150{width:58.410000px;}
._12_c00150{width:60.612000px;}
._10_c00150{width:62.319600px;}
._13_c00150{width:63.744000px;}
.fc1_c00150{color:rgb(0,0,153);}
.fc0_c00150{color:rgb(0,0,0);}
.fs4_c00150{font-size:40.000002px;}
.fs2_c00150{font-size:48.000000px;}
.fs0_c00150{font-size:54.000000px;}
.fs3_c00150{font-size:60.000000px;}
.fs1_c00150{font-size:72.000000px;}
.y0_c00150{bottom:0.000000px;}
.y8_c00150{bottom:10.500000px;}
.y2_c00150{bottom:12.000000px;}
.y7_c00150{bottom:40.500000px;}
.ya_c00150{bottom:67.335000px;}
.yd_c00150{bottom:131.835000px;}
.yc_c00150{bottom:151.335000px;}
.yb_c00150{bottom:174.585000px;}
.y6_c00150{bottom:230.835000px;}
.y5_c00150{bottom:733.335000px;}
.y4_c00150{bottom:760.335000px;}
.y3_c00150{bottom:787.335000px;}
.y1_c00150{bottom:827.835000px;}
.y9_c00150{bottom:1193.835000px;}
.h9_c00150{height:27.421876px;}
.ha_c00150{height:41.132812px;}
.h3_c00150{height:42.292969px;}
.h8_c00150{height:44.121094px;}
.h5_c00150{height:51.187500px;}
.h6_c00150{height:57.211200px;}
.h2_c00150{height:285.000000px;}
.h7_c00150{height:471.000000px;}
.h4_c00150{height:1261.500000px;}
.h0_c00150{height:1262.835000px;}
.h1_c00150{height:1263.000000px;}
.w2_c00150{width:676.935000px;}
.w3_c00150{width:892.500000px;}
.w0_c00150{width:892.935000px;}
.w1_c00150{width:893.250000px;}
.x0_c00150{left:0.000000px;}
.x3_c00150{left:70.655955px;}
.x4_c00150{left:147.513015px;}
.x1_c00150{left:150.000000px;}
.x2_c00150{left:258.429900px;}
.x5_c00150{left:380.516100px;}
.x6_c00150{left:802.427700px;}
@media print{
.v2_c00150{vertical-align:-20.521067pt;}
.v3_c00150{vertical-align:-13.333333pt;}
.v0_c00150{vertical-align:0.000000pt;}
.v1_c00150{vertical-align:20.521067pt;}
.ls2_c00150{letter-spacing:-0.008533pt;}
.ls3_c00150{letter-spacing:-0.006400pt;}
.ls1_c00150{letter-spacing:0.000000pt;}
.ls0_c00150{letter-spacing:0.010667pt;}
.ws2_c00150{word-spacing:-13.333333pt;}
.ws0_c00150{word-spacing:-11.724800pt;}
.ws1_c00150{word-spacing:-8.888889pt;}
.ws3_c00150{word-spacing:0.000000pt;}
._c_c00150{margin-left:-16.735291pt;}
._d_c00150{margin-left:-4.794667pt;}
._0_c00150{margin-left:-3.507200pt;}
._6_c00150{margin-left:-1.952000pt;}
._1_c00150{width:1.369600pt;}
._3_c00150{width:2.630400pt;}
._8_c00150{width:3.641600pt;}
._9_c00150{width:4.966400pt;}
._4_c00150{width:5.913600pt;}
._2_c00150{width:7.206400pt;}
._5_c00150{width:8.576000pt;}
._7_c00150{width:10.496000pt;}
._a_c00150{width:20.857600pt;}
._b_c00150{width:21.760000pt;}
._e_c00150{width:49.257600pt;}
._f_c00150{width:50.539733pt;}
._11_c00150{width:51.920000pt;}
._12_c00150{width:53.877333pt;}
._10_c00150{width:55.395200pt;}
._13_c00150{width:56.661333pt;}
.fs4_c00150{font-size:35.555557pt;}
.fs2_c00150{font-size:42.666667pt;}
.fs0_c00150{font-size:48.000000pt;}
.fs3_c00150{font-size:53.333333pt;}
.fs1_c00150{font-size:64.000000pt;}
.y0_c00150{bottom:0.000000pt;}
.y8_c00150{bottom:9.333333pt;}
.y2_c00150{bottom:10.666667pt;}
.y7_c00150{bottom:36.000000pt;}
.ya_c00150{bottom:59.853333pt;}
.yd_c00150{bottom:117.186667pt;}
.yc_c00150{bottom:134.520000pt;}
.yb_c00150{bottom:155.186667pt;}
.y6_c00150{bottom:205.186667pt;}
.y5_c00150{bottom:651.853333pt;}
.y4_c00150{bottom:675.853333pt;}
.y3_c00150{bottom:699.853333pt;}
.y1_c00150{bottom:735.853333pt;}
.y9_c00150{bottom:1061.186667pt;}
.h9_c00150{height:24.375001pt;}
.ha_c00150{height:36.562500pt;}
.h3_c00150{height:37.593750pt;}
.h8_c00150{height:39.218750pt;}
.h5_c00150{height:45.500000pt;}
.h6_c00150{height:50.854400pt;}
.h2_c00150{height:253.333333pt;}
.h7_c00150{height:418.666667pt;}
.h4_c00150{height:1121.333333pt;}
.h0_c00150{height:1122.520000pt;}
.h1_c00150{height:1122.666667pt;}
.w2_c00150{width:601.720000pt;}
.w3_c00150{width:793.333333pt;}
.w0_c00150{width:793.720000pt;}
.w1_c00150{width:794.000000pt;}
.x0_c00150{left:0.000000pt;}
.x3_c00150{left:62.805293pt;}
.x4_c00150{left:131.122680pt;}
.x1_c00150{left:133.333333pt;}
.x2_c00150{left:229.715467pt;}
.x5_c00150{left:338.236533pt;}
.x6_c00150{left:713.269067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6722c92f08845b17bd24b7c5.woff2')format("woff");}.ff1_c00151{font-family:ff1_c00151;line-height:0.933105;font-style:normal;font-weight:normal;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_51517d8c58867d15deab3b90.woff2')format("woff");}.ff2_c00151{font-family:ff2_c00151;line-height:0.975586;font-style:normal;font-weight:normal;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_dd6a51ce7357c7c9957491df.woff2')format("woff");}.ff3_c00151{font-family:ff3_c00151;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00151;src:url('chunks/assets/font_a3964e7705f6c823cfb8a2fa.woff2')format("woff");}.ff4_c00151{font-family:ff4_c00151;line-height:0.756836;font-style:normal;font-weight:normal;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_9bc6ebf6bf93732562fe4981.woff2')format("woff");}.ff5_c00151{font-family:ff5_c00151;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00151{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00151{vertical-align:0.000000px;}
.ls0_c00151{letter-spacing:0.000000px;}
.ls1_c00151{letter-spacing:0.012000px;}
.sc__c00151{text-shadow:none;}
.sc0_c00151{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00151{-webkit-text-stroke:0px transparent;}
.sc0_c00151{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00151{word-spacing:-0.072000px;}
.ws1_c00151{word-spacing:0.000000px;}
._0_c00151{margin-left:-7.236000px;}
._d_c00151{margin-left:-4.550400px;}
._8_c00151{margin-left:-3.232800px;}
._6_c00151{margin-left:-1.569600px;}
._2_c00151{width:1.706400px;}
._4_c00151{width:2.865600px;}
._5_c00151{width:4.528800px;}
._3_c00151{width:5.695200px;}
._1_c00151{width:7.372800px;}
._7_c00151{width:8.964000px;}
._9_c00151{width:10.756800px;}
._a_c00151{width:13.644000px;}
._b_c00151{width:15.451200px;}
._c_c00151{width:17.208000px;}
.fc0_c00151{color:rgb(0,0,0);}
.fs1_c00151{font-size:54.000000px;}
.fs2_c00151{font-size:60.000000px;}
.fs0_c00151{font-size:72.000000px;}
.y0_c00151{bottom:0.000000px;}
.yf_c00151{bottom:10.499985px;}
.y6_c00151{bottom:12.000000px;}
.ye_c00151{bottom:37.499985px;}
.yd_c00151{bottom:53.999985px;}
.y11_c00151{bottom:67.335000px;}
.yc_c00151{bottom:131.835015px;}
.yb_c00151{bottom:505.335000px;}
.ya_c00151{bottom:532.335000px;}
.y9_c00151{bottom:559.335000px;}
.y8_c00151{bottom:607.335000px;}
.y7_c00151{bottom:634.335000px;}
.y5_c00151{bottom:674.835000px;}
.y4_c00151{bottom:992.835000px;}
.y3_c00151{bottom:1019.835000px;}
.y2_c00151{bottom:1046.835000px;}
.y1_c00151{bottom:1094.835000px;}
.y10_c00151{bottom:1193.835000px;}
.h5_c00151{height:41.633789px;}
.h8_c00151{height:44.208984px;}
.h3_c00151{height:51.187500px;}
.h7_c00151{height:56.074219px;}
.h4_c00151{height:286.500000px;}
.h6_c00151{height:342.000000px;}
.h2_c00151{height:1261.500000px;}
.h0_c00151{height:1262.835000px;}
.h1_c00151{height:1263.000000px;}
.w3_c00151{width:676.934850px;}
.w4_c00151{width:676.935000px;}
.w2_c00151{width:892.500000px;}
.w0_c00151{width:892.935000px;}
.w1_c00151{width:893.250000px;}
.x0_c00151{left:0.000000px;}
.x3_c00151{left:17.849070px;}
.x1_c00151{left:65.480310px;}
.x5_c00151{left:242.092050px;}
.x2_c00151{left:262.483800px;}
.x4_c00151{left:274.144800px;}
@media print{
.v0_c00151{vertical-align:0.000000pt;}
.ls0_c00151{letter-spacing:0.000000pt;}
.ls1_c00151{letter-spacing:0.010667pt;}
.ws0_c00151{word-spacing:-0.064000pt;}
.ws1_c00151{word-spacing:0.000000pt;}
._0_c00151{margin-left:-6.432000pt;}
._d_c00151{margin-left:-4.044800pt;}
._8_c00151{margin-left:-2.873600pt;}
._6_c00151{margin-left:-1.395200pt;}
._2_c00151{width:1.516800pt;}
._4_c00151{width:2.547200pt;}
._5_c00151{width:4.025600pt;}
._3_c00151{width:5.062400pt;}
._1_c00151{width:6.553600pt;}
._7_c00151{width:7.968000pt;}
._9_c00151{width:9.561600pt;}
._a_c00151{width:12.128000pt;}
._b_c00151{width:13.734400pt;}
._c_c00151{width:15.296000pt;}
.fs1_c00151{font-size:48.000000pt;}
.fs2_c00151{font-size:53.333333pt;}
.fs0_c00151{font-size:64.000000pt;}
.y0_c00151{bottom:0.000000pt;}
.yf_c00151{bottom:9.333320pt;}
.y6_c00151{bottom:10.666667pt;}
.ye_c00151{bottom:33.333320pt;}
.yd_c00151{bottom:47.999987pt;}
.y11_c00151{bottom:59.853333pt;}
.yc_c00151{bottom:117.186680pt;}
.yb_c00151{bottom:449.186667pt;}
.ya_c00151{bottom:473.186667pt;}
.y9_c00151{bottom:497.186667pt;}
.y8_c00151{bottom:539.853333pt;}
.y7_c00151{bottom:563.853333pt;}
.y5_c00151{bottom:599.853333pt;}
.y4_c00151{bottom:882.520000pt;}
.y3_c00151{bottom:906.520000pt;}
.y2_c00151{bottom:930.520000pt;}
.y1_c00151{bottom:973.186667pt;}
.y10_c00151{bottom:1061.186667pt;}
.h5_c00151{height:37.007812pt;}
.h8_c00151{height:39.296875pt;}
.h3_c00151{height:45.500000pt;}
.h7_c00151{height:49.843750pt;}
.h4_c00151{height:254.666667pt;}
.h6_c00151{height:304.000000pt;}
.h2_c00151{height:1121.333333pt;}
.h0_c00151{height:1122.520000pt;}
.h1_c00151{height:1122.666667pt;}
.w3_c00151{width:601.719867pt;}
.w4_c00151{width:601.720000pt;}
.w2_c00151{width:793.333333pt;}
.w0_c00151{width:793.720000pt;}
.w1_c00151{width:794.000000pt;}
.x0_c00151{left:0.000000pt;}
.x3_c00151{left:15.865840pt;}
.x1_c00151{left:58.204720pt;}
.x5_c00151{left:215.192933pt;}
.x2_c00151{left:233.318933pt;}
.x4_c00151{left:243.684267pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0c6f708e41a4ea5d781f068e.woff2')format("woff");}.ff1_c00152{font-family:ff1_c00152;line-height:0.934082;font-style:normal;font-weight:normal;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_07db72ba5d28795c3f3eec74.woff2')format("woff");}.ff2_c00152{font-family:ff2_c00152;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00152;src:url('chunks/assets/font_61cda9d35e47d0477d934cb6.woff2')format("woff");}.ff3_c00152{font-family:ff3_c00152;line-height:0.963867;font-style:normal;font-weight:normal;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_07d11a4626257745440fa000.woff2')format("woff");}.ff4_c00152{font-family:ff4_c00152;line-height:0.956543;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00152;src:url('chunks/assets/font_d1a0e363a601fddcd1dfcb98.woff2')format("woff");}.ff5_c00152{font-family:ff5_c00152;line-height:0.903320;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00152{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00152{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00152{vertical-align:-23.086200px;}
.v3_c00152{vertical-align:-15.000000px;}
.v0_c00152{vertical-align:0.000000px;}
.v1_c00152{vertical-align:23.086200px;}
.ls3_c00152{letter-spacing:-0.009600px;}
.ls2_c00152{letter-spacing:0.000000px;}
.ls1_c00152{letter-spacing:0.012000px;}
.ls0_c00152{letter-spacing:3.162600px;}
.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:-15.000000px;}
.ws0_c00152{word-spacing:-13.190400px;}
.ws1_c00152{word-spacing:-10.000001px;}
.ws3_c00152{word-spacing:0.000000px;}
._e_c00152{margin-left:-19.488000px;}
._4_c00152{margin-left:-4.118400px;}
._0_c00152{margin-left:-2.577600px;}
._1_c00152{margin-left:-1.072800px;}
._2_c00152{width:1.612800px;}
._5_c00152{width:2.944800px;}
._3_c00152{width:4.672800px;}
._6_c00152{width:5.904000px;}
._c_c00152{width:7.107198px;}
._7_c00152{width:8.265600px;}
._8_c00152{width:10.677600px;}
._9_c00152{width:12.609600px;}
._a_c00152{width:15.295200px;}
._b_c00152{width:17.208000px;}
._d_c00152{width:23.700000px;}
._f_c00152{width:59.179200px;}
._11_c00152{width:62.160000px;}
._12_c00152{width:64.701600px;}
._10_c00152{width:66.266400px;}
.fc1_c00152{color:rgb(0,0,153);}
.fc0_c00152{color:rgb(0,0,0);}
.fs4_c00152{font-size:40.000002px;}
.fs1_c00152{font-size:48.000000px;}
.fs2_c00152{font-size:54.000000px;}
.fs3_c00152{font-size:60.000000px;}
.fs0_c00152{font-size:72.000000px;}
.y0_c00152{bottom:0.000000px;}
.ya_c00152{bottom:12.000000px;}
.ye_c00152{bottom:67.335000px;}
.y17_c00152{bottom:131.835000px;}
.y16_c00152{bottom:151.335000px;}
.y15_c00152{bottom:174.585000px;}
.y14_c00152{bottom:215.835000px;}
.y13_c00152{bottom:235.335000px;}
.y12_c00152{bottom:258.585000px;}
.y11_c00152{bottom:299.835000px;}
.y10_c00152{bottom:319.335000px;}
.yf_c00152{bottom:342.585000px;}
.yc_c00152{bottom:418.335000px;}
.yb_c00152{bottom:445.335000px;}
.y9_c00152{bottom:490.335000px;}
.y8_c00152{bottom:884.835000px;}
.y7_c00152{bottom:911.835000px;}
.y6_c00152{bottom:938.835000px;}
.y5_c00152{bottom:965.835000px;}
.y4_c00152{bottom:992.835000px;}
.y3_c00152{bottom:1019.835000px;}
.y2_c00152{bottom:1067.835000px;}
.y1_c00152{bottom:1094.835000px;}
.yd_c00152{bottom:1193.835000px;}
.h8_c00152{height:27.421876px;}
.h9_c00152{height:41.132812px;}
.h6_c00152{height:41.633789px;}
.h7_c00152{height:44.121094px;}
.h3_c00152{height:51.257812px;}
.h4_c00152{height:57.258075px;}
.h5_c00152{height:363.000000px;}
.h2_c00152{height:1261.500000px;}
.h0_c00152{height:1262.835000px;}
.h1_c00152{height:1263.000000px;}
.w3_c00152{width:676.934850px;}
.w2_c00152{width:892.500000px;}
.w0_c00152{width:892.935000px;}
.w1_c00152{width:893.250000px;}
.x0_c00152{left:0.000000px;}
.x1_c00152{left:150.519750px;}
.x2_c00152{left:213.328800px;}
.x3_c00152{left:380.516100px;}
.x4_c00152{left:802.427700px;}
@media print{
.v2_c00152{vertical-align:-20.521067pt;}
.v3_c00152{vertical-align:-13.333333pt;}
.v0_c00152{vertical-align:0.000000pt;}
.v1_c00152{vertical-align:20.521067pt;}
.ls3_c00152{letter-spacing:-0.008533pt;}
.ls2_c00152{letter-spacing:0.000000pt;}
.ls1_c00152{letter-spacing:0.010667pt;}
.ls0_c00152{letter-spacing:2.811200pt;}
.ws2_c00152{word-spacing:-13.333333pt;}
.ws0_c00152{word-spacing:-11.724800pt;}
.ws1_c00152{word-spacing:-8.888889pt;}
.ws3_c00152{word-spacing:0.000000pt;}
._e_c00152{margin-left:-17.322667pt;}
._4_c00152{margin-left:-3.660800pt;}
._0_c00152{margin-left:-2.291200pt;}
._1_c00152{margin-left:-0.953600pt;}
._2_c00152{width:1.433600pt;}
._5_c00152{width:2.617600pt;}
._3_c00152{width:4.153600pt;}
._6_c00152{width:5.248000pt;}
._c_c00152{width:6.317509pt;}
._7_c00152{width:7.347200pt;}
._8_c00152{width:9.491200pt;}
._9_c00152{width:11.208533pt;}
._a_c00152{width:13.595733pt;}
._b_c00152{width:15.296000pt;}
._d_c00152{width:21.066667pt;}
._f_c00152{width:52.603733pt;}
._11_c00152{width:55.253333pt;}
._12_c00152{width:57.512533pt;}
._10_c00152{width:58.903467pt;}
.fs4_c00152{font-size:35.555557pt;}
.fs1_c00152{font-size:42.666667pt;}
.fs2_c00152{font-size:48.000000pt;}
.fs3_c00152{font-size:53.333333pt;}
.fs0_c00152{font-size:64.000000pt;}
.y0_c00152{bottom:0.000000pt;}
.ya_c00152{bottom:10.666667pt;}
.ye_c00152{bottom:59.853333pt;}
.y17_c00152{bottom:117.186667pt;}
.y16_c00152{bottom:134.520000pt;}
.y15_c00152{bottom:155.186667pt;}
.y14_c00152{bottom:191.853333pt;}
.y13_c00152{bottom:209.186667pt;}
.y12_c00152{bottom:229.853333pt;}
.y11_c00152{bottom:266.520000pt;}
.y10_c00152{bottom:283.853333pt;}
.yf_c00152{bottom:304.520000pt;}
.yc_c00152{bottom:371.853333pt;}
.yb_c00152{bottom:395.853333pt;}
.y9_c00152{bottom:435.853333pt;}
.y8_c00152{bottom:786.520000pt;}
.y7_c00152{bottom:810.520000pt;}
.y6_c00152{bottom:834.520000pt;}
.y5_c00152{bottom:858.520000pt;}
.y4_c00152{bottom:882.520000pt;}
.y3_c00152{bottom:906.520000pt;}
.y2_c00152{bottom:949.186667pt;}
.y1_c00152{bottom:973.186667pt;}
.yd_c00152{bottom:1061.186667pt;}
.h8_c00152{height:24.375001pt;}
.h9_c00152{height:36.562500pt;}
.h6_c00152{height:37.007812pt;}
.h7_c00152{height:39.218750pt;}
.h3_c00152{height:45.562500pt;}
.h4_c00152{height:50.896067pt;}
.h5_c00152{height:322.666667pt;}
.h2_c00152{height:1121.333333pt;}
.h0_c00152{height:1122.520000pt;}
.h1_c00152{height:1122.666667pt;}
.w3_c00152{width:601.719867pt;}
.w2_c00152{width:793.333333pt;}
.w0_c00152{width:793.720000pt;}
.w1_c00152{width:794.000000pt;}
.x0_c00152{left:0.000000pt;}
.x1_c00152{left:133.795333pt;}
.x2_c00152{left:189.625600pt;}
.x3_c00152{left:338.236533pt;}
.x4_c00152{left:713.269067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b6bbab50c414ac5d8d94c9a7.woff2')format("woff");}.ff1_c00153{font-family:ff1_c00153;line-height:0.934082;font-style:normal;font-weight:normal;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_f29c58f13372695575905264.woff2')format("woff");}.ff2_c00153{font-family:ff2_c00153;line-height:0.932129;font-style:normal;font-weight:normal;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_a98cf9965695902eb66a1f12.woff2')format("woff");}.ff3_c00153{font-family:ff3_c00153;line-height:0.987793;font-style:normal;font-weight:normal;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_d30cf20f4f34c5725b021982.woff2')format("woff");}.ff4_c00153{font-family:ff4_c00153;line-height:0.755859;font-style:normal;font-weight:normal;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_819d9da48eeb120b074c843f.woff2')format("woff");}.ff5_c00153{font-family:ff5_c00153;line-height:1.155762;font-style:normal;font-weight: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_c00153;src:url('chunks/assets/font_db4ba2bb5fc04bc3aa8ba53c.woff2')format("woff");}.ff6_c00153{font-family:ff6_c00153;line-height:0.903320;font-style: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);}
.v2_c00153{vertical-align:-23.086200px;}
.v3_c00153{vertical-align:-15.000000px;}
.v0_c00153{vertical-align:0.000000px;}
.v1_c00153{vertical-align:23.086200px;}
.ls1_c00153{letter-spacing:-0.014400px;}
.ls2_c00153{letter-spacing:-0.009600px;}
.ls0_c00153{letter-spacing:0.000000px;}
.ls4_c00153{letter-spacing:0.012000px;}
.ls3_c00153{letter-spacing:0.014400px;}
.sc__c00153{text-shadow:none;}
.sc0_c00153{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00153{-webkit-text-stroke:0px transparent;}
.sc0_c00153{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00153{word-spacing:-19.785600px;}
.ws3_c00153{word-spacing:-15.000000px;}
.ws1_c00153{word-spacing:-13.190400px;}
.ws2_c00153{word-spacing:-10.000001px;}
.ws4_c00153{word-spacing:0.000000px;}
._12_c00153{margin-left:-19.488000px;}
._b_c00153{margin-left:-6.372000px;}
._6_c00153{margin-left:-4.363200px;}
._c_c00153{margin-left:-3.282960px;}
._9_c00153{margin-left:-1.073040px;}
._3_c00153{width:1.123200px;}
._2_c00153{width:2.894400px;}
._0_c00153{width:4.320000px;}
._1_c00153{width:5.752800px;}
._5_c00153{width:7.171200px;}
._4_c00153{width:8.971200px;}
._8_c00153{width:10.188000px;}
._a_c00153{width:11.793600px;}
._7_c00153{width:13.658400px;}
._10_c00153{width:15.602160px;}
._e_c00153{width:17.107200px;}
._f_c00153{width:18.410640px;}
._d_c00153{width:21.744000px;}
._11_c00153{width:23.571198px;}
._13_c00153{width:55.479600px;}
._14_c00153{width:57.274800px;}
._16_c00153{width:58.410000px;}
._15_c00153{width:61.656960px;}
._18_c00153{width:62.791200px;}
._17_c00153{width:64.764000px;}
.fc1_c00153{color:rgb(0,0,153);}
.fc0_c00153{color:rgb(0,0,0);}
.fs4_c00153{font-size:40.000002px;}
.fs1_c00153{font-size:48.000000px;}
.fs2_c00153{font-size:54.000000px;}
.fs3_c00153{font-size:60.000000px;}
.fs0_c00153{font-size:72.000000px;}
.y0_c00153{bottom:0.000000px;}
.yf_c00153{bottom:12.000000px;}
.y11_c00153{bottom:67.335000px;}
.y17_c00153{bottom:131.835000px;}
.y16_c00153{bottom:151.335000px;}
.y15_c00153{bottom:174.585000px;}
.y14_c00153{bottom:215.835000px;}
.y13_c00153{bottom:235.335000px;}
.y12_c00153{bottom:258.585000px;}
.ye_c00153{bottom:308.835000px;}
.yd_c00153{bottom:707.835000px;}
.yc_c00153{bottom:734.835000px;}
.yb_c00153{bottom:761.835000px;}
.ya_c00153{bottom:788.835000px;}
.y9_c00153{bottom:815.835000px;}
.y8_c00153{bottom:863.835000px;}
.y7_c00153{bottom:890.835000px;}
.y6_c00153{bottom:917.835000px;}
.y5_c00153{bottom:965.835000px;}
.y4_c00153{bottom:992.835000px;}
.y3_c00153{bottom:1019.835000px;}
.y2_c00153{bottom:1067.835000px;}
.y1_c00153{bottom:1094.835000px;}
.y10_c00153{bottom:1193.835000px;}
.h9_c00153{height:27.421876px;}
.ha_c00153{height:41.132812px;}
.h6_c00153{height:42.292969px;}
.h8_c00153{height:44.208984px;}
.h3_c00153{height:51.257812px;}
.h7_c00153{height:56.074219px;}
.h4_c00153{height:57.258075px;}
.h5_c00153{height:367.500000px;}
.h2_c00153{height:1261.500000px;}
.h0_c00153{height:1262.835000px;}
.h1_c00153{height:1263.000000px;}
.w3_c00153{width:676.935000px;}
.w2_c00153{width:892.500000px;}
.w0_c00153{width:892.935000px;}
.w1_c00153{width:893.250000px;}
.x0_c00153{left:0.000000px;}
.x2_c00153{left:36.012765px;}
.x1_c00153{left:65.480310px;}
@media print{
.v2_c00153{vertical-align:-20.521067pt;}
.v3_c00153{vertical-align:-13.333333pt;}
.v0_c00153{vertical-align:0.000000pt;}
.v1_c00153{vertical-align:20.521067pt;}
.ls1_c00153{letter-spacing:-0.012800pt;}
.ls2_c00153{letter-spacing:-0.008533pt;}
.ls0_c00153{letter-spacing:0.000000pt;}
.ls4_c00153{letter-spacing:0.010667pt;}
.ls3_c00153{letter-spacing:0.012800pt;}
.ws0_c00153{word-spacing:-17.587200pt;}
.ws3_c00153{word-spacing:-13.333333pt;}
.ws1_c00153{word-spacing:-11.724800pt;}
.ws2_c00153{word-spacing:-8.888889pt;}
.ws4_c00153{word-spacing:0.000000pt;}
._12_c00153{margin-left:-17.322667pt;}
._b_c00153{margin-left:-5.664000pt;}
._6_c00153{margin-left:-3.878400pt;}
._c_c00153{margin-left:-2.918187pt;}
._9_c00153{margin-left:-0.953813pt;}
._3_c00153{width:0.998400pt;}
._2_c00153{width:2.572800pt;}
._0_c00153{width:3.840000pt;}
._1_c00153{width:5.113600pt;}
._5_c00153{width:6.374400pt;}
._4_c00153{width:7.974400pt;}
._8_c00153{width:9.056000pt;}
._a_c00153{width:10.483200pt;}
._7_c00153{width:12.140800pt;}
._10_c00153{width:13.868587pt;}
._e_c00153{width:15.206400pt;}
._f_c00153{width:16.365013pt;}
._d_c00153{width:19.328000pt;}
._11_c00153{width:20.952176pt;}
._13_c00153{width:49.315200pt;}
._14_c00153{width:50.910933pt;}
._16_c00153{width:51.920000pt;}
._15_c00153{width:54.806187pt;}
._18_c00153{width:55.814400pt;}
._17_c00153{width:57.568000pt;}
.fs4_c00153{font-size:35.555557pt;}
.fs1_c00153{font-size:42.666667pt;}
.fs2_c00153{font-size:48.000000pt;}
.fs3_c00153{font-size:53.333333pt;}
.fs0_c00153{font-size:64.000000pt;}
.y0_c00153{bottom:0.000000pt;}
.yf_c00153{bottom:10.666667pt;}
.y11_c00153{bottom:59.853333pt;}
.y17_c00153{bottom:117.186667pt;}
.y16_c00153{bottom:134.520000pt;}
.y15_c00153{bottom:155.186667pt;}
.y14_c00153{bottom:191.853333pt;}
.y13_c00153{bottom:209.186667pt;}
.y12_c00153{bottom:229.853333pt;}
.ye_c00153{bottom:274.520000pt;}
.yd_c00153{bottom:629.186667pt;}
.yc_c00153{bottom:653.186667pt;}
.yb_c00153{bottom:677.186667pt;}
.ya_c00153{bottom:701.186667pt;}
.y9_c00153{bottom:725.186667pt;}
.y8_c00153{bottom:767.853333pt;}
.y7_c00153{bottom:791.853333pt;}
.y6_c00153{bottom:815.853333pt;}
.y5_c00153{bottom:858.520000pt;}
.y4_c00153{bottom:882.520000pt;}
.y3_c00153{bottom:906.520000pt;}
.y2_c00153{bottom:949.186667pt;}
.y1_c00153{bottom:973.186667pt;}
.y10_c00153{bottom:1061.186667pt;}
.h9_c00153{height:24.375001pt;}
.ha_c00153{height:36.562500pt;}
.h6_c00153{height:37.593750pt;}
.h8_c00153{height:39.296875pt;}
.h3_c00153{height:45.562500pt;}
.h7_c00153{height:49.843750pt;}
.h4_c00153{height:50.896067pt;}
.h5_c00153{height:326.666667pt;}
.h2_c00153{height:1121.333333pt;}
.h0_c00153{height:1122.520000pt;}
.h1_c00153{height:1122.666667pt;}
.w3_c00153{width:601.720000pt;}
.w2_c00153{width:793.333333pt;}
.w0_c00153{width:793.720000pt;}
.w1_c00153{width:794.000000pt;}
.x0_c00153{left:0.000000pt;}
.x2_c00153{left:32.011347pt;}
.x1_c00153{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_451116bc26df6cc47b18149d.woff2')format("woff");}.ff1_c00154{font-family:ff1_c00154;line-height:0.934082;font-style:normal;font-weight:normal;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_2a1c9e66d8cc60903ac881c3.woff2')format("woff");}.ff2_c00154{font-family:ff2_c00154;line-height:0.975586;font-style:normal;font-weight:normal;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_fc11379e7a639c9f22c7389a.woff2')format("woff");}.ff3_c00154{font-family:ff3_c00154;line-height:0.956543;font-style:normal;font-weight:normal;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_8fd6b4631f53b3705c36ff71.woff2')format("woff");}.ff4_c00154{font-family:ff4_c00154;line-height:0.904785;font-style: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);}
.v2_c00154{vertical-align:-23.086200px;}
.v3_c00154{vertical-align:-15.000000px;}
.v0_c00154{vertical-align:0.000000px;}
.v1_c00154{vertical-align:23.086200px;}
.ls3_c00154{letter-spacing:-0.009600px;}
.ls2_c00154{letter-spacing:0.000000px;}
.ls0_c00154{letter-spacing:0.005400px;}
.ls1_c00154{letter-spacing:0.012000px;}
.ls4_c00154{letter-spacing:0.021600px;}
.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:-15.000000px;}
.ws0_c00154{word-spacing:-13.190400px;}
.ws1_c00154{word-spacing:-10.000001px;}
.ws3_c00154{word-spacing:0.000000px;}
._14_c00154{margin-left:-19.784802px;}
._f_c00154{margin-left:-6.616800px;}
._2_c00154{margin-left:-4.003200px;}
._8_c00154{margin-left:-2.102400px;}
._5_c00154{width:1.238400px;}
._0_c00154{width:2.325600px;}
._b_c00154{width:3.369600px;}
._6_c00154{width:4.982400px;}
._e_c00154{width:6.955200px;}
._10_c00154{width:8.323200px;}
._12_c00154{width:9.511200px;}
._11_c00154{width:11.210400px;}
._c_c00154{width:12.384000px;}
._d_c00154{width:13.471200px;}
._13_c00154{width:14.745600px;}
._a_c00154{width:16.005600px;}
._7_c00154{width:17.150400px;}
._1_c00154{width:18.288000px;}
._4_c00154{width:21.355200px;}
._9_c00154{width:24.184800px;}
._3_c00154{width:25.358400px;}
._15_c00154{width:56.048400px;}
._16_c00154{width:57.159600px;}
._18_c00154{width:58.410000px;}
._19_c00154{width:60.518400px;}
._17_c00154{width:62.377200px;}
._1a_c00154{width:64.966800px;}
.fc1_c00154{color:rgb(0,0,153);}
.fc0_c00154{color:rgb(0,0,0);}
.fs4_c00154{font-size:40.000002px;}
.fs1_c00154{font-size:48.000000px;}
.fs2_c00154{font-size:54.000000px;}
.fs3_c00154{font-size:60.000000px;}
.fs0_c00154{font-size:72.000000px;}
.y0_c00154{bottom:0.000000px;}
.yf_c00154{bottom:10.500000px;}
.ye_c00154{bottom:31.500000px;}
.y11_c00154{bottom:67.335000px;}
.y17_c00154{bottom:131.835000px;}
.y16_c00154{bottom:151.335000px;}
.y15_c00154{bottom:174.585000px;}
.y14_c00154{bottom:215.835000px;}
.y13_c00154{bottom:235.335000px;}
.y12_c00154{bottom:258.585000px;}
.yd_c00154{bottom:337.335000px;}
.yc_c00154{bottom:797.835000px;}
.yb_c00154{bottom:824.835000px;}
.ya_c00154{bottom:851.835000px;}
.y9_c00154{bottom:878.835000px;}
.y8_c00154{bottom:905.835000px;}
.y7_c00154{bottom:932.835000px;}
.y6_c00154{bottom:959.835000px;}
.y5_c00154{bottom:986.835000px;}
.y4_c00154{bottom:1013.835000px;}
.y3_c00154{bottom:1040.835000px;}
.y2_c00154{bottom:1067.835000px;}
.y1_c00154{bottom:1094.835000px;}
.y10_c00154{bottom:1193.835000px;}
.h8_c00154{height:27.480470px;}
.h9_c00154{height:41.220703px;}
.h6_c00154{height:41.633789px;}
.h7_c00154{height:44.121094px;}
.h3_c00154{height:51.257812px;}
.h4_c00154{height:57.258075px;}
.h5_c00154{height:429.000000px;}
.h2_c00154{height:1261.500000px;}
.h0_c00154{height:1262.835000px;}
.h1_c00154{height:1263.000000px;}
.w3_c00154{width:676.934850px;}
.w2_c00154{width:892.500000px;}
.w0_c00154{width:892.935000px;}
.w1_c00154{width:893.250000px;}
.x0_c00154{left:0.000000px;}
.x2_c00154{left:70.412040px;}
.x3_c00154{left:88.918515px;}
.x1_c00154{left:150.519750px;}
.x4_c00154{left:380.516100px;}
.x5_c00154{left:802.427700px;}
@media print{
.v2_c00154{vertical-align:-20.521067pt;}
.v3_c00154{vertical-align:-13.333333pt;}
.v0_c00154{vertical-align:0.000000pt;}
.v1_c00154{vertical-align:20.521067pt;}
.ls3_c00154{letter-spacing:-0.008533pt;}
.ls2_c00154{letter-spacing:0.000000pt;}
.ls0_c00154{letter-spacing:0.004800pt;}
.ls1_c00154{letter-spacing:0.010667pt;}
.ls4_c00154{letter-spacing:0.019200pt;}
.ws2_c00154{word-spacing:-13.333333pt;}
.ws0_c00154{word-spacing:-11.724800pt;}
.ws1_c00154{word-spacing:-8.888889pt;}
.ws3_c00154{word-spacing:0.000000pt;}
._14_c00154{margin-left:-17.586491pt;}
._f_c00154{margin-left:-5.881600pt;}
._2_c00154{margin-left:-3.558400pt;}
._8_c00154{margin-left:-1.868800pt;}
._5_c00154{width:1.100800pt;}
._0_c00154{width:2.067200pt;}
._b_c00154{width:2.995200pt;}
._6_c00154{width:4.428800pt;}
._e_c00154{width:6.182400pt;}
._10_c00154{width:7.398400pt;}
._12_c00154{width:8.454400pt;}
._11_c00154{width:9.964800pt;}
._c_c00154{width:11.008000pt;}
._d_c00154{width:11.974400pt;}
._13_c00154{width:13.107200pt;}
._a_c00154{width:14.227200pt;}
._7_c00154{width:15.244800pt;}
._1_c00154{width:16.256000pt;}
._4_c00154{width:18.982400pt;}
._9_c00154{width:21.497600pt;}
._3_c00154{width:22.540800pt;}
._15_c00154{width:49.820800pt;}
._16_c00154{width:50.808533pt;}
._18_c00154{width:51.920000pt;}
._19_c00154{width:53.794133pt;}
._17_c00154{width:55.446400pt;}
._1a_c00154{width:57.748267pt;}
.fs4_c00154{font-size:35.555557pt;}
.fs1_c00154{font-size:42.666667pt;}
.fs2_c00154{font-size:48.000000pt;}
.fs3_c00154{font-size:53.333333pt;}
.fs0_c00154{font-size:64.000000pt;}
.y0_c00154{bottom:0.000000pt;}
.yf_c00154{bottom:9.333333pt;}
.ye_c00154{bottom:28.000000pt;}
.y11_c00154{bottom:59.853333pt;}
.y17_c00154{bottom:117.186667pt;}
.y16_c00154{bottom:134.520000pt;}
.y15_c00154{bottom:155.186667pt;}
.y14_c00154{bottom:191.853333pt;}
.y13_c00154{bottom:209.186667pt;}
.y12_c00154{bottom:229.853333pt;}
.yd_c00154{bottom:299.853333pt;}
.yc_c00154{bottom:709.186667pt;}
.yb_c00154{bottom:733.186667pt;}
.ya_c00154{bottom:757.186667pt;}
.y9_c00154{bottom:781.186667pt;}
.y8_c00154{bottom:805.186667pt;}
.y7_c00154{bottom:829.186667pt;}
.y6_c00154{bottom:853.186667pt;}
.y5_c00154{bottom:877.186667pt;}
.y4_c00154{bottom:901.186667pt;}
.y3_c00154{bottom:925.186667pt;}
.y2_c00154{bottom:949.186667pt;}
.y1_c00154{bottom:973.186667pt;}
.y10_c00154{bottom:1061.186667pt;}
.h8_c00154{height:24.427085pt;}
.h9_c00154{height:36.640625pt;}
.h6_c00154{height:37.007812pt;}
.h7_c00154{height:39.218750pt;}
.h3_c00154{height:45.562500pt;}
.h4_c00154{height:50.896067pt;}
.h5_c00154{height:381.333333pt;}
.h2_c00154{height:1121.333333pt;}
.h0_c00154{height:1122.520000pt;}
.h1_c00154{height:1122.666667pt;}
.w3_c00154{width:601.719867pt;}
.w2_c00154{width:793.333333pt;}
.w0_c00154{width:793.720000pt;}
.w1_c00154{width:794.000000pt;}
.x0_c00154{left:0.000000pt;}
.x2_c00154{left:62.588480pt;}
.x3_c00154{left:79.038680pt;}
.x1_c00154{left:133.795333pt;}
.x4_c00154{left:338.236533pt;}
.x5_c00154{left:713.269067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8d99434c25bdc12c2bdbc911.woff2')format("woff");}.ff1_c00155{font-family:ff1_c00155;line-height:0.934082;font-style:normal;font-weight:normal;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_8f9f6e11a56277abca04ad2b.woff2')format("woff");}.ff2_c00155{font-family:ff2_c00155;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00155;src:url('chunks/assets/font_2d11cfd545350c4d04c63044.woff2')format("woff");}.ff3_c00155{font-family:ff3_c00155;line-height:0.963867;font-style:normal;font-weight:normal;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_ccacfed5bc2366fb110e3d39.woff2')format("woff");}.ff4_c00155{font-family:ff4_c00155;line-height:0.755859;font-style:normal;font-weight:normal;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_dc334be3c14707cddef7398a.woff2')format("woff");}.ff5_c00155{font-family:ff5_c00155;line-height:1.155762;font-style:normal;font-weight: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_c00155;src:url('chunks/assets/font_68a119de1159700e7fe5fb96.woff2')format("woff");}.ff6_c00155{font-family:ff6_c00155;line-height:0.904785;font-style: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);}
.v2_c00155{vertical-align:-23.086200px;}
.v3_c00155{vertical-align:-15.000000px;}
.v0_c00155{vertical-align:0.000000px;}
.v1_c00155{vertical-align:23.086200px;}
.ls3_c00155{letter-spacing:-0.009600px;}
.ls2_c00155{letter-spacing:0.000000px;}
.ls0_c00155{letter-spacing:0.006000px;}
.ls4_c00155{letter-spacing:0.012000px;}
.ls1_c00155{letter-spacing:4.870200px;}
.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;}
}
.ws3_c00155{word-spacing:-15.000000px;}
.ws0_c00155{word-spacing:-13.190400px;}
.ws2_c00155{word-spacing:-10.000001px;}
.ws1_c00155{word-spacing:-0.072000px;}
.ws4_c00155{word-spacing:0.000000px;}
._14_c00155{margin-left:-19.488000px;}
._a_c00155{margin-left:-7.077600px;}
._19_c00155{margin-left:-5.664000px;}
._b_c00155{margin-left:-4.291200px;}
._7_c00155{margin-left:-2.332800px;}
._4_c00155{margin-left:-1.159200px;}
._2_c00155{width:1.584000px;}
._0_c00155{width:2.808000px;}
._8_c00155{width:4.348800px;}
._11_c00155{width:5.443200px;}
._10_c00155{width:6.537600px;}
._d_c00155{width:8.035200px;}
._12_c00155{width:9.165600px;}
._e_c00155{width:10.526400px;}
._c_c00155{width:11.844000px;}
._9_c00155{width:13.240800px;}
._1_c00155{width:14.709600px;}
._3_c00155{width:15.940800px;}
._6_c00155{width:17.560800px;}
._5_c00155{width:18.648000px;}
._f_c00155{width:21.441600px;}
._13_c00155{width:24.341598px;}
._15_c00155{width:55.842000px;}
._16_c00155{width:57.090000px;}
._18_c00155{width:58.686000px;}
._1b_c00155{width:61.223160px;}
._17_c00155{width:62.941200px;}
._1a_c00155{width:64.350000px;}
.fc1_c00155{color:rgb(0,0,153);}
.fc0_c00155{color:rgb(0,0,0);}
.fs4_c00155{font-size:40.000002px;}
.fs1_c00155{font-size:48.000000px;}
.fs2_c00155{font-size:54.000000px;}
.fs3_c00155{font-size:60.000000px;}
.fs0_c00155{font-size:72.000000px;}
.y0_c00155{bottom:0.000000px;}
.yb_c00155{bottom:12.000000px;}
.y16_c00155{bottom:67.335000px;}
.y1c_c00155{bottom:131.835000px;}
.y1b_c00155{bottom:151.335000px;}
.y1a_c00155{bottom:174.585000px;}
.y19_c00155{bottom:215.835000px;}
.y18_c00155{bottom:235.335000px;}
.y17_c00155{bottom:258.585000px;}
.y14_c00155{bottom:316.335000px;}
.y13_c00155{bottom:343.335000px;}
.y12_c00155{bottom:391.335000px;}
.y11_c00155{bottom:418.335000px;}
.y10_c00155{bottom:445.335000px;}
.yf_c00155{bottom:472.335000px;}
.ye_c00155{bottom:499.335000px;}
.yd_c00155{bottom:526.335000px;}
.yc_c00155{bottom:553.335000px;}
.ya_c00155{bottom:593.835000px;}
.y9_c00155{bottom:857.835000px;}
.y8_c00155{bottom:884.835000px;}
.y7_c00155{bottom:911.835000px;}
.y6_c00155{bottom:938.835000px;}
.y5_c00155{bottom:965.835000px;}
.y4_c00155{bottom:992.835000px;}
.y3_c00155{bottom:1019.835000px;}
.y2_c00155{bottom:1067.835000px;}
.y1_c00155{bottom:1094.835000px;}
.y15_c00155{bottom:1193.835000px;}
.h9_c00155{height:27.480470px;}
.ha_c00155{height:41.220703px;}
.h6_c00155{height:41.633789px;}
.h8_c00155{height:44.208984px;}
.h3_c00155{height:51.257812px;}
.h7_c00155{height:56.074219px;}
.h4_c00155{height:57.258075px;}
.h5_c00155{height:232.500000px;}
.h2_c00155{height:1261.500000px;}
.h0_c00155{height:1262.835000px;}
.h1_c00155{height:1263.000000px;}
.w3_c00155{width:676.935000px;}
.w2_c00155{width:892.500000px;}
.w0_c00155{width:892.935000px;}
.w1_c00155{width:893.250000px;}
.x0_c00155{left:0.000000px;}
.x1_c00155{left:65.480310px;}
.x2_c00155{left:82.491525px;}
@media print{
.v2_c00155{vertical-align:-20.521067pt;}
.v3_c00155{vertical-align:-13.333333pt;}
.v0_c00155{vertical-align:0.000000pt;}
.v1_c00155{vertical-align:20.521067pt;}
.ls3_c00155{letter-spacing:-0.008533pt;}
.ls2_c00155{letter-spacing:0.000000pt;}
.ls0_c00155{letter-spacing:0.005333pt;}
.ls4_c00155{letter-spacing:0.010667pt;}
.ls1_c00155{letter-spacing:4.329067pt;}
.ws3_c00155{word-spacing:-13.333333pt;}
.ws0_c00155{word-spacing:-11.724800pt;}
.ws2_c00155{word-spacing:-8.888889pt;}
.ws1_c00155{word-spacing:-0.064000pt;}
.ws4_c00155{word-spacing:0.000000pt;}
._14_c00155{margin-left:-17.322667pt;}
._a_c00155{margin-left:-6.291200pt;}
._19_c00155{margin-left:-5.034667pt;}
._b_c00155{margin-left:-3.814400pt;}
._7_c00155{margin-left:-2.073600pt;}
._4_c00155{margin-left:-1.030400pt;}
._2_c00155{width:1.408000pt;}
._0_c00155{width:2.496000pt;}
._8_c00155{width:3.865600pt;}
._11_c00155{width:4.838400pt;}
._10_c00155{width:5.811200pt;}
._d_c00155{width:7.142400pt;}
._12_c00155{width:8.147200pt;}
._e_c00155{width:9.356800pt;}
._c_c00155{width:10.528000pt;}
._9_c00155{width:11.769600pt;}
._1_c00155{width:13.075200pt;}
._3_c00155{width:14.169600pt;}
._6_c00155{width:15.609600pt;}
._5_c00155{width:16.576000pt;}
._f_c00155{width:19.059200pt;}
._13_c00155{width:21.636976pt;}
._15_c00155{width:49.637333pt;}
._16_c00155{width:50.746667pt;}
._18_c00155{width:52.165333pt;}
._1b_c00155{width:54.420587pt;}
._17_c00155{width:55.947733pt;}
._1a_c00155{width:57.200000pt;}
.fs4_c00155{font-size:35.555557pt;}
.fs1_c00155{font-size:42.666667pt;}
.fs2_c00155{font-size:48.000000pt;}
.fs3_c00155{font-size:53.333333pt;}
.fs0_c00155{font-size:64.000000pt;}
.y0_c00155{bottom:0.000000pt;}
.yb_c00155{bottom:10.666667pt;}
.y16_c00155{bottom:59.853333pt;}
.y1c_c00155{bottom:117.186667pt;}
.y1b_c00155{bottom:134.520000pt;}
.y1a_c00155{bottom:155.186667pt;}
.y19_c00155{bottom:191.853333pt;}
.y18_c00155{bottom:209.186667pt;}
.y17_c00155{bottom:229.853333pt;}
.y14_c00155{bottom:281.186667pt;}
.y13_c00155{bottom:305.186667pt;}
.y12_c00155{bottom:347.853333pt;}
.y11_c00155{bottom:371.853333pt;}
.y10_c00155{bottom:395.853333pt;}
.yf_c00155{bottom:419.853333pt;}
.ye_c00155{bottom:443.853333pt;}
.yd_c00155{bottom:467.853333pt;}
.yc_c00155{bottom:491.853333pt;}
.ya_c00155{bottom:527.853333pt;}
.y9_c00155{bottom:762.520000pt;}
.y8_c00155{bottom:786.520000pt;}
.y7_c00155{bottom:810.520000pt;}
.y6_c00155{bottom:834.520000pt;}
.y5_c00155{bottom:858.520000pt;}
.y4_c00155{bottom:882.520000pt;}
.y3_c00155{bottom:906.520000pt;}
.y2_c00155{bottom:949.186667pt;}
.y1_c00155{bottom:973.186667pt;}
.y15_c00155{bottom:1061.186667pt;}
.h9_c00155{height:24.427085pt;}
.ha_c00155{height:36.640625pt;}
.h6_c00155{height:37.007812pt;}
.h8_c00155{height:39.296875pt;}
.h3_c00155{height:45.562500pt;}
.h7_c00155{height:49.843750pt;}
.h4_c00155{height:50.896067pt;}
.h5_c00155{height:206.666667pt;}
.h2_c00155{height:1121.333333pt;}
.h0_c00155{height:1122.520000pt;}
.h1_c00155{height:1122.666667pt;}
.w3_c00155{width:601.720000pt;}
.w2_c00155{width:793.333333pt;}
.w0_c00155{width:793.720000pt;}
.w1_c00155{width:794.000000pt;}
.x0_c00155{left:0.000000pt;}
.x1_c00155{left:58.204720pt;}
.x2_c00155{left:73.325800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7c3ea5b86b4132c857766654.woff2')format("woff");}.ff1_c00156{font-family:ff1_c00156;line-height:0.934082;font-style:normal;font-weight:normal;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_25b0726ba469cdbd76d7c3cc.woff2')format("woff");}.ff2_c00156{font-family:ff2_c00156;line-height:0.963867;font-style:normal;font-weight:normal;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_e9b71a1a0e75b3312ca9a4a7.woff2')format("woff");}.ff3_c00156{font-family:ff3_c00156;line-height:0.888672;font-style:normal;font-weight:normal;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_f5d0bd4dbcc21a576972d972.woff2')format("woff");}.ff4_c00156{font-family:ff4_c00156;line-height:0.956543;font-style:normal;font-weight:normal;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_63c28ecf102f472a276d9fe2.woff2')format("woff");}.ff5_c00156{font-family:ff5_c00156;line-height:0.903320;font-style: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);}
.v2_c00156{vertical-align:-15.000000px;}
.v0_c00156{vertical-align:0.000000px;}
.v1_c00156{vertical-align:23.086200px;}
.ls2_c00156{letter-spacing:-0.009600px;}
.ls1_c00156{letter-spacing:0.000000px;}
.ls0_c00156{letter-spacing:0.012000px;}
.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;}
}
.ws2_c00156{word-spacing:-15.000000px;}
.ws0_c00156{word-spacing:-13.190400px;}
.ws1_c00156{word-spacing:-10.000001px;}
.ws3_c00156{word-spacing:0.000000px;}
._1c_c00156{margin-left:-18.524802px;}
._18_c00156{margin-left:-7.812000px;}
._e_c00156{margin-left:-6.717600px;}
._21_c00156{margin-left:-5.664000px;}
._4_c00156{margin-left:-4.449600px;}
._b_c00156{margin-left:-3.016800px;}
._1_c00156{margin-left:-1.944000px;}
._3_c00156{width:1.576800px;}
._0_c00156{width:2.786400px;}
._2_c00156{width:4.766400px;}
._11_c00156{width:6.062400px;}
._5_c00156{width:7.070400px;}
._1b_c00156{width:8.474400px;}
._1a_c00156{width:9.496800px;}
._19_c00156{width:12.067200px;}
._9_c00156{width:15.595200px;}
._a_c00156{width:17.510400px;}
._7_c00156{width:20.937600px;}
._10_c00156{width:22.248000px;}
._6_c00156{width:23.385600px;}
._8_c00156{width:25.344000px;}
._d_c00156{width:26.625600px;}
._c_c00156{width:28.108800px;}
._f_c00156{width:29.505600px;}
._17_c00156{width:31.046400px;}
._16_c00156{width:32.976000px;}
._14_c00156{width:34.214400px;}
._13_c00156{width:35.762400px;}
._12_c00156{width:37.735200px;}
._15_c00156{width:38.844000px;}
._1d_c00156{width:55.863600px;}
._1e_c00156{width:57.097200px;}
._20_c00156{width:58.686000px;}
._23_c00156{width:61.518600px;}
._1f_c00156{width:63.099600px;}
._22_c00156{width:64.350000px;}
.fc1_c00156{color:rgb(0,0,153);}
.fc0_c00156{color:rgb(0,0,0);}
.fs4_c00156{font-size:40.000002px;}
.fs2_c00156{font-size:48.000000px;}
.fs1_c00156{font-size:54.000000px;}
.fs3_c00156{font-size:60.000000px;}
.fs0_c00156{font-size:72.000000px;}
.y0_c00156{bottom:0.000000px;}
.y5_c00156{bottom:12.000000px;}
.y14_c00156{bottom:67.335000px;}
.y17_c00156{bottom:131.835000px;}
.y16_c00156{bottom:151.335000px;}
.y15_c00156{bottom:174.585000px;}
.y12_c00156{bottom:242.835000px;}
.y11_c00156{bottom:269.835000px;}
.y10_c00156{bottom:296.835000px;}
.yf_c00156{bottom:323.835000px;}
.ye_c00156{bottom:371.835000px;}
.yd_c00156{bottom:398.835000px;}
.yc_c00156{bottom:425.835000px;}
.yb_c00156{bottom:452.835000px;}
.ya_c00156{bottom:479.835000px;}
.y9_c00156{bottom:527.835000px;}
.y8_c00156{bottom:554.835000px;}
.y7_c00156{bottom:581.835000px;}
.y6_c00156{bottom:608.835000px;}
.y4_c00156{bottom:653.835000px;}
.y3_c00156{bottom:1040.835000px;}
.y2_c00156{bottom:1067.835000px;}
.y1_c00156{bottom:1094.835000px;}
.y13_c00156{bottom:1193.835000px;}
.h8_c00156{height:27.421876px;}
.h9_c00156{height:41.132812px;}
.h5_c00156{height:41.633789px;}
.h7_c00156{height:44.121094px;}
.h3_c00156{height:51.257812px;}
.h6_c00156{height:57.258075px;}
.h4_c00156{height:355.500000px;}
.h2_c00156{height:1261.500000px;}
.h0_c00156{height:1262.835000px;}
.h1_c00156{height:1263.000000px;}
.w3_c00156{width:676.935000px;}
.w2_c00156{width:892.500000px;}
.w0_c00156{width:892.935000px;}
.w1_c00156{width:893.250000px;}
.x0_c00156{left:0.000000px;}
.x1_c00156{left:150.519750px;}
.x2_c00156{left:168.059700px;}
.x3_c00156{left:380.516100px;}
.x4_c00156{left:802.427700px;}
@media print{
.v2_c00156{vertical-align:-13.333333pt;}
.v0_c00156{vertical-align:0.000000pt;}
.v1_c00156{vertical-align:20.521067pt;}
.ls2_c00156{letter-spacing:-0.008533pt;}
.ls1_c00156{letter-spacing:0.000000pt;}
.ls0_c00156{letter-spacing:0.010667pt;}
.ws2_c00156{word-spacing:-13.333333pt;}
.ws0_c00156{word-spacing:-11.724800pt;}
.ws1_c00156{word-spacing:-8.888889pt;}
.ws3_c00156{word-spacing:0.000000pt;}
._1c_c00156{margin-left:-16.466491pt;}
._18_c00156{margin-left:-6.944000pt;}
._e_c00156{margin-left:-5.971200pt;}
._21_c00156{margin-left:-5.034667pt;}
._4_c00156{margin-left:-3.955200pt;}
._b_c00156{margin-left:-2.681600pt;}
._1_c00156{margin-left:-1.728000pt;}
._3_c00156{width:1.401600pt;}
._0_c00156{width:2.476800pt;}
._2_c00156{width:4.236800pt;}
._11_c00156{width:5.388800pt;}
._5_c00156{width:6.284800pt;}
._1b_c00156{width:7.532800pt;}
._1a_c00156{width:8.441600pt;}
._19_c00156{width:10.726400pt;}
._9_c00156{width:13.862400pt;}
._a_c00156{width:15.564800pt;}
._7_c00156{width:18.611200pt;}
._10_c00156{width:19.776000pt;}
._6_c00156{width:20.787200pt;}
._8_c00156{width:22.528000pt;}
._d_c00156{width:23.667200pt;}
._c_c00156{width:24.985600pt;}
._f_c00156{width:26.227200pt;}
._17_c00156{width:27.596800pt;}
._16_c00156{width:29.312000pt;}
._14_c00156{width:30.412800pt;}
._13_c00156{width:31.788800pt;}
._12_c00156{width:33.542400pt;}
._15_c00156{width:34.528000pt;}
._1d_c00156{width:49.656533pt;}
._1e_c00156{width:50.753067pt;}
._20_c00156{width:52.165333pt;}
._23_c00156{width:54.683200pt;}
._1f_c00156{width:56.088533pt;}
._22_c00156{width:57.200000pt;}
.fs4_c00156{font-size:35.555557pt;}
.fs2_c00156{font-size:42.666667pt;}
.fs1_c00156{font-size:48.000000pt;}
.fs3_c00156{font-size:53.333333pt;}
.fs0_c00156{font-size:64.000000pt;}
.y0_c00156{bottom:0.000000pt;}
.y5_c00156{bottom:10.666667pt;}
.y14_c00156{bottom:59.853333pt;}
.y17_c00156{bottom:117.186667pt;}
.y16_c00156{bottom:134.520000pt;}
.y15_c00156{bottom:155.186667pt;}
.y12_c00156{bottom:215.853333pt;}
.y11_c00156{bottom:239.853333pt;}
.y10_c00156{bottom:263.853333pt;}
.yf_c00156{bottom:287.853333pt;}
.ye_c00156{bottom:330.520000pt;}
.yd_c00156{bottom:354.520000pt;}
.yc_c00156{bottom:378.520000pt;}
.yb_c00156{bottom:402.520000pt;}
.ya_c00156{bottom:426.520000pt;}
.y9_c00156{bottom:469.186667pt;}
.y8_c00156{bottom:493.186667pt;}
.y7_c00156{bottom:517.186667pt;}
.y6_c00156{bottom:541.186667pt;}
.y4_c00156{bottom:581.186667pt;}
.y3_c00156{bottom:925.186667pt;}
.y2_c00156{bottom:949.186667pt;}
.y1_c00156{bottom:973.186667pt;}
.y13_c00156{bottom:1061.186667pt;}
.h8_c00156{height:24.375001pt;}
.h9_c00156{height:36.562500pt;}
.h5_c00156{height:37.007812pt;}
.h7_c00156{height:39.218750pt;}
.h3_c00156{height:45.562500pt;}
.h6_c00156{height:50.896067pt;}
.h4_c00156{height:316.000000pt;}
.h2_c00156{height:1121.333333pt;}
.h0_c00156{height:1122.520000pt;}
.h1_c00156{height:1122.666667pt;}
.w3_c00156{width:601.720000pt;}
.w2_c00156{width:793.333333pt;}
.w0_c00156{width:793.720000pt;}
.w1_c00156{width:794.000000pt;}
.x0_c00156{left:0.000000pt;}
.x1_c00156{left:133.795333pt;}
.x2_c00156{left:149.386400pt;}
.x3_c00156{left:338.236533pt;}
.x4_c00156{left:713.269067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a33075733413776749401aa3.woff2')format("woff");}.ff1_c00157{font-family:ff1_c00157;line-height:0.934082;font-style:normal;font-weight:normal;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_b6bbe2b8de60f3603192c301.woff2')format("woff");}.ff2_c00157{font-family:ff2_c00157;line-height:0.888672;font-style:normal;font-weight:normal;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_5bf4e9235eab864335c50491.woff2')format("woff");}.ff3_c00157{font-family:ff3_c00157;line-height:0.976074;font-style:normal;font-weight:normal;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_082c1d139aeb03dae951e106.woff2')format("woff");}.ff4_c00157{font-family:ff4_c00157;line-height:0.755859;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00157;src:url('chunks/assets/font_4fe5437e378d1bf0b6df10eb.woff2')format("woff");}.ff5_c00157{font-family:ff5_c00157;line-height:1.155762;font-style:normal;font-weight: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_c00157;src:url('chunks/assets/font_a2dbcf9c8a974febcfb95748.woff2')format("woff");}.ff6_c00157{font-family:ff6_c00157;line-height:0.903320;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00157{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00157{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00157{vertical-align:-23.086200px;}
.v3_c00157{vertical-align:-15.000000px;}
.v0_c00157{vertical-align:0.000000px;}
.v1_c00157{vertical-align:23.086200px;}
.ls1_c00157{letter-spacing:-0.009600px;}
.ls0_c00157{letter-spacing:0.000000px;}
.ls2_c00157{letter-spacing:0.012000px;}
.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:-15.000000px;}
.ws0_c00157{word-spacing:-13.190400px;}
.ws1_c00157{word-spacing:-10.000001px;}
.ws3_c00157{word-spacing:0.000000px;}
._13_c00157{margin-left:-19.488000px;}
._10_c00157{margin-left:-10.216800px;}
._7_c00157{margin-left:-7.128000px;}
._17_c00157{margin-left:-5.490000px;}
._d_c00157{margin-left:-4.377600px;}
._0_c00157{margin-left:-3.261600px;}
._2_c00157{margin-left:-1.231200px;}
._4_c00157{width:1.137600px;}
._8_c00157{width:2.995200px;}
._f_c00157{width:4.010400px;}
._5_c00157{width:5.047200px;}
._6_c00157{width:6.141600px;}
._3_c00157{width:7.372800px;}
._1_c00157{width:9.410400px;}
._c_c00157{width:11.296800px;}
._a_c00157{width:12.549600px;}
._b_c00157{width:13.672800px;}
._9_c00157{width:15.746400px;}
._e_c00157{width:17.114400px;}
._11_c00157{width:18.684000px;}
._12_c00157{width:24.319998px;}
._14_c00157{width:51.586800px;}
._15_c00157{width:54.612000px;}
._16_c00157{width:55.813200px;}
._18_c00157{width:60.120000px;}
.fc1_c00157{color:rgb(0,0,153);}
.fc0_c00157{color:rgb(0,0,0);}
.fs4_c00157{font-size:40.000002px;}
.fs1_c00157{font-size:48.000000px;}
.fs2_c00157{font-size:54.000000px;}
.fs3_c00157{font-size:60.000000px;}
.fs0_c00157{font-size:72.000000px;}
.y0_c00157{bottom:0.000000px;}
.ya_c00157{bottom:10.500000px;}
.y9_c00157{bottom:27.000000px;}
.y8_c00157{bottom:45.000000px;}
.y15_c00157{bottom:67.335000px;}
.y18_c00157{bottom:131.835000px;}
.y17_c00157{bottom:151.335000px;}
.y16_c00157{bottom:174.585000px;}
.y13_c00157{bottom:220.335000px;}
.y12_c00157{bottom:247.335000px;}
.y11_c00157{bottom:274.335000px;}
.y10_c00157{bottom:301.335000px;}
.yf_c00157{bottom:349.335000px;}
.ye_c00157{bottom:376.335000px;}
.yd_c00157{bottom:403.335000px;}
.yc_c00157{bottom:430.335000px;}
.yb_c00157{bottom:457.335000px;}
.y7_c00157{bottom:497.835000px;}
.y6_c00157{bottom:938.835000px;}
.y5_c00157{bottom:965.835000px;}
.y4_c00157{bottom:992.835000px;}
.y3_c00157{bottom:1019.835000px;}
.y2_c00157{bottom:1067.835000px;}
.y1_c00157{bottom:1094.835000px;}
.y14_c00157{bottom:1193.835000px;}
.h9_c00157{height:27.421876px;}
.ha_c00157{height:41.132812px;}
.h6_c00157{height:42.292969px;}
.h8_c00157{height:44.208984px;}
.h3_c00157{height:51.257812px;}
.h7_c00157{height:56.074219px;}
.h4_c00157{height:57.258075px;}
.h5_c00157{height:409.500000px;}
.h2_c00157{height:1261.500000px;}
.h0_c00157{height:1262.835000px;}
.h1_c00157{height:1263.000000px;}
.w3_c00157{width:676.935000px;}
.w2_c00157{width:892.500000px;}
.w0_c00157{width:892.935000px;}
.w1_c00157{width:893.250000px;}
.x0_c00157{left:0.000000px;}
.x2_c00157{left:23.755320px;}
.x3_c00157{left:30.933795px;}
.x1_c00157{left:65.480310px;}
.x4_c00157{left:158.781750px;}
@media print{
.v2_c00157{vertical-align:-20.521067pt;}
.v3_c00157{vertical-align:-13.333333pt;}
.v0_c00157{vertical-align:0.000000pt;}
.v1_c00157{vertical-align:20.521067pt;}
.ls1_c00157{letter-spacing:-0.008533pt;}
.ls0_c00157{letter-spacing:0.000000pt;}
.ls2_c00157{letter-spacing:0.010667pt;}
.ws2_c00157{word-spacing:-13.333333pt;}
.ws0_c00157{word-spacing:-11.724800pt;}
.ws1_c00157{word-spacing:-8.888889pt;}
.ws3_c00157{word-spacing:0.000000pt;}
._13_c00157{margin-left:-17.322667pt;}
._10_c00157{margin-left:-9.081600pt;}
._7_c00157{margin-left:-6.336000pt;}
._17_c00157{margin-left:-4.880000pt;}
._d_c00157{margin-left:-3.891200pt;}
._0_c00157{margin-left:-2.899200pt;}
._2_c00157{margin-left:-1.094400pt;}
._4_c00157{width:1.011200pt;}
._8_c00157{width:2.662400pt;}
._f_c00157{width:3.564800pt;}
._5_c00157{width:4.486400pt;}
._6_c00157{width:5.459200pt;}
._3_c00157{width:6.553600pt;}
._1_c00157{width:8.364800pt;}
._c_c00157{width:10.041600pt;}
._a_c00157{width:11.155200pt;}
._b_c00157{width:12.153600pt;}
._9_c00157{width:13.996800pt;}
._e_c00157{width:15.212800pt;}
._11_c00157{width:16.608000pt;}
._12_c00157{width:21.617776pt;}
._14_c00157{width:45.854933pt;}
._15_c00157{width:48.544000pt;}
._16_c00157{width:49.611733pt;}
._18_c00157{width:53.440000pt;}
.fs4_c00157{font-size:35.555557pt;}
.fs1_c00157{font-size:42.666667pt;}
.fs2_c00157{font-size:48.000000pt;}
.fs3_c00157{font-size:53.333333pt;}
.fs0_c00157{font-size:64.000000pt;}
.y0_c00157{bottom:0.000000pt;}
.ya_c00157{bottom:9.333333pt;}
.y9_c00157{bottom:24.000000pt;}
.y8_c00157{bottom:40.000000pt;}
.y15_c00157{bottom:59.853333pt;}
.y18_c00157{bottom:117.186667pt;}
.y17_c00157{bottom:134.520000pt;}
.y16_c00157{bottom:155.186667pt;}
.y13_c00157{bottom:195.853333pt;}
.y12_c00157{bottom:219.853333pt;}
.y11_c00157{bottom:243.853333pt;}
.y10_c00157{bottom:267.853333pt;}
.yf_c00157{bottom:310.520000pt;}
.ye_c00157{bottom:334.520000pt;}
.yd_c00157{bottom:358.520000pt;}
.yc_c00157{bottom:382.520000pt;}
.yb_c00157{bottom:406.520000pt;}
.y7_c00157{bottom:442.520000pt;}
.y6_c00157{bottom:834.520000pt;}
.y5_c00157{bottom:858.520000pt;}
.y4_c00157{bottom:882.520000pt;}
.y3_c00157{bottom:906.520000pt;}
.y2_c00157{bottom:949.186667pt;}
.y1_c00157{bottom:973.186667pt;}
.y14_c00157{bottom:1061.186667pt;}
.h9_c00157{height:24.375001pt;}
.ha_c00157{height:36.562500pt;}
.h6_c00157{height:37.593750pt;}
.h8_c00157{height:39.296875pt;}
.h3_c00157{height:45.562500pt;}
.h7_c00157{height:49.843750pt;}
.h4_c00157{height:50.896067pt;}
.h5_c00157{height:364.000000pt;}
.h2_c00157{height:1121.333333pt;}
.h0_c00157{height:1122.520000pt;}
.h1_c00157{height:1122.666667pt;}
.w3_c00157{width:601.720000pt;}
.w2_c00157{width:793.333333pt;}
.w0_c00157{width:793.720000pt;}
.w1_c00157{width:794.000000pt;}
.x0_c00157{left:0.000000pt;}
.x2_c00157{left:21.115840pt;}
.x3_c00157{left:27.496707pt;}
.x1_c00157{left:58.204720pt;}
.x4_c00157{left:141.139333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c5645605d0655790222a59e9.woff2')format("woff");}.ff1_c00158{font-family:ff1_c00158;line-height:0.934082;font-style:normal;font-weight:normal;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_31d89a888ca8d6b9291b7011.woff2')format("woff");}.ff2_c00158{font-family:ff2_c00158;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00158;src:url('chunks/assets/font_0591c1b5a9ddb9ae8483d211.woff2')format("woff");}.ff3_c00158{font-family:ff3_c00158;line-height:0.975586;font-style:normal;font-weight:normal;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_6cdabf3800a10159015d13eb.woff2')format("woff");}.ff4_c00158{font-family:ff4_c00158;line-height:0.892578;font-style:normal;font-weight:normal;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_3d78f77dcf05e932534ce2cf.woff2')format("woff");}.ff5_c00158{font-family:ff5_c00158;line-height:0.956543;font-style:normal;font-weight: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_c00158;src:url('chunks/assets/font_e2e2a955e193a966bb2c8b97.woff2')format("woff");}.ff6_c00158{font-family:ff6_c00158;line-height:0.904785;font-style: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);}
.v2_c00158{vertical-align:-23.086200px;}
.v3_c00158{vertical-align:-15.000000px;}
.v0_c00158{vertical-align:0.000000px;}
.v1_c00158{vertical-align:23.086200px;}
.ls4_c00158{letter-spacing:-0.009600px;}
.ls3_c00158{letter-spacing:0.000000px;}
.ls1_c00158{letter-spacing:0.007200px;}
.ls2_c00158{letter-spacing:0.012000px;}
.ls0_c00158{letter-spacing:2.200800px;}
.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:-15.000000px;}
.ws0_c00158{word-spacing:-13.190400px;}
.ws1_c00158{word-spacing:-10.000001px;}
.ws3_c00158{word-spacing:0.000000px;}
._14_c00158{margin-left:-20.495202px;}
._1_c00158{margin-left:-7.200000px;}
._13_c00158{margin-left:-5.464800px;}
._9_c00158{margin-left:-3.657600px;}
._7_c00158{margin-left:-2.649600px;}
._4_c00158{margin-left:-1.605600px;}
._2_c00158{width:1.216800px;}
._6_c00158{width:2.534400px;}
._3_c00158{width:3.960000px;}
._0_c00158{width:5.241600px;}
._5_c00158{width:6.912000px;}
._8_c00158{width:7.992000px;}
._a_c00158{width:10.807200px;}
._c_c00158{width:12.412800px;}
._d_c00158{width:14.018400px;}
._b_c00158{width:16.646400px;}
._f_c00158{width:18.266400px;}
._10_c00158{width:21.967200px;}
._e_c00158{width:23.205600px;}
._12_c00158{width:25.056000px;}
._11_c00158{width:26.330400px;}
._15_c00158{width:55.839600px;}
._16_c00158{width:57.181200px;}
._18_c00158{width:58.410000px;}
._17_c00158{width:62.031600px;}
._19_c00158{width:64.454400px;}
.fc1_c00158{color:rgb(0,0,153);}
.fc0_c00158{color:rgb(0,0,0);}
.fs4_c00158{font-size:40.000002px;}
.fs1_c00158{font-size:48.000000px;}
.fs2_c00158{font-size:54.000000px;}
.fs3_c00158{font-size:60.000000px;}
.fs0_c00158{font-size:72.000000px;}
.y0_c00158{bottom:0.000000px;}
.yf_c00158{bottom:12.000000px;}
.y15_c00158{bottom:67.335000px;}
.y18_c00158{bottom:131.835000px;}
.y17_c00158{bottom:151.335000px;}
.y16_c00158{bottom:174.585000px;}
.y13_c00158{bottom:218.835000px;}
.y12_c00158{bottom:245.835000px;}
.y11_c00158{bottom:272.835000px;}
.y10_c00158{bottom:319.335000px;}
.ye_c00158{bottom:380.835000px;}
.yd_c00158{bottom:728.835000px;}
.yc_c00158{bottom:755.835000px;}
.yb_c00158{bottom:782.835000px;}
.ya_c00158{bottom:809.835000px;}
.y9_c00158{bottom:857.835000px;}
.y8_c00158{bottom:884.835000px;}
.y7_c00158{bottom:911.835000px;}
.y6_c00158{bottom:938.835000px;}
.y5_c00158{bottom:965.835000px;}
.y4_c00158{bottom:992.835000px;}
.y3_c00158{bottom:1019.835000px;}
.y2_c00158{bottom:1067.835000px;}
.y1_c00158{bottom:1094.835000px;}
.y14_c00158{bottom:1193.835000px;}
.h9_c00158{height:27.480470px;}
.ha_c00158{height:41.220703px;}
.h6_c00158{height:41.633789px;}
.h8_c00158{height:44.121094px;}
.h3_c00158{height:51.257812px;}
.h7_c00158{height:51.539062px;}
.h4_c00158{height:57.258075px;}
.h5_c00158{height:316.500000px;}
.h2_c00158{height:1261.500000px;}
.h0_c00158{height:1262.835000px;}
.h1_c00158{height:1263.000000px;}
.w3_c00158{width:676.934850px;}
.w2_c00158{width:892.500000px;}
.w0_c00158{width:892.935000px;}
.w1_c00158{width:893.250000px;}
.x0_c00158{left:0.000000px;}
.x1_c00158{left:150.519750px;}
.x2_c00158{left:186.444150px;}
.x3_c00158{left:380.516100px;}
.x4_c00158{left:802.427700px;}
@media print{
.v2_c00158{vertical-align:-20.521067pt;}
.v3_c00158{vertical-align:-13.333333pt;}
.v0_c00158{vertical-align:0.000000pt;}
.v1_c00158{vertical-align:20.521067pt;}
.ls4_c00158{letter-spacing:-0.008533pt;}
.ls3_c00158{letter-spacing:0.000000pt;}
.ls1_c00158{letter-spacing:0.006400pt;}
.ls2_c00158{letter-spacing:0.010667pt;}
.ls0_c00158{letter-spacing:1.956267pt;}
.ws2_c00158{word-spacing:-13.333333pt;}
.ws0_c00158{word-spacing:-11.724800pt;}
.ws1_c00158{word-spacing:-8.888889pt;}
.ws3_c00158{word-spacing:0.000000pt;}
._14_c00158{margin-left:-18.217957pt;}
._1_c00158{margin-left:-6.400000pt;}
._13_c00158{margin-left:-4.857600pt;}
._9_c00158{margin-left:-3.251200pt;}
._7_c00158{margin-left:-2.355200pt;}
._4_c00158{margin-left:-1.427200pt;}
._2_c00158{width:1.081600pt;}
._6_c00158{width:2.252800pt;}
._3_c00158{width:3.520000pt;}
._0_c00158{width:4.659200pt;}
._5_c00158{width:6.144000pt;}
._8_c00158{width:7.104000pt;}
._a_c00158{width:9.606400pt;}
._c_c00158{width:11.033600pt;}
._d_c00158{width:12.460800pt;}
._b_c00158{width:14.796800pt;}
._f_c00158{width:16.236800pt;}
._10_c00158{width:19.526400pt;}
._e_c00158{width:20.627200pt;}
._12_c00158{width:22.272000pt;}
._11_c00158{width:23.404800pt;}
._15_c00158{width:49.635200pt;}
._16_c00158{width:50.827733pt;}
._18_c00158{width:51.920000pt;}
._17_c00158{width:55.139200pt;}
._19_c00158{width:57.292800pt;}
.fs4_c00158{font-size:35.555557pt;}
.fs1_c00158{font-size:42.666667pt;}
.fs2_c00158{font-size:48.000000pt;}
.fs3_c00158{font-size:53.333333pt;}
.fs0_c00158{font-size:64.000000pt;}
.y0_c00158{bottom:0.000000pt;}
.yf_c00158{bottom:10.666667pt;}
.y15_c00158{bottom:59.853333pt;}
.y18_c00158{bottom:117.186667pt;}
.y17_c00158{bottom:134.520000pt;}
.y16_c00158{bottom:155.186667pt;}
.y13_c00158{bottom:194.520000pt;}
.y12_c00158{bottom:218.520000pt;}
.y11_c00158{bottom:242.520000pt;}
.y10_c00158{bottom:283.853333pt;}
.ye_c00158{bottom:338.520000pt;}
.yd_c00158{bottom:647.853333pt;}
.yc_c00158{bottom:671.853333pt;}
.yb_c00158{bottom:695.853333pt;}
.ya_c00158{bottom:719.853333pt;}
.y9_c00158{bottom:762.520000pt;}
.y8_c00158{bottom:786.520000pt;}
.y7_c00158{bottom:810.520000pt;}
.y6_c00158{bottom:834.520000pt;}
.y5_c00158{bottom:858.520000pt;}
.y4_c00158{bottom:882.520000pt;}
.y3_c00158{bottom:906.520000pt;}
.y2_c00158{bottom:949.186667pt;}
.y1_c00158{bottom:973.186667pt;}
.y14_c00158{bottom:1061.186667pt;}
.h9_c00158{height:24.427085pt;}
.ha_c00158{height:36.640625pt;}
.h6_c00158{height:37.007812pt;}
.h8_c00158{height:39.218750pt;}
.h3_c00158{height:45.562500pt;}
.h7_c00158{height:45.812500pt;}
.h4_c00158{height:50.896067pt;}
.h5_c00158{height:281.333333pt;}
.h2_c00158{height:1121.333333pt;}
.h0_c00158{height:1122.520000pt;}
.h1_c00158{height:1122.666667pt;}
.w3_c00158{width:601.719867pt;}
.w2_c00158{width:793.333333pt;}
.w0_c00158{width:793.720000pt;}
.w1_c00158{width:794.000000pt;}
.x0_c00158{left:0.000000pt;}
.x1_c00158{left:133.795333pt;}
.x2_c00158{left:165.728133pt;}
.x3_c00158{left:338.236533pt;}
.x4_c00158{left:713.269067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6c2eea9ab17903cf278e1f68.woff2')format("woff");}.ff1_c00159{font-family:ff1_c00159;line-height:0.934082;font-style:normal;font-weight:normal;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_49e1d1ab786342c8ca8c6855.woff2')format("woff");}.ff2_c00159{font-family:ff2_c00159;line-height:0.963867;font-style:normal;font-weight:normal;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_093aa7decbb0b5e34b696dab.woff2')format("woff");}.ff3_c00159{font-family:ff3_c00159;line-height:0.755859;font-style:normal;font-weight:normal;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_25e3bd91aef18c68c11b91f0.woff2')format("woff");}.ff4_c00159{font-family:ff4_c00159;line-height:1.155762;font-style:normal;font-weight:normal;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_31e9dc44ba21b8a995ec63f4.woff2')format("woff");}.ff5_c00159{font-family:ff5_c00159;line-height:0.903320;font-style: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);}
.v2_c00159{vertical-align:-23.086200px;}
.v3_c00159{vertical-align:-15.000000px;}
.v0_c00159{vertical-align:0.000000px;}
.v1_c00159{vertical-align:23.086200px;}
.ls1_c00159{letter-spacing:-0.009600px;}
.ls0_c00159{letter-spacing:0.000000px;}
.ls2_c00159{letter-spacing:0.012000px;}
.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;}
}
.ws2_c00159{word-spacing:-15.000000px;}
.ws0_c00159{word-spacing:-13.190400px;}
.ws1_c00159{word-spacing:-10.000001px;}
.ws3_c00159{word-spacing:0.000000px;}
._1e_c00159{margin-left:-20.127600px;}
._1c_c00159{margin-left:-7.300800px;}
._1d_c00159{margin-left:-5.645202px;}
._c_c00159{margin-left:-3.859200px;}
._1_c00159{margin-left:-2.527200px;}
._9_c00159{margin-left:-1.260000px;}
._3_c00159{width:1.152000px;}
._5_c00159{width:2.556000px;}
._4_c00159{width:4.089600px;}
._0_c00159{width:5.356800px;}
._16_c00159{width:6.645600px;}
._2_c00159{width:7.826400px;}
._17_c00159{width:8.964000px;}
._7_c00159{width:10.432800px;}
._6_c00159{width:11.988000px;}
._b_c00159{width:13.392000px;}
._8_c00159{width:14.508000px;}
._a_c00159{width:15.818400px;}
._1a_c00159{width:17.337600px;}
._d_c00159{width:18.432000px;}
._1b_c00159{width:20.829600px;}
._14_c00159{width:21.859200px;}
._13_c00159{width:23.119200px;}
._15_c00159{width:24.372000px;}
._19_c00159{width:27.028800px;}
._18_c00159{width:28.072800px;}
._e_c00159{width:32.335200px;}
._10_c00159{width:33.768000px;}
._f_c00159{width:34.912800px;}
._12_c00159{width:36.172800px;}
._11_c00159{width:38.844000px;}
._1f_c00159{width:55.818000px;}
._20_c00159{width:57.246000px;}
._22_c00159{width:58.410000px;}
._23_c00159{width:60.943200px;}
._21_c00159{width:62.233200px;}
._24_c00159{width:63.995202px;}
.fc1_c00159{color:rgb(0,0,153);}
.fc0_c00159{color:rgb(0,0,0);}
.fs4_c00159{font-size:40.000002px;}
.fs1_c00159{font-size:48.000000px;}
.fs2_c00159{font-size:54.000000px;}
.fs3_c00159{font-size:60.000000px;}
.fs0_c00159{font-size:72.000000px;}
.y0_c00159{bottom:0.000000px;}
.y15_c00159{bottom:10.500000px;}
.y14_c00159{bottom:39.000000px;}
.y17_c00159{bottom:67.335000px;}
.y1a_c00159{bottom:131.835000px;}
.y19_c00159{bottom:151.335000px;}
.y18_c00159{bottom:174.585000px;}
.y13_c00159{bottom:211.335000px;}
.y12_c00159{bottom:593.835000px;}
.y11_c00159{bottom:620.835000px;}
.y10_c00159{bottom:647.835000px;}
.yf_c00159{bottom:674.835000px;}
.ye_c00159{bottom:701.835000px;}
.yd_c00159{bottom:728.835000px;}
.yc_c00159{bottom:755.835000px;}
.yb_c00159{bottom:782.835000px;}
.ya_c00159{bottom:809.835000px;}
.y9_c00159{bottom:857.835000px;}
.y8_c00159{bottom:884.835000px;}
.y7_c00159{bottom:911.835000px;}
.y6_c00159{bottom:938.835000px;}
.y5_c00159{bottom:965.835000px;}
.y4_c00159{bottom:1013.835000px;}
.y3_c00159{bottom:1040.835000px;}
.y2_c00159{bottom:1067.835000px;}
.y1_c00159{bottom:1094.835000px;}
.y16_c00159{bottom:1193.835000px;}
.h9_c00159{height:27.421876px;}
.ha_c00159{height:41.132812px;}
.h6_c00159{height:41.633789px;}
.h8_c00159{height:44.208984px;}
.h3_c00159{height:51.257812px;}
.h7_c00159{height:56.074219px;}
.h4_c00159{height:57.258075px;}
.h5_c00159{height:351.000000px;}
.h2_c00159{height:1261.500000px;}
.h0_c00159{height:1262.835000px;}
.h1_c00159{height:1263.000000px;}
.w3_c00159{width:676.934850px;}
.w2_c00159{width:892.500000px;}
.w0_c00159{width:892.935000px;}
.w1_c00159{width:893.250000px;}
.x0_c00159{left:0.000000px;}
.x1_c00159{left:65.480310px;}
.x2_c00159{left:119.379210px;}
.x3_c00159{left:159.193650px;}
@media print{
.v2_c00159{vertical-align:-20.521067pt;}
.v3_c00159{vertical-align:-13.333333pt;}
.v0_c00159{vertical-align:0.000000pt;}
.v1_c00159{vertical-align:20.521067pt;}
.ls1_c00159{letter-spacing:-0.008533pt;}
.ls0_c00159{letter-spacing:0.000000pt;}
.ls2_c00159{letter-spacing:0.010667pt;}
.ws2_c00159{word-spacing:-13.333333pt;}
.ws0_c00159{word-spacing:-11.724800pt;}
.ws1_c00159{word-spacing:-8.888889pt;}
.ws3_c00159{word-spacing:0.000000pt;}
._1e_c00159{margin-left:-17.891200pt;}
._1c_c00159{margin-left:-6.489600pt;}
._1d_c00159{margin-left:-5.017957pt;}
._c_c00159{margin-left:-3.430400pt;}
._1_c00159{margin-left:-2.246400pt;}
._9_c00159{margin-left:-1.120000pt;}
._3_c00159{width:1.024000pt;}
._5_c00159{width:2.272000pt;}
._4_c00159{width:3.635200pt;}
._0_c00159{width:4.761600pt;}
._16_c00159{width:5.907200pt;}
._2_c00159{width:6.956800pt;}
._17_c00159{width:7.968000pt;}
._7_c00159{width:9.273600pt;}
._6_c00159{width:10.656000pt;}
._b_c00159{width:11.904000pt;}
._8_c00159{width:12.896000pt;}
._a_c00159{width:14.060800pt;}
._1a_c00159{width:15.411200pt;}
._d_c00159{width:16.384000pt;}
._1b_c00159{width:18.515200pt;}
._14_c00159{width:19.430400pt;}
._13_c00159{width:20.550400pt;}
._15_c00159{width:21.664000pt;}
._19_c00159{width:24.025600pt;}
._18_c00159{width:24.953600pt;}
._e_c00159{width:28.742400pt;}
._10_c00159{width:30.016000pt;}
._f_c00159{width:31.033600pt;}
._12_c00159{width:32.153600pt;}
._11_c00159{width:34.528000pt;}
._1f_c00159{width:49.616000pt;}
._20_c00159{width:50.885333pt;}
._22_c00159{width:51.920000pt;}
._23_c00159{width:54.171733pt;}
._21_c00159{width:55.318400pt;}
._24_c00159{width:56.884624pt;}
.fs4_c00159{font-size:35.555557pt;}
.fs1_c00159{font-size:42.666667pt;}
.fs2_c00159{font-size:48.000000pt;}
.fs3_c00159{font-size:53.333333pt;}
.fs0_c00159{font-size:64.000000pt;}
.y0_c00159{bottom:0.000000pt;}
.y15_c00159{bottom:9.333333pt;}
.y14_c00159{bottom:34.666667pt;}
.y17_c00159{bottom:59.853333pt;}
.y1a_c00159{bottom:117.186667pt;}
.y19_c00159{bottom:134.520000pt;}
.y18_c00159{bottom:155.186667pt;}
.y13_c00159{bottom:187.853333pt;}
.y12_c00159{bottom:527.853333pt;}
.y11_c00159{bottom:551.853333pt;}
.y10_c00159{bottom:575.853333pt;}
.yf_c00159{bottom:599.853333pt;}
.ye_c00159{bottom:623.853333pt;}
.yd_c00159{bottom:647.853333pt;}
.yc_c00159{bottom:671.853333pt;}
.yb_c00159{bottom:695.853333pt;}
.ya_c00159{bottom:719.853333pt;}
.y9_c00159{bottom:762.520000pt;}
.y8_c00159{bottom:786.520000pt;}
.y7_c00159{bottom:810.520000pt;}
.y6_c00159{bottom:834.520000pt;}
.y5_c00159{bottom:858.520000pt;}
.y4_c00159{bottom:901.186667pt;}
.y3_c00159{bottom:925.186667pt;}
.y2_c00159{bottom:949.186667pt;}
.y1_c00159{bottom:973.186667pt;}
.y16_c00159{bottom:1061.186667pt;}
.h9_c00159{height:24.375001pt;}
.ha_c00159{height:36.562500pt;}
.h6_c00159{height:37.007812pt;}
.h8_c00159{height:39.296875pt;}
.h3_c00159{height:45.562500pt;}
.h7_c00159{height:49.843750pt;}
.h4_c00159{height:50.896067pt;}
.h5_c00159{height:312.000000pt;}
.h2_c00159{height:1121.333333pt;}
.h0_c00159{height:1122.520000pt;}
.h1_c00159{height:1122.666667pt;}
.w3_c00159{width:601.719867pt;}
.w2_c00159{width:793.333333pt;}
.w0_c00159{width:793.720000pt;}
.w1_c00159{width:794.000000pt;}
.x0_c00159{left:0.000000pt;}
.x1_c00159{left:58.204720pt;}
.x2_c00159{left:106.114853pt;}
.x3_c00159{left:141.505467pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4d9764334a25e9c72a59c9fa.woff2')format("woff");}.ff1_c00160{font-family:ff1_c00160;line-height:0.934082;font-style:normal;font-weight:normal;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_362f0d768563996d4e4278f2.woff2')format("woff");}.ff2_c00160{font-family:ff2_c00160;line-height:0.915527;font-style:normal;font-weight:normal;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_637d5fd6b40ce64dec232084.woff2')format("woff");}.ff3_c00160{font-family:ff3_c00160;line-height:0.956543;font-style:normal;font-weight:normal;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_4b6e86cd68ff22e68f5c455d.woff2')format("woff");}.ff4_c00160{font-family:ff4_c00160;line-height:0.903320;font-style: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);}
.v2_c00160{vertical-align:-15.000000px;}
.v0_c00160{vertical-align:0.000000px;}
.v1_c00160{vertical-align:23.086200px;}
.ls3_c00160{letter-spacing:-0.009600px;}
.ls2_c00160{letter-spacing:0.000000px;}
.ls1_c00160{letter-spacing:0.012000px;}
.ls0_c00160{letter-spacing:2.080800px;}
.sc__c00160{text-shadow:none;}
.sc0_c00160{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00160{-webkit-text-stroke:0px transparent;}
.sc0_c00160{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00160{word-spacing:-19.800000px;}
.ws3_c00160{word-spacing:-15.000000px;}
.ws1_c00160{word-spacing:-13.190400px;}
.ws2_c00160{word-spacing:-10.000001px;}
.ws4_c00160{word-spacing:0.000000px;}
._1e_c00160{margin-left:-19.468602px;}
._e_c00160{margin-left:-7.200000px;}
._17_c00160{margin-left:-5.472000px;}
._7_c00160{margin-left:-4.370400px;}
._3_c00160{margin-left:-3.081600px;}
._5_c00160{margin-left:-1.108800px;}
._d_c00160{width:1.281600px;}
._0_c00160{width:2.325600px;}
._15_c00160{width:4.038600px;}
._c_c00160{width:5.090400px;}
._1_c00160{width:6.523200px;}
._16_c00160{width:7.834200px;}
._2_c00160{width:8.841600px;}
._6_c00160{width:9.964800px;}
._4_c00160{width:11.988000px;}
._8_c00160{width:13.226400px;}
._b_c00160{width:14.313600px;}
._9_c00160{width:15.422400px;}
._a_c00160{width:17.395200px;}
._11_c00160{width:21.916800px;}
._10_c00160{width:23.025600px;}
._f_c00160{width:24.206400px;}
._13_c00160{width:25.293600px;}
._12_c00160{width:27.316800px;}
._14_c00160{width:28.620000px;}
._1c_c00160{width:30.650400px;}
._1b_c00160{width:32.832000px;}
._1d_c00160{width:33.940800px;}
._1a_c00160{width:35.985600px;}
._18_c00160{width:38.304000px;}
._19_c00160{width:40.104000px;}
._1f_c00160{width:56.048400px;}
._20_c00160{width:57.116400px;}
._22_c00160{width:58.410000px;}
._21_c00160{width:61.455600px;}
._24_c00160{width:62.798400px;}
._23_c00160{width:63.864000px;}
.fc1_c00160{color:rgb(0,0,153);}
.fc0_c00160{color:rgb(0,0,0);}
.fs4_c00160{font-size:40.000002px;}
.fs1_c00160{font-size:48.000000px;}
.fs2_c00160{font-size:54.000000px;}
.fs3_c00160{font-size:60.000000px;}
.fs0_c00160{font-size:72.000000px;}
.y0_c00160{bottom:0.000000px;}
.y9_c00160{bottom:12.000000px;}
.ye_c00160{bottom:67.335000px;}
.y11_c00160{bottom:131.835000px;}
.y10_c00160{bottom:151.335000px;}
.yf_c00160{bottom:174.585000px;}
.yc_c00160{bottom:220.335000px;}
.yb_c00160{bottom:247.335000px;}
.ya_c00160{bottom:274.335000px;}
.y8_c00160{bottom:319.335000px;}
.y7_c00160{bottom:911.835000px;}
.y6_c00160{bottom:959.835000px;}
.y5_c00160{bottom:986.835000px;}
.y4_c00160{bottom:1013.835000px;}
.y3_c00160{bottom:1040.835000px;}
.y2_c00160{bottom:1067.835000px;}
.y1_c00160{bottom:1094.835000px;}
.yd_c00160{bottom:1193.835000px;}
.h8_c00160{height:27.421876px;}
.h9_c00160{height:41.132812px;}
.h6_c00160{height:41.633789px;}
.h7_c00160{height:44.121094px;}
.h3_c00160{height:51.257812px;}
.h4_c00160{height:57.258075px;}
.h5_c00160{height:582.000000px;}
.h2_c00160{height:1261.500000px;}
.h0_c00160{height:1262.835000px;}
.h1_c00160{height:1263.000000px;}
.w3_c00160{width:676.934850px;}
.w2_c00160{width:892.500000px;}
.w0_c00160{width:892.935000px;}
.w1_c00160{width:893.250000px;}
.x0_c00160{left:0.000000px;}
.x1_c00160{left:150.519750px;}
.x2_c00160{left:243.756450px;}
.x3_c00160{left:380.516100px;}
.x4_c00160{left:802.427700px;}
@media print{
.v2_c00160{vertical-align:-13.333333pt;}
.v0_c00160{vertical-align:0.000000pt;}
.v1_c00160{vertical-align:20.521067pt;}
.ls3_c00160{letter-spacing:-0.008533pt;}
.ls2_c00160{letter-spacing:0.000000pt;}
.ls1_c00160{letter-spacing:0.010667pt;}
.ls0_c00160{letter-spacing:1.849600pt;}
.ws0_c00160{word-spacing:-17.600000pt;}
.ws3_c00160{word-spacing:-13.333333pt;}
.ws1_c00160{word-spacing:-11.724800pt;}
.ws2_c00160{word-spacing:-8.888889pt;}
.ws4_c00160{word-spacing:0.000000pt;}
._1e_c00160{margin-left:-17.305424pt;}
._e_c00160{margin-left:-6.400000pt;}
._17_c00160{margin-left:-4.864000pt;}
._7_c00160{margin-left:-3.884800pt;}
._3_c00160{margin-left:-2.739200pt;}
._5_c00160{margin-left:-0.985600pt;}
._d_c00160{width:1.139200pt;}
._0_c00160{width:2.067200pt;}
._15_c00160{width:3.589867pt;}
._c_c00160{width:4.524800pt;}
._1_c00160{width:5.798400pt;}
._16_c00160{width:6.963733pt;}
._2_c00160{width:7.859200pt;}
._6_c00160{width:8.857600pt;}
._4_c00160{width:10.656000pt;}
._8_c00160{width:11.756800pt;}
._b_c00160{width:12.723200pt;}
._9_c00160{width:13.708800pt;}
._a_c00160{width:15.462400pt;}
._11_c00160{width:19.481600pt;}
._10_c00160{width:20.467200pt;}
._f_c00160{width:21.516800pt;}
._13_c00160{width:22.483200pt;}
._12_c00160{width:24.281600pt;}
._14_c00160{width:25.440000pt;}
._1c_c00160{width:27.244800pt;}
._1b_c00160{width:29.184000pt;}
._1d_c00160{width:30.169600pt;}
._1a_c00160{width:31.987200pt;}
._18_c00160{width:34.048000pt;}
._19_c00160{width:35.648000pt;}
._1f_c00160{width:49.820800pt;}
._20_c00160{width:50.770133pt;}
._22_c00160{width:51.920000pt;}
._21_c00160{width:54.627200pt;}
._24_c00160{width:55.820800pt;}
._23_c00160{width:56.768000pt;}
.fs4_c00160{font-size:35.555557pt;}
.fs1_c00160{font-size:42.666667pt;}
.fs2_c00160{font-size:48.000000pt;}
.fs3_c00160{font-size:53.333333pt;}
.fs0_c00160{font-size:64.000000pt;}
.y0_c00160{bottom:0.000000pt;}
.y9_c00160{bottom:10.666667pt;}
.ye_c00160{bottom:59.853333pt;}
.y11_c00160{bottom:117.186667pt;}
.y10_c00160{bottom:134.520000pt;}
.yf_c00160{bottom:155.186667pt;}
.yc_c00160{bottom:195.853333pt;}
.yb_c00160{bottom:219.853333pt;}
.ya_c00160{bottom:243.853333pt;}
.y8_c00160{bottom:283.853333pt;}
.y7_c00160{bottom:810.520000pt;}
.y6_c00160{bottom:853.186667pt;}
.y5_c00160{bottom:877.186667pt;}
.y4_c00160{bottom:901.186667pt;}
.y3_c00160{bottom:925.186667pt;}
.y2_c00160{bottom:949.186667pt;}
.y1_c00160{bottom:973.186667pt;}
.yd_c00160{bottom:1061.186667pt;}
.h8_c00160{height:24.375001pt;}
.h9_c00160{height:36.562500pt;}
.h6_c00160{height:37.007812pt;}
.h7_c00160{height:39.218750pt;}
.h3_c00160{height:45.562500pt;}
.h4_c00160{height:50.896067pt;}
.h5_c00160{height:517.333333pt;}
.h2_c00160{height:1121.333333pt;}
.h0_c00160{height:1122.520000pt;}
.h1_c00160{height:1122.666667pt;}
.w3_c00160{width:601.719867pt;}
.w2_c00160{width:793.333333pt;}
.w0_c00160{width:793.720000pt;}
.w1_c00160{width:794.000000pt;}
.x0_c00160{left:0.000000pt;}
.x1_c00160{left:133.795333pt;}
.x2_c00160{left:216.672400pt;}
.x3_c00160{left:338.236533pt;}
.x4_c00160{left:713.269067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d34b9ce4a13b0506f2a1d887.woff2')format("woff");}.ff1_c00161{font-family:ff1_c00161;line-height:0.933105;font-style:normal;font-weight:normal;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_ec36776d5b8ccf6e5b13edb4.woff2')format("woff");}.ff2_c00161{font-family:ff2_c00161;line-height:0.963867;font-style:normal;font-weight:normal;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_49352a516310f14f35a8eb0e.woff2')format("woff");}.ff3_c00161{font-family:ff3_c00161;line-height:0.756836;font-style:normal;font-weight:normal;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_eb0cf80754d21dfac27d13aa.woff2')format("woff");}.ff4_c00161{font-family:ff4_c00161;line-height:1.155762;font-style:normal;font-weight:normal;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_9906b3a88d09f566fd028128.woff2')format("woff");}.ff5_c00161{font-family:ff5_c00161;line-height:0.903320;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00161{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00161{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00161{vertical-align:-23.086200px;}
.v3_c00161{vertical-align:-15.000000px;}
.v0_c00161{vertical-align:0.000000px;}
.v1_c00161{vertical-align:23.086200px;}
.ls1_c00161{letter-spacing:-0.009600px;}
.ls0_c00161{letter-spacing:0.000000px;}
.ls2_c00161{letter-spacing:0.012000px;}
.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;}
}
.ws2_c00161{word-spacing:-15.000000px;}
.ws0_c00161{word-spacing:-13.190400px;}
.ws1_c00161{word-spacing:-10.000001px;}
.ws3_c00161{word-spacing:0.000000px;}
._17_c00161{margin-left:-19.540002px;}
._11_c00161{margin-left:-7.876800px;}
._16_c00161{margin-left:-6.602400px;}
._18_c00161{margin-left:-4.818000px;}
._8_c00161{margin-left:-3.348000px;}
._4_c00161{margin-left:-1.612800px;}
._1_c00161{width:1.072800px;}
._0_c00161{width:2.304000px;}
._2_c00161{width:3.391200px;}
._3_c00161{width:4.939200px;}
._f_c00161{width:6.019200px;}
._e_c00161{width:8.143200px;}
._d_c00161{width:9.187200px;}
._10_c00161{width:10.216800px;}
._5_c00161{width:11.304000px;}
._6_c00161{width:12.931200px;}
._7_c00161{width:14.371200px;}
._a_c00161{width:15.746400px;}
._9_c00161{width:17.006400px;}
._b_c00161{width:18.324000px;}
._c_c00161{width:21.052800px;}
._15_c00161{width:23.745600px;}
._13_c00161{width:25.380000px;}
._12_c00161{width:26.409600px;}
._14_c00161{width:28.173600px;}
._19_c00161{width:56.070000px;}
._1a_c00161{width:57.325200px;}
._1c_c00161{width:58.410000px;}
._1b_c00161{width:61.722000px;}
._1e_c00161{width:63.246000px;}
._1d_c00161{width:64.994400px;}
.fc1_c00161{color:rgb(0,0,153);}
.fc0_c00161{color:rgb(0,0,0);}
.fs4_c00161{font-size:40.000002px;}
.fs2_c00161{font-size:48.000000px;}
.fs1_c00161{font-size:54.000000px;}
.fs3_c00161{font-size:60.000000px;}
.fs0_c00161{font-size:72.000000px;}
.y0_c00161{bottom:0.000000px;}
.y4_c00161{bottom:12.000000px;}
.y10_c00161{bottom:67.335000px;}
.y13_c00161{bottom:131.835000px;}
.y12_c00161{bottom:151.335000px;}
.y11_c00161{bottom:174.585000px;}
.ye_c00161{bottom:223.335000px;}
.yd_c00161{bottom:250.335000px;}
.yc_c00161{bottom:277.335000px;}
.yb_c00161{bottom:304.335000px;}
.ya_c00161{bottom:331.335000px;}
.y9_c00161{bottom:358.335000px;}
.y8_c00161{bottom:385.335000px;}
.y7_c00161{bottom:433.335000px;}
.y6_c00161{bottom:460.335000px;}
.y5_c00161{bottom:487.335000px;}
.y3_c00161{bottom:527.835000px;}
.y2_c00161{bottom:1067.835000px;}
.y1_c00161{bottom:1094.835000px;}
.yf_c00161{bottom:1193.835000px;}
.h9_c00161{height:27.421876px;}
.ha_c00161{height:41.132812px;}
.h5_c00161{height:41.633789px;}
.h8_c00161{height:44.208984px;}
.h3_c00161{height:51.187500px;}
.h7_c00161{height:56.074219px;}
.h6_c00161{height:57.211200px;}
.h4_c00161{height:508.500000px;}
.h2_c00161{height:1261.500000px;}
.h0_c00161{height:1262.835000px;}
.h1_c00161{height:1263.000000px;}
.w3_c00161{width:676.935000px;}
.w2_c00161{width:892.500000px;}
.w0_c00161{width:892.935000px;}
.w1_c00161{width:893.250000px;}
.x0_c00161{left:0.000000px;}
.x1_c00161{left:65.480310px;}
.x2_c00161{left:147.302085px;}
@media print{
.v2_c00161{vertical-align:-20.521067pt;}
.v3_c00161{vertical-align:-13.333333pt;}
.v0_c00161{vertical-align:0.000000pt;}
.v1_c00161{vertical-align:20.521067pt;}
.ls1_c00161{letter-spacing:-0.008533pt;}
.ls0_c00161{letter-spacing:0.000000pt;}
.ls2_c00161{letter-spacing:0.010667pt;}
.ws2_c00161{word-spacing:-13.333333pt;}
.ws0_c00161{word-spacing:-11.724800pt;}
.ws1_c00161{word-spacing:-8.888889pt;}
.ws3_c00161{word-spacing:0.000000pt;}
._17_c00161{margin-left:-17.368891pt;}
._11_c00161{margin-left:-7.001600pt;}
._16_c00161{margin-left:-5.868800pt;}
._18_c00161{margin-left:-4.282667pt;}
._8_c00161{margin-left:-2.976000pt;}
._4_c00161{margin-left:-1.433600pt;}
._1_c00161{width:0.953600pt;}
._0_c00161{width:2.048000pt;}
._2_c00161{width:3.014400pt;}
._3_c00161{width:4.390400pt;}
._f_c00161{width:5.350400pt;}
._e_c00161{width:7.238400pt;}
._d_c00161{width:8.166400pt;}
._10_c00161{width:9.081600pt;}
._5_c00161{width:10.048000pt;}
._6_c00161{width:11.494400pt;}
._7_c00161{width:12.774400pt;}
._a_c00161{width:13.996800pt;}
._9_c00161{width:15.116800pt;}
._b_c00161{width:16.288000pt;}
._c_c00161{width:18.713600pt;}
._15_c00161{width:21.107200pt;}
._13_c00161{width:22.560000pt;}
._12_c00161{width:23.475200pt;}
._14_c00161{width:25.043200pt;}
._19_c00161{width:49.840000pt;}
._1a_c00161{width:50.955733pt;}
._1c_c00161{width:51.920000pt;}
._1b_c00161{width:54.864000pt;}
._1e_c00161{width:56.218667pt;}
._1d_c00161{width:57.772800pt;}
.fs4_c00161{font-size:35.555557pt;}
.fs2_c00161{font-size:42.666667pt;}
.fs1_c00161{font-size:48.000000pt;}
.fs3_c00161{font-size:53.333333pt;}
.fs0_c00161{font-size:64.000000pt;}
.y0_c00161{bottom:0.000000pt;}
.y4_c00161{bottom:10.666667pt;}
.y10_c00161{bottom:59.853333pt;}
.y13_c00161{bottom:117.186667pt;}
.y12_c00161{bottom:134.520000pt;}
.y11_c00161{bottom:155.186667pt;}
.ye_c00161{bottom:198.520000pt;}
.yd_c00161{bottom:222.520000pt;}
.yc_c00161{bottom:246.520000pt;}
.yb_c00161{bottom:270.520000pt;}
.ya_c00161{bottom:294.520000pt;}
.y9_c00161{bottom:318.520000pt;}
.y8_c00161{bottom:342.520000pt;}
.y7_c00161{bottom:385.186667pt;}
.y6_c00161{bottom:409.186667pt;}
.y5_c00161{bottom:433.186667pt;}
.y3_c00161{bottom:469.186667pt;}
.y2_c00161{bottom:949.186667pt;}
.y1_c00161{bottom:973.186667pt;}
.yf_c00161{bottom:1061.186667pt;}
.h9_c00161{height:24.375001pt;}
.ha_c00161{height:36.562500pt;}
.h5_c00161{height:37.007812pt;}
.h8_c00161{height:39.296875pt;}
.h3_c00161{height:45.500000pt;}
.h7_c00161{height:49.843750pt;}
.h6_c00161{height:50.854400pt;}
.h4_c00161{height:452.000000pt;}
.h2_c00161{height:1121.333333pt;}
.h0_c00161{height:1122.520000pt;}
.h1_c00161{height:1122.666667pt;}
.w3_c00161{width:601.720000pt;}
.w2_c00161{width:793.333333pt;}
.w0_c00161{width:793.720000pt;}
.w1_c00161{width:794.000000pt;}
.x0_c00161{left:0.000000pt;}
.x1_c00161{left:58.204720pt;}
.x2_c00161{left:130.935187pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fa34342704c28b8f80c5f4c5.woff2')format("woff");}.ff1_c00162{font-family:ff1_c00162;line-height:0.987793;font-style:normal;font-weight:normal;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_774420125e2e1916c1667366.woff2')format("woff");}.ff2_c00162{font-family:ff2_c00162;line-height:0.932129;font-style:normal;font-weight:normal;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_61b423b1b201fd33f6d29165.woff2')format("woff");}.ff3_c00162{font-family:ff3_c00162;line-height:0.956543;font-style:normal;font-weight:normal;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_fea9bd66cf11a70069d898a5.woff2')format("woff");}.ff4_c00162{font-family:ff4_c00162;line-height:0.904785;font-style: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);}
.v2_c00162{vertical-align:-15.000000px;}
.v0_c00162{vertical-align:0.000000px;}
.v1_c00162{vertical-align:23.086200px;}
.ls2_c00162{letter-spacing:-0.014400px;}
.ls4_c00162{letter-spacing:-0.009600px;}
.ls3_c00162{letter-spacing:-0.006000px;}
.ls1_c00162{letter-spacing:0.000000px;}
.ls0_c00162{letter-spacing:0.012000px;}
.sc__c00162{text-shadow:none;}
.sc0_c00162{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00162{-webkit-text-stroke:0px transparent;}
.sc0_c00162{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00162{word-spacing:-10.000001px;}
.ws1_c00162{word-spacing:0.000000px;}
._6_c00162{margin-left:-4.327200px;}
._2_c00162{margin-left:-2.916000px;}
._4_c00162{margin-left:-1.483200px;}
._5_c00162{width:1.058400px;}
._1_c00162{width:2.340000px;}
._0_c00162{width:4.125600px;}
._3_c00162{width:6.408000px;}
.fc0_c00162{color:rgb(0,0,0);}
.fs4_c00162{font-size:40.000002px;}
.fs3_c00162{font-size:48.000000px;}
.fs0_c00162{font-size:54.000000px;}
.fs2_c00162{font-size:60.000000px;}
.fs1_c00162{font-size:72.000000px;}
.y0_c00162{bottom:0.000000px;}
.y2_c00162{bottom:12.000000px;}
.yc_c00162{bottom:67.335000px;}
.yd_c00162{bottom:135.585000px;}
.ya_c00162{bottom:173.835000px;}
.y9_c00162{bottom:625.335000px;}
.y8_c00162{bottom:647.835000px;}
.y7_c00162{bottom:670.335000px;}
.y6_c00162{bottom:692.835000px;}
.y5_c00162{bottom:715.335000px;}
.y4_c00162{bottom:763.335000px;}
.y3_c00162{bottom:790.335000px;}
.y1_c00162{bottom:830.835000px;}
.yb_c00162{bottom:1193.835000px;}
.h9_c00162{height:27.480470px;}
.h3_c00162{height:42.292969px;}
.h8_c00162{height:44.121094px;}
.h5_c00162{height:51.257812px;}
.h6_c00162{height:57.258075px;}
.h2_c00162{height:282.000000px;}
.h7_c00162{height:445.500000px;}
.h4_c00162{height:1261.500000px;}
.h0_c00162{height:1262.835000px;}
.h1_c00162{height:1263.000000px;}
.w2_c00162{width:676.934850px;}
.w3_c00162{width:892.500000px;}
.w0_c00162{width:892.935000px;}
.w1_c00162{width:893.250000px;}
.x0_c00162{left:0.000000px;}
.x1_c00162{left:150.000000px;}
.x2_c00162{left:155.703300px;}
.x3_c00162{left:197.864400px;}
.x4_c00162{left:380.516100px;}
.x5_c00162{left:802.427700px;}
@media print{
.v2_c00162{vertical-align:-13.333333pt;}
.v0_c00162{vertical-align:0.000000pt;}
.v1_c00162{vertical-align:20.521067pt;}
.ls2_c00162{letter-spacing:-0.012800pt;}
.ls4_c00162{letter-spacing:-0.008533pt;}
.ls3_c00162{letter-spacing:-0.005333pt;}
.ls1_c00162{letter-spacing:0.000000pt;}
.ls0_c00162{letter-spacing:0.010667pt;}
.ws0_c00162{word-spacing:-8.888889pt;}
.ws1_c00162{word-spacing:0.000000pt;}
._6_c00162{margin-left:-3.846400pt;}
._2_c00162{margin-left:-2.592000pt;}
._4_c00162{margin-left:-1.318400pt;}
._5_c00162{width:0.940800pt;}
._1_c00162{width:2.080000pt;}
._0_c00162{width:3.667200pt;}
._3_c00162{width:5.696000pt;}
.fs4_c00162{font-size:35.555557pt;}
.fs3_c00162{font-size:42.666667pt;}
.fs0_c00162{font-size:48.000000pt;}
.fs2_c00162{font-size:53.333333pt;}
.fs1_c00162{font-size:64.000000pt;}
.y0_c00162{bottom:0.000000pt;}
.y2_c00162{bottom:10.666667pt;}
.yc_c00162{bottom:59.853333pt;}
.yd_c00162{bottom:120.520000pt;}
.ya_c00162{bottom:154.520000pt;}
.y9_c00162{bottom:555.853333pt;}
.y8_c00162{bottom:575.853333pt;}
.y7_c00162{bottom:595.853333pt;}
.y6_c00162{bottom:615.853333pt;}
.y5_c00162{bottom:635.853333pt;}
.y4_c00162{bottom:678.520000pt;}
.y3_c00162{bottom:702.520000pt;}
.y1_c00162{bottom:738.520000pt;}
.yb_c00162{bottom:1061.186667pt;}
.h9_c00162{height:24.427085pt;}
.h3_c00162{height:37.593750pt;}
.h8_c00162{height:39.218750pt;}
.h5_c00162{height:45.562500pt;}
.h6_c00162{height:50.896067pt;}
.h2_c00162{height:250.666667pt;}
.h7_c00162{height:396.000000pt;}
.h4_c00162{height:1121.333333pt;}
.h0_c00162{height:1122.520000pt;}
.h1_c00162{height:1122.666667pt;}
.w2_c00162{width:601.719867pt;}
.w3_c00162{width:793.333333pt;}
.w0_c00162{width:793.720000pt;}
.w1_c00162{width:794.000000pt;}
.x0_c00162{left:0.000000pt;}
.x1_c00162{left:133.333333pt;}
.x2_c00162{left:138.402933pt;}
.x3_c00162{left:175.879467pt;}
.x4_c00162{left:338.236533pt;}
.x5_c00162{left:713.269067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_12b28ed95bbae9c6b2d7b2e8.woff2')format("woff");}.ff1_c00163{font-family:ff1_c00163;line-height:0.947754;font-style:normal;font-weight:normal;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_380c9de34fb14ca82e745ac8.woff2')format("woff");}.ff2_c00163{font-family:ff2_c00163;line-height:0.892578;font-style:normal;font-weight:normal;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_32c35327c2f1209b99fd0c58.woff2')format("woff");}.ff3_c00163{font-family:ff3_c00163;line-height:0.963867;font-style:normal;font-weight:normal;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_e230386bee90e2cfa9d01d72.woff2')format("woff");}.ff4_c00163{font-family:ff4_c00163;line-height:0.755859;font-style:normal;font-weight:normal;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_c458913f5e89d5ce95a1ce6e.woff2')format("woff");}.ff5_c00163{font-family:ff5_c00163;line-height:1.155762;font-style:normal;font-weight: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_c00163;src:url('chunks/assets/font_2be4ff305d3da67fc2e26561.woff2')format("woff");}.ff6_c00163{font-family:ff6_c00163;line-height:0.905762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00163;src:url('chunks/assets/font_33c698eaa9dac7f8cb30078a.woff2')format("woff");}.ff7_c00163{font-family:ff7_c00163;line-height:0.688477;font-style: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);}
.v2_c00163{vertical-align:-15.000000px;}
.v0_c00163{vertical-align:0.000000px;}
.v1_c00163{vertical-align:23.086200px;}
.ls2_c00163{letter-spacing:-0.009600px;}
.ls1_c00163{letter-spacing:0.000000px;}
.ls0_c00163{letter-spacing:0.007200px;}
.ls3_c00163{letter-spacing:0.012000px;}
.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:-15.000000px;}
.ws0_c00163{word-spacing:-13.190400px;}
.ws1_c00163{word-spacing:-10.000001px;}
.ws3_c00163{word-spacing:0.000000px;}
._18_c00163{margin-left:-19.489602px;}
._8_c00163{margin-left:-10.584000px;}
._16_c00163{margin-left:-5.667600px;}
._1_c00163{margin-left:-4.615200px;}
._2_c00163{margin-left:-2.844000px;}
._5_c00163{margin-left:-1.274400px;}
._0_c00163{width:1.072800px;}
._c_c00163{width:2.109600px;}
._3_c00163{width:3.189600px;}
._4_c00163{width:4.363200px;}
._7_c00163{width:5.760000px;}
._6_c00163{width:6.818400px;}
._9_c00163{width:8.395200px;}
._a_c00163{width:10.281600px;}
._b_c00163{width:11.311200px;}
._17_c00163{width:12.666000px;}
._e_c00163{width:24.105600px;}
._10_c00163{width:26.992800px;}
._d_c00163{width:28.087200px;}
._11_c00163{width:29.397600px;}
._f_c00163{width:31.788000px;}
._14_c00163{width:33.271200px;}
._13_c00163{width:35.388000px;}
._15_c00163{width:38.556000px;}
._12_c00163{width:39.830400px;}
.fc1_c00163{color:rgb(0,0,153);}
.fc0_c00163{color:rgb(0,0,0);}
.fs4_c00163{font-size:40.000002px;}
.fs1_c00163{font-size:48.000000px;}
.fs2_c00163{font-size:54.000000px;}
.fs3_c00163{font-size:60.000000px;}
.fs0_c00163{font-size:72.000000px;}
.y0_c00163{bottom:0.000000px;}
.y14_c00163{bottom:12.000000px;}
.y16_c00163{bottom:67.335000px;}
.y1b_c00163{bottom:131.835000px;}
.y1a_c00163{bottom:155.085000px;}
.y19_c00163{bottom:196.335000px;}
.y18_c00163{bottom:215.835000px;}
.y17_c00163{bottom:239.085000px;}
.y13_c00163{bottom:280.335000px;}
.y12_c00163{bottom:557.835000px;}
.y11_c00163{bottom:584.835000px;}
.y10_c00163{bottom:611.835000px;}
.yf_c00163{bottom:638.835000px;}
.ye_c00163{bottom:665.835000px;}
.yd_c00163{bottom:713.835000px;}
.yc_c00163{bottom:740.835000px;}
.yb_c00163{bottom:767.835000px;}
.ya_c00163{bottom:794.835000px;}
.y9_c00163{bottom:821.835000px;}
.y8_c00163{bottom:848.835000px;}
.y7_c00163{bottom:895.335000px;}
.y6_c00163{bottom:959.835000px;}
.y5_c00163{bottom:982.335000px;}
.y4_c00163{bottom:1004.835000px;}
.y3_c00163{bottom:1027.335000px;}
.y2_c00163{bottom:1049.835000px;}
.y1_c00163{bottom:1094.835000px;}
.y15_c00163{bottom:1193.835000px;}
.ha_c00163{height:27.480470px;}
.hb_c00163{height:41.220703px;}
.h7_c00163{height:41.633789px;}
.h9_c00163{height:44.208984px;}
.h3_c00163{height:51.257812px;}
.h5_c00163{height:51.539062px;}
.h8_c00163{height:56.074219px;}
.h4_c00163{height:57.258075px;}
.h6_c00163{height:246.000000px;}
.h2_c00163{height:1261.500000px;}
.h0_c00163{height:1262.835000px;}
.h1_c00163{height:1263.000000px;}
.w3_c00163{width:676.934850px;}
.w2_c00163{width:892.500000px;}
.w0_c00163{width:892.935000px;}
.w1_c00163{width:893.250000px;}
.x0_c00163{left:0.000000px;}
.x1_c00163{left:65.480310px;}
.x2_c00163{left:174.862350px;}
@media print{
.v2_c00163{vertical-align:-13.333333pt;}
.v0_c00163{vertical-align:0.000000pt;}
.v1_c00163{vertical-align:20.521067pt;}
.ls2_c00163{letter-spacing:-0.008533pt;}
.ls1_c00163{letter-spacing:0.000000pt;}
.ls0_c00163{letter-spacing:0.006400pt;}
.ls3_c00163{letter-spacing:0.010667pt;}
.ws2_c00163{word-spacing:-13.333333pt;}
.ws0_c00163{word-spacing:-11.724800pt;}
.ws1_c00163{word-spacing:-8.888889pt;}
.ws3_c00163{word-spacing:0.000000pt;}
._18_c00163{margin-left:-17.324091pt;}
._8_c00163{margin-left:-9.408000pt;}
._16_c00163{margin-left:-5.037867pt;}
._1_c00163{margin-left:-4.102400pt;}
._2_c00163{margin-left:-2.528000pt;}
._5_c00163{margin-left:-1.132800pt;}
._0_c00163{width:0.953600pt;}
._c_c00163{width:1.875200pt;}
._3_c00163{width:2.835200pt;}
._4_c00163{width:3.878400pt;}
._7_c00163{width:5.120000pt;}
._6_c00163{width:6.060800pt;}
._9_c00163{width:7.462400pt;}
._a_c00163{width:9.139200pt;}
._b_c00163{width:10.054400pt;}
._17_c00163{width:11.258667pt;}
._e_c00163{width:21.427200pt;}
._10_c00163{width:23.993600pt;}
._d_c00163{width:24.966400pt;}
._11_c00163{width:26.131200pt;}
._f_c00163{width:28.256000pt;}
._14_c00163{width:29.574400pt;}
._13_c00163{width:31.456000pt;}
._15_c00163{width:34.272000pt;}
._12_c00163{width:35.404800pt;}
.fs4_c00163{font-size:35.555557pt;}
.fs1_c00163{font-size:42.666667pt;}
.fs2_c00163{font-size:48.000000pt;}
.fs3_c00163{font-size:53.333333pt;}
.fs0_c00163{font-size:64.000000pt;}
.y0_c00163{bottom:0.000000pt;}
.y14_c00163{bottom:10.666667pt;}
.y16_c00163{bottom:59.853333pt;}
.y1b_c00163{bottom:117.186667pt;}
.y1a_c00163{bottom:137.853333pt;}
.y19_c00163{bottom:174.520000pt;}
.y18_c00163{bottom:191.853333pt;}
.y17_c00163{bottom:212.520000pt;}
.y13_c00163{bottom:249.186667pt;}
.y12_c00163{bottom:495.853333pt;}
.y11_c00163{bottom:519.853333pt;}
.y10_c00163{bottom:543.853333pt;}
.yf_c00163{bottom:567.853333pt;}
.ye_c00163{bottom:591.853333pt;}
.yd_c00163{bottom:634.520000pt;}
.yc_c00163{bottom:658.520000pt;}
.yb_c00163{bottom:682.520000pt;}
.ya_c00163{bottom:706.520000pt;}
.y9_c00163{bottom:730.520000pt;}
.y8_c00163{bottom:754.520000pt;}
.y7_c00163{bottom:795.853333pt;}
.y6_c00163{bottom:853.186667pt;}
.y5_c00163{bottom:873.186667pt;}
.y4_c00163{bottom:893.186667pt;}
.y3_c00163{bottom:913.186667pt;}
.y2_c00163{bottom:933.186667pt;}
.y1_c00163{bottom:973.186667pt;}
.y15_c00163{bottom:1061.186667pt;}
.ha_c00163{height:24.427085pt;}
.hb_c00163{height:36.640625pt;}
.h7_c00163{height:37.007812pt;}
.h9_c00163{height:39.296875pt;}
.h3_c00163{height:45.562500pt;}
.h5_c00163{height:45.812500pt;}
.h8_c00163{height:49.843750pt;}
.h4_c00163{height:50.896067pt;}
.h6_c00163{height:218.666667pt;}
.h2_c00163{height:1121.333333pt;}
.h0_c00163{height:1122.520000pt;}
.h1_c00163{height:1122.666667pt;}
.w3_c00163{width:601.719867pt;}
.w2_c00163{width:793.333333pt;}
.w0_c00163{width:793.720000pt;}
.w1_c00163{width:794.000000pt;}
.x0_c00163{left:0.000000pt;}
.x1_c00163{left:58.204720pt;}
.x2_c00163{left:155.433200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f5e7a2f19d38dc3786175a4c.woff2')format("woff");}.ff1_c00164{font-family:ff1_c00164;line-height:0.933105;font-style:normal;font-weight:normal;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_410f2ff071c6dd5b7c9f5ecd.woff2')format("woff");}.ff2_c00164{font-family:ff2_c00164;line-height:0.976074;font-style:normal;font-weight:normal;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_8307506eb4e5c7cade78f7a7.woff2')format("woff");}.ff3_c00164{font-family:ff3_c00164;line-height:0.956543;font-style:normal;font-weight:normal;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_6e81dd00ab46c747db626145.woff2')format("woff");}.ff4_c00164{font-family:ff4_c00164;line-height:0.903320;font-style: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);}
.v2_c00164{vertical-align:-23.086200px;}
.v3_c00164{vertical-align:-15.000000px;}
.v0_c00164{vertical-align:0.000000px;}
.v1_c00164{vertical-align:23.086200px;}
.ls2_c00164{letter-spacing:-0.009600px;}
.ls1_c00164{letter-spacing:0.000000px;}
.ls0_c00164{letter-spacing:0.012000px;}
.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;}
}
.ws2_c00164{word-spacing:-15.000000px;}
.ws0_c00164{word-spacing:-13.190400px;}
.ws1_c00164{word-spacing:-10.000001px;}
.ws3_c00164{word-spacing:0.000000px;}
._13_c00164{margin-left:-19.488000px;}
._11_c00164{margin-left:-4.380402px;}
._f_c00164{margin-left:-2.671200px;}
._2_c00164{margin-left:-1.440000px;}
._5_c00164{width:1.180800px;}
._0_c00164{width:2.325600px;}
._8_c00164{width:4.068000px;}
._9_c00164{width:6.105600px;}
._7_c00164{width:8.150400px;}
._1_c00164{width:9.532800px;}
._6_c00164{width:10.706400px;}
._4_c00164{width:11.887200px;}
._3_c00164{width:13.341600px;}
._10_c00164{width:16.120800px;}
._12_c00164{width:22.796400px;}
._b_c00164{width:25.783200px;}
._a_c00164{width:27.496800px;}
._c_c00164{width:28.699200px;}
._e_c00164{width:29.836800px;}
._d_c00164{width:31.298400px;}
.fc1_c00164{color:rgb(0,0,153);}
.fc0_c00164{color:rgb(0,0,0);}
.fs4_c00164{font-size:40.000002px;}
.fs1_c00164{font-size:48.000000px;}
.fs2_c00164{font-size:54.000000px;}
.fs3_c00164{font-size:60.000000px;}
.fs0_c00164{font-size:72.000000px;}
.y0_c00164{bottom:0.000000px;}
.y7_c00164{bottom:12.000000px;}
.y9_c00164{bottom:67.335000px;}
.yb_c00164{bottom:131.835000px;}
.ya_c00164{bottom:155.085000px;}
.y6_c00164{bottom:245.835000px;}
.y5_c00164{bottom:986.835000px;}
.y4_c00164{bottom:1013.835000px;}
.y3_c00164{bottom:1040.835000px;}
.y2_c00164{bottom:1067.835000px;}
.y1_c00164{bottom:1094.835000px;}
.y8_c00164{bottom:1193.835000px;}
.h8_c00164{height:27.421876px;}
.h9_c00164{height:41.132812px;}
.h6_c00164{height:42.292969px;}
.h7_c00164{height:44.121094px;}
.h3_c00164{height:51.187500px;}
.h4_c00164{height:57.211200px;}
.h5_c00164{height:709.500000px;}
.h2_c00164{height:1261.500000px;}
.h0_c00164{height:1262.835000px;}
.h1_c00164{height:1263.000000px;}
.w3_c00164{width:676.934850px;}
.w2_c00164{width:892.500000px;}
.w0_c00164{width:892.935000px;}
.w1_c00164{width:893.250000px;}
.x0_c00164{left:0.000000px;}
.x1_c00164{left:150.519750px;}
.x2_c00164{left:161.754600px;}
.x3_c00164{left:380.516100px;}
.x4_c00164{left:802.427700px;}
@media print{
.v2_c00164{vertical-align:-20.521067pt;}
.v3_c00164{vertical-align:-13.333333pt;}
.v0_c00164{vertical-align:0.000000pt;}
.v1_c00164{vertical-align:20.521067pt;}
.ls2_c00164{letter-spacing:-0.008533pt;}
.ls1_c00164{letter-spacing:0.000000pt;}
.ls0_c00164{letter-spacing:0.010667pt;}
.ws2_c00164{word-spacing:-13.333333pt;}
.ws0_c00164{word-spacing:-11.724800pt;}
.ws1_c00164{word-spacing:-8.888889pt;}
.ws3_c00164{word-spacing:0.000000pt;}
._13_c00164{margin-left:-17.322667pt;}
._11_c00164{margin-left:-3.893691pt;}
._f_c00164{margin-left:-2.374400pt;}
._2_c00164{margin-left:-1.280000pt;}
._5_c00164{width:1.049600pt;}
._0_c00164{width:2.067200pt;}
._8_c00164{width:3.616000pt;}
._9_c00164{width:5.427200pt;}
._7_c00164{width:7.244800pt;}
._1_c00164{width:8.473600pt;}
._6_c00164{width:9.516800pt;}
._4_c00164{width:10.566400pt;}
._3_c00164{width:11.859200pt;}
._10_c00164{width:14.329600pt;}
._12_c00164{width:20.263467pt;}
._b_c00164{width:22.918400pt;}
._a_c00164{width:24.441600pt;}
._c_c00164{width:25.510400pt;}
._e_c00164{width:26.521600pt;}
._d_c00164{width:27.820800pt;}
.fs4_c00164{font-size:35.555557pt;}
.fs1_c00164{font-size:42.666667pt;}
.fs2_c00164{font-size:48.000000pt;}
.fs3_c00164{font-size:53.333333pt;}
.fs0_c00164{font-size:64.000000pt;}
.y0_c00164{bottom:0.000000pt;}
.y7_c00164{bottom:10.666667pt;}
.y9_c00164{bottom:59.853333pt;}
.yb_c00164{bottom:117.186667pt;}
.ya_c00164{bottom:137.853333pt;}
.y6_c00164{bottom:218.520000pt;}
.y5_c00164{bottom:877.186667pt;}
.y4_c00164{bottom:901.186667pt;}
.y3_c00164{bottom:925.186667pt;}
.y2_c00164{bottom:949.186667pt;}
.y1_c00164{bottom:973.186667pt;}
.y8_c00164{bottom:1061.186667pt;}
.h8_c00164{height:24.375001pt;}
.h9_c00164{height:36.562500pt;}
.h6_c00164{height:37.593750pt;}
.h7_c00164{height:39.218750pt;}
.h3_c00164{height:45.500000pt;}
.h4_c00164{height:50.854400pt;}
.h5_c00164{height:630.666667pt;}
.h2_c00164{height:1121.333333pt;}
.h0_c00164{height:1122.520000pt;}
.h1_c00164{height:1122.666667pt;}
.w3_c00164{width:601.719867pt;}
.w2_c00164{width:793.333333pt;}
.w0_c00164{width:793.720000pt;}
.w1_c00164{width:794.000000pt;}
.x0_c00164{left:0.000000pt;}
.x1_c00164{left:133.795333pt;}
.x2_c00164{left:143.781867pt;}
.x3_c00164{left:338.236533pt;}
.x4_c00164{left:713.269067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5dfe6618e1b2ead0305b02df.woff2')format("woff");}.ff1_c00165{font-family:ff1_c00165;line-height:0.934082;font-style:normal;font-weight:normal;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_4119d0d3f9153f4454a51aad.woff2')format("woff");}.ff2_c00165{font-family:ff2_c00165;line-height:0.888672;font-style:normal;font-weight:normal;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_75876e6e4613cf51464a6741.woff2')format("woff");}.ff3_c00165{font-family:ff3_c00165;line-height:0.976074;font-style:normal;font-weight:normal;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_9c69b974d9e19a961ee7c509.woff2')format("woff");}.ff4_c00165{font-family:ff4_c00165;line-height:0.755859;font-style:normal;font-weight:normal;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_db24b00cb0a1da2a81748df1.woff2')format("woff");}.ff5_c00165{font-family:ff5_c00165;line-height:1.155762;font-style:normal;font-weight: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_c00165;src:url('chunks/assets/font_81fc23e5abed4247f929c054.woff2')format("woff");}.ff6_c00165{font-family:ff6_c00165;line-height:0.904785;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00165{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00165{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00165{vertical-align:-23.086200px;}
.v3_c00165{vertical-align:-15.000000px;}
.v0_c00165{vertical-align:0.000000px;}
.v1_c00165{vertical-align:23.086200px;}
.ls2_c00165{letter-spacing:-0.009600px;}
.ls1_c00165{letter-spacing:0.000000px;}
.ls3_c00165{letter-spacing:0.012000px;}
.ls0_c00165{letter-spacing:0.014400px;}
.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;}
}
.ws3_c00165{word-spacing:-15.000000px;}
.ws1_c00165{word-spacing:-13.190400px;}
.ws2_c00165{word-spacing:-10.000001px;}
.ws0_c00165{word-spacing:-0.086400px;}
.ws4_c00165{word-spacing:0.000000px;}
._19_c00165{margin-left:-19.028802px;}
._9_c00165{margin-left:-6.408000px;}
._1a_c00165{margin-left:-5.206800px;}
._0_c00165{margin-left:-3.945600px;}
._12_c00165{margin-left:-2.570400px;}
._1_c00165{margin-left:-1.548000px;}
._5_c00165{width:1.166400px;}
._3_c00165{width:2.232000px;}
._4_c00165{width:3.412800px;}
._2_c00165{width:4.413600px;}
._10_c00165{width:6.400800px;}
._d_c00165{width:7.430400px;}
._c_c00165{width:8.632800px;}
._e_c00165{width:9.684000px;}
._a_c00165{width:10.836000px;}
._b_c00165{width:12.427200px;}
._f_c00165{width:14.839200px;}
._6_c00165{width:21.729600px;}
._7_c00165{width:22.795200px;}
._8_c00165{width:23.875200px;}
._17_c00165{width:24.933600px;}
._14_c00165{width:25.999200px;}
._11_c00165{width:27.151200px;}
._13_c00165{width:29.448000px;}
._15_c00165{width:31.082400px;}
._18_c00165{width:32.371200px;}
._16_c00165{width:33.796800px;}
.fc1_c00165{color:rgb(0,0,153);}
.fc0_c00165{color:rgb(0,0,0);}
.fs4_c00165{font-size:40.000002px;}
.fs1_c00165{font-size:48.000000px;}
.fs2_c00165{font-size:54.000000px;}
.fs3_c00165{font-size:60.000000px;}
.fs0_c00165{font-size:72.000000px;}
.y0_c00165{bottom:0.000000px;}
.y5_c00165{bottom:12.000000px;}
.y14_c00165{bottom:67.335000px;}
.y18_c00165{bottom:131.835000px;}
.y17_c00165{bottom:155.085000px;}
.y16_c00165{bottom:196.335000px;}
.y15_c00165{bottom:219.585000px;}
.y12_c00165{bottom:269.835000px;}
.y11_c00165{bottom:296.835000px;}
.y10_c00165{bottom:323.835000px;}
.yf_c00165{bottom:350.835000px;}
.ye_c00165{bottom:377.835000px;}
.yd_c00165{bottom:425.835000px;}
.yc_c00165{bottom:452.835000px;}
.yb_c00165{bottom:479.835000px;}
.ya_c00165{bottom:527.835000px;}
.y9_c00165{bottom:554.835000px;}
.y8_c00165{bottom:581.835000px;}
.y7_c00165{bottom:608.835000px;}
.y6_c00165{bottom:635.835000px;}
.y4_c00165{bottom:676.335000px;}
.y3_c00165{bottom:1040.835000px;}
.y2_c00165{bottom:1067.835000px;}
.y1_c00165{bottom:1094.835000px;}
.y13_c00165{bottom:1193.835000px;}
.h9_c00165{height:27.480470px;}
.ha_c00165{height:41.220703px;}
.h6_c00165{height:42.292969px;}
.h8_c00165{height:44.208984px;}
.h3_c00165{height:51.257812px;}
.h7_c00165{height:56.074219px;}
.h4_c00165{height:57.258075px;}
.h5_c00165{height:333.000000px;}
.h2_c00165{height:1261.500000px;}
.h0_c00165{height:1262.835000px;}
.h1_c00165{height:1263.000000px;}
.w3_c00165{width:676.935000px;}
.w2_c00165{width:892.500000px;}
.w0_c00165{width:892.935000px;}
.w1_c00165{width:893.250000px;}
.x0_c00165{left:0.000000px;}
.x1_c00165{left:65.480310px;}
.x2_c00165{left:161.754600px;}
@media print{
.v2_c00165{vertical-align:-20.521067pt;}
.v3_c00165{vertical-align:-13.333333pt;}
.v0_c00165{vertical-align:0.000000pt;}
.v1_c00165{vertical-align:20.521067pt;}
.ls2_c00165{letter-spacing:-0.008533pt;}
.ls1_c00165{letter-spacing:0.000000pt;}
.ls3_c00165{letter-spacing:0.010667pt;}
.ls0_c00165{letter-spacing:0.012800pt;}
.ws3_c00165{word-spacing:-13.333333pt;}
.ws1_c00165{word-spacing:-11.724800pt;}
.ws2_c00165{word-spacing:-8.888889pt;}
.ws0_c00165{word-spacing:-0.076800pt;}
.ws4_c00165{word-spacing:0.000000pt;}
._19_c00165{margin-left:-16.914491pt;}
._9_c00165{margin-left:-5.696000pt;}
._1a_c00165{margin-left:-4.628267pt;}
._0_c00165{margin-left:-3.507200pt;}
._12_c00165{margin-left:-2.284800pt;}
._1_c00165{margin-left:-1.376000pt;}
._5_c00165{width:1.036800pt;}
._3_c00165{width:1.984000pt;}
._4_c00165{width:3.033600pt;}
._2_c00165{width:3.923200pt;}
._10_c00165{width:5.689600pt;}
._d_c00165{width:6.604800pt;}
._c_c00165{width:7.673600pt;}
._e_c00165{width:8.608000pt;}
._a_c00165{width:9.632000pt;}
._b_c00165{width:11.046400pt;}
._f_c00165{width:13.190400pt;}
._6_c00165{width:19.315200pt;}
._7_c00165{width:20.262400pt;}
._8_c00165{width:21.222400pt;}
._17_c00165{width:22.163200pt;}
._14_c00165{width:23.110400pt;}
._11_c00165{width:24.134400pt;}
._13_c00165{width:26.176000pt;}
._15_c00165{width:27.628800pt;}
._18_c00165{width:28.774400pt;}
._16_c00165{width:30.041600pt;}
.fs4_c00165{font-size:35.555557pt;}
.fs1_c00165{font-size:42.666667pt;}
.fs2_c00165{font-size:48.000000pt;}
.fs3_c00165{font-size:53.333333pt;}
.fs0_c00165{font-size:64.000000pt;}
.y0_c00165{bottom:0.000000pt;}
.y5_c00165{bottom:10.666667pt;}
.y14_c00165{bottom:59.853333pt;}
.y18_c00165{bottom:117.186667pt;}
.y17_c00165{bottom:137.853333pt;}
.y16_c00165{bottom:174.520000pt;}
.y15_c00165{bottom:195.186667pt;}
.y12_c00165{bottom:239.853333pt;}
.y11_c00165{bottom:263.853333pt;}
.y10_c00165{bottom:287.853333pt;}
.yf_c00165{bottom:311.853333pt;}
.ye_c00165{bottom:335.853333pt;}
.yd_c00165{bottom:378.520000pt;}
.yc_c00165{bottom:402.520000pt;}
.yb_c00165{bottom:426.520000pt;}
.ya_c00165{bottom:469.186667pt;}
.y9_c00165{bottom:493.186667pt;}
.y8_c00165{bottom:517.186667pt;}
.y7_c00165{bottom:541.186667pt;}
.y6_c00165{bottom:565.186667pt;}
.y4_c00165{bottom:601.186667pt;}
.y3_c00165{bottom:925.186667pt;}
.y2_c00165{bottom:949.186667pt;}
.y1_c00165{bottom:973.186667pt;}
.y13_c00165{bottom:1061.186667pt;}
.h9_c00165{height:24.427085pt;}
.ha_c00165{height:36.640625pt;}
.h6_c00165{height:37.593750pt;}
.h8_c00165{height:39.296875pt;}
.h3_c00165{height:45.562500pt;}
.h7_c00165{height:49.843750pt;}
.h4_c00165{height:50.896067pt;}
.h5_c00165{height:296.000000pt;}
.h2_c00165{height:1121.333333pt;}
.h0_c00165{height:1122.520000pt;}
.h1_c00165{height:1122.666667pt;}
.w3_c00165{width:601.720000pt;}
.w2_c00165{width:793.333333pt;}
.w0_c00165{width:793.720000pt;}
.w1_c00165{width:794.000000pt;}
.x0_c00165{left:0.000000pt;}
.x1_c00165{left:58.204720pt;}
.x2_c00165{left:143.781867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f8bb741b5eaf8ddc0244562e.woff2')format("woff");}.ff1_c00166{font-family:ff1_c00166;line-height:0.933105;font-style:normal;font-weight:normal;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_9bf214945f0e7f7b952ba65f.woff2')format("woff");}.ff2_c00166{font-family:ff2_c00166;line-height:0.975586;font-style:normal;font-weight:normal;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_e0aa0e233316d24b53a4eab5.woff2')format("woff");}.ff3_c00166{font-family:ff3_c00166;line-height:0.956543;font-style:normal;font-weight:normal;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_337229260fab8b6e6e983394.woff2')format("woff");}.ff4_c00166{font-family:ff4_c00166;line-height:0.904785;font-style: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);}
.v2_c00166{vertical-align:-15.000000px;}
.v0_c00166{vertical-align:0.000000px;}
.v1_c00166{vertical-align:23.086200px;}
.ls2_c00166{letter-spacing:-0.009600px;}
.ls1_c00166{letter-spacing:0.000000px;}
.ls0_c00166{letter-spacing:0.012000px;}
.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:-15.000000px;}
.ws0_c00166{word-spacing:-13.190400px;}
.ws1_c00166{word-spacing:-10.000001px;}
.ws3_c00166{word-spacing:0.000000px;}
._11_c00166{margin-left:-19.488000px;}
._d_c00166{margin-left:-7.783200px;}
._c_c00166{margin-left:-4.939200px;}
._7_c00166{margin-left:-3.434400px;}
._2_c00166{margin-left:-2.376000px;}
._b_c00166{margin-left:-1.180800px;}
._0_c00166{width:1.080000px;}
._5_c00166{width:2.772000px;}
._a_c00166{width:4.780800px;}
._9_c00166{width:5.817600px;}
._6_c00166{width:6.825600px;}
._1_c00166{width:8.517600px;}
._4_c00166{width:9.576000px;}
._3_c00166{width:11.966400px;}
._8_c00166{width:13.089600px;}
._e_c00166{width:15.890400px;}
._f_c00166{width:18.050400px;}
._10_c00166{width:24.636798px;}
.fc1_c00166{color:rgb(0,0,153);}
.fc0_c00166{color:rgb(0,0,0);}
.fs4_c00166{font-size:40.000002px;}
.fs2_c00166{font-size:48.000000px;}
.fs1_c00166{font-size:54.000000px;}
.fs3_c00166{font-size:60.000000px;}
.fs0_c00166{font-size:72.000000px;}
.y0_c00166{bottom:0.000000px;}
.y5_c00166{bottom:10.500000px;}
.y4_c00166{bottom:40.500000px;}
.ye_c00166{bottom:67.335000px;}
.y12_c00166{bottom:131.835000px;}
.y11_c00166{bottom:155.085000px;}
.y10_c00166{bottom:196.335000px;}
.yf_c00166{bottom:219.585000px;}
.yc_c00166{bottom:277.335000px;}
.yb_c00166{bottom:304.335000px;}
.ya_c00166{bottom:331.335000px;}
.y9_c00166{bottom:358.335000px;}
.y8_c00166{bottom:406.335000px;}
.y7_c00166{bottom:433.335000px;}
.y6_c00166{bottom:460.335000px;}
.y3_c00166{bottom:500.835000px;}
.y2_c00166{bottom:1067.835000px;}
.y1_c00166{bottom:1094.835000px;}
.yd_c00166{bottom:1193.835000px;}
.h8_c00166{height:27.480470px;}
.h9_c00166{height:41.220703px;}
.h5_c00166{height:41.633789px;}
.h7_c00166{height:44.121094px;}
.h3_c00166{height:51.187500px;}
.h6_c00166{height:57.211200px;}
.h4_c00166{height:535.500000px;}
.h2_c00166{height:1261.500000px;}
.h0_c00166{height:1262.835000px;}
.h1_c00166{height:1263.000000px;}
.w3_c00166{width:676.934850px;}
.w2_c00166{width:892.500000px;}
.w0_c00166{width:892.935000px;}
.w1_c00166{width:893.250000px;}
.x0_c00166{left:0.000000px;}
.x2_c00166{left:63.800475px;}
.x1_c00166{left:150.519750px;}
.x3_c00166{left:174.153750px;}
.x4_c00166{left:380.516100px;}
.x5_c00166{left:802.427700px;}
@media print{
.v2_c00166{vertical-align:-13.333333pt;}
.v0_c00166{vertical-align:0.000000pt;}
.v1_c00166{vertical-align:20.521067pt;}
.ls2_c00166{letter-spacing:-0.008533pt;}
.ls1_c00166{letter-spacing:0.000000pt;}
.ls0_c00166{letter-spacing:0.010667pt;}
.ws2_c00166{word-spacing:-13.333333pt;}
.ws0_c00166{word-spacing:-11.724800pt;}
.ws1_c00166{word-spacing:-8.888889pt;}
.ws3_c00166{word-spacing:0.000000pt;}
._11_c00166{margin-left:-17.322667pt;}
._d_c00166{margin-left:-6.918400pt;}
._c_c00166{margin-left:-4.390400pt;}
._7_c00166{margin-left:-3.052800pt;}
._2_c00166{margin-left:-2.112000pt;}
._b_c00166{margin-left:-1.049600pt;}
._0_c00166{width:0.960000pt;}
._5_c00166{width:2.464000pt;}
._a_c00166{width:4.249600pt;}
._9_c00166{width:5.171200pt;}
._6_c00166{width:6.067200pt;}
._1_c00166{width:7.571200pt;}
._4_c00166{width:8.512000pt;}
._3_c00166{width:10.636800pt;}
._8_c00166{width:11.635200pt;}
._e_c00166{width:14.124800pt;}
._f_c00166{width:16.044800pt;}
._10_c00166{width:21.899376pt;}
.fs4_c00166{font-size:35.555557pt;}
.fs2_c00166{font-size:42.666667pt;}
.fs1_c00166{font-size:48.000000pt;}
.fs3_c00166{font-size:53.333333pt;}
.fs0_c00166{font-size:64.000000pt;}
.y0_c00166{bottom:0.000000pt;}
.y5_c00166{bottom:9.333333pt;}
.y4_c00166{bottom:36.000000pt;}
.ye_c00166{bottom:59.853333pt;}
.y12_c00166{bottom:117.186667pt;}
.y11_c00166{bottom:137.853333pt;}
.y10_c00166{bottom:174.520000pt;}
.yf_c00166{bottom:195.186667pt;}
.yc_c00166{bottom:246.520000pt;}
.yb_c00166{bottom:270.520000pt;}
.ya_c00166{bottom:294.520000pt;}
.y9_c00166{bottom:318.520000pt;}
.y8_c00166{bottom:361.186667pt;}
.y7_c00166{bottom:385.186667pt;}
.y6_c00166{bottom:409.186667pt;}
.y3_c00166{bottom:445.186667pt;}
.y2_c00166{bottom:949.186667pt;}
.y1_c00166{bottom:973.186667pt;}
.yd_c00166{bottom:1061.186667pt;}
.h8_c00166{height:24.427085pt;}
.h9_c00166{height:36.640625pt;}
.h5_c00166{height:37.007812pt;}
.h7_c00166{height:39.218750pt;}
.h3_c00166{height:45.500000pt;}
.h6_c00166{height:50.854400pt;}
.h4_c00166{height:476.000000pt;}
.h2_c00166{height:1121.333333pt;}
.h0_c00166{height:1122.520000pt;}
.h1_c00166{height:1122.666667pt;}
.w3_c00166{width:601.719867pt;}
.w2_c00166{width:793.333333pt;}
.w0_c00166{width:793.720000pt;}
.w1_c00166{width:794.000000pt;}
.x0_c00166{left:0.000000pt;}
.x2_c00166{left:56.711533pt;}
.x1_c00166{left:133.795333pt;}
.x3_c00166{left:154.803333pt;}
.x4_c00166{left:338.236533pt;}
.x5_c00166{left:713.269067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f246475b57f68217d4d1889d.woff2')format("woff");}.ff1_c00167{font-family:ff1_c00167;line-height:0.934082;font-style:normal;font-weight:normal;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_0ff9bae98872541344b4aa4f.woff2')format("woff");}.ff2_c00167{font-family:ff2_c00167;line-height:0.963867;font-style:normal;font-weight:normal;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_44f62ff71212bca70b29ea2c.woff2')format("woff");}.ff3_c00167{font-family:ff3_c00167;line-height:0.888672;font-style:normal;font-weight:normal;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_1a18af387cc1e0f170dd5566.woff2')format("woff");}.ff4_c00167{font-family:ff4_c00167;line-height:0.755859;font-style:normal;font-weight:normal;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_7f54015daa9d22bcd12615e7.woff2')format("woff");}.ff5_c00167{font-family:ff5_c00167;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00167{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00167{vertical-align:0.000000px;}
.ls1_c00167{letter-spacing:-0.014400px;}
.ls0_c00167{letter-spacing:0.000000px;}
.ls2_c00167{letter-spacing:0.007200px;}
.ls3_c00167{letter-spacing:0.012000px;}
.sc__c00167{text-shadow:none;}
.sc0_c00167{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00167{-webkit-text-stroke:0px transparent;}
.sc0_c00167{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00167{word-spacing:0.000000px;}
._f_c00167{margin-left:-7.567200px;}
._0_c00167{margin-left:-3.945600px;}
._b_c00167{margin-left:-2.822400px;}
._4_c00167{margin-left:-1.396800px;}
._1_c00167{width:1.540800px;}
._8_c00167{width:3.132000px;}
._3_c00167{width:4.413600px;}
._e_c00167{width:5.486400px;}
._2_c00167{width:6.652800px;}
._6_c00167{width:8.172000px;}
._5_c00167{width:9.784800px;}
._7_c00167{width:11.296800px;}
._9_c00167{width:12.319200px;}
._d_c00167{width:14.101560px;}
._c_c00167{width:16.322400px;}
._a_c00167{width:17.812800px;}
.fc0_c00167{color:rgb(0,0,0);}
.fs1_c00167{font-size:54.000000px;}
.fs2_c00167{font-size:60.000000px;}
.fs0_c00167{font-size:72.000000px;}
.y0_c00167{bottom:0.000000px;}
.y3_c00167{bottom:12.000000px;}
.y10_c00167{bottom:67.335000px;}
.ye_c00167{bottom:136.335000px;}
.yd_c00167{bottom:163.335000px;}
.yc_c00167{bottom:190.335000px;}
.yb_c00167{bottom:217.335000px;}
.ya_c00167{bottom:244.335000px;}
.y9_c00167{bottom:271.335000px;}
.y8_c00167{bottom:311.835000px;}
.y7_c00167{bottom:544.335000px;}
.y6_c00167{bottom:571.335000px;}
.y5_c00167{bottom:598.335000px;}
.y4_c00167{bottom:625.335000px;}
.y2_c00167{bottom:665.835000px;}
.y1_c00167{bottom:1094.835000px;}
.yf_c00167{bottom:1193.835000px;}
.h5_c00167{height:41.633789px;}
.h8_c00167{height:44.208984px;}
.h3_c00167{height:51.257812px;}
.h7_c00167{height:56.074219px;}
.h6_c00167{height:201.000000px;}
.h4_c00167{height:397.500000px;}
.h2_c00167{height:1261.500000px;}
.h0_c00167{height:1262.835000px;}
.h1_c00167{height:1263.000000px;}
.w4_c00167{width:676.934850px;}
.w3_c00167{width:676.935000px;}
.w2_c00167{width:892.500000px;}
.w0_c00167{width:892.935000px;}
.w1_c00167{width:893.250000px;}
.x0_c00167{left:0.000000px;}
.x1_c00167{left:65.480310px;}
.x3_c00167{left:125.249205px;}
.x2_c00167{left:129.266925px;}
@media print{
.v0_c00167{vertical-align:0.000000pt;}
.ls1_c00167{letter-spacing:-0.012800pt;}
.ls0_c00167{letter-spacing:0.000000pt;}
.ls2_c00167{letter-spacing:0.006400pt;}
.ls3_c00167{letter-spacing:0.010667pt;}
.ws0_c00167{word-spacing:0.000000pt;}
._f_c00167{margin-left:-6.726400pt;}
._0_c00167{margin-left:-3.507200pt;}
._b_c00167{margin-left:-2.508800pt;}
._4_c00167{margin-left:-1.241600pt;}
._1_c00167{width:1.369600pt;}
._8_c00167{width:2.784000pt;}
._3_c00167{width:3.923200pt;}
._e_c00167{width:4.876800pt;}
._2_c00167{width:5.913600pt;}
._6_c00167{width:7.264000pt;}
._5_c00167{width:8.697600pt;}
._7_c00167{width:10.041600pt;}
._9_c00167{width:10.950400pt;}
._d_c00167{width:12.534720pt;}
._c_c00167{width:14.508800pt;}
._a_c00167{width:15.833600pt;}
.fs1_c00167{font-size:48.000000pt;}
.fs2_c00167{font-size:53.333333pt;}
.fs0_c00167{font-size:64.000000pt;}
.y0_c00167{bottom:0.000000pt;}
.y3_c00167{bottom:10.666667pt;}
.y10_c00167{bottom:59.853333pt;}
.ye_c00167{bottom:121.186667pt;}
.yd_c00167{bottom:145.186667pt;}
.yc_c00167{bottom:169.186667pt;}
.yb_c00167{bottom:193.186667pt;}
.ya_c00167{bottom:217.186667pt;}
.y9_c00167{bottom:241.186667pt;}
.y8_c00167{bottom:277.186667pt;}
.y7_c00167{bottom:483.853333pt;}
.y6_c00167{bottom:507.853333pt;}
.y5_c00167{bottom:531.853333pt;}
.y4_c00167{bottom:555.853333pt;}
.y2_c00167{bottom:591.853333pt;}
.y1_c00167{bottom:973.186667pt;}
.yf_c00167{bottom:1061.186667pt;}
.h5_c00167{height:37.007812pt;}
.h8_c00167{height:39.296875pt;}
.h3_c00167{height:45.562500pt;}
.h7_c00167{height:49.843750pt;}
.h6_c00167{height:178.666667pt;}
.h4_c00167{height:353.333333pt;}
.h2_c00167{height:1121.333333pt;}
.h0_c00167{height:1122.520000pt;}
.h1_c00167{height:1122.666667pt;}
.w4_c00167{width:601.719867pt;}
.w3_c00167{width:601.720000pt;}
.w2_c00167{width:793.333333pt;}
.w0_c00167{width:793.720000pt;}
.w1_c00167{width:794.000000pt;}
.x0_c00167{left:0.000000pt;}
.x1_c00167{left:58.204720pt;}
.x3_c00167{left:111.332627pt;}
.x2_c00167{left:114.903933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_195ad3f4b02e2df1e2f49a89.woff2')format("woff");}.ff1_c00168{font-family:ff1_c00168;line-height:0.934082;font-style:normal;font-weight:normal;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_1b5219a37d77dbf03a1f4d62.woff2')format("woff");}.ff2_c00168{font-family:ff2_c00168;line-height:0.926270;font-style:normal;font-weight:normal;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_2211fb0e32653ca0f976774d.woff2')format("woff");}.ff3_c00168{font-family:ff3_c00168;line-height:0.956543;font-style:normal;font-weight:normal;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_15fabf0c54dfa340000c43f0.woff2')format("woff");}.ff4_c00168{font-family:ff4_c00168;line-height:0.905762;font-style: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);}
.v2_c00168{vertical-align:-23.086200px;}
.v3_c00168{vertical-align:-15.000000px;}
.v0_c00168{vertical-align:0.000000px;}
.v1_c00168{vertical-align:23.086200px;}
.ls4_c00168{letter-spacing:-0.009600px;}
.ls3_c00168{letter-spacing:0.000000px;}
.ls1_c00168{letter-spacing:0.007200px;}
.ls2_c00168{letter-spacing:0.012000px;}
.ls0_c00168{letter-spacing:1.224000px;}
.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;}
}
.ws1_c00168{word-spacing:-19.800000px;}
.ws3_c00168{word-spacing:-15.000000px;}
.ws0_c00168{word-spacing:-13.190400px;}
.ws2_c00168{word-spacing:-10.000001px;}
.ws4_c00168{word-spacing:0.000000px;}
._16_c00168{margin-left:-18.985602px;}
._17_c00168{margin-left:-17.260002px;}
._14_c00168{margin-left:-10.584000px;}
._d_c00168{margin-left:-6.998400px;}
._b_c00168{margin-left:-5.047200px;}
._0_c00168{margin-left:-3.600000px;}
._2_c00168{margin-left:-2.016000px;}
._4_c00168{width:1.800000px;}
._7_c00168{width:3.160800px;}
._9_c00168{width:4.197600px;}
._8_c00168{width:5.868000px;}
._e_c00168{width:7.567200px;}
._a_c00168{width:8.596800px;}
._c_c00168{width:10.749600px;}
._15_c00168{width:14.767200px;}
._13_c00168{width:20.858400px;}
._f_c00168{width:22.132800px;}
._12_c00168{width:23.839200px;}
._10_c00168{width:25.927200px;}
._11_c00168{width:27.489600px;}
._5_c00168{width:32.328000px;}
._6_c00168{width:34.128000px;}
._3_c00168{width:36.216000px;}
._1_c00168{width:37.728000px;}
.fc1_c00168{color:rgb(0,0,153);}
.fc0_c00168{color:rgb(0,0,0);}
.fs3_c00168{font-size:40.000002px;}
.fs1_c00168{font-size:48.000000px;}
.fs2_c00168{font-size:60.000000px;}
.fs0_c00168{font-size:72.000000px;}
.y0_c00168{bottom:0.000000px;}
.y18_c00168{bottom:67.335000px;}
.y1f_c00168{bottom:131.835000px;}
.y1e_c00168{bottom:155.085000px;}
.y1d_c00168{bottom:196.335000px;}
.y1c_c00168{bottom:219.585000px;}
.y1b_c00168{bottom:260.835000px;}
.y1a_c00168{bottom:284.085000px;}
.y19_c00168{bottom:329.085000px;}
.y16_c00168{bottom:404.835000px;}
.y15_c00168{bottom:431.835000px;}
.y14_c00168{bottom:458.835000px;}
.y13_c00168{bottom:505.335000px;}
.y12_c00168{bottom:574.335000px;}
.y11_c00168{bottom:601.335000px;}
.y10_c00168{bottom:649.335000px;}
.yf_c00168{bottom:676.335000px;}
.ye_c00168{bottom:703.335000px;}
.yd_c00168{bottom:730.335000px;}
.yc_c00168{bottom:757.335000px;}
.yb_c00168{bottom:784.335000px;}
.ya_c00168{bottom:832.335000px;}
.y9_c00168{bottom:859.335000px;}
.y8_c00168{bottom:886.335000px;}
.y7_c00168{bottom:929.835000px;}
.y6_c00168{bottom:952.335000px;}
.y5_c00168{bottom:974.835000px;}
.y4_c00168{bottom:997.335000px;}
.y3_c00168{bottom:1019.835000px;}
.y2_c00168{bottom:1067.835000px;}
.y1_c00168{bottom:1094.835000px;}
.y17_c00168{bottom:1193.835000px;}
.h7_c00168{height:27.480470px;}
.h8_c00168{height:41.220703px;}
.h6_c00168{height:44.121094px;}
.h5_c00168{height:50.835938px;}
.h3_c00168{height:51.257812px;}
.h4_c00168{height:57.258075px;}
.h2_c00168{height:1261.500000px;}
.h0_c00168{height:1262.835000px;}
.h1_c00168{height:1263.000000px;}
.w2_c00168{width:892.500000px;}
.w0_c00168{width:892.935000px;}
.w1_c00168{width:893.250000px;}
.x0_c00168{left:0.000000px;}
.x1_c00168{left:150.519750px;}
.x2_c00168{left:380.516100px;}
.x3_c00168{left:802.427700px;}
@media print{
.v2_c00168{vertical-align:-20.521067pt;}
.v3_c00168{vertical-align:-13.333333pt;}
.v0_c00168{vertical-align:0.000000pt;}
.v1_c00168{vertical-align:20.521067pt;}
.ls4_c00168{letter-spacing:-0.008533pt;}
.ls3_c00168{letter-spacing:0.000000pt;}
.ls1_c00168{letter-spacing:0.006400pt;}
.ls2_c00168{letter-spacing:0.010667pt;}
.ls0_c00168{letter-spacing:1.088000pt;}
.ws1_c00168{word-spacing:-17.600000pt;}
.ws3_c00168{word-spacing:-13.333333pt;}
.ws0_c00168{word-spacing:-11.724800pt;}
.ws2_c00168{word-spacing:-8.888889pt;}
.ws4_c00168{word-spacing:0.000000pt;}
._16_c00168{margin-left:-16.876091pt;}
._17_c00168{margin-left:-15.342224pt;}
._14_c00168{margin-left:-9.408000pt;}
._d_c00168{margin-left:-6.220800pt;}
._b_c00168{margin-left:-4.486400pt;}
._0_c00168{margin-left:-3.200000pt;}
._2_c00168{margin-left:-1.792000pt;}
._4_c00168{width:1.600000pt;}
._7_c00168{width:2.809600pt;}
._9_c00168{width:3.731200pt;}
._8_c00168{width:5.216000pt;}
._e_c00168{width:6.726400pt;}
._a_c00168{width:7.641600pt;}
._c_c00168{width:9.555200pt;}
._15_c00168{width:13.126400pt;}
._13_c00168{width:18.540800pt;}
._f_c00168{width:19.673600pt;}
._12_c00168{width:21.190400pt;}
._10_c00168{width:23.046400pt;}
._11_c00168{width:24.435200pt;}
._5_c00168{width:28.736000pt;}
._6_c00168{width:30.336000pt;}
._3_c00168{width:32.192000pt;}
._1_c00168{width:33.536000pt;}
.fs3_c00168{font-size:35.555557pt;}
.fs1_c00168{font-size:42.666667pt;}
.fs2_c00168{font-size:53.333333pt;}
.fs0_c00168{font-size:64.000000pt;}
.y0_c00168{bottom:0.000000pt;}
.y18_c00168{bottom:59.853333pt;}
.y1f_c00168{bottom:117.186667pt;}
.y1e_c00168{bottom:137.853333pt;}
.y1d_c00168{bottom:174.520000pt;}
.y1c_c00168{bottom:195.186667pt;}
.y1b_c00168{bottom:231.853333pt;}
.y1a_c00168{bottom:252.520000pt;}
.y19_c00168{bottom:292.520000pt;}
.y16_c00168{bottom:359.853333pt;}
.y15_c00168{bottom:383.853333pt;}
.y14_c00168{bottom:407.853333pt;}
.y13_c00168{bottom:449.186667pt;}
.y12_c00168{bottom:510.520000pt;}
.y11_c00168{bottom:534.520000pt;}
.y10_c00168{bottom:577.186667pt;}
.yf_c00168{bottom:601.186667pt;}
.ye_c00168{bottom:625.186667pt;}
.yd_c00168{bottom:649.186667pt;}
.yc_c00168{bottom:673.186667pt;}
.yb_c00168{bottom:697.186667pt;}
.ya_c00168{bottom:739.853333pt;}
.y9_c00168{bottom:763.853333pt;}
.y8_c00168{bottom:787.853333pt;}
.y7_c00168{bottom:826.520000pt;}
.y6_c00168{bottom:846.520000pt;}
.y5_c00168{bottom:866.520000pt;}
.y4_c00168{bottom:886.520000pt;}
.y3_c00168{bottom:906.520000pt;}
.y2_c00168{bottom:949.186667pt;}
.y1_c00168{bottom:973.186667pt;}
.y17_c00168{bottom:1061.186667pt;}
.h7_c00168{height:24.427085pt;}
.h8_c00168{height:36.640625pt;}
.h6_c00168{height:39.218750pt;}
.h5_c00168{height:45.187500pt;}
.h3_c00168{height:45.562500pt;}
.h4_c00168{height:50.896067pt;}
.h2_c00168{height:1121.333333pt;}
.h0_c00168{height:1122.520000pt;}
.h1_c00168{height:1122.666667pt;}
.w2_c00168{width:793.333333pt;}
.w0_c00168{width:793.720000pt;}
.w1_c00168{width:794.000000pt;}
.x0_c00168{left:0.000000pt;}
.x1_c00168{left:133.795333pt;}
.x2_c00168{left:338.236533pt;}
.x3_c00168{left:713.269067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a73657cefa316706102dcf2b.woff2')format("woff");}.ff1_c00169{font-family:ff1_c00169;line-height:0.934082;font-style:normal;font-weight:normal;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_a815fd7ab81eb944e79f2c35.woff2')format("woff");}.ff2_c00169{font-family:ff2_c00169;line-height:0.976074;font-style:normal;font-weight:normal;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_27d243b7229dc18d6996ddf8.woff2')format("woff");}.ff3_c00169{font-family:ff3_c00169;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00169;src:url('chunks/assets/font_d6e060eb9905b9e064c820be.woff2')format("woff");}.ff4_c00169{font-family:ff4_c00169;line-height:0.755859;font-style:normal;font-weight:normal;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_49f20fed22710ba0605435cf.woff2')format("woff");}.ff5_c00169{font-family:ff5_c00169;line-height:1.155762;font-style:normal;font-weight: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_c00169;src:url('chunks/assets/font_f523aa00c6c5e25835f52ea3.woff2')format("woff");}.ff6_c00169{font-family:ff6_c00169;line-height:0.904785;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00169{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00169{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00169{vertical-align:-23.086200px;}
.v3_c00169{vertical-align:-15.000000px;}
.v0_c00169{vertical-align:0.000000px;}
.v1_c00169{vertical-align:23.086200px;}
.ls3_c00169{letter-spacing:-0.009600px;}
.ls2_c00169{letter-spacing:0.000000px;}
.ls4_c00169{letter-spacing:0.012000px;}
.ls0_c00169{letter-spacing:0.016200px;}
.ls1_c00169{letter-spacing:1.340220px;}
.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:-19.800000px;}
.ws3_c00169{word-spacing:-15.000000px;}
.ws0_c00169{word-spacing:-13.190400px;}
.ws2_c00169{word-spacing:-10.000001px;}
.ws4_c00169{word-spacing:0.000000px;}
._15_c00169{margin-left:-19.002000px;}
._16_c00169{margin-left:-5.595600px;}
._6_c00169{margin-left:-4.368240px;}
._3_c00169{margin-left:-2.894400px;}
._b_c00169{margin-left:-1.015200px;}
._2_c00169{width:1.620000px;}
._5_c00169{width:3.002400px;}
._1_c00169{width:4.701600px;}
._0_c00169{width:6.314400px;}
._14_c00169{width:8.164638px;}
._4_c00169{width:9.187200px;}
._13_c00169{width:12.909600px;}
._11_c00169{width:14.522400px;}
._12_c00169{width:15.566400px;}
._8_c00169{width:16.675200px;}
._9_c00169{width:17.949600px;}
._7_c00169{width:21.398400px;}
._17_c00169{width:22.888560px;}
._a_c00169{width:24.048000px;}
._e_c00169{width:31.795200px;}
._c_c00169{width:33.170400px;}
._f_c00169{width:34.768800px;}
._10_c00169{width:35.827200px;}
._d_c00169{width:37.677600px;}
._18_c00169{width:59.121600px;}
._1a_c00169{width:62.160000px;}
._1b_c00169{width:65.018400px;}
._19_c00169{width:67.743600px;}
.fc1_c00169{color:rgb(0,0,153);}
.fc0_c00169{color:rgb(0,0,0);}
.fs4_c00169{font-size:40.000002px;}
.fs1_c00169{font-size:48.000000px;}
.fs2_c00169{font-size:54.000000px;}
.fs3_c00169{font-size:60.000000px;}
.fs0_c00169{font-size:72.000000px;}
.y0_c00169{bottom:0.000000px;}
.yd_c00169{bottom:10.500000px;}
.yc_c00169{bottom:33.000000px;}
.y13_c00169{bottom:67.335000px;}
.y18_c00169{bottom:131.835000px;}
.y17_c00169{bottom:151.335000px;}
.y16_c00169{bottom:174.585000px;}
.y15_c00169{bottom:215.835000px;}
.y14_c00169{bottom:239.085000px;}
.y11_c00169{bottom:293.835000px;}
.y10_c00169{bottom:320.835000px;}
.yf_c00169{bottom:347.835000px;}
.ye_c00169{bottom:374.835000px;}
.yb_c00169{bottom:415.335000px;}
.ya_c00169{bottom:809.835000px;}
.y9_c00169{bottom:836.835000px;}
.y8_c00169{bottom:863.835000px;}
.y7_c00169{bottom:911.835000px;}
.y6_c00169{bottom:938.835000px;}
.y5_c00169{bottom:965.835000px;}
.y4_c00169{bottom:992.835000px;}
.y3_c00169{bottom:1019.835000px;}
.y2_c00169{bottom:1067.835000px;}
.y1_c00169{bottom:1094.835000px;}
.y12_c00169{bottom:1193.835000px;}
.h9_c00169{height:27.480470px;}
.ha_c00169{height:41.220703px;}
.h6_c00169{height:42.292969px;}
.h8_c00169{height:44.208984px;}
.h3_c00169{height:51.257812px;}
.h7_c00169{height:56.074219px;}
.h4_c00169{height:57.258075px;}
.h5_c00169{height:363.000000px;}
.h2_c00169{height:1261.500000px;}
.h0_c00169{height:1262.835000px;}
.h1_c00169{height:1263.000000px;}
.w3_c00169{width:676.934850px;}
.w2_c00169{width:892.500000px;}
.w0_c00169{width:892.935000px;}
.w1_c00169{width:893.250000px;}
.x0_c00169{left:0.000000px;}
.x2_c00169{left:9.217461px;}
.x1_c00169{left:65.480310px;}
.x3_c00169{left:270.601650px;}
@media print{
.v2_c00169{vertical-align:-20.521067pt;}
.v3_c00169{vertical-align:-13.333333pt;}
.v0_c00169{vertical-align:0.000000pt;}
.v1_c00169{vertical-align:20.521067pt;}
.ls3_c00169{letter-spacing:-0.008533pt;}
.ls2_c00169{letter-spacing:0.000000pt;}
.ls4_c00169{letter-spacing:0.010667pt;}
.ls0_c00169{letter-spacing:0.014400pt;}
.ls1_c00169{letter-spacing:1.191307pt;}
.ws1_c00169{word-spacing:-17.600000pt;}
.ws3_c00169{word-spacing:-13.333333pt;}
.ws0_c00169{word-spacing:-11.724800pt;}
.ws2_c00169{word-spacing:-8.888889pt;}
.ws4_c00169{word-spacing:0.000000pt;}
._15_c00169{margin-left:-16.890667pt;}
._16_c00169{margin-left:-4.973867pt;}
._6_c00169{margin-left:-3.882880pt;}
._3_c00169{margin-left:-2.572800pt;}
._b_c00169{margin-left:-0.902400pt;}
._2_c00169{width:1.440000pt;}
._5_c00169{width:2.668800pt;}
._1_c00169{width:4.179200pt;}
._0_c00169{width:5.612800pt;}
._14_c00169{width:7.257456pt;}
._4_c00169{width:8.166400pt;}
._13_c00169{width:11.475200pt;}
._11_c00169{width:12.908800pt;}
._12_c00169{width:13.836800pt;}
._8_c00169{width:14.822400pt;}
._9_c00169{width:15.955200pt;}
._7_c00169{width:19.020800pt;}
._17_c00169{width:20.345387pt;}
._a_c00169{width:21.376000pt;}
._e_c00169{width:28.262400pt;}
._c_c00169{width:29.484800pt;}
._f_c00169{width:30.905600pt;}
._10_c00169{width:31.846400pt;}
._d_c00169{width:33.491200pt;}
._18_c00169{width:52.552533pt;}
._1a_c00169{width:55.253333pt;}
._1b_c00169{width:57.794133pt;}
._19_c00169{width:60.216533pt;}
.fs4_c00169{font-size:35.555557pt;}
.fs1_c00169{font-size:42.666667pt;}
.fs2_c00169{font-size:48.000000pt;}
.fs3_c00169{font-size:53.333333pt;}
.fs0_c00169{font-size:64.000000pt;}
.y0_c00169{bottom:0.000000pt;}
.yd_c00169{bottom:9.333333pt;}
.yc_c00169{bottom:29.333333pt;}
.y13_c00169{bottom:59.853333pt;}
.y18_c00169{bottom:117.186667pt;}
.y17_c00169{bottom:134.520000pt;}
.y16_c00169{bottom:155.186667pt;}
.y15_c00169{bottom:191.853333pt;}
.y14_c00169{bottom:212.520000pt;}
.y11_c00169{bottom:261.186667pt;}
.y10_c00169{bottom:285.186667pt;}
.yf_c00169{bottom:309.186667pt;}
.ye_c00169{bottom:333.186667pt;}
.yb_c00169{bottom:369.186667pt;}
.ya_c00169{bottom:719.853333pt;}
.y9_c00169{bottom:743.853333pt;}
.y8_c00169{bottom:767.853333pt;}
.y7_c00169{bottom:810.520000pt;}
.y6_c00169{bottom:834.520000pt;}
.y5_c00169{bottom:858.520000pt;}
.y4_c00169{bottom:882.520000pt;}
.y3_c00169{bottom:906.520000pt;}
.y2_c00169{bottom:949.186667pt;}
.y1_c00169{bottom:973.186667pt;}
.y12_c00169{bottom:1061.186667pt;}
.h9_c00169{height:24.427085pt;}
.ha_c00169{height:36.640625pt;}
.h6_c00169{height:37.593750pt;}
.h8_c00169{height:39.296875pt;}
.h3_c00169{height:45.562500pt;}
.h7_c00169{height:49.843750pt;}
.h4_c00169{height:50.896067pt;}
.h5_c00169{height:322.666667pt;}
.h2_c00169{height:1121.333333pt;}
.h0_c00169{height:1122.520000pt;}
.h1_c00169{height:1122.666667pt;}
.w3_c00169{width:601.719867pt;}
.w2_c00169{width:793.333333pt;}
.w0_c00169{width:793.720000pt;}
.w1_c00169{width:794.000000pt;}
.x0_c00169{left:0.000000pt;}
.x2_c00169{left:8.193299pt;}
.x1_c00169{left:58.204720pt;}
.x3_c00169{left:240.534800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_deba7c43a0afed62843d8f7b.woff2')format("woff");}.ff1_c00170{font-family:ff1_c00170;line-height:0.939453;font-style:normal;font-weight:normal;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_4f80b2141e81f7ac95a1b837.woff2')format("woff");}.ff2_c00170{font-family:ff2_c00170;line-height:0.934082;font-style:normal;font-weight:normal;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_d5486def58b1b010a5596822.woff2')format("woff");}.ff3_c00170{font-family:ff3_c00170;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00170;src:url('chunks/assets/font_8363c77eb042668c5a96ca83.woff2')format("woff");}.ff4_c00170{font-family:ff4_c00170;line-height:0.956543;font-style:normal;font-weight:normal;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_530d9fc1872398e02d396912.woff2')format("woff");}.ff5_c00170{font-family:ff5_c00170;line-height:1.043945;font-style:normal;font-weight: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_c00170;src:url('chunks/assets/font_41a21542ed294ab50149b924.woff2')format("woff");}.ff6_c00170{font-family:ff6_c00170;line-height:0.891113;font-style: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);}
.v2_c00170{vertical-align:-23.086200px;}
.v3_c00170{vertical-align:-15.400200px;}
.v0_c00170{vertical-align:0.000000px;}
.v1_c00170{vertical-align:23.086200px;}
.ls3_c00170{letter-spacing:-0.009600px;}
.ls2_c00170{letter-spacing:0.000000px;}
.ls0_c00170{letter-spacing:0.007800px;}
.ls4_c00170{letter-spacing:0.008000px;}
.ls1_c00170{letter-spacing:0.012000px;}
.sc__c00170{text-shadow:none;}
.sc0_c00170{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00170{-webkit-text-stroke:0px transparent;}
.sc0_c00170{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00170{word-spacing:-22.549800px;}
.ws1_c00170{word-spacing:-22.542000px;}
.ws3_c00170{word-spacing:-19.800000px;}
.ws2_c00170{word-spacing:-13.190400px;}
.ws5_c00170{word-spacing:-11.128001px;}
.ws6_c00170{word-spacing:-10.000001px;}
.ws4_c00170{word-spacing:-0.072000px;}
.ws7_c00170{word-spacing:0.000000px;}
._9_c00170{margin-left:-10.281600px;}
._13_c00170{margin-left:-9.144000px;}
._16_c00170{margin-left:-7.552800px;}
._11_c00170{margin-left:-5.364000px;}
._a_c00170{margin-left:-4.312800px;}
._1_c00170{margin-left:-2.959200px;}
._7_c00170{margin-left:-1.231200px;}
._5_c00170{width:1.317600px;}
._4_c00170{width:2.548800px;}
._3_c00170{width:3.628800px;}
._6_c00170{width:4.780800px;}
._0_c00170{width:6.170400px;}
._8_c00170{width:7.538400px;}
._2_c00170{width:9.259200px;}
._b_c00170{width:10.605600px;}
._12_c00170{width:11.937600px;}
._17_c00170{width:13.183200px;}
._18_c00170{width:14.860800px;}
._f_c00170{width:21.232800px;}
._c_c00170{width:25.120800px;}
._e_c00170{width:26.438400px;}
._10_c00170{width:27.633600px;}
._d_c00170{width:30.722400px;}
._15_c00170{width:34.668000px;}
._14_c00170{width:36.669600px;}
.fc1_c00170{color:rgb(255,255,255);}
.fc0_c00170{color:rgb(0,0,0);}
.fs5_c00170{font-size:40.000002px;}
.fs2_c00170{font-size:48.000000px;}
.fs4_c00170{font-size:60.000000px;}
.fs1_c00170{font-size:72.000000px;}
.fs0_c00170{font-size:78.000000px;}
.fs3_c00170{font-size:96.000000px;}
.y0_c00170{bottom:0.000000px;}
.y19_c00170{bottom:67.335000px;}
.y1c_c00170{bottom:135.585000px;}
.y1b_c00170{bottom:180.585000px;}
.y1a_c00170{bottom:225.685050px;}
.y16_c00170{bottom:278.835000px;}
.y15_c00170{bottom:305.835000px;}
.y14_c00170{bottom:332.835000px;}
.y13_c00170{bottom:359.835000px;}
.y12_c00170{bottom:407.835000px;}
.y11_c00170{bottom:434.835000px;}
.y10_c00170{bottom:461.835000px;}
.yf_c00170{bottom:488.835000px;}
.ye_c00170{bottom:535.335000px;}
.yd_c00170{bottom:605.835000px;}
.yc_c00170{bottom:653.835000px;}
.yb_c00170{bottom:680.835000px;}
.ya_c00170{bottom:707.835000px;}
.y9_c00170{bottom:755.835000px;}
.y8_c00170{bottom:782.835000px;}
.y7_c00170{bottom:809.835000px;}
.y6_c00170{bottom:836.835000px;}
.y5_c00170{bottom:863.835000px;}
.y4_c00170{bottom:890.835000px;}
.y3_c00170{bottom:917.835000px;}
.y2_c00170{bottom:944.835000px;}
.y1_c00170{bottom:991.335000px;}
.y17_c00170{bottom:1066.335000px;}
.y18_c00170{bottom:1193.835000px;}
.h8_c00170{height:34.170112px;}
.h9_c00170{height:34.570312px;}
.h7_c00170{height:44.121094px;}
.h4_c00170{height:51.257812px;}
.h3_c00170{height:56.100586px;}
.h5_c00170{height:57.258075px;}
.h6_c00170{height:68.343750px;}
.h2_c00170{height:1261.500000px;}
.h0_c00170{height:1262.835000px;}
.h1_c00170{height:1263.000000px;}
.w2_c00170{width:892.500000px;}
.w0_c00170{width:892.935000px;}
.w1_c00170{width:893.250000px;}
.x0_c00170{left:0.000000px;}
.x1_c00170{left:150.519750px;}
.x2_c00170{left:180.298875px;}
.x3_c00170{left:380.516100px;}
.x4_c00170{left:802.427700px;}
@media print{
.v2_c00170{vertical-align:-20.521067pt;}
.v3_c00170{vertical-align:-13.689067pt;}
.v0_c00170{vertical-align:0.000000pt;}
.v1_c00170{vertical-align:20.521067pt;}
.ls3_c00170{letter-spacing:-0.008533pt;}
.ls2_c00170{letter-spacing:0.000000pt;}
.ls0_c00170{letter-spacing:0.006933pt;}
.ls4_c00170{letter-spacing:0.007111pt;}
.ls1_c00170{letter-spacing:0.010667pt;}
.ws0_c00170{word-spacing:-20.044267pt;}
.ws1_c00170{word-spacing:-20.037333pt;}
.ws3_c00170{word-spacing:-17.600000pt;}
.ws2_c00170{word-spacing:-11.724800pt;}
.ws5_c00170{word-spacing:-9.891556pt;}
.ws6_c00170{word-spacing:-8.888889pt;}
.ws4_c00170{word-spacing:-0.064000pt;}
.ws7_c00170{word-spacing:0.000000pt;}
._9_c00170{margin-left:-9.139200pt;}
._13_c00170{margin-left:-8.128000pt;}
._16_c00170{margin-left:-6.713600pt;}
._11_c00170{margin-left:-4.768000pt;}
._a_c00170{margin-left:-3.833600pt;}
._1_c00170{margin-left:-2.630400pt;}
._7_c00170{margin-left:-1.094400pt;}
._5_c00170{width:1.171200pt;}
._4_c00170{width:2.265600pt;}
._3_c00170{width:3.225600pt;}
._6_c00170{width:4.249600pt;}
._0_c00170{width:5.484800pt;}
._8_c00170{width:6.700800pt;}
._2_c00170{width:8.230400pt;}
._b_c00170{width:9.427200pt;}
._12_c00170{width:10.611200pt;}
._17_c00170{width:11.718400pt;}
._18_c00170{width:13.209600pt;}
._f_c00170{width:18.873600pt;}
._c_c00170{width:22.329600pt;}
._e_c00170{width:23.500800pt;}
._10_c00170{width:24.563200pt;}
._d_c00170{width:27.308800pt;}
._15_c00170{width:30.816000pt;}
._14_c00170{width:32.595200pt;}
.fs5_c00170{font-size:35.555557pt;}
.fs2_c00170{font-size:42.666667pt;}
.fs4_c00170{font-size:53.333333pt;}
.fs1_c00170{font-size:64.000000pt;}
.fs0_c00170{font-size:69.333333pt;}
.fs3_c00170{font-size:85.333333pt;}
.y0_c00170{bottom:0.000000pt;}
.y19_c00170{bottom:59.853333pt;}
.y1c_c00170{bottom:120.520000pt;}
.y1b_c00170{bottom:160.520000pt;}
.y1a_c00170{bottom:200.608933pt;}
.y16_c00170{bottom:247.853333pt;}
.y15_c00170{bottom:271.853333pt;}
.y14_c00170{bottom:295.853333pt;}
.y13_c00170{bottom:319.853333pt;}
.y12_c00170{bottom:362.520000pt;}
.y11_c00170{bottom:386.520000pt;}
.y10_c00170{bottom:410.520000pt;}
.yf_c00170{bottom:434.520000pt;}
.ye_c00170{bottom:475.853333pt;}
.yd_c00170{bottom:538.520000pt;}
.yc_c00170{bottom:581.186667pt;}
.yb_c00170{bottom:605.186667pt;}
.ya_c00170{bottom:629.186667pt;}
.y9_c00170{bottom:671.853333pt;}
.y8_c00170{bottom:695.853333pt;}
.y7_c00170{bottom:719.853333pt;}
.y6_c00170{bottom:743.853333pt;}
.y5_c00170{bottom:767.853333pt;}
.y4_c00170{bottom:791.853333pt;}
.y3_c00170{bottom:815.853333pt;}
.y2_c00170{bottom:839.853333pt;}
.y1_c00170{bottom:881.186667pt;}
.y17_c00170{bottom:947.853333pt;}
.y18_c00170{bottom:1061.186667pt;}
.h8_c00170{height:30.373433pt;}
.h9_c00170{height:30.729167pt;}
.h7_c00170{height:39.218750pt;}
.h4_c00170{height:45.562500pt;}
.h3_c00170{height:49.867188pt;}
.h5_c00170{height:50.896067pt;}
.h6_c00170{height:60.750000pt;}
.h2_c00170{height:1121.333333pt;}
.h0_c00170{height:1122.520000pt;}
.h1_c00170{height:1122.666667pt;}
.w2_c00170{width:793.333333pt;}
.w0_c00170{width:793.720000pt;}
.w1_c00170{width:794.000000pt;}
.x0_c00170{left:0.000000pt;}
.x1_c00170{left:133.795333pt;}
.x2_c00170{left:160.265667pt;}
.x3_c00170{left:338.236533pt;}
.x4_c00170{left:713.269067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3899a6c8554590e7682e5b23.woff2')format("woff");}.ff1_c00171{font-family:ff1_c00171;line-height:0.933105;font-style:normal;font-weight:normal;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_1b54b345480d2bbf6ea4c816.woff2')format("woff");}.ff2_c00171{font-family:ff2_c00171;line-height:0.783203;font-style:normal;font-weight:normal;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_8e64014133fa3bc89f858c2d.woff2')format("woff");}.ff3_c00171{font-family:ff3_c00171;line-height:0.756836;font-style:normal;font-weight:normal;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_a5652d9741a946075874b490.woff2')format("woff");}.ff4_c00171{font-family:ff4_c00171;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00171{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00171{vertical-align:0.000000px;}
.ls0_c00171{letter-spacing:0.000000px;}
.ls1_c00171{letter-spacing:0.012000px;}
.sc__c00171{text-shadow:none;}
.sc0_c00171{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00171{-webkit-text-stroke:0px transparent;}
.sc0_c00171{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00171{word-spacing:0.000000px;}
._5_c00171{margin-left:-7.200000px;}
._6_c00171{margin-left:-3.412800px;}
._2_c00171{margin-left:-2.167200px;}
._0_c00171{width:1.728000px;}
._3_c00171{width:2.930400px;}
._1_c00171{width:4.017600px;}
._8_c00171{width:29.188800px;}
._9_c00171{width:31.449600px;}
._4_c00171{width:33.199200px;}
._a_c00171{width:35.416800px;}
._7_c00171{width:36.597600px;}
.fc0_c00171{color:rgb(0,0,0);}
.fs1_c00171{font-size:54.000000px;}
.fs2_c00171{font-size:60.000000px;}
.fs0_c00171{font-size:72.000000px;}
.y0_c00171{bottom:0.000000px;}
.y6_c00171{bottom:11.999985px;}
.y4_c00171{bottom:12.000000px;}
.y8_c00171{bottom:67.335000px;}
.y5_c00171{bottom:134.835015px;}
.y3_c00171{bottom:604.335000px;}
.y2_c00171{bottom:1067.835000px;}
.y1_c00171{bottom:1094.835000px;}
.y7_c00171{bottom:1193.835000px;}
.h5_c00171{height:41.633789px;}
.h8_c00171{height:44.208984px;}
.h3_c00171{height:51.187500px;}
.h7_c00171{height:56.074219px;}
.h6_c00171{height:418.500000px;}
.h4_c00171{height:453.000000px;}
.h2_c00171{height:1261.500000px;}
.h0_c00171{height:1262.835000px;}
.h1_c00171{height:1263.000000px;}
.w3_c00171{width:676.934850px;}
.w2_c00171{width:892.500000px;}
.w0_c00171{width:892.935000px;}
.w1_c00171{width:893.250000px;}
.x0_c00171{left:0.000000px;}
.x1_c00171{left:65.480310px;}
.x2_c00171{left:265.621500px;}
@media print{
.v0_c00171{vertical-align:0.000000pt;}
.ls0_c00171{letter-spacing:0.000000pt;}
.ls1_c00171{letter-spacing:0.010667pt;}
.ws0_c00171{word-spacing:0.000000pt;}
._5_c00171{margin-left:-6.400000pt;}
._6_c00171{margin-left:-3.033600pt;}
._2_c00171{margin-left:-1.926400pt;}
._0_c00171{width:1.536000pt;}
._3_c00171{width:2.604800pt;}
._1_c00171{width:3.571200pt;}
._8_c00171{width:25.945600pt;}
._9_c00171{width:27.955200pt;}
._4_c00171{width:29.510400pt;}
._a_c00171{width:31.481600pt;}
._7_c00171{width:32.531200pt;}
.fs1_c00171{font-size:48.000000pt;}
.fs2_c00171{font-size:53.333333pt;}
.fs0_c00171{font-size:64.000000pt;}
.y0_c00171{bottom:0.000000pt;}
.y6_c00171{bottom:10.666653pt;}
.y4_c00171{bottom:10.666667pt;}
.y8_c00171{bottom:59.853333pt;}
.y5_c00171{bottom:119.853347pt;}
.y3_c00171{bottom:537.186667pt;}
.y2_c00171{bottom:949.186667pt;}
.y1_c00171{bottom:973.186667pt;}
.y7_c00171{bottom:1061.186667pt;}
.h5_c00171{height:37.007812pt;}
.h8_c00171{height:39.296875pt;}
.h3_c00171{height:45.500000pt;}
.h7_c00171{height:49.843750pt;}
.h6_c00171{height:372.000000pt;}
.h4_c00171{height:402.666667pt;}
.h2_c00171{height:1121.333333pt;}
.h0_c00171{height:1122.520000pt;}
.h1_c00171{height:1122.666667pt;}
.w3_c00171{width:601.719867pt;}
.w2_c00171{width:793.333333pt;}
.w0_c00171{width:793.720000pt;}
.w1_c00171{width:794.000000pt;}
.x0_c00171{left:0.000000pt;}
.x1_c00171{left:58.204720pt;}
.x2_c00171{left:236.108000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9cfcd44a4eef1f76c4721ebc.woff2')format("woff");}.ff1_c00172{font-family:ff1_c00172;line-height:0.933105;font-style:normal;font-weight:normal;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_67b16c9d9f8422332992d4c3.woff2')format("woff");}.ff2_c00172{font-family:ff2_c00172;line-height:0.915527;font-style:normal;font-weight:normal;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_cb9edf4ae317c8d7be5bc6af.woff2')format("woff");}.ff3_c00172{font-family:ff3_c00172;line-height:0.956543;font-style:normal;font-weight:normal;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_18b0853c4f495e992634386b.woff2')format("woff");}.ff4_c00172{font-family:ff4_c00172;line-height:1.043945;font-style:normal;font-weight:normal;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_f9bbc078d3e3476f9af13a24.woff2')format("woff");}.ff5_c00172{font-family:ff5_c00172;line-height:0.891113;font-style: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);}
.v2_c00172{vertical-align:-23.086200px;}
.v3_c00172{vertical-align:-15.000000px;}
.v0_c00172{vertical-align:0.000000px;}
.v1_c00172{vertical-align:23.086200px;}
.ls2_c00172{letter-spacing:-0.009600px;}
.ls3_c00172{letter-spacing:-0.007200px;}
.ls1_c00172{letter-spacing:0.000000px;}
.ls0_c00172{letter-spacing:0.012000px;}
.sc__c00172{text-shadow:none;}
.sc0_c00172{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00172{-webkit-text-stroke:0px transparent;}
.sc0_c00172{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00172{word-spacing:-19.800000px;}
.ws1_c00172{word-spacing:-13.190400px;}
.ws2_c00172{word-spacing:-10.000001px;}
.ws3_c00172{word-spacing:0.000000px;}
._c_c00172{margin-left:-10.584000px;}
._d_c00172{margin-left:-6.642402px;}
._3_c00172{margin-left:-4.572000px;}
._5_c00172{margin-left:-2.448000px;}
._b_c00172{margin-left:-1.000800px;}
._1_c00172{width:1.555200px;}
._2_c00172{width:3.153600px;}
._0_c00172{width:4.687200px;}
._7_c00172{width:5.716800px;}
._6_c00172{width:7.142400px;}
._4_c00172{width:9.187200px;}
._8_c00172{width:10.404000px;}
._a_c00172{width:12.225600px;}
._9_c00172{width:14.356800px;}
.fc0_c00172{color:rgb(0,0,0);}
.fs4_c00172{font-size:40.000002px;}
.fs1_c00172{font-size:48.000000px;}
.fs2_c00172{font-size:54.000000px;}
.fs3_c00172{font-size:60.000000px;}
.fs0_c00172{font-size:72.000000px;}
.y0_c00172{bottom:0.000000px;}
.y6_c00172{bottom:12.000000px;}
.ye_c00172{bottom:67.335000px;}
.y11_c00172{bottom:135.585000px;}
.y10_c00172{bottom:180.585000px;}
.yf_c00172{bottom:225.585000px;}
.yc_c00172{bottom:482.835000px;}
.yb_c00172{bottom:509.835000px;}
.ya_c00172{bottom:557.835000px;}
.y9_c00172{bottom:584.835000px;}
.y8_c00172{bottom:611.835000px;}
.y7_c00172{bottom:638.835000px;}
.y5_c00172{bottom:679.335000px;}
.y4_c00172{bottom:992.835000px;}
.y3_c00172{bottom:1040.835000px;}
.y2_c00172{bottom:1067.835000px;}
.y1_c00172{bottom:1094.835000px;}
.yd_c00172{bottom:1193.835000px;}
.h8_c00172{height:34.570312px;}
.h6_c00172{height:41.633789px;}
.h7_c00172{height:44.121094px;}
.h3_c00172{height:51.187500px;}
.h4_c00172{height:57.211200px;}
.h5_c00172{height:282.000000px;}
.h2_c00172{height:1261.500000px;}
.h0_c00172{height:1262.835000px;}
.h1_c00172{height:1263.000000px;}
.w3_c00172{width:676.934850px;}
.w2_c00172{width:892.500000px;}
.w0_c00172{width:892.935000px;}
.w1_c00172{width:893.250000px;}
.x0_c00172{left:0.000000px;}
.x1_c00172{left:150.519750px;}
.x2_c00172{left:253.472850px;}
.x3_c00172{left:380.516100px;}
.x4_c00172{left:802.427700px;}
@media print{
.v2_c00172{vertical-align:-20.521067pt;}
.v3_c00172{vertical-align:-13.333333pt;}
.v0_c00172{vertical-align:0.000000pt;}
.v1_c00172{vertical-align:20.521067pt;}
.ls2_c00172{letter-spacing:-0.008533pt;}
.ls3_c00172{letter-spacing:-0.006400pt;}
.ls1_c00172{letter-spacing:0.000000pt;}
.ls0_c00172{letter-spacing:0.010667pt;}
.ws0_c00172{word-spacing:-17.600000pt;}
.ws1_c00172{word-spacing:-11.724800pt;}
.ws2_c00172{word-spacing:-8.888889pt;}
.ws3_c00172{word-spacing:0.000000pt;}
._c_c00172{margin-left:-9.408000pt;}
._d_c00172{margin-left:-5.904357pt;}
._3_c00172{margin-left:-4.064000pt;}
._5_c00172{margin-left:-2.176000pt;}
._b_c00172{margin-left:-0.889600pt;}
._1_c00172{width:1.382400pt;}
._2_c00172{width:2.803200pt;}
._0_c00172{width:4.166400pt;}
._7_c00172{width:5.081600pt;}
._6_c00172{width:6.348800pt;}
._4_c00172{width:8.166400pt;}
._8_c00172{width:9.248000pt;}
._a_c00172{width:10.867200pt;}
._9_c00172{width:12.761600pt;}
.fs4_c00172{font-size:35.555557pt;}
.fs1_c00172{font-size:42.666667pt;}
.fs2_c00172{font-size:48.000000pt;}
.fs3_c00172{font-size:53.333333pt;}
.fs0_c00172{font-size:64.000000pt;}
.y0_c00172{bottom:0.000000pt;}
.y6_c00172{bottom:10.666667pt;}
.ye_c00172{bottom:59.853333pt;}
.y11_c00172{bottom:120.520000pt;}
.y10_c00172{bottom:160.520000pt;}
.yf_c00172{bottom:200.520000pt;}
.yc_c00172{bottom:429.186667pt;}
.yb_c00172{bottom:453.186667pt;}
.ya_c00172{bottom:495.853333pt;}
.y9_c00172{bottom:519.853333pt;}
.y8_c00172{bottom:543.853333pt;}
.y7_c00172{bottom:567.853333pt;}
.y5_c00172{bottom:603.853333pt;}
.y4_c00172{bottom:882.520000pt;}
.y3_c00172{bottom:925.186667pt;}
.y2_c00172{bottom:949.186667pt;}
.y1_c00172{bottom:973.186667pt;}
.yd_c00172{bottom:1061.186667pt;}
.h8_c00172{height:30.729167pt;}
.h6_c00172{height:37.007812pt;}
.h7_c00172{height:39.218750pt;}
.h3_c00172{height:45.500000pt;}
.h4_c00172{height:50.854400pt;}
.h5_c00172{height:250.666667pt;}
.h2_c00172{height:1121.333333pt;}
.h0_c00172{height:1122.520000pt;}
.h1_c00172{height:1122.666667pt;}
.w3_c00172{width:601.719867pt;}
.w2_c00172{width:793.333333pt;}
.w0_c00172{width:793.720000pt;}
.w1_c00172{width:794.000000pt;}
.x0_c00172{left:0.000000pt;}
.x1_c00172{left:133.795333pt;}
.x2_c00172{left:225.309200pt;}
.x3_c00172{left:338.236533pt;}
.x4_c00172{left:713.269067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7d5ec0e9558fdb7279b81953.woff2')format("woff");}.ff1_c00173{font-family:ff1_c00173;line-height:0.884766;font-style:normal;font-weight:normal;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_3577b5a28f329df254b698c3.woff2')format("woff");}.ff2_c00173{font-family:ff2_c00173;line-height:0.934082;font-style:normal;font-weight:normal;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_410c4a19ce0eea17fb43c35f.woff2')format("woff");}.ff3_c00173{font-family:ff3_c00173;line-height:0.755859;font-style:normal;font-weight:normal;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_298f12a2863e4c5502e3da8e.woff2')format("woff");}.ff4_c00173{font-family:ff4_c00173;line-height:1.155762;font-style:normal;font-weight:normal;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_2d06a488578611f412275fef.woff2')format("woff");}.ff5_c00173{font-family:ff5_c00173;line-height:1.043945;font-style:normal;font-weight: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_c00173;src:url('chunks/assets/font_9ff4c3d7cb8779d48f9b3824.woff2')format("woff");}.ff6_c00173{font-family:ff6_c00173;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00173{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00173{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00173{vertical-align:-23.086200px;}
.v3_c00173{vertical-align:-15.000000px;}
.v0_c00173{vertical-align:0.000000px;}
.v1_c00173{vertical-align:23.086200px;}
.ls3_c00173{letter-spacing:-0.295200px;}
.ls2_c00173{letter-spacing:0.000000px;}
.ls0_c00173{letter-spacing:0.007800px;}
.ls4_c00173{letter-spacing:0.012000px;}
.ls1_c00173{letter-spacing:2.045400px;}
.sc__c00173{text-shadow:none;}
.sc0_c00173{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00173{-webkit-text-stroke:0px transparent;}
.sc0_c00173{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00173{word-spacing:-19.800000px;}
.ws0_c00173{word-spacing:-13.200000px;}
.ws2_c00173{word-spacing:-10.000001px;}
.ws3_c00173{word-spacing:0.000000px;}
._17_c00173{margin-left:-10.080000px;}
._18_c00173{margin-left:-6.868800px;}
._12_c00173{margin-left:-4.932000px;}
._5_c00173{margin-left:-3.362400px;}
._0_c00173{margin-left:-1.490400px;}
._2_c00173{width:1.677600px;}
._9_c00173{width:3.031200px;}
._3_c00173{width:4.197600px;}
._4_c00173{width:5.623200px;}
._1_c00173{width:7.293600px;}
._6_c00173{width:9.172800px;}
._f_c00173{width:10.756800px;}
._e_c00173{width:12.470400px;}
._10_c00173{width:13.896000px;}
._14_c00173{width:15.681600px;}
._11_c00173{width:16.740000px;}
._15_c00173{width:18.237600px;}
._16_c00173{width:21.348000px;}
._13_c00173{width:23.212800px;}
._d_c00173{width:31.377600px;}
._a_c00173{width:32.493600px;}
._c_c00173{width:33.854400px;}
._8_c00173{width:35.568000px;}
._7_c00173{width:37.036800px;}
._b_c00173{width:38.916000px;}
.fc1_c00173{color:rgb(255,255,255);}
.fc0_c00173{color:rgb(0,0,0);}
.fs5_c00173{font-size:40.000002px;}
.fs2_c00173{font-size:48.000000px;}
.fs4_c00173{font-size:60.000000px;}
.fs1_c00173{font-size:72.000000px;}
.fs0_c00173{font-size:78.000000px;}
.fs3_c00173{font-size:96.000000px;}
.y0_c00173{bottom:0.000000px;}
.y1c_c00173{bottom:67.335000px;}
.y1e_c00173{bottom:135.585000px;}
.y1d_c00173{bottom:180.585000px;}
.y19_c00173{bottom:235.335000px;}
.y18_c00173{bottom:262.335000px;}
.y17_c00173{bottom:289.335000px;}
.y16_c00173{bottom:316.335000px;}
.y15_c00173{bottom:364.335000px;}
.y14_c00173{bottom:391.335000px;}
.y13_c00173{bottom:418.335000px;}
.y12_c00173{bottom:445.335000px;}
.y11_c00173{bottom:493.335000px;}
.y10_c00173{bottom:520.335000px;}
.yf_c00173{bottom:547.335000px;}
.ye_c00173{bottom:574.335000px;}
.yd_c00173{bottom:601.335000px;}
.yc_c00173{bottom:628.335000px;}
.yb_c00173{bottom:655.335000px;}
.ya_c00173{bottom:682.335000px;}
.y9_c00173{bottom:709.335000px;}
.y8_c00173{bottom:757.335000px;}
.y7_c00173{bottom:784.335000px;}
.y6_c00173{bottom:811.335000px;}
.y5_c00173{bottom:838.335000px;}
.y4_c00173{bottom:886.335000px;}
.y3_c00173{bottom:913.335000px;}
.y2_c00173{bottom:940.335000px;}
.y1_c00173{bottom:986.835000px;}
.y1a_c00173{bottom:1066.335000px;}
.y1b_c00173{bottom:1193.835000px;}
.h9_c00173{height:34.570312px;}
.h8_c00173{height:44.208984px;}
.h4_c00173{height:51.257812px;}
.h3_c00173{height:55.224609px;}
.h7_c00173{height:56.074219px;}
.h5_c00173{height:57.258075px;}
.h6_c00173{height:68.343750px;}
.h2_c00173{height:1261.500000px;}
.h0_c00173{height:1262.835000px;}
.h1_c00173{height:1263.000000px;}
.w2_c00173{width:892.500000px;}
.w0_c00173{width:892.935000px;}
.w1_c00173{width:893.250000px;}
.x0_c00173{left:0.000000px;}
.x1_c00173{left:65.480310px;}
.x2_c00173{left:94.798875px;}
@media print{
.v2_c00173{vertical-align:-20.521067pt;}
.v3_c00173{vertical-align:-13.333333pt;}
.v0_c00173{vertical-align:0.000000pt;}
.v1_c00173{vertical-align:20.521067pt;}
.ls3_c00173{letter-spacing:-0.262400pt;}
.ls2_c00173{letter-spacing:0.000000pt;}
.ls0_c00173{letter-spacing:0.006933pt;}
.ls4_c00173{letter-spacing:0.010667pt;}
.ls1_c00173{letter-spacing:1.818133pt;}
.ws1_c00173{word-spacing:-17.600000pt;}
.ws0_c00173{word-spacing:-11.733333pt;}
.ws2_c00173{word-spacing:-8.888889pt;}
.ws3_c00173{word-spacing:0.000000pt;}
._17_c00173{margin-left:-8.960000pt;}
._18_c00173{margin-left:-6.105600pt;}
._12_c00173{margin-left:-4.384000pt;}
._5_c00173{margin-left:-2.988800pt;}
._0_c00173{margin-left:-1.324800pt;}
._2_c00173{width:1.491200pt;}
._9_c00173{width:2.694400pt;}
._3_c00173{width:3.731200pt;}
._4_c00173{width:4.998400pt;}
._1_c00173{width:6.483200pt;}
._6_c00173{width:8.153600pt;}
._f_c00173{width:9.561600pt;}
._e_c00173{width:11.084800pt;}
._10_c00173{width:12.352000pt;}
._14_c00173{width:13.939200pt;}
._11_c00173{width:14.880000pt;}
._15_c00173{width:16.211200pt;}
._16_c00173{width:18.976000pt;}
._13_c00173{width:20.633600pt;}
._d_c00173{width:27.891200pt;}
._a_c00173{width:28.883200pt;}
._c_c00173{width:30.092800pt;}
._8_c00173{width:31.616000pt;}
._7_c00173{width:32.921600pt;}
._b_c00173{width:34.592000pt;}
.fs5_c00173{font-size:35.555557pt;}
.fs2_c00173{font-size:42.666667pt;}
.fs4_c00173{font-size:53.333333pt;}
.fs1_c00173{font-size:64.000000pt;}
.fs0_c00173{font-size:69.333333pt;}
.fs3_c00173{font-size:85.333333pt;}
.y0_c00173{bottom:0.000000pt;}
.y1c_c00173{bottom:59.853333pt;}
.y1e_c00173{bottom:120.520000pt;}
.y1d_c00173{bottom:160.520000pt;}
.y19_c00173{bottom:209.186667pt;}
.y18_c00173{bottom:233.186667pt;}
.y17_c00173{bottom:257.186667pt;}
.y16_c00173{bottom:281.186667pt;}
.y15_c00173{bottom:323.853333pt;}
.y14_c00173{bottom:347.853333pt;}
.y13_c00173{bottom:371.853333pt;}
.y12_c00173{bottom:395.853333pt;}
.y11_c00173{bottom:438.520000pt;}
.y10_c00173{bottom:462.520000pt;}
.yf_c00173{bottom:486.520000pt;}
.ye_c00173{bottom:510.520000pt;}
.yd_c00173{bottom:534.520000pt;}
.yc_c00173{bottom:558.520000pt;}
.yb_c00173{bottom:582.520000pt;}
.ya_c00173{bottom:606.520000pt;}
.y9_c00173{bottom:630.520000pt;}
.y8_c00173{bottom:673.186667pt;}
.y7_c00173{bottom:697.186667pt;}
.y6_c00173{bottom:721.186667pt;}
.y5_c00173{bottom:745.186667pt;}
.y4_c00173{bottom:787.853333pt;}
.y3_c00173{bottom:811.853333pt;}
.y2_c00173{bottom:835.853333pt;}
.y1_c00173{bottom:877.186667pt;}
.y1a_c00173{bottom:947.853333pt;}
.y1b_c00173{bottom:1061.186667pt;}
.h9_c00173{height:30.729167pt;}
.h8_c00173{height:39.296875pt;}
.h4_c00173{height:45.562500pt;}
.h3_c00173{height:49.088542pt;}
.h7_c00173{height:49.843750pt;}
.h5_c00173{height:50.896067pt;}
.h6_c00173{height:60.750000pt;}
.h2_c00173{height:1121.333333pt;}
.h0_c00173{height:1122.520000pt;}
.h1_c00173{height:1122.666667pt;}
.w2_c00173{width:793.333333pt;}
.w0_c00173{width:793.720000pt;}
.w1_c00173{width:794.000000pt;}
.x0_c00173{left:0.000000pt;}
.x1_c00173{left:58.204720pt;}
.x2_c00173{left:84.265667pt;}
}





    body { margin: 0; background: #f3f4f6; }
    #page-container { margin: 0 auto; }
    .pf_c00174 {
      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_c00174 {
      padding: 42px;
      color: #374151;
      font-size: 14px;
      line-height: 1.45;
    }
    .scieee-page-failed_c00174 b {
      display: block;
      margin-bottom: 8px;
      font-size: 18px;
      color: #111827;
    }
    .scieee-page-failed_c00174 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_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_47e2106e05327af72ee0cd7e.woff2')format("woff");}.ff1_c00175{font-family:ff1_c00175;line-height:0.934082;font-style:normal;font-weight:normal;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_fca81a27669fa38f069788cc.woff2')format("woff");}.ff2_c00175{font-family:ff2_c00175;line-height:0.939453;font-style:normal;font-weight:normal;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_32b71a4944a79544885e5a54.woff2')format("woff");}.ff3_c00175{font-family:ff3_c00175;line-height:0.755859;font-style:normal;font-weight:normal;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_5cb2574db4f0d7b13adf645e.woff2')format("woff");}.ff4_c00175{font-family:ff4_c00175;line-height:1.155762;font-style:normal;font-weight:normal;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_81543dc84d261988a1d362c1.woff2')format("woff");}.ff5_c00175{font-family:ff5_c00175;line-height:1.043945;font-style:normal;font-weight: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_c00175;src:url('chunks/assets/font_634b37c326b2a737ac2cc9a5.woff2')format("woff");}.ff6_c00175{font-family:ff6_c00175;line-height:0.891113;font-style: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);}
.v2_c00175{vertical-align:-23.086200px;}
.v3_c00175{vertical-align:-15.000000px;}
.v0_c00175{vertical-align:0.000000px;}
.v1_c00175{vertical-align:23.086200px;}
.ls6_c00175{letter-spacing:-5.280000px;}
.ls7_c00175{letter-spacing:-0.012000px;}
.ls4_c00175{letter-spacing:0.000000px;}
.ls0_c00175{letter-spacing:0.007200px;}
.ls2_c00175{letter-spacing:0.007800px;}
.ls5_c00175{letter-spacing:0.012000px;}
.ls3_c00175{letter-spacing:3.999999px;}
.ls1_c00175{letter-spacing:4.372800px;}
.sc__c00175{text-shadow:none;}
.sc0_c00175{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00175{-webkit-text-stroke:0px transparent;}
.sc0_c00175{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00175{word-spacing:-19.807200px;}
.ws3_c00175{word-spacing:-14.988000px;}
.ws1_c00175{word-spacing:-13.200000px;}
.ws2_c00175{word-spacing:-10.000001px;}
.ws4_c00175{word-spacing:0.000000px;}
._15_c00175{margin-left:-7.135200px;}
._17_c00175{margin-left:-5.468421px;}
._9_c00175{margin-left:-4.341600px;}
._d_c00175{margin-left:-2.779200px;}
._0_c00175{margin-left:-1.101600px;}
._2_c00175{width:1.404000px;}
._7_c00175{width:2.973600px;}
._5_c00175{width:4.327200px;}
._b_c00175{width:5.486400px;}
._14_c00175{width:7.668000px;}
._c_c00175{width:8.740800px;}
._6_c00175{width:9.770400px;}
._8_c00175{width:11.160000px;}
._3_c00175{width:12.722400px;}
._4_c00175{width:14.133600px;}
._1_c00175{width:15.184800px;}
._e_c00175{width:16.221600px;}
._a_c00175{width:18.439200px;}
._10_c00175{width:21.297600px;}
._f_c00175{width:24.278400px;}
._11_c00175{width:25.488000px;}
._12_c00175{width:27.043200px;}
._13_c00175{width:28.483200px;}
._16_c00175{width:30.088800px;}
.fc0_c00175{color:rgb(0,0,0);}
.fs4_c00175{font-size:40.000002px;}
.fs1_c00175{font-size:48.000000px;}
.fs3_c00175{font-size:60.000000px;}
.fs0_c00175{font-size:72.000000px;}
.fs2_c00175{font-size:78.000000px;}
.y0_c00175{bottom:0.000000px;}
.y19_c00175{bottom:67.335000px;}
.y1d_c00175{bottom:131.835000px;}
.y1c_c00175{bottom:155.085000px;}
.y1b_c00175{bottom:200.085000px;}
.y1a_c00175{bottom:245.085000px;}
.y17_c00175{bottom:353.835000px;}
.y16_c00175{bottom:380.835000px;}
.y15_c00175{bottom:407.835000px;}
.y14_c00175{bottom:455.835000px;}
.y13_c00175{bottom:482.835000px;}
.y12_c00175{bottom:509.835000px;}
.y11_c00175{bottom:536.835000px;}
.y10_c00175{bottom:563.835000px;}
.yf_c00175{bottom:590.835000px;}
.ye_c00175{bottom:637.335000px;}
.yd_c00175{bottom:707.835000px;}
.yc_c00175{bottom:734.835000px;}
.yb_c00175{bottom:782.835000px;}
.ya_c00175{bottom:809.835000px;}
.y9_c00175{bottom:857.835000px;}
.y8_c00175{bottom:884.835000px;}
.y7_c00175{bottom:911.835000px;}
.y6_c00175{bottom:959.835000px;}
.y5_c00175{bottom:986.835000px;}
.y4_c00175{bottom:1013.835000px;}
.y3_c00175{bottom:1040.835000px;}
.y2_c00175{bottom:1067.835000px;}
.y1_c00175{bottom:1094.835000px;}
.y18_c00175{bottom:1193.835000px;}
.h8_c00175{height:34.570312px;}
.h7_c00175{height:44.208984px;}
.h9_c00175{height:49.570312px;}
.h3_c00175{height:51.257812px;}
.h6_c00175{height:56.074219px;}
.h5_c00175{height:56.100586px;}
.h4_c00175{height:57.258075px;}
.h2_c00175{height:1261.500000px;}
.h0_c00175{height:1262.835000px;}
.h1_c00175{height:1263.000000px;}
.w2_c00175{width:892.500000px;}
.w0_c00175{width:892.935000px;}
.w1_c00175{width:893.250000px;}
.x0_c00175{left:0.000000px;}
.x1_c00175{left:65.480310px;}
@media print{
.v2_c00175{vertical-align:-20.521067pt;}
.v3_c00175{vertical-align:-13.333333pt;}
.v0_c00175{vertical-align:0.000000pt;}
.v1_c00175{vertical-align:20.521067pt;}
.ls6_c00175{letter-spacing:-4.693333pt;}
.ls7_c00175{letter-spacing:-0.010667pt;}
.ls4_c00175{letter-spacing:0.000000pt;}
.ls0_c00175{letter-spacing:0.006400pt;}
.ls2_c00175{letter-spacing:0.006933pt;}
.ls5_c00175{letter-spacing:0.010667pt;}
.ls3_c00175{letter-spacing:3.555555pt;}
.ls1_c00175{letter-spacing:3.886933pt;}
.ws0_c00175{word-spacing:-17.606400pt;}
.ws3_c00175{word-spacing:-13.322667pt;}
.ws1_c00175{word-spacing:-11.733333pt;}
.ws2_c00175{word-spacing:-8.888889pt;}
.ws4_c00175{word-spacing:0.000000pt;}
._15_c00175{margin-left:-6.342400pt;}
._17_c00175{margin-left:-4.860819pt;}
._9_c00175{margin-left:-3.859200pt;}
._d_c00175{margin-left:-2.470400pt;}
._0_c00175{margin-left:-0.979200pt;}
._2_c00175{width:1.248000pt;}
._7_c00175{width:2.643200pt;}
._5_c00175{width:3.846400pt;}
._b_c00175{width:4.876800pt;}
._14_c00175{width:6.816000pt;}
._c_c00175{width:7.769600pt;}
._6_c00175{width:8.684800pt;}
._8_c00175{width:9.920000pt;}
._3_c00175{width:11.308800pt;}
._4_c00175{width:12.563200pt;}
._1_c00175{width:13.497600pt;}
._e_c00175{width:14.419200pt;}
._a_c00175{width:16.390400pt;}
._10_c00175{width:18.931200pt;}
._f_c00175{width:21.580800pt;}
._11_c00175{width:22.656000pt;}
._12_c00175{width:24.038400pt;}
._13_c00175{width:25.318400pt;}
._16_c00175{width:26.745600pt;}
.fs4_c00175{font-size:35.555557pt;}
.fs1_c00175{font-size:42.666667pt;}
.fs3_c00175{font-size:53.333333pt;}
.fs0_c00175{font-size:64.000000pt;}
.fs2_c00175{font-size:69.333333pt;}
.y0_c00175{bottom:0.000000pt;}
.y19_c00175{bottom:59.853333pt;}
.y1d_c00175{bottom:117.186667pt;}
.y1c_c00175{bottom:137.853333pt;}
.y1b_c00175{bottom:177.853333pt;}
.y1a_c00175{bottom:217.853333pt;}
.y17_c00175{bottom:314.520000pt;}
.y16_c00175{bottom:338.520000pt;}
.y15_c00175{bottom:362.520000pt;}
.y14_c00175{bottom:405.186667pt;}
.y13_c00175{bottom:429.186667pt;}
.y12_c00175{bottom:453.186667pt;}
.y11_c00175{bottom:477.186667pt;}
.y10_c00175{bottom:501.186667pt;}
.yf_c00175{bottom:525.186667pt;}
.ye_c00175{bottom:566.520000pt;}
.yd_c00175{bottom:629.186667pt;}
.yc_c00175{bottom:653.186667pt;}
.yb_c00175{bottom:695.853333pt;}
.ya_c00175{bottom:719.853333pt;}
.y9_c00175{bottom:762.520000pt;}
.y8_c00175{bottom:786.520000pt;}
.y7_c00175{bottom:810.520000pt;}
.y6_c00175{bottom:853.186667pt;}
.y5_c00175{bottom:877.186667pt;}
.y4_c00175{bottom:901.186667pt;}
.y3_c00175{bottom:925.186667pt;}
.y2_c00175{bottom:949.186667pt;}
.y1_c00175{bottom:973.186667pt;}
.y18_c00175{bottom:1061.186667pt;}
.h8_c00175{height:30.729167pt;}
.h7_c00175{height:39.296875pt;}
.h9_c00175{height:44.062500pt;}
.h3_c00175{height:45.562500pt;}
.h6_c00175{height:49.843750pt;}
.h5_c00175{height:49.867188pt;}
.h4_c00175{height:50.896067pt;}
.h2_c00175{height:1121.333333pt;}
.h0_c00175{height:1122.520000pt;}
.h1_c00175{height:1122.666667pt;}
.w2_c00175{width:793.333333pt;}
.w0_c00175{width:793.720000pt;}
.w1_c00175{width:794.000000pt;}
.x0_c00175{left:0.000000pt;}
.x1_c00175{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_279e6e76091dcf3c98f1c39a.woff2')format("woff");}.ff1_c00176{font-family:ff1_c00176;line-height:0.932129;font-style:normal;font-weight:normal;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_1e2e03af80987b42661ae29f.woff2')format("woff");}.ff2_c00176{font-family:ff2_c00176;line-height:0.963867;font-style:normal;font-weight:normal;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_e64e1dcaa30b275b30ff06cc.woff2')format("woff");}.ff3_c00176{font-family:ff3_c00176;line-height:0.956543;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00176{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00176{vertical-align:0.000000px;}
.ls1_c00176{letter-spacing:0.000000px;}
.ls0_c00176{letter-spacing:0.012000px;}
.sc__c00176{text-shadow:none;}
.sc0_c00176{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00176{-webkit-text-stroke:0px transparent;}
.sc0_c00176{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00176{word-spacing:0.000000px;}
._4_c00176{margin-left:-3.402000px;}
._0_c00176{margin-left:-2.376000px;}
._3_c00176{margin-left:-1.310400px;}
._2_c00176{width:2.635200px;}
._1_c00176{width:4.017600px;}
.fc0_c00176{color:rgb(0,0,0);}
.fs1_c00176{font-size:54.000000px;}
.fs2_c00176{font-size:60.000000px;}
.fs0_c00176{font-size:72.000000px;}
.y0_c00176{bottom:0.000000px;}
.y4_c00176{bottom:11.999985px;}
.y6_c00176{bottom:67.335000px;}
.y3_c00176{bottom:146.835015px;}
.y2_c00176{bottom:584.835000px;}
.y1_c00176{bottom:607.335000px;}
.y5_c00176{bottom:1193.835000px;}
.h5_c00176{height:41.633789px;}
.h6_c00176{height:44.121094px;}
.h3_c00176{height:51.257812px;}
.h4_c00176{height:432.000000px;}
.h2_c00176{height:1261.500000px;}
.h0_c00176{height:1262.835000px;}
.h1_c00176{height:1263.000000px;}
.w3_c00176{width:676.935000px;}
.w2_c00176{width:892.500000px;}
.w0_c00176{width:892.935000px;}
.w1_c00176{width:893.250000px;}
.x0_c00176{left:0.000000px;}
.x1_c00176{left:150.519750px;}
.x2_c00176{left:198.388500px;}
.x3_c00176{left:380.516100px;}
.x4_c00176{left:802.427700px;}
@media print{
.v0_c00176{vertical-align:0.000000pt;}
.ls1_c00176{letter-spacing:0.000000pt;}
.ls0_c00176{letter-spacing:0.010667pt;}
.ws0_c00176{word-spacing:0.000000pt;}
._4_c00176{margin-left:-3.024000pt;}
._0_c00176{margin-left:-2.112000pt;}
._3_c00176{margin-left:-1.164800pt;}
._2_c00176{width:2.342400pt;}
._1_c00176{width:3.571200pt;}
.fs1_c00176{font-size:48.000000pt;}
.fs2_c00176{font-size:53.333333pt;}
.fs0_c00176{font-size:64.000000pt;}
.y0_c00176{bottom:0.000000pt;}
.y4_c00176{bottom:10.666653pt;}
.y6_c00176{bottom:59.853333pt;}
.y3_c00176{bottom:130.520013pt;}
.y2_c00176{bottom:519.853333pt;}
.y1_c00176{bottom:539.853333pt;}
.y5_c00176{bottom:1061.186667pt;}
.h5_c00176{height:37.007812pt;}
.h6_c00176{height:39.218750pt;}
.h3_c00176{height:45.562500pt;}
.h4_c00176{height:384.000000pt;}
.h2_c00176{height:1121.333333pt;}
.h0_c00176{height:1122.520000pt;}
.h1_c00176{height:1122.666667pt;}
.w3_c00176{width:601.720000pt;}
.w2_c00176{width:793.333333pt;}
.w0_c00176{width:793.720000pt;}
.w1_c00176{width:794.000000pt;}
.x0_c00176{left:0.000000pt;}
.x1_c00176{left:133.795333pt;}
.x2_c00176{left:176.345333pt;}
.x3_c00176{left:338.236533pt;}
.x4_c00176{left:713.269067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_057ad162bedd848802b05ed0.woff2')format("woff");}.ff1_c00177{font-family:ff1_c00177;line-height:0.933105;font-style:normal;font-weight:normal;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_779d8dd54b2e4a525f71664a.woff2')format("woff");}.ff2_c00177{font-family:ff2_c00177;line-height:0.975586;font-style:normal;font-weight:normal;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_990577c1bcb7120a2587812a.woff2')format("woff");}.ff3_c00177{font-family:ff3_c00177;line-height:0.755859;font-style:normal;font-weight:normal;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_63cdf7898903e5cea8c3a433.woff2')format("woff");}.ff4_c00177{font-family:ff4_c00177;line-height:1.155762;font-style:normal;font-weight:normal;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_8ec250cd46828e19e17592f9.woff2')format("woff");}.ff5_c00177{font-family:ff5_c00177;line-height:0.904785;font-style:normal;font-weight: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_c00177;src:url('chunks/assets/font_7e0f0ab65a132a9330905d71.woff2')format("woff");}.ff6_c00177{font-family:ff6_c00177;line-height:0.688477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00177{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00177{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00177{vertical-align:-23.086200px;}
.v3_c00177{vertical-align:-15.000000px;}
.v0_c00177{vertical-align:0.000000px;}
.v1_c00177{vertical-align:23.086200px;}
.ls1_c00177{letter-spacing:-0.007200px;}
.ls0_c00177{letter-spacing:0.000000px;}
.ls2_c00177{letter-spacing:0.012000px;}
.sc__c00177{text-shadow:none;}
.sc0_c00177{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00177{-webkit-text-stroke:0px transparent;}
.sc0_c00177{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00177{word-spacing:-19.792800px;}
.ws0_c00177{word-spacing:-17.064000px;}
.ws2_c00177{word-spacing:-13.200000px;}
.ws3_c00177{word-spacing:-10.000001px;}
.ws4_c00177{word-spacing:0.000000px;}
._c_c00177{margin-left:-6.642021px;}
._d_c00177{margin-left:-5.438220px;}
._5_c00177{margin-left:-4.413600px;}
._b_c00177{margin-left:-3.216000px;}
._2_c00177{margin-left:-1.929600px;}
._4_c00177{width:1.008000px;}
._0_c00177{width:2.325600px;}
._1_c00177{width:3.333600px;}
._3_c00177{width:5.248800px;}
._6_c00177{width:7.293600px;}
._7_c00177{width:14.695200px;}
._9_c00177{width:16.444800px;}
._a_c00177{width:18.050400px;}
._8_c00177{width:22.334400px;}
.fc1_c00177{color:rgb(0,0,153);}
.fc0_c00177{color:rgb(0,0,0);}
.fs4_c00177{font-size:40.000002px;}
.fs2_c00177{font-size:48.000000px;}
.fs1_c00177{font-size:54.000000px;}
.fs3_c00177{font-size:60.000000px;}
.fs0_c00177{font-size:72.000000px;}
.y0_c00177{bottom:0.000000px;}
.y5_c00177{bottom:12.000000px;}
.ya_c00177{bottom:67.335000px;}
.yb_c00177{bottom:155.085000px;}
.y8_c00177{bottom:203.835000px;}
.y7_c00177{bottom:536.835000px;}
.y6_c00177{bottom:563.835000px;}
.y4_c00177{bottom:604.335000px;}
.y3_c00177{bottom:1040.835000px;}
.y2_c00177{bottom:1067.835000px;}
.y1_c00177{bottom:1094.835000px;}
.y9_c00177{bottom:1193.835000px;}
.ha_c00177{height:27.480470px;}
.h5_c00177{height:41.633789px;}
.h9_c00177{height:44.208984px;}
.h3_c00177{height:51.187500px;}
.h8_c00177{height:56.074219px;}
.h6_c00177{height:57.211200px;}
.h7_c00177{height:301.500000px;}
.h4_c00177{height:405.000000px;}
.h2_c00177{height:1261.500000px;}
.h0_c00177{height:1262.835000px;}
.h1_c00177{height:1263.000000px;}
.w3_c00177{width:676.934850px;}
.w4_c00177{width:676.935000px;}
.w2_c00177{width:892.500000px;}
.w0_c00177{width:892.935000px;}
.w1_c00177{width:893.250000px;}
.x0_c00177{left:0.000000px;}
.x2_c00177{left:60.412290px;}
.x1_c00177{left:65.480310px;}
.x3_c00177{left:145.713450px;}
@media print{
.v2_c00177{vertical-align:-20.521067pt;}
.v3_c00177{vertical-align:-13.333333pt;}
.v0_c00177{vertical-align:0.000000pt;}
.v1_c00177{vertical-align:20.521067pt;}
.ls1_c00177{letter-spacing:-0.006400pt;}
.ls0_c00177{letter-spacing:0.000000pt;}
.ls2_c00177{letter-spacing:0.010667pt;}
.ws1_c00177{word-spacing:-17.593600pt;}
.ws0_c00177{word-spacing:-15.168000pt;}
.ws2_c00177{word-spacing:-11.733333pt;}
.ws3_c00177{word-spacing:-8.888889pt;}
.ws4_c00177{word-spacing:0.000000pt;}
._c_c00177{margin-left:-5.904019pt;}
._d_c00177{margin-left:-4.833973pt;}
._5_c00177{margin-left:-3.923200pt;}
._b_c00177{margin-left:-2.858667pt;}
._2_c00177{margin-left:-1.715200pt;}
._4_c00177{width:0.896000pt;}
._0_c00177{width:2.067200pt;}
._1_c00177{width:2.963200pt;}
._3_c00177{width:4.665600pt;}
._6_c00177{width:6.483200pt;}
._7_c00177{width:13.062400pt;}
._9_c00177{width:14.617600pt;}
._a_c00177{width:16.044800pt;}
._8_c00177{width:19.852800pt;}
.fs4_c00177{font-size:35.555557pt;}
.fs2_c00177{font-size:42.666667pt;}
.fs1_c00177{font-size:48.000000pt;}
.fs3_c00177{font-size:53.333333pt;}
.fs0_c00177{font-size:64.000000pt;}
.y0_c00177{bottom:0.000000pt;}
.y5_c00177{bottom:10.666667pt;}
.ya_c00177{bottom:59.853333pt;}
.yb_c00177{bottom:137.853333pt;}
.y8_c00177{bottom:181.186667pt;}
.y7_c00177{bottom:477.186667pt;}
.y6_c00177{bottom:501.186667pt;}
.y4_c00177{bottom:537.186667pt;}
.y3_c00177{bottom:925.186667pt;}
.y2_c00177{bottom:949.186667pt;}
.y1_c00177{bottom:973.186667pt;}
.y9_c00177{bottom:1061.186667pt;}
.ha_c00177{height:24.427085pt;}
.h5_c00177{height:37.007812pt;}
.h9_c00177{height:39.296875pt;}
.h3_c00177{height:45.500000pt;}
.h8_c00177{height:49.843750pt;}
.h6_c00177{height:50.854400pt;}
.h7_c00177{height:268.000000pt;}
.h4_c00177{height:360.000000pt;}
.h2_c00177{height:1121.333333pt;}
.h0_c00177{height:1122.520000pt;}
.h1_c00177{height:1122.666667pt;}
.w3_c00177{width:601.719867pt;}
.w4_c00177{width:601.720000pt;}
.w2_c00177{width:793.333333pt;}
.w0_c00177{width:793.720000pt;}
.w1_c00177{width:794.000000pt;}
.x0_c00177{left:0.000000pt;}
.x2_c00177{left:53.699813pt;}
.x1_c00177{left:58.204720pt;}
.x3_c00177{left:129.523067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a472264c2ba2b81f15d74443.woff2')format("woff");}.ff1_c00178{font-family:ff1_c00178;line-height:0.934082;font-style:normal;font-weight:normal;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_68585f6295e5b7565329abb4.woff2')format("woff");}.ff2_c00178{font-family:ff2_c00178;line-height:0.976074;font-style:normal;font-weight:normal;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_fce3b315e25d9e3a26eeb36a.woff2')format("woff");}.ff3_c00178{font-family:ff3_c00178;line-height:0.956543;font-style:normal;font-weight:normal;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_52395c3870efaa569f33313a.woff2')format("woff");}.ff4_c00178{font-family:ff4_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:ff5_c00178;src:url('chunks/assets/font_6c86f093ca033f31dd4c57cd.woff2')format("woff");}.ff5_c00178{font-family:ff5_c00178;line-height:0.688477;font-style: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);}
.v2_c00178{vertical-align:-15.000000px;}
.v0_c00178{vertical-align:0.000000px;}
.v1_c00178{vertical-align:23.086200px;}
.ls1_c00178{letter-spacing:0.000000px;}
.ls0_c00178{letter-spacing:0.012000px;}
.sc__c00178{text-shadow:none;}
.sc0_c00178{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00178{-webkit-text-stroke:0px transparent;}
.sc0_c00178{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00178{word-spacing:-13.200000px;}
.ws1_c00178{word-spacing:-10.000001px;}
.ws2_c00178{word-spacing:0.000000px;}
._f_c00178{margin-left:-7.696800px;}
._11_c00178{margin-left:-6.642201px;}
._12_c00178{margin-left:-5.438400px;}
._9_c00178{margin-left:-3.837600px;}
._7_c00178{margin-left:-2.484000px;}
._1_c00178{margin-left:-1.022400px;}
._3_c00178{width:1.094400px;}
._b_c00178{width:2.498400px;}
._5_c00178{width:3.981600px;}
._d_c00178{width:5.925600px;}
._e_c00178{width:7.027200px;}
._6_c00178{width:8.964000px;}
._c_c00178{width:10.555200px;}
._4_c00178{width:11.822400px;}
._0_c00178{width:12.924000px;}
._2_c00178{width:13.924800px;}
._8_c00178{width:15.415200px;}
._a_c00178{width:16.704000px;}
._10_c00178{width:18.583200px;}
.fc0_c00178{color:rgb(0,0,0);}
.fs4_c00178{font-size:40.000002px;}
.fs1_c00178{font-size:48.000000px;}
.fs2_c00178{font-size:54.000000px;}
.fs3_c00178{font-size:60.000000px;}
.fs0_c00178{font-size:72.000000px;}
.y0_c00178{bottom:0.000000px;}
.y6_c00178{bottom:12.000000px;}
.ye_c00178{bottom:67.335000px;}
.yf_c00178{bottom:155.085000px;}
.yc_c00178{bottom:196.335000px;}
.yb_c00178{bottom:557.835000px;}
.ya_c00178{bottom:584.835000px;}
.y9_c00178{bottom:611.835000px;}
.y8_c00178{bottom:638.835000px;}
.y7_c00178{bottom:665.835000px;}
.y5_c00178{bottom:706.335000px;}
.y4_c00178{bottom:1013.835000px;}
.y3_c00178{bottom:1040.835000px;}
.y2_c00178{bottom:1067.835000px;}
.y1_c00178{bottom:1094.835000px;}
.yd_c00178{bottom:1193.835000px;}
.h9_c00178{height:27.031251px;}
.h6_c00178{height:42.292969px;}
.h8_c00178{height:44.121094px;}
.h3_c00178{height:51.257812px;}
.h4_c00178{height:57.258075px;}
.h5_c00178{height:276.000000px;}
.h7_c00178{height:330.000000px;}
.h2_c00178{height:1261.500000px;}
.h0_c00178{height:1262.835000px;}
.h1_c00178{height:1263.000000px;}
.w4_c00178{width:676.934850px;}
.w3_c00178{width:676.935000px;}
.w2_c00178{width:892.500000px;}
.w0_c00178{width:892.935000px;}
.w1_c00178{width:893.250000px;}
.x0_c00178{left:0.000000px;}
.x3_c00178{left:54.562065px;}
.x1_c00178{left:150.519750px;}
.x2_c00178{left:251.801850px;}
.x4_c00178{left:380.516100px;}
.x5_c00178{left:802.427700px;}
@media print{
.v2_c00178{vertical-align:-13.333333pt;}
.v0_c00178{vertical-align:0.000000pt;}
.v1_c00178{vertical-align:20.521067pt;}
.ls1_c00178{letter-spacing:0.000000pt;}
.ls0_c00178{letter-spacing:0.010667pt;}
.ws0_c00178{word-spacing:-11.733333pt;}
.ws1_c00178{word-spacing:-8.888889pt;}
.ws2_c00178{word-spacing:0.000000pt;}
._f_c00178{margin-left:-6.841600pt;}
._11_c00178{margin-left:-5.904179pt;}
._12_c00178{margin-left:-4.834133pt;}
._9_c00178{margin-left:-3.411200pt;}
._7_c00178{margin-left:-2.208000pt;}
._1_c00178{margin-left:-0.908800pt;}
._3_c00178{width:0.972800pt;}
._b_c00178{width:2.220800pt;}
._5_c00178{width:3.539200pt;}
._d_c00178{width:5.267200pt;}
._e_c00178{width:6.246400pt;}
._6_c00178{width:7.968000pt;}
._c_c00178{width:9.382400pt;}
._4_c00178{width:10.508800pt;}
._0_c00178{width:11.488000pt;}
._2_c00178{width:12.377600pt;}
._8_c00178{width:13.702400pt;}
._a_c00178{width:14.848000pt;}
._10_c00178{width:16.518400pt;}
.fs4_c00178{font-size:35.555557pt;}
.fs1_c00178{font-size:42.666667pt;}
.fs2_c00178{font-size:48.000000pt;}
.fs3_c00178{font-size:53.333333pt;}
.fs0_c00178{font-size:64.000000pt;}
.y0_c00178{bottom:0.000000pt;}
.y6_c00178{bottom:10.666667pt;}
.ye_c00178{bottom:59.853333pt;}
.yf_c00178{bottom:137.853333pt;}
.yc_c00178{bottom:174.520000pt;}
.yb_c00178{bottom:495.853333pt;}
.ya_c00178{bottom:519.853333pt;}
.y9_c00178{bottom:543.853333pt;}
.y8_c00178{bottom:567.853333pt;}
.y7_c00178{bottom:591.853333pt;}
.y5_c00178{bottom:627.853333pt;}
.y4_c00178{bottom:901.186667pt;}
.y3_c00178{bottom:925.186667pt;}
.y2_c00178{bottom:949.186667pt;}
.y1_c00178{bottom:973.186667pt;}
.yd_c00178{bottom:1061.186667pt;}
.h9_c00178{height:24.027779pt;}
.h6_c00178{height:37.593750pt;}
.h8_c00178{height:39.218750pt;}
.h3_c00178{height:45.562500pt;}
.h4_c00178{height:50.896067pt;}
.h5_c00178{height:245.333333pt;}
.h7_c00178{height:293.333333pt;}
.h2_c00178{height:1121.333333pt;}
.h0_c00178{height:1122.520000pt;}
.h1_c00178{height:1122.666667pt;}
.w4_c00178{width:601.719867pt;}
.w3_c00178{width:601.720000pt;}
.w2_c00178{width:793.333333pt;}
.w0_c00178{width:793.720000pt;}
.w1_c00178{width:794.000000pt;}
.x0_c00178{left:0.000000pt;}
.x3_c00178{left:48.499613pt;}
.x1_c00178{left:133.795333pt;}
.x2_c00178{left:223.823867pt;}
.x4_c00178{left:338.236533pt;}
.x5_c00178{left:713.269067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_abf882bf605d5e45fb1f1662.woff2')format("woff");}.ff1_c00179{font-family:ff1_c00179;line-height:0.933105;font-style:normal;font-weight:normal;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_dada8cd6b91d996b86cadeda.woff2')format("woff");}.ff2_c00179{font-family:ff2_c00179;line-height:0.755859;font-style:normal;font-weight:normal;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_00f25c3fc832ddb648ac87f8.woff2')format("woff");}.ff3_c00179{font-family:ff3_c00179;line-height:1.155762;font-style:normal;font-weight:normal;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_888476c19b695757c0609db8.woff2')format("woff");}.ff4_c00179{font-family:ff4_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:ff5_c00179;src:url('chunks/assets/font_8605f025e10a2e4e0de1484f.woff2')format("woff");}.ff5_c00179{font-family:ff5_c00179;line-height:0.688477;font-style: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);}
.v2_c00179{vertical-align:-23.086200px;}
.v3_c00179{vertical-align:-15.000000px;}
.v0_c00179{vertical-align:0.000000px;}
.v1_c00179{vertical-align:23.086200px;}
.ls1_c00179{letter-spacing:-0.009600px;}
.ls0_c00179{letter-spacing:0.000000px;}
.ls2_c00179{letter-spacing:0.012000px;}
.sc__c00179{text-shadow:none;}
.sc0_c00179{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00179{-webkit-text-stroke:0px transparent;}
.sc0_c00179{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00179{word-spacing:-19.800000px;}
.ws1_c00179{word-spacing:-13.190400px;}
.ws2_c00179{word-spacing:-10.000001px;}
.ws3_c00179{word-spacing:0.000000px;}
._d_c00179{margin-left:-6.642042px;}
._e_c00179{margin-left:-5.437800px;}
._3_c00179{margin-left:-3.895200px;}
._6_c00179{margin-left:-2.556000px;}
._2_c00179{margin-left:-1.332000px;}
._a_c00179{width:1.036800px;}
._5_c00179{width:2.131200px;}
._0_c00179{width:3.470400px;}
._1_c00179{width:4.903200px;}
._8_c00179{width:6.300000px;}
._4_c00179{width:7.416000px;}
._7_c00179{width:8.676000px;}
._9_c00179{width:10.432800px;}
._c_c00179{width:11.764800px;}
._b_c00179{width:14.256000px;}
.fc0_c00179{color:rgb(0,0,0);}
.fs3_c00179{font-size:40.000002px;}
.fs1_c00179{font-size:48.000000px;}
.fs2_c00179{font-size:60.000000px;}
.fs0_c00179{font-size:72.000000px;}
.y0_c00179{bottom:0.000000px;}
.y9_c00179{bottom:67.335000px;}
.ya_c00179{bottom:135.585000px;}
.y7_c00179{bottom:911.835000px;}
.y6_c00179{bottom:938.835000px;}
.y5_c00179{bottom:986.835000px;}
.y4_c00179{bottom:1013.835000px;}
.y3_c00179{bottom:1040.835000px;}
.y2_c00179{bottom:1067.835000px;}
.y1_c00179{bottom:1094.835000px;}
.y8_c00179{bottom:1193.835000px;}
.h7_c00179{height:27.031251px;}
.h6_c00179{height:44.208984px;}
.h3_c00179{height:51.187500px;}
.h5_c00179{height:56.074219px;}
.h4_c00179{height:57.211200px;}
.h2_c00179{height:1261.500000px;}
.h0_c00179{height:1262.835000px;}
.h1_c00179{height:1263.000000px;}
.w2_c00179{width:892.500000px;}
.w0_c00179{width:892.935000px;}
.w1_c00179{width:893.250000px;}
.x0_c00179{left:0.000000px;}
.x1_c00179{left:65.480310px;}
@media print{
.v2_c00179{vertical-align:-20.521067pt;}
.v3_c00179{vertical-align:-13.333333pt;}
.v0_c00179{vertical-align:0.000000pt;}
.v1_c00179{vertical-align:20.521067pt;}
.ls1_c00179{letter-spacing:-0.008533pt;}
.ls0_c00179{letter-spacing:0.000000pt;}
.ls2_c00179{letter-spacing:0.010667pt;}
.ws0_c00179{word-spacing:-17.600000pt;}
.ws1_c00179{word-spacing:-11.724800pt;}
.ws2_c00179{word-spacing:-8.888889pt;}
.ws3_c00179{word-spacing:0.000000pt;}
._d_c00179{margin-left:-5.904037pt;}
._e_c00179{margin-left:-4.833600pt;}
._3_c00179{margin-left:-3.462400pt;}
._6_c00179{margin-left:-2.272000pt;}
._2_c00179{margin-left:-1.184000pt;}
._a_c00179{width:0.921600pt;}
._5_c00179{width:1.894400pt;}
._0_c00179{width:3.084800pt;}
._1_c00179{width:4.358400pt;}
._8_c00179{width:5.600000pt;}
._4_c00179{width:6.592000pt;}
._7_c00179{width:7.712000pt;}
._9_c00179{width:9.273600pt;}
._c_c00179{width:10.457600pt;}
._b_c00179{width:12.672000pt;}
.fs3_c00179{font-size:35.555557pt;}
.fs1_c00179{font-size:42.666667pt;}
.fs2_c00179{font-size:53.333333pt;}
.fs0_c00179{font-size:64.000000pt;}
.y0_c00179{bottom:0.000000pt;}
.y9_c00179{bottom:59.853333pt;}
.ya_c00179{bottom:120.520000pt;}
.y7_c00179{bottom:810.520000pt;}
.y6_c00179{bottom:834.520000pt;}
.y5_c00179{bottom:877.186667pt;}
.y4_c00179{bottom:901.186667pt;}
.y3_c00179{bottom:925.186667pt;}
.y2_c00179{bottom:949.186667pt;}
.y1_c00179{bottom:973.186667pt;}
.y8_c00179{bottom:1061.186667pt;}
.h7_c00179{height:24.027779pt;}
.h6_c00179{height:39.296875pt;}
.h3_c00179{height:45.500000pt;}
.h5_c00179{height:49.843750pt;}
.h4_c00179{height:50.854400pt;}
.h2_c00179{height:1121.333333pt;}
.h0_c00179{height:1122.520000pt;}
.h1_c00179{height:1122.666667pt;}
.w2_c00179{width:793.333333pt;}
.w0_c00179{width:793.720000pt;}
.w1_c00179{width:794.000000pt;}
.x0_c00179{left:0.000000pt;}
.x1_c00179{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bdeb569dbe9d533a8ea630b0.woff2')format("woff");}.ff1_c00180{font-family:ff1_c00180;line-height:0.884766;font-style:normal;font-weight:normal;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_64492c918ba82c1a9d130343.woff2')format("woff");}.ff2_c00180{font-family:ff2_c00180;line-height:1.163086;font-style:normal;font-weight:normal;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_42cec315a6719fc1f0dc8c2f.woff2')format("woff");}.ff3_c00180{font-family:ff3_c00180;line-height:0.956543;font-style:normal;font-weight:normal;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_4aab0d8195cdd8a9bced73c4.woff2')format("woff");}.ff4_c00180{font-family:ff4_c00180;line-height:1.043945;font-style:normal;font-weight:normal;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_cb2a2c9c6e7ec3153b43ce70.woff2')format("woff");}.ff5_c00180{font-family:ff5_c00180;line-height:0.891113;font-style: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);}
.v2_c00180{vertical-align:-23.086200px;}
.v3_c00180{vertical-align:-15.000000px;}
.v0_c00180{vertical-align:0.000000px;}
.v1_c00180{vertical-align:23.086200px;}
.ls6_c00180{letter-spacing:-0.007200px;}
.ls5_c00180{letter-spacing:0.000000px;}
.ls0_c00180{letter-spacing:0.007800px;}
.ls4_c00180{letter-spacing:0.012000px;}
.ls3_c00180{letter-spacing:0.014400px;}
.ls1_c00180{letter-spacing:0.423000px;}
.ls2_c00180{letter-spacing:2.380200px;}
.sc__c00180{text-shadow:none;}
.sc0_c00180{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00180{-webkit-text-stroke:0px transparent;}
.sc0_c00180{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00180{word-spacing:-13.200000px;}
.ws1_c00180{word-spacing:-10.000001px;}
.ws2_c00180{word-spacing:0.000000px;}
._f_c00180{margin-left:-9.280800px;}
._8_c00180{margin-left:-7.250400px;}
._14_c00180{margin-left:-5.975001px;}
._7_c00180{margin-left:-4.874400px;}
._3_c00180{margin-left:-3.808800px;}
._1_c00180{margin-left:-2.188800px;}
._5_c00180{margin-left:-1.180800px;}
._6_c00180{width:1.051200px;}
._0_c00180{width:2.606400px;}
._e_c00180{width:3.736800px;}
._2_c00180{width:4.744800px;}
._4_c00180{width:6.458400px;}
._d_c00180{width:7.567200px;}
._b_c00180{width:8.690400px;}
._c_c00180{width:9.691200px;}
._10_c00180{width:10.701600px;}
._9_c00180{width:11.772000px;}
._13_c00180{width:12.787200px;}
._a_c00180{width:14.702400px;}
._12_c00180{width:16.125600px;}
._11_c00180{width:17.606400px;}
.fc1_c00180{color:rgb(255,255,255);}
.fc0_c00180{color:rgb(0,0,0);}
.fs5_c00180{font-size:40.000002px;}
.fs2_c00180{font-size:48.000000px;}
.fs4_c00180{font-size:60.000000px;}
.fs1_c00180{font-size:72.000000px;}
.fs0_c00180{font-size:78.000000px;}
.fs3_c00180{font-size:96.000000px;}
.y0_c00180{bottom:0.000000px;}
.y19_c00180{bottom:67.335000px;}
.y1c_c00180{bottom:135.585000px;}
.y1b_c00180{bottom:180.585000px;}
.y1a_c00180{bottom:225.585000px;}
.y16_c00180{bottom:335.835000px;}
.y15_c00180{bottom:362.835000px;}
.y14_c00180{bottom:389.835000px;}
.y13_c00180{bottom:416.835000px;}
.y12_c00180{bottom:464.835000px;}
.y11_c00180{bottom:491.835000px;}
.y10_c00180{bottom:518.835000px;}
.yf_c00180{bottom:545.835000px;}
.ye_c00180{bottom:572.835000px;}
.yd_c00180{bottom:599.835000px;}
.yc_c00180{bottom:626.835000px;}
.yb_c00180{bottom:653.835000px;}
.ya_c00180{bottom:680.835000px;}
.y9_c00180{bottom:728.835000px;}
.y8_c00180{bottom:755.835000px;}
.y7_c00180{bottom:782.835000px;}
.y6_c00180{bottom:809.835000px;}
.y5_c00180{bottom:836.835000px;}
.y4_c00180{bottom:884.835000px;}
.y3_c00180{bottom:911.835000px;}
.y2_c00180{bottom:938.835000px;}
.y1_c00180{bottom:985.335000px;}
.y17_c00180{bottom:1066.335000px;}
.y18_c00180{bottom:1193.835000px;}
.h8_c00180{height:34.570312px;}
.h7_c00180{height:44.121094px;}
.h3_c00180{height:55.224609px;}
.h4_c00180{height:67.746094px;}
.h5_c00180{height:68.250262px;}
.h6_c00180{height:90.328125px;}
.h2_c00180{height:1261.500000px;}
.h0_c00180{height:1262.835000px;}
.h1_c00180{height:1263.000000px;}
.w2_c00180{width:892.500000px;}
.w0_c00180{width:892.935000px;}
.w1_c00180{width:893.250000px;}
.x0_c00180{left:0.000000px;}
.x1_c00180{left:150.519750px;}
.x2_c00180{left:180.298875px;}
.x3_c00180{left:380.516100px;}
.x4_c00180{left:802.427700px;}
@media print{
.v2_c00180{vertical-align:-20.521067pt;}
.v3_c00180{vertical-align:-13.333333pt;}
.v0_c00180{vertical-align:0.000000pt;}
.v1_c00180{vertical-align:20.521067pt;}
.ls6_c00180{letter-spacing:-0.006400pt;}
.ls5_c00180{letter-spacing:0.000000pt;}
.ls0_c00180{letter-spacing:0.006933pt;}
.ls4_c00180{letter-spacing:0.010667pt;}
.ls3_c00180{letter-spacing:0.012800pt;}
.ls1_c00180{letter-spacing:0.376000pt;}
.ls2_c00180{letter-spacing:2.115733pt;}
.ws0_c00180{word-spacing:-11.733333pt;}
.ws1_c00180{word-spacing:-8.888889pt;}
.ws2_c00180{word-spacing:0.000000pt;}
._f_c00180{margin-left:-8.249600pt;}
._8_c00180{margin-left:-6.444800pt;}
._14_c00180{margin-left:-5.311112pt;}
._7_c00180{margin-left:-4.332800pt;}
._3_c00180{margin-left:-3.385600pt;}
._1_c00180{margin-left:-1.945600pt;}
._5_c00180{margin-left:-1.049600pt;}
._6_c00180{width:0.934400pt;}
._0_c00180{width:2.316800pt;}
._e_c00180{width:3.321600pt;}
._2_c00180{width:4.217600pt;}
._4_c00180{width:5.740800pt;}
._d_c00180{width:6.726400pt;}
._b_c00180{width:7.724800pt;}
._c_c00180{width:8.614400pt;}
._10_c00180{width:9.512533pt;}
._9_c00180{width:10.464000pt;}
._13_c00180{width:11.366400pt;}
._a_c00180{width:13.068800pt;}
._12_c00180{width:14.333867pt;}
._11_c00180{width:15.650133pt;}
.fs5_c00180{font-size:35.555557pt;}
.fs2_c00180{font-size:42.666667pt;}
.fs4_c00180{font-size:53.333333pt;}
.fs1_c00180{font-size:64.000000pt;}
.fs0_c00180{font-size:69.333333pt;}
.fs3_c00180{font-size:85.333333pt;}
.y0_c00180{bottom:0.000000pt;}
.y19_c00180{bottom:59.853333pt;}
.y1c_c00180{bottom:120.520000pt;}
.y1b_c00180{bottom:160.520000pt;}
.y1a_c00180{bottom:200.520000pt;}
.y16_c00180{bottom:298.520000pt;}
.y15_c00180{bottom:322.520000pt;}
.y14_c00180{bottom:346.520000pt;}
.y13_c00180{bottom:370.520000pt;}
.y12_c00180{bottom:413.186667pt;}
.y11_c00180{bottom:437.186667pt;}
.y10_c00180{bottom:461.186667pt;}
.yf_c00180{bottom:485.186667pt;}
.ye_c00180{bottom:509.186667pt;}
.yd_c00180{bottom:533.186667pt;}
.yc_c00180{bottom:557.186667pt;}
.yb_c00180{bottom:581.186667pt;}
.ya_c00180{bottom:605.186667pt;}
.y9_c00180{bottom:647.853333pt;}
.y8_c00180{bottom:671.853333pt;}
.y7_c00180{bottom:695.853333pt;}
.y6_c00180{bottom:719.853333pt;}
.y5_c00180{bottom:743.853333pt;}
.y4_c00180{bottom:786.520000pt;}
.y3_c00180{bottom:810.520000pt;}
.y2_c00180{bottom:834.520000pt;}
.y1_c00180{bottom:875.853333pt;}
.y17_c00180{bottom:947.853333pt;}
.y18_c00180{bottom:1061.186667pt;}
.h8_c00180{height:30.729167pt;}
.h7_c00180{height:39.218750pt;}
.h3_c00180{height:49.088542pt;}
.h4_c00180{height:60.218750pt;}
.h5_c00180{height:60.666900pt;}
.h6_c00180{height:80.291667pt;}
.h2_c00180{height:1121.333333pt;}
.h0_c00180{height:1122.520000pt;}
.h1_c00180{height:1122.666667pt;}
.w2_c00180{width:793.333333pt;}
.w0_c00180{width:793.720000pt;}
.w1_c00180{width:794.000000pt;}
.x0_c00180{left:0.000000pt;}
.x1_c00180{left:133.795333pt;}
.x2_c00180{left:160.265667pt;}
.x3_c00180{left:338.236533pt;}
.x4_c00180{left:713.269067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4265e7f44bf24adb0816cc30.woff2')format("woff");}.ff1_c00181{font-family:ff1_c00181;line-height:0.934082;font-style:normal;font-weight:normal;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_46cd01f6402ee8977812b0b5.woff2')format("woff");}.ff2_c00181{font-family:ff2_c00181;line-height:0.939453;font-style:normal;font-weight:normal;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_f5fdf8e003625207fd7e20fa.woff2')format("woff");}.ff3_c00181{font-family:ff3_c00181;line-height:0.756836;font-style:normal;font-weight:normal;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_b91671c3916f1d739ea37701.woff2')format("woff");}.ff4_c00181{font-family:ff4_c00181;line-height:1.155762;font-style:normal;font-weight:normal;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_076a54e5548970fb12a6aa89.woff2')format("woff");}.ff5_c00181{font-family:ff5_c00181;line-height:0.904785;font-style:normal;font-weight: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_c00181;src:url('chunks/assets/font_50eceffd2bd97c96c23813e6.woff2')format("woff");}.ff6_c00181{font-family:ff6_c00181;line-height:0.812500;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00181{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00181{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00181{vertical-align:-23.086200px;}
.v3_c00181{vertical-align:-15.000000px;}
.v0_c00181{vertical-align:0.000000px;}
.v1_c00181{vertical-align:23.086200px;}
.ls2_c00181{letter-spacing:0.000000px;}
.ls0_c00181{letter-spacing:0.007800px;}
.ls3_c00181{letter-spacing:0.012000px;}
.ls1_c00181{letter-spacing:4.068000px;}
.sc__c00181{text-shadow:none;}
.sc0_c00181{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00181{-webkit-text-stroke:0px transparent;}
.sc0_c00181{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00181{word-spacing:-19.800000px;}
.ws3_c00181{word-spacing:-15.000000px;}
.ws0_c00181{word-spacing:-13.200000px;}
.ws2_c00181{word-spacing:-10.000001px;}
.ws4_c00181{word-spacing:0.000000px;}
._16_c00181{margin-left:-10.476000px;}
._17_c00181{margin-left:-9.273600px;}
._19_c00181{margin-left:-7.192800px;}
._8_c00181{margin-left:-3.909600px;}
._5_c00181{margin-left:-2.548800px;}
._3_c00181{margin-left:-1.224000px;}
._6_c00181{width:1.022400px;}
._2_c00181{width:2.052000px;}
._1_c00181{width:3.103200px;}
._7_c00181{width:4.104000px;}
._0_c00181{width:5.306400px;}
._4_c00181{width:7.336800px;}
._18_c00181{width:8.380800px;}
._d_c00181{width:9.979200px;}
._e_c00181{width:11.980800px;}
._10_c00181{width:13.579200px;}
._f_c00181{width:16.164000px;}
._15_c00181{width:18.043200px;}
._14_c00181{width:21.362400px;}
._13_c00181{width:23.385600px;}
._12_c00181{width:24.890400px;}
._11_c00181{width:26.265600px;}
._b_c00181{width:33.458400px;}
._c_c00181{width:34.624800px;}
._9_c00181{width:36.928800px;}
._a_c00181{width:38.728800px;}
.fc1_c00181{color:rgb(0,0,153);}
.fc0_c00181{color:rgb(0,0,0);}
.fs4_c00181{font-size:40.000002px;}
.fs1_c00181{font-size:48.000000px;}
.fs3_c00181{font-size:60.000000px;}
.fs0_c00181{font-size:72.000000px;}
.fs2_c00181{font-size:78.000000px;}
.y0_c00181{bottom:0.000000px;}
.y19_c00181{bottom:67.335000px;}
.y1d_c00181{bottom:131.835000px;}
.y1c_c00181{bottom:155.085000px;}
.y1b_c00181{bottom:200.085000px;}
.y1a_c00181{bottom:245.085000px;}
.y17_c00181{bottom:361.335000px;}
.y16_c00181{bottom:388.335000px;}
.y15_c00181{bottom:415.335000px;}
.y14_c00181{bottom:442.335000px;}
.y13_c00181{bottom:469.335000px;}
.y12_c00181{bottom:517.335000px;}
.y11_c00181{bottom:544.335000px;}
.y10_c00181{bottom:571.335000px;}
.yf_c00181{bottom:619.335000px;}
.ye_c00181{bottom:646.335000px;}
.yd_c00181{bottom:673.335000px;}
.yc_c00181{bottom:733.335000px;}
.yb_c00181{bottom:782.835000px;}
.ya_c00181{bottom:809.835000px;}
.y9_c00181{bottom:857.835000px;}
.y8_c00181{bottom:884.835000px;}
.y7_c00181{bottom:911.835000px;}
.y6_c00181{bottom:938.835000px;}
.y5_c00181{bottom:965.835000px;}
.y4_c00181{bottom:992.835000px;}
.y3_c00181{bottom:1040.835000px;}
.y2_c00181{bottom:1067.835000px;}
.y1_c00181{bottom:1094.835000px;}
.y18_c00181{bottom:1193.835000px;}
.h8_c00181{height:27.480470px;}
.h9_c00181{height:41.220703px;}
.h7_c00181{height:44.208984px;}
.h3_c00181{height:51.257812px;}
.h6_c00181{height:56.074219px;}
.h5_c00181{height:56.100586px;}
.h4_c00181{height:57.258075px;}
.h2_c00181{height:1261.500000px;}
.h0_c00181{height:1262.835000px;}
.h1_c00181{height:1263.000000px;}
.w2_c00181{width:892.500000px;}
.w0_c00181{width:892.935000px;}
.w1_c00181{width:893.250000px;}
.x0_c00181{left:0.000000px;}
.x1_c00181{left:65.480310px;}
@media print{
.v2_c00181{vertical-align:-20.521067pt;}
.v3_c00181{vertical-align:-13.333333pt;}
.v0_c00181{vertical-align:0.000000pt;}
.v1_c00181{vertical-align:20.521067pt;}
.ls2_c00181{letter-spacing:0.000000pt;}
.ls0_c00181{letter-spacing:0.006933pt;}
.ls3_c00181{letter-spacing:0.010667pt;}
.ls1_c00181{letter-spacing:3.616000pt;}
.ws1_c00181{word-spacing:-17.600000pt;}
.ws3_c00181{word-spacing:-13.333333pt;}
.ws0_c00181{word-spacing:-11.733333pt;}
.ws2_c00181{word-spacing:-8.888889pt;}
.ws4_c00181{word-spacing:0.000000pt;}
._16_c00181{margin-left:-9.312000pt;}
._17_c00181{margin-left:-8.243200pt;}
._19_c00181{margin-left:-6.393600pt;}
._8_c00181{margin-left:-3.475200pt;}
._5_c00181{margin-left:-2.265600pt;}
._3_c00181{margin-left:-1.088000pt;}
._6_c00181{width:0.908800pt;}
._2_c00181{width:1.824000pt;}
._1_c00181{width:2.758400pt;}
._7_c00181{width:3.648000pt;}
._0_c00181{width:4.716800pt;}
._4_c00181{width:6.521600pt;}
._18_c00181{width:7.449600pt;}
._d_c00181{width:8.870400pt;}
._e_c00181{width:10.649600pt;}
._10_c00181{width:12.070400pt;}
._f_c00181{width:14.368000pt;}
._15_c00181{width:16.038400pt;}
._14_c00181{width:18.988800pt;}
._13_c00181{width:20.787200pt;}
._12_c00181{width:22.124800pt;}
._11_c00181{width:23.347200pt;}
._b_c00181{width:29.740800pt;}
._c_c00181{width:30.777600pt;}
._9_c00181{width:32.825600pt;}
._a_c00181{width:34.425600pt;}
.fs4_c00181{font-size:35.555557pt;}
.fs1_c00181{font-size:42.666667pt;}
.fs3_c00181{font-size:53.333333pt;}
.fs0_c00181{font-size:64.000000pt;}
.fs2_c00181{font-size:69.333333pt;}
.y0_c00181{bottom:0.000000pt;}
.y19_c00181{bottom:59.853333pt;}
.y1d_c00181{bottom:117.186667pt;}
.y1c_c00181{bottom:137.853333pt;}
.y1b_c00181{bottom:177.853333pt;}
.y1a_c00181{bottom:217.853333pt;}
.y17_c00181{bottom:321.186667pt;}
.y16_c00181{bottom:345.186667pt;}
.y15_c00181{bottom:369.186667pt;}
.y14_c00181{bottom:393.186667pt;}
.y13_c00181{bottom:417.186667pt;}
.y12_c00181{bottom:459.853333pt;}
.y11_c00181{bottom:483.853333pt;}
.y10_c00181{bottom:507.853333pt;}
.yf_c00181{bottom:550.520000pt;}
.ye_c00181{bottom:574.520000pt;}
.yd_c00181{bottom:598.520000pt;}
.yc_c00181{bottom:651.853333pt;}
.yb_c00181{bottom:695.853333pt;}
.ya_c00181{bottom:719.853333pt;}
.y9_c00181{bottom:762.520000pt;}
.y8_c00181{bottom:786.520000pt;}
.y7_c00181{bottom:810.520000pt;}
.y6_c00181{bottom:834.520000pt;}
.y5_c00181{bottom:858.520000pt;}
.y4_c00181{bottom:882.520000pt;}
.y3_c00181{bottom:925.186667pt;}
.y2_c00181{bottom:949.186667pt;}
.y1_c00181{bottom:973.186667pt;}
.y18_c00181{bottom:1061.186667pt;}
.h8_c00181{height:24.427085pt;}
.h9_c00181{height:36.640625pt;}
.h7_c00181{height:39.296875pt;}
.h3_c00181{height:45.562500pt;}
.h6_c00181{height:49.843750pt;}
.h5_c00181{height:49.867188pt;}
.h4_c00181{height:50.896067pt;}
.h2_c00181{height:1121.333333pt;}
.h0_c00181{height:1122.520000pt;}
.h1_c00181{height:1122.666667pt;}
.w2_c00181{width:793.333333pt;}
.w0_c00181{width:793.720000pt;}
.w1_c00181{width:794.000000pt;}
.x0_c00181{left:0.000000pt;}
.x1_c00181{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4f08a30cf998f95663ed5e56.woff2')format("woff");}.ff1_c00182{font-family:ff1_c00182;line-height:0.963867;font-style:normal;font-weight:normal;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_5d7005a12e418ff79cb48831.woff2')format("woff");}.ff2_c00182{font-family:ff2_c00182;line-height:0.934082;font-style:normal;font-weight:normal;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_a62251c40f0c266ec510af37.woff2')format("woff");}.ff3_c00182{font-family:ff3_c00182;line-height:0.928223;font-style:normal;font-weight:normal;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_53a990b2e61d0ed626e5a75b.woff2')format("woff");}.ff4_c00182{font-family:ff4_c00182;line-height:0.956543;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00182{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00182{vertical-align:0.000000px;}
.ls1_c00182{letter-spacing:0.000000px;}
.ls0_c00182{letter-spacing:0.012000px;}
.sc__c00182{text-shadow:none;}
.sc0_c00182{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00182{-webkit-text-stroke:0px transparent;}
.sc0_c00182{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00182{word-spacing:0.000000px;}
._d_c00182{margin-left:-10.584000px;}
._10_c00182{margin-left:-6.350400px;}
._0_c00182{margin-left:-3.945600px;}
._4_c00182{margin-left:-2.404800px;}
._3_c00182{margin-left:-1.159200px;}
._1_c00182{width:1.540800px;}
._2_c00182{width:3.520800px;}
._5_c00182{width:5.572800px;}
._7_c00182{width:6.703200px;}
._6_c00182{width:8.056800px;}
._a_c00182{width:11.037600px;}
._8_c00182{width:13.039200px;}
._b_c00182{width:14.522400px;}
._c_c00182{width:16.977600px;}
._9_c00182{width:18.525600px;}
._e_c00182{width:21.304800px;}
._f_c00182{width:24.400800px;}
.fc0_c00182{color:rgb(0,0,0);}
.fs0_c00182{font-size:54.000000px;}
.fs2_c00182{font-size:60.000000px;}
.fs1_c00182{font-size:72.000000px;}
.y0_c00182{bottom:0.000000px;}
.y2_c00182{bottom:12.000000px;}
.ye_c00182{bottom:67.335000px;}
.yc_c00182{bottom:146.835000px;}
.yb_c00182{bottom:173.835000px;}
.ya_c00182{bottom:220.335000px;}
.y9_c00182{bottom:289.335000px;}
.y8_c00182{bottom:316.335000px;}
.y7_c00182{bottom:343.335000px;}
.y6_c00182{bottom:391.335000px;}
.y5_c00182{bottom:418.335000px;}
.y4_c00182{bottom:445.335000px;}
.y3_c00182{bottom:472.335000px;}
.y1_c00182{bottom:512.835000px;}
.yd_c00182{bottom:1193.835000px;}
.h3_c00182{height:41.633789px;}
.h7_c00182{height:44.121094px;}
.h6_c00182{height:50.976562px;}
.h5_c00182{height:51.257812px;}
.h2_c00182{height:600.000000px;}
.h4_c00182{height:1261.500000px;}
.h0_c00182{height:1262.835000px;}
.h1_c00182{height:1263.000000px;}
.w2_c00182{width:676.934850px;}
.w3_c00182{width:892.500000px;}
.w0_c00182{width:892.935000px;}
.w1_c00182{width:893.250000px;}
.x0_c00182{left:0.000000px;}
.x1_c00182{left:150.000000px;}
.x2_c00182{left:246.482250px;}
.x3_c00182{left:380.516100px;}
.x4_c00182{left:802.427700px;}
@media print{
.v0_c00182{vertical-align:0.000000pt;}
.ls1_c00182{letter-spacing:0.000000pt;}
.ls0_c00182{letter-spacing:0.010667pt;}
.ws0_c00182{word-spacing:0.000000pt;}
._d_c00182{margin-left:-9.408000pt;}
._10_c00182{margin-left:-5.644800pt;}
._0_c00182{margin-left:-3.507200pt;}
._4_c00182{margin-left:-2.137600pt;}
._3_c00182{margin-left:-1.030400pt;}
._1_c00182{width:1.369600pt;}
._2_c00182{width:3.129600pt;}
._5_c00182{width:4.953600pt;}
._7_c00182{width:5.958400pt;}
._6_c00182{width:7.161600pt;}
._a_c00182{width:9.811200pt;}
._8_c00182{width:11.590400pt;}
._b_c00182{width:12.908800pt;}
._c_c00182{width:15.091200pt;}
._9_c00182{width:16.467200pt;}
._e_c00182{width:18.937600pt;}
._f_c00182{width:21.689600pt;}
.fs0_c00182{font-size:48.000000pt;}
.fs2_c00182{font-size:53.333333pt;}
.fs1_c00182{font-size:64.000000pt;}
.y0_c00182{bottom:0.000000pt;}
.y2_c00182{bottom:10.666667pt;}
.ye_c00182{bottom:59.853333pt;}
.yc_c00182{bottom:130.520000pt;}
.yb_c00182{bottom:154.520000pt;}
.ya_c00182{bottom:195.853333pt;}
.y9_c00182{bottom:257.186667pt;}
.y8_c00182{bottom:281.186667pt;}
.y7_c00182{bottom:305.186667pt;}
.y6_c00182{bottom:347.853333pt;}
.y5_c00182{bottom:371.853333pt;}
.y4_c00182{bottom:395.853333pt;}
.y3_c00182{bottom:419.853333pt;}
.y1_c00182{bottom:455.853333pt;}
.yd_c00182{bottom:1061.186667pt;}
.h3_c00182{height:37.007812pt;}
.h7_c00182{height:39.218750pt;}
.h6_c00182{height:45.312500pt;}
.h5_c00182{height:45.562500pt;}
.h2_c00182{height:533.333333pt;}
.h4_c00182{height:1121.333333pt;}
.h0_c00182{height:1122.520000pt;}
.h1_c00182{height:1122.666667pt;}
.w2_c00182{width:601.719867pt;}
.w3_c00182{width:793.333333pt;}
.w0_c00182{width:793.720000pt;}
.w1_c00182{width:794.000000pt;}
.x0_c00182{left:0.000000pt;}
.x1_c00182{left:133.333333pt;}
.x2_c00182{left:219.095333pt;}
.x3_c00182{left:338.236533pt;}
.x4_c00182{left:713.269067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eb7d6ffe437a1c46e1b2289a.woff2')format("woff");}.ff1_c00183{font-family:ff1_c00183;line-height:0.933105;font-style:normal;font-weight:normal;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_197ea197482050c9b31d5adf.woff2')format("woff");}.ff2_c00183{font-family:ff2_c00183;line-height:0.963867;font-style:normal;font-weight:normal;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_e6c099df79bb8897e38309eb.woff2')format("woff");}.ff3_c00183{font-family:ff3_c00183;line-height:0.756836;font-style:normal;font-weight:normal;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_6755a43cc5a9376deb26ebbf.woff2')format("woff");}.ff4_c00183{font-family:ff4_c00183;line-height:1.155762;font-style:normal;font-weight:normal;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_4820f0f1a216287e2e3032c2.woff2')format("woff");}.ff5_c00183{font-family:ff5_c00183;line-height:0.903320;font-style: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);}
.v2_c00183{vertical-align:-23.086200px;}
.v3_c00183{vertical-align:-15.000000px;}
.v0_c00183{vertical-align:0.000000px;}
.v1_c00183{vertical-align:23.086200px;}
.ls2_c00183{letter-spacing:0.000000px;}
.ls3_c00183{letter-spacing:0.012000px;}
.ls0_c00183{letter-spacing:1.818000px;}
.ls1_c00183{letter-spacing:15.999999px;}
.sc__c00183{text-shadow:none;}
.sc0_c00183{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00183{-webkit-text-stroke:0px transparent;}
.sc0_c00183{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00183{word-spacing:-15.000000px;}
.ws1_c00183{word-spacing:0.000000px;}
._15_c00183{margin-left:-5.380800px;}
._3_c00183{margin-left:-4.168800px;}
._9_c00183{margin-left:-2.448000px;}
._5_c00183{margin-left:-1.058400px;}
._b_c00183{width:1.029600px;}
._1_c00183{width:2.361600px;}
._7_c00183{width:3.636000px;}
._c_c00183{width:5.608800px;}
._8_c00183{width:7.538400px;}
._2_c00183{width:8.776800px;}
._d_c00183{width:9.813600px;}
._0_c00183{width:11.102400px;}
._6_c00183{width:12.211200px;}
._a_c00183{width:13.564800px;}
._4_c00183{width:15.300000px;}
._e_c00183{width:17.200800px;}
._10_c00183{width:18.720000px;}
._f_c00183{width:21.787200px;}
._14_c00183{width:28.622400px;}
._13_c00183{width:30.362400px;}
._11_c00183{width:32.304000px;}
._12_c00183{width:33.880800px;}
._16_c00183{width:35.412360px;}
.fc1_c00183{color:rgb(0,0,153);}
.fc0_c00183{color:rgb(0,0,0);}
.fs4_c00183{font-size:40.000002px;}
.fs1_c00183{font-size:48.000000px;}
.fs2_c00183{font-size:54.000000px;}
.fs3_c00183{font-size:60.000000px;}
.fs0_c00183{font-size:72.000000px;}
.y0_c00183{bottom:0.000000px;}
.y4_c00183{bottom:12.000000px;}
.yd_c00183{bottom:67.335000px;}
.yf_c00183{bottom:131.835000px;}
.ye_c00183{bottom:155.085000px;}
.yb_c00183{bottom:197.835000px;}
.ya_c00183{bottom:530.835000px;}
.y9_c00183{bottom:557.835000px;}
.y8_c00183{bottom:584.835000px;}
.y7_c00183{bottom:611.835000px;}
.y6_c00183{bottom:638.835000px;}
.y5_c00183{bottom:665.835000px;}
.y3_c00183{bottom:706.335000px;}
.y2_c00183{bottom:1067.835000px;}
.y1_c00183{bottom:1094.835000px;}
.yc_c00183{bottom:1193.835000px;}
.ha_c00183{height:27.421876px;}
.hb_c00183{height:41.132812px;}
.h6_c00183{height:41.633789px;}
.h9_c00183{height:44.208984px;}
.h3_c00183{height:51.187500px;}
.h8_c00183{height:56.074219px;}
.h4_c00183{height:57.211200px;}
.h7_c00183{height:301.500000px;}
.h5_c00183{height:330.000000px;}
.h2_c00183{height:1261.500000px;}
.h0_c00183{height:1262.835000px;}
.h1_c00183{height:1263.000000px;}
.w3_c00183{width:676.934850px;}
.w2_c00183{width:892.500000px;}
.w0_c00183{width:892.935000px;}
.w1_c00183{width:893.250000px;}
.x0_c00183{left:0.000000px;}
.x1_c00183{left:65.480310px;}
.x3_c00183{left:189.980700px;}
.x2_c00183{left:246.482250px;}
@media print{
.v2_c00183{vertical-align:-20.521067pt;}
.v3_c00183{vertical-align:-13.333333pt;}
.v0_c00183{vertical-align:0.000000pt;}
.v1_c00183{vertical-align:20.521067pt;}
.ls2_c00183{letter-spacing:0.000000pt;}
.ls3_c00183{letter-spacing:0.010667pt;}
.ls0_c00183{letter-spacing:1.616000pt;}
.ls1_c00183{letter-spacing:14.222221pt;}
.ws0_c00183{word-spacing:-13.333333pt;}
.ws1_c00183{word-spacing:0.000000pt;}
._15_c00183{margin-left:-4.782933pt;}
._3_c00183{margin-left:-3.705600pt;}
._9_c00183{margin-left:-2.176000pt;}
._5_c00183{margin-left:-0.940800pt;}
._b_c00183{width:0.915200pt;}
._1_c00183{width:2.099200pt;}
._7_c00183{width:3.232000pt;}
._c_c00183{width:4.985600pt;}
._8_c00183{width:6.700800pt;}
._2_c00183{width:7.801600pt;}
._d_c00183{width:8.723200pt;}
._0_c00183{width:9.868800pt;}
._6_c00183{width:10.854400pt;}
._a_c00183{width:12.057600pt;}
._4_c00183{width:13.600000pt;}
._e_c00183{width:15.289600pt;}
._10_c00183{width:16.640000pt;}
._f_c00183{width:19.366400pt;}
._14_c00183{width:25.442133pt;}
._13_c00183{width:26.988800pt;}
._11_c00183{width:28.714667pt;}
._12_c00183{width:30.116267pt;}
._16_c00183{width:31.477653pt;}
.fs4_c00183{font-size:35.555557pt;}
.fs1_c00183{font-size:42.666667pt;}
.fs2_c00183{font-size:48.000000pt;}
.fs3_c00183{font-size:53.333333pt;}
.fs0_c00183{font-size:64.000000pt;}
.y0_c00183{bottom:0.000000pt;}
.y4_c00183{bottom:10.666667pt;}
.yd_c00183{bottom:59.853333pt;}
.yf_c00183{bottom:117.186667pt;}
.ye_c00183{bottom:137.853333pt;}
.yb_c00183{bottom:175.853333pt;}
.ya_c00183{bottom:471.853333pt;}
.y9_c00183{bottom:495.853333pt;}
.y8_c00183{bottom:519.853333pt;}
.y7_c00183{bottom:543.853333pt;}
.y6_c00183{bottom:567.853333pt;}
.y5_c00183{bottom:591.853333pt;}
.y3_c00183{bottom:627.853333pt;}
.y2_c00183{bottom:949.186667pt;}
.y1_c00183{bottom:973.186667pt;}
.yc_c00183{bottom:1061.186667pt;}
.ha_c00183{height:24.375001pt;}
.hb_c00183{height:36.562500pt;}
.h6_c00183{height:37.007812pt;}
.h9_c00183{height:39.296875pt;}
.h3_c00183{height:45.500000pt;}
.h8_c00183{height:49.843750pt;}
.h4_c00183{height:50.854400pt;}
.h7_c00183{height:268.000000pt;}
.h5_c00183{height:293.333333pt;}
.h2_c00183{height:1121.333333pt;}
.h0_c00183{height:1122.520000pt;}
.h1_c00183{height:1122.666667pt;}
.w3_c00183{width:601.719867pt;}
.w2_c00183{width:793.333333pt;}
.w0_c00183{width:793.720000pt;}
.w1_c00183{width:794.000000pt;}
.x0_c00183{left:0.000000pt;}
.x1_c00183{left:58.204720pt;}
.x3_c00183{left:168.871733pt;}
.x2_c00183{left:219.095333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f8cdb8042572d4bb5f119449.woff2')format("woff");}.ff1_c00184{font-family:ff1_c00184;line-height:0.933105;font-style:normal;font-weight:normal;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_693208b7c125bdecf3776fc6.woff2')format("woff");}.ff2_c00184{font-family:ff2_c00184;line-height:0.975586;font-style:normal;font-weight:normal;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_86d73d37c6dc9201f16a14ef.woff2')format("woff");}.ff3_c00184{font-family:ff3_c00184;line-height:0.956543;font-style:normal;font-weight:normal;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_55a79c3ef9ee253603c0287a.woff2')format("woff");}.ff4_c00184{font-family:ff4_c00184;line-height:0.903320;font-style: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);}
.v2_c00184{vertical-align:-23.086200px;}
.v3_c00184{vertical-align:-15.000000px;}
.v0_c00184{vertical-align:0.000000px;}
.v1_c00184{vertical-align:23.086200px;}
.ls2_c00184{letter-spacing:-0.009600px;}
.ls1_c00184{letter-spacing:0.000000px;}
.ls0_c00184{letter-spacing:0.012000px;}
.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;}
}
.ws3_c00184{word-spacing:-15.000000px;}
.ws0_c00184{word-spacing:-13.200000px;}
.ws1_c00184{word-spacing:-13.190400px;}
.ws2_c00184{word-spacing:-10.000001px;}
.ws4_c00184{word-spacing:0.000000px;}
._14_c00184{margin-left:-4.622802px;}
._7_c00184{margin-left:-3.614400px;}
._4_c00184{margin-left:-2.505600px;}
._6_c00184{margin-left:-1.180800px;}
._c_c00184{width:1.288800px;}
._0_c00184{width:2.448000px;}
._8_c00184{width:3.614400px;}
._2_c00184{width:4.716000px;}
._15_c00184{width:5.860002px;}
._1_c00184{width:7.020000px;}
._d_c00184{width:8.035200px;}
._3_c00184{width:9.532800px;}
._b_c00184{width:10.987200px;}
._5_c00184{width:11.995200px;}
._9_c00184{width:14.688000px;}
._13_c00184{width:15.760800px;}
._a_c00184{width:17.604000px;}
._11_c00184{width:22.111200px;}
._12_c00184{width:23.356800px;}
._e_c00184{width:24.609600px;}
._f_c00184{width:25.826400px;}
._10_c00184{width:28.339200px;}
.fc1_c00184{color:rgb(0,0,153);}
.fc0_c00184{color:rgb(0,0,0);}
.fs4_c00184{font-size:40.000002px;}
.fs1_c00184{font-size:48.000000px;}
.fs2_c00184{font-size:54.000000px;}
.fs3_c00184{font-size:60.000000px;}
.fs0_c00184{font-size:72.000000px;}
.y0_c00184{bottom:0.000000px;}
.ye_c00184{bottom:12.000000px;}
.y10_c00184{bottom:67.335000px;}
.y16_c00184{bottom:131.835000px;}
.y15_c00184{bottom:155.085000px;}
.y14_c00184{bottom:196.335000px;}
.y13_c00184{bottom:219.585000px;}
.y12_c00184{bottom:260.835000px;}
.y11_c00184{bottom:284.085000px;}
.yd_c00184{bottom:322.335000px;}
.yc_c00184{bottom:755.835000px;}
.yb_c00184{bottom:782.835000px;}
.ya_c00184{bottom:809.835000px;}
.y9_c00184{bottom:836.835000px;}
.y8_c00184{bottom:884.835000px;}
.y7_c00184{bottom:911.835000px;}
.y6_c00184{bottom:938.835000px;}
.y5_c00184{bottom:965.835000px;}
.y4_c00184{bottom:1013.835000px;}
.y3_c00184{bottom:1040.835000px;}
.y2_c00184{bottom:1067.835000px;}
.y1_c00184{bottom:1094.835000px;}
.yf_c00184{bottom:1193.835000px;}
.h8_c00184{height:27.421876px;}
.h9_c00184{height:41.132812px;}
.h6_c00184{height:41.633789px;}
.h7_c00184{height:44.121094px;}
.h3_c00184{height:51.187500px;}
.h4_c00184{height:57.211200px;}
.h5_c00184{height:402.000000px;}
.h2_c00184{height:1261.500000px;}
.h0_c00184{height:1262.835000px;}
.h1_c00184{height:1263.000000px;}
.w3_c00184{width:676.935000px;}
.w2_c00184{width:892.500000px;}
.w0_c00184{width:892.935000px;}
.w1_c00184{width:893.250000px;}
.x0_c00184{left:0.000000px;}
.x1_c00184{left:150.519750px;}
.x2_c00184{left:168.422250px;}
.x3_c00184{left:380.516100px;}
.x4_c00184{left:802.427700px;}
@media print{
.v2_c00184{vertical-align:-20.521067pt;}
.v3_c00184{vertical-align:-13.333333pt;}
.v0_c00184{vertical-align:0.000000pt;}
.v1_c00184{vertical-align:20.521067pt;}
.ls2_c00184{letter-spacing:-0.008533pt;}
.ls1_c00184{letter-spacing:0.000000pt;}
.ls0_c00184{letter-spacing:0.010667pt;}
.ws3_c00184{word-spacing:-13.333333pt;}
.ws0_c00184{word-spacing:-11.733333pt;}
.ws1_c00184{word-spacing:-11.724800pt;}
.ws2_c00184{word-spacing:-8.888889pt;}
.ws4_c00184{word-spacing:0.000000pt;}
._14_c00184{margin-left:-4.109157pt;}
._7_c00184{margin-left:-3.212800pt;}
._4_c00184{margin-left:-2.227200pt;}
._6_c00184{margin-left:-1.049600pt;}
._c_c00184{width:1.145600pt;}
._0_c00184{width:2.176000pt;}
._8_c00184{width:3.212800pt;}
._2_c00184{width:4.192000pt;}
._15_c00184{width:5.208891pt;}
._1_c00184{width:6.240000pt;}
._d_c00184{width:7.142400pt;}
._3_c00184{width:8.473600pt;}
._b_c00184{width:9.766400pt;}
._5_c00184{width:10.662400pt;}
._9_c00184{width:13.056000pt;}
._13_c00184{width:14.009600pt;}
._a_c00184{width:15.648000pt;}
._11_c00184{width:19.654400pt;}
._12_c00184{width:20.761600pt;}
._e_c00184{width:21.875200pt;}
._f_c00184{width:22.956800pt;}
._10_c00184{width:25.190400pt;}
.fs4_c00184{font-size:35.555557pt;}
.fs1_c00184{font-size:42.666667pt;}
.fs2_c00184{font-size:48.000000pt;}
.fs3_c00184{font-size:53.333333pt;}
.fs0_c00184{font-size:64.000000pt;}
.y0_c00184{bottom:0.000000pt;}
.ye_c00184{bottom:10.666667pt;}
.y10_c00184{bottom:59.853333pt;}
.y16_c00184{bottom:117.186667pt;}
.y15_c00184{bottom:137.853333pt;}
.y14_c00184{bottom:174.520000pt;}
.y13_c00184{bottom:195.186667pt;}
.y12_c00184{bottom:231.853333pt;}
.y11_c00184{bottom:252.520000pt;}
.yd_c00184{bottom:286.520000pt;}
.yc_c00184{bottom:671.853333pt;}
.yb_c00184{bottom:695.853333pt;}
.ya_c00184{bottom:719.853333pt;}
.y9_c00184{bottom:743.853333pt;}
.y8_c00184{bottom:786.520000pt;}
.y7_c00184{bottom:810.520000pt;}
.y6_c00184{bottom:834.520000pt;}
.y5_c00184{bottom:858.520000pt;}
.y4_c00184{bottom:901.186667pt;}
.y3_c00184{bottom:925.186667pt;}
.y2_c00184{bottom:949.186667pt;}
.y1_c00184{bottom:973.186667pt;}
.yf_c00184{bottom:1061.186667pt;}
.h8_c00184{height:24.375001pt;}
.h9_c00184{height:36.562500pt;}
.h6_c00184{height:37.007812pt;}
.h7_c00184{height:39.218750pt;}
.h3_c00184{height:45.500000pt;}
.h4_c00184{height:50.854400pt;}
.h5_c00184{height:357.333333pt;}
.h2_c00184{height:1121.333333pt;}
.h0_c00184{height:1122.520000pt;}
.h1_c00184{height:1122.666667pt;}
.w3_c00184{width:601.720000pt;}
.w2_c00184{width:793.333333pt;}
.w0_c00184{width:793.720000pt;}
.w1_c00184{width:794.000000pt;}
.x0_c00184{left:0.000000pt;}
.x1_c00184{left:133.795333pt;}
.x2_c00184{left:149.708667pt;}
.x3_c00184{left:338.236533pt;}
.x4_c00184{left:713.269067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_29979c144a3ab457d540c283.woff2')format("woff");}.ff1_c00185{font-family:ff1_c00185;line-height:0.933105;font-style:normal;font-weight:normal;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_6dc3be31a323b2b14af10e67.woff2')format("woff");}.ff2_c00185{font-family:ff2_c00185;line-height:0.976074;font-style:normal;font-weight:normal;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_a7796ba2d8f842b717120b20.woff2')format("woff");}.ff3_c00185{font-family:ff3_c00185;line-height:0.756836;font-style:normal;font-weight:normal;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_669342f7f51936d32f92c68e.woff2')format("woff");}.ff4_c00185{font-family:ff4_c00185;line-height:1.155762;font-style:normal;font-weight:normal;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_818cfd042e36347247d893ca.woff2')format("woff");}.ff5_c00185{font-family:ff5_c00185;line-height:0.903320;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00185{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00185{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00185{vertical-align:-15.000000px;}
.v0_c00185{vertical-align:0.000000px;}
.v1_c00185{vertical-align:23.086200px;}
.ls3_c00185{letter-spacing:-0.014400px;}
.ls2_c00185{letter-spacing:-0.009600px;}
.ls1_c00185{letter-spacing:0.000000px;}
.ls4_c00185{letter-spacing:0.012000px;}
.ls0_c00185{letter-spacing:1.260000px;}
.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;}
}
.ws2_c00185{word-spacing:-15.000000px;}
.ws0_c00185{word-spacing:-13.190400px;}
.ws1_c00185{word-spacing:-10.000001px;}
.ws3_c00185{word-spacing:0.000000px;}
._d_c00185{margin-left:-10.008000px;}
._12_c00185{margin-left:-7.027200px;}
._c_c00185{margin-left:-4.874400px;}
._0_c00185{margin-left:-2.887200px;}
._2_c00185{margin-left:-1.216800px;}
._6_c00185{width:1.252800px;}
._5_c00185{width:2.390400px;}
._4_c00185{width:3.938400px;}
._3_c00185{width:5.198400px;}
._1_c00185{width:6.804000px;}
._7_c00185{width:7.855200px;}
._8_c00185{width:8.964000px;}
._9_c00185{width:10.648800px;}
._f_c00185{width:12.218400px;}
._11_c00185{width:13.550400px;}
._a_c00185{width:14.961600px;}
._10_c00185{width:16.214400px;}
._b_c00185{width:17.416800px;}
._13_c00185{width:18.561600px;}
._e_c00185{width:21.081600px;}
._16_c00185{width:32.875200px;}
._14_c00185{width:34.128000px;}
._18_c00185{width:35.272800px;}
._17_c00185{width:37.015200px;}
._15_c00185{width:39.002400px;}
.fc1_c00185{color:rgb(0,0,153);}
.fc0_c00185{color:rgb(0,0,0);}
.fs4_c00185{font-size:40.000002px;}
.fs1_c00185{font-size:48.000000px;}
.fs2_c00185{font-size:54.000000px;}
.fs3_c00185{font-size:60.000000px;}
.fs0_c00185{font-size:72.000000px;}
.y0_c00185{bottom:0.000000px;}
.ye_c00185{bottom:12.000000px;}
.y12_c00185{bottom:67.335000px;}
.y14_c00185{bottom:131.835000px;}
.y13_c00185{bottom:155.085000px;}
.y10_c00185{bottom:220.335000px;}
.yf_c00185{bottom:247.335000px;}
.yd_c00185{bottom:287.835000px;}
.yc_c00185{bottom:713.835000px;}
.yb_c00185{bottom:740.835000px;}
.ya_c00185{bottom:767.835000px;}
.y9_c00185{bottom:815.835000px;}
.y8_c00185{bottom:863.835000px;}
.y7_c00185{bottom:890.835000px;}
.y6_c00185{bottom:938.835000px;}
.y5_c00185{bottom:965.835000px;}
.y4_c00185{bottom:992.835000px;}
.y3_c00185{bottom:1019.835000px;}
.y2_c00185{bottom:1067.835000px;}
.y1_c00185{bottom:1094.835000px;}
.y11_c00185{bottom:1193.835000px;}
.h9_c00185{height:27.421876px;}
.ha_c00185{height:41.132812px;}
.h6_c00185{height:42.292969px;}
.h8_c00185{height:44.208984px;}
.h3_c00185{height:51.187500px;}
.h7_c00185{height:56.074219px;}
.h4_c00185{height:57.211200px;}
.h5_c00185{height:394.500000px;}
.h2_c00185{height:1261.500000px;}
.h0_c00185{height:1262.835000px;}
.h1_c00185{height:1263.000000px;}
.w3_c00185{width:676.934850px;}
.w2_c00185{width:892.500000px;}
.w0_c00185{width:892.935000px;}
.w1_c00185{width:893.250000px;}
.x0_c00185{left:0.000000px;}
.x1_c00185{left:65.480310px;}
.x2_c00185{left:161.537100px;}
@media print{
.v2_c00185{vertical-align:-13.333333pt;}
.v0_c00185{vertical-align:0.000000pt;}
.v1_c00185{vertical-align:20.521067pt;}
.ls3_c00185{letter-spacing:-0.012800pt;}
.ls2_c00185{letter-spacing:-0.008533pt;}
.ls1_c00185{letter-spacing:0.000000pt;}
.ls4_c00185{letter-spacing:0.010667pt;}
.ls0_c00185{letter-spacing:1.120000pt;}
.ws2_c00185{word-spacing:-13.333333pt;}
.ws0_c00185{word-spacing:-11.724800pt;}
.ws1_c00185{word-spacing:-8.888889pt;}
.ws3_c00185{word-spacing:0.000000pt;}
._d_c00185{margin-left:-8.896000pt;}
._12_c00185{margin-left:-6.246400pt;}
._c_c00185{margin-left:-4.332800pt;}
._0_c00185{margin-left:-2.566400pt;}
._2_c00185{margin-left:-1.081600pt;}
._6_c00185{width:1.113600pt;}
._5_c00185{width:2.124800pt;}
._4_c00185{width:3.500800pt;}
._3_c00185{width:4.620800pt;}
._1_c00185{width:6.048000pt;}
._7_c00185{width:6.982400pt;}
._8_c00185{width:7.968000pt;}
._9_c00185{width:9.465600pt;}
._f_c00185{width:10.860800pt;}
._11_c00185{width:12.044800pt;}
._a_c00185{width:13.299200pt;}
._10_c00185{width:14.412800pt;}
._b_c00185{width:15.481600pt;}
._13_c00185{width:16.499200pt;}
._e_c00185{width:18.739200pt;}
._16_c00185{width:29.222400pt;}
._14_c00185{width:30.336000pt;}
._18_c00185{width:31.353600pt;}
._17_c00185{width:32.902400pt;}
._15_c00185{width:34.668800pt;}
.fs4_c00185{font-size:35.555557pt;}
.fs1_c00185{font-size:42.666667pt;}
.fs2_c00185{font-size:48.000000pt;}
.fs3_c00185{font-size:53.333333pt;}
.fs0_c00185{font-size:64.000000pt;}
.y0_c00185{bottom:0.000000pt;}
.ye_c00185{bottom:10.666667pt;}
.y12_c00185{bottom:59.853333pt;}
.y14_c00185{bottom:117.186667pt;}
.y13_c00185{bottom:137.853333pt;}
.y10_c00185{bottom:195.853333pt;}
.yf_c00185{bottom:219.853333pt;}
.yd_c00185{bottom:255.853333pt;}
.yc_c00185{bottom:634.520000pt;}
.yb_c00185{bottom:658.520000pt;}
.ya_c00185{bottom:682.520000pt;}
.y9_c00185{bottom:725.186667pt;}
.y8_c00185{bottom:767.853333pt;}
.y7_c00185{bottom:791.853333pt;}
.y6_c00185{bottom:834.520000pt;}
.y5_c00185{bottom:858.520000pt;}
.y4_c00185{bottom:882.520000pt;}
.y3_c00185{bottom:906.520000pt;}
.y2_c00185{bottom:949.186667pt;}
.y1_c00185{bottom:973.186667pt;}
.y11_c00185{bottom:1061.186667pt;}
.h9_c00185{height:24.375001pt;}
.ha_c00185{height:36.562500pt;}
.h6_c00185{height:37.593750pt;}
.h8_c00185{height:39.296875pt;}
.h3_c00185{height:45.500000pt;}
.h7_c00185{height:49.843750pt;}
.h4_c00185{height:50.854400pt;}
.h5_c00185{height:350.666667pt;}
.h2_c00185{height:1121.333333pt;}
.h0_c00185{height:1122.520000pt;}
.h1_c00185{height:1122.666667pt;}
.w3_c00185{width:601.719867pt;}
.w2_c00185{width:793.333333pt;}
.w0_c00185{width:793.720000pt;}
.w1_c00185{width:794.000000pt;}
.x0_c00185{left:0.000000pt;}
.x1_c00185{left:58.204720pt;}
.x2_c00185{left:143.588533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_03077068305b0b5768eb0bea.woff2')format("woff");}.ff1_c00186{font-family:ff1_c00186;line-height:0.928223;font-style:normal;font-weight:normal;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_380b7cb7c305c2c3651b1653.woff2')format("woff");}.ff2_c00186{font-family:ff2_c00186;line-height:0.934082;font-style:normal;font-weight:normal;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_4cf2b2c47a48613d005b3335.woff2')format("woff");}.ff3_c00186{font-family:ff3_c00186;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00186;src:url('chunks/assets/font_117dbb52d4d0d9ce39d50e1c.woff2')format("woff");}.ff4_c00186{font-family:ff4_c00186;line-height:0.976074;font-style:normal;font-weight:normal;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_1876c1659c3e9db19b624c63.woff2')format("woff");}.ff5_c00186{font-family:ff5_c00186;line-height:0.956543;font-style:normal;font-weight: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_c00186;src:url('chunks/assets/font_c659cf7e2bc7156427d15381.woff2')format("woff");}.ff6_c00186{font-family:ff6_c00186;line-height:0.904785;font-style: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);}
.v2_c00186{vertical-align:-15.000000px;}
.v0_c00186{vertical-align:0.000000px;}
.v1_c00186{vertical-align:23.086200px;}
.ls3_c00186{letter-spacing:-0.009600px;}
.ls4_c00186{letter-spacing:-0.007200px;}
.ls2_c00186{letter-spacing:0.000000px;}
.ls1_c00186{letter-spacing:0.012000px;}
.ls0_c00186{letter-spacing:1.173600px;}
.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;}
}
.ws3_c00186{word-spacing:-15.000000px;}
.ws0_c00186{word-spacing:-13.190400px;}
.ws1_c00186{word-spacing:-0.072000px;}
.ws4_c00186{word-spacing:0.000000px;}
.ws2_c00186{word-spacing:3.999998px;}
._14_c00186{margin-left:-7.387200px;}
._1d_c00186{margin-left:-5.277600px;}
._a_c00186{margin-left:-3.888000px;}
._0_c00186{margin-left:-2.577600px;}
._1_c00186{margin-left:-1.072800px;}
._3_c00186{width:1.310400px;}
._2_c00186{width:2.404800px;}
._4_c00186{width:3.859200px;}
._b_c00186{width:5.212800px;}
._d_c00186{width:6.962400px;}
._e_c00186{width:8.280000px;}
._f_c00186{width:9.597600px;}
._c_c00186{width:11.347200px;}
._5_c00186{width:12.672000px;}
._7_c00186{width:13.759200px;}
._9_c00186{width:15.062400px;}
._6_c00186{width:16.185600px;}
._8_c00186{width:17.668800px;}
._10_c00186{width:22.773600px;}
._16_c00186{width:23.817600px;}
._11_c00186{width:25.178400px;}
._12_c00186{width:26.215200px;}
._15_c00186{width:27.712800px;}
._13_c00186{width:29.073600px;}
._1e_c00186{width:30.493200px;}
._1c_c00186{width:31.707600px;}
._19_c00186{width:33.177600px;}
._17_c00186{width:34.272000px;}
._1b_c00186{width:35.344800px;}
._1a_c00186{width:36.849600px;}
._18_c00186{width:38.016000px;}
.fc1_c00186{color:rgb(0,0,153);}
.fc0_c00186{color:rgb(0,0,0);}
.fs4_c00186{font-size:40.000002px;}
.fs1_c00186{font-size:48.000000px;}
.fs2_c00186{font-size:54.000000px;}
.fs3_c00186{font-size:60.000000px;}
.fs0_c00186{font-size:72.000000px;}
.y0_c00186{bottom:0.000000px;}
.yd_c00186{bottom:12.000000px;}
.y15_c00186{bottom:67.335000px;}
.y19_c00186{bottom:131.835000px;}
.y18_c00186{bottom:155.085000px;}
.y17_c00186{bottom:196.335000px;}
.y16_c00186{bottom:219.585000px;}
.y13_c00186{bottom:295.335000px;}
.y12_c00186{bottom:322.335000px;}
.y11_c00186{bottom:349.335000px;}
.y10_c00186{bottom:376.335000px;}
.yf_c00186{bottom:403.335000px;}
.ye_c00186{bottom:430.335000px;}
.yc_c00186{bottom:470.835000px;}
.yb_c00186{bottom:784.335000px;}
.ya_c00186{bottom:811.335000px;}
.y9_c00186{bottom:838.335000px;}
.y8_c00186{bottom:865.335000px;}
.y7_c00186{bottom:892.335000px;}
.y6_c00186{bottom:940.335000px;}
.y5_c00186{bottom:967.335000px;}
.y4_c00186{bottom:994.335000px;}
.y3_c00186{bottom:1021.335000px;}
.y2_c00186{bottom:1048.335000px;}
.y1_c00186{bottom:1094.835000px;}
.y14_c00186{bottom:1193.835000px;}
.h9_c00186{height:27.480470px;}
.ha_c00186{height:41.220703px;}
.h7_c00186{height:42.292969px;}
.h8_c00186{height:44.121094px;}
.h3_c00186{height:50.976562px;}
.h4_c00186{height:51.257812px;}
.h5_c00186{height:57.258075px;}
.h6_c00186{height:282.000000px;}
.h2_c00186{height:1261.500000px;}
.h0_c00186{height:1262.835000px;}
.h1_c00186{height:1263.000000px;}
.w3_c00186{width:676.935000px;}
.w2_c00186{width:892.500000px;}
.w0_c00186{width:892.935000px;}
.w1_c00186{width:893.250000px;}
.x0_c00186{left:0.000000px;}
.x2_c00186{left:64.271805px;}
.x1_c00186{left:150.519750px;}
.x3_c00186{left:380.516100px;}
.x4_c00186{left:802.427700px;}
@media print{
.v2_c00186{vertical-align:-13.333333pt;}
.v0_c00186{vertical-align:0.000000pt;}
.v1_c00186{vertical-align:20.521067pt;}
.ls3_c00186{letter-spacing:-0.008533pt;}
.ls4_c00186{letter-spacing:-0.006400pt;}
.ls2_c00186{letter-spacing:0.000000pt;}
.ls1_c00186{letter-spacing:0.010667pt;}
.ls0_c00186{letter-spacing:1.043200pt;}
.ws3_c00186{word-spacing:-13.333333pt;}
.ws0_c00186{word-spacing:-11.724800pt;}
.ws1_c00186{word-spacing:-0.064000pt;}
.ws4_c00186{word-spacing:0.000000pt;}
.ws2_c00186{word-spacing:3.555553pt;}
._14_c00186{margin-left:-6.566400pt;}
._1d_c00186{margin-left:-4.691200pt;}
._a_c00186{margin-left:-3.456000pt;}
._0_c00186{margin-left:-2.291200pt;}
._1_c00186{margin-left:-0.953600pt;}
._3_c00186{width:1.164800pt;}
._2_c00186{width:2.137600pt;}
._4_c00186{width:3.430400pt;}
._b_c00186{width:4.633600pt;}
._d_c00186{width:6.188800pt;}
._e_c00186{width:7.360000pt;}
._f_c00186{width:8.531200pt;}
._c_c00186{width:10.086400pt;}
._5_c00186{width:11.264000pt;}
._7_c00186{width:12.230400pt;}
._9_c00186{width:13.388800pt;}
._6_c00186{width:14.387200pt;}
._8_c00186{width:15.705600pt;}
._10_c00186{width:20.243200pt;}
._16_c00186{width:21.171200pt;}
._11_c00186{width:22.380800pt;}
._12_c00186{width:23.302400pt;}
._15_c00186{width:24.633600pt;}
._13_c00186{width:25.843200pt;}
._1e_c00186{width:27.105067pt;}
._1c_c00186{width:28.184533pt;}
._19_c00186{width:29.491200pt;}
._17_c00186{width:30.464000pt;}
._1b_c00186{width:31.417600pt;}
._1a_c00186{width:32.755200pt;}
._18_c00186{width:33.792000pt;}
.fs4_c00186{font-size:35.555557pt;}
.fs1_c00186{font-size:42.666667pt;}
.fs2_c00186{font-size:48.000000pt;}
.fs3_c00186{font-size:53.333333pt;}
.fs0_c00186{font-size:64.000000pt;}
.y0_c00186{bottom:0.000000pt;}
.yd_c00186{bottom:10.666667pt;}
.y15_c00186{bottom:59.853333pt;}
.y19_c00186{bottom:117.186667pt;}
.y18_c00186{bottom:137.853333pt;}
.y17_c00186{bottom:174.520000pt;}
.y16_c00186{bottom:195.186667pt;}
.y13_c00186{bottom:262.520000pt;}
.y12_c00186{bottom:286.520000pt;}
.y11_c00186{bottom:310.520000pt;}
.y10_c00186{bottom:334.520000pt;}
.yf_c00186{bottom:358.520000pt;}
.ye_c00186{bottom:382.520000pt;}
.yc_c00186{bottom:418.520000pt;}
.yb_c00186{bottom:697.186667pt;}
.ya_c00186{bottom:721.186667pt;}
.y9_c00186{bottom:745.186667pt;}
.y8_c00186{bottom:769.186667pt;}
.y7_c00186{bottom:793.186667pt;}
.y6_c00186{bottom:835.853333pt;}
.y5_c00186{bottom:859.853333pt;}
.y4_c00186{bottom:883.853333pt;}
.y3_c00186{bottom:907.853333pt;}
.y2_c00186{bottom:931.853333pt;}
.y1_c00186{bottom:973.186667pt;}
.y14_c00186{bottom:1061.186667pt;}
.h9_c00186{height:24.427085pt;}
.ha_c00186{height:36.640625pt;}
.h7_c00186{height:37.593750pt;}
.h8_c00186{height:39.218750pt;}
.h3_c00186{height:45.312500pt;}
.h4_c00186{height:45.562500pt;}
.h5_c00186{height:50.896067pt;}
.h6_c00186{height:250.666667pt;}
.h2_c00186{height:1121.333333pt;}
.h0_c00186{height:1122.520000pt;}
.h1_c00186{height:1122.666667pt;}
.w3_c00186{width:601.720000pt;}
.w2_c00186{width:793.333333pt;}
.w0_c00186{width:793.720000pt;}
.w1_c00186{width:794.000000pt;}
.x0_c00186{left:0.000000pt;}
.x2_c00186{left:57.130493pt;}
.x1_c00186{left:133.795333pt;}
.x3_c00186{left:338.236533pt;}
.x4_c00186{left:713.269067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3357981c33ddbb05743f579e.woff2')format("woff");}.ff1_c00187{font-family:ff1_c00187;line-height:0.934082;font-style:normal;font-weight:normal;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_098da80f669a4e205c6f4759.woff2')format("woff");}.ff2_c00187{font-family:ff2_c00187;line-height:0.963867;font-style:normal;font-weight:normal;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_cbc2af4d0846d209424eed17.woff2')format("woff");}.ff3_c00187{font-family:ff3_c00187;line-height:0.756836;font-style:normal;font-weight:normal;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_b68fcadb7b284852d8e78855.woff2')format("woff");}.ff4_c00187{font-family:ff4_c00187;line-height:1.155762;font-style:normal;font-weight:normal;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_f78264f5870e4c925390668a.woff2')format("woff");}.ff5_c00187{font-family:ff5_c00187;line-height:0.903320;font-style: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);}
.v2_c00187{vertical-align:-23.086200px;}
.v3_c00187{vertical-align:-15.000000px;}
.v0_c00187{vertical-align:0.000000px;}
.v1_c00187{vertical-align:23.086200px;}
.ls1_c00187{letter-spacing:-0.009600px;}
.ls0_c00187{letter-spacing:0.000000px;}
.ls2_c00187{letter-spacing:0.012000px;}
.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:-15.000000px;}
.ws0_c00187{word-spacing:-13.190400px;}
.ws3_c00187{word-spacing:0.000000px;}
.ws1_c00187{word-spacing:3.999998px;}
._16_c00187{margin-left:-7.552800px;}
._18_c00187{margin-left:-6.013200px;}
._b_c00187{margin-left:-3.866400px;}
._7_c00187{margin-left:-2.822400px;}
._5_c00187{margin-left:-1.612800px;}
._3_c00187{width:1.533600px;}
._9_c00187{width:3.060000px;}
._0_c00187{width:4.996800px;}
._15_c00187{width:6.868800px;}
._17_c00187{width:10.014000px;}
._f_c00187{width:11.246400px;}
._e_c00187{width:14.594400px;}
._10_c00187{width:15.832800px;}
._d_c00187{width:16.884000px;}
._11_c00187{width:21.376800px;}
._13_c00187{width:23.284800px;}
._14_c00187{width:25.128000px;}
._12_c00187{width:26.589600px;}
._1_c00187{width:28.317600px;}
._a_c00187{width:30.614400px;}
._4_c00187{width:31.752000px;}
._2_c00187{width:33.321600px;}
._6_c00187{width:34.920000px;}
._8_c00187{width:36.144000px;}
._c_c00187{width:37.173600px;}
.fc1_c00187{color:rgb(0,0,153);}
.fc0_c00187{color:rgb(0,0,0);}
.fs4_c00187{font-size:40.000002px;}
.fs1_c00187{font-size:48.000000px;}
.fs2_c00187{font-size:54.000000px;}
.fs3_c00187{font-size:60.000000px;}
.fs0_c00187{font-size:72.000000px;}
.y0_c00187{bottom:0.000000px;}
.y9_c00187{bottom:12.000000px;}
.ye_c00187{bottom:67.335000px;}
.y10_c00187{bottom:131.835000px;}
.yf_c00187{bottom:155.085000px;}
.yc_c00187{bottom:226.335000px;}
.yb_c00187{bottom:253.335000px;}
.ya_c00187{bottom:280.335000px;}
.y8_c00187{bottom:320.835000px;}
.y7_c00187{bottom:911.835000px;}
.y6_c00187{bottom:938.835000px;}
.y5_c00187{bottom:965.835000px;}
.y4_c00187{bottom:1013.835000px;}
.y3_c00187{bottom:1040.835000px;}
.y2_c00187{bottom:1067.835000px;}
.y1_c00187{bottom:1094.835000px;}
.yd_c00187{bottom:1193.835000px;}
.h9_c00187{height:27.421876px;}
.ha_c00187{height:41.132812px;}
.h6_c00187{height:41.633789px;}
.h8_c00187{height:44.208984px;}
.h3_c00187{height:51.257812px;}
.h7_c00187{height:56.074219px;}
.h4_c00187{height:57.258075px;}
.h5_c00187{height:559.500000px;}
.h2_c00187{height:1261.500000px;}
.h0_c00187{height:1262.835000px;}
.h1_c00187{height:1263.000000px;}
.w3_c00187{width:676.934850px;}
.w2_c00187{width:892.500000px;}
.w0_c00187{width:892.935000px;}
.w1_c00187{width:893.250000px;}
.x0_c00187{left:0.000000px;}
.x1_c00187{left:65.480310px;}
.x2_c00187{left:146.837340px;}
@media print{
.v2_c00187{vertical-align:-20.521067pt;}
.v3_c00187{vertical-align:-13.333333pt;}
.v0_c00187{vertical-align:0.000000pt;}
.v1_c00187{vertical-align:20.521067pt;}
.ls1_c00187{letter-spacing:-0.008533pt;}
.ls0_c00187{letter-spacing:0.000000pt;}
.ls2_c00187{letter-spacing:0.010667pt;}
.ws2_c00187{word-spacing:-13.333333pt;}
.ws0_c00187{word-spacing:-11.724800pt;}
.ws3_c00187{word-spacing:0.000000pt;}
.ws1_c00187{word-spacing:3.555553pt;}
._16_c00187{margin-left:-6.713600pt;}
._18_c00187{margin-left:-5.345067pt;}
._b_c00187{margin-left:-3.436800pt;}
._7_c00187{margin-left:-2.508800pt;}
._5_c00187{margin-left:-1.433600pt;}
._3_c00187{width:1.363200pt;}
._9_c00187{width:2.720000pt;}
._0_c00187{width:4.441600pt;}
._15_c00187{width:6.105600pt;}
._17_c00187{width:8.901333pt;}
._f_c00187{width:9.996800pt;}
._e_c00187{width:12.972800pt;}
._10_c00187{width:14.073600pt;}
._d_c00187{width:15.008000pt;}
._11_c00187{width:19.001600pt;}
._13_c00187{width:20.697600pt;}
._14_c00187{width:22.336000pt;}
._12_c00187{width:23.635200pt;}
._1_c00187{width:25.171200pt;}
._a_c00187{width:27.212800pt;}
._4_c00187{width:28.224000pt;}
._2_c00187{width:29.619200pt;}
._6_c00187{width:31.040000pt;}
._8_c00187{width:32.128000pt;}
._c_c00187{width:33.043200pt;}
.fs4_c00187{font-size:35.555557pt;}
.fs1_c00187{font-size:42.666667pt;}
.fs2_c00187{font-size:48.000000pt;}
.fs3_c00187{font-size:53.333333pt;}
.fs0_c00187{font-size:64.000000pt;}
.y0_c00187{bottom:0.000000pt;}
.y9_c00187{bottom:10.666667pt;}
.ye_c00187{bottom:59.853333pt;}
.y10_c00187{bottom:117.186667pt;}
.yf_c00187{bottom:137.853333pt;}
.yc_c00187{bottom:201.186667pt;}
.yb_c00187{bottom:225.186667pt;}
.ya_c00187{bottom:249.186667pt;}
.y8_c00187{bottom:285.186667pt;}
.y7_c00187{bottom:810.520000pt;}
.y6_c00187{bottom:834.520000pt;}
.y5_c00187{bottom:858.520000pt;}
.y4_c00187{bottom:901.186667pt;}
.y3_c00187{bottom:925.186667pt;}
.y2_c00187{bottom:949.186667pt;}
.y1_c00187{bottom:973.186667pt;}
.yd_c00187{bottom:1061.186667pt;}
.h9_c00187{height:24.375001pt;}
.ha_c00187{height:36.562500pt;}
.h6_c00187{height:37.007812pt;}
.h8_c00187{height:39.296875pt;}
.h3_c00187{height:45.562500pt;}
.h7_c00187{height:49.843750pt;}
.h4_c00187{height:50.896067pt;}
.h5_c00187{height:497.333333pt;}
.h2_c00187{height:1121.333333pt;}
.h0_c00187{height:1122.520000pt;}
.h1_c00187{height:1122.666667pt;}
.w3_c00187{width:601.719867pt;}
.w2_c00187{width:793.333333pt;}
.w0_c00187{width:793.720000pt;}
.w1_c00187{width:794.000000pt;}
.x0_c00187{left:0.000000pt;}
.x1_c00187{left:58.204720pt;}
.x2_c00187{left:130.522080pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1f05fa001840a1c4d647002c.woff2')format("woff");}.ff1_c00188{font-family:ff1_c00188;line-height:0.934082;font-style:normal;font-weight:normal;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_79f84ada99016288b3f08bbe.woff2')format("woff");}.ff2_c00188{font-family:ff2_c00188;line-height:0.963867;font-style:normal;font-weight:normal;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_7c4460639a7d9bc0a06dd939.woff2')format("woff");}.ff3_c00188{font-family:ff3_c00188;line-height:0.956543;font-style:normal;font-weight:normal;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_89656b5aa17a817dcd56384c.woff2')format("woff");}.ff4_c00188{font-family:ff4_c00188;line-height:0.904785;font-style: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);}
.v2_c00188{vertical-align:-23.086200px;}
.v3_c00188{vertical-align:-15.000000px;}
.v0_c00188{vertical-align:0.000000px;}
.v1_c00188{vertical-align:23.086200px;}
.ls3_c00188{letter-spacing:-0.009600px;}
.ls2_c00188{letter-spacing:0.000000px;}
.ls1_c00188{letter-spacing:0.012000px;}
.ls0_c00188{letter-spacing:0.036000px;}
.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:-19.836000px;}
.ws3_c00188{word-spacing:-15.000000px;}
.ws0_c00188{word-spacing:-13.190400px;}
.ws4_c00188{word-spacing:0.000000px;}
.ws2_c00188{word-spacing:3.999998px;}
._10_c00188{margin-left:-11.548800px;}
._7_c00188{margin-left:-7.300800px;}
._8_c00188{margin-left:-4.744800px;}
._11_c00188{margin-left:-3.398400px;}
._3_c00188{margin-left:-2.304000px;}
._b_c00188{margin-left:-1.137600px;}
._5_c00188{width:1.432800px;}
._1_c00188{width:3.045600px;}
._e_c00188{width:4.464000px;}
._f_c00188{width:5.796000px;}
._2_c00188{width:9.050400px;}
._6_c00188{width:10.670400px;}
._0_c00188{width:12.060000px;}
._a_c00188{width:13.183200px;}
._4_c00188{width:14.400000px;}
._d_c00188{width:15.638400px;}
._9_c00188{width:16.804800px;}
._c_c00188{width:17.985600px;}
._13_c00188{width:22.082400px;}
._12_c00188{width:23.529600px;}
._17_c00188{width:24.592800px;}
._14_c00188{width:25.797600px;}
._15_c00188{width:26.848800px;}
._16_c00188{width:28.000800px;}
.fc1_c00188{color:rgb(0,0,153);}
.fc0_c00188{color:rgb(0,0,0);}
.fs4_c00188{font-size:40.000002px;}
.fs1_c00188{font-size:48.000000px;}
.fs2_c00188{font-size:54.000000px;}
.fs3_c00188{font-size:60.000000px;}
.fs0_c00188{font-size:72.000000px;}
.y0_c00188{bottom:0.000000px;}
.y7_c00188{bottom:12.000000px;}
.y10_c00188{bottom:67.335000px;}
.y14_c00188{bottom:131.835000px;}
.y13_c00188{bottom:155.085000px;}
.y12_c00188{bottom:196.335000px;}
.y11_c00188{bottom:219.585000px;}
.ye_c00188{bottom:281.835000px;}
.yd_c00188{bottom:308.835000px;}
.yc_c00188{bottom:335.835000px;}
.yb_c00188{bottom:362.835000px;}
.ya_c00188{bottom:389.835000px;}
.y9_c00188{bottom:416.835000px;}
.y8_c00188{bottom:464.835000px;}
.y6_c00188{bottom:505.335000px;}
.y5_c00188{bottom:965.835000px;}
.y4_c00188{bottom:992.835000px;}
.y3_c00188{bottom:1019.835000px;}
.y2_c00188{bottom:1067.835000px;}
.y1_c00188{bottom:1094.835000px;}
.yf_c00188{bottom:1193.835000px;}
.h8_c00188{height:27.480470px;}
.h9_c00188{height:41.220703px;}
.h6_c00188{height:41.633789px;}
.h7_c00188{height:44.121094px;}
.h3_c00188{height:51.257812px;}
.h4_c00188{height:57.258075px;}
.h5_c00188{height:429.000000px;}
.h2_c00188{height:1261.500000px;}
.h0_c00188{height:1262.835000px;}
.h1_c00188{height:1263.000000px;}
.w3_c00188{width:676.935000px;}
.w2_c00188{width:892.500000px;}
.w0_c00188{width:892.935000px;}
.w1_c00188{width:893.250000px;}
.x0_c00188{left:0.000000px;}
.x1_c00188{left:150.519750px;}
.x2_c00188{left:214.366950px;}
.x3_c00188{left:380.516100px;}
.x4_c00188{left:802.427700px;}
@media print{
.v2_c00188{vertical-align:-20.521067pt;}
.v3_c00188{vertical-align:-13.333333pt;}
.v0_c00188{vertical-align:0.000000pt;}
.v1_c00188{vertical-align:20.521067pt;}
.ls3_c00188{letter-spacing:-0.008533pt;}
.ls2_c00188{letter-spacing:0.000000pt;}
.ls1_c00188{letter-spacing:0.010667pt;}
.ls0_c00188{letter-spacing:0.032000pt;}
.ws1_c00188{word-spacing:-17.632000pt;}
.ws3_c00188{word-spacing:-13.333333pt;}
.ws0_c00188{word-spacing:-11.724800pt;}
.ws4_c00188{word-spacing:0.000000pt;}
.ws2_c00188{word-spacing:3.555553pt;}
._10_c00188{margin-left:-10.265600pt;}
._7_c00188{margin-left:-6.489600pt;}
._8_c00188{margin-left:-4.217600pt;}
._11_c00188{margin-left:-3.020800pt;}
._3_c00188{margin-left:-2.048000pt;}
._b_c00188{margin-left:-1.011200pt;}
._5_c00188{width:1.273600pt;}
._1_c00188{width:2.707200pt;}
._e_c00188{width:3.968000pt;}
._f_c00188{width:5.152000pt;}
._2_c00188{width:8.044800pt;}
._6_c00188{width:9.484800pt;}
._0_c00188{width:10.720000pt;}
._a_c00188{width:11.718400pt;}
._4_c00188{width:12.800000pt;}
._d_c00188{width:13.900800pt;}
._9_c00188{width:14.937600pt;}
._c_c00188{width:15.987200pt;}
._13_c00188{width:19.628800pt;}
._12_c00188{width:20.915200pt;}
._17_c00188{width:21.860267pt;}
._14_c00188{width:22.931200pt;}
._15_c00188{width:23.865600pt;}
._16_c00188{width:24.889600pt;}
.fs4_c00188{font-size:35.555557pt;}
.fs1_c00188{font-size:42.666667pt;}
.fs2_c00188{font-size:48.000000pt;}
.fs3_c00188{font-size:53.333333pt;}
.fs0_c00188{font-size:64.000000pt;}
.y0_c00188{bottom:0.000000pt;}
.y7_c00188{bottom:10.666667pt;}
.y10_c00188{bottom:59.853333pt;}
.y14_c00188{bottom:117.186667pt;}
.y13_c00188{bottom:137.853333pt;}
.y12_c00188{bottom:174.520000pt;}
.y11_c00188{bottom:195.186667pt;}
.ye_c00188{bottom:250.520000pt;}
.yd_c00188{bottom:274.520000pt;}
.yc_c00188{bottom:298.520000pt;}
.yb_c00188{bottom:322.520000pt;}
.ya_c00188{bottom:346.520000pt;}
.y9_c00188{bottom:370.520000pt;}
.y8_c00188{bottom:413.186667pt;}
.y6_c00188{bottom:449.186667pt;}
.y5_c00188{bottom:858.520000pt;}
.y4_c00188{bottom:882.520000pt;}
.y3_c00188{bottom:906.520000pt;}
.y2_c00188{bottom:949.186667pt;}
.y1_c00188{bottom:973.186667pt;}
.yf_c00188{bottom:1061.186667pt;}
.h8_c00188{height:24.427085pt;}
.h9_c00188{height:36.640625pt;}
.h6_c00188{height:37.007812pt;}
.h7_c00188{height:39.218750pt;}
.h3_c00188{height:45.562500pt;}
.h4_c00188{height:50.896067pt;}
.h5_c00188{height:381.333333pt;}
.h2_c00188{height:1121.333333pt;}
.h0_c00188{height:1122.520000pt;}
.h1_c00188{height:1122.666667pt;}
.w3_c00188{width:601.720000pt;}
.w2_c00188{width:793.333333pt;}
.w0_c00188{width:793.720000pt;}
.w1_c00188{width:794.000000pt;}
.x0_c00188{left:0.000000pt;}
.x1_c00188{left:133.795333pt;}
.x2_c00188{left:190.548400pt;}
.x3_c00188{left:338.236533pt;}
.x4_c00188{left:713.269067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6cdcfc9970806b26b477838e.woff2')format("woff");}.ff1_c00189{font-family:ff1_c00189;line-height:0.963867;font-style:normal;font-weight:normal;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_af31a5bc2a97e2da804c9ecf.woff2')format("woff");}.ff2_c00189{font-family:ff2_c00189;line-height:0.934082;font-style:normal;font-weight:normal;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_206fa8fdc1a07810554dec3f.woff2')format("woff");}.ff3_c00189{font-family:ff3_c00189;line-height:0.928223;font-style:normal;font-weight:normal;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_52a2f00f3393fbf0735bd97e.woff2')format("woff");}.ff4_c00189{font-family:ff4_c00189;line-height:0.756836;font-style:normal;font-weight:normal;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_cec60cbb4d7c8fdf32e692cf.woff2')format("woff");}.ff5_c00189{font-family:ff5_c00189;line-height:1.155762;font-style:normal;font-weight: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_c00189;src:url('chunks/assets/font_cd89e1d17ef6be324ab17c83.woff2')format("woff");}.ff6_c00189{font-family:ff6_c00189;line-height:0.903320;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00189{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00189{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00189{vertical-align:-23.086200px;}
.v3_c00189{vertical-align:-15.000000px;}
.v0_c00189{vertical-align:0.000000px;}
.v1_c00189{vertical-align:23.086200px;}
.ls2_c00189{letter-spacing:-0.009600px;}
.ls1_c00189{letter-spacing:0.000000px;}
.ls0_c00189{letter-spacing:0.007200px;}
.ls3_c00189{letter-spacing:0.012000px;}
.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;}
}
.ws2_c00189{word-spacing:-15.000000px;}
.ws0_c00189{word-spacing:-13.190400px;}
.ws3_c00189{word-spacing:0.000000px;}
.ws1_c00189{word-spacing:3.999998px;}
._b_c00189{margin-left:-11.491200px;}
._17_c00189{margin-left:-6.066000px;}
._16_c00189{margin-left:-5.024400px;}
._0_c00189{margin-left:-3.945600px;}
._d_c00189{margin-left:-2.592000px;}
._1_c00189{margin-left:-1.548000px;}
._3_c00189{width:1.188000px;}
._7_c00189{width:2.570400px;}
._a_c00189{width:3.823200px;}
._5_c00189{width:5.205600px;}
._c_c00189{width:7.106400px;}
._e_c00189{width:8.668800px;}
._f_c00189{width:10.015200px;}
._12_c00189{width:11.275200px;}
._10_c00189{width:12.340800px;}
._11_c00189{width:14.277600px;}
._15_c00189{width:15.768000px;}
._14_c00189{width:17.179200px;}
._13_c00189{width:18.331200px;}
._18_c00189{width:21.439200px;}
._19_c00189{width:22.569600px;}
._6_c00189{width:25.063200px;}
._1a_c00189{width:26.195160px;}
._8_c00189{width:27.640800px;}
._4_c00189{width:29.044800px;}
._9_c00189{width:30.232800px;}
._2_c00189{width:31.831200px;}
.fc1_c00189{color:rgb(0,0,153);}
.fc0_c00189{color:rgb(0,0,0);}
.fs4_c00189{font-size:40.000002px;}
.fs2_c00189{font-size:48.000000px;}
.fs0_c00189{font-size:54.000000px;}
.fs3_c00189{font-size:60.000000px;}
.fs1_c00189{font-size:72.000000px;}
.y0_c00189{bottom:0.000000px;}
.y2_c00189{bottom:12.000000px;}
.yf_c00189{bottom:67.335000px;}
.y11_c00189{bottom:131.835000px;}
.y10_c00189{bottom:155.085000px;}
.yd_c00189{bottom:203.835000px;}
.yc_c00189{bottom:230.835000px;}
.yb_c00189{bottom:277.335000px;}
.ya_c00189{bottom:338.835000px;}
.y9_c00189{bottom:626.835000px;}
.y8_c00189{bottom:653.835000px;}
.y7_c00189{bottom:680.835000px;}
.y6_c00189{bottom:707.835000px;}
.y5_c00189{bottom:755.835000px;}
.y4_c00189{bottom:782.835000px;}
.y3_c00189{bottom:809.835000px;}
.y1_c00189{bottom:850.335000px;}
.ye_c00189{bottom:1193.835000px;}
.hb_c00189{height:27.421876px;}
.hc_c00189{height:41.132812px;}
.h3_c00189{height:41.633789px;}
.ha_c00189{height:44.208984px;}
.h8_c00189{height:50.976562px;}
.h5_c00189{height:51.257812px;}
.h9_c00189{height:56.074219px;}
.h6_c00189{height:57.258075px;}
.h7_c00189{height:256.500000px;}
.h2_c00189{height:262.500000px;}
.h4_c00189{height:1261.500000px;}
.h0_c00189{height:1262.835000px;}
.h1_c00189{height:1263.000000px;}
.w2_c00189{width:676.934850px;}
.w4_c00189{width:676.935000px;}
.w3_c00189{width:892.500000px;}
.w0_c00189{width:892.935000px;}
.w1_c00189{width:893.250000px;}
.x0_c00189{left:0.000000px;}
.x1_c00189{left:66.000000px;}
.x3_c00189{left:125.885325px;}
.x2_c00189{left:179.842500px;}
@media print{
.v2_c00189{vertical-align:-20.521067pt;}
.v3_c00189{vertical-align:-13.333333pt;}
.v0_c00189{vertical-align:0.000000pt;}
.v1_c00189{vertical-align:20.521067pt;}
.ls2_c00189{letter-spacing:-0.008533pt;}
.ls1_c00189{letter-spacing:0.000000pt;}
.ls0_c00189{letter-spacing:0.006400pt;}
.ls3_c00189{letter-spacing:0.010667pt;}
.ws2_c00189{word-spacing:-13.333333pt;}
.ws0_c00189{word-spacing:-11.724800pt;}
.ws3_c00189{word-spacing:0.000000pt;}
.ws1_c00189{word-spacing:3.555553pt;}
._b_c00189{margin-left:-10.214400pt;}
._17_c00189{margin-left:-5.392000pt;}
._16_c00189{margin-left:-4.466133pt;}
._0_c00189{margin-left:-3.507200pt;}
._d_c00189{margin-left:-2.304000pt;}
._1_c00189{margin-left:-1.376000pt;}
._3_c00189{width:1.056000pt;}
._7_c00189{width:2.284800pt;}
._a_c00189{width:3.398400pt;}
._5_c00189{width:4.627200pt;}
._c_c00189{width:6.316800pt;}
._e_c00189{width:7.705600pt;}
._f_c00189{width:8.902400pt;}
._12_c00189{width:10.022400pt;}
._10_c00189{width:10.969600pt;}
._11_c00189{width:12.691200pt;}
._15_c00189{width:14.016000pt;}
._14_c00189{width:15.270400pt;}
._13_c00189{width:16.294400pt;}
._18_c00189{width:19.057067pt;}
._19_c00189{width:20.061867pt;}
._6_c00189{width:22.278400pt;}
._1a_c00189{width:23.284587pt;}
._8_c00189{width:24.569600pt;}
._4_c00189{width:25.817600pt;}
._9_c00189{width:26.873600pt;}
._2_c00189{width:28.294400pt;}
.fs4_c00189{font-size:35.555557pt;}
.fs2_c00189{font-size:42.666667pt;}
.fs0_c00189{font-size:48.000000pt;}
.fs3_c00189{font-size:53.333333pt;}
.fs1_c00189{font-size:64.000000pt;}
.y0_c00189{bottom:0.000000pt;}
.y2_c00189{bottom:10.666667pt;}
.yf_c00189{bottom:59.853333pt;}
.y11_c00189{bottom:117.186667pt;}
.y10_c00189{bottom:137.853333pt;}
.yd_c00189{bottom:181.186667pt;}
.yc_c00189{bottom:205.186667pt;}
.yb_c00189{bottom:246.520000pt;}
.ya_c00189{bottom:301.186667pt;}
.y9_c00189{bottom:557.186667pt;}
.y8_c00189{bottom:581.186667pt;}
.y7_c00189{bottom:605.186667pt;}
.y6_c00189{bottom:629.186667pt;}
.y5_c00189{bottom:671.853333pt;}
.y4_c00189{bottom:695.853333pt;}
.y3_c00189{bottom:719.853333pt;}
.y1_c00189{bottom:755.853333pt;}
.ye_c00189{bottom:1061.186667pt;}
.hb_c00189{height:24.375001pt;}
.hc_c00189{height:36.562500pt;}
.h3_c00189{height:37.007812pt;}
.ha_c00189{height:39.296875pt;}
.h8_c00189{height:45.312500pt;}
.h5_c00189{height:45.562500pt;}
.h9_c00189{height:49.843750pt;}
.h6_c00189{height:50.896067pt;}
.h7_c00189{height:228.000000pt;}
.h2_c00189{height:233.333333pt;}
.h4_c00189{height:1121.333333pt;}
.h0_c00189{height:1122.520000pt;}
.h1_c00189{height:1122.666667pt;}
.w2_c00189{width:601.719867pt;}
.w4_c00189{width:601.720000pt;}
.w3_c00189{width:793.333333pt;}
.w0_c00189{width:793.720000pt;}
.w1_c00189{width:794.000000pt;}
.x0_c00189{left:0.000000pt;}
.x1_c00189{left:58.666667pt;}
.x3_c00189{left:111.898067pt;}
.x2_c00189{left:159.860000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_674b6d940c165b037333f77f.woff2')format("woff");}.ff1_c00190{font-family:ff1_c00190;line-height:0.934082;font-style:normal;font-weight:normal;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_945c73813f46e9b1f415acf6.woff2')format("woff");}.ff2_c00190{font-family:ff2_c00190;line-height:0.963867;font-style:normal;font-weight:normal;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_154f64c2a5856fa51216d608.woff2')format("woff");}.ff3_c00190{font-family:ff3_c00190;line-height:0.956543;font-style:normal;font-weight:normal;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_7a03e6e11990993bae5de41b.woff2')format("woff");}.ff4_c00190{font-family:ff4_c00190;line-height:0.903320;font-style: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);}
.v2_c00190{vertical-align:-15.000000px;}
.v0_c00190{vertical-align:0.000000px;}
.v1_c00190{vertical-align:23.086200px;}
.ls3_c00190{letter-spacing:-0.009600px;}
.ls2_c00190{letter-spacing:0.000000px;}
.ls0_c00190{letter-spacing:0.005400px;}
.ls1_c00190{letter-spacing:0.012000px;}
.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:-15.000000px;}
.ws0_c00190{word-spacing:-13.190400px;}
.ws3_c00190{word-spacing:0.000000px;}
.ws1_c00190{word-spacing:3.999998px;}
._9_c00190{margin-left:-6.955200px;}
._7_c00190{margin-left:-5.076000px;}
._4_c00190{margin-left:-3.362400px;}
._2_c00190{margin-left:-1.836000px;}
._1_c00190{width:1.872000px;}
._0_c00190{width:3.484800px;}
._3_c00190{width:4.500000px;}
._5_c00190{width:5.824800px;}
._6_c00190{width:7.034400px;}
._8_c00190{width:8.280000px;}
._b_c00190{width:9.295200px;}
._a_c00190{width:10.612800px;}
._c_c00190{width:12.074400px;}
._d_c00190{width:13.780800px;}
._f_c00190{width:15.120000px;}
._e_c00190{width:16.675200px;}
._13_c00190{width:20.952000px;}
._14_c00190{width:22.812000px;}
._12_c00190{width:24.708000px;}
._10_c00190{width:26.959200px;}
._11_c00190{width:27.984000px;}
.fc1_c00190{color:rgb(0,0,153);}
.fc0_c00190{color:rgb(0,0,0);}
.fs4_c00190{font-size:40.000002px;}
.fs2_c00190{font-size:48.000000px;}
.fs1_c00190{font-size:54.000000px;}
.fs3_c00190{font-size:60.000000px;}
.fs0_c00190{font-size:72.000000px;}
.y0_c00190{bottom:0.000000px;}
.y5_c00190{bottom:12.000000px;}
.y15_c00190{bottom:67.335000px;}
.y17_c00190{bottom:131.835000px;}
.y16_c00190{bottom:155.085000px;}
.y13_c00190{bottom:212.835000px;}
.y12_c00190{bottom:239.835000px;}
.y11_c00190{bottom:266.835000px;}
.y10_c00190{bottom:293.835000px;}
.yf_c00190{bottom:320.835000px;}
.ye_c00190{bottom:347.835000px;}
.yd_c00190{bottom:374.835000px;}
.yc_c00190{bottom:401.835000px;}
.yb_c00190{bottom:428.835000px;}
.ya_c00190{bottom:476.835000px;}
.y9_c00190{bottom:503.835000px;}
.y8_c00190{bottom:530.835000px;}
.y7_c00190{bottom:557.835000px;}
.y6_c00190{bottom:584.835000px;}
.y4_c00190{bottom:625.335000px;}
.y3_c00190{bottom:1040.835000px;}
.y2_c00190{bottom:1067.835000px;}
.y1_c00190{bottom:1094.835000px;}
.y14_c00190{bottom:1193.835000px;}
.h8_c00190{height:27.421876px;}
.h9_c00190{height:41.132812px;}
.h5_c00190{height:41.633789px;}
.h7_c00190{height:44.121094px;}
.h3_c00190{height:51.257812px;}
.h6_c00190{height:57.258075px;}
.h4_c00190{height:384.000000px;}
.h2_c00190{height:1261.500000px;}
.h0_c00190{height:1262.835000px;}
.h1_c00190{height:1263.000000px;}
.w3_c00190{width:676.935000px;}
.w2_c00190{width:892.500000px;}
.w0_c00190{width:892.935000px;}
.w1_c00190{width:893.250000px;}
.x0_c00190{left:0.000000px;}
.x2_c00190{left:147.506430px;}
.x1_c00190{left:150.519750px;}
.x3_c00190{left:380.516100px;}
.x4_c00190{left:802.427700px;}
@media print{
.v2_c00190{vertical-align:-13.333333pt;}
.v0_c00190{vertical-align:0.000000pt;}
.v1_c00190{vertical-align:20.521067pt;}
.ls3_c00190{letter-spacing:-0.008533pt;}
.ls2_c00190{letter-spacing:0.000000pt;}
.ls0_c00190{letter-spacing:0.004800pt;}
.ls1_c00190{letter-spacing:0.010667pt;}
.ws2_c00190{word-spacing:-13.333333pt;}
.ws0_c00190{word-spacing:-11.724800pt;}
.ws3_c00190{word-spacing:0.000000pt;}
.ws1_c00190{word-spacing:3.555553pt;}
._9_c00190{margin-left:-6.182400pt;}
._7_c00190{margin-left:-4.512000pt;}
._4_c00190{margin-left:-2.988800pt;}
._2_c00190{margin-left:-1.632000pt;}
._1_c00190{width:1.664000pt;}
._0_c00190{width:3.097600pt;}
._3_c00190{width:4.000000pt;}
._5_c00190{width:5.177600pt;}
._6_c00190{width:6.252800pt;}
._8_c00190{width:7.360000pt;}
._b_c00190{width:8.262400pt;}
._a_c00190{width:9.433600pt;}
._c_c00190{width:10.732800pt;}
._d_c00190{width:12.249600pt;}
._f_c00190{width:13.440000pt;}
._e_c00190{width:14.822400pt;}
._13_c00190{width:18.624000pt;}
._14_c00190{width:20.277333pt;}
._12_c00190{width:21.962667pt;}
._10_c00190{width:23.963733pt;}
._11_c00190{width:24.874667pt;}
.fs4_c00190{font-size:35.555557pt;}
.fs2_c00190{font-size:42.666667pt;}
.fs1_c00190{font-size:48.000000pt;}
.fs3_c00190{font-size:53.333333pt;}
.fs0_c00190{font-size:64.000000pt;}
.y0_c00190{bottom:0.000000pt;}
.y5_c00190{bottom:10.666667pt;}
.y15_c00190{bottom:59.853333pt;}
.y17_c00190{bottom:117.186667pt;}
.y16_c00190{bottom:137.853333pt;}
.y13_c00190{bottom:189.186667pt;}
.y12_c00190{bottom:213.186667pt;}
.y11_c00190{bottom:237.186667pt;}
.y10_c00190{bottom:261.186667pt;}
.yf_c00190{bottom:285.186667pt;}
.ye_c00190{bottom:309.186667pt;}
.yd_c00190{bottom:333.186667pt;}
.yc_c00190{bottom:357.186667pt;}
.yb_c00190{bottom:381.186667pt;}
.ya_c00190{bottom:423.853333pt;}
.y9_c00190{bottom:447.853333pt;}
.y8_c00190{bottom:471.853333pt;}
.y7_c00190{bottom:495.853333pt;}
.y6_c00190{bottom:519.853333pt;}
.y4_c00190{bottom:555.853333pt;}
.y3_c00190{bottom:925.186667pt;}
.y2_c00190{bottom:949.186667pt;}
.y1_c00190{bottom:973.186667pt;}
.y14_c00190{bottom:1061.186667pt;}
.h8_c00190{height:24.375001pt;}
.h9_c00190{height:36.562500pt;}
.h5_c00190{height:37.007812pt;}
.h7_c00190{height:39.218750pt;}
.h3_c00190{height:45.562500pt;}
.h6_c00190{height:50.896067pt;}
.h4_c00190{height:341.333333pt;}
.h2_c00190{height:1121.333333pt;}
.h0_c00190{height:1122.520000pt;}
.h1_c00190{height:1122.666667pt;}
.w3_c00190{width:601.720000pt;}
.w2_c00190{width:793.333333pt;}
.w0_c00190{width:793.720000pt;}
.w1_c00190{width:794.000000pt;}
.x0_c00190{left:0.000000pt;}
.x2_c00190{left:131.116827pt;}
.x1_c00190{left:133.795333pt;}
.x3_c00190{left:338.236533pt;}
.x4_c00190{left:713.269067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_15a14a34a2baf417a2722f00.woff2')format("woff");}.ff1_c00191{font-family:ff1_c00191;line-height:0.934082;font-style:normal;font-weight:normal;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_1de83dadd839ec5dbe4f3fdf.woff2')format("woff");}.ff2_c00191{font-family:ff2_c00191;line-height:0.963867;font-style:normal;font-weight:normal;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_7b0c29764733422f5478d032.woff2')format("woff");}.ff3_c00191{font-family:ff3_c00191;line-height:0.756836;font-style:normal;font-weight:normal;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_965210a89a3ed032d897d3bf.woff2')format("woff");}.ff4_c00191{font-family:ff4_c00191;line-height:1.155762;font-style:normal;font-weight:normal;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_52bab6923e2da63fb0884d4c.woff2')format("woff");}.ff5_c00191{font-family:ff5_c00191;line-height:0.903320;font-style: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);}
.v2_c00191{vertical-align:-23.086200px;}
.v3_c00191{vertical-align:-15.000000px;}
.v0_c00191{vertical-align:0.000000px;}
.v1_c00191{vertical-align:23.086200px;}
.ls1_c00191{letter-spacing:-0.009600px;}
.ls0_c00191{letter-spacing:0.000000px;}
.ls2_c00191{letter-spacing:0.012000px;}
.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;}
}
.ws2_c00191{word-spacing:-15.000000px;}
.ws0_c00191{word-spacing:-13.190400px;}
.ws3_c00191{word-spacing:0.000000px;}
.ws1_c00191{word-spacing:3.999998px;}
._d_c00191{margin-left:-11.916000px;}
._a_c00191{margin-left:-10.584000px;}
._12_c00191{margin-left:-5.940000px;}
._0_c00191{margin-left:-3.945600px;}
._3_c00191{margin-left:-2.210400px;}
._5_c00191{margin-left:-1.044000px;}
._1_c00191{width:1.540800px;}
._4_c00191{width:2.844000px;}
._9_c00191{width:3.952800px;}
._2_c00191{width:5.061600px;}
._b_c00191{width:6.444000px;}
._8_c00191{width:7.502400px;}
._7_c00191{width:8.892000px;}
._f_c00191{width:10.080000px;}
._6_c00191{width:11.296800px;}
._c_c00191{width:12.693600px;}
._e_c00191{width:15.379200px;}
._14_c00191{width:21.283200px;}
._16_c00191{width:22.740000px;}
._11_c00191{width:24.012000px;}
._15_c00191{width:25.058400px;}
._10_c00191{width:26.757600px;}
._13_c00191{width:28.848000px;}
.fc1_c00191{color:rgb(0,0,153);}
.fc0_c00191{color:rgb(0,0,0);}
.fs4_c00191{font-size:40.000002px;}
.fs2_c00191{font-size:48.000000px;}
.fs1_c00191{font-size:54.000000px;}
.fs3_c00191{font-size:60.000000px;}
.fs0_c00191{font-size:72.000000px;}
.y0_c00191{bottom:0.000000px;}
.yb_c00191{bottom:12.000000px;}
.y10_c00191{bottom:67.335000px;}
.y12_c00191{bottom:131.835000px;}
.y11_c00191{bottom:155.085000px;}
.ye_c00191{bottom:215.835000px;}
.yd_c00191{bottom:242.835000px;}
.yc_c00191{bottom:269.835000px;}
.ya_c00191{bottom:314.835000px;}
.y9_c00191{bottom:857.835000px;}
.y8_c00191{bottom:884.835000px;}
.y7_c00191{bottom:911.835000px;}
.y6_c00191{bottom:938.835000px;}
.y5_c00191{bottom:965.835000px;}
.y4_c00191{bottom:1013.835000px;}
.y3_c00191{bottom:1040.835000px;}
.y2_c00191{bottom:1067.835000px;}
.y1_c00191{bottom:1094.835000px;}
.yf_c00191{bottom:1193.835000px;}
.h9_c00191{height:27.421876px;}
.ha_c00191{height:41.132812px;}
.h5_c00191{height:41.633789px;}
.h8_c00191{height:44.208984px;}
.h3_c00191{height:51.257812px;}
.h7_c00191{height:56.074219px;}
.h6_c00191{height:57.258075px;}
.h4_c00191{height:511.500000px;}
.h2_c00191{height:1261.500000px;}
.h0_c00191{height:1262.835000px;}
.h1_c00191{height:1263.000000px;}
.w3_c00191{width:676.935000px;}
.w2_c00191{width:892.500000px;}
.w0_c00191{width:892.935000px;}
.w1_c00191{width:893.250000px;}
.x0_c00191{left:0.000000px;}
.x1_c00191{left:65.480310px;}
.x2_c00191{left:154.899150px;}
@media print{
.v2_c00191{vertical-align:-20.521067pt;}
.v3_c00191{vertical-align:-13.333333pt;}
.v0_c00191{vertical-align:0.000000pt;}
.v1_c00191{vertical-align:20.521067pt;}
.ls1_c00191{letter-spacing:-0.008533pt;}
.ls0_c00191{letter-spacing:0.000000pt;}
.ls2_c00191{letter-spacing:0.010667pt;}
.ws2_c00191{word-spacing:-13.333333pt;}
.ws0_c00191{word-spacing:-11.724800pt;}
.ws3_c00191{word-spacing:0.000000pt;}
.ws1_c00191{word-spacing:3.555553pt;}
._d_c00191{margin-left:-10.592000pt;}
._a_c00191{margin-left:-9.408000pt;}
._12_c00191{margin-left:-5.280000pt;}
._0_c00191{margin-left:-3.507200pt;}
._3_c00191{margin-left:-1.964800pt;}
._5_c00191{margin-left:-0.928000pt;}
._1_c00191{width:1.369600pt;}
._4_c00191{width:2.528000pt;}
._9_c00191{width:3.513600pt;}
._2_c00191{width:4.499200pt;}
._b_c00191{width:5.728000pt;}
._8_c00191{width:6.668800pt;}
._7_c00191{width:7.904000pt;}
._f_c00191{width:8.960000pt;}
._6_c00191{width:10.041600pt;}
._c_c00191{width:11.283200pt;}
._e_c00191{width:13.670400pt;}
._14_c00191{width:18.918400pt;}
._16_c00191{width:20.213333pt;}
._11_c00191{width:21.344000pt;}
._15_c00191{width:22.274133pt;}
._10_c00191{width:23.784533pt;}
._13_c00191{width:25.642667pt;}
.fs4_c00191{font-size:35.555557pt;}
.fs2_c00191{font-size:42.666667pt;}
.fs1_c00191{font-size:48.000000pt;}
.fs3_c00191{font-size:53.333333pt;}
.fs0_c00191{font-size:64.000000pt;}
.y0_c00191{bottom:0.000000pt;}
.yb_c00191{bottom:10.666667pt;}
.y10_c00191{bottom:59.853333pt;}
.y12_c00191{bottom:117.186667pt;}
.y11_c00191{bottom:137.853333pt;}
.ye_c00191{bottom:191.853333pt;}
.yd_c00191{bottom:215.853333pt;}
.yc_c00191{bottom:239.853333pt;}
.ya_c00191{bottom:279.853333pt;}
.y9_c00191{bottom:762.520000pt;}
.y8_c00191{bottom:786.520000pt;}
.y7_c00191{bottom:810.520000pt;}
.y6_c00191{bottom:834.520000pt;}
.y5_c00191{bottom:858.520000pt;}
.y4_c00191{bottom:901.186667pt;}
.y3_c00191{bottom:925.186667pt;}
.y2_c00191{bottom:949.186667pt;}
.y1_c00191{bottom:973.186667pt;}
.yf_c00191{bottom:1061.186667pt;}
.h9_c00191{height:24.375001pt;}
.ha_c00191{height:36.562500pt;}
.h5_c00191{height:37.007812pt;}
.h8_c00191{height:39.296875pt;}
.h3_c00191{height:45.562500pt;}
.h7_c00191{height:49.843750pt;}
.h6_c00191{height:50.896067pt;}
.h4_c00191{height:454.666667pt;}
.h2_c00191{height:1121.333333pt;}
.h0_c00191{height:1122.520000pt;}
.h1_c00191{height:1122.666667pt;}
.w3_c00191{width:601.720000pt;}
.w2_c00191{width:793.333333pt;}
.w0_c00191{width:793.720000pt;}
.w1_c00191{width:794.000000pt;}
.x0_c00191{left:0.000000pt;}
.x1_c00191{left:58.204720pt;}
.x2_c00191{left:137.688133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_846dbaa37ff656e4bfb70232.woff2')format("woff");}.ff1_c00192{font-family:ff1_c00192;line-height:0.934082;font-style:normal;font-weight:normal;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_5ad5977dd6babe88c7927194.woff2')format("woff");}.ff2_c00192{font-family:ff2_c00192;line-height:0.956543;font-style:normal;font-weight:normal;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_2de50bab9f898fc779ded8a8.woff2')format("woff");}.ff3_c00192{font-family:ff3_c00192;line-height:0.903320;font-style: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);}
.v2_c00192{vertical-align:-23.086200px;}
.v3_c00192{vertical-align:-15.000000px;}
.v0_c00192{vertical-align:0.000000px;}
.v1_c00192{vertical-align:23.086200px;}
.ls2_c00192{letter-spacing:-0.009600px;}
.ls3_c00192{letter-spacing:-0.007200px;}
.ls1_c00192{letter-spacing:0.000000px;}
.ls0_c00192{letter-spacing:0.012000px;}
.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;}
}
.ws2_c00192{word-spacing:-15.000000px;}
.ws0_c00192{word-spacing:-13.190400px;}
.ws3_c00192{word-spacing:0.000000px;}
.ws1_c00192{word-spacing:3.999998px;}
._0_c00192{margin-left:-10.584000px;}
._12_c00192{margin-left:-7.668000px;}
._13_c00192{margin-left:-6.307200px;}
._c_c00192{margin-left:-4.060800px;}
._11_c00192{margin-left:-2.908800px;}
._4_c00192{margin-left:-1.850400px;}
._1_c00192{width:1.245600px;}
._6_c00192{width:3.038400px;}
._8_c00192{width:4.802400px;}
._10_c00192{width:6.451200px;}
._9_c00192{width:8.294400px;}
._7_c00192{width:10.029600px;}
._2_c00192{width:11.844000px;}
._3_c00192{width:13.068000px;}
._5_c00192{width:14.889600px;}
._b_c00192{width:16.610400px;}
._a_c00192{width:18.432000px;}
._e_c00192{width:21.434400px;}
._f_c00192{width:23.299200px;}
._d_c00192{width:24.847200px;}
._17_c00192{width:26.107200px;}
._14_c00192{width:28.029600px;}
._16_c00192{width:29.923200px;}
._15_c00192{width:32.119200px;}
.fc1_c00192{color:rgb(0,0,153);}
.fc0_c00192{color:rgb(0,0,0);}
.fs3_c00192{font-size:40.000002px;}
.fs1_c00192{font-size:48.000000px;}
.fs2_c00192{font-size:60.000000px;}
.fs0_c00192{font-size:72.000000px;}
.y0_c00192{bottom:0.000000px;}
.y1f_c00192{bottom:67.335000px;}
.y21_c00192{bottom:131.835000px;}
.y20_c00192{bottom:155.085000px;}
.y1d_c00192{bottom:254.835000px;}
.y1c_c00192{bottom:281.835000px;}
.y1b_c00192{bottom:308.835000px;}
.y1a_c00192{bottom:335.835000px;}
.y19_c00192{bottom:383.835000px;}
.y18_c00192{bottom:410.835000px;}
.y17_c00192{bottom:437.835000px;}
.y16_c00192{bottom:464.835000px;}
.y15_c00192{bottom:491.835000px;}
.y14_c00192{bottom:518.835000px;}
.y13_c00192{bottom:545.835000px;}
.y12_c00192{bottom:572.835000px;}
.y11_c00192{bottom:599.835000px;}
.y10_c00192{bottom:647.835000px;}
.yf_c00192{bottom:674.835000px;}
.ye_c00192{bottom:701.835000px;}
.yd_c00192{bottom:728.835000px;}
.yc_c00192{bottom:755.835000px;}
.yb_c00192{bottom:782.835000px;}
.ya_c00192{bottom:809.835000px;}
.y9_c00192{bottom:857.835000px;}
.y8_c00192{bottom:884.835000px;}
.y7_c00192{bottom:911.835000px;}
.y6_c00192{bottom:938.835000px;}
.y5_c00192{bottom:965.835000px;}
.y4_c00192{bottom:1013.835000px;}
.y3_c00192{bottom:1040.835000px;}
.y2_c00192{bottom:1067.835000px;}
.y1_c00192{bottom:1094.835000px;}
.y1e_c00192{bottom:1193.835000px;}
.h6_c00192{height:27.421876px;}
.h7_c00192{height:41.132812px;}
.h5_c00192{height:44.121094px;}
.h3_c00192{height:51.257812px;}
.h4_c00192{height:57.258075px;}
.h2_c00192{height:1261.500000px;}
.h0_c00192{height:1262.835000px;}
.h1_c00192{height:1263.000000px;}
.w2_c00192{width:892.500000px;}
.w0_c00192{width:892.935000px;}
.w1_c00192{width:893.250000px;}
.x0_c00192{left:0.000000px;}
.x1_c00192{left:150.519750px;}
.x2_c00192{left:380.516100px;}
.x3_c00192{left:802.427700px;}
@media print{
.v2_c00192{vertical-align:-20.521067pt;}
.v3_c00192{vertical-align:-13.333333pt;}
.v0_c00192{vertical-align:0.000000pt;}
.v1_c00192{vertical-align:20.521067pt;}
.ls2_c00192{letter-spacing:-0.008533pt;}
.ls3_c00192{letter-spacing:-0.006400pt;}
.ls1_c00192{letter-spacing:0.000000pt;}
.ls0_c00192{letter-spacing:0.010667pt;}
.ws2_c00192{word-spacing:-13.333333pt;}
.ws0_c00192{word-spacing:-11.724800pt;}
.ws3_c00192{word-spacing:0.000000pt;}
.ws1_c00192{word-spacing:3.555553pt;}
._0_c00192{margin-left:-9.408000pt;}
._12_c00192{margin-left:-6.816000pt;}
._13_c00192{margin-left:-5.606400pt;}
._c_c00192{margin-left:-3.609600pt;}
._11_c00192{margin-left:-2.585600pt;}
._4_c00192{margin-left:-1.644800pt;}
._1_c00192{width:1.107200pt;}
._6_c00192{width:2.700800pt;}
._8_c00192{width:4.268800pt;}
._10_c00192{width:5.734400pt;}
._9_c00192{width:7.372800pt;}
._7_c00192{width:8.915200pt;}
._2_c00192{width:10.528000pt;}
._3_c00192{width:11.616000pt;}
._5_c00192{width:13.235200pt;}
._b_c00192{width:14.764800pt;}
._a_c00192{width:16.384000pt;}
._e_c00192{width:19.052800pt;}
._f_c00192{width:20.710400pt;}
._d_c00192{width:22.086400pt;}
._17_c00192{width:23.206400pt;}
._14_c00192{width:24.915200pt;}
._16_c00192{width:26.598400pt;}
._15_c00192{width:28.550400pt;}
.fs3_c00192{font-size:35.555557pt;}
.fs1_c00192{font-size:42.666667pt;}
.fs2_c00192{font-size:53.333333pt;}
.fs0_c00192{font-size:64.000000pt;}
.y0_c00192{bottom:0.000000pt;}
.y1f_c00192{bottom:59.853333pt;}
.y21_c00192{bottom:117.186667pt;}
.y20_c00192{bottom:137.853333pt;}
.y1d_c00192{bottom:226.520000pt;}
.y1c_c00192{bottom:250.520000pt;}
.y1b_c00192{bottom:274.520000pt;}
.y1a_c00192{bottom:298.520000pt;}
.y19_c00192{bottom:341.186667pt;}
.y18_c00192{bottom:365.186667pt;}
.y17_c00192{bottom:389.186667pt;}
.y16_c00192{bottom:413.186667pt;}
.y15_c00192{bottom:437.186667pt;}
.y14_c00192{bottom:461.186667pt;}
.y13_c00192{bottom:485.186667pt;}
.y12_c00192{bottom:509.186667pt;}
.y11_c00192{bottom:533.186667pt;}
.y10_c00192{bottom:575.853333pt;}
.yf_c00192{bottom:599.853333pt;}
.ye_c00192{bottom:623.853333pt;}
.yd_c00192{bottom:647.853333pt;}
.yc_c00192{bottom:671.853333pt;}
.yb_c00192{bottom:695.853333pt;}
.ya_c00192{bottom:719.853333pt;}
.y9_c00192{bottom:762.520000pt;}
.y8_c00192{bottom:786.520000pt;}
.y7_c00192{bottom:810.520000pt;}
.y6_c00192{bottom:834.520000pt;}
.y5_c00192{bottom:858.520000pt;}
.y4_c00192{bottom:901.186667pt;}
.y3_c00192{bottom:925.186667pt;}
.y2_c00192{bottom:949.186667pt;}
.y1_c00192{bottom:973.186667pt;}
.y1e_c00192{bottom:1061.186667pt;}
.h6_c00192{height:24.375001pt;}
.h7_c00192{height:36.562500pt;}
.h5_c00192{height:39.218750pt;}
.h3_c00192{height:45.562500pt;}
.h4_c00192{height:50.896067pt;}
.h2_c00192{height:1121.333333pt;}
.h0_c00192{height:1122.520000pt;}
.h1_c00192{height:1122.666667pt;}
.w2_c00192{width:793.333333pt;}
.w0_c00192{width:793.720000pt;}
.w1_c00192{width:794.000000pt;}
.x0_c00192{left:0.000000pt;}
.x1_c00192{left:133.795333pt;}
.x2_c00192{left:338.236533pt;}
.x3_c00192{left:713.269067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ec61eea55314a3371a5c716e.woff2')format("woff");}.ff1_c00193{font-family:ff1_c00193;line-height:0.975586;font-style:normal;font-weight:normal;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_0d592cc479f8a0cc744875df.woff2')format("woff");}.ff2_c00193{font-family:ff2_c00193;line-height:1.163086;font-style:normal;font-weight:normal;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_5c1aa067a694d3b292e3fb03.woff2')format("woff");}.ff3_c00193{font-family:ff3_c00193;line-height:0.756348;font-style:normal;font-weight:normal;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_ea55d74799404f1a3aae0bb0.woff2')format("woff");}.ff4_c00193{font-family:ff4_c00193;line-height:1.155762;font-style:normal;font-weight:normal;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_a92497f4ffdda3a3d3bd7ecd.woff2')format("woff");}.ff5_c00193{font-family:ff5_c00193;line-height:0.903320;font-style: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);}
.v2_c00193{vertical-align:-23.086200px;}
.v3_c00193{vertical-align:-15.000000px;}
.v0_c00193{vertical-align:0.000000px;}
.v1_c00193{vertical-align:23.086200px;}
.ls1_c00193{letter-spacing:-0.009600px;}
.ls2_c00193{letter-spacing:-0.007200px;}
.ls0_c00193{letter-spacing:0.000000px;}
.ls3_c00193{letter-spacing:0.012000px;}
.sc__c00193{text-shadow:none;}
.sc0_c00193{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00193{-webkit-text-stroke:0px transparent;}
.sc0_c00193{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00193{word-spacing:-19.800000px;}
.ws3_c00193{word-spacing:-15.000000px;}
.ws1_c00193{word-spacing:-13.190400px;}
.ws4_c00193{word-spacing:0.000000px;}
.ws2_c00193{word-spacing:3.999998px;}
._e_c00193{margin-left:-10.584000px;}
._7_c00193{margin-left:-6.897600px;}
._4_c00193{margin-left:-4.104000px;}
._1_c00193{margin-left:-2.930400px;}
._6_c00193{margin-left:-1.368000px;}
._8_c00193{width:1.224000px;}
._0_c00193{width:2.325600px;}
._3_c00193{width:4.291200px;}
._a_c00193{width:5.724000px;}
._2_c00193{width:6.732000px;}
._5_c00193{width:8.337600px;}
._9_c00193{width:9.662400px;}
._11_c00193{width:10.828800px;}
._b_c00193{width:11.980800px;}
._f_c00193{width:17.560800px;}
._c_c00193{width:18.633600px;}
._14_c00193{width:21.600000px;}
._10_c00193{width:22.795200px;}
._d_c00193{width:24.055200px;}
._12_c00193{width:26.160000px;}
._13_c00193{width:27.940800px;}
.fc1_c00193{color:rgb(0,0,153);}
.fc0_c00193{color:rgb(0,0,0);}
.fs4_c00193{font-size:40.000002px;}
.fs2_c00193{font-size:48.000000px;}
.fs0_c00193{font-size:54.000000px;}
.fs3_c00193{font-size:60.000000px;}
.fs1_c00193{font-size:72.000000px;}
.y0_c00193{bottom:0.000000px;}
.y2_c00193{bottom:12.000000px;}
.yf_c00193{bottom:67.335000px;}
.y11_c00193{bottom:131.835000px;}
.y10_c00193{bottom:155.085000px;}
.yd_c00193{bottom:218.835000px;}
.yc_c00193{bottom:245.835000px;}
.yb_c00193{bottom:272.835000px;}
.ya_c00193{bottom:299.835000px;}
.y9_c00193{bottom:326.835000px;}
.y8_c00193{bottom:374.835000px;}
.y7_c00193{bottom:401.835000px;}
.y6_c00193{bottom:428.835000px;}
.y5_c00193{bottom:455.835000px;}
.y4_c00193{bottom:482.835000px;}
.y3_c00193{bottom:509.835000px;}
.y1_c00193{bottom:550.335000px;}
.ye_c00193{bottom:1193.835000px;}
.h9_c00193{height:27.421876px;}
.ha_c00193{height:41.132812px;}
.h3_c00193{height:41.633789px;}
.h8_c00193{height:44.208984px;}
.h7_c00193{height:56.074219px;}
.h5_c00193{height:67.746094px;}
.h6_c00193{height:68.250262px;}
.h2_c00193{height:562.500000px;}
.h4_c00193{height:1261.500000px;}
.h0_c00193{height:1262.835000px;}
.h1_c00193{height:1263.000000px;}
.w2_c00193{width:676.935000px;}
.w3_c00193{width:892.500000px;}
.w0_c00193{width:892.935000px;}
.w1_c00193{width:893.250000px;}
.x0_c00193{left:0.000000px;}
.x1_c00193{left:66.000000px;}
.x2_c00193{left:135.660960px;}
@media print{
.v2_c00193{vertical-align:-20.521067pt;}
.v3_c00193{vertical-align:-13.333333pt;}
.v0_c00193{vertical-align:0.000000pt;}
.v1_c00193{vertical-align:20.521067pt;}
.ls1_c00193{letter-spacing:-0.008533pt;}
.ls2_c00193{letter-spacing:-0.006400pt;}
.ls0_c00193{letter-spacing:0.000000pt;}
.ls3_c00193{letter-spacing:0.010667pt;}
.ws0_c00193{word-spacing:-17.600000pt;}
.ws3_c00193{word-spacing:-13.333333pt;}
.ws1_c00193{word-spacing:-11.724800pt;}
.ws4_c00193{word-spacing:0.000000pt;}
.ws2_c00193{word-spacing:3.555553pt;}
._e_c00193{margin-left:-9.408000pt;}
._7_c00193{margin-left:-6.131200pt;}
._4_c00193{margin-left:-3.648000pt;}
._1_c00193{margin-left:-2.604800pt;}
._6_c00193{margin-left:-1.216000pt;}
._8_c00193{width:1.088000pt;}
._0_c00193{width:2.067200pt;}
._3_c00193{width:3.814400pt;}
._a_c00193{width:5.088000pt;}
._2_c00193{width:5.984000pt;}
._5_c00193{width:7.411200pt;}
._9_c00193{width:8.588800pt;}
._11_c00193{width:9.625600pt;}
._b_c00193{width:10.649600pt;}
._f_c00193{width:15.609600pt;}
._c_c00193{width:16.563200pt;}
._14_c00193{width:19.200000pt;}
._10_c00193{width:20.262400pt;}
._d_c00193{width:21.382400pt;}
._12_c00193{width:23.253333pt;}
._13_c00193{width:24.836267pt;}
.fs4_c00193{font-size:35.555557pt;}
.fs2_c00193{font-size:42.666667pt;}
.fs0_c00193{font-size:48.000000pt;}
.fs3_c00193{font-size:53.333333pt;}
.fs1_c00193{font-size:64.000000pt;}
.y0_c00193{bottom:0.000000pt;}
.y2_c00193{bottom:10.666667pt;}
.yf_c00193{bottom:59.853333pt;}
.y11_c00193{bottom:117.186667pt;}
.y10_c00193{bottom:137.853333pt;}
.yd_c00193{bottom:194.520000pt;}
.yc_c00193{bottom:218.520000pt;}
.yb_c00193{bottom:242.520000pt;}
.ya_c00193{bottom:266.520000pt;}
.y9_c00193{bottom:290.520000pt;}
.y8_c00193{bottom:333.186667pt;}
.y7_c00193{bottom:357.186667pt;}
.y6_c00193{bottom:381.186667pt;}
.y5_c00193{bottom:405.186667pt;}
.y4_c00193{bottom:429.186667pt;}
.y3_c00193{bottom:453.186667pt;}
.y1_c00193{bottom:489.186667pt;}
.ye_c00193{bottom:1061.186667pt;}
.h9_c00193{height:24.375001pt;}
.ha_c00193{height:36.562500pt;}
.h3_c00193{height:37.007812pt;}
.h8_c00193{height:39.296875pt;}
.h7_c00193{height:49.843750pt;}
.h5_c00193{height:60.218750pt;}
.h6_c00193{height:60.666900pt;}
.h2_c00193{height:500.000000pt;}
.h4_c00193{height:1121.333333pt;}
.h0_c00193{height:1122.520000pt;}
.h1_c00193{height:1122.666667pt;}
.w2_c00193{width:601.720000pt;}
.w3_c00193{width:793.333333pt;}
.w0_c00193{width:793.720000pt;}
.w1_c00193{width:794.000000pt;}
.x0_c00193{left:0.000000pt;}
.x1_c00193{left:58.666667pt;}
.x2_c00193{left:120.587520pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7aa8b4d9f112bc0df2402ac5.woff2')format("woff");}.ff1_c00194{font-family:ff1_c00194;line-height:0.933105;font-style:normal;font-weight:normal;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_a629229da6412b16a5c3a6b8.woff2')format("woff");}.ff2_c00194{font-family:ff2_c00194;line-height:0.963867;font-style:normal;font-weight:normal;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_9cd0e2b68b3e334cd0edf264.woff2')format("woff");}.ff3_c00194{font-family:ff3_c00194;line-height:0.956543;font-style:normal;font-weight:normal;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_a039440350ba34c0eab77342.woff2')format("woff");}.ff4_c00194{font-family:ff4_c00194;line-height:0.903320;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00194{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00194{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00194{vertical-align:-15.000000px;}
.v0_c00194{vertical-align:0.000000px;}
.v1_c00194{vertical-align:23.086200px;}
.ls2_c00194{letter-spacing:-0.009600px;}
.ls1_c00194{letter-spacing:0.000000px;}
.ls0_c00194{letter-spacing:0.012000px;}
.sc__c00194{text-shadow:none;}
.sc0_c00194{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00194{-webkit-text-stroke:0px transparent;}
.sc0_c00194{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00194{word-spacing:-19.800000px;}
.ws3_c00194{word-spacing:-15.000000px;}
.ws1_c00194{word-spacing:-13.190400px;}
.ws4_c00194{word-spacing:0.000000px;}
.ws2_c00194{word-spacing:3.999998px;}
._10_c00194{margin-left:-7.790400px;}
._16_c00194{margin-left:-5.024400px;}
._a_c00194{margin-left:-3.751200px;}
._3_c00194{margin-left:-2.232000px;}
._e_c00194{margin-left:-1.022400px;}
._6_c00194{width:1.022400px;}
._0_c00194{width:2.592000px;}
._1_c00194{width:3.592800px;}
._2_c00194{width:5.659200px;}
._f_c00194{width:7.336800px;}
._4_c00194{width:8.618400px;}
._11_c00194{width:10.281600px;}
._14_c00194{width:11.462400px;}
._15_c00194{width:12.672000px;}
._13_c00194{width:13.852800px;}
._12_c00194{width:15.400800px;}
._7_c00194{width:16.430400px;}
._9_c00194{width:17.863200px;}
._8_c00194{width:21.081600px;}
._c_c00194{width:22.658400px;}
._5_c00194{width:23.695200px;}
._b_c00194{width:25.156800px;}
._d_c00194{width:27.180000px;}
.fc1_c00194{color:rgb(0,0,153);}
.fc0_c00194{color:rgb(0,0,0);}
.fs4_c00194{font-size:40.000002px;}
.fs1_c00194{font-size:48.000000px;}
.fs2_c00194{font-size:54.000000px;}
.fs3_c00194{font-size:60.000000px;}
.fs0_c00194{font-size:72.000000px;}
.y0_c00194{bottom:0.000000px;}
.y13_c00194{bottom:12.000000px;}
.y15_c00194{bottom:67.335000px;}
.y17_c00194{bottom:131.835000px;}
.y16_c00194{bottom:155.085000px;}
.y12_c00194{bottom:206.835000px;}
.y11_c00194{bottom:620.835000px;}
.y10_c00194{bottom:647.835000px;}
.yf_c00194{bottom:674.835000px;}
.ye_c00194{bottom:701.835000px;}
.yd_c00194{bottom:728.835000px;}
.yc_c00194{bottom:755.835000px;}
.yb_c00194{bottom:803.835000px;}
.ya_c00194{bottom:830.835000px;}
.y9_c00194{bottom:857.835000px;}
.y8_c00194{bottom:884.835000px;}
.y7_c00194{bottom:911.835000px;}
.y6_c00194{bottom:938.835000px;}
.y5_c00194{bottom:965.835000px;}
.y4_c00194{bottom:1013.835000px;}
.y3_c00194{bottom:1040.835000px;}
.y2_c00194{bottom:1067.835000px;}
.y1_c00194{bottom:1094.835000px;}
.y14_c00194{bottom:1193.835000px;}
.h8_c00194{height:27.421876px;}
.h9_c00194{height:41.132812px;}
.h6_c00194{height:41.633789px;}
.h7_c00194{height:44.121094px;}
.h3_c00194{height:51.187500px;}
.h4_c00194{height:57.211200px;}
.h5_c00194{height:382.500000px;}
.h2_c00194{height:1261.500000px;}
.h0_c00194{height:1262.835000px;}
.h1_c00194{height:1263.000000px;}
.w3_c00194{width:676.935000px;}
.w2_c00194{width:892.500000px;}
.w0_c00194{width:892.935000px;}
.w1_c00194{width:893.250000px;}
.x0_c00194{left:0.000000px;}
.x2_c00194{left:148.485300px;}
.x1_c00194{left:150.519750px;}
.x3_c00194{left:380.516100px;}
.x4_c00194{left:802.427700px;}
@media print{
.v2_c00194{vertical-align:-13.333333pt;}
.v0_c00194{vertical-align:0.000000pt;}
.v1_c00194{vertical-align:20.521067pt;}
.ls2_c00194{letter-spacing:-0.008533pt;}
.ls1_c00194{letter-spacing:0.000000pt;}
.ls0_c00194{letter-spacing:0.010667pt;}
.ws0_c00194{word-spacing:-17.600000pt;}
.ws3_c00194{word-spacing:-13.333333pt;}
.ws1_c00194{word-spacing:-11.724800pt;}
.ws4_c00194{word-spacing:0.000000pt;}
.ws2_c00194{word-spacing:3.555553pt;}
._10_c00194{margin-left:-6.924800pt;}
._16_c00194{margin-left:-4.466133pt;}
._a_c00194{margin-left:-3.334400pt;}
._3_c00194{margin-left:-1.984000pt;}
._e_c00194{margin-left:-0.908800pt;}
._6_c00194{width:0.908800pt;}
._0_c00194{width:2.304000pt;}
._1_c00194{width:3.193600pt;}
._2_c00194{width:5.030400pt;}
._f_c00194{width:6.521600pt;}
._4_c00194{width:7.660800pt;}
._11_c00194{width:9.139200pt;}
._14_c00194{width:10.188800pt;}
._15_c00194{width:11.264000pt;}
._13_c00194{width:12.313600pt;}
._12_c00194{width:13.689600pt;}
._7_c00194{width:14.604800pt;}
._9_c00194{width:15.878400pt;}
._8_c00194{width:18.739200pt;}
._c_c00194{width:20.140800pt;}
._5_c00194{width:21.062400pt;}
._b_c00194{width:22.361600pt;}
._d_c00194{width:24.160000pt;}
.fs4_c00194{font-size:35.555557pt;}
.fs1_c00194{font-size:42.666667pt;}
.fs2_c00194{font-size:48.000000pt;}
.fs3_c00194{font-size:53.333333pt;}
.fs0_c00194{font-size:64.000000pt;}
.y0_c00194{bottom:0.000000pt;}
.y13_c00194{bottom:10.666667pt;}
.y15_c00194{bottom:59.853333pt;}
.y17_c00194{bottom:117.186667pt;}
.y16_c00194{bottom:137.853333pt;}
.y12_c00194{bottom:183.853333pt;}
.y11_c00194{bottom:551.853333pt;}
.y10_c00194{bottom:575.853333pt;}
.yf_c00194{bottom:599.853333pt;}
.ye_c00194{bottom:623.853333pt;}
.yd_c00194{bottom:647.853333pt;}
.yc_c00194{bottom:671.853333pt;}
.yb_c00194{bottom:714.520000pt;}
.ya_c00194{bottom:738.520000pt;}
.y9_c00194{bottom:762.520000pt;}
.y8_c00194{bottom:786.520000pt;}
.y7_c00194{bottom:810.520000pt;}
.y6_c00194{bottom:834.520000pt;}
.y5_c00194{bottom:858.520000pt;}
.y4_c00194{bottom:901.186667pt;}
.y3_c00194{bottom:925.186667pt;}
.y2_c00194{bottom:949.186667pt;}
.y1_c00194{bottom:973.186667pt;}
.y14_c00194{bottom:1061.186667pt;}
.h8_c00194{height:24.375001pt;}
.h9_c00194{height:36.562500pt;}
.h6_c00194{height:37.007812pt;}
.h7_c00194{height:39.218750pt;}
.h3_c00194{height:45.500000pt;}
.h4_c00194{height:50.854400pt;}
.h5_c00194{height:340.000000pt;}
.h2_c00194{height:1121.333333pt;}
.h0_c00194{height:1122.520000pt;}
.h1_c00194{height:1122.666667pt;}
.w3_c00194{width:601.720000pt;}
.w2_c00194{width:793.333333pt;}
.w0_c00194{width:793.720000pt;}
.w1_c00194{width:794.000000pt;}
.x0_c00194{left:0.000000pt;}
.x2_c00194{left:131.986933pt;}
.x1_c00194{left:133.795333pt;}
.x3_c00194{left:338.236533pt;}
.x4_c00194{left:713.269067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d56a42d60153be780ae493cd.woff2')format("woff");}.ff1_c00195{font-family:ff1_c00195;line-height:0.934082;font-style:normal;font-weight:normal;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_f57e4032629214339697d92c.woff2')format("woff");}.ff2_c00195{font-family:ff2_c00195;line-height:0.756348;font-style:normal;font-weight:normal;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_1197db18b11ada308e2f66db.woff2')format("woff");}.ff3_c00195{font-family:ff3_c00195;line-height:1.155762;font-style:normal;font-weight:normal;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_988273f2300c6c48758a320d.woff2')format("woff");}.ff4_c00195{font-family:ff4_c00195;line-height:0.903320;font-style: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);}
.v2_c00195{vertical-align:-23.086200px;}
.v3_c00195{vertical-align:-15.000000px;}
.v0_c00195{vertical-align:0.000000px;}
.v1_c00195{vertical-align:23.086200px;}
.ls2_c00195{letter-spacing:-0.009600px;}
.ls1_c00195{letter-spacing:0.000000px;}
.ls0_c00195{letter-spacing:0.007200px;}
.ls3_c00195{letter-spacing:0.012000px;}
.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:-19.807200px;}
.ws1_c00195{word-spacing:-19.800000px;}
.ws4_c00195{word-spacing:-15.000000px;}
.ws0_c00195{word-spacing:-13.190400px;}
.ws5_c00195{word-spacing:0.000000px;}
.ws3_c00195{word-spacing:3.999998px;}
._10_c00195{margin-left:-9.374400px;}
._5_c00195{margin-left:-7.250400px;}
._7_c00195{margin-left:-4.687200px;}
._1_c00195{margin-left:-3.160800px;}
._3_c00195{margin-left:-1.677600px;}
._2_c00195{width:1.908000px;}
._4_c00195{width:3.268800px;}
._0_c00195{width:4.996800px;}
._c_c00195{width:6.444000px;}
._6_c00195{width:7.473600px;}
._8_c00195{width:8.488800px;}
._9_c00195{width:10.353600px;}
._a_c00195{width:12.038400px;}
._e_c00195{width:13.788000px;}
._b_c00195{width:15.019200px;}
._d_c00195{width:16.675200px;}
._f_c00195{width:17.755200px;}
._13_c00195{width:19.137600px;}
._11_c00195{width:21.348000px;}
._14_c00195{width:22.894800px;}
._12_c00195{width:25.105200px;}
._15_c00195{width:27.225600px;}
._16_c00195{width:28.249200px;}
.fc1_c00195{color:rgb(0,0,153);}
.fc0_c00195{color:rgb(0,0,0);}
.fs3_c00195{font-size:40.000002px;}
.fs1_c00195{font-size:48.000000px;}
.fs2_c00195{font-size:60.000000px;}
.fs0_c00195{font-size:72.000000px;}
.y0_c00195{bottom:0.000000px;}
.y1d_c00195{bottom:67.335000px;}
.y21_c00195{bottom:131.835000px;}
.y20_c00195{bottom:155.085000px;}
.y1f_c00195{bottom:196.335000px;}
.y1e_c00195{bottom:219.585000px;}
.y1b_c00195{bottom:266.835000px;}
.y1a_c00195{bottom:293.835000px;}
.y19_c00195{bottom:320.835000px;}
.y18_c00195{bottom:347.835000px;}
.y17_c00195{bottom:395.835000px;}
.y16_c00195{bottom:422.835000px;}
.y15_c00195{bottom:449.835000px;}
.y14_c00195{bottom:497.835000px;}
.y13_c00195{bottom:524.835000px;}
.y12_c00195{bottom:551.835000px;}
.y11_c00195{bottom:578.835000px;}
.y10_c00195{bottom:626.835000px;}
.yf_c00195{bottom:653.835000px;}
.ye_c00195{bottom:701.835000px;}
.yd_c00195{bottom:728.835000px;}
.yc_c00195{bottom:755.835000px;}
.yb_c00195{bottom:782.835000px;}
.ya_c00195{bottom:809.835000px;}
.y9_c00195{bottom:836.835000px;}
.y8_c00195{bottom:884.835000px;}
.y7_c00195{bottom:911.835000px;}
.y6_c00195{bottom:938.835000px;}
.y5_c00195{bottom:965.835000px;}
.y4_c00195{bottom:992.835000px;}
.y3_c00195{bottom:1040.835000px;}
.y2_c00195{bottom:1067.835000px;}
.y1_c00195{bottom:1094.835000px;}
.y1c_c00195{bottom:1193.835000px;}
.h7_c00195{height:27.421876px;}
.h8_c00195{height:41.132812px;}
.h6_c00195{height:44.208984px;}
.h3_c00195{height:51.257812px;}
.h5_c00195{height:56.074219px;}
.h4_c00195{height:57.258075px;}
.h2_c00195{height:1261.500000px;}
.h0_c00195{height:1262.835000px;}
.h1_c00195{height:1263.000000px;}
.w2_c00195{width:892.500000px;}
.w0_c00195{width:892.935000px;}
.w1_c00195{width:893.250000px;}
.x0_c00195{left:0.000000px;}
.x1_c00195{left:65.480310px;}
@media print{
.v2_c00195{vertical-align:-20.521067pt;}
.v3_c00195{vertical-align:-13.333333pt;}
.v0_c00195{vertical-align:0.000000pt;}
.v1_c00195{vertical-align:20.521067pt;}
.ls2_c00195{letter-spacing:-0.008533pt;}
.ls1_c00195{letter-spacing:0.000000pt;}
.ls0_c00195{letter-spacing:0.006400pt;}
.ls3_c00195{letter-spacing:0.010667pt;}
.ws2_c00195{word-spacing:-17.606400pt;}
.ws1_c00195{word-spacing:-17.600000pt;}
.ws4_c00195{word-spacing:-13.333333pt;}
.ws0_c00195{word-spacing:-11.724800pt;}
.ws5_c00195{word-spacing:0.000000pt;}
.ws3_c00195{word-spacing:3.555553pt;}
._10_c00195{margin-left:-8.332800pt;}
._5_c00195{margin-left:-6.444800pt;}
._7_c00195{margin-left:-4.166400pt;}
._1_c00195{margin-left:-2.809600pt;}
._3_c00195{margin-left:-1.491200pt;}
._2_c00195{width:1.696000pt;}
._4_c00195{width:2.905600pt;}
._0_c00195{width:4.441600pt;}
._c_c00195{width:5.728000pt;}
._6_c00195{width:6.643200pt;}
._8_c00195{width:7.545600pt;}
._9_c00195{width:9.203200pt;}
._a_c00195{width:10.700800pt;}
._e_c00195{width:12.256000pt;}
._b_c00195{width:13.350400pt;}
._d_c00195{width:14.822400pt;}
._f_c00195{width:15.782400pt;}
._13_c00195{width:17.011200pt;}
._11_c00195{width:18.976000pt;}
._14_c00195{width:20.350933pt;}
._12_c00195{width:22.315733pt;}
._15_c00195{width:24.200533pt;}
._16_c00195{width:25.110400pt;}
.fs3_c00195{font-size:35.555557pt;}
.fs1_c00195{font-size:42.666667pt;}
.fs2_c00195{font-size:53.333333pt;}
.fs0_c00195{font-size:64.000000pt;}
.y0_c00195{bottom:0.000000pt;}
.y1d_c00195{bottom:59.853333pt;}
.y21_c00195{bottom:117.186667pt;}
.y20_c00195{bottom:137.853333pt;}
.y1f_c00195{bottom:174.520000pt;}
.y1e_c00195{bottom:195.186667pt;}
.y1b_c00195{bottom:237.186667pt;}
.y1a_c00195{bottom:261.186667pt;}
.y19_c00195{bottom:285.186667pt;}
.y18_c00195{bottom:309.186667pt;}
.y17_c00195{bottom:351.853333pt;}
.y16_c00195{bottom:375.853333pt;}
.y15_c00195{bottom:399.853333pt;}
.y14_c00195{bottom:442.520000pt;}
.y13_c00195{bottom:466.520000pt;}
.y12_c00195{bottom:490.520000pt;}
.y11_c00195{bottom:514.520000pt;}
.y10_c00195{bottom:557.186667pt;}
.yf_c00195{bottom:581.186667pt;}
.ye_c00195{bottom:623.853333pt;}
.yd_c00195{bottom:647.853333pt;}
.yc_c00195{bottom:671.853333pt;}
.yb_c00195{bottom:695.853333pt;}
.ya_c00195{bottom:719.853333pt;}
.y9_c00195{bottom:743.853333pt;}
.y8_c00195{bottom:786.520000pt;}
.y7_c00195{bottom:810.520000pt;}
.y6_c00195{bottom:834.520000pt;}
.y5_c00195{bottom:858.520000pt;}
.y4_c00195{bottom:882.520000pt;}
.y3_c00195{bottom:925.186667pt;}
.y2_c00195{bottom:949.186667pt;}
.y1_c00195{bottom:973.186667pt;}
.y1c_c00195{bottom:1061.186667pt;}
.h7_c00195{height:24.375001pt;}
.h8_c00195{height:36.562500pt;}
.h6_c00195{height:39.296875pt;}
.h3_c00195{height:45.562500pt;}
.h5_c00195{height:49.843750pt;}
.h4_c00195{height:50.896067pt;}
.h2_c00195{height:1121.333333pt;}
.h0_c00195{height:1122.520000pt;}
.h1_c00195{height:1122.666667pt;}
.w2_c00195{width:793.333333pt;}
.w0_c00195{width:793.720000pt;}
.w1_c00195{width:794.000000pt;}
.x0_c00195{left:0.000000pt;}
.x1_c00195{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_87ae88d03a14250faa1b54c9.woff2')format("woff");}.ff1_c00196{font-family:ff1_c00196;line-height:0.934082;font-style:normal;font-weight:normal;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_dbafd8357a1aaf69daa49b7a.woff2')format("woff");}.ff2_c00196{font-family:ff2_c00196;line-height:0.975586;font-style:normal;font-weight:normal;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_59b2d276d2990d48e8a6f4f9.woff2')format("woff");}.ff3_c00196{font-family:ff3_c00196;line-height:0.925293;font-style:normal;font-weight:normal;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_fc113e3f368d799796cd7cf2.woff2')format("woff");}.ff4_c00196{font-family:ff4_c00196;line-height:0.956543;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00196{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00196{vertical-align:0.000000px;}
.ls1_c00196{letter-spacing:0.000000px;}
.ls0_c00196{letter-spacing:0.012000px;}
.sc__c00196{text-shadow:none;}
.sc0_c00196{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00196{-webkit-text-stroke:0px transparent;}
.sc0_c00196{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00196{word-spacing:-0.072000px;}
.ws1_c00196{word-spacing:0.000000px;}
._e_c00196{margin-left:-10.584000px;}
._f_c00196{margin-left:-7.372800px;}
._10_c00196{margin-left:-4.924800px;}
._3_c00196{margin-left:-3.319200px;}
._1_c00196{margin-left:-1.461600px;}
._7_c00196{width:1.044000px;}
._0_c00196{width:2.203200px;}
._5_c00196{width:3.290400px;}
._6_c00196{width:4.946400px;}
._11_c00196{width:5.954400px;}
._2_c00196{width:6.998400px;}
._4_c00196{width:8.186400px;}
._c_c00196{width:9.748800px;}
._d_c00196{width:11.491200px;}
._a_c00196{width:13.226400px;}
._9_c00196{width:14.601600px;}
._8_c00196{width:16.200000px;}
._b_c00196{width:17.280000px;}
._14_c00196{width:18.475200px;}
._13_c00196{width:20.815200px;}
._12_c00196{width:22.672800px;}
.fc0_c00196{color:rgb(0,0,0);}
.fs1_c00196{font-size:54.000000px;}
.fs2_c00196{font-size:60.000000px;}
.fs0_c00196{font-size:72.000000px;}
.y0_c00196{bottom:0.000000px;}
.y7_c00196{bottom:12.000000px;}
.y19_c00196{bottom:67.335000px;}
.y17_c00196{bottom:137.835000px;}
.y16_c00196{bottom:164.835000px;}
.y15_c00196{bottom:191.835000px;}
.y14_c00196{bottom:239.835000px;}
.y13_c00196{bottom:266.835000px;}
.y12_c00196{bottom:293.835000px;}
.y11_c00196{bottom:320.835000px;}
.y10_c00196{bottom:347.835000px;}
.yf_c00196{bottom:374.835000px;}
.ye_c00196{bottom:401.835000px;}
.yd_c00196{bottom:449.835000px;}
.yc_c00196{bottom:476.835000px;}
.yb_c00196{bottom:503.835000px;}
.ya_c00196{bottom:530.835000px;}
.y9_c00196{bottom:557.835000px;}
.y8_c00196{bottom:584.835000px;}
.y6_c00196{bottom:625.335000px;}
.y5_c00196{bottom:986.835000px;}
.y4_c00196{bottom:1013.835000px;}
.y3_c00196{bottom:1040.835000px;}
.y2_c00196{bottom:1067.835000px;}
.y1_c00196{bottom:1094.835000px;}
.y18_c00196{bottom:1193.835000px;}
.h5_c00196{height:41.633789px;}
.h6_c00196{height:44.121094px;}
.h3_c00196{height:51.257812px;}
.h4_c00196{height:330.000000px;}
.h2_c00196{height:1261.500000px;}
.h0_c00196{height:1262.835000px;}
.h1_c00196{height:1263.000000px;}
.w3_c00196{width:676.934850px;}
.w2_c00196{width:892.500000px;}
.w0_c00196{width:892.935000px;}
.w1_c00196{width:893.250000px;}
.x0_c00196{left:0.000000px;}
.x2_c00196{left:38.649465px;}
.x1_c00196{left:150.519750px;}
.x3_c00196{left:380.516100px;}
.x4_c00196{left:802.427700px;}
@media print{
.v0_c00196{vertical-align:0.000000pt;}
.ls1_c00196{letter-spacing:0.000000pt;}
.ls0_c00196{letter-spacing:0.010667pt;}
.ws0_c00196{word-spacing:-0.064000pt;}
.ws1_c00196{word-spacing:0.000000pt;}
._e_c00196{margin-left:-9.408000pt;}
._f_c00196{margin-left:-6.553600pt;}
._10_c00196{margin-left:-4.377600pt;}
._3_c00196{margin-left:-2.950400pt;}
._1_c00196{margin-left:-1.299200pt;}
._7_c00196{width:0.928000pt;}
._0_c00196{width:1.958400pt;}
._5_c00196{width:2.924800pt;}
._6_c00196{width:4.396800pt;}
._11_c00196{width:5.292800pt;}
._2_c00196{width:6.220800pt;}
._4_c00196{width:7.276800pt;}
._c_c00196{width:8.665600pt;}
._d_c00196{width:10.214400pt;}
._a_c00196{width:11.756800pt;}
._9_c00196{width:12.979200pt;}
._8_c00196{width:14.400000pt;}
._b_c00196{width:15.360000pt;}
._14_c00196{width:16.422400pt;}
._13_c00196{width:18.502400pt;}
._12_c00196{width:20.153600pt;}
.fs1_c00196{font-size:48.000000pt;}
.fs2_c00196{font-size:53.333333pt;}
.fs0_c00196{font-size:64.000000pt;}
.y0_c00196{bottom:0.000000pt;}
.y7_c00196{bottom:10.666667pt;}
.y19_c00196{bottom:59.853333pt;}
.y17_c00196{bottom:122.520000pt;}
.y16_c00196{bottom:146.520000pt;}
.y15_c00196{bottom:170.520000pt;}
.y14_c00196{bottom:213.186667pt;}
.y13_c00196{bottom:237.186667pt;}
.y12_c00196{bottom:261.186667pt;}
.y11_c00196{bottom:285.186667pt;}
.y10_c00196{bottom:309.186667pt;}
.yf_c00196{bottom:333.186667pt;}
.ye_c00196{bottom:357.186667pt;}
.yd_c00196{bottom:399.853333pt;}
.yc_c00196{bottom:423.853333pt;}
.yb_c00196{bottom:447.853333pt;}
.ya_c00196{bottom:471.853333pt;}
.y9_c00196{bottom:495.853333pt;}
.y8_c00196{bottom:519.853333pt;}
.y6_c00196{bottom:555.853333pt;}
.y5_c00196{bottom:877.186667pt;}
.y4_c00196{bottom:901.186667pt;}
.y3_c00196{bottom:925.186667pt;}
.y2_c00196{bottom:949.186667pt;}
.y1_c00196{bottom:973.186667pt;}
.y18_c00196{bottom:1061.186667pt;}
.h5_c00196{height:37.007812pt;}
.h6_c00196{height:39.218750pt;}
.h3_c00196{height:45.562500pt;}
.h4_c00196{height:293.333333pt;}
.h2_c00196{height:1121.333333pt;}
.h0_c00196{height:1122.520000pt;}
.h1_c00196{height:1122.666667pt;}
.w3_c00196{width:601.719867pt;}
.w2_c00196{width:793.333333pt;}
.w0_c00196{width:793.720000pt;}
.w1_c00196{width:794.000000pt;}
.x0_c00196{left:0.000000pt;}
.x2_c00196{left:34.355080pt;}
.x1_c00196{left:133.795333pt;}
.x3_c00196{left:338.236533pt;}
.x4_c00196{left:713.269067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_283106cda727f07dbea41e7e.woff2')format("woff");}.ff1_c00197{font-family:ff1_c00197;line-height:0.933105;font-style:normal;font-weight:normal;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_9631a60300b6fc340a5ea27a.woff2')format("woff");}.ff2_c00197{font-family:ff2_c00197;line-height:0.756348;font-style:normal;font-weight:normal;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_7132a9182fa4111bb698bd13.woff2')format("woff");}.ff3_c00197{font-family:ff3_c00197;line-height:1.155762;font-style:normal;font-weight:normal;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_7f2641e27bd7c1af574cbfb0.woff2')format("woff");}.ff4_c00197{font-family:ff4_c00197;line-height:0.904785;font-style: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);}
.v2_c00197{vertical-align:-15.000000px;}
.v0_c00197{vertical-align:0.000000px;}
.v1_c00197{vertical-align:23.086200px;}
.ls1_c00197{letter-spacing:-0.009600px;}
.ls0_c00197{letter-spacing:0.000000px;}
.ls2_c00197{letter-spacing:0.012000px;}
.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:-19.800000px;}
.ws3_c00197{word-spacing:-15.000000px;}
.ws0_c00197{word-spacing:-13.190400px;}
.ws4_c00197{word-spacing:0.000000px;}
.ws2_c00197{word-spacing:3.999998px;}
._e_c00197{margin-left:-10.432800px;}
._c_c00197{margin-left:-6.940800px;}
._10_c00197{margin-left:-5.478000px;}
._d_c00197{margin-left:-3.463200px;}
._9_c00197{margin-left:-2.354400px;}
._1_c00197{margin-left:-1.216800px;}
._5_c00197{width:1.800000px;}
._a_c00197{width:3.204000px;}
._3_c00197{width:4.392000px;}
._b_c00197{width:6.804000px;}
._7_c00197{width:7.891200px;}
._4_c00197{width:9.237600px;}
._8_c00197{width:10.461600px;}
._6_c00197{width:11.901600px;}
._0_c00197{width:13.744800px;}
._2_c00197{width:14.918400px;}
._13_c00197{width:18.720000px;}
._f_c00197{width:21.360000px;}
._12_c00197{width:23.269200px;}
._14_c00197{width:24.722760px;}
._11_c00197{width:26.076000px;}
.fc1_c00197{color:rgb(0,0,153);}
.fc0_c00197{color:rgb(0,0,0);}
.fs3_c00197{font-size:40.000002px;}
.fs1_c00197{font-size:48.000000px;}
.fs2_c00197{font-size:60.000000px;}
.fs0_c00197{font-size:72.000000px;}
.y0_c00197{bottom:0.000000px;}
.yd_c00197{bottom:67.335000px;}
.yf_c00197{bottom:131.835000px;}
.ye_c00197{bottom:155.085000px;}
.yb_c00197{bottom:782.835000px;}
.ya_c00197{bottom:809.835000px;}
.y9_c00197{bottom:836.835000px;}
.y8_c00197{bottom:863.835000px;}
.y7_c00197{bottom:890.835000px;}
.y6_c00197{bottom:938.835000px;}
.y5_c00197{bottom:965.835000px;}
.y4_c00197{bottom:992.835000px;}
.y3_c00197{bottom:1019.835000px;}
.y2_c00197{bottom:1067.835000px;}
.y1_c00197{bottom:1094.835000px;}
.yc_c00197{bottom:1193.835000px;}
.h7_c00197{height:27.480470px;}
.h8_c00197{height:41.220703px;}
.h6_c00197{height:44.208984px;}
.h3_c00197{height:51.187500px;}
.h5_c00197{height:56.074219px;}
.h4_c00197{height:57.211200px;}
.h2_c00197{height:1261.500000px;}
.h0_c00197{height:1262.835000px;}
.h1_c00197{height:1263.000000px;}
.w2_c00197{width:892.500000px;}
.w0_c00197{width:892.935000px;}
.w1_c00197{width:893.250000px;}
.x0_c00197{left:0.000000px;}
.x1_c00197{left:65.480310px;}
@media print{
.v2_c00197{vertical-align:-13.333333pt;}
.v0_c00197{vertical-align:0.000000pt;}
.v1_c00197{vertical-align:20.521067pt;}
.ls1_c00197{letter-spacing:-0.008533pt;}
.ls0_c00197{letter-spacing:0.000000pt;}
.ls2_c00197{letter-spacing:0.010667pt;}
.ws1_c00197{word-spacing:-17.600000pt;}
.ws3_c00197{word-spacing:-13.333333pt;}
.ws0_c00197{word-spacing:-11.724800pt;}
.ws4_c00197{word-spacing:0.000000pt;}
.ws2_c00197{word-spacing:3.555553pt;}
._e_c00197{margin-left:-9.273600pt;}
._c_c00197{margin-left:-6.169600pt;}
._10_c00197{margin-left:-4.869333pt;}
._d_c00197{margin-left:-3.078400pt;}
._9_c00197{margin-left:-2.092800pt;}
._1_c00197{margin-left:-1.081600pt;}
._5_c00197{width:1.600000pt;}
._a_c00197{width:2.848000pt;}
._3_c00197{width:3.904000pt;}
._b_c00197{width:6.048000pt;}
._7_c00197{width:7.014400pt;}
._4_c00197{width:8.211200pt;}
._8_c00197{width:9.299200pt;}
._6_c00197{width:10.579200pt;}
._0_c00197{width:12.217600pt;}
._2_c00197{width:13.260800pt;}
._13_c00197{width:16.640000pt;}
._f_c00197{width:18.986667pt;}
._12_c00197{width:20.683733pt;}
._14_c00197{width:21.975787pt;}
._11_c00197{width:23.178667pt;}
.fs3_c00197{font-size:35.555557pt;}
.fs1_c00197{font-size:42.666667pt;}
.fs2_c00197{font-size:53.333333pt;}
.fs0_c00197{font-size:64.000000pt;}
.y0_c00197{bottom:0.000000pt;}
.yd_c00197{bottom:59.853333pt;}
.yf_c00197{bottom:117.186667pt;}
.ye_c00197{bottom:137.853333pt;}
.yb_c00197{bottom:695.853333pt;}
.ya_c00197{bottom:719.853333pt;}
.y9_c00197{bottom:743.853333pt;}
.y8_c00197{bottom:767.853333pt;}
.y7_c00197{bottom:791.853333pt;}
.y6_c00197{bottom:834.520000pt;}
.y5_c00197{bottom:858.520000pt;}
.y4_c00197{bottom:882.520000pt;}
.y3_c00197{bottom:906.520000pt;}
.y2_c00197{bottom:949.186667pt;}
.y1_c00197{bottom:973.186667pt;}
.yc_c00197{bottom:1061.186667pt;}
.h7_c00197{height:24.427085pt;}
.h8_c00197{height:36.640625pt;}
.h6_c00197{height:39.296875pt;}
.h3_c00197{height:45.500000pt;}
.h5_c00197{height:49.843750pt;}
.h4_c00197{height:50.854400pt;}
.h2_c00197{height:1121.333333pt;}
.h0_c00197{height:1122.520000pt;}
.h1_c00197{height:1122.666667pt;}
.w2_c00197{width:793.333333pt;}
.w0_c00197{width:793.720000pt;}
.w1_c00197{width:794.000000pt;}
.x0_c00197{left:0.000000pt;}
.x1_c00197{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fd8259024fb82166542328fa.woff2')format("woff");}.ff1_c00198{font-family:ff1_c00198;line-height:0.884766;font-style:normal;font-weight:normal;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_40d4fdbb25aff6f12ccbcad7.woff2')format("woff");}.ff2_c00198{font-family:ff2_c00198;line-height:0.934082;font-style:normal;font-weight:normal;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_f877f057368104cf47fd14cf.woff2')format("woff");}.ff3_c00198{font-family:ff3_c00198;line-height:0.956543;font-style:normal;font-weight:normal;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_885bf546b762d4da74a23176.woff2')format("woff");}.ff4_c00198{font-family:ff4_c00198;line-height:1.043945;font-style:normal;font-weight:normal;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_e5efa7dea85db78eb8f3d688.woff2')format("woff");}.ff5_c00198{font-family:ff5_c00198;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00198{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00198{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00198{vertical-align:-23.086200px;}
.v3_c00198{vertical-align:-15.000000px;}
.v0_c00198{vertical-align:0.000000px;}
.v1_c00198{vertical-align:23.086200px;}
.ls6_c00198{letter-spacing:0.000000px;}
.ls5_c00198{letter-spacing:0.005599px;}
.ls0_c00198{letter-spacing:0.007800px;}
.ls3_c00198{letter-spacing:0.012000px;}
.ls2_c00198{letter-spacing:0.307200px;}
.ls1_c00198{letter-spacing:1.372200px;}
.ls4_c00198{letter-spacing:3.999999px;}
.sc__c00198{text-shadow:none;}
.sc0_c00198{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00198{-webkit-text-stroke:0px transparent;}
.sc0_c00198{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00198{word-spacing:-13.200000px;}
.ws1_c00198{word-spacing:-10.000001px;}
.ws2_c00198{word-spacing:0.000000px;}
._b_c00198{margin-left:-10.519200px;}
._9_c00198{margin-left:-7.149600px;}
._7_c00198{margin-left:-5.637600px;}
._5_c00198{margin-left:-3.844800px;}
._3_c00198{margin-left:-2.390400px;}
._0_c00198{margin-left:-1.130400px;}
._2_c00198{width:1.792800px;}
._1_c00198{width:2.937600px;}
._4_c00198{width:4.233600px;}
._8_c00198{width:5.292000px;}
._6_c00198{width:6.688800px;}
._c_c00198{width:7.804800px;}
._a_c00198{width:9.525600px;}
._f_c00198{width:11.304000px;}
._10_c00198{width:12.924000px;}
._d_c00198{width:14.378400px;}
._e_c00198{width:16.538400px;}
._12_c00198{width:17.539200px;}
._14_c00198{width:18.777600px;}
._13_c00198{width:21.888000px;}
._11_c00198{width:22.946400px;}
._16_c00198{width:28.108800px;}
._18_c00198{width:29.469600px;}
._17_c00198{width:30.592800px;}
._15_c00198{width:32.364000px;}
._19_c00198{width:34.754400px;}
._1a_c00198{width:36.230400px;}
.fc1_c00198{color:rgb(255,255,255);}
.fc0_c00198{color:rgb(0,0,0);}
.fs5_c00198{font-size:40.000002px;}
.fs2_c00198{font-size:48.000000px;}
.fs4_c00198{font-size:60.000000px;}
.fs1_c00198{font-size:72.000000px;}
.fs0_c00198{font-size:78.000000px;}
.fs3_c00198{font-size:96.000000px;}
.y0_c00198{bottom:0.000000px;}
.y18_c00198{bottom:67.335000px;}
.y1c_c00198{bottom:135.585000px;}
.y1b_c00198{bottom:180.685050px;}
.y1a_c00198{bottom:221.835000px;}
.y19_c00198{bottom:245.085000px;}
.y15_c00198{bottom:304.335000px;}
.y14_c00198{bottom:331.335000px;}
.y13_c00198{bottom:379.335000px;}
.y12_c00198{bottom:406.335000px;}
.y11_c00198{bottom:433.335000px;}
.y10_c00198{bottom:481.335000px;}
.yf_c00198{bottom:508.335000px;}
.ye_c00198{bottom:535.335000px;}
.yd_c00198{bottom:583.335000px;}
.yc_c00198{bottom:610.335000px;}
.yb_c00198{bottom:637.335000px;}
.ya_c00198{bottom:664.335000px;}
.y9_c00198{bottom:712.335000px;}
.y8_c00198{bottom:739.335000px;}
.y7_c00198{bottom:766.335000px;}
.y6_c00198{bottom:814.335000px;}
.y5_c00198{bottom:841.335000px;}
.y4_c00198{bottom:889.335000px;}
.y3_c00198{bottom:916.335000px;}
.y2_c00198{bottom:943.335000px;}
.y1_c00198{bottom:989.835000px;}
.y16_c00198{bottom:1066.335000px;}
.y17_c00198{bottom:1193.835000px;}
.ha_c00198{height:34.170112px;}
.h8_c00198{height:34.570312px;}
.h7_c00198{height:44.121094px;}
.h9_c00198{height:49.570312px;}
.h4_c00198{height:51.257812px;}
.h3_c00198{height:55.224609px;}
.h5_c00198{height:57.258075px;}
.h6_c00198{height:68.343750px;}
.h2_c00198{height:1261.500000px;}
.h0_c00198{height:1262.835000px;}
.h1_c00198{height:1263.000000px;}
.w2_c00198{width:892.500000px;}
.w0_c00198{width:892.935000px;}
.w1_c00198{width:893.250000px;}
.x0_c00198{left:0.000000px;}
.x1_c00198{left:150.519750px;}
.x2_c00198{left:180.298875px;}
.x3_c00198{left:380.516100px;}
.x4_c00198{left:802.427700px;}
@media print{
.v2_c00198{vertical-align:-20.521067pt;}
.v3_c00198{vertical-align:-13.333333pt;}
.v0_c00198{vertical-align:0.000000pt;}
.v1_c00198{vertical-align:20.521067pt;}
.ls6_c00198{letter-spacing:0.000000pt;}
.ls5_c00198{letter-spacing:0.004977pt;}
.ls0_c00198{letter-spacing:0.006933pt;}
.ls3_c00198{letter-spacing:0.010667pt;}
.ls2_c00198{letter-spacing:0.273067pt;}
.ls1_c00198{letter-spacing:1.219733pt;}
.ls4_c00198{letter-spacing:3.555555pt;}
.ws0_c00198{word-spacing:-11.733333pt;}
.ws1_c00198{word-spacing:-8.888889pt;}
.ws2_c00198{word-spacing:0.000000pt;}
._b_c00198{margin-left:-9.350400pt;}
._9_c00198{margin-left:-6.355200pt;}
._7_c00198{margin-left:-5.011200pt;}
._5_c00198{margin-left:-3.417600pt;}
._3_c00198{margin-left:-2.124800pt;}
._0_c00198{margin-left:-1.004800pt;}
._2_c00198{width:1.593600pt;}
._1_c00198{width:2.611200pt;}
._4_c00198{width:3.763200pt;}
._8_c00198{width:4.704000pt;}
._6_c00198{width:5.945600pt;}
._c_c00198{width:6.937600pt;}
._a_c00198{width:8.467200pt;}
._f_c00198{width:10.048000pt;}
._10_c00198{width:11.488000pt;}
._d_c00198{width:12.780800pt;}
._e_c00198{width:14.700800pt;}
._12_c00198{width:15.590400pt;}
._14_c00198{width:16.691200pt;}
._13_c00198{width:19.456000pt;}
._11_c00198{width:20.396800pt;}
._16_c00198{width:24.985600pt;}
._18_c00198{width:26.195200pt;}
._17_c00198{width:27.193600pt;}
._15_c00198{width:28.768000pt;}
._19_c00198{width:30.892800pt;}
._1a_c00198{width:32.204800pt;}
.fs5_c00198{font-size:35.555557pt;}
.fs2_c00198{font-size:42.666667pt;}
.fs4_c00198{font-size:53.333333pt;}
.fs1_c00198{font-size:64.000000pt;}
.fs0_c00198{font-size:69.333333pt;}
.fs3_c00198{font-size:85.333333pt;}
.y0_c00198{bottom:0.000000pt;}
.y18_c00198{bottom:59.853333pt;}
.y1c_c00198{bottom:120.520000pt;}
.y1b_c00198{bottom:160.608933pt;}
.y1a_c00198{bottom:197.186667pt;}
.y19_c00198{bottom:217.853333pt;}
.y15_c00198{bottom:270.520000pt;}
.y14_c00198{bottom:294.520000pt;}
.y13_c00198{bottom:337.186667pt;}
.y12_c00198{bottom:361.186667pt;}
.y11_c00198{bottom:385.186667pt;}
.y10_c00198{bottom:427.853333pt;}
.yf_c00198{bottom:451.853333pt;}
.ye_c00198{bottom:475.853333pt;}
.yd_c00198{bottom:518.520000pt;}
.yc_c00198{bottom:542.520000pt;}
.yb_c00198{bottom:566.520000pt;}
.ya_c00198{bottom:590.520000pt;}
.y9_c00198{bottom:633.186667pt;}
.y8_c00198{bottom:657.186667pt;}
.y7_c00198{bottom:681.186667pt;}
.y6_c00198{bottom:723.853333pt;}
.y5_c00198{bottom:747.853333pt;}
.y4_c00198{bottom:790.520000pt;}
.y3_c00198{bottom:814.520000pt;}
.y2_c00198{bottom:838.520000pt;}
.y1_c00198{bottom:879.853333pt;}
.y16_c00198{bottom:947.853333pt;}
.y17_c00198{bottom:1061.186667pt;}
.ha_c00198{height:30.373433pt;}
.h8_c00198{height:30.729167pt;}
.h7_c00198{height:39.218750pt;}
.h9_c00198{height:44.062500pt;}
.h4_c00198{height:45.562500pt;}
.h3_c00198{height:49.088542pt;}
.h5_c00198{height:50.896067pt;}
.h6_c00198{height:60.750000pt;}
.h2_c00198{height:1121.333333pt;}
.h0_c00198{height:1122.520000pt;}
.h1_c00198{height:1122.666667pt;}
.w2_c00198{width:793.333333pt;}
.w0_c00198{width:793.720000pt;}
.w1_c00198{width:794.000000pt;}
.x0_c00198{left:0.000000pt;}
.x1_c00198{left:133.795333pt;}
.x2_c00198{left:160.265667pt;}
.x3_c00198{left:338.236533pt;}
.x4_c00198{left:713.269067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1592ed8eb57274f8f80f861a.woff2')format("woff");}.ff1_c00199{font-family:ff1_c00199;line-height:0.934082;font-style:normal;font-weight:normal;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_3a06a7de9e41620918c01d84.woff2')format("woff");}.ff2_c00199{font-family:ff2_c00199;line-height:0.939453;font-style:normal;font-weight:normal;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_ceae437b995d99c488621eac.woff2')format("woff");}.ff3_c00199{font-family:ff3_c00199;line-height:0.783203;font-style:normal;font-weight:normal;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_ddbd96321e89587048f582f4.woff2')format("woff");}.ff4_c00199{font-family:ff4_c00199;line-height:0.756348;font-style:normal;font-weight:normal;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_975b4b9de933753b944a1a79.woff2')format("woff");}.ff5_c00199{font-family:ff5_c00199;line-height:1.155762;font-style:normal;font-weight: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_5abeb91cf14b058fa38a68d3.woff2')format("woff");}.ff6_c00199{font-family:ff6_c00199;line-height:1.043945;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00199;src:url('chunks/assets/font_b95bd9e853b651fe3ce9f635.woff2')format("woff");}.ff7_c00199{font-family:ff7_c00199;line-height:0.891113;font-style: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);}
.v2_c00199{vertical-align:-23.086200px;}
.v3_c00199{vertical-align:-15.000000px;}
.v0_c00199{vertical-align:0.000000px;}
.v1_c00199{vertical-align:23.086200px;}
.ls3_c00199{letter-spacing:-0.014400px;}
.ls4_c00199{letter-spacing:0.000000px;}
.ls2_c00199{letter-spacing:0.006019px;}
.ls0_c00199{letter-spacing:0.007800px;}
.ls5_c00199{letter-spacing:0.012000px;}
.ls1_c00199{letter-spacing:2.544600px;}
.sc__c00199{text-shadow:none;}
.sc0_c00199{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00199{-webkit-text-stroke:0px transparent;}
.sc0_c00199{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00199{word-spacing:-19.785600px;}
.ws1_c00199{word-spacing:-13.200000px;}
.ws2_c00199{word-spacing:-10.000001px;}
.ws3_c00199{word-spacing:0.000000px;}
._9_c00199{margin-left:-7.224720px;}
._5_c00199{margin-left:-4.514400px;}
._1_c00199{margin-left:-3.162360px;}
._2_c00199{margin-left:-1.087200px;}
._4_c00199{width:1.231200px;}
._d_c00199{width:2.253600px;}
._0_c00199{width:3.369600px;}
._e_c00199{width:4.485600px;}
._3_c00199{width:5.552760px;}
._7_c00199{width:7.653600px;}
._8_c00199{width:9.600120px;}
._c_c00199{width:10.679160px;}
._6_c00199{width:11.694360px;}
._b_c00199{width:13.622400px;}
._a_c00199{width:16.462320px;}
.fc1_c00199{color:transparent;}
.fc0_c00199{color:rgb(0,0,0);}
.fs5_c00199{font-size:40.000002px;}
.fs1_c00199{font-size:48.000000px;}
.fs3_c00199{font-size:54.000000px;}
.fs4_c00199{font-size:60.000000px;}
.fs0_c00199{font-size:72.000000px;}
.fs2_c00199{font-size:78.000000px;}
.y0_c00199{bottom:0.000000px;}
.y9_c00199{bottom:12.000000px;}
.yf_c00199{bottom:67.335000px;}
.y12_c00199{bottom:135.685050px;}
.y11_c00199{bottom:180.585000px;}
.y10_c00199{bottom:225.585000px;}
.yd_c00199{bottom:281.835000px;}
.yc_c00199{bottom:308.835000px;}
.yb_c00199{bottom:335.835000px;}
.ya_c00199{bottom:362.835000px;}
.y8_c00199{bottom:407.835000px;}
.y7_c00199{bottom:869.835000px;}
.y6_c00199{bottom:896.835000px;}
.y5_c00199{bottom:923.835000px;}
.y4_c00199{bottom:950.835000px;}
.y3_c00199{bottom:997.335000px;}
.y2_c00199{bottom:1067.835000px;}
.y1_c00199{bottom:1094.835000px;}
.ye_c00199{bottom:1193.835000px;}
.hb_c00199{height:34.170112px;}
.ha_c00199{height:34.570312px;}
.h7_c00199{height:41.633789px;}
.h9_c00199{height:44.208984px;}
.h5_c00199{height:51.257812px;}
.h8_c00199{height:56.074219px;}
.h4_c00199{height:56.100586px;}
.h3_c00199{height:57.258075px;}
.h6_c00199{height:430.500000px;}
.h2_c00199{height:1261.500000px;}
.h0_c00199{height:1262.835000px;}
.h1_c00199{height:1263.000000px;}
.w3_c00199{width:676.934850px;}
.w2_c00199{width:892.500000px;}
.w0_c00199{width:892.935000px;}
.w1_c00199{width:893.250000px;}
.x0_c00199{left:0.000000px;}
.x1_c00199{left:65.480310px;}
.x2_c00199{left:278.541450px;}
@media print{
.v2_c00199{vertical-align:-20.521067pt;}
.v3_c00199{vertical-align:-13.333333pt;}
.v0_c00199{vertical-align:0.000000pt;}
.v1_c00199{vertical-align:20.521067pt;}
.ls3_c00199{letter-spacing:-0.012800pt;}
.ls4_c00199{letter-spacing:0.000000pt;}
.ls2_c00199{letter-spacing:0.005350pt;}
.ls0_c00199{letter-spacing:0.006933pt;}
.ls5_c00199{letter-spacing:0.010667pt;}
.ls1_c00199{letter-spacing:2.261867pt;}
.ws0_c00199{word-spacing:-17.587200pt;}
.ws1_c00199{word-spacing:-11.733333pt;}
.ws2_c00199{word-spacing:-8.888889pt;}
.ws3_c00199{word-spacing:0.000000pt;}
._9_c00199{margin-left:-6.421973pt;}
._5_c00199{margin-left:-4.012800pt;}
._1_c00199{margin-left:-2.810987pt;}
._2_c00199{margin-left:-0.966400pt;}
._4_c00199{width:1.094400pt;}
._d_c00199{width:2.003200pt;}
._0_c00199{width:2.995200pt;}
._e_c00199{width:3.987200pt;}
._3_c00199{width:4.935787pt;}
._7_c00199{width:6.803200pt;}
._8_c00199{width:8.533440pt;}
._c_c00199{width:9.492587pt;}
._6_c00199{width:10.394987pt;}
._b_c00199{width:12.108800pt;}
._a_c00199{width:14.633173pt;}
.fs5_c00199{font-size:35.555557pt;}
.fs1_c00199{font-size:42.666667pt;}
.fs3_c00199{font-size:48.000000pt;}
.fs4_c00199{font-size:53.333333pt;}
.fs0_c00199{font-size:64.000000pt;}
.fs2_c00199{font-size:69.333333pt;}
.y0_c00199{bottom:0.000000pt;}
.y9_c00199{bottom:10.666667pt;}
.yf_c00199{bottom:59.853333pt;}
.y12_c00199{bottom:120.608933pt;}
.y11_c00199{bottom:160.520000pt;}
.y10_c00199{bottom:200.520000pt;}
.yd_c00199{bottom:250.520000pt;}
.yc_c00199{bottom:274.520000pt;}
.yb_c00199{bottom:298.520000pt;}
.ya_c00199{bottom:322.520000pt;}
.y8_c00199{bottom:362.520000pt;}
.y7_c00199{bottom:773.186667pt;}
.y6_c00199{bottom:797.186667pt;}
.y5_c00199{bottom:821.186667pt;}
.y4_c00199{bottom:845.186667pt;}
.y3_c00199{bottom:886.520000pt;}
.y2_c00199{bottom:949.186667pt;}
.y1_c00199{bottom:973.186667pt;}
.ye_c00199{bottom:1061.186667pt;}
.hb_c00199{height:30.373433pt;}
.ha_c00199{height:30.729167pt;}
.h7_c00199{height:37.007812pt;}
.h9_c00199{height:39.296875pt;}
.h5_c00199{height:45.562500pt;}
.h8_c00199{height:49.843750pt;}
.h4_c00199{height:49.867188pt;}
.h3_c00199{height:50.896067pt;}
.h6_c00199{height:382.666667pt;}
.h2_c00199{height:1121.333333pt;}
.h0_c00199{height:1122.520000pt;}
.h1_c00199{height:1122.666667pt;}
.w3_c00199{width:601.719867pt;}
.w2_c00199{width:793.333333pt;}
.w0_c00199{width:793.720000pt;}
.w1_c00199{width:794.000000pt;}
.x0_c00199{left:0.000000pt;}
.x1_c00199{left:58.204720pt;}
.x2_c00199{left:247.592400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3d26574024137a87b68f12a5.woff2')format("woff");}.ff1_c00200{font-family:ff1_c00200;line-height:0.975586;font-style:normal;font-weight:normal;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_9e8398f73e10ff03ca1a392d.woff2')format("woff");}.ff2_c00200{font-family:ff2_c00200;line-height:0.956543;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00200{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00200{vertical-align:0.000000px;}
.ls1_c00200{letter-spacing:0.000000px;}
.ls0_c00200{letter-spacing:0.012000px;}
.sc__c00200{text-shadow:none;}
.sc0_c00200{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00200{-webkit-text-stroke:0px transparent;}
.sc0_c00200{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00200{word-spacing:0.000000px;}
._0_c00200{margin-left:-3.402000px;}
._1_c00200{margin-left:-1.398000px;}
.fc0_c00200{color:rgb(0,0,0);}
.fs0_c00200{font-size:54.000000px;}
.fs1_c00200{font-size:60.000000px;}
.y0_c00200{bottom:0.000000px;}
.y2_c00200{bottom:10.500000px;}
.y4_c00200{bottom:12.000000px;}
.y6_c00200{bottom:67.335000px;}
.y3_c00200{bottom:182.835000px;}
.y1_c00200{bottom:610.335000px;}
.y5_c00200{bottom:1193.835000px;}
.h3_c00200{height:41.633789px;}
.h6_c00200{height:44.121094px;}
.h4_c00200{height:399.000000px;}
.h2_c00200{height:502.500000px;}
.h5_c00200{height:1261.500000px;}
.h0_c00200{height:1262.835000px;}
.h1_c00200{height:1263.000000px;}
.w2_c00200{width:676.934850px;}
.w3_c00200{width:676.935000px;}
.w4_c00200{width:892.500000px;}
.w0_c00200{width:892.935000px;}
.w1_c00200{width:893.250000px;}
.x0_c00200{left:0.000000px;}
.x2_c00200{left:123.251880px;}
.x1_c00200{left:150.000000px;}
.x3_c00200{left:263.485800px;}
.x4_c00200{left:380.516100px;}
.x5_c00200{left:802.427700px;}
@media print{
.v0_c00200{vertical-align:0.000000pt;}
.ls1_c00200{letter-spacing:0.000000pt;}
.ls0_c00200{letter-spacing:0.010667pt;}
.ws0_c00200{word-spacing:0.000000pt;}
._0_c00200{margin-left:-3.024000pt;}
._1_c00200{margin-left:-1.242667pt;}
.fs0_c00200{font-size:48.000000pt;}
.fs1_c00200{font-size:53.333333pt;}
.y0_c00200{bottom:0.000000pt;}
.y2_c00200{bottom:9.333333pt;}
.y4_c00200{bottom:10.666667pt;}
.y6_c00200{bottom:59.853333pt;}
.y3_c00200{bottom:162.520000pt;}
.y1_c00200{bottom:542.520000pt;}
.y5_c00200{bottom:1061.186667pt;}
.h3_c00200{height:37.007812pt;}
.h6_c00200{height:39.218750pt;}
.h4_c00200{height:354.666667pt;}
.h2_c00200{height:446.666667pt;}
.h5_c00200{height:1121.333333pt;}
.h0_c00200{height:1122.520000pt;}
.h1_c00200{height:1122.666667pt;}
.w2_c00200{width:601.719867pt;}
.w3_c00200{width:601.720000pt;}
.w4_c00200{width:793.333333pt;}
.w0_c00200{width:793.720000pt;}
.w1_c00200{width:794.000000pt;}
.x0_c00200{left:0.000000pt;}
.x2_c00200{left:109.557227pt;}
.x1_c00200{left:133.333333pt;}
.x3_c00200{left:234.209600pt;}
.x4_c00200{left:338.236533pt;}
.x5_c00200{left:713.269067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b1ffbecddad0b308080ddb92.woff2')format("woff");}.ff1_c00201{font-family:ff1_c00201;line-height:0.933105;font-style:normal;font-weight:normal;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_c81ece0f4408424fe7a90647.woff2')format("woff");}.ff2_c00201{font-family:ff2_c00201;line-height:0.987793;font-style:normal;font-weight:normal;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_4099ae4ac57ada0defc58af6.woff2')format("woff");}.ff3_c00201{font-family:ff3_c00201;line-height:0.756836;font-style:normal;font-weight:normal;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_cc66a72b2bdd0447baf3976d.woff2')format("woff");}.ff4_c00201{font-family:ff4_c00201;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00201{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00201{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00201{vertical-align:0.000000px;}
.ls1_c00201{letter-spacing:0.000000px;}
.ls2_c00201{letter-spacing:0.012000px;}
.ls0_c00201{letter-spacing:0.021600px;}
.sc__c00201{text-shadow:none;}
.sc0_c00201{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00201{-webkit-text-stroke:0px transparent;}
.sc0_c00201{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00201{word-spacing:-17.064000px;}
.ws1_c00201{word-spacing:0.000000px;}
._0_c00201{margin-left:-3.621600px;}
._3_c00201{margin-left:-1.987200px;}
._2_c00201{width:1.864800px;}
._4_c00201{width:3.909600px;}
._1_c00201{width:5.464800px;}
._6_c00201{width:7.257600px;}
._5_c00201{width:9.180000px;}
.fc2_c00201{color:transparent;}
.fc1_c00201{color:rgb(0,0,153);}
.fc0_c00201{color:rgb(0,0,0);}
.fs1_c00201{font-size:54.000000px;}
.fs2_c00201{font-size:60.000000px;}
.fs0_c00201{font-size:72.000000px;}
.y0_c00201{bottom:0.000000px;}
.y7_c00201{bottom:10.500000px;}
.y4_c00201{bottom:12.000000px;}
.y6_c00201{bottom:33.000000px;}
.yb_c00201{bottom:67.335000px;}
.y9_c00201{bottom:139.335000px;}
.y8_c00201{bottom:166.335000px;}
.y5_c00201{bottom:211.335000px;}
.y3_c00201{bottom:575.835000px;}
.y2_c00201{bottom:1067.835000px;}
.y1_c00201{bottom:1094.835000px;}
.ya_c00201{bottom:1193.835000px;}
.h5_c00201{height:42.292969px;}
.h8_c00201{height:44.208984px;}
.h3_c00201{height:51.187500px;}
.h7_c00201{height:56.074219px;}
.h6_c00201{height:340.500000px;}
.h4_c00201{height:460.500000px;}
.h2_c00201{height:1261.500000px;}
.h0_c00201{height:1262.835000px;}
.h1_c00201{height:1263.000000px;}
.w4_c00201{width:676.934850px;}
.w3_c00201{width:676.935000px;}
.w2_c00201{width:892.500000px;}
.w0_c00201{width:892.935000px;}
.w1_c00201{width:893.250000px;}
.x0_c00201{left:0.000000px;}
.x1_c00201{left:65.480310px;}
.x2_c00201{left:123.584790px;}
.x3_c00201{left:146.474790px;}
.x4_c00201{left:147.509700px;}
@media print{
.v0_c00201{vertical-align:0.000000pt;}
.ls1_c00201{letter-spacing:0.000000pt;}
.ls2_c00201{letter-spacing:0.010667pt;}
.ls0_c00201{letter-spacing:0.019200pt;}
.ws0_c00201{word-spacing:-15.168000pt;}
.ws1_c00201{word-spacing:0.000000pt;}
._0_c00201{margin-left:-3.219200pt;}
._3_c00201{margin-left:-1.766400pt;}
._2_c00201{width:1.657600pt;}
._4_c00201{width:3.475200pt;}
._1_c00201{width:4.857600pt;}
._6_c00201{width:6.451200pt;}
._5_c00201{width:8.160000pt;}
.fs1_c00201{font-size:48.000000pt;}
.fs2_c00201{font-size:53.333333pt;}
.fs0_c00201{font-size:64.000000pt;}
.y0_c00201{bottom:0.000000pt;}
.y7_c00201{bottom:9.333333pt;}
.y4_c00201{bottom:10.666667pt;}
.y6_c00201{bottom:29.333333pt;}
.yb_c00201{bottom:59.853333pt;}
.y9_c00201{bottom:123.853333pt;}
.y8_c00201{bottom:147.853333pt;}
.y5_c00201{bottom:187.853333pt;}
.y3_c00201{bottom:511.853333pt;}
.y2_c00201{bottom:949.186667pt;}
.y1_c00201{bottom:973.186667pt;}
.ya_c00201{bottom:1061.186667pt;}
.h5_c00201{height:37.593750pt;}
.h8_c00201{height:39.296875pt;}
.h3_c00201{height:45.500000pt;}
.h7_c00201{height:49.843750pt;}
.h6_c00201{height:302.666667pt;}
.h4_c00201{height:409.333333pt;}
.h2_c00201{height:1121.333333pt;}
.h0_c00201{height:1122.520000pt;}
.h1_c00201{height:1122.666667pt;}
.w4_c00201{width:601.719867pt;}
.w3_c00201{width:601.720000pt;}
.w2_c00201{width:793.333333pt;}
.w0_c00201{width:793.720000pt;}
.w1_c00201{width:794.000000pt;}
.x0_c00201{left:0.000000pt;}
.x1_c00201{left:58.204720pt;}
.x2_c00201{left:109.853147pt;}
.x3_c00201{left:130.199813pt;}
.x4_c00201{left:131.119733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e9a439d95c3291af505c965d.woff2')format("woff");}.ff1_c00202{font-family:ff1_c00202;line-height:0.933105;font-style:normal;font-weight:normal;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_09e61fce906e54926112bec3.woff2')format("woff");}.ff2_c00202{font-family:ff2_c00202;line-height:0.976074;font-style:normal;font-weight:normal;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_72516d247dd4549a452a2973.woff2')format("woff");}.ff3_c00202{font-family:ff3_c00202;line-height:0.956543;font-style:normal;font-weight:normal;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_4dc762fe0858d0b8a5338d8a.woff2')format("woff");}.ff4_c00202{font-family:ff4_c00202;line-height:0.904785;font-style:normal;font-weight:normal;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_70630ad5f8c760140003d85e.woff2')format("woff");}.ff5_c00202{font-family:ff5_c00202;line-height:0.688477;font-style: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);}
.v2_c00202{vertical-align:-23.086200px;}
.v3_c00202{vertical-align:-15.000000px;}
.v0_c00202{vertical-align:0.000000px;}
.v1_c00202{vertical-align:23.086200px;}
.ls1_c00202{letter-spacing:0.000000px;}
.ls2_c00202{letter-spacing:0.007200px;}
.ls0_c00202{letter-spacing:0.012000px;}
.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;}
}
.ws1_c00202{word-spacing:-17.064000px;}
.ws0_c00202{word-spacing:-13.200000px;}
.ws2_c00202{word-spacing:-10.000001px;}
.ws3_c00202{word-spacing:0.000000px;}
._b_c00202{margin-left:-6.642201px;}
._c_c00202{margin-left:-5.438400px;}
._5_c00202{margin-left:-3.434400px;}
._7_c00202{margin-left:-2.289600px;}
._0_c00202{margin-left:-1.130400px;}
._3_c00202{width:1.951200px;}
._8_c00202{width:2.973600px;}
._9_c00202{width:4.867200px;}
._a_c00202{width:6.487200px;}
._4_c00202{width:8.740800px;}
._2_c00202{width:10.706400px;}
._1_c00202{width:11.815200px;}
._6_c00202{width:14.104800px;}
.fc1_c00202{color:rgb(0,0,153);}
.fc0_c00202{color:rgb(0,0,0);}
.fs4_c00202{font-size:40.000002px;}
.fs1_c00202{font-size:48.000000px;}
.fs2_c00202{font-size:54.000000px;}
.fs3_c00202{font-size:60.000000px;}
.fs0_c00202{font-size:72.000000px;}
.y0_c00202{bottom:0.000000px;}
.y5_c00202{bottom:12.000000px;}
.y8_c00202{bottom:67.335000px;}
.y9_c00202{bottom:135.585000px;}
.y6_c00202{bottom:292.335000px;}
.y4_c00202{bottom:668.835000px;}
.y3_c00202{bottom:1040.835000px;}
.y2_c00202{bottom:1067.835000px;}
.y1_c00202{bottom:1094.835000px;}
.y7_c00202{bottom:1193.835000px;}
.h9_c00202{height:27.480470px;}
.h6_c00202{height:42.292969px;}
.h8_c00202{height:44.121094px;}
.h4_c00202{height:51.187500px;}
.h3_c00202{height:57.211200px;}
.h7_c00202{height:325.500000px;}
.h5_c00202{height:340.500000px;}
.h2_c00202{height:1261.500000px;}
.h0_c00202{height:1262.835000px;}
.h1_c00202{height:1263.000000px;}
.w3_c00202{width:676.935000px;}
.w2_c00202{width:892.500000px;}
.w0_c00202{width:892.935000px;}
.w1_c00202{width:893.250000px;}
.x0_c00202{left:0.000000px;}
.x3_c00202{left:32.730060px;}
.x1_c00202{left:150.519750px;}
.x2_c00202{left:271.547550px;}
.x4_c00202{left:380.516100px;}
.x5_c00202{left:802.427700px;}
@media print{
.v2_c00202{vertical-align:-20.521067pt;}
.v3_c00202{vertical-align:-13.333333pt;}
.v0_c00202{vertical-align:0.000000pt;}
.v1_c00202{vertical-align:20.521067pt;}
.ls1_c00202{letter-spacing:0.000000pt;}
.ls2_c00202{letter-spacing:0.006400pt;}
.ls0_c00202{letter-spacing:0.010667pt;}
.ws1_c00202{word-spacing:-15.168000pt;}
.ws0_c00202{word-spacing:-11.733333pt;}
.ws2_c00202{word-spacing:-8.888889pt;}
.ws3_c00202{word-spacing:0.000000pt;}
._b_c00202{margin-left:-5.904179pt;}
._c_c00202{margin-left:-4.834133pt;}
._5_c00202{margin-left:-3.052800pt;}
._7_c00202{margin-left:-2.035200pt;}
._0_c00202{margin-left:-1.004800pt;}
._3_c00202{width:1.734400pt;}
._8_c00202{width:2.643200pt;}
._9_c00202{width:4.326400pt;}
._a_c00202{width:5.766400pt;}
._4_c00202{width:7.769600pt;}
._2_c00202{width:9.516800pt;}
._1_c00202{width:10.502400pt;}
._6_c00202{width:12.537600pt;}
.fs4_c00202{font-size:35.555557pt;}
.fs1_c00202{font-size:42.666667pt;}
.fs2_c00202{font-size:48.000000pt;}
.fs3_c00202{font-size:53.333333pt;}
.fs0_c00202{font-size:64.000000pt;}
.y0_c00202{bottom:0.000000pt;}
.y5_c00202{bottom:10.666667pt;}
.y8_c00202{bottom:59.853333pt;}
.y9_c00202{bottom:120.520000pt;}
.y6_c00202{bottom:259.853333pt;}
.y4_c00202{bottom:594.520000pt;}
.y3_c00202{bottom:925.186667pt;}
.y2_c00202{bottom:949.186667pt;}
.y1_c00202{bottom:973.186667pt;}
.y7_c00202{bottom:1061.186667pt;}
.h9_c00202{height:24.427085pt;}
.h6_c00202{height:37.593750pt;}
.h8_c00202{height:39.218750pt;}
.h4_c00202{height:45.500000pt;}
.h3_c00202{height:50.854400pt;}
.h7_c00202{height:289.333333pt;}
.h5_c00202{height:302.666667pt;}
.h2_c00202{height:1121.333333pt;}
.h0_c00202{height:1122.520000pt;}
.h1_c00202{height:1122.666667pt;}
.w3_c00202{width:601.720000pt;}
.w2_c00202{width:793.333333pt;}
.w0_c00202{width:793.720000pt;}
.w1_c00202{width:794.000000pt;}
.x0_c00202{left:0.000000pt;}
.x3_c00202{left:29.093387pt;}
.x1_c00202{left:133.795333pt;}
.x2_c00202{left:241.375600pt;}
.x4_c00202{left:338.236533pt;}
.x5_c00202{left:713.269067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e9e8c5151f0da0c3e7fe2e78.woff2')format("woff");}.ff1_c00203{font-family:ff1_c00203;line-height:0.884766;font-style:normal;font-weight:normal;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_80a85c4bdd186174cb3005d0.woff2')format("woff");}.ff2_c00203{font-family:ff2_c00203;line-height:0.934082;font-style:normal;font-weight:normal;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_22bb104ab50f550b733afb2a.woff2')format("woff");}.ff3_c00203{font-family:ff3_c00203;line-height:0.931152;font-style:normal;font-weight:normal;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_72456856f3ee8eafefcbd37f.woff2')format("woff");}.ff4_c00203{font-family:ff4_c00203;line-height:0.755859;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00203;src:url('chunks/assets/font_eb0a0d2b26fe67ce81fa2d12.woff2')format("woff");}.ff5_c00203{font-family:ff5_c00203;line-height:1.155762;font-style:normal;font-weight: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_c00203;src:url('chunks/assets/font_8005c0070930a647e971d85b.woff2')format("woff");}.ff6_c00203{font-family:ff6_c00203;line-height:1.043945;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00203;src:url('chunks/assets/font_8cada1b64e0b796369a1c066.woff2')format("woff");}.ff7_c00203{font-family:ff7_c00203;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00203{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00203{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00203{vertical-align:-23.086200px;}
.v3_c00203{vertical-align:-15.000000px;}
.v0_c00203{vertical-align:0.000000px;}
.v1_c00203{vertical-align:23.086200px;}
.ls4_c00203{letter-spacing:-0.019200px;}
.ls3_c00203{letter-spacing:0.000000px;}
.ls0_c00203{letter-spacing:0.007800px;}
.ls5_c00203{letter-spacing:0.012000px;}
.ls1_c00203{letter-spacing:3.275400px;}
.ls2_c00203{letter-spacing:3.999999px;}
.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:-13.200000px;}
.ws1_c00203{word-spacing:-10.000001px;}
.ws2_c00203{word-spacing:0.000000px;}
._10_c00203{margin-left:-9.648000px;}
._15_c00203{margin-left:-7.209600px;}
._f_c00203{margin-left:-5.719200px;}
._a_c00203{margin-left:-4.408440px;}
._6_c00203{margin-left:-2.988000px;}
._8_c00203{margin-left:-1.454400px;}
._3_c00203{width:1.533600px;}
._1_c00203{width:2.563200px;}
._2_c00203{width:4.420800px;}
._4_c00203{width:5.522400px;}
._0_c00203{width:7.012800px;}
._5_c00203{width:9.021600px;}
._9_c00203{width:10.951200px;}
._7_c00203{width:11.995200px;}
._12_c00203{width:13.579200px;}
._11_c00203{width:15.127200px;}
._14_c00203{width:16.185600px;}
._c_c00203{width:17.222400px;}
._13_c00203{width:18.479400px;}
._b_c00203{width:21.600000px;}
._e_c00203{width:23.529600px;}
._d_c00203{width:24.811200px;}
.fc1_c00203{color:rgb(255,255,255);}
.fc0_c00203{color:rgb(0,0,0);}
.fs5_c00203{font-size:40.000002px;}
.fs2_c00203{font-size:48.000000px;}
.fs4_c00203{font-size:60.000000px;}
.fs1_c00203{font-size:72.000000px;}
.fs0_c00203{font-size:78.000000px;}
.fs3_c00203{font-size:96.000000px;}
.y0_c00203{bottom:0.000000px;}
.y17_c00203{bottom:67.335000px;}
.y1d_c00203{bottom:135.585000px;}
.y1c_c00203{bottom:180.585000px;}
.y1b_c00203{bottom:225.585000px;}
.y1a_c00203{bottom:270.585000px;}
.y19_c00203{bottom:311.835000px;}
.y18_c00203{bottom:335.085000px;}
.y13_c00203{bottom:397.335000px;}
.y12_c00203{bottom:424.335000px;}
.y11_c00203{bottom:472.335000px;}
.y10_c00203{bottom:499.335000px;}
.yf_c00203{bottom:526.335000px;}
.ye_c00203{bottom:553.335000px;}
.yd_c00203{bottom:580.335000px;}
.yc_c00203{bottom:607.335000px;}
.yb_c00203{bottom:634.335000px;}
.ya_c00203{bottom:661.335000px;}
.y9_c00203{bottom:688.335000px;}
.y8_c00203{bottom:715.335000px;}
.y7_c00203{bottom:742.335000px;}
.y6_c00203{bottom:790.335000px;}
.y5_c00203{bottom:817.335000px;}
.y4_c00203{bottom:865.335000px;}
.y3_c00203{bottom:892.335000px;}
.y2_c00203{bottom:919.335000px;}
.y1_c00203{bottom:965.835000px;}
.y15_c00203{bottom:1037.835000px;}
.y14_c00203{bottom:1066.335000px;}
.y16_c00203{bottom:1193.835000px;}
.h9_c00203{height:34.570312px;}
.h8_c00203{height:44.208984px;}
.ha_c00203{height:49.570312px;}
.h4_c00203{height:51.257812px;}
.h3_c00203{height:55.224609px;}
.h7_c00203{height:56.074219px;}
.h5_c00203{height:57.258075px;}
.h6_c00203{height:68.343750px;}
.h2_c00203{height:1261.500000px;}
.h0_c00203{height:1262.835000px;}
.h1_c00203{height:1263.000000px;}
.w2_c00203{width:892.500000px;}
.w0_c00203{width:892.935000px;}
.w1_c00203{width:893.250000px;}
.x0_c00203{left:0.000000px;}
.x1_c00203{left:65.480310px;}
.x3_c00203{left:88.863180px;}
.x2_c00203{left:94.798875px;}
@media print{
.v2_c00203{vertical-align:-20.521067pt;}
.v3_c00203{vertical-align:-13.333333pt;}
.v0_c00203{vertical-align:0.000000pt;}
.v1_c00203{vertical-align:20.521067pt;}
.ls4_c00203{letter-spacing:-0.017067pt;}
.ls3_c00203{letter-spacing:0.000000pt;}
.ls0_c00203{letter-spacing:0.006933pt;}
.ls5_c00203{letter-spacing:0.010667pt;}
.ls1_c00203{letter-spacing:2.911467pt;}
.ls2_c00203{letter-spacing:3.555555pt;}
.ws0_c00203{word-spacing:-11.733333pt;}
.ws1_c00203{word-spacing:-8.888889pt;}
.ws2_c00203{word-spacing:0.000000pt;}
._10_c00203{margin-left:-8.576000pt;}
._15_c00203{margin-left:-6.408533pt;}
._f_c00203{margin-left:-5.083733pt;}
._a_c00203{margin-left:-3.918613pt;}
._6_c00203{margin-left:-2.656000pt;}
._8_c00203{margin-left:-1.292800pt;}
._3_c00203{width:1.363200pt;}
._1_c00203{width:2.278400pt;}
._2_c00203{width:3.929600pt;}
._4_c00203{width:4.908800pt;}
._0_c00203{width:6.233600pt;}
._5_c00203{width:8.019200pt;}
._9_c00203{width:9.734400pt;}
._7_c00203{width:10.662400pt;}
._12_c00203{width:12.070400pt;}
._11_c00203{width:13.446400pt;}
._14_c00203{width:14.387200pt;}
._c_c00203{width:15.308800pt;}
._13_c00203{width:16.426133pt;}
._b_c00203{width:19.200000pt;}
._e_c00203{width:20.915200pt;}
._d_c00203{width:22.054400pt;}
.fs5_c00203{font-size:35.555557pt;}
.fs2_c00203{font-size:42.666667pt;}
.fs4_c00203{font-size:53.333333pt;}
.fs1_c00203{font-size:64.000000pt;}
.fs0_c00203{font-size:69.333333pt;}
.fs3_c00203{font-size:85.333333pt;}
.y0_c00203{bottom:0.000000pt;}
.y17_c00203{bottom:59.853333pt;}
.y1d_c00203{bottom:120.520000pt;}
.y1c_c00203{bottom:160.520000pt;}
.y1b_c00203{bottom:200.520000pt;}
.y1a_c00203{bottom:240.520000pt;}
.y19_c00203{bottom:277.186667pt;}
.y18_c00203{bottom:297.853333pt;}
.y13_c00203{bottom:353.186667pt;}
.y12_c00203{bottom:377.186667pt;}
.y11_c00203{bottom:419.853333pt;}
.y10_c00203{bottom:443.853333pt;}
.yf_c00203{bottom:467.853333pt;}
.ye_c00203{bottom:491.853333pt;}
.yd_c00203{bottom:515.853333pt;}
.yc_c00203{bottom:539.853333pt;}
.yb_c00203{bottom:563.853333pt;}
.ya_c00203{bottom:587.853333pt;}
.y9_c00203{bottom:611.853333pt;}
.y8_c00203{bottom:635.853333pt;}
.y7_c00203{bottom:659.853333pt;}
.y6_c00203{bottom:702.520000pt;}
.y5_c00203{bottom:726.520000pt;}
.y4_c00203{bottom:769.186667pt;}
.y3_c00203{bottom:793.186667pt;}
.y2_c00203{bottom:817.186667pt;}
.y1_c00203{bottom:858.520000pt;}
.y15_c00203{bottom:922.520000pt;}
.y14_c00203{bottom:947.853333pt;}
.y16_c00203{bottom:1061.186667pt;}
.h9_c00203{height:30.729167pt;}
.h8_c00203{height:39.296875pt;}
.ha_c00203{height:44.062500pt;}
.h4_c00203{height:45.562500pt;}
.h3_c00203{height:49.088542pt;}
.h7_c00203{height:49.843750pt;}
.h5_c00203{height:50.896067pt;}
.h6_c00203{height:60.750000pt;}
.h2_c00203{height:1121.333333pt;}
.h0_c00203{height:1122.520000pt;}
.h1_c00203{height:1122.666667pt;}
.w2_c00203{width:793.333333pt;}
.w0_c00203{width:793.720000pt;}
.w1_c00203{width:794.000000pt;}
.x0_c00203{left:0.000000pt;}
.x1_c00203{left:58.204720pt;}
.x3_c00203{left:78.989493pt;}
.x2_c00203{left:84.265667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_76adcdf5ce8cf14a290ca964.woff2')format("woff");}.ff1_c00204{font-family:ff1_c00204;line-height:0.934082;font-style:normal;font-weight:normal;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_ec60e8d06479b17d482c4f0d.woff2')format("woff");}.ff2_c00204{font-family:ff2_c00204;line-height:0.939453;font-style:normal;font-weight:normal;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_a08b5a3ec9cbb743d4cdaf38.woff2')format("woff");}.ff3_c00204{font-family:ff3_c00204;line-height:0.956543;font-style:normal;font-weight:normal;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_38db0e088eb2368187693622.woff2')format("woff");}.ff4_c00204{font-family:ff4_c00204;line-height:1.043945;font-style:normal;font-weight:normal;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_7003a629d4e4caf1503ec480.woff2')format("woff");}.ff5_c00204{font-family:ff5_c00204;line-height:0.891113;font-style: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);}
.v2_c00204{vertical-align:-23.086200px;}
.v3_c00204{vertical-align:-15.000000px;}
.v0_c00204{vertical-align:0.000000px;}
.v1_c00204{vertical-align:23.086200px;}
.ls6_c00204{letter-spacing:-3.678000px;}
.ls5_c00204{letter-spacing:-0.009600px;}
.ls4_c00204{letter-spacing:0.000000px;}
.ls1_c00204{letter-spacing:0.007800px;}
.ls2_c00204{letter-spacing:0.012000px;}
.ls0_c00204{letter-spacing:0.270600px;}
.ls3_c00204{letter-spacing:3.999999px;}
.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;}
}
.ws3_c00204{word-spacing:-15.000000px;}
.ws0_c00204{word-spacing:-13.200000px;}
.ws1_c00204{word-spacing:-13.190400px;}
.ws2_c00204{word-spacing:-10.000001px;}
.ws4_c00204{word-spacing:0.000000px;}
._7_c00204{margin-left:-9.280800px;}
._13_c00204{margin-left:-7.221600px;}
._a_c00204{margin-left:-5.083200px;}
._6_c00204{margin-left:-3.405600px;}
._3_c00204{margin-left:-2.354400px;}
._8_c00204{margin-left:-1.152000px;}
._5_c00204{width:1.584000px;}
._1_c00204{width:3.549600px;}
._9_c00204{width:4.845600px;}
._f_c00204{width:6.098400px;}
._12_c00204{width:7.128000px;}
._e_c00204{width:8.784000px;}
._17_c00204{width:9.784800px;}
._10_c00204{width:10.972800px;}
._11_c00204{width:11.973600px;}
._15_c00204{width:13.089600px;}
._2_c00204{width:14.536800px;}
._14_c00204{width:15.969600px;}
._16_c00204{width:17.064000px;}
._0_c00204{width:18.180000px;}
._4_c00204{width:21.247200px;}
._c_c00204{width:22.759200px;}
._d_c00204{width:26.092800px;}
._b_c00204{width:27.504000px;}
.fc0_c00204{color:rgb(0,0,0);}
.fs4_c00204{font-size:40.000002px;}
.fs1_c00204{font-size:48.000000px;}
.fs3_c00204{font-size:60.000000px;}
.fs0_c00204{font-size:72.000000px;}
.fs2_c00204{font-size:78.000000px;}
.y0_c00204{bottom:0.000000px;}
.y13_c00204{bottom:67.335000px;}
.y1a_c00204{bottom:135.585000px;}
.y19_c00204{bottom:176.835000px;}
.y18_c00204{bottom:196.335000px;}
.y17_c00204{bottom:219.585000px;}
.y16_c00204{bottom:264.585000px;}
.y15_c00204{bottom:309.585000px;}
.y14_c00204{bottom:354.585000px;}
.y11_c00204{bottom:536.835000px;}
.y10_c00204{bottom:563.835000px;}
.yf_c00204{bottom:590.835000px;}
.ye_c00204{bottom:638.835000px;}
.yd_c00204{bottom:665.835000px;}
.yc_c00204{bottom:712.335000px;}
.yb_c00204{bottom:782.835000px;}
.ya_c00204{bottom:809.835000px;}
.y9_c00204{bottom:857.835000px;}
.y8_c00204{bottom:884.835000px;}
.y7_c00204{bottom:911.835000px;}
.y6_c00204{bottom:938.835000px;}
.y5_c00204{bottom:965.835000px;}
.y4_c00204{bottom:992.835000px;}
.y3_c00204{bottom:1019.835000px;}
.y2_c00204{bottom:1067.835000px;}
.y1_c00204{bottom:1094.835000px;}
.y12_c00204{bottom:1193.835000px;}
.h7_c00204{height:34.570312px;}
.h6_c00204{height:44.121094px;}
.h8_c00204{height:49.570312px;}
.h3_c00204{height:51.257812px;}
.h5_c00204{height:56.100586px;}
.h4_c00204{height:57.258075px;}
.h2_c00204{height:1261.500000px;}
.h0_c00204{height:1262.835000px;}
.h1_c00204{height:1263.000000px;}
.w2_c00204{width:892.500000px;}
.w0_c00204{width:892.935000px;}
.w1_c00204{width:893.250000px;}
.x0_c00204{left:0.000000px;}
.x1_c00204{left:150.519750px;}
.x2_c00204{left:380.516100px;}
.x3_c00204{left:802.427700px;}
@media print{
.v2_c00204{vertical-align:-20.521067pt;}
.v3_c00204{vertical-align:-13.333333pt;}
.v0_c00204{vertical-align:0.000000pt;}
.v1_c00204{vertical-align:20.521067pt;}
.ls6_c00204{letter-spacing:-3.269333pt;}
.ls5_c00204{letter-spacing:-0.008533pt;}
.ls4_c00204{letter-spacing:0.000000pt;}
.ls1_c00204{letter-spacing:0.006933pt;}
.ls2_c00204{letter-spacing:0.010667pt;}
.ls0_c00204{letter-spacing:0.240533pt;}
.ls3_c00204{letter-spacing:3.555555pt;}
.ws3_c00204{word-spacing:-13.333333pt;}
.ws0_c00204{word-spacing:-11.733333pt;}
.ws1_c00204{word-spacing:-11.724800pt;}
.ws2_c00204{word-spacing:-8.888889pt;}
.ws4_c00204{word-spacing:0.000000pt;}
._7_c00204{margin-left:-8.249600pt;}
._13_c00204{margin-left:-6.419200pt;}
._a_c00204{margin-left:-4.518400pt;}
._6_c00204{margin-left:-3.027200pt;}
._3_c00204{margin-left:-2.092800pt;}
._8_c00204{margin-left:-1.024000pt;}
._5_c00204{width:1.408000pt;}
._1_c00204{width:3.155200pt;}
._9_c00204{width:4.307200pt;}
._f_c00204{width:5.420800pt;}
._12_c00204{width:6.336000pt;}
._e_c00204{width:7.808000pt;}
._17_c00204{width:8.697600pt;}
._10_c00204{width:9.753600pt;}
._11_c00204{width:10.643200pt;}
._15_c00204{width:11.635200pt;}
._2_c00204{width:12.921600pt;}
._14_c00204{width:14.195200pt;}
._16_c00204{width:15.168000pt;}
._0_c00204{width:16.160000pt;}
._4_c00204{width:18.886400pt;}
._c_c00204{width:20.230400pt;}
._d_c00204{width:23.193600pt;}
._b_c00204{width:24.448000pt;}
.fs4_c00204{font-size:35.555557pt;}
.fs1_c00204{font-size:42.666667pt;}
.fs3_c00204{font-size:53.333333pt;}
.fs0_c00204{font-size:64.000000pt;}
.fs2_c00204{font-size:69.333333pt;}
.y0_c00204{bottom:0.000000pt;}
.y13_c00204{bottom:59.853333pt;}
.y1a_c00204{bottom:120.520000pt;}
.y19_c00204{bottom:157.186667pt;}
.y18_c00204{bottom:174.520000pt;}
.y17_c00204{bottom:195.186667pt;}
.y16_c00204{bottom:235.186667pt;}
.y15_c00204{bottom:275.186667pt;}
.y14_c00204{bottom:315.186667pt;}
.y11_c00204{bottom:477.186667pt;}
.y10_c00204{bottom:501.186667pt;}
.yf_c00204{bottom:525.186667pt;}
.ye_c00204{bottom:567.853333pt;}
.yd_c00204{bottom:591.853333pt;}
.yc_c00204{bottom:633.186667pt;}
.yb_c00204{bottom:695.853333pt;}
.ya_c00204{bottom:719.853333pt;}
.y9_c00204{bottom:762.520000pt;}
.y8_c00204{bottom:786.520000pt;}
.y7_c00204{bottom:810.520000pt;}
.y6_c00204{bottom:834.520000pt;}
.y5_c00204{bottom:858.520000pt;}
.y4_c00204{bottom:882.520000pt;}
.y3_c00204{bottom:906.520000pt;}
.y2_c00204{bottom:949.186667pt;}
.y1_c00204{bottom:973.186667pt;}
.y12_c00204{bottom:1061.186667pt;}
.h7_c00204{height:30.729167pt;}
.h6_c00204{height:39.218750pt;}
.h8_c00204{height:44.062500pt;}
.h3_c00204{height:45.562500pt;}
.h5_c00204{height:49.867188pt;}
.h4_c00204{height:50.896067pt;}
.h2_c00204{height:1121.333333pt;}
.h0_c00204{height:1122.520000pt;}
.h1_c00204{height:1122.666667pt;}
.w2_c00204{width:793.333333pt;}
.w0_c00204{width:793.720000pt;}
.w1_c00204{width:794.000000pt;}
.x0_c00204{left:0.000000pt;}
.x1_c00204{left:133.795333pt;}
.x2_c00204{left:338.236533pt;}
.x3_c00204{left:713.269067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c5d3488ebb148885b0c21c01.woff2')format("woff");}.ff1_c00205{font-family:ff1_c00205;line-height:0.975586;font-style:normal;font-weight:normal;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_3a777867f79970b720585c0d.woff2')format("woff");}.ff2_c00205{font-family:ff2_c00205;line-height:0.933105;font-style:normal;font-weight:normal;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_c10a04772c306f9bb4211361.woff2')format("woff");}.ff3_c00205{font-family:ff3_c00205;line-height:0.755859;font-style:normal;font-weight:normal;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_41a5b24cf3af4c5acdb3bbcb.woff2')format("woff");}.ff4_c00205{font-family:ff4_c00205;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00205{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00205{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00205{vertical-align:0.000000px;}
.ls0_c00205{letter-spacing:0.000000px;}
.ls1_c00205{letter-spacing:0.012000px;}
.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:-17.064000px;}
.ws1_c00205{word-spacing:0.000000px;}
._1_c00205{margin-left:-3.895200px;}
._5_c00205{margin-left:-2.044800px;}
._3_c00205{width:1.188000px;}
._8_c00205{width:2.498400px;}
._7_c00205{width:3.679200px;}
._4_c00205{width:5.004000px;}
._0_c00205{width:6.177600px;}
._6_c00205{width:8.280000px;}
._2_c00205{width:10.101600px;}
.fc1_c00205{color:rgb(0,0,153);}
.fc0_c00205{color:rgb(0,0,0);}
.fs0_c00205{font-size:54.000000px;}
.fs2_c00205{font-size:60.000000px;}
.fs1_c00205{font-size:72.000000px;}
.y0_c00205{bottom:0.000000px;}
.y3_c00205{bottom:10.500000px;}
.y7_c00205{bottom:11.999985px;}
.y2_c00205{bottom:43.500000px;}
.y9_c00205{bottom:67.335000px;}
.y6_c00205{bottom:139.335015px;}
.y5_c00205{bottom:578.835000px;}
.y4_c00205{bottom:605.835000px;}
.y1_c00205{bottom:646.335000px;}
.y8_c00205{bottom:1193.835000px;}
.h3_c00205{height:41.633789px;}
.h8_c00205{height:44.208984px;}
.h5_c00205{height:51.187500px;}
.h7_c00205{height:56.074219px;}
.h6_c00205{height:408.000000px;}
.h2_c00205{height:466.500000px;}
.h4_c00205{height:1261.500000px;}
.h0_c00205{height:1262.835000px;}
.h1_c00205{height:1263.000000px;}
.w4_c00205{width:676.934850px;}
.w2_c00205{width:676.935000px;}
.w3_c00205{width:892.500000px;}
.w0_c00205{width:892.935000px;}
.w1_c00205{width:893.250000px;}
.x0_c00205{left:0.000000px;}
.x1_c00205{left:66.000000px;}
.x3_c00205{left:85.556715px;}
.x2_c00205{left:165.373500px;}
.x4_c00205{left:265.621500px;}
@media print{
.v0_c00205{vertical-align:0.000000pt;}
.ls0_c00205{letter-spacing:0.000000pt;}
.ls1_c00205{letter-spacing:0.010667pt;}
.ws0_c00205{word-spacing:-15.168000pt;}
.ws1_c00205{word-spacing:0.000000pt;}
._1_c00205{margin-left:-3.462400pt;}
._5_c00205{margin-left:-1.817600pt;}
._3_c00205{width:1.056000pt;}
._8_c00205{width:2.220800pt;}
._7_c00205{width:3.270400pt;}
._4_c00205{width:4.448000pt;}
._0_c00205{width:5.491200pt;}
._6_c00205{width:7.360000pt;}
._2_c00205{width:8.979200pt;}
.fs0_c00205{font-size:48.000000pt;}
.fs2_c00205{font-size:53.333333pt;}
.fs1_c00205{font-size:64.000000pt;}
.y0_c00205{bottom:0.000000pt;}
.y3_c00205{bottom:9.333333pt;}
.y7_c00205{bottom:10.666653pt;}
.y2_c00205{bottom:38.666667pt;}
.y9_c00205{bottom:59.853333pt;}
.y6_c00205{bottom:123.853347pt;}
.y5_c00205{bottom:514.520000pt;}
.y4_c00205{bottom:538.520000pt;}
.y1_c00205{bottom:574.520000pt;}
.y8_c00205{bottom:1061.186667pt;}
.h3_c00205{height:37.007812pt;}
.h8_c00205{height:39.296875pt;}
.h5_c00205{height:45.500000pt;}
.h7_c00205{height:49.843750pt;}
.h6_c00205{height:362.666667pt;}
.h2_c00205{height:414.666667pt;}
.h4_c00205{height:1121.333333pt;}
.h0_c00205{height:1122.520000pt;}
.h1_c00205{height:1122.666667pt;}
.w4_c00205{width:601.719867pt;}
.w2_c00205{width:601.720000pt;}
.w3_c00205{width:793.333333pt;}
.w0_c00205{width:793.720000pt;}
.w1_c00205{width:794.000000pt;}
.x0_c00205{left:0.000000pt;}
.x1_c00205{left:58.666667pt;}
.x3_c00205{left:76.050413pt;}
.x2_c00205{left:146.998667pt;}
.x4_c00205{left:236.108000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e6fc75264d4cb44e4a46dc5e.woff2')format("woff");}.ff1_c00206{font-family:ff1_c00206;line-height:0.934082;font-style:normal;font-weight:normal;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_6430fbe3540fb8776f706baf.woff2')format("woff");}.ff2_c00206{font-family:ff2_c00206;line-height:0.915527;font-style:normal;font-weight:normal;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_643536ed0ccce6b873b4a5bc.woff2')format("woff");}.ff3_c00206{font-family:ff3_c00206;line-height:0.956543;font-style:normal;font-weight:normal;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_963d544042177305c233612b.woff2')format("woff");}.ff4_c00206{font-family:ff4_c00206;line-height:0.901367;font-style:normal;font-weight:normal;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_10f3563b31c41f9661fa87b7.woff2')format("woff");}.ff5_c00206{font-family:ff5_c00206;line-height:0.891113;font-style: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);}
.v2_c00206{vertical-align:-23.086200px;}
.v3_c00206{vertical-align:-15.400200px;}
.v0_c00206{vertical-align:0.000000px;}
.v1_c00206{vertical-align:23.086200px;}
.ls2_c00206{letter-spacing:-0.009600px;}
.ls1_c00206{letter-spacing:0.000000px;}
.ls3_c00206{letter-spacing:0.008000px;}
.ls0_c00206{letter-spacing:0.012000px;}
.sc__c00206{text-shadow:none;}
.sc0_c00206{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00206{-webkit-text-stroke:0px transparent;}
.sc0_c00206{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00206{word-spacing:-19.800000px;}
.ws1_c00206{word-spacing:-13.190400px;}
.ws2_c00206{word-spacing:-11.128001px;}
.ws3_c00206{word-spacing:-10.000001px;}
.ws4_c00206{word-spacing:0.000000px;}
._16_c00206{margin-left:-10.584000px;}
._14_c00206{margin-left:-7.236000px;}
._7_c00206{margin-left:-5.241600px;}
._5_c00206{margin-left:-3.780000px;}
._c_c00206{margin-left:-2.592000px;}
._1_c00206{margin-left:-1.303200px;}
._18_c00206{width:1.000800px;}
._4_c00206{width:2.001600px;}
._2_c00206{width:3.031200px;}
._6_c00206{width:4.435200px;}
._a_c00206{width:6.163200px;}
._9_c00206{width:8.071200px;}
._8_c00206{width:9.388800px;}
._d_c00206{width:10.677600px;}
._b_c00206{width:12.420000px;}
._17_c00206{width:14.452800px;}
._3_c00206{width:16.524000px;}
._0_c00206{width:18.381600px;}
._e_c00206{width:29.635200px;}
._11_c00206{width:31.996800px;}
._13_c00206{width:33.984000px;}
._10_c00206{width:35.323200px;}
._12_c00206{width:36.590400px;}
._f_c00206{width:37.720800px;}
._15_c00206{width:39.204000px;}
.fc0_c00206{color:rgb(0,0,0);}
.fs4_c00206{font-size:40.000002px;}
.fs1_c00206{font-size:48.000000px;}
.fs2_c00206{font-size:54.000000px;}
.fs3_c00206{font-size:60.000000px;}
.fs0_c00206{font-size:72.000000px;}
.y0_c00206{bottom:0.000000px;}
.y9_c00206{bottom:12.000000px;}
.y11_c00206{bottom:67.335000px;}
.y14_c00206{bottom:135.585000px;}
.y13_c00206{bottom:180.585000px;}
.y12_c00206{bottom:225.685050px;}
.yf_c00206{bottom:272.835000px;}
.ye_c00206{bottom:299.835000px;}
.yd_c00206{bottom:326.835000px;}
.yc_c00206{bottom:353.835000px;}
.yb_c00206{bottom:380.835000px;}
.ya_c00206{bottom:407.835000px;}
.y8_c00206{bottom:452.835000px;}
.y7_c00206{bottom:911.835000px;}
.y6_c00206{bottom:938.835000px;}
.y5_c00206{bottom:986.835000px;}
.y4_c00206{bottom:1013.835000px;}
.y3_c00206{bottom:1040.835000px;}
.y2_c00206{bottom:1067.835000px;}
.y1_c00206{bottom:1094.835000px;}
.y10_c00206{bottom:1193.835000px;}
.h9_c00206{height:27.343751px;}
.h8_c00206{height:29.414064px;}
.h6_c00206{height:41.633789px;}
.h7_c00206{height:44.121094px;}
.h3_c00206{height:51.257812px;}
.h4_c00206{height:57.258075px;}
.h5_c00206{height:427.500000px;}
.h2_c00206{height:1261.500000px;}
.h0_c00206{height:1262.835000px;}
.h1_c00206{height:1263.000000px;}
.w3_c00206{width:676.935000px;}
.w2_c00206{width:892.500000px;}
.w0_c00206{width:892.935000px;}
.w1_c00206{width:893.250000px;}
.x0_c00206{left:0.000000px;}
.x2_c00206{left:127.144365px;}
.x1_c00206{left:150.519750px;}
.x3_c00206{left:380.516100px;}
.x4_c00206{left:802.427700px;}
@media print{
.v2_c00206{vertical-align:-20.521067pt;}
.v3_c00206{vertical-align:-13.689067pt;}
.v0_c00206{vertical-align:0.000000pt;}
.v1_c00206{vertical-align:20.521067pt;}
.ls2_c00206{letter-spacing:-0.008533pt;}
.ls1_c00206{letter-spacing:0.000000pt;}
.ls3_c00206{letter-spacing:0.007111pt;}
.ls0_c00206{letter-spacing:0.010667pt;}
.ws0_c00206{word-spacing:-17.600000pt;}
.ws1_c00206{word-spacing:-11.724800pt;}
.ws2_c00206{word-spacing:-9.891556pt;}
.ws3_c00206{word-spacing:-8.888889pt;}
.ws4_c00206{word-spacing:0.000000pt;}
._16_c00206{margin-left:-9.408000pt;}
._14_c00206{margin-left:-6.432000pt;}
._7_c00206{margin-left:-4.659200pt;}
._5_c00206{margin-left:-3.360000pt;}
._c_c00206{margin-left:-2.304000pt;}
._1_c00206{margin-left:-1.158400pt;}
._18_c00206{width:0.889600pt;}
._4_c00206{width:1.779200pt;}
._2_c00206{width:2.694400pt;}
._6_c00206{width:3.942400pt;}
._a_c00206{width:5.478400pt;}
._9_c00206{width:7.174400pt;}
._8_c00206{width:8.345600pt;}
._d_c00206{width:9.491200pt;}
._b_c00206{width:11.040000pt;}
._17_c00206{width:12.846933pt;}
._3_c00206{width:14.688000pt;}
._0_c00206{width:16.339200pt;}
._e_c00206{width:26.342400pt;}
._11_c00206{width:28.441600pt;}
._13_c00206{width:30.208000pt;}
._10_c00206{width:31.398400pt;}
._12_c00206{width:32.524800pt;}
._f_c00206{width:33.529600pt;}
._15_c00206{width:34.848000pt;}
.fs4_c00206{font-size:35.555557pt;}
.fs1_c00206{font-size:42.666667pt;}
.fs2_c00206{font-size:48.000000pt;}
.fs3_c00206{font-size:53.333333pt;}
.fs0_c00206{font-size:64.000000pt;}
.y0_c00206{bottom:0.000000pt;}
.y9_c00206{bottom:10.666667pt;}
.y11_c00206{bottom:59.853333pt;}
.y14_c00206{bottom:120.520000pt;}
.y13_c00206{bottom:160.520000pt;}
.y12_c00206{bottom:200.608933pt;}
.yf_c00206{bottom:242.520000pt;}
.ye_c00206{bottom:266.520000pt;}
.yd_c00206{bottom:290.520000pt;}
.yc_c00206{bottom:314.520000pt;}
.yb_c00206{bottom:338.520000pt;}
.ya_c00206{bottom:362.520000pt;}
.y8_c00206{bottom:402.520000pt;}
.y7_c00206{bottom:810.520000pt;}
.y6_c00206{bottom:834.520000pt;}
.y5_c00206{bottom:877.186667pt;}
.y4_c00206{bottom:901.186667pt;}
.y3_c00206{bottom:925.186667pt;}
.y2_c00206{bottom:949.186667pt;}
.y1_c00206{bottom:973.186667pt;}
.y10_c00206{bottom:1061.186667pt;}
.h9_c00206{height:24.305557pt;}
.h8_c00206{height:26.145835pt;}
.h6_c00206{height:37.007812pt;}
.h7_c00206{height:39.218750pt;}
.h3_c00206{height:45.562500pt;}
.h4_c00206{height:50.896067pt;}
.h5_c00206{height:380.000000pt;}
.h2_c00206{height:1121.333333pt;}
.h0_c00206{height:1122.520000pt;}
.h1_c00206{height:1122.666667pt;}
.w3_c00206{width:601.720000pt;}
.w2_c00206{width:793.333333pt;}
.w0_c00206{width:793.720000pt;}
.w1_c00206{width:794.000000pt;}
.x0_c00206{left:0.000000pt;}
.x2_c00206{left:113.017213pt;}
.x1_c00206{left:133.795333pt;}
.x3_c00206{left:338.236533pt;}
.x4_c00206{left:713.269067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_62a68673f17bc8a617cf0e7b.woff2')format("woff");}.ff1_c00207{font-family:ff1_c00207;line-height:0.934082;font-style:normal;font-weight:normal;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_bf6b272f299f0094b711b4f0.woff2')format("woff");}.ff2_c00207{font-family:ff2_c00207;line-height:0.915527;font-style:normal;font-weight:normal;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_64f3a154f3bf66aa39e65621.woff2')format("woff");}.ff3_c00207{font-family:ff3_c00207;line-height:0.755859;font-style:normal;font-weight:normal;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_9bf51712f474e5d45d810dd7.woff2')format("woff");}.ff4_c00207{font-family:ff4_c00207;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00207;src:url('chunks/assets/font_0c9b084c32b58bf8dcae8342.woff2')format("woff");}.ff5_c00207{font-family:ff5_c00207;line-height:0.901367;font-style:normal;font-weight: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_c00207;src:url('chunks/assets/font_5421e2e724d42d0a23c5e332.woff2')format("woff");}.ff6_c00207{font-family:ff6_c00207;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00207{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00207{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00207{vertical-align:-15.000000px;}
.v0_c00207{vertical-align:0.000000px;}
.v1_c00207{vertical-align:23.086200px;}
.ls3_c00207{letter-spacing:-3.906000px;}
.ls1_c00207{letter-spacing:-0.009600px;}
.ls0_c00207{letter-spacing:0.000000px;}
.ls2_c00207{letter-spacing:0.012000px;}
.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:-13.190400px;}
.ws1_c00207{word-spacing:-10.000001px;}
.ws2_c00207{word-spacing:0.000000px;}
._1c_c00207{margin-left:-10.713600px;}
._c_c00207{margin-left:-6.811200px;}
._1d_c00207{margin-left:-5.789040px;}
._3_c00207{margin-left:-4.658400px;}
._d_c00207{margin-left:-3.333600px;}
._1_c00207{margin-left:-2.318400px;}
._13_c00207{margin-left:-1.159200px;}
._7_c00207{width:1.087200px;}
._18_c00207{width:2.224800px;}
._5_c00207{width:3.261600px;}
._b_c00207{width:4.579200px;}
._17_c00207{width:5.932800px;}
._15_c00207{width:7.092000px;}
._1a_c00207{width:8.150400px;}
._16_c00207{width:9.288000px;}
._19_c00207{width:10.778400px;}
._9_c00207{width:11.923200px;}
._8_c00207{width:14.191200px;}
._a_c00207{width:15.220800px;}
._1b_c00207{width:16.876800px;}
._e_c00207{width:18.504000px;}
._12_c00207{width:22.896000px;}
._10_c00207{width:25.070400px;}
._11_c00207{width:26.186400px;}
._14_c00207{width:27.439200px;}
._f_c00207{width:28.476000px;}
._6_c00207{width:29.498400px;}
._0_c00207{width:32.760000px;}
._2_c00207{width:35.092800px;}
._4_c00207{width:37.425600px;}
.fc0_c00207{color:rgb(0,0,0);}
.fs4_c00207{font-size:40.000002px;}
.fs2_c00207{font-size:48.000000px;}
.fs1_c00207{font-size:54.000000px;}
.fs3_c00207{font-size:60.000000px;}
.fs0_c00207{font-size:72.000000px;}
.y0_c00207{bottom:0.000000px;}
.y5_c00207{bottom:12.000000px;}
.y16_c00207{bottom:67.335000px;}
.y18_c00207{bottom:131.835000px;}
.y17_c00207{bottom:155.085000px;}
.y14_c00207{bottom:235.335000px;}
.y13_c00207{bottom:262.335000px;}
.y12_c00207{bottom:289.335000px;}
.y11_c00207{bottom:316.335000px;}
.y10_c00207{bottom:343.335000px;}
.yf_c00207{bottom:370.335000px;}
.ye_c00207{bottom:397.335000px;}
.yd_c00207{bottom:445.335000px;}
.yc_c00207{bottom:472.335000px;}
.yb_c00207{bottom:499.335000px;}
.ya_c00207{bottom:526.335000px;}
.y9_c00207{bottom:553.335000px;}
.y8_c00207{bottom:580.335000px;}
.y7_c00207{bottom:607.335000px;}
.y6_c00207{bottom:634.335000px;}
.y4_c00207{bottom:674.835000px;}
.y3_c00207{bottom:1040.835000px;}
.y2_c00207{bottom:1067.835000px;}
.y1_c00207{bottom:1094.835000px;}
.y15_c00207{bottom:1193.835000px;}
.h9_c00207{height:27.343751px;}
.ha_c00207{height:41.015625px;}
.h5_c00207{height:41.633789px;}
.h8_c00207{height:44.208984px;}
.h3_c00207{height:51.257812px;}
.h7_c00207{height:56.074219px;}
.h6_c00207{height:57.258075px;}
.h4_c00207{height:334.500000px;}
.h2_c00207{height:1261.500000px;}
.h0_c00207{height:1262.835000px;}
.h1_c00207{height:1263.000000px;}
.w3_c00207{width:676.935000px;}
.w2_c00207{width:892.500000px;}
.w0_c00207{width:892.935000px;}
.w1_c00207{width:893.250000px;}
.x0_c00207{left:0.000000px;}
.x1_c00207{left:65.480310px;}
.x2_c00207{left:170.739150px;}
@media print{
.v2_c00207{vertical-align:-13.333333pt;}
.v0_c00207{vertical-align:0.000000pt;}
.v1_c00207{vertical-align:20.521067pt;}
.ls3_c00207{letter-spacing:-3.472000pt;}
.ls1_c00207{letter-spacing:-0.008533pt;}
.ls0_c00207{letter-spacing:0.000000pt;}
.ls2_c00207{letter-spacing:0.010667pt;}
.ws0_c00207{word-spacing:-11.724800pt;}
.ws1_c00207{word-spacing:-8.888889pt;}
.ws2_c00207{word-spacing:0.000000pt;}
._1c_c00207{margin-left:-9.523200pt;}
._c_c00207{margin-left:-6.054400pt;}
._1d_c00207{margin-left:-5.145813pt;}
._3_c00207{margin-left:-4.140800pt;}
._d_c00207{margin-left:-2.963200pt;}
._1_c00207{margin-left:-2.060800pt;}
._13_c00207{margin-left:-1.030400pt;}
._7_c00207{width:0.966400pt;}
._18_c00207{width:1.977600pt;}
._5_c00207{width:2.899200pt;}
._b_c00207{width:4.070400pt;}
._17_c00207{width:5.273600pt;}
._15_c00207{width:6.304000pt;}
._1a_c00207{width:7.244800pt;}
._16_c00207{width:8.256000pt;}
._19_c00207{width:9.580800pt;}
._9_c00207{width:10.598400pt;}
._8_c00207{width:12.614400pt;}
._a_c00207{width:13.529600pt;}
._1b_c00207{width:15.001600pt;}
._e_c00207{width:16.448000pt;}
._12_c00207{width:20.352000pt;}
._10_c00207{width:22.284800pt;}
._11_c00207{width:23.276800pt;}
._14_c00207{width:24.390400pt;}
._f_c00207{width:25.312000pt;}
._6_c00207{width:26.220800pt;}
._0_c00207{width:29.120000pt;}
._2_c00207{width:31.193600pt;}
._4_c00207{width:33.267200pt;}
.fs4_c00207{font-size:35.555557pt;}
.fs2_c00207{font-size:42.666667pt;}
.fs1_c00207{font-size:48.000000pt;}
.fs3_c00207{font-size:53.333333pt;}
.fs0_c00207{font-size:64.000000pt;}
.y0_c00207{bottom:0.000000pt;}
.y5_c00207{bottom:10.666667pt;}
.y16_c00207{bottom:59.853333pt;}
.y18_c00207{bottom:117.186667pt;}
.y17_c00207{bottom:137.853333pt;}
.y14_c00207{bottom:209.186667pt;}
.y13_c00207{bottom:233.186667pt;}
.y12_c00207{bottom:257.186667pt;}
.y11_c00207{bottom:281.186667pt;}
.y10_c00207{bottom:305.186667pt;}
.yf_c00207{bottom:329.186667pt;}
.ye_c00207{bottom:353.186667pt;}
.yd_c00207{bottom:395.853333pt;}
.yc_c00207{bottom:419.853333pt;}
.yb_c00207{bottom:443.853333pt;}
.ya_c00207{bottom:467.853333pt;}
.y9_c00207{bottom:491.853333pt;}
.y8_c00207{bottom:515.853333pt;}
.y7_c00207{bottom:539.853333pt;}
.y6_c00207{bottom:563.853333pt;}
.y4_c00207{bottom:599.853333pt;}
.y3_c00207{bottom:925.186667pt;}
.y2_c00207{bottom:949.186667pt;}
.y1_c00207{bottom:973.186667pt;}
.y15_c00207{bottom:1061.186667pt;}
.h9_c00207{height:24.305557pt;}
.ha_c00207{height:36.458333pt;}
.h5_c00207{height:37.007812pt;}
.h8_c00207{height:39.296875pt;}
.h3_c00207{height:45.562500pt;}
.h7_c00207{height:49.843750pt;}
.h6_c00207{height:50.896067pt;}
.h4_c00207{height:297.333333pt;}
.h2_c00207{height:1121.333333pt;}
.h0_c00207{height:1122.520000pt;}
.h1_c00207{height:1122.666667pt;}
.w3_c00207{width:601.720000pt;}
.w2_c00207{width:793.333333pt;}
.w0_c00207{width:793.720000pt;}
.w1_c00207{width:794.000000pt;}
.x0_c00207{left:0.000000pt;}
.x1_c00207{left:58.204720pt;}
.x2_c00207{left:151.768133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_50d0f22ed7cf9d5a2db4a726.woff2')format("woff");}.ff1_c00208{font-family:ff1_c00208;line-height:0.934082;font-style:normal;font-weight:normal;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_bed1fb323d47ed886bf95cb9.woff2')format("woff");}.ff2_c00208{font-family:ff2_c00208;line-height:0.975586;font-style:normal;font-weight:normal;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_d7022fec16494c1971da3592.woff2')format("woff");}.ff3_c00208{font-family:ff3_c00208;line-height:0.956543;font-style:normal;font-weight:normal;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_151b2b437725f9b684c17368.woff2')format("woff");}.ff4_c00208{font-family:ff4_c00208;line-height:1.043945;font-style:normal;font-weight:normal;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_ec7a933c4b9bc5ce8dbe68db.woff2')format("woff");}.ff5_c00208{font-family:ff5_c00208;line-height:0.891113;font-style: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);}
.v2_c00208{vertical-align:-23.086200px;}
.v3_c00208{vertical-align:-15.000000px;}
.v0_c00208{vertical-align:0.000000px;}
.v1_c00208{vertical-align:23.086200px;}
.ls7_c00208{letter-spacing:-3.480000px;}
.ls8_c00208{letter-spacing:-3.474000px;}
.ls6_c00208{letter-spacing:-1.926000px;}
.ls9_c00208{letter-spacing:-1.602000px;}
.ls4_c00208{letter-spacing:-0.009600px;}
.ls5_c00208{letter-spacing:-0.007200px;}
.ls3_c00208{letter-spacing:0.000000px;}
.ls2_c00208{letter-spacing:0.012000px;}
.ls0_c00208{letter-spacing:0.021600px;}
.ls1_c00208{letter-spacing:1.231200px;}
.sc__c00208{text-shadow:none;}
.sc0_c00208{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00208{-webkit-text-stroke:0px transparent;}
.sc0_c00208{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00208{word-spacing:-13.190400px;}
.ws1_c00208{word-spacing:-10.000001px;}
.ws2_c00208{word-spacing:0.000000px;}
._c_c00208{margin-left:-5.472000px;}
._3_c00208{margin-left:-3.736800px;}
._18_c00208{margin-left:-2.635200px;}
._6_c00208{margin-left:-1.490400px;}
._2_c00208{width:1.281600px;}
._0_c00208{width:2.613600px;}
._5_c00208{width:3.952800px;}
._1_c00208{width:5.018400px;}
._b_c00208{width:6.307200px;}
._4_c00208{width:8.056800px;}
._9_c00208{width:10.008000px;}
._8_c00208{width:11.030400px;}
._17_c00208{width:12.052800px;}
._7_c00208{width:13.212000px;}
._a_c00208{width:14.803200px;}
._13_c00208{width:16.977600px;}
._16_c00208{width:18.288000px;}
._15_c00208{width:21.009600px;}
._14_c00208{width:22.824000px;}
._12_c00208{width:31.586400px;}
._11_c00208{width:32.846400px;}
._10_c00208{width:34.128000px;}
._e_c00208{width:35.618400px;}
._f_c00208{width:37.864800px;}
._d_c00208{width:39.600000px;}
.fc0_c00208{color:rgb(0,0,0);}
.fs4_c00208{font-size:40.000002px;}
.fs1_c00208{font-size:48.000000px;}
.fs2_c00208{font-size:54.000000px;}
.fs3_c00208{font-size:60.000000px;}
.fs0_c00208{font-size:72.000000px;}
.y0_c00208{bottom:0.000000px;}
.y4_c00208{bottom:12.000000px;}
.y10_c00208{bottom:67.335000px;}
.y15_c00208{bottom:131.835000px;}
.y14_c00208{bottom:155.085000px;}
.y13_c00208{bottom:200.085000px;}
.y12_c00208{bottom:241.335000px;}
.y11_c00208{bottom:264.585000px;}
.ye_c00208{bottom:316.335000px;}
.yd_c00208{bottom:343.335000px;}
.yc_c00208{bottom:370.335000px;}
.yb_c00208{bottom:397.335000px;}
.ya_c00208{bottom:424.335000px;}
.y9_c00208{bottom:451.335000px;}
.y8_c00208{bottom:478.335000px;}
.y7_c00208{bottom:526.335000px;}
.y6_c00208{bottom:553.335000px;}
.y5_c00208{bottom:580.335000px;}
.y3_c00208{bottom:620.835000px;}
.y2_c00208{bottom:1067.835000px;}
.y1_c00208{bottom:1094.835000px;}
.yf_c00208{bottom:1193.835000px;}
.h8_c00208{height:34.570312px;}
.h6_c00208{height:41.633789px;}
.h7_c00208{height:44.121094px;}
.h9_c00208{height:49.570312px;}
.h4_c00208{height:51.257812px;}
.h3_c00208{height:57.258075px;}
.h5_c00208{height:393.000000px;}
.h2_c00208{height:1261.500000px;}
.h0_c00208{height:1262.835000px;}
.h1_c00208{height:1263.000000px;}
.w3_c00208{width:676.935000px;}
.w2_c00208{width:892.500000px;}
.w0_c00208{width:892.935000px;}
.w1_c00208{width:893.250000px;}
.x0_c00208{left:0.000000px;}
.x2_c00208{left:7.500000px;}
.x1_c00208{left:150.519750px;}
.x3_c00208{left:380.516100px;}
.x4_c00208{left:802.427700px;}
@media print{
.v2_c00208{vertical-align:-20.521067pt;}
.v3_c00208{vertical-align:-13.333333pt;}
.v0_c00208{vertical-align:0.000000pt;}
.v1_c00208{vertical-align:20.521067pt;}
.ls7_c00208{letter-spacing:-3.093333pt;}
.ls8_c00208{letter-spacing:-3.088000pt;}
.ls6_c00208{letter-spacing:-1.712000pt;}
.ls9_c00208{letter-spacing:-1.424000pt;}
.ls4_c00208{letter-spacing:-0.008533pt;}
.ls5_c00208{letter-spacing:-0.006400pt;}
.ls3_c00208{letter-spacing:0.000000pt;}
.ls2_c00208{letter-spacing:0.010667pt;}
.ls0_c00208{letter-spacing:0.019200pt;}
.ls1_c00208{letter-spacing:1.094400pt;}
.ws0_c00208{word-spacing:-11.724800pt;}
.ws1_c00208{word-spacing:-8.888889pt;}
.ws2_c00208{word-spacing:0.000000pt;}
._c_c00208{margin-left:-4.864000pt;}
._3_c00208{margin-left:-3.321600pt;}
._18_c00208{margin-left:-2.342400pt;}
._6_c00208{margin-left:-1.324800pt;}
._2_c00208{width:1.139200pt;}
._0_c00208{width:2.323200pt;}
._5_c00208{width:3.513600pt;}
._1_c00208{width:4.460800pt;}
._b_c00208{width:5.606400pt;}
._4_c00208{width:7.161600pt;}
._9_c00208{width:8.896000pt;}
._8_c00208{width:9.804800pt;}
._17_c00208{width:10.713600pt;}
._7_c00208{width:11.744000pt;}
._a_c00208{width:13.158400pt;}
._13_c00208{width:15.091200pt;}
._16_c00208{width:16.256000pt;}
._15_c00208{width:18.675200pt;}
._14_c00208{width:20.288000pt;}
._12_c00208{width:28.076800pt;}
._11_c00208{width:29.196800pt;}
._10_c00208{width:30.336000pt;}
._e_c00208{width:31.660800pt;}
._f_c00208{width:33.657600pt;}
._d_c00208{width:35.200000pt;}
.fs4_c00208{font-size:35.555557pt;}
.fs1_c00208{font-size:42.666667pt;}
.fs2_c00208{font-size:48.000000pt;}
.fs3_c00208{font-size:53.333333pt;}
.fs0_c00208{font-size:64.000000pt;}
.y0_c00208{bottom:0.000000pt;}
.y4_c00208{bottom:10.666667pt;}
.y10_c00208{bottom:59.853333pt;}
.y15_c00208{bottom:117.186667pt;}
.y14_c00208{bottom:137.853333pt;}
.y13_c00208{bottom:177.853333pt;}
.y12_c00208{bottom:214.520000pt;}
.y11_c00208{bottom:235.186667pt;}
.ye_c00208{bottom:281.186667pt;}
.yd_c00208{bottom:305.186667pt;}
.yc_c00208{bottom:329.186667pt;}
.yb_c00208{bottom:353.186667pt;}
.ya_c00208{bottom:377.186667pt;}
.y9_c00208{bottom:401.186667pt;}
.y8_c00208{bottom:425.186667pt;}
.y7_c00208{bottom:467.853333pt;}
.y6_c00208{bottom:491.853333pt;}
.y5_c00208{bottom:515.853333pt;}
.y3_c00208{bottom:551.853333pt;}
.y2_c00208{bottom:949.186667pt;}
.y1_c00208{bottom:973.186667pt;}
.yf_c00208{bottom:1061.186667pt;}
.h8_c00208{height:30.729167pt;}
.h6_c00208{height:37.007812pt;}
.h7_c00208{height:39.218750pt;}
.h9_c00208{height:44.062500pt;}
.h4_c00208{height:45.562500pt;}
.h3_c00208{height:50.896067pt;}
.h5_c00208{height:349.333333pt;}
.h2_c00208{height:1121.333333pt;}
.h0_c00208{height:1122.520000pt;}
.h1_c00208{height:1122.666667pt;}
.w3_c00208{width:601.720000pt;}
.w2_c00208{width:793.333333pt;}
.w0_c00208{width:793.720000pt;}
.w1_c00208{width:794.000000pt;}
.x0_c00208{left:0.000000pt;}
.x2_c00208{left:6.666667pt;}
.x1_c00208{left:133.795333pt;}
.x3_c00208{left:338.236533pt;}
.x4_c00208{left:713.269067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_00065fef89017f7434a158f4.woff2')format("woff");}.ff1_c00209{font-family:ff1_c00209;line-height:0.927734;font-style:normal;font-weight:normal;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_12fce96197cd6c865d4b61cf.woff2')format("woff");}.ff2_c00209{font-family:ff2_c00209;line-height:0.934082;font-style:normal;font-weight:normal;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_0467719d7ce9c9291d8a913c.woff2')format("woff");}.ff3_c00209{font-family:ff3_c00209;line-height:0.755859;font-style:normal;font-weight:normal;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_d848d23fd05bf4cd8ffb5fa0.woff2')format("woff");}.ff4_c00209{font-family:ff4_c00209;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00209;src:url('chunks/assets/font_391daf08bd554c2f2b72e530.woff2')format("woff");}.ff5_c00209{font-family:ff5_c00209;line-height:0.904785;font-style:normal;font-weight: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_c00209;src:url('chunks/assets/font_25d5330273763a0c9adf8a62.woff2')format("woff");}.ff6_c00209{font-family:ff6_c00209;line-height:0.888672;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00209{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00209{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00209{vertical-align:-23.086200px;}
.v3_c00209{vertical-align:-15.000000px;}
.v0_c00209{vertical-align:0.000000px;}
.v1_c00209{vertical-align:23.086200px;}
.ls1_c00209{letter-spacing:-0.009600px;}
.ls0_c00209{letter-spacing:0.000000px;}
.ls2_c00209{letter-spacing:0.012000px;}
.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:-19.800000px;}
.ws1_c00209{word-spacing:-13.190400px;}
.ws2_c00209{word-spacing:-10.000001px;}
.ws3_c00209{word-spacing:0.000000px;}
._d_c00209{margin-left:-7.300800px;}
._3_c00209{margin-left:-5.068800px;}
._5_c00209{margin-left:-3.103200px;}
._7_c00209{margin-left:-1.252800px;}
._2_c00209{width:1.483200px;}
._1_c00209{width:2.570400px;}
._8_c00209{width:3.909600px;}
._17_c00209{width:4.953600px;}
._0_c00209{width:6.004800px;}
._11_c00209{width:7.725600px;}
._6_c00209{width:9.172800px;}
._4_c00209{width:10.526400px;}
._13_c00209{width:12.585600px;}
._12_c00209{width:14.227200px;}
._14_c00209{width:15.681600px;}
._15_c00209{width:16.790400px;}
._16_c00209{width:18.216000px;}
._f_c00209{width:21.513600px;}
._a_c00209{width:22.881600px;}
._b_c00209{width:23.961600px;}
._10_c00209{width:25.459200px;}
._9_c00209{width:26.712000px;}
._c_c00209{width:28.504800px;}
._e_c00209{width:30.492000px;}
.fc0_c00209{color:rgb(0,0,0);}
.fs4_c00209{font-size:40.000002px;}
.fs2_c00209{font-size:48.000000px;}
.fs0_c00209{font-size:54.000000px;}
.fs3_c00209{font-size:60.000000px;}
.fs1_c00209{font-size:72.000000px;}
.y0_c00209{bottom:0.000000px;}
.y2_c00209{bottom:12.000000px;}
.yf_c00209{bottom:67.335000px;}
.y11_c00209{bottom:135.585000px;}
.y10_c00209{bottom:180.585000px;}
.yd_c00209{bottom:307.335000px;}
.yc_c00209{bottom:334.335000px;}
.yb_c00209{bottom:361.335000px;}
.ya_c00209{bottom:388.335000px;}
.y9_c00209{bottom:436.335000px;}
.y8_c00209{bottom:463.335000px;}
.y7_c00209{bottom:490.335000px;}
.y6_c00209{bottom:538.335000px;}
.y5_c00209{bottom:565.335000px;}
.y4_c00209{bottom:613.335000px;}
.y3_c00209{bottom:640.335000px;}
.y1_c00209{bottom:685.335000px;}
.ye_c00209{bottom:1193.835000px;}
.h9_c00209{height:27.480470px;}
.h3_c00209{height:42.292969px;}
.h8_c00209{height:44.208984px;}
.h5_c00209{height:51.257812px;}
.h7_c00209{height:56.074219px;}
.h6_c00209{height:57.258075px;}
.h2_c00209{height:427.500000px;}
.h4_c00209{height:1261.500000px;}
.h0_c00209{height:1262.835000px;}
.h1_c00209{height:1263.000000px;}
.w2_c00209{width:676.935000px;}
.w3_c00209{width:892.500000px;}
.w0_c00209{width:892.935000px;}
.w1_c00209{width:893.250000px;}
.x0_c00209{left:0.000000px;}
.x1_c00209{left:66.000000px;}
.x2_c00209{left:183.685500px;}
@media print{
.v2_c00209{vertical-align:-20.521067pt;}
.v3_c00209{vertical-align:-13.333333pt;}
.v0_c00209{vertical-align:0.000000pt;}
.v1_c00209{vertical-align:20.521067pt;}
.ls1_c00209{letter-spacing:-0.008533pt;}
.ls0_c00209{letter-spacing:0.000000pt;}
.ls2_c00209{letter-spacing:0.010667pt;}
.ws0_c00209{word-spacing:-17.600000pt;}
.ws1_c00209{word-spacing:-11.724800pt;}
.ws2_c00209{word-spacing:-8.888889pt;}
.ws3_c00209{word-spacing:0.000000pt;}
._d_c00209{margin-left:-6.489600pt;}
._3_c00209{margin-left:-4.505600pt;}
._5_c00209{margin-left:-2.758400pt;}
._7_c00209{margin-left:-1.113600pt;}
._2_c00209{width:1.318400pt;}
._1_c00209{width:2.284800pt;}
._8_c00209{width:3.475200pt;}
._17_c00209{width:4.403200pt;}
._0_c00209{width:5.337600pt;}
._11_c00209{width:6.867200pt;}
._6_c00209{width:8.153600pt;}
._4_c00209{width:9.356800pt;}
._13_c00209{width:11.187200pt;}
._12_c00209{width:12.646400pt;}
._14_c00209{width:13.939200pt;}
._15_c00209{width:14.924800pt;}
._16_c00209{width:16.192000pt;}
._f_c00209{width:19.123200pt;}
._a_c00209{width:20.339200pt;}
._b_c00209{width:21.299200pt;}
._10_c00209{width:22.630400pt;}
._9_c00209{width:23.744000pt;}
._c_c00209{width:25.337600pt;}
._e_c00209{width:27.104000pt;}
.fs4_c00209{font-size:35.555557pt;}
.fs2_c00209{font-size:42.666667pt;}
.fs0_c00209{font-size:48.000000pt;}
.fs3_c00209{font-size:53.333333pt;}
.fs1_c00209{font-size:64.000000pt;}
.y0_c00209{bottom:0.000000pt;}
.y2_c00209{bottom:10.666667pt;}
.yf_c00209{bottom:59.853333pt;}
.y11_c00209{bottom:120.520000pt;}
.y10_c00209{bottom:160.520000pt;}
.yd_c00209{bottom:273.186667pt;}
.yc_c00209{bottom:297.186667pt;}
.yb_c00209{bottom:321.186667pt;}
.ya_c00209{bottom:345.186667pt;}
.y9_c00209{bottom:387.853333pt;}
.y8_c00209{bottom:411.853333pt;}
.y7_c00209{bottom:435.853333pt;}
.y6_c00209{bottom:478.520000pt;}
.y5_c00209{bottom:502.520000pt;}
.y4_c00209{bottom:545.186667pt;}
.y3_c00209{bottom:569.186667pt;}
.y1_c00209{bottom:609.186667pt;}
.ye_c00209{bottom:1061.186667pt;}
.h9_c00209{height:24.427085pt;}
.h3_c00209{height:37.593750pt;}
.h8_c00209{height:39.296875pt;}
.h5_c00209{height:45.562500pt;}
.h7_c00209{height:49.843750pt;}
.h6_c00209{height:50.896067pt;}
.h2_c00209{height:380.000000pt;}
.h4_c00209{height:1121.333333pt;}
.h0_c00209{height:1122.520000pt;}
.h1_c00209{height:1122.666667pt;}
.w2_c00209{width:601.720000pt;}
.w3_c00209{width:793.333333pt;}
.w0_c00209{width:793.720000pt;}
.w1_c00209{width:794.000000pt;}
.x0_c00209{left:0.000000pt;}
.x1_c00209{left:58.666667pt;}
.x2_c00209{left:163.276000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3e4c0575c0b6311b9ccd1ab8.woff2')format("woff");}.ff1_c00210{font-family:ff1_c00210;line-height:0.939453;font-style:normal;font-weight:normal;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_874d4e096fa5e08e718cdfc8.woff2')format("woff");}.ff2_c00210{font-family:ff2_c00210;line-height:0.934082;font-style:normal;font-weight:normal;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_a93f26b04d5d87df58cd6746.woff2')format("woff");}.ff3_c00210{font-family:ff3_c00210;line-height:0.956543;font-style:normal;font-weight:normal;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_5e8141e443e648503695b1e4.woff2')format("woff");}.ff4_c00210{font-family:ff4_c00210;line-height:1.043945;font-style:normal;font-weight:normal;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_7ea834661e7cc86a5aad8ebc.woff2')format("woff");}.ff5_c00210{font-family:ff5_c00210;line-height:0.891113;font-style: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);}
.v2_c00210{vertical-align:-23.086200px;}
.v3_c00210{vertical-align:-15.000000px;}
.v0_c00210{vertical-align:0.000000px;}
.v1_c00210{vertical-align:23.086200px;}
.ls3_c00210{letter-spacing:-0.019200px;}
.ls2_c00210{letter-spacing:0.000000px;}
.ls0_c00210{letter-spacing:0.007800px;}
.ls1_c00210{letter-spacing:0.012000px;}
.sc__c00210{text-shadow:none;}
.sc0_c00210{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00210{-webkit-text-stroke:0px transparent;}
.sc0_c00210{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00210{word-spacing:-19.800000px;}
.ws1_c00210{word-spacing:-13.200000px;}
.ws2_c00210{word-spacing:-10.000001px;}
.ws3_c00210{word-spacing:0.000000px;}
._0_c00210{margin-left:-4.888800px;}
._5_c00210{margin-left:-3.628800px;}
._2_c00210{margin-left:-2.512800px;}
._b_c00210{margin-left:-1.245600px;}
._1_c00210{width:1.044000px;}
._3_c00210{width:2.397600px;}
._4_c00210{width:4.226400px;}
._7_c00210{width:5.731200px;}
._6_c00210{width:7.164000px;}
._8_c00210{width:9.100800px;}
._10_c00210{width:10.821600px;}
._13_c00210{width:11.851200px;}
._12_c00210{width:13.125600px;}
._f_c00210{width:14.457600px;}
._11_c00210{width:15.544800px;}
._a_c00210{width:16.646400px;}
._9_c00210{width:17.928000px;}
._d_c00210{width:20.988000px;}
._c_c00210{width:22.399200px;}
._e_c00210{width:23.904000px;}
._15_c00210{width:42.261600px;}
._14_c00210{width:44.550780px;}
.fc1_c00210{color:rgb(255,255,255);}
.fc0_c00210{color:rgb(0,0,0);}
.fs5_c00210{font-size:40.000002px;}
.fs2_c00210{font-size:48.000000px;}
.fs4_c00210{font-size:60.000000px;}
.fs1_c00210{font-size:72.000000px;}
.fs0_c00210{font-size:78.000000px;}
.fs3_c00210{font-size:96.000000px;}
.y0_c00210{bottom:0.000000px;}
.y17_c00210{bottom:67.335000px;}
.y19_c00210{bottom:135.585000px;}
.y18_c00210{bottom:180.585000px;}
.y13_c00210{bottom:328.335000px;}
.y12_c00210{bottom:355.335000px;}
.y11_c00210{bottom:415.335000px;}
.y10_c00210{bottom:437.835000px;}
.yf_c00210{bottom:484.335000px;}
.ye_c00210{bottom:554.835000px;}
.yd_c00210{bottom:581.835000px;}
.yc_c00210{bottom:629.835000px;}
.yb_c00210{bottom:656.835000px;}
.ya_c00210{bottom:683.835000px;}
.y9_c00210{bottom:710.835000px;}
.y8_c00210{bottom:737.835000px;}
.y7_c00210{bottom:764.835000px;}
.y6_c00210{bottom:791.835000px;}
.y5_c00210{bottom:839.835000px;}
.y4_c00210{bottom:866.835000px;}
.y3_c00210{bottom:893.835000px;}
.y2_c00210{bottom:920.835000px;}
.y1_c00210{bottom:967.335000px;}
.y15_c00210{bottom:1037.835000px;}
.y14_c00210{bottom:1066.335000px;}
.y16_c00210{bottom:1193.835000px;}
.h8_c00210{height:34.570312px;}
.h7_c00210{height:44.121094px;}
.h4_c00210{height:51.257812px;}
.h3_c00210{height:56.100586px;}
.h5_c00210{height:57.258075px;}
.h6_c00210{height:68.343750px;}
.h2_c00210{height:1261.500000px;}
.h0_c00210{height:1262.835000px;}
.h1_c00210{height:1263.000000px;}
.w2_c00210{width:892.500000px;}
.w0_c00210{width:892.935000px;}
.w1_c00210{width:893.250000px;}
.x0_c00210{left:0.000000px;}
.x1_c00210{left:150.519750px;}
.x3_c00210{left:174.709980px;}
.x2_c00210{left:180.298875px;}
.x4_c00210{left:380.516100px;}
.x5_c00210{left:802.427700px;}
@media print{
.v2_c00210{vertical-align:-20.521067pt;}
.v3_c00210{vertical-align:-13.333333pt;}
.v0_c00210{vertical-align:0.000000pt;}
.v1_c00210{vertical-align:20.521067pt;}
.ls3_c00210{letter-spacing:-0.017067pt;}
.ls2_c00210{letter-spacing:0.000000pt;}
.ls0_c00210{letter-spacing:0.006933pt;}
.ls1_c00210{letter-spacing:0.010667pt;}
.ws0_c00210{word-spacing:-17.600000pt;}
.ws1_c00210{word-spacing:-11.733333pt;}
.ws2_c00210{word-spacing:-8.888889pt;}
.ws3_c00210{word-spacing:0.000000pt;}
._0_c00210{margin-left:-4.345600pt;}
._5_c00210{margin-left:-3.225600pt;}
._2_c00210{margin-left:-2.233600pt;}
._b_c00210{margin-left:-1.107200pt;}
._1_c00210{width:0.928000pt;}
._3_c00210{width:2.131200pt;}
._4_c00210{width:3.756800pt;}
._7_c00210{width:5.094400pt;}
._6_c00210{width:6.368000pt;}
._8_c00210{width:8.089600pt;}
._10_c00210{width:9.619200pt;}
._13_c00210{width:10.534400pt;}
._12_c00210{width:11.667200pt;}
._f_c00210{width:12.851200pt;}
._11_c00210{width:13.817600pt;}
._a_c00210{width:14.796800pt;}
._9_c00210{width:15.936000pt;}
._d_c00210{width:18.656000pt;}
._c_c00210{width:19.910400pt;}
._e_c00210{width:21.248000pt;}
._15_c00210{width:37.565867pt;}
._14_c00210{width:39.600693pt;}
.fs5_c00210{font-size:35.555557pt;}
.fs2_c00210{font-size:42.666667pt;}
.fs4_c00210{font-size:53.333333pt;}
.fs1_c00210{font-size:64.000000pt;}
.fs0_c00210{font-size:69.333333pt;}
.fs3_c00210{font-size:85.333333pt;}
.y0_c00210{bottom:0.000000pt;}
.y17_c00210{bottom:59.853333pt;}
.y19_c00210{bottom:120.520000pt;}
.y18_c00210{bottom:160.520000pt;}
.y13_c00210{bottom:291.853333pt;}
.y12_c00210{bottom:315.853333pt;}
.y11_c00210{bottom:369.186667pt;}
.y10_c00210{bottom:389.186667pt;}
.yf_c00210{bottom:430.520000pt;}
.ye_c00210{bottom:493.186667pt;}
.yd_c00210{bottom:517.186667pt;}
.yc_c00210{bottom:559.853333pt;}
.yb_c00210{bottom:583.853333pt;}
.ya_c00210{bottom:607.853333pt;}
.y9_c00210{bottom:631.853333pt;}
.y8_c00210{bottom:655.853333pt;}
.y7_c00210{bottom:679.853333pt;}
.y6_c00210{bottom:703.853333pt;}
.y5_c00210{bottom:746.520000pt;}
.y4_c00210{bottom:770.520000pt;}
.y3_c00210{bottom:794.520000pt;}
.y2_c00210{bottom:818.520000pt;}
.y1_c00210{bottom:859.853333pt;}
.y15_c00210{bottom:922.520000pt;}
.y14_c00210{bottom:947.853333pt;}
.y16_c00210{bottom:1061.186667pt;}
.h8_c00210{height:30.729167pt;}
.h7_c00210{height:39.218750pt;}
.h4_c00210{height:45.562500pt;}
.h3_c00210{height:49.867188pt;}
.h5_c00210{height:50.896067pt;}
.h6_c00210{height:60.750000pt;}
.h2_c00210{height:1121.333333pt;}
.h0_c00210{height:1122.520000pt;}
.h1_c00210{height:1122.666667pt;}
.w2_c00210{width:793.333333pt;}
.w0_c00210{width:793.720000pt;}
.w1_c00210{width:794.000000pt;}
.x0_c00210{left:0.000000pt;}
.x1_c00210{left:133.795333pt;}
.x3_c00210{left:155.297760pt;}
.x2_c00210{left:160.265667pt;}
.x4_c00210{left:338.236533pt;}
.x5_c00210{left:713.269067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_94f25d20f9cfd737f32ce3e8.woff2')format("woff");}.ff1_c00211{font-family:ff1_c00211;line-height:0.783203;font-style:normal;font-weight:normal;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_3586014cd2bc52c49574e325.woff2')format("woff");}.ff2_c00211{font-family:ff2_c00211;line-height:0.933105;font-style:normal;font-weight:normal;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_1d688497e4a7f6b072c0bd66.woff2')format("woff");}.ff3_c00211{font-family:ff3_c00211;line-height:0.756836;font-style:normal;font-weight:normal;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_d6c6de30a3a35dfdba39df56.woff2')format("woff");}.ff4_c00211{font-family:ff4_c00211;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00211{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00211{vertical-align:0.000000px;}
.ls0_c00211{letter-spacing:0.000000px;}
.ls1_c00211{letter-spacing:0.012000px;}
.sc__c00211{text-shadow:none;}
.sc0_c00211{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00211{-webkit-text-stroke:0px transparent;}
.sc0_c00211{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00211{word-spacing:0.000000px;}
._b_c00211{margin-left:-6.314400px;}
._7_c00211{margin-left:-4.204800px;}
._9_c00211{margin-left:-3.110400px;}
._4_c00211{margin-left:-2.109600px;}
._e_c00211{margin-left:-1.008000px;}
._a_c00211{width:1.000800px;}
._0_c00211{width:2.325600px;}
._2_c00211{width:4.075200px;}
._d_c00211{width:5.212800px;}
._c_c00211{width:7.293600px;}
._3_c00211{width:10.584000px;}
._1_c00211{width:12.254400px;}
._6_c00211{width:14.673600px;}
._5_c00211{width:16.682400px;}
._8_c00211{width:17.942400px;}
._10_c00211{width:21.938400px;}
._f_c00211{width:24.163200px;}
.fc0_c00211{color:rgb(0,0,0);}
.fs0_c00211{font-size:54.000000px;}
.fs2_c00211{font-size:60.000000px;}
.fs1_c00211{font-size:72.000000px;}
.y0_c00211{bottom:0.000000px;}
.y2_c00211{bottom:12.000000px;}
.y9_c00211{bottom:67.335000px;}
.y7_c00211{bottom:146.835000px;}
.y6_c00211{bottom:173.835000px;}
.y5_c00211{bottom:221.835000px;}
.y4_c00211{bottom:248.835000px;}
.y3_c00211{bottom:289.335000px;}
.y1_c00211{bottom:682.335000px;}
.y8_c00211{bottom:1193.835000px;}
.h3_c00211{height:41.633789px;}
.h8_c00211{height:44.208984px;}
.h6_c00211{height:51.187500px;}
.h7_c00211{height:56.074219px;}
.h4_c00211{height:390.000000px;}
.h2_c00211{height:430.500000px;}
.h5_c00211{height:1261.500000px;}
.h0_c00211{height:1262.835000px;}
.h1_c00211{height:1263.000000px;}
.w3_c00211{width:676.934850px;}
.w2_c00211{width:676.935000px;}
.w4_c00211{width:892.500000px;}
.w0_c00211{width:892.935000px;}
.w1_c00211{width:893.250000px;}
.x0_c00211{left:0.000000px;}
.x1_c00211{left:66.000000px;}
.x2_c00211{left:265.621500px;}
.x3_c00211{left:286.497750px;}
@media print{
.v0_c00211{vertical-align:0.000000pt;}
.ls0_c00211{letter-spacing:0.000000pt;}
.ls1_c00211{letter-spacing:0.010667pt;}
.ws0_c00211{word-spacing:0.000000pt;}
._b_c00211{margin-left:-5.612800pt;}
._7_c00211{margin-left:-3.737600pt;}
._9_c00211{margin-left:-2.764800pt;}
._4_c00211{margin-left:-1.875200pt;}
._e_c00211{margin-left:-0.896000pt;}
._a_c00211{width:0.889600pt;}
._0_c00211{width:2.067200pt;}
._2_c00211{width:3.622400pt;}
._d_c00211{width:4.633600pt;}
._c_c00211{width:6.483200pt;}
._3_c00211{width:9.408000pt;}
._1_c00211{width:10.892800pt;}
._6_c00211{width:13.043200pt;}
._5_c00211{width:14.828800pt;}
._8_c00211{width:15.948800pt;}
._10_c00211{width:19.500800pt;}
._f_c00211{width:21.478400pt;}
.fs0_c00211{font-size:48.000000pt;}
.fs2_c00211{font-size:53.333333pt;}
.fs1_c00211{font-size:64.000000pt;}
.y0_c00211{bottom:0.000000pt;}
.y2_c00211{bottom:10.666667pt;}
.y9_c00211{bottom:59.853333pt;}
.y7_c00211{bottom:130.520000pt;}
.y6_c00211{bottom:154.520000pt;}
.y5_c00211{bottom:197.186667pt;}
.y4_c00211{bottom:221.186667pt;}
.y3_c00211{bottom:257.186667pt;}
.y1_c00211{bottom:606.520000pt;}
.y8_c00211{bottom:1061.186667pt;}
.h3_c00211{height:37.007812pt;}
.h8_c00211{height:39.296875pt;}
.h6_c00211{height:45.500000pt;}
.h7_c00211{height:49.843750pt;}
.h4_c00211{height:346.666667pt;}
.h2_c00211{height:382.666667pt;}
.h5_c00211{height:1121.333333pt;}
.h0_c00211{height:1122.520000pt;}
.h1_c00211{height:1122.666667pt;}
.w3_c00211{width:601.719867pt;}
.w2_c00211{width:601.720000pt;}
.w4_c00211{width:793.333333pt;}
.w0_c00211{width:793.720000pt;}
.w1_c00211{width:794.000000pt;}
.x0_c00211{left:0.000000pt;}
.x1_c00211{left:58.666667pt;}
.x2_c00211{left:236.108000pt;}
.x3_c00211{left:254.664667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8f615d43b331dd40918d7e5a.woff2')format("woff");}.ff1_c00212{font-family:ff1_c00212;line-height:0.933105;font-style:normal;font-weight:normal;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_a21e33dc54ba893aa740cb11.woff2')format("woff");}.ff2_c00212{font-family:ff2_c00212;line-height:0.783203;font-style:normal;font-weight:normal;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_bd6aa31267bcd1b9969fbc41.woff2')format("woff");}.ff3_c00212{font-family:ff3_c00212;line-height:0.956543;font-style:normal;font-weight:normal;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_fe57d8bb2317e08805d45657.woff2')format("woff");}.ff4_c00212{font-family:ff4_c00212;line-height:1.043945;font-style:normal;font-weight:normal;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_ab93e13c7c75b2a84a669da0.woff2')format("woff");}.ff5_c00212{font-family:ff5_c00212;line-height:0.891113;font-style: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);}
.v2_c00212{vertical-align:-23.086200px;}
.v3_c00212{vertical-align:-15.000000px;}
.v0_c00212{vertical-align:0.000000px;}
.v1_c00212{vertical-align:23.086200px;}
.ls1_c00212{letter-spacing:0.000000px;}
.ls0_c00212{letter-spacing:0.012000px;}
.sc__c00212{text-shadow:none;}
.sc0_c00212{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00212{-webkit-text-stroke:0px transparent;}
.sc0_c00212{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00212{word-spacing:-13.200000px;}
.ws1_c00212{word-spacing:-10.000001px;}
.ws2_c00212{word-spacing:0.000000px;}
._9_c00212{margin-left:-6.991200px;}
._a_c00212{margin-left:-4.384800px;}
._c_c00212{margin-left:-3.153600px;}
._3_c00212{margin-left:-1.800000px;}
._5_c00212{width:1.411200px;}
._7_c00212{width:3.060000px;}
._0_c00212{width:4.759200px;}
._d_c00212{width:6.040800px;}
._b_c00212{width:7.480800px;}
._1_c00212{width:25.164000px;}
._8_c00212{width:26.798400px;}
._6_c00212{width:28.468800px;}
._2_c00212{width:29.901600px;}
._4_c00212{width:31.658400px;}
.fc0_c00212{color:rgb(0,0,0);}
.fs4_c00212{font-size:40.000002px;}
.fs2_c00212{font-size:48.000000px;}
.fs1_c00212{font-size:54.000000px;}
.fs3_c00212{font-size:60.000000px;}
.fs0_c00212{font-size:72.000000px;}
.y0_c00212{bottom:0.000000px;}
.y5_c00212{bottom:12.000000px;}
.y9_c00212{bottom:67.335000px;}
.ya_c00212{bottom:135.585000px;}
.y7_c00212{bottom:544.335000px;}
.y6_c00212{bottom:571.335000px;}
.y4_c00212{bottom:616.335000px;}
.y3_c00212{bottom:1040.835000px;}
.y2_c00212{bottom:1067.835000px;}
.y1_c00212{bottom:1094.835000px;}
.y8_c00212{bottom:1193.835000px;}
.h8_c00212{height:34.570312px;}
.h5_c00212{height:41.633789px;}
.h7_c00212{height:44.121094px;}
.h3_c00212{height:51.187500px;}
.h6_c00212{height:57.211200px;}
.h4_c00212{height:393.000000px;}
.h2_c00212{height:1261.500000px;}
.h0_c00212{height:1262.835000px;}
.h1_c00212{height:1263.000000px;}
.w3_c00212{width:676.934850px;}
.w2_c00212{width:892.500000px;}
.w0_c00212{width:892.935000px;}
.w1_c00212{width:893.250000px;}
.x0_c00212{left:0.000000px;}
.x1_c00212{left:150.519750px;}
.x2_c00212{left:278.541450px;}
.x3_c00212{left:380.516100px;}
.x4_c00212{left:802.427700px;}
@media print{
.v2_c00212{vertical-align:-20.521067pt;}
.v3_c00212{vertical-align:-13.333333pt;}
.v0_c00212{vertical-align:0.000000pt;}
.v1_c00212{vertical-align:20.521067pt;}
.ls1_c00212{letter-spacing:0.000000pt;}
.ls0_c00212{letter-spacing:0.010667pt;}
.ws0_c00212{word-spacing:-11.733333pt;}
.ws1_c00212{word-spacing:-8.888889pt;}
.ws2_c00212{word-spacing:0.000000pt;}
._9_c00212{margin-left:-6.214400pt;}
._a_c00212{margin-left:-3.897600pt;}
._c_c00212{margin-left:-2.803200pt;}
._3_c00212{margin-left:-1.600000pt;}
._5_c00212{width:1.254400pt;}
._7_c00212{width:2.720000pt;}
._0_c00212{width:4.230400pt;}
._d_c00212{width:5.369600pt;}
._b_c00212{width:6.649600pt;}
._1_c00212{width:22.368000pt;}
._8_c00212{width:23.820800pt;}
._6_c00212{width:25.305600pt;}
._2_c00212{width:26.579200pt;}
._4_c00212{width:28.140800pt;}
.fs4_c00212{font-size:35.555557pt;}
.fs2_c00212{font-size:42.666667pt;}
.fs1_c00212{font-size:48.000000pt;}
.fs3_c00212{font-size:53.333333pt;}
.fs0_c00212{font-size:64.000000pt;}
.y0_c00212{bottom:0.000000pt;}
.y5_c00212{bottom:10.666667pt;}
.y9_c00212{bottom:59.853333pt;}
.ya_c00212{bottom:120.520000pt;}
.y7_c00212{bottom:483.853333pt;}
.y6_c00212{bottom:507.853333pt;}
.y4_c00212{bottom:547.853333pt;}
.y3_c00212{bottom:925.186667pt;}
.y2_c00212{bottom:949.186667pt;}
.y1_c00212{bottom:973.186667pt;}
.y8_c00212{bottom:1061.186667pt;}
.h8_c00212{height:30.729167pt;}
.h5_c00212{height:37.007812pt;}
.h7_c00212{height:39.218750pt;}
.h3_c00212{height:45.500000pt;}
.h6_c00212{height:50.854400pt;}
.h4_c00212{height:349.333333pt;}
.h2_c00212{height:1121.333333pt;}
.h0_c00212{height:1122.520000pt;}
.h1_c00212{height:1122.666667pt;}
.w3_c00212{width:601.719867pt;}
.w2_c00212{width:793.333333pt;}
.w0_c00212{width:793.720000pt;}
.w1_c00212{width:794.000000pt;}
.x0_c00212{left:0.000000pt;}
.x1_c00212{left:133.795333pt;}
.x2_c00212{left:247.592400pt;}
.x3_c00212{left:338.236533pt;}
.x4_c00212{left:713.269067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7b426826a6f9c0b481b51161.woff2')format("woff");}.ff1_c00213{font-family:ff1_c00213;line-height:0.884766;font-style:normal;font-weight:normal;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_3c7fe20540fae8fe6f564f73.woff2')format("woff");}.ff2_c00213{font-family:ff2_c00213;line-height:0.934082;font-style:normal;font-weight:normal;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_45f7693b5ea8721bd2c093c9.woff2')format("woff");}.ff3_c00213{font-family:ff3_c00213;line-height:0.755859;font-style:normal;font-weight:normal;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_3a0e7149b93ab04d882a6c79.woff2')format("woff");}.ff4_c00213{font-family:ff4_c00213;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00213;src:url('chunks/assets/font_6442612aa543fda857e2499f.woff2')format("woff");}.ff5_c00213{font-family:ff5_c00213;line-height:1.043945;font-style:normal;font-weight: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_c00213;src:url('chunks/assets/font_ea0aacf0c6438b85a7151f65.woff2')format("woff");}.ff6_c00213{font-family:ff6_c00213;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00213{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00213{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00213{vertical-align:-23.086200px;}
.v3_c00213{vertical-align:-15.000000px;}
.v0_c00213{vertical-align:0.000000px;}
.v1_c00213{vertical-align:23.086200px;}
.ls6_c00213{letter-spacing:0.000000px;}
.ls5_c00213{letter-spacing:0.006019px;}
.ls0_c00213{letter-spacing:0.007800px;}
.ls7_c00213{letter-spacing:0.012000px;}
.ls2_c00213{letter-spacing:0.341400px;}
.ls3_c00213{letter-spacing:1.759999px;}
.ls1_c00213{letter-spacing:2.028600px;}
.ls4_c00213{letter-spacing:3.587700px;}
.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:-13.200000px;}
.ws1_c00213{word-spacing:-10.000001px;}
.ws2_c00213{word-spacing:0.000000px;}
._14_c00213{margin-left:-14.256000px;}
._e_c00213{margin-left:-10.584000px;}
._6_c00213{margin-left:-9.100800px;}
._16_c00213{margin-left:-7.696080px;}
._15_c00213{margin-left:-6.642021px;}
._5_c00213{margin-left:-4.888800px;}
._3_c00213{margin-left:-3.369600px;}
._1_c00213{margin-left:-2.253600px;}
._7_c00213{margin-left:-1.101600px;}
._f_c00213{width:1.008000px;}
._0_c00213{width:2.325600px;}
._a_c00213{width:3.715200px;}
._2_c00213{width:4.982400px;}
._4_c00213{width:6.357600px;}
._9_c00213{width:7.495200px;}
._10_c00213{width:8.568000px;}
._b_c00213{width:9.691200px;}
._8_c00213{width:10.900800px;}
._d_c00213{width:12.067200px;}
._c_c00213{width:13.082400px;}
._11_c00213{width:14.198400px;}
._13_c00213{width:16.027200px;}
._12_c00213{width:17.330400px;}
.fc1_c00213{color:rgb(255,255,255);}
.fc0_c00213{color:rgb(0,0,0);}
.fs5_c00213{font-size:40.000002px;}
.fs2_c00213{font-size:48.000000px;}
.fs4_c00213{font-size:60.000000px;}
.fs1_c00213{font-size:72.000000px;}
.fs0_c00213{font-size:78.000000px;}
.fs3_c00213{font-size:96.000000px;}
.y0_c00213{bottom:0.000000px;}
.y16_c00213{bottom:67.335000px;}
.y1b_c00213{bottom:135.685050px;}
.y1a_c00213{bottom:180.585000px;}
.y19_c00213{bottom:221.835000px;}
.y18_c00213{bottom:245.185050px;}
.y17_c00213{bottom:290.085000px;}
.y13_c00213{bottom:398.835000px;}
.y12_c00213{bottom:425.835000px;}
.y11_c00213{bottom:452.835000px;}
.y10_c00213{bottom:479.835000px;}
.yf_c00213{bottom:506.835000px;}
.ye_c00213{bottom:554.835000px;}
.yd_c00213{bottom:581.835000px;}
.yc_c00213{bottom:629.835000px;}
.yb_c00213{bottom:656.835000px;}
.ya_c00213{bottom:683.835000px;}
.y9_c00213{bottom:710.835000px;}
.y8_c00213{bottom:737.835000px;}
.y7_c00213{bottom:764.835000px;}
.y6_c00213{bottom:812.835000px;}
.y5_c00213{bottom:839.835000px;}
.y4_c00213{bottom:866.835000px;}
.y3_c00213{bottom:914.835000px;}
.y2_c00213{bottom:941.835000px;}
.y1_c00213{bottom:988.335000px;}
.y14_c00213{bottom:1066.335000px;}
.y15_c00213{bottom:1193.835000px;}
.ha_c00213{height:34.170112px;}
.h9_c00213{height:34.570312px;}
.h8_c00213{height:44.208984px;}
.hb_c00213{height:49.570312px;}
.h4_c00213{height:51.257812px;}
.h3_c00213{height:55.224609px;}
.h7_c00213{height:56.074219px;}
.h5_c00213{height:57.258075px;}
.h6_c00213{height:68.343750px;}
.h2_c00213{height:1261.500000px;}
.h0_c00213{height:1262.835000px;}
.h1_c00213{height:1263.000000px;}
.w2_c00213{width:892.500000px;}
.w0_c00213{width:892.935000px;}
.w1_c00213{width:893.250000px;}
.x0_c00213{left:0.000000px;}
.x1_c00213{left:65.480310px;}
.x2_c00213{left:94.798875px;}
@media print{
.v2_c00213{vertical-align:-20.521067pt;}
.v3_c00213{vertical-align:-13.333333pt;}
.v0_c00213{vertical-align:0.000000pt;}
.v1_c00213{vertical-align:20.521067pt;}
.ls6_c00213{letter-spacing:0.000000pt;}
.ls5_c00213{letter-spacing:0.005350pt;}
.ls0_c00213{letter-spacing:0.006933pt;}
.ls7_c00213{letter-spacing:0.010667pt;}
.ls2_c00213{letter-spacing:0.303467pt;}
.ls3_c00213{letter-spacing:1.564443pt;}
.ls1_c00213{letter-spacing:1.803200pt;}
.ls4_c00213{letter-spacing:3.189067pt;}
.ws0_c00213{word-spacing:-11.733333pt;}
.ws1_c00213{word-spacing:-8.888889pt;}
.ws2_c00213{word-spacing:0.000000pt;}
._14_c00213{margin-left:-12.672000pt;}
._e_c00213{margin-left:-9.408000pt;}
._6_c00213{margin-left:-8.089600pt;}
._16_c00213{margin-left:-6.840960pt;}
._15_c00213{margin-left:-5.904019pt;}
._5_c00213{margin-left:-4.345600pt;}
._3_c00213{margin-left:-2.995200pt;}
._1_c00213{margin-left:-2.003200pt;}
._7_c00213{margin-left:-0.979200pt;}
._f_c00213{width:0.896000pt;}
._0_c00213{width:2.067200pt;}
._a_c00213{width:3.302400pt;}
._2_c00213{width:4.428800pt;}
._4_c00213{width:5.651200pt;}
._9_c00213{width:6.662400pt;}
._10_c00213{width:7.616000pt;}
._b_c00213{width:8.614400pt;}
._8_c00213{width:9.689600pt;}
._d_c00213{width:10.726400pt;}
._c_c00213{width:11.628800pt;}
._11_c00213{width:12.620800pt;}
._13_c00213{width:14.246400pt;}
._12_c00213{width:15.404800pt;}
.fs5_c00213{font-size:35.555557pt;}
.fs2_c00213{font-size:42.666667pt;}
.fs4_c00213{font-size:53.333333pt;}
.fs1_c00213{font-size:64.000000pt;}
.fs0_c00213{font-size:69.333333pt;}
.fs3_c00213{font-size:85.333333pt;}
.y0_c00213{bottom:0.000000pt;}
.y16_c00213{bottom:59.853333pt;}
.y1b_c00213{bottom:120.608933pt;}
.y1a_c00213{bottom:160.520000pt;}
.y19_c00213{bottom:197.186667pt;}
.y18_c00213{bottom:217.942267pt;}
.y17_c00213{bottom:257.853333pt;}
.y13_c00213{bottom:354.520000pt;}
.y12_c00213{bottom:378.520000pt;}
.y11_c00213{bottom:402.520000pt;}
.y10_c00213{bottom:426.520000pt;}
.yf_c00213{bottom:450.520000pt;}
.ye_c00213{bottom:493.186667pt;}
.yd_c00213{bottom:517.186667pt;}
.yc_c00213{bottom:559.853333pt;}
.yb_c00213{bottom:583.853333pt;}
.ya_c00213{bottom:607.853333pt;}
.y9_c00213{bottom:631.853333pt;}
.y8_c00213{bottom:655.853333pt;}
.y7_c00213{bottom:679.853333pt;}
.y6_c00213{bottom:722.520000pt;}
.y5_c00213{bottom:746.520000pt;}
.y4_c00213{bottom:770.520000pt;}
.y3_c00213{bottom:813.186667pt;}
.y2_c00213{bottom:837.186667pt;}
.y1_c00213{bottom:878.520000pt;}
.y14_c00213{bottom:947.853333pt;}
.y15_c00213{bottom:1061.186667pt;}
.ha_c00213{height:30.373433pt;}
.h9_c00213{height:30.729167pt;}
.h8_c00213{height:39.296875pt;}
.hb_c00213{height:44.062500pt;}
.h4_c00213{height:45.562500pt;}
.h3_c00213{height:49.088542pt;}
.h7_c00213{height:49.843750pt;}
.h5_c00213{height:50.896067pt;}
.h6_c00213{height:60.750000pt;}
.h2_c00213{height:1121.333333pt;}
.h0_c00213{height:1122.520000pt;}
.h1_c00213{height:1122.666667pt;}
.w2_c00213{width:793.333333pt;}
.w0_c00213{width:793.720000pt;}
.w1_c00213{width:794.000000pt;}
.x0_c00213{left:0.000000pt;}
.x1_c00213{left:58.204720pt;}
.x2_c00213{left:84.265667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_07679a0c0c13c07d912c4eff.woff2')format("woff");}.ff1_c00214{font-family:ff1_c00214;line-height:0.933105;font-style:normal;font-weight:normal;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_2970d9124afbf73e9e9e5e1b.woff2')format("woff");}.ff2_c00214{font-family:ff2_c00214;line-height:0.939453;font-style:normal;font-weight:normal;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_bd27911cb982686e6e4393f8.woff2')format("woff");}.ff3_c00214{font-family:ff3_c00214;line-height:0.976074;font-style:normal;font-weight:normal;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_935d2dd49e1f5e1bc0b18d88.woff2')format("woff");}.ff4_c00214{font-family:ff4_c00214;line-height:0.956543;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00214{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00214{vertical-align:0.000000px;}
.ls2_c00214{letter-spacing:0.000000px;}
.ls0_c00214{letter-spacing:0.007800px;}
.ls1_c00214{letter-spacing:0.012000px;}
.sc__c00214{text-shadow:none;}
.sc0_c00214{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00214{-webkit-text-stroke:0px transparent;}
.sc0_c00214{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00214{word-spacing:0.000000px;}
._b_c00214{margin-left:-10.584000px;}
._0_c00214{margin-left:-9.280800px;}
._e_c00214{margin-left:-7.761600px;}
._2_c00214{margin-left:-4.168800px;}
._8_c00214{margin-left:-2.361600px;}
._6_c00214{margin-left:-1.080000px;}
._4_c00214{width:1.274400px;}
._5_c00214{width:3.052800px;}
._1_c00214{width:4.334400px;}
._7_c00214{width:5.428800px;}
._9_c00214{width:7.344000px;}
._3_c00214{width:8.532000px;}
._a_c00214{width:10.317600px;}
._c_c00214{width:12.607200px;}
._10_c00214{width:13.622400px;}
._d_c00214{width:14.803200px;}
._f_c00214{width:16.200000px;}
.fc0_c00214{color:rgb(0,0,0);}
.fs2_c00214{font-size:54.000000px;}
.fs3_c00214{font-size:60.000000px;}
.fs0_c00214{font-size:72.000000px;}
.fs1_c00214{font-size:78.000000px;}
.y0_c00214{bottom:0.000000px;}
.yb_c00214{bottom:12.000000px;}
.yf_c00214{bottom:67.335000px;}
.yd_c00214{bottom:134.835000px;}
.yc_c00214{bottom:161.835000px;}
.ya_c00214{bottom:206.835000px;}
.y9_c00214{bottom:794.835000px;}
.y8_c00214{bottom:821.835000px;}
.y7_c00214{bottom:848.835000px;}
.y6_c00214{bottom:875.835000px;}
.y5_c00214{bottom:922.335000px;}
.y4_c00214{bottom:992.835000px;}
.y3_c00214{bottom:1040.835000px;}
.y2_c00214{bottom:1067.835000px;}
.y1_c00214{bottom:1094.835000px;}
.ye_c00214{bottom:1193.835000px;}
.h6_c00214{height:42.292969px;}
.h7_c00214{height:44.121094px;}
.h3_c00214{height:51.187500px;}
.h4_c00214{height:56.100586px;}
.h5_c00214{height:556.500000px;}
.h2_c00214{height:1261.500000px;}
.h0_c00214{height:1262.835000px;}
.h1_c00214{height:1263.000000px;}
.w3_c00214{width:676.935000px;}
.w2_c00214{width:892.500000px;}
.w0_c00214{width:892.935000px;}
.w1_c00214{width:893.250000px;}
.x0_c00214{left:0.000000px;}
.x2_c00214{left:69.172800px;}
.x1_c00214{left:150.519750px;}
.x3_c00214{left:380.516100px;}
.x4_c00214{left:802.427700px;}
@media print{
.v0_c00214{vertical-align:0.000000pt;}
.ls2_c00214{letter-spacing:0.000000pt;}
.ls0_c00214{letter-spacing:0.006933pt;}
.ls1_c00214{letter-spacing:0.010667pt;}
.ws0_c00214{word-spacing:0.000000pt;}
._b_c00214{margin-left:-9.408000pt;}
._0_c00214{margin-left:-8.249600pt;}
._e_c00214{margin-left:-6.899200pt;}
._2_c00214{margin-left:-3.705600pt;}
._8_c00214{margin-left:-2.099200pt;}
._6_c00214{margin-left:-0.960000pt;}
._4_c00214{width:1.132800pt;}
._5_c00214{width:2.713600pt;}
._1_c00214{width:3.852800pt;}
._7_c00214{width:4.825600pt;}
._9_c00214{width:6.528000pt;}
._3_c00214{width:7.584000pt;}
._a_c00214{width:9.171200pt;}
._c_c00214{width:11.206400pt;}
._10_c00214{width:12.108800pt;}
._d_c00214{width:13.158400pt;}
._f_c00214{width:14.400000pt;}
.fs2_c00214{font-size:48.000000pt;}
.fs3_c00214{font-size:53.333333pt;}
.fs0_c00214{font-size:64.000000pt;}
.fs1_c00214{font-size:69.333333pt;}
.y0_c00214{bottom:0.000000pt;}
.yb_c00214{bottom:10.666667pt;}
.yf_c00214{bottom:59.853333pt;}
.yd_c00214{bottom:119.853333pt;}
.yc_c00214{bottom:143.853333pt;}
.ya_c00214{bottom:183.853333pt;}
.y9_c00214{bottom:706.520000pt;}
.y8_c00214{bottom:730.520000pt;}
.y7_c00214{bottom:754.520000pt;}
.y6_c00214{bottom:778.520000pt;}
.y5_c00214{bottom:819.853333pt;}
.y4_c00214{bottom:882.520000pt;}
.y3_c00214{bottom:925.186667pt;}
.y2_c00214{bottom:949.186667pt;}
.y1_c00214{bottom:973.186667pt;}
.ye_c00214{bottom:1061.186667pt;}
.h6_c00214{height:37.593750pt;}
.h7_c00214{height:39.218750pt;}
.h3_c00214{height:45.500000pt;}
.h4_c00214{height:49.867188pt;}
.h5_c00214{height:494.666667pt;}
.h2_c00214{height:1121.333333pt;}
.h0_c00214{height:1122.520000pt;}
.h1_c00214{height:1122.666667pt;}
.w3_c00214{width:601.720000pt;}
.w2_c00214{width:793.333333pt;}
.w0_c00214{width:793.720000pt;}
.w1_c00214{width:794.000000pt;}
.x0_c00214{left:0.000000pt;}
.x2_c00214{left:61.486933pt;}
.x1_c00214{left:133.795333pt;}
.x3_c00214{left:338.236533pt;}
.x4_c00214{left:713.269067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_af9e445db5cbae9cb47ad212.woff2')format("woff");}.ff1_c00215{font-family:ff1_c00215;line-height:0.934082;font-style:normal;font-weight:normal;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_5020e3c6d329cd77f6784f4f.woff2')format("woff");}.ff2_c00215{font-family:ff2_c00215;line-height:0.755859;font-style:normal;font-weight:normal;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_6fe948078da1020bcbd79d19.woff2')format("woff");}.ff3_c00215{font-family:ff3_c00215;line-height:1.155762;font-style:normal;font-weight:normal;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_54ef80d71940f6c9e05495d7.woff2')format("woff");}.ff4_c00215{font-family:ff4_c00215;line-height:1.043945;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00215;src:url('chunks/assets/font_21d85a2a176d034b9e62b5cf.woff2')format("woff");}.ff5_c00215{font-family:ff5_c00215;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00215{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00215{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00215{vertical-align:-23.086200px;}
.v3_c00215{vertical-align:-15.000000px;}
.v0_c00215{vertical-align:0.000000px;}
.v1_c00215{vertical-align:23.086200px;}
.ls3_c00215{letter-spacing:0.000000px;}
.ls4_c00215{letter-spacing:0.012000px;}
.ls2_c00215{letter-spacing:0.646200px;}
.ls1_c00215{letter-spacing:0.739800px;}
.ls0_c00215{letter-spacing:3.271800px;}
.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:-10.000001px;}
.ws1_c00215{word-spacing:0.000000px;}
._9_c00215{margin-left:-10.554480px;}
._13_c00215{margin-left:-6.642021px;}
._10_c00215{margin-left:-4.471680px;}
._5_c00215{margin-left:-3.448800px;}
._d_c00215{margin-left:-2.339520px;}
._0_c00215{margin-left:-1.267200px;}
._6_c00215{width:1.058400px;}
._3_c00215{width:2.390400px;}
._7_c00215{width:4.067760px;}
._a_c00215{width:5.284800px;}
._b_c00215{width:6.610080px;}
._c_c00215{width:8.121600px;}
._f_c00215{width:9.424320px;}
._e_c00215{width:10.728000px;}
._12_c00215{width:12.002400px;}
._4_c00215{width:13.017600px;}
._11_c00215{width:14.191200px;}
._2_c00215{width:15.393600px;}
._1_c00215{width:16.668000px;}
._8_c00215{width:18.057600px;}
.fc0_c00215{color:rgb(0,0,0);}
.fs3_c00215{font-size:40.000002px;}
.fs1_c00215{font-size:48.000000px;}
.fs2_c00215{font-size:60.000000px;}
.fs0_c00215{font-size:72.000000px;}
.y0_c00215{bottom:0.000000px;}
.yc_c00215{bottom:67.335000px;}
.yf_c00215{bottom:135.585000px;}
.ye_c00215{bottom:180.585000px;}
.yd_c00215{bottom:225.585000px;}
.ya_c00215{bottom:809.835000px;}
.y9_c00215{bottom:836.835000px;}
.y8_c00215{bottom:884.835000px;}
.y7_c00215{bottom:911.835000px;}
.y6_c00215{bottom:938.835000px;}
.y5_c00215{bottom:965.835000px;}
.y4_c00215{bottom:1013.835000px;}
.y3_c00215{bottom:1040.835000px;}
.y2_c00215{bottom:1067.835000px;}
.y1_c00215{bottom:1094.835000px;}
.yb_c00215{bottom:1193.835000px;}
.h7_c00215{height:34.570312px;}
.h6_c00215{height:44.208984px;}
.h4_c00215{height:51.257812px;}
.h5_c00215{height:56.074219px;}
.h3_c00215{height:57.258075px;}
.h2_c00215{height:1261.500000px;}
.h0_c00215{height:1262.835000px;}
.h1_c00215{height:1263.000000px;}
.w2_c00215{width:892.500000px;}
.w0_c00215{width:892.935000px;}
.w1_c00215{width:893.250000px;}
.x0_c00215{left:0.000000px;}
.x1_c00215{left:65.480310px;}
@media print{
.v2_c00215{vertical-align:-20.521067pt;}
.v3_c00215{vertical-align:-13.333333pt;}
.v0_c00215{vertical-align:0.000000pt;}
.v1_c00215{vertical-align:20.521067pt;}
.ls3_c00215{letter-spacing:0.000000pt;}
.ls4_c00215{letter-spacing:0.010667pt;}
.ls2_c00215{letter-spacing:0.574400pt;}
.ls1_c00215{letter-spacing:0.657600pt;}
.ls0_c00215{letter-spacing:2.908267pt;}
.ws0_c00215{word-spacing:-8.888889pt;}
.ws1_c00215{word-spacing:0.000000pt;}
._9_c00215{margin-left:-9.381760pt;}
._13_c00215{margin-left:-5.904019pt;}
._10_c00215{margin-left:-3.974827pt;}
._5_c00215{margin-left:-3.065600pt;}
._d_c00215{margin-left:-2.079573pt;}
._0_c00215{margin-left:-1.126400pt;}
._6_c00215{width:0.940800pt;}
._3_c00215{width:2.124800pt;}
._7_c00215{width:3.615787pt;}
._a_c00215{width:4.697600pt;}
._b_c00215{width:5.875627pt;}
._c_c00215{width:7.219200pt;}
._f_c00215{width:8.377173pt;}
._e_c00215{width:9.536000pt;}
._12_c00215{width:10.668800pt;}
._4_c00215{width:11.571200pt;}
._11_c00215{width:12.614400pt;}
._2_c00215{width:13.683200pt;}
._1_c00215{width:14.816000pt;}
._8_c00215{width:16.051200pt;}
.fs3_c00215{font-size:35.555557pt;}
.fs1_c00215{font-size:42.666667pt;}
.fs2_c00215{font-size:53.333333pt;}
.fs0_c00215{font-size:64.000000pt;}
.y0_c00215{bottom:0.000000pt;}
.yc_c00215{bottom:59.853333pt;}
.yf_c00215{bottom:120.520000pt;}
.ye_c00215{bottom:160.520000pt;}
.yd_c00215{bottom:200.520000pt;}
.ya_c00215{bottom:719.853333pt;}
.y9_c00215{bottom:743.853333pt;}
.y8_c00215{bottom:786.520000pt;}
.y7_c00215{bottom:810.520000pt;}
.y6_c00215{bottom:834.520000pt;}
.y5_c00215{bottom:858.520000pt;}
.y4_c00215{bottom:901.186667pt;}
.y3_c00215{bottom:925.186667pt;}
.y2_c00215{bottom:949.186667pt;}
.y1_c00215{bottom:973.186667pt;}
.yb_c00215{bottom:1061.186667pt;}
.h7_c00215{height:30.729167pt;}
.h6_c00215{height:39.296875pt;}
.h4_c00215{height:45.562500pt;}
.h5_c00215{height:49.843750pt;}
.h3_c00215{height:50.896067pt;}
.h2_c00215{height:1121.333333pt;}
.h0_c00215{height:1122.520000pt;}
.h1_c00215{height:1122.666667pt;}
.w2_c00215{width:793.333333pt;}
.w0_c00215{width:793.720000pt;}
.w1_c00215{width:794.000000pt;}
.x0_c00215{left:0.000000pt;}
.x1_c00215{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_26fcb5d587977e9b564af008.woff2')format("woff");}.ff1_c00216{font-family:ff1_c00216;line-height:0.717285;font-style:normal;font-weight:normal;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_e00b187577aef9e68feb3abb.woff2')format("woff");}.ff2_c00216{font-family:ff2_c00216;line-height:0.882324;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00216{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00216{vertical-align:0.000000px;}
.ls0_c00216{letter-spacing:-0.016800px;}
.ls1_c00216{letter-spacing:0.000000px;}
.sc__c00216{text-shadow:none;}
.sc0_c00216{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00216{-webkit-text-stroke:0px transparent;}
.sc0_c00216{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00216{word-spacing:0.000000px;}
.fc2_c00216{color:transparent;}
.fc1_c00216{color:rgb(255,255,255);}
.fc0_c00216{color:rgb(6,6,6);}
.fs0_c00216{font-size:84.000000px;}
.fs2_c00216{font-size:132.000000px;}
.fs1_c00216{font-size:144.000000px;}
.y0_c00216{bottom:0.000000px;}
.y6_c00216{bottom:46.335000px;}
.y5_c00216{bottom:88.335000px;}
.y4_c00216{bottom:130.335000px;}
.y3_c00216{bottom:172.335000px;}
.y2_c00216{bottom:250.335000px;}
.y1_c00216{bottom:858.000000px;}
.h4_c00216{height:114.210938px;}
.h3_c00216{height:124.593750px;}
.h2_c00216{height:322.500000px;}
.h0_c00216{height:1262.835000px;}
.h1_c00216{height:1263.000000px;}
.w2_c00216{width:616.500000px;}
.w0_c00216{width:892.935000px;}
.w1_c00216{width:893.250000px;}
.x0_c00216{left:0.000000px;}
.x2_c00216{left:16.500000px;}
.x1_c00216{left:246.000000px;}
@media print{
.v0_c00216{vertical-align:0.000000pt;}
.ls0_c00216{letter-spacing:-0.014933pt;}
.ls1_c00216{letter-spacing:0.000000pt;}
.ws0_c00216{word-spacing:0.000000pt;}
.fs0_c00216{font-size:74.666667pt;}
.fs2_c00216{font-size:117.333333pt;}
.fs1_c00216{font-size:128.000000pt;}
.y0_c00216{bottom:0.000000pt;}
.y6_c00216{bottom:41.186667pt;}
.y5_c00216{bottom:78.520000pt;}
.y4_c00216{bottom:115.853333pt;}
.y3_c00216{bottom:153.186667pt;}
.y2_c00216{bottom:222.520000pt;}
.y1_c00216{bottom:762.666667pt;}
.h4_c00216{height:101.520833pt;}
.h3_c00216{height:110.750000pt;}
.h2_c00216{height:286.666667pt;}
.h0_c00216{height:1122.520000pt;}
.h1_c00216{height:1122.666667pt;}
.w2_c00216{width:548.000000pt;}
.w0_c00216{width:793.720000pt;}
.w1_c00216{width:794.000000pt;}
.x0_c00216{left:0.000000pt;}
.x2_c00216{left:14.666667pt;}
.x1_c00216{left:218.666667pt;}
}





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





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_7d199c14a7fb3f0ef6f14592.woff2')format("woff");}.ff1_c00218{font-family:ff1_c00218;line-height:1.163086;font-style:normal;font-weight:normal;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_a6f51ae323ac32aa06f87b7f.woff2')format("woff");}.ff2_c00218{font-family:ff2_c00218;line-height:0.892578;font-style:normal;font-weight:normal;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_19166325bd2106438ebc587a.woff2')format("woff");}.ff3_c00218{font-family:ff3_c00218;line-height:1.143066;font-style:normal;font-weight:normal;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_8f7527c2acda9d85b474712e.woff2')format("woff");}.ff4_c00218{font-family:ff4_c00218;line-height:0.903320;font-style:normal;font-weight:normal;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_bfa8ed56cb2f46d635dad84e.woff2')format("woff");}.ff5_c00218{font-family:ff5_c00218;line-height:0.891113;font-style: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);}
.v2_c00218{vertical-align:-23.086200px;}
.v3_c00218{vertical-align:-15.400200px;}
.v0_c00218{vertical-align:0.000000px;}
.v1_c00218{vertical-align:23.086200px;}
.ls6_c00218{letter-spacing:-0.007200px;}
.ls7_c00218{letter-spacing:0.000000px;}
.ls3_c00218{letter-spacing:0.005599px;}
.ls1_c00218{letter-spacing:0.007200px;}
.ls2_c00218{letter-spacing:0.012000px;}
.ls4_c00218{letter-spacing:1.759999px;}
.ls0_c00218{letter-spacing:2.893200px;}
.ls5_c00218{letter-spacing:6.284400px;}
.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:-19.807200px;}
.ws0_c00218{word-spacing:-19.800000px;}
.ws1_c00218{word-spacing:-13.200000px;}
.ws3_c00218{word-spacing:0.000000px;}
._7_c00218{margin-left:-10.080000px;}
._1_c00218{margin-left:-8.592000px;}
._11_c00218{margin-left:-6.741600px;}
._6_c00218{margin-left:-5.517600px;}
._3_c00218{margin-left:-4.147200px;}
._13_c00218{margin-left:-3.024000px;}
._0_c00218{margin-left:-1.797600px;}
._5_c00218{width:1.152000px;}
._2_c00218{width:2.949600px;}
._c_c00218{width:4.291200px;}
._4_c00218{width:5.356800px;}
._e_c00218{width:7.111200px;}
._f_c00218{width:8.505600px;}
._d_c00218{width:9.576000px;}
._10_c00218{width:11.095200px;}
._14_c00218{width:12.648000px;}
._12_c00218{width:14.217600px;}
._15_c00218{width:16.032000px;}
._16_c00218{width:17.139600px;}
._17_c00218{width:18.475200px;}
._18_c00218{width:20.232000px;}
._a_c00218{width:21.686400px;}
._8_c00218{width:27.036000px;}
._9_c00218{width:28.862400px;}
._b_c00218{width:31.197600px;}
.fc0_c00218{color:rgb(0,0,0);}
.fs4_c00218{font-size:40.000002px;}
.fs2_c00218{font-size:48.000000px;}
.fs3_c00218{font-size:60.000000px;}
.fs0_c00218{font-size:72.000000px;}
.fs1_c00218{font-size:120.000000px;}
.y0_c00218{bottom:0.000000px;}
.y18_c00218{bottom:67.500000px;}
.y1c_c00218{bottom:135.850050px;}
.y1b_c00218{bottom:177.000000px;}
.y1a_c00218{bottom:200.350050px;}
.y19_c00218{bottom:245.350050px;}
.y15_c00218{bottom:315.000000px;}
.y14_c00218{bottom:342.000000px;}
.y13_c00218{bottom:390.000000px;}
.y12_c00218{bottom:417.000000px;}
.y11_c00218{bottom:444.000000px;}
.y10_c00218{bottom:471.000000px;}
.yf_c00218{bottom:498.000000px;}
.ye_c00218{bottom:525.000000px;}
.yd_c00218{bottom:552.000000px;}
.yc_c00218{bottom:579.000000px;}
.yb_c00218{bottom:606.000000px;}
.ya_c00218{bottom:633.000000px;}
.y9_c00218{bottom:660.000000px;}
.y8_c00218{bottom:687.000000px;}
.y7_c00218{bottom:735.000000px;}
.y6_c00218{bottom:762.000000px;}
.y5_c00218{bottom:810.000000px;}
.y4_c00218{bottom:837.000000px;}
.y3_c00218{bottom:864.000000px;}
.y2_c00218{bottom:891.000000px;}
.y1_c00218{bottom:1036.500000px;}
.y17_c00218{bottom:1176.000000px;}
.y16_c00218{bottom:1194.000000px;}
.h5_c00218{height:40.674019px;}
.h6_c00218{height:41.132812px;}
.h4_c00218{height:56.074219px;}
.h2_c00218{height:67.746094px;}
.h3_c00218{height:68.250262px;}
.h1_c00218{height:85.898438px;}
.h0_c00218{height:1263.000000px;}
.w0_c00218{width:892.500000px;}
.x0_c00218{left:0.000000px;}
.x1_c00218{left:150.519750px;}
.x2_c00218{left:195.862500px;}
.x3_c00218{left:627.778950px;}
.x4_c00218{left:801.992850px;}
@media print{
.v2_c00218{vertical-align:-20.521067pt;}
.v3_c00218{vertical-align:-13.689067pt;}
.v0_c00218{vertical-align:0.000000pt;}
.v1_c00218{vertical-align:20.521067pt;}
.ls6_c00218{letter-spacing:-0.006400pt;}
.ls7_c00218{letter-spacing:0.000000pt;}
.ls3_c00218{letter-spacing:0.004977pt;}
.ls1_c00218{letter-spacing:0.006400pt;}
.ls2_c00218{letter-spacing:0.010667pt;}
.ls4_c00218{letter-spacing:1.564443pt;}
.ls0_c00218{letter-spacing:2.571733pt;}
.ls5_c00218{letter-spacing:5.586133pt;}
.ws2_c00218{word-spacing:-17.606400pt;}
.ws0_c00218{word-spacing:-17.600000pt;}
.ws1_c00218{word-spacing:-11.733333pt;}
.ws3_c00218{word-spacing:0.000000pt;}
._7_c00218{margin-left:-8.960000pt;}
._1_c00218{margin-left:-7.637333pt;}
._11_c00218{margin-left:-5.992533pt;}
._6_c00218{margin-left:-4.904533pt;}
._3_c00218{margin-left:-3.686400pt;}
._13_c00218{margin-left:-2.688000pt;}
._0_c00218{margin-left:-1.597867pt;}
._5_c00218{width:1.024000pt;}
._2_c00218{width:2.621867pt;}
._c_c00218{width:3.814400pt;}
._4_c00218{width:4.761600pt;}
._e_c00218{width:6.321067pt;}
._f_c00218{width:7.560533pt;}
._d_c00218{width:8.512000pt;}
._10_c00218{width:9.862400pt;}
._14_c00218{width:11.242667pt;}
._12_c00218{width:12.637867pt;}
._15_c00218{width:14.250667pt;}
._16_c00218{width:15.235200pt;}
._17_c00218{width:16.422400pt;}
._18_c00218{width:17.984000pt;}
._a_c00218{width:19.276800pt;}
._8_c00218{width:24.032000pt;}
._9_c00218{width:25.655467pt;}
._b_c00218{width:27.731200pt;}
.fs4_c00218{font-size:35.555557pt;}
.fs2_c00218{font-size:42.666667pt;}
.fs3_c00218{font-size:53.333333pt;}
.fs0_c00218{font-size:64.000000pt;}
.fs1_c00218{font-size:106.666667pt;}
.y0_c00218{bottom:0.000000pt;}
.y18_c00218{bottom:60.000000pt;}
.y1c_c00218{bottom:120.755600pt;}
.y1b_c00218{bottom:157.333333pt;}
.y1a_c00218{bottom:178.088933pt;}
.y19_c00218{bottom:218.088933pt;}
.y15_c00218{bottom:280.000000pt;}
.y14_c00218{bottom:304.000000pt;}
.y13_c00218{bottom:346.666667pt;}
.y12_c00218{bottom:370.666667pt;}
.y11_c00218{bottom:394.666667pt;}
.y10_c00218{bottom:418.666667pt;}
.yf_c00218{bottom:442.666667pt;}
.ye_c00218{bottom:466.666667pt;}
.yd_c00218{bottom:490.666667pt;}
.yc_c00218{bottom:514.666667pt;}
.yb_c00218{bottom:538.666667pt;}
.ya_c00218{bottom:562.666667pt;}
.y9_c00218{bottom:586.666667pt;}
.y8_c00218{bottom:610.666667pt;}
.y7_c00218{bottom:653.333333pt;}
.y6_c00218{bottom:677.333333pt;}
.y5_c00218{bottom:720.000000pt;}
.y4_c00218{bottom:744.000000pt;}
.y3_c00218{bottom:768.000000pt;}
.y2_c00218{bottom:792.000000pt;}
.y1_c00218{bottom:921.333333pt;}
.y17_c00218{bottom:1045.333333pt;}
.y16_c00218{bottom:1061.333333pt;}
.h5_c00218{height:36.154683pt;}
.h6_c00218{height:36.562500pt;}
.h4_c00218{height:49.843750pt;}
.h2_c00218{height:60.218750pt;}
.h3_c00218{height:60.666900pt;}
.h1_c00218{height:76.354167pt;}
.h0_c00218{height:1122.666667pt;}
.w0_c00218{width:793.333333pt;}
.x0_c00218{left:0.000000pt;}
.x1_c00218{left:133.795333pt;}
.x2_c00218{left:174.100000pt;}
.x3_c00218{left:558.025733pt;}
.x4_c00218{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8fc95877dce2c837d2e6a539.woff2')format("woff");}.ff1_c00219{font-family:ff1_c00219;line-height:0.934082;font-style:normal;font-weight:normal;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_0de41678a844e70e0bb0f8c6.woff2')format("woff");}.ff2_c00219{font-family:ff2_c00219;line-height:0.755859;font-style:normal;font-weight:normal;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_76776ecffc87285e0bf3b741.woff2')format("woff");}.ff3_c00219{font-family:ff3_c00219;line-height:1.155762;font-style:normal;font-weight:normal;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_632c5a3cf6252826e8652931.woff2')format("woff");}.ff4_c00219{font-family:ff4_c00219;line-height:1.100586;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00219;src:url('chunks/assets/font_3afb0b2e6fc3dedbb6572415.woff2')format("woff");}.ff5_c00219{font-family:ff5_c00219;line-height:1.092285;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00219{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00219{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00219{vertical-align:-23.086200px;}
.v3_c00219{vertical-align:-15.400200px;}
.v0_c00219{vertical-align:0.000000px;}
.v1_c00219{vertical-align:23.086200px;}
.ls6_c00219{letter-spacing:-0.007200px;}
.ls5_c00219{letter-spacing:0.000000px;}
.ls2_c00219{letter-spacing:0.006019px;}
.ls7_c00219{letter-spacing:0.012000px;}
.ls4_c00219{letter-spacing:0.887760px;}
.ls0_c00219{letter-spacing:1.268400px;}
.ls3_c00219{letter-spacing:1.759999px;}
.ls1_c00219{letter-spacing:4.571520px;}
.sc__c00219{text-shadow:none;}
.sc0_c00219{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00219{-webkit-text-stroke:0px transparent;}
.sc0_c00219{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00219{word-spacing:-19.800000px;}
.ws0_c00219{word-spacing:-19.792800px;}
.ws2_c00219{word-spacing:0.000000px;}
._1a_c00219{margin-left:-10.612800px;}
._11_c00219{margin-left:-8.172000px;}
._14_c00219{margin-left:-6.213600px;}
._5_c00219{margin-left:-4.168800px;}
._9_c00219{margin-left:-2.376000px;}
._b_c00219{margin-left:-1.375200px;}
._0_c00219{width:1.058400px;}
._2_c00219{width:2.232000px;}
._10_c00219{width:3.340800px;}
._3_c00219{width:4.348800px;}
._d_c00219{width:5.745600px;}
._c_c00219{width:7.099200px;}
._e_c00219{width:8.359200px;}
._8_c00219{width:10.238400px;}
._13_c00219{width:11.268000px;}
._7_c00219{width:12.355200px;}
._f_c00219{width:13.464000px;}
._a_c00219{width:14.767200px;}
._6_c00219{width:16.624800px;}
._12_c00219{width:18.331200px;}
._1_c00219{width:21.650400px;}
._4_c00219{width:23.128560px;}
._1d_c00219{width:24.485040px;}
._1c_c00219{width:26.431200px;}
._1e_c00219{width:27.784800px;}
._1f_c00219{width:28.857600px;}
._1b_c00219{width:30.650400px;}
._15_c00219{width:33.120000px;}
._17_c00219{width:35.683200px;}
._18_c00219{width:36.741600px;}
._16_c00219{width:38.476800px;}
._19_c00219{width:41.385600px;}
.fc0_c00219{color:rgb(0,0,0);}
.fs3_c00219{font-size:40.000002px;}
.fs1_c00219{font-size:48.000000px;}
.fs2_c00219{font-size:60.000000px;}
.fs0_c00219{font-size:72.000000px;}
.y0_c00219{bottom:0.000000px;}
.y1f_c00219{bottom:67.500000px;}
.y22_c00219{bottom:132.000000px;}
.y21_c00219{bottom:155.350050px;}
.y20_c00219{bottom:200.350050px;}
.y1d_c00219{bottom:276.000000px;}
.y1c_c00219{bottom:303.000000px;}
.y1b_c00219{bottom:330.000000px;}
.y1a_c00219{bottom:357.000000px;}
.y19_c00219{bottom:384.000000px;}
.y18_c00219{bottom:432.000000px;}
.y17_c00219{bottom:459.000000px;}
.y16_c00219{bottom:486.000000px;}
.y15_c00219{bottom:513.000000px;}
.y14_c00219{bottom:540.000000px;}
.y13_c00219{bottom:567.000000px;}
.y12_c00219{bottom:615.000000px;}
.y11_c00219{bottom:642.000000px;}
.y10_c00219{bottom:669.000000px;}
.yf_c00219{bottom:696.000000px;}
.ye_c00219{bottom:723.000000px;}
.yd_c00219{bottom:750.000000px;}
.yc_c00219{bottom:798.000000px;}
.yb_c00219{bottom:825.000000px;}
.ya_c00219{bottom:852.000000px;}
.y9_c00219{bottom:879.000000px;}
.y8_c00219{bottom:906.000000px;}
.y7_c00219{bottom:933.000000px;}
.y6_c00219{bottom:960.000000px;}
.y5_c00219{bottom:987.000000px;}
.y4_c00219{bottom:1014.000000px;}
.y3_c00219{bottom:1041.000000px;}
.y2_c00219{bottom:1068.000000px;}
.y1_c00219{bottom:1095.000000px;}
.y1e_c00219{bottom:1194.000000px;}
.h5_c00219{height:37.627144px;}
.h4_c00219{height:44.208984px;}
.h2_c00219{height:51.257812px;}
.h6_c00219{height:53.027344px;}
.h3_c00219{height:56.074219px;}
.h1_c00219{height:57.258075px;}
.h0_c00219{height:1263.000000px;}
.w0_c00219{width:892.500000px;}
.x0_c00219{left:0.000000px;}
.x1_c00219{left:65.480310px;}
@media print{
.v2_c00219{vertical-align:-20.521067pt;}
.v3_c00219{vertical-align:-13.689067pt;}
.v0_c00219{vertical-align:0.000000pt;}
.v1_c00219{vertical-align:20.521067pt;}
.ls6_c00219{letter-spacing:-0.006400pt;}
.ls5_c00219{letter-spacing:0.000000pt;}
.ls2_c00219{letter-spacing:0.005350pt;}
.ls7_c00219{letter-spacing:0.010667pt;}
.ls4_c00219{letter-spacing:0.789120pt;}
.ls0_c00219{letter-spacing:1.127467pt;}
.ls3_c00219{letter-spacing:1.564443pt;}
.ls1_c00219{letter-spacing:4.063573pt;}
.ws1_c00219{word-spacing:-17.600000pt;}
.ws0_c00219{word-spacing:-17.593600pt;}
.ws2_c00219{word-spacing:0.000000pt;}
._1a_c00219{margin-left:-9.433600pt;}
._11_c00219{margin-left:-7.264000pt;}
._14_c00219{margin-left:-5.523200pt;}
._5_c00219{margin-left:-3.705600pt;}
._9_c00219{margin-left:-2.112000pt;}
._b_c00219{margin-left:-1.222400pt;}
._0_c00219{width:0.940800pt;}
._2_c00219{width:1.984000pt;}
._10_c00219{width:2.969600pt;}
._3_c00219{width:3.865600pt;}
._d_c00219{width:5.107200pt;}
._c_c00219{width:6.310400pt;}
._e_c00219{width:7.430400pt;}
._8_c00219{width:9.100800pt;}
._13_c00219{width:10.016000pt;}
._7_c00219{width:10.982400pt;}
._f_c00219{width:11.968000pt;}
._a_c00219{width:13.126400pt;}
._6_c00219{width:14.777600pt;}
._12_c00219{width:16.294400pt;}
._1_c00219{width:19.244800pt;}
._4_c00219{width:20.558720pt;}
._1d_c00219{width:21.764480pt;}
._1c_c00219{width:23.494400pt;}
._1e_c00219{width:24.697600pt;}
._1f_c00219{width:25.651200pt;}
._1b_c00219{width:27.244800pt;}
._15_c00219{width:29.440000pt;}
._17_c00219{width:31.718400pt;}
._18_c00219{width:32.659200pt;}
._16_c00219{width:34.201600pt;}
._19_c00219{width:36.787200pt;}
.fs3_c00219{font-size:35.555557pt;}
.fs1_c00219{font-size:42.666667pt;}
.fs2_c00219{font-size:53.333333pt;}
.fs0_c00219{font-size:64.000000pt;}
.y0_c00219{bottom:0.000000pt;}
.y1f_c00219{bottom:60.000000pt;}
.y22_c00219{bottom:117.333333pt;}
.y21_c00219{bottom:138.088933pt;}
.y20_c00219{bottom:178.088933pt;}
.y1d_c00219{bottom:245.333333pt;}
.y1c_c00219{bottom:269.333333pt;}
.y1b_c00219{bottom:293.333333pt;}
.y1a_c00219{bottom:317.333333pt;}
.y19_c00219{bottom:341.333333pt;}
.y18_c00219{bottom:384.000000pt;}
.y17_c00219{bottom:408.000000pt;}
.y16_c00219{bottom:432.000000pt;}
.y15_c00219{bottom:456.000000pt;}
.y14_c00219{bottom:480.000000pt;}
.y13_c00219{bottom:504.000000pt;}
.y12_c00219{bottom:546.666667pt;}
.y11_c00219{bottom:570.666667pt;}
.y10_c00219{bottom:594.666667pt;}
.yf_c00219{bottom:618.666667pt;}
.ye_c00219{bottom:642.666667pt;}
.yd_c00219{bottom:666.666667pt;}
.yc_c00219{bottom:709.333333pt;}
.yb_c00219{bottom:733.333333pt;}
.ya_c00219{bottom:757.333333pt;}
.y9_c00219{bottom:781.333333pt;}
.y8_c00219{bottom:805.333333pt;}
.y7_c00219{bottom:829.333333pt;}
.y6_c00219{bottom:853.333333pt;}
.y5_c00219{bottom:877.333333pt;}
.y4_c00219{bottom:901.333333pt;}
.y3_c00219{bottom:925.333333pt;}
.y2_c00219{bottom:949.333333pt;}
.y1_c00219{bottom:973.333333pt;}
.y1e_c00219{bottom:1061.333333pt;}
.h5_c00219{height:33.446350pt;}
.h4_c00219{height:39.296875pt;}
.h2_c00219{height:45.562500pt;}
.h6_c00219{height:47.135417pt;}
.h3_c00219{height:49.843750pt;}
.h1_c00219{height:50.896067pt;}
.h0_c00219{height:1122.666667pt;}
.w0_c00219{width:793.333333pt;}
.x0_c00219{left:0.000000pt;}
.x1_c00219{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_200446d4c6841c93311386f0.woff2')format("woff");}.ff1_c00220{font-family:ff1_c00220;line-height:0.934082;font-style:normal;font-weight:normal;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_8d1301eb33dc868439323f87.woff2')format("woff");}.ff2_c00220{font-family:ff2_c00220;line-height:0.987793;font-style:normal;font-weight:normal;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_9daa14bd3c04f7ec2b237a9b.woff2')format("woff");}.ff3_c00220{font-family:ff3_c00220;line-height:1.143066;font-style:normal;font-weight:normal;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_1a31c45b1fbeb72fcfd9e3c3.woff2')format("woff");}.ff4_c00220{font-family:ff4_c00220;line-height:0.904785;font-style:normal;font-weight:normal;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_2395bbc67f4dc9d7ffe82252.woff2')format("woff");}.ff5_c00220{font-family:ff5_c00220;line-height:0.891113;font-style: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);}
.v2_c00220{vertical-align:-23.086200px;}
.v3_c00220{vertical-align:-15.400200px;}
.v0_c00220{vertical-align:0.000000px;}
.v1_c00220{vertical-align:23.086200px;}
.ls2_c00220{letter-spacing:0.000000px;}
.ls1_c00220{letter-spacing:0.005599px;}
.ls0_c00220{letter-spacing:0.012000px;}
.sc__c00220{text-shadow:none;}
.sc0_c00220{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00220{-webkit-text-stroke:0px transparent;}
.sc0_c00220{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00220{word-spacing:-17.064000px;}
.ws0_c00220{word-spacing:-13.200000px;}
.ws2_c00220{word-spacing:0.000000px;}
._c_c00220{margin-left:-9.986400px;}
._f_c00220{margin-left:-6.672000px;}
._e_c00220{margin-left:-5.643000px;}
._5_c00220{margin-left:-4.046400px;}
._9_c00220{margin-left:-2.419200px;}
._7_c00220{margin-left:-1.216800px;}
._2_c00220{width:1.173600px;}
._0_c00220{width:2.325600px;}
._b_c00220{width:3.830400px;}
._1_c00220{width:5.572800px;}
._3_c00220{width:6.739200px;}
._4_c00220{width:7.941600px;}
._8_c00220{width:9.136800px;}
._a_c00220{width:10.324800px;}
._6_c00220{width:11.966400px;}
._d_c00220{width:13.327200px;}
.fc1_c00220{color:rgb(0,0,153);}
.fc0_c00220{color:rgb(0,0,0);}
.fs4_c00220{font-size:40.000002px;}
.fs1_c00220{font-size:48.000000px;}
.fs2_c00220{font-size:54.000000px;}
.fs3_c00220{font-size:60.000000px;}
.fs0_c00220{font-size:72.000000px;}
.y0_c00220{bottom:0.000000px;}
.yc_c00220{bottom:27.000000px;}
.yb_c00220{bottom:43.500000px;}
.y11_c00220{bottom:67.500000px;}
.ya_c00220{bottom:72.000000px;}
.y13_c00220{bottom:135.850050px;}
.y12_c00220{bottom:180.850050px;}
.ye_c00220{bottom:228.000000px;}
.yd_c00220{bottom:255.000000px;}
.y9_c00220{bottom:300.000000px;}
.y8_c00220{bottom:885.000000px;}
.y7_c00220{bottom:912.000000px;}
.y6_c00220{bottom:939.000000px;}
.y5_c00220{bottom:966.000000px;}
.y4_c00220{bottom:1014.000000px;}
.y3_c00220{bottom:1041.000000px;}
.y2_c00220{bottom:1068.000000px;}
.y1_c00220{bottom:1095.000000px;}
.y10_c00220{bottom:1176.000000px;}
.yf_c00220{bottom:1194.000000px;}
.h6_c00220{height:40.674019px;}
.h4_c00220{height:42.292969px;}
.h1_c00220{height:51.257812px;}
.h5_c00220{height:56.074219px;}
.h2_c00220{height:57.258075px;}
.h3_c00220{height:553.500000px;}
.h0_c00220{height:1263.000000px;}
.w1_c00220{width:676.500000px;}
.w0_c00220{width:892.500000px;}
.x0_c00220{left:0.000000px;}
.x3_c00220{left:17.624970px;}
.x1_c00220{left:150.519750px;}
.x5_c00220{left:195.862500px;}
.x2_c00220{left:244.877100px;}
.x4_c00220{left:262.638750px;}
.x6_c00220{left:627.778950px;}
.x7_c00220{left:801.992850px;}
@media print{
.v2_c00220{vertical-align:-20.521067pt;}
.v3_c00220{vertical-align:-13.689067pt;}
.v0_c00220{vertical-align:0.000000pt;}
.v1_c00220{vertical-align:20.521067pt;}
.ls2_c00220{letter-spacing:0.000000pt;}
.ls1_c00220{letter-spacing:0.004977pt;}
.ls0_c00220{letter-spacing:0.010667pt;}
.ws1_c00220{word-spacing:-15.168000pt;}
.ws0_c00220{word-spacing:-11.733333pt;}
.ws2_c00220{word-spacing:0.000000pt;}
._c_c00220{margin-left:-8.876800pt;}
._f_c00220{margin-left:-5.930667pt;}
._e_c00220{margin-left:-5.016000pt;}
._5_c00220{margin-left:-3.596800pt;}
._9_c00220{margin-left:-2.150400pt;}
._7_c00220{margin-left:-1.081600pt;}
._2_c00220{width:1.043200pt;}
._0_c00220{width:2.067200pt;}
._b_c00220{width:3.404800pt;}
._1_c00220{width:4.953600pt;}
._3_c00220{width:5.990400pt;}
._4_c00220{width:7.059200pt;}
._8_c00220{width:8.121600pt;}
._a_c00220{width:9.177600pt;}
._6_c00220{width:10.636800pt;}
._d_c00220{width:11.846400pt;}
.fs4_c00220{font-size:35.555557pt;}
.fs1_c00220{font-size:42.666667pt;}
.fs2_c00220{font-size:48.000000pt;}
.fs3_c00220{font-size:53.333333pt;}
.fs0_c00220{font-size:64.000000pt;}
.y0_c00220{bottom:0.000000pt;}
.yc_c00220{bottom:24.000000pt;}
.yb_c00220{bottom:38.666667pt;}
.y11_c00220{bottom:60.000000pt;}
.ya_c00220{bottom:64.000000pt;}
.y13_c00220{bottom:120.755600pt;}
.y12_c00220{bottom:160.755600pt;}
.ye_c00220{bottom:202.666667pt;}
.yd_c00220{bottom:226.666667pt;}
.y9_c00220{bottom:266.666667pt;}
.y8_c00220{bottom:786.666667pt;}
.y7_c00220{bottom:810.666667pt;}
.y6_c00220{bottom:834.666667pt;}
.y5_c00220{bottom:858.666667pt;}
.y4_c00220{bottom:901.333333pt;}
.y3_c00220{bottom:925.333333pt;}
.y2_c00220{bottom:949.333333pt;}
.y1_c00220{bottom:973.333333pt;}
.y10_c00220{bottom:1045.333333pt;}
.yf_c00220{bottom:1061.333333pt;}
.h6_c00220{height:36.154683pt;}
.h4_c00220{height:37.593750pt;}
.h1_c00220{height:45.562500pt;}
.h5_c00220{height:49.843750pt;}
.h2_c00220{height:50.896067pt;}
.h3_c00220{height:492.000000pt;}
.h0_c00220{height:1122.666667pt;}
.w1_c00220{width:601.333333pt;}
.w0_c00220{width:793.333333pt;}
.x0_c00220{left:0.000000pt;}
.x3_c00220{left:15.666640pt;}
.x1_c00220{left:133.795333pt;}
.x5_c00220{left:174.100000pt;}
.x2_c00220{left:217.668533pt;}
.x4_c00220{left:233.456667pt;}
.x6_c00220{left:558.025733pt;}
.x7_c00220{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b2658ed89ceb7ac2a7e8b329.woff2')format("woff");}.ff1_c00221{font-family:ff1_c00221;line-height:0.934082;font-style:normal;font-weight:normal;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_a4e3df7c88ad5ceb3bb458f1.woff2')format("woff");}.ff2_c00221{font-family:ff2_c00221;line-height:0.756836;font-style:normal;font-weight:normal;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_0bd8a7527453ad6c6c5f5bb7.woff2')format("woff");}.ff3_c00221{font-family:ff3_c00221;line-height:1.155762;font-style:normal;font-weight:normal;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_d902b521c2f857eec5085e8c.woff2')format("woff");}.ff4_c00221{font-family:ff4_c00221;line-height:1.101562;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00221;src:url('chunks/assets/font_886183987d39d3ee3e2214be.woff2')format("woff");}.ff5_c00221{font-family:ff5_c00221;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00221{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00221{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00221{vertical-align:-23.086200px;}
.v3_c00221{vertical-align:-15.400200px;}
.v0_c00221{vertical-align:0.000000px;}
.v1_c00221{vertical-align:23.086200px;}
.ls6_c00221{letter-spacing:-0.009600px;}
.ls5_c00221{letter-spacing:-0.007200px;}
.ls4_c00221{letter-spacing:0.000000px;}
.ls2_c00221{letter-spacing:0.006019px;}
.ls8_c00221{letter-spacing:0.008000px;}
.ls7_c00221{letter-spacing:0.012000px;}
.ls1_c00221{letter-spacing:1.490400px;}
.ls0_c00221{letter-spacing:1.758600px;}
.ls3_c00221{letter-spacing:3.110040px;}
.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:-13.200000px;}
.ws1_c00221{word-spacing:-13.190400px;}
.ws2_c00221{word-spacing:-11.128001px;}
.ws3_c00221{word-spacing:0.000000px;}
._5_c00221{margin-left:-10.584000px;}
._13_c00221{margin-left:-6.523200px;}
._12_c00221{margin-left:-4.795200px;}
._a_c00221{margin-left:-3.628800px;}
._8_c00221{margin-left:-2.383200px;}
._3_c00221{margin-left:-1.382400px;}
._0_c00221{width:1.411200px;}
._6_c00221{width:3.052800px;}
._11_c00221{width:4.363200px;}
._7_c00221{width:5.587200px;}
._1_c00221{width:7.250400px;}
._2_c00221{width:8.654400px;}
._4_c00221{width:10.058400px;}
._9_c00221{width:11.988000px;}
._10_c00221{width:13.197600px;}
._f_c00221{width:14.493600px;}
._c_c00221{width:16.502400px;}
._b_c00221{width:17.906400px;}
._e_c00221{width:21.283200px;}
._d_c00221{width:22.586400px;}
._1a_c00221{width:24.199200px;}
._18_c00221{width:32.356800px;}
._15_c00221{width:33.840000px;}
._14_c00221{width:35.078400px;}
._16_c00221{width:37.396800px;}
._17_c00221{width:38.491200px;}
._19_c00221{width:39.571200px;}
.fc0_c00221{color:rgb(0,0,0);}
.fs3_c00221{font-size:40.000002px;}
.fs1_c00221{font-size:48.000000px;}
.fs2_c00221{font-size:60.000000px;}
.fs0_c00221{font-size:72.000000px;}
.y0_c00221{bottom:0.000000px;}
.y1c_c00221{bottom:67.500000px;}
.y21_c00221{bottom:132.000000px;}
.y20_c00221{bottom:155.350050px;}
.y1f_c00221{bottom:200.350050px;}
.y1e_c00221{bottom:245.350050px;}
.y1d_c00221{bottom:290.350050px;}
.y1a_c00221{bottom:378.000000px;}
.y19_c00221{bottom:405.000000px;}
.y18_c00221{bottom:432.000000px;}
.y17_c00221{bottom:459.000000px;}
.y16_c00221{bottom:486.000000px;}
.y15_c00221{bottom:513.000000px;}
.y14_c00221{bottom:540.000000px;}
.y13_c00221{bottom:567.000000px;}
.y12_c00221{bottom:615.000000px;}
.y11_c00221{bottom:642.000000px;}
.y10_c00221{bottom:669.000000px;}
.yf_c00221{bottom:696.000000px;}
.ye_c00221{bottom:723.000000px;}
.yd_c00221{bottom:750.000000px;}
.yc_c00221{bottom:777.000000px;}
.yb_c00221{bottom:804.000000px;}
.ya_c00221{bottom:831.000000px;}
.y9_c00221{bottom:858.000000px;}
.y8_c00221{bottom:885.000000px;}
.y7_c00221{bottom:912.000000px;}
.y6_c00221{bottom:960.000000px;}
.y5_c00221{bottom:987.000000px;}
.y4_c00221{bottom:1014.000000px;}
.y3_c00221{bottom:1041.000000px;}
.y2_c00221{bottom:1068.000000px;}
.y1_c00221{bottom:1095.000000px;}
.y1b_c00221{bottom:1194.000000px;}
.h5_c00221{height:37.568550px;}
.h4_c00221{height:44.208984px;}
.h1_c00221{height:51.257812px;}
.h6_c00221{height:52.968750px;}
.h3_c00221{height:56.074219px;}
.h2_c00221{height:57.258075px;}
.h0_c00221{height:1263.000000px;}
.w0_c00221{width:892.500000px;}
.x0_c00221{left:0.000000px;}
.x1_c00221{left:65.480310px;}
@media print{
.v2_c00221{vertical-align:-20.521067pt;}
.v3_c00221{vertical-align:-13.689067pt;}
.v0_c00221{vertical-align:0.000000pt;}
.v1_c00221{vertical-align:20.521067pt;}
.ls6_c00221{letter-spacing:-0.008533pt;}
.ls5_c00221{letter-spacing:-0.006400pt;}
.ls4_c00221{letter-spacing:0.000000pt;}
.ls2_c00221{letter-spacing:0.005350pt;}
.ls8_c00221{letter-spacing:0.007111pt;}
.ls7_c00221{letter-spacing:0.010667pt;}
.ls1_c00221{letter-spacing:1.324800pt;}
.ls0_c00221{letter-spacing:1.563200pt;}
.ls3_c00221{letter-spacing:2.764480pt;}
.ws0_c00221{word-spacing:-11.733333pt;}
.ws1_c00221{word-spacing:-11.724800pt;}
.ws2_c00221{word-spacing:-9.891556pt;}
.ws3_c00221{word-spacing:0.000000pt;}
._5_c00221{margin-left:-9.408000pt;}
._13_c00221{margin-left:-5.798400pt;}
._12_c00221{margin-left:-4.262400pt;}
._a_c00221{margin-left:-3.225600pt;}
._8_c00221{margin-left:-2.118400pt;}
._3_c00221{margin-left:-1.228800pt;}
._0_c00221{width:1.254400pt;}
._6_c00221{width:2.713600pt;}
._11_c00221{width:3.878400pt;}
._7_c00221{width:4.966400pt;}
._1_c00221{width:6.444800pt;}
._2_c00221{width:7.692800pt;}
._4_c00221{width:8.940800pt;}
._9_c00221{width:10.656000pt;}
._10_c00221{width:11.731200pt;}
._f_c00221{width:12.883200pt;}
._c_c00221{width:14.668800pt;}
._b_c00221{width:15.916800pt;}
._e_c00221{width:18.918400pt;}
._d_c00221{width:20.076800pt;}
._1a_c00221{width:21.510400pt;}
._18_c00221{width:28.761600pt;}
._15_c00221{width:30.080000pt;}
._14_c00221{width:31.180800pt;}
._16_c00221{width:33.241600pt;}
._17_c00221{width:34.214400pt;}
._19_c00221{width:35.174400pt;}
.fs3_c00221{font-size:35.555557pt;}
.fs1_c00221{font-size:42.666667pt;}
.fs2_c00221{font-size:53.333333pt;}
.fs0_c00221{font-size:64.000000pt;}
.y0_c00221{bottom:0.000000pt;}
.y1c_c00221{bottom:60.000000pt;}
.y21_c00221{bottom:117.333333pt;}
.y20_c00221{bottom:138.088933pt;}
.y1f_c00221{bottom:178.088933pt;}
.y1e_c00221{bottom:218.088933pt;}
.y1d_c00221{bottom:258.088933pt;}
.y1a_c00221{bottom:336.000000pt;}
.y19_c00221{bottom:360.000000pt;}
.y18_c00221{bottom:384.000000pt;}
.y17_c00221{bottom:408.000000pt;}
.y16_c00221{bottom:432.000000pt;}
.y15_c00221{bottom:456.000000pt;}
.y14_c00221{bottom:480.000000pt;}
.y13_c00221{bottom:504.000000pt;}
.y12_c00221{bottom:546.666667pt;}
.y11_c00221{bottom:570.666667pt;}
.y10_c00221{bottom:594.666667pt;}
.yf_c00221{bottom:618.666667pt;}
.ye_c00221{bottom:642.666667pt;}
.yd_c00221{bottom:666.666667pt;}
.yc_c00221{bottom:690.666667pt;}
.yb_c00221{bottom:714.666667pt;}
.ya_c00221{bottom:738.666667pt;}
.y9_c00221{bottom:762.666667pt;}
.y8_c00221{bottom:786.666667pt;}
.y7_c00221{bottom:810.666667pt;}
.y6_c00221{bottom:853.333333pt;}
.y5_c00221{bottom:877.333333pt;}
.y4_c00221{bottom:901.333333pt;}
.y3_c00221{bottom:925.333333pt;}
.y2_c00221{bottom:949.333333pt;}
.y1_c00221{bottom:973.333333pt;}
.y1b_c00221{bottom:1061.333333pt;}
.h5_c00221{height:33.394267pt;}
.h4_c00221{height:39.296875pt;}
.h1_c00221{height:45.562500pt;}
.h6_c00221{height:47.083333pt;}
.h3_c00221{height:49.843750pt;}
.h2_c00221{height:50.896067pt;}
.h0_c00221{height:1122.666667pt;}
.w0_c00221{width:793.333333pt;}
.x0_c00221{left:0.000000pt;}
.x1_c00221{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_75a51a6a85211b46f0c313bc.woff2')format("woff");}.ff1_c00222{font-family:ff1_c00222;line-height:0.934082;font-style:normal;font-weight:normal;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_fc8b4bba4872157421dfcb25.woff2')format("woff");}.ff2_c00222{font-family:ff2_c00222;line-height:0.987793;font-style:normal;font-weight:normal;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_31af32e9dc621f2e6cc8b094.woff2')format("woff");}.ff3_c00222{font-family:ff3_c00222;line-height:1.143066;font-style:normal;font-weight:normal;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_26de7a72458321f1dc173626.woff2')format("woff");}.ff4_c00222{font-family:ff4_c00222;line-height:1.100586;font-style:normal;font-weight:normal;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_e46edeaf3eb6a3b53dfe936a.woff2')format("woff");}.ff5_c00222{font-family:ff5_c00222;line-height:0.707031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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);}
.v2_c00222{vertical-align:-23.086200px;}
.v3_c00222{vertical-align:-15.400200px;}
.v0_c00222{vertical-align:0.000000px;}
.v1_c00222{vertical-align:23.086200px;}
.ls2_c00222{letter-spacing:-0.009600px;}
.ls1_c00222{letter-spacing:0.000000px;}
.ls3_c00222{letter-spacing:0.008000px;}
.ls0_c00222{letter-spacing:0.012000px;}
.sc__c00222{text-shadow:none;}
.sc0_c00222{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00222{-webkit-text-stroke:0px transparent;}
.sc0_c00222{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00222{word-spacing:-13.190400px;}
.ws1_c00222{word-spacing:-11.128001px;}
.ws2_c00222{word-spacing:0.000000px;}
._3_c00222{margin-left:-10.584000px;}
._6_c00222{margin-left:-7.243200px;}
._4_c00222{margin-left:-4.356000px;}
._2_c00222{margin-left:-3.139200px;}
._7_c00222{margin-left:-1.425600px;}
._0_c00222{width:1.807200px;}
._8_c00222{width:3.196800px;}
._1_c00222{width:4.838400px;}
._5_c00222{width:6.120000px;}
._a_c00222{width:7.164000px;}
._b_c00222{width:9.043200px;}
._9_c00222{width:10.483200px;}
._10_c00222{width:12.686400px;}
._c_c00222{width:13.723200px;}
._11_c00222{width:14.803200px;}
._f_c00222{width:16.768800px;}
._d_c00222{width:18.172800px;}
._e_c00222{width:20.815200px;}
.fc0_c00222{color:rgb(0,0,0);}
.fs4_c00222{font-size:40.000002px;}
.fs2_c00222{font-size:48.000000px;}
.fs1_c00222{font-size:54.000000px;}
.fs3_c00222{font-size:60.000000px;}
.fs0_c00222{font-size:72.000000px;}
.y0_c00222{bottom:0.000000px;}
.y4_c00222{bottom:12.000000px;}
.y10_c00222{bottom:67.500000px;}
.y13_c00222{bottom:132.000000px;}
.y12_c00222{bottom:151.500000px;}
.y11_c00222{bottom:174.850050px;}
.yd_c00222{bottom:279.000000px;}
.yc_c00222{bottom:306.000000px;}
.yb_c00222{bottom:333.000000px;}
.ya_c00222{bottom:360.000000px;}
.y9_c00222{bottom:387.000000px;}
.y8_c00222{bottom:414.000000px;}
.y7_c00222{bottom:441.000000px;}
.y6_c00222{bottom:468.000000px;}
.y5_c00222{bottom:495.000000px;}
.y3_c00222{bottom:540.000000px;}
.y2_c00222{bottom:1068.000000px;}
.y1_c00222{bottom:1095.000000px;}
.yf_c00222{bottom:1176.000000px;}
.ye_c00222{bottom:1194.000000px;}
.h6_c00222{height:40.674019px;}
.h3_c00222{height:42.292969px;}
.h1_c00222{height:51.257812px;}
.h7_c00222{height:52.968750px;}
.h5_c00222{height:56.074219px;}
.h4_c00222{height:57.258075px;}
.h2_c00222{height:496.500000px;}
.h0_c00222{height:1263.000000px;}
.w1_c00222{width:676.500000px;}
.w0_c00222{width:892.500000px;}
.x0_c00222{left:0.000000px;}
.x1_c00222{left:150.519750px;}
.x2_c00222{left:189.370950px;}
.x3_c00222{left:195.862500px;}
.x4_c00222{left:627.778950px;}
.x5_c00222{left:801.992850px;}
@media print{
.v2_c00222{vertical-align:-20.521067pt;}
.v3_c00222{vertical-align:-13.689067pt;}
.v0_c00222{vertical-align:0.000000pt;}
.v1_c00222{vertical-align:20.521067pt;}
.ls2_c00222{letter-spacing:-0.008533pt;}
.ls1_c00222{letter-spacing:0.000000pt;}
.ls3_c00222{letter-spacing:0.007111pt;}
.ls0_c00222{letter-spacing:0.010667pt;}
.ws0_c00222{word-spacing:-11.724800pt;}
.ws1_c00222{word-spacing:-9.891556pt;}
.ws2_c00222{word-spacing:0.000000pt;}
._3_c00222{margin-left:-9.408000pt;}
._6_c00222{margin-left:-6.438400pt;}
._4_c00222{margin-left:-3.872000pt;}
._2_c00222{margin-left:-2.790400pt;}
._7_c00222{margin-left:-1.267200pt;}
._0_c00222{width:1.606400pt;}
._8_c00222{width:2.841600pt;}
._1_c00222{width:4.300800pt;}
._5_c00222{width:5.440000pt;}
._a_c00222{width:6.368000pt;}
._b_c00222{width:8.038400pt;}
._9_c00222{width:9.318400pt;}
._10_c00222{width:11.276800pt;}
._c_c00222{width:12.198400pt;}
._11_c00222{width:13.158400pt;}
._f_c00222{width:14.905600pt;}
._d_c00222{width:16.153600pt;}
._e_c00222{width:18.502400pt;}
.fs4_c00222{font-size:35.555557pt;}
.fs2_c00222{font-size:42.666667pt;}
.fs1_c00222{font-size:48.000000pt;}
.fs3_c00222{font-size:53.333333pt;}
.fs0_c00222{font-size:64.000000pt;}
.y0_c00222{bottom:0.000000pt;}
.y4_c00222{bottom:10.666667pt;}
.y10_c00222{bottom:60.000000pt;}
.y13_c00222{bottom:117.333333pt;}
.y12_c00222{bottom:134.666667pt;}
.y11_c00222{bottom:155.422267pt;}
.yd_c00222{bottom:248.000000pt;}
.yc_c00222{bottom:272.000000pt;}
.yb_c00222{bottom:296.000000pt;}
.ya_c00222{bottom:320.000000pt;}
.y9_c00222{bottom:344.000000pt;}
.y8_c00222{bottom:368.000000pt;}
.y7_c00222{bottom:392.000000pt;}
.y6_c00222{bottom:416.000000pt;}
.y5_c00222{bottom:440.000000pt;}
.y3_c00222{bottom:480.000000pt;}
.y2_c00222{bottom:949.333333pt;}
.y1_c00222{bottom:973.333333pt;}
.yf_c00222{bottom:1045.333333pt;}
.ye_c00222{bottom:1061.333333pt;}
.h6_c00222{height:36.154683pt;}
.h3_c00222{height:37.593750pt;}
.h1_c00222{height:45.562500pt;}
.h7_c00222{height:47.083333pt;}
.h5_c00222{height:49.843750pt;}
.h4_c00222{height:50.896067pt;}
.h2_c00222{height:441.333333pt;}
.h0_c00222{height:1122.666667pt;}
.w1_c00222{width:601.333333pt;}
.w0_c00222{width:793.333333pt;}
.x0_c00222{left:0.000000pt;}
.x1_c00222{left:133.795333pt;}
.x2_c00222{left:168.329733pt;}
.x3_c00222{left:174.100000pt;}
.x4_c00222{left:558.025733pt;}
.x5_c00222{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_76cdd6190eabaf3dc27d274e.woff2')format("woff");}.ff1_c00223{font-family:ff1_c00223;line-height:1.163086;font-style:normal;font-weight:normal;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_70c230d90f800c35252c1055.woff2')format("woff");}.ff2_c00223{font-family:ff2_c00223;line-height:0.931152;font-style:normal;font-weight:normal;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_9438dde074ad171cc054f2a6.woff2')format("woff");}.ff3_c00223{font-family:ff3_c00223;line-height:0.755859;font-style:normal;font-weight:normal;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_6dee9c3d679fc986b8492f0b.woff2')format("woff");}.ff4_c00223{font-family:ff4_c00223;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00223;src:url('chunks/assets/font_03198f49c9fe45d5574d8c30.woff2')format("woff");}.ff5_c00223{font-family:ff5_c00223;line-height:0.904785;font-style:normal;font-weight: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_c00223;src:url('chunks/assets/font_261006379eaa58b033b5191e.woff2')format("woff");}.ff6_c00223{font-family:ff6_c00223;line-height:0.890137;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00223{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00223{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00223{vertical-align:-23.086200px;}
.v3_c00223{vertical-align:-15.400200px;}
.v0_c00223{vertical-align:0.000000px;}
.v1_c00223{vertical-align:23.086200px;}
.ls3_c00223{letter-spacing:-0.014400px;}
.ls2_c00223{letter-spacing:-0.009600px;}
.ls1_c00223{letter-spacing:0.000000px;}
.ls5_c00223{letter-spacing:0.008000px;}
.ls4_c00223{letter-spacing:0.012000px;}
.ls0_c00223{letter-spacing:0.014400px;}
.sc__c00223{text-shadow:none;}
.sc0_c00223{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00223{-webkit-text-stroke:0px transparent;}
.sc0_c00223{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00223{word-spacing:-19.800000px;}
.ws0_c00223{word-spacing:-13.190400px;}
.ws2_c00223{word-spacing:-11.128001px;}
.ws3_c00223{word-spacing:0.000000px;}
._b_c00223{margin-left:-10.015200px;}
._16_c00223{margin-left:-8.826480px;}
._d_c00223{margin-left:-7.739520px;}
._a_c00223{margin-left:-4.809600px;}
._3_c00223{margin-left:-3.362400px;}
._8_c00223{margin-left:-2.016000px;}
._15_c00223{margin-left:-1.007760px;}
._1_c00223{width:1.872000px;}
._5_c00223{width:3.384000px;}
._c_c00223{width:4.391760px;}
._7_c00223{width:5.464800px;}
._9_c00223{width:7.423200px;}
._6_c00223{width:9.165600px;}
._2_c00223{width:10.720800px;}
._0_c00223{width:12.585600px;}
._14_c00223{width:13.982640px;}
._4_c00223{width:15.940800px;}
._13_c00223{width:18.252000px;}
._12_c00223{width:20.995200px;}
._11_c00223{width:22.867200px;}
._10_c00223{width:24.314400px;}
._e_c00223{width:26.150400px;}
._18_c00223{width:27.158400px;}
._f_c00223{width:28.188000px;}
._17_c00223{width:30.553560px;}
.fc0_c00223{color:rgb(0,0,0);}
.fs3_c00223{font-size:40.000002px;}
.fs1_c00223{font-size:48.000000px;}
.fs2_c00223{font-size:60.000000px;}
.fs0_c00223{font-size:72.000000px;}
.y0_c00223{bottom:0.000000px;}
.y1d_c00223{bottom:67.500000px;}
.y20_c00223{bottom:135.850050px;}
.y1f_c00223{bottom:180.850050px;}
.y1e_c00223{bottom:225.850050px;}
.y1b_c00223{bottom:330.000000px;}
.y1a_c00223{bottom:357.000000px;}
.y19_c00223{bottom:384.000000px;}
.y18_c00223{bottom:411.000000px;}
.y17_c00223{bottom:438.000000px;}
.y16_c00223{bottom:465.000000px;}
.y15_c00223{bottom:492.000000px;}
.y14_c00223{bottom:519.000000px;}
.y13_c00223{bottom:546.000000px;}
.y12_c00223{bottom:594.000000px;}
.y11_c00223{bottom:621.000000px;}
.y10_c00223{bottom:648.000000px;}
.yf_c00223{bottom:675.000000px;}
.ye_c00223{bottom:702.000000px;}
.yd_c00223{bottom:729.000000px;}
.yc_c00223{bottom:756.000000px;}
.yb_c00223{bottom:783.000000px;}
.ya_c00223{bottom:810.000000px;}
.y9_c00223{bottom:858.000000px;}
.y8_c00223{bottom:885.000000px;}
.y7_c00223{bottom:912.000000px;}
.y6_c00223{bottom:960.000000px;}
.y5_c00223{bottom:987.000000px;}
.y4_c00223{bottom:1014.000000px;}
.y3_c00223{bottom:1041.000000px;}
.y2_c00223{bottom:1068.000000px;}
.y1_c00223{bottom:1095.000000px;}
.y1c_c00223{bottom:1194.000000px;}
.h5_c00223{height:29.472658px;}
.h4_c00223{height:44.208984px;}
.h3_c00223{height:56.074219px;}
.h1_c00223{height:67.746094px;}
.h2_c00223{height:68.250262px;}
.h0_c00223{height:1263.000000px;}
.w0_c00223{width:892.500000px;}
.x0_c00223{left:0.000000px;}
.x1_c00223{left:65.480310px;}
@media print{
.v2_c00223{vertical-align:-20.521067pt;}
.v3_c00223{vertical-align:-13.689067pt;}
.v0_c00223{vertical-align:0.000000pt;}
.v1_c00223{vertical-align:20.521067pt;}
.ls3_c00223{letter-spacing:-0.012800pt;}
.ls2_c00223{letter-spacing:-0.008533pt;}
.ls1_c00223{letter-spacing:0.000000pt;}
.ls5_c00223{letter-spacing:0.007111pt;}
.ls4_c00223{letter-spacing:0.010667pt;}
.ls0_c00223{letter-spacing:0.012800pt;}
.ws1_c00223{word-spacing:-17.600000pt;}
.ws0_c00223{word-spacing:-11.724800pt;}
.ws2_c00223{word-spacing:-9.891556pt;}
.ws3_c00223{word-spacing:0.000000pt;}
._b_c00223{margin-left:-8.902400pt;}
._16_c00223{margin-left:-7.845760pt;}
._d_c00223{margin-left:-6.879573pt;}
._a_c00223{margin-left:-4.275200pt;}
._3_c00223{margin-left:-2.988800pt;}
._8_c00223{margin-left:-1.792000pt;}
._15_c00223{margin-left:-0.895787pt;}
._1_c00223{width:1.664000pt;}
._5_c00223{width:3.008000pt;}
._c_c00223{width:3.903787pt;}
._7_c00223{width:4.857600pt;}
._9_c00223{width:6.598400pt;}
._6_c00223{width:8.147200pt;}
._2_c00223{width:9.529600pt;}
._0_c00223{width:11.187200pt;}
._14_c00223{width:12.429013pt;}
._4_c00223{width:14.169600pt;}
._13_c00223{width:16.224000pt;}
._12_c00223{width:18.662400pt;}
._11_c00223{width:20.326400pt;}
._10_c00223{width:21.612800pt;}
._e_c00223{width:23.244800pt;}
._18_c00223{width:24.140800pt;}
._f_c00223{width:25.056000pt;}
._17_c00223{width:27.158720pt;}
.fs3_c00223{font-size:35.555557pt;}
.fs1_c00223{font-size:42.666667pt;}
.fs2_c00223{font-size:53.333333pt;}
.fs0_c00223{font-size:64.000000pt;}
.y0_c00223{bottom:0.000000pt;}
.y1d_c00223{bottom:60.000000pt;}
.y20_c00223{bottom:120.755600pt;}
.y1f_c00223{bottom:160.755600pt;}
.y1e_c00223{bottom:200.755600pt;}
.y1b_c00223{bottom:293.333333pt;}
.y1a_c00223{bottom:317.333333pt;}
.y19_c00223{bottom:341.333333pt;}
.y18_c00223{bottom:365.333333pt;}
.y17_c00223{bottom:389.333333pt;}
.y16_c00223{bottom:413.333333pt;}
.y15_c00223{bottom:437.333333pt;}
.y14_c00223{bottom:461.333333pt;}
.y13_c00223{bottom:485.333333pt;}
.y12_c00223{bottom:528.000000pt;}
.y11_c00223{bottom:552.000000pt;}
.y10_c00223{bottom:576.000000pt;}
.yf_c00223{bottom:600.000000pt;}
.ye_c00223{bottom:624.000000pt;}
.yd_c00223{bottom:648.000000pt;}
.yc_c00223{bottom:672.000000pt;}
.yb_c00223{bottom:696.000000pt;}
.ya_c00223{bottom:720.000000pt;}
.y9_c00223{bottom:762.666667pt;}
.y8_c00223{bottom:786.666667pt;}
.y7_c00223{bottom:810.666667pt;}
.y6_c00223{bottom:853.333333pt;}
.y5_c00223{bottom:877.333333pt;}
.y4_c00223{bottom:901.333333pt;}
.y3_c00223{bottom:925.333333pt;}
.y2_c00223{bottom:949.333333pt;}
.y1_c00223{bottom:973.333333pt;}
.y1c_c00223{bottom:1061.333333pt;}
.h5_c00223{height:26.197918pt;}
.h4_c00223{height:39.296875pt;}
.h3_c00223{height:49.843750pt;}
.h1_c00223{height:60.218750pt;}
.h2_c00223{height:60.666900pt;}
.h0_c00223{height:1122.666667pt;}
.w0_c00223{width:793.333333pt;}
.x0_c00223{left:0.000000pt;}
.x1_c00223{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ba6ff0787f6a23239746515a.woff2')format("woff");}.ff1_c00224{font-family:ff1_c00224;line-height:1.163086;font-style:normal;font-weight:normal;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_7228a65976864c0bb7ff6da3.woff2')format("woff");}.ff2_c00224{font-family:ff2_c00224;line-height:1.143066;font-style:normal;font-weight:normal;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_9b6596769ec4d54d54e2dc7d.woff2')format("woff");}.ff3_c00224{font-family:ff3_c00224;line-height:0.904785;font-style:normal;font-weight:normal;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_914eb7c1167641b0b14b8a9a.woff2')format("woff");}.ff4_c00224{font-family:ff4_c00224;line-height:0.891113;font-style: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);}
.v2_c00224{vertical-align:-23.086200px;}
.v3_c00224{vertical-align:-15.400200px;}
.v0_c00224{vertical-align:0.000000px;}
.v1_c00224{vertical-align:23.086200px;}
.ls2_c00224{letter-spacing:-0.009600px;}
.ls1_c00224{letter-spacing:0.000000px;}
.ls3_c00224{letter-spacing:0.008000px;}
.ls0_c00224{letter-spacing:0.012000px;}
.sc__c00224{text-shadow:none;}
.sc0_c00224{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00224{-webkit-text-stroke:0px transparent;}
.sc0_c00224{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00224{word-spacing:-19.800000px;}
.ws0_c00224{word-spacing:-13.190400px;}
.ws2_c00224{word-spacing:-11.128001px;}
.ws3_c00224{word-spacing:0.000000px;}
._f_c00224{margin-left:-10.015200px;}
._19_c00224{margin-left:-8.863200px;}
._10_c00224{margin-left:-5.684400px;}
._8_c00224{margin-left:-4.334400px;}
._6_c00224{margin-left:-3.218400px;}
._4_c00224{margin-left:-1.634400px;}
._0_c00224{width:1.152000px;}
._a_c00224{width:2.491200px;}
._b_c00224{width:3.844800px;}
._2_c00224{width:5.313600px;}
._e_c00224{width:6.530400px;}
._3_c00224{width:7.588800px;}
._c_c00224{width:8.632800px;}
._d_c00224{width:10.659600px;}
._1_c00224{width:11.750400px;}
._9_c00224{width:13.273200px;}
._5_c00224{width:14.551200px;}
._7_c00224{width:16.221600px;}
._1b_c00224{width:17.884800px;}
._1a_c00224{width:21.355200px;}
._17_c00224{width:22.737600px;}
._16_c00224{width:24.235200px;}
._11_c00224{width:25.596000px;}
._18_c00224{width:26.935200px;}
._12_c00224{width:28.087200px;}
._15_c00224{width:29.635200px;}
._14_c00224{width:31.298400px;}
._13_c00224{width:32.450400px;}
._1d_c00224{width:33.487200px;}
._1c_c00224{width:36.043200px;}
.fc0_c00224{color:rgb(0,0,0);}
.fs3_c00224{font-size:40.000002px;}
.fs1_c00224{font-size:48.000000px;}
.fs2_c00224{font-size:60.000000px;}
.fs0_c00224{font-size:72.000000px;}
.y0_c00224{bottom:0.000000px;}
.y1f_c00224{bottom:67.500000px;}
.y23_c00224{bottom:135.850050px;}
.y22_c00224{bottom:180.850050px;}
.y21_c00224{bottom:225.850050px;}
.y20_c00224{bottom:270.850050px;}
.y1c_c00224{bottom:324.000000px;}
.y1b_c00224{bottom:351.000000px;}
.y1a_c00224{bottom:378.000000px;}
.y19_c00224{bottom:426.000000px;}
.y18_c00224{bottom:453.000000px;}
.y17_c00224{bottom:480.000000px;}
.y16_c00224{bottom:507.000000px;}
.y15_c00224{bottom:534.000000px;}
.y14_c00224{bottom:561.000000px;}
.y13_c00224{bottom:588.000000px;}
.y12_c00224{bottom:615.000000px;}
.y11_c00224{bottom:642.000000px;}
.y10_c00224{bottom:669.000000px;}
.yf_c00224{bottom:696.000000px;}
.ye_c00224{bottom:723.000000px;}
.yd_c00224{bottom:750.000000px;}
.yc_c00224{bottom:777.000000px;}
.yb_c00224{bottom:804.000000px;}
.ya_c00224{bottom:831.000000px;}
.y9_c00224{bottom:858.000000px;}
.y8_c00224{bottom:885.000000px;}
.y7_c00224{bottom:933.000000px;}
.y6_c00224{bottom:960.000000px;}
.y5_c00224{bottom:987.000000px;}
.y4_c00224{bottom:1014.000000px;}
.y3_c00224{bottom:1041.000000px;}
.y2_c00224{bottom:1068.000000px;}
.y1_c00224{bottom:1095.000000px;}
.y1e_c00224{bottom:1176.000000px;}
.y1d_c00224{bottom:1194.000000px;}
.h4_c00224{height:40.674019px;}
.h3_c00224{height:56.074219px;}
.h2_c00224{height:67.746094px;}
.h1_c00224{height:68.250262px;}
.h0_c00224{height:1263.000000px;}
.w0_c00224{width:892.500000px;}
.x0_c00224{left:0.000000px;}
.x1_c00224{left:150.519750px;}
.x2_c00224{left:195.862500px;}
.x3_c00224{left:627.778950px;}
.x4_c00224{left:801.992850px;}
@media print{
.v2_c00224{vertical-align:-20.521067pt;}
.v3_c00224{vertical-align:-13.689067pt;}
.v0_c00224{vertical-align:0.000000pt;}
.v1_c00224{vertical-align:20.521067pt;}
.ls2_c00224{letter-spacing:-0.008533pt;}
.ls1_c00224{letter-spacing:0.000000pt;}
.ls3_c00224{letter-spacing:0.007111pt;}
.ls0_c00224{letter-spacing:0.010667pt;}
.ws1_c00224{word-spacing:-17.600000pt;}
.ws0_c00224{word-spacing:-11.724800pt;}
.ws2_c00224{word-spacing:-9.891556pt;}
.ws3_c00224{word-spacing:0.000000pt;}
._f_c00224{margin-left:-8.902400pt;}
._19_c00224{margin-left:-7.878400pt;}
._10_c00224{margin-left:-5.052800pt;}
._8_c00224{margin-left:-3.852800pt;}
._6_c00224{margin-left:-2.860800pt;}
._4_c00224{margin-left:-1.452800pt;}
._0_c00224{width:1.024000pt;}
._a_c00224{width:2.214400pt;}
._b_c00224{width:3.417600pt;}
._2_c00224{width:4.723200pt;}
._e_c00224{width:5.804800pt;}
._3_c00224{width:6.745600pt;}
._c_c00224{width:7.673600pt;}
._d_c00224{width:9.475200pt;}
._1_c00224{width:10.444800pt;}
._9_c00224{width:11.798400pt;}
._5_c00224{width:12.934400pt;}
._7_c00224{width:14.419200pt;}
._1b_c00224{width:15.897600pt;}
._1a_c00224{width:18.982400pt;}
._17_c00224{width:20.211200pt;}
._16_c00224{width:21.542400pt;}
._11_c00224{width:22.752000pt;}
._18_c00224{width:23.942400pt;}
._12_c00224{width:24.966400pt;}
._15_c00224{width:26.342400pt;}
._14_c00224{width:27.820800pt;}
._13_c00224{width:28.844800pt;}
._1d_c00224{width:29.766400pt;}
._1c_c00224{width:32.038400pt;}
.fs3_c00224{font-size:35.555557pt;}
.fs1_c00224{font-size:42.666667pt;}
.fs2_c00224{font-size:53.333333pt;}
.fs0_c00224{font-size:64.000000pt;}
.y0_c00224{bottom:0.000000pt;}
.y1f_c00224{bottom:60.000000pt;}
.y23_c00224{bottom:120.755600pt;}
.y22_c00224{bottom:160.755600pt;}
.y21_c00224{bottom:200.755600pt;}
.y20_c00224{bottom:240.755600pt;}
.y1c_c00224{bottom:288.000000pt;}
.y1b_c00224{bottom:312.000000pt;}
.y1a_c00224{bottom:336.000000pt;}
.y19_c00224{bottom:378.666667pt;}
.y18_c00224{bottom:402.666667pt;}
.y17_c00224{bottom:426.666667pt;}
.y16_c00224{bottom:450.666667pt;}
.y15_c00224{bottom:474.666667pt;}
.y14_c00224{bottom:498.666667pt;}
.y13_c00224{bottom:522.666667pt;}
.y12_c00224{bottom:546.666667pt;}
.y11_c00224{bottom:570.666667pt;}
.y10_c00224{bottom:594.666667pt;}
.yf_c00224{bottom:618.666667pt;}
.ye_c00224{bottom:642.666667pt;}
.yd_c00224{bottom:666.666667pt;}
.yc_c00224{bottom:690.666667pt;}
.yb_c00224{bottom:714.666667pt;}
.ya_c00224{bottom:738.666667pt;}
.y9_c00224{bottom:762.666667pt;}
.y8_c00224{bottom:786.666667pt;}
.y7_c00224{bottom:829.333333pt;}
.y6_c00224{bottom:853.333333pt;}
.y5_c00224{bottom:877.333333pt;}
.y4_c00224{bottom:901.333333pt;}
.y3_c00224{bottom:925.333333pt;}
.y2_c00224{bottom:949.333333pt;}
.y1_c00224{bottom:973.333333pt;}
.y1e_c00224{bottom:1045.333333pt;}
.y1d_c00224{bottom:1061.333333pt;}
.h4_c00224{height:36.154683pt;}
.h3_c00224{height:49.843750pt;}
.h2_c00224{height:60.218750pt;}
.h1_c00224{height:60.666900pt;}
.h0_c00224{height:1122.666667pt;}
.w0_c00224{width:793.333333pt;}
.x0_c00224{left:0.000000pt;}
.x1_c00224{left:133.795333pt;}
.x2_c00224{left:174.100000pt;}
.x3_c00224{left:558.025733pt;}
.x4_c00224{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ff57ea232a30b55cc74b6f1b.woff2')format("woff");}.ff1_c00225{font-family:ff1_c00225;line-height:1.163086;font-style:normal;font-weight:normal;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_d7e203955a6cca7a1cab8b3f.woff2')format("woff");}.ff2_c00225{font-family:ff2_c00225;line-height:0.755859;font-style:normal;font-weight:normal;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_f7c4b970c8d66a4b1ef09b8c.woff2')format("woff");}.ff3_c00225{font-family:ff3_c00225;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00225{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00225{vertical-align:0.000000px;}
.ls0_c00225{letter-spacing:0.000000px;}
.ls1_c00225{letter-spacing:0.012000px;}
.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:0.000000px;}
._1_c00225{margin-left:-4.082400px;}
._3_c00225{margin-left:-2.865600px;}
._4_c00225{margin-left:-1.656000px;}
._5_c00225{width:1.339200px;}
._8_c00225{width:2.851200px;}
._a_c00225{width:3.967200px;}
._b_c00225{width:5.184000px;}
._c_c00225{width:7.380000px;}
._f_c00225{width:9.165600px;}
._10_c00225{width:10.188000px;}
._d_c00225{width:11.577600px;}
._e_c00225{width:13.147200px;}
._9_c00225{width:14.479200px;}
._6_c00225{width:15.480000px;}
._0_c00225{width:17.344800px;}
._7_c00225{width:18.432000px;}
._2_c00225{width:21.420000px;}
.fc0_c00225{color:rgb(0,0,0);}
.fs1_c00225{font-size:60.000000px;}
.fs0_c00225{font-size:72.000000px;}
.y0_c00225{bottom:0.000000px;}
.ya_c00225{bottom:67.500000px;}
.y8_c00225{bottom:885.000000px;}
.y7_c00225{bottom:912.000000px;}
.y6_c00225{bottom:939.000000px;}
.y5_c00225{bottom:966.000000px;}
.y4_c00225{bottom:993.000000px;}
.y3_c00225{bottom:1020.000000px;}
.y2_c00225{bottom:1068.000000px;}
.y1_c00225{bottom:1095.000000px;}
.y9_c00225{bottom:1194.000000px;}
.h3_c00225{height:44.208984px;}
.h2_c00225{height:56.074219px;}
.h1_c00225{height:67.746094px;}
.h0_c00225{height:1263.000000px;}
.w0_c00225{width:892.500000px;}
.x0_c00225{left:0.000000px;}
.x1_c00225{left:65.480310px;}
@media print{
.v0_c00225{vertical-align:0.000000pt;}
.ls0_c00225{letter-spacing:0.000000pt;}
.ls1_c00225{letter-spacing:0.010667pt;}
.ws0_c00225{word-spacing:0.000000pt;}
._1_c00225{margin-left:-3.628800pt;}
._3_c00225{margin-left:-2.547200pt;}
._4_c00225{margin-left:-1.472000pt;}
._5_c00225{width:1.190400pt;}
._8_c00225{width:2.534400pt;}
._a_c00225{width:3.526400pt;}
._b_c00225{width:4.608000pt;}
._c_c00225{width:6.560000pt;}
._f_c00225{width:8.147200pt;}
._10_c00225{width:9.056000pt;}
._d_c00225{width:10.291200pt;}
._e_c00225{width:11.686400pt;}
._9_c00225{width:12.870400pt;}
._6_c00225{width:13.760000pt;}
._0_c00225{width:15.417600pt;}
._7_c00225{width:16.384000pt;}
._2_c00225{width:19.040000pt;}
.fs1_c00225{font-size:53.333333pt;}
.fs0_c00225{font-size:64.000000pt;}
.y0_c00225{bottom:0.000000pt;}
.ya_c00225{bottom:60.000000pt;}
.y8_c00225{bottom:786.666667pt;}
.y7_c00225{bottom:810.666667pt;}
.y6_c00225{bottom:834.666667pt;}
.y5_c00225{bottom:858.666667pt;}
.y4_c00225{bottom:882.666667pt;}
.y3_c00225{bottom:906.666667pt;}
.y2_c00225{bottom:949.333333pt;}
.y1_c00225{bottom:973.333333pt;}
.y9_c00225{bottom:1061.333333pt;}
.h3_c00225{height:39.296875pt;}
.h2_c00225{height:49.843750pt;}
.h1_c00225{height:60.218750pt;}
.h0_c00225{height:1122.666667pt;}
.w0_c00225{width:793.333333pt;}
.x0_c00225{left:0.000000pt;}
.x1_c00225{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6c99613b4a356222e5d5e734.woff2')format("woff");}.ff1_c00226{font-family:ff1_c00226;line-height:1.124023;font-style:normal;font-weight:normal;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_3f5b32a40ebb8a7b6834c099.woff2')format("woff");}.ff2_c00226{font-family:ff2_c00226;line-height:1.163086;font-style:normal;font-weight:normal;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_98f1a6ac29328d129a67d3c1.woff2')format("woff");}.ff3_c00226{font-family:ff3_c00226;line-height:1.143066;font-style:normal;font-weight:normal;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_88ee99055e36a84e2a9429c3.woff2')format("woff");}.ff4_c00226{font-family:ff4_c00226;line-height:1.115723;font-style:normal;font-weight:normal;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_8c8652e49aea0dd8107422c2.woff2')format("woff");}.ff5_c00226{font-family:ff5_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;}
.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);}
.v2_c00226{vertical-align:-15.400200px;}
.v0_c00226{vertical-align:0.000000px;}
.v1_c00226{vertical-align:23.086200px;}
.ls5_c00226{letter-spacing:0.000000px;}
.ls4_c00226{letter-spacing:0.005599px;}
.ls0_c00226{letter-spacing:0.007200px;}
.ls2_c00226{letter-spacing:0.012000px;}
.ls1_c00226{letter-spacing:0.364200px;}
.ls3_c00226{letter-spacing:1.759999px;}
.sc__c00226{text-shadow:none;}
.sc0_c00226{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00226{-webkit-text-stroke:0px transparent;}
.sc0_c00226{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00226{word-spacing:-15.000000px;}
.ws0_c00226{word-spacing:-13.200000px;}
.ws2_c00226{word-spacing:0.000000px;}
._19_c00226{margin-left:-10.258200px;}
._8_c00226{margin-left:-7.192800px;}
._1a_c00226{margin-left:-5.719200px;}
._b_c00226{margin-left:-4.420800px;}
._9_c00226{margin-left:-3.045600px;}
._0_c00226{margin-left:-2.031600px;}
._d_c00226{margin-left:-1.015200px;}
._3_c00226{width:1.245600px;}
._1_c00226{width:2.556000px;}
._6_c00226{width:3.960000px;}
._7_c00226{width:5.342400px;}
._2_c00226{width:6.782400px;}
._4_c00226{width:8.028000px;}
._5_c00226{width:9.273600px;}
._17_c00226{width:10.562400px;}
._a_c00226{width:12.333600px;}
._c_c00226{width:13.780800px;}
._14_c00226{width:15.048000px;}
._13_c00226{width:16.401600px;}
._18_c00226{width:17.614800px;}
._16_c00226{width:21.152400px;}
._15_c00226{width:22.206000px;}
._12_c00226{width:23.306400px;}
._f_c00226{width:25.552800px;}
._e_c00226{width:27.541200px;}
._11_c00226{width:28.562400px;}
._10_c00226{width:29.930400px;}
.fc0_c00226{color:rgb(0,0,0);}
.fs4_c00226{font-size:40.000002px;}
.fs2_c00226{font-size:48.000000px;}
.fs3_c00226{font-size:60.000000px;}
.fs0_c00226{font-size:72.000000px;}
.fs1_c00226{font-size:120.000000px;}
.y0_c00226{bottom:0.000000px;}
.y16_c00226{bottom:67.500000px;}
.y1d_c00226{bottom:132.000000px;}
.y1c_c00226{bottom:151.500000px;}
.y1b_c00226{bottom:174.850050px;}
.y1a_c00226{bottom:219.850050px;}
.y19_c00226{bottom:261.000000px;}
.y18_c00226{bottom:280.500000px;}
.y17_c00226{bottom:303.850050px;}
.y13_c00226{bottom:390.000000px;}
.y12_c00226{bottom:417.000000px;}
.y11_c00226{bottom:444.000000px;}
.y10_c00226{bottom:471.000000px;}
.yf_c00226{bottom:519.000000px;}
.ye_c00226{bottom:546.000000px;}
.yd_c00226{bottom:573.000000px;}
.yc_c00226{bottom:600.000000px;}
.yb_c00226{bottom:627.000000px;}
.ya_c00226{bottom:654.000000px;}
.y9_c00226{bottom:681.000000px;}
.y8_c00226{bottom:708.000000px;}
.y7_c00226{bottom:735.000000px;}
.y6_c00226{bottom:762.000000px;}
.y5_c00226{bottom:789.000000px;}
.y4_c00226{bottom:837.000000px;}
.y3_c00226{bottom:864.000000px;}
.y2_c00226{bottom:891.000000px;}
.y1_c00226{bottom:1036.500000px;}
.y15_c00226{bottom:1176.000000px;}
.y14_c00226{bottom:1194.000000px;}
.h5_c00226{height:40.674019px;}
.h6_c00226{height:53.818359px;}
.h4_c00226{height:56.074219px;}
.h2_c00226{height:67.746094px;}
.h3_c00226{height:68.250262px;}
.h1_c00226{height:113.671875px;}
.h0_c00226{height:1263.000000px;}
.w0_c00226{width:892.500000px;}
.x0_c00226{left:0.000000px;}
.x1_c00226{left:150.519750px;}
.x2_c00226{left:195.862500px;}
.x3_c00226{left:627.778950px;}
.x4_c00226{left:801.992850px;}
@media print{
.v2_c00226{vertical-align:-13.689067pt;}
.v0_c00226{vertical-align:0.000000pt;}
.v1_c00226{vertical-align:20.521067pt;}
.ls5_c00226{letter-spacing:0.000000pt;}
.ls4_c00226{letter-spacing:0.004977pt;}
.ls0_c00226{letter-spacing:0.006400pt;}
.ls2_c00226{letter-spacing:0.010667pt;}
.ls1_c00226{letter-spacing:0.323733pt;}
.ls3_c00226{letter-spacing:1.564443pt;}
.ws1_c00226{word-spacing:-13.333333pt;}
.ws0_c00226{word-spacing:-11.733333pt;}
.ws2_c00226{word-spacing:0.000000pt;}
._19_c00226{margin-left:-9.118400pt;}
._8_c00226{margin-left:-6.393600pt;}
._1a_c00226{margin-left:-5.083733pt;}
._b_c00226{margin-left:-3.929600pt;}
._9_c00226{margin-left:-2.707200pt;}
._0_c00226{margin-left:-1.805867pt;}
._d_c00226{margin-left:-0.902400pt;}
._3_c00226{width:1.107200pt;}
._1_c00226{width:2.272000pt;}
._6_c00226{width:3.520000pt;}
._7_c00226{width:4.748800pt;}
._2_c00226{width:6.028800pt;}
._4_c00226{width:7.136000pt;}
._5_c00226{width:8.243200pt;}
._17_c00226{width:9.388800pt;}
._a_c00226{width:10.963200pt;}
._c_c00226{width:12.249600pt;}
._14_c00226{width:13.376000pt;}
._13_c00226{width:14.579200pt;}
._18_c00226{width:15.657600pt;}
._16_c00226{width:18.802133pt;}
._15_c00226{width:19.738667pt;}
._12_c00226{width:20.716800pt;}
._f_c00226{width:22.713600pt;}
._e_c00226{width:24.481067pt;}
._11_c00226{width:25.388800pt;}
._10_c00226{width:26.604800pt;}
.fs4_c00226{font-size:35.555557pt;}
.fs2_c00226{font-size:42.666667pt;}
.fs3_c00226{font-size:53.333333pt;}
.fs0_c00226{font-size:64.000000pt;}
.fs1_c00226{font-size:106.666667pt;}
.y0_c00226{bottom:0.000000pt;}
.y16_c00226{bottom:60.000000pt;}
.y1d_c00226{bottom:117.333333pt;}
.y1c_c00226{bottom:134.666667pt;}
.y1b_c00226{bottom:155.422267pt;}
.y1a_c00226{bottom:195.422267pt;}
.y19_c00226{bottom:232.000000pt;}
.y18_c00226{bottom:249.333333pt;}
.y17_c00226{bottom:270.088933pt;}
.y13_c00226{bottom:346.666667pt;}
.y12_c00226{bottom:370.666667pt;}
.y11_c00226{bottom:394.666667pt;}
.y10_c00226{bottom:418.666667pt;}
.yf_c00226{bottom:461.333333pt;}
.ye_c00226{bottom:485.333333pt;}
.yd_c00226{bottom:509.333333pt;}
.yc_c00226{bottom:533.333333pt;}
.yb_c00226{bottom:557.333333pt;}
.ya_c00226{bottom:581.333333pt;}
.y9_c00226{bottom:605.333333pt;}
.y8_c00226{bottom:629.333333pt;}
.y7_c00226{bottom:653.333333pt;}
.y6_c00226{bottom:677.333333pt;}
.y5_c00226{bottom:701.333333pt;}
.y4_c00226{bottom:744.000000pt;}
.y3_c00226{bottom:768.000000pt;}
.y2_c00226{bottom:792.000000pt;}
.y1_c00226{bottom:921.333333pt;}
.y15_c00226{bottom:1045.333333pt;}
.y14_c00226{bottom:1061.333333pt;}
.h5_c00226{height:36.154683pt;}
.h6_c00226{height:47.838542pt;}
.h4_c00226{height:49.843750pt;}
.h2_c00226{height:60.218750pt;}
.h3_c00226{height:60.666900pt;}
.h1_c00226{height:101.041667pt;}
.h0_c00226{height:1122.666667pt;}
.w0_c00226{width:793.333333pt;}
.x0_c00226{left:0.000000pt;}
.x1_c00226{left:133.795333pt;}
.x2_c00226{left:174.100000pt;}
.x3_c00226{left:558.025733pt;}
.x4_c00226{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e1c66c358c559b11f816577e.woff2')format("woff");}.ff1_c00227{font-family:ff1_c00227;line-height:1.163086;font-style:normal;font-weight:normal;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_2f0380f654df488dc3f9a5bc.woff2')format("woff");}.ff2_c00227{font-family:ff2_c00227;line-height:0.888672;font-style:normal;font-weight:normal;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_1cf1367557d254b032f9d672.woff2')format("woff");}.ff3_c00227{font-family:ff3_c00227;line-height:0.755859;font-style:normal;font-weight:normal;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_4ab38cf30b49aece156881a5.woff2')format("woff");}.ff4_c00227{font-family:ff4_c00227;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00227;src:url('chunks/assets/font_c7789d34cf41b84f70b59441.woff2')format("woff");}.ff5_c00227{font-family:ff5_c00227;line-height:1.101562;font-style:normal;font-weight: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_c00227;src:url('chunks/assets/font_6514dc35e5e300f7ed1e1298.woff2')format("woff");}.ff6_c00227{font-family:ff6_c00227;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00227{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00227{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00227{vertical-align:-23.086200px;}
.v3_c00227{vertical-align:-15.400200px;}
.v0_c00227{vertical-align:0.000000px;}
.v1_c00227{vertical-align:23.086200px;}
.ls4_c00227{letter-spacing:0.000000px;}
.ls3_c00227{letter-spacing:0.006019px;}
.ls5_c00227{letter-spacing:0.012000px;}
.ls1_c00227{letter-spacing:0.014400px;}
.ls0_c00227{letter-spacing:1.972200px;}
.ls2_c00227{letter-spacing:7.759999px;}
.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:-13.200000px;}
.ws1_c00227{word-spacing:0.000000px;}
._11_c00227{margin-left:-7.531200px;}
._1a_c00227{margin-left:-5.911200px;}
._4_c00227{margin-left:-4.780800px;}
._b_c00227{margin-left:-3.744000px;}
._3_c00227{margin-left:-2.397600px;}
._a_c00227{margin-left:-1.051200px;}
._19_c00227{width:1.008000px;}
._6_c00227{width:2.023200px;}
._c_c00227{width:3.024000px;}
._1_c00227{width:4.068000px;}
._9_c00227{width:5.637600px;}
._14_c00227{width:7.394400px;}
._8_c00227{width:8.474400px;}
._15_c00227{width:10.267200px;}
._10_c00227{width:11.390400px;}
._2_c00227{width:12.823200px;}
._7_c00227{width:14.443200px;}
._f_c00227{width:15.595200px;}
._0_c00227{width:16.912800px;}
._e_c00227{width:17.992800px;}
._5_c00227{width:21.204000px;}
._d_c00227{width:22.269600px;}
._12_c00227{width:23.688000px;}
._13_c00227{width:24.840000px;}
._18_c00227{width:28.512000px;}
._16_c00227{width:30.470400px;}
._17_c00227{width:32.817600px;}
.fc0_c00227{color:rgb(0,0,0);}
.fs3_c00227{font-size:40.000002px;}
.fs1_c00227{font-size:48.000000px;}
.fs2_c00227{font-size:60.000000px;}
.fs0_c00227{font-size:72.000000px;}
.y0_c00227{bottom:0.000000px;}
.y1f_c00227{bottom:67.500000px;}
.y22_c00227{bottom:135.850050px;}
.y21_c00227{bottom:177.000000px;}
.y20_c00227{bottom:200.350050px;}
.y1d_c00227{bottom:276.000000px;}
.y1c_c00227{bottom:303.000000px;}
.y1b_c00227{bottom:330.000000px;}
.y1a_c00227{bottom:357.000000px;}
.y19_c00227{bottom:384.000000px;}
.y18_c00227{bottom:411.000000px;}
.y17_c00227{bottom:438.000000px;}
.y16_c00227{bottom:465.000000px;}
.y15_c00227{bottom:492.000000px;}
.y14_c00227{bottom:540.000000px;}
.y13_c00227{bottom:567.000000px;}
.y12_c00227{bottom:594.000000px;}
.y11_c00227{bottom:621.000000px;}
.y10_c00227{bottom:648.000000px;}
.yf_c00227{bottom:675.000000px;}
.ye_c00227{bottom:702.000000px;}
.yd_c00227{bottom:729.000000px;}
.yc_c00227{bottom:756.000000px;}
.yb_c00227{bottom:804.000000px;}
.ya_c00227{bottom:831.000000px;}
.y9_c00227{bottom:858.000000px;}
.y8_c00227{bottom:885.000000px;}
.y7_c00227{bottom:912.000000px;}
.y6_c00227{bottom:939.000000px;}
.y5_c00227{bottom:987.000000px;}
.y4_c00227{bottom:1014.000000px;}
.y3_c00227{bottom:1041.000000px;}
.y2_c00227{bottom:1068.000000px;}
.y1_c00227{bottom:1095.000000px;}
.y1e_c00227{bottom:1194.000000px;}
.h5_c00227{height:37.568550px;}
.h4_c00227{height:44.208984px;}
.h6_c00227{height:52.968750px;}
.h3_c00227{height:56.074219px;}
.h1_c00227{height:67.746094px;}
.h2_c00227{height:68.250263px;}
.h0_c00227{height:1263.000000px;}
.w0_c00227{width:892.500000px;}
.x0_c00227{left:0.000000px;}
.x1_c00227{left:65.480310px;}
@media print{
.v2_c00227{vertical-align:-20.521067pt;}
.v3_c00227{vertical-align:-13.689067pt;}
.v0_c00227{vertical-align:0.000000pt;}
.v1_c00227{vertical-align:20.521067pt;}
.ls4_c00227{letter-spacing:0.000000pt;}
.ls3_c00227{letter-spacing:0.005350pt;}
.ls5_c00227{letter-spacing:0.010667pt;}
.ls1_c00227{letter-spacing:0.012800pt;}
.ls0_c00227{letter-spacing:1.753067pt;}
.ls2_c00227{letter-spacing:6.897777pt;}
.ws0_c00227{word-spacing:-11.733333pt;}
.ws1_c00227{word-spacing:0.000000pt;}
._11_c00227{margin-left:-6.694400pt;}
._1a_c00227{margin-left:-5.254400pt;}
._4_c00227{margin-left:-4.249600pt;}
._b_c00227{margin-left:-3.328000pt;}
._3_c00227{margin-left:-2.131200pt;}
._a_c00227{margin-left:-0.934400pt;}
._19_c00227{width:0.896000pt;}
._6_c00227{width:1.798400pt;}
._c_c00227{width:2.688000pt;}
._1_c00227{width:3.616000pt;}
._9_c00227{width:5.011200pt;}
._14_c00227{width:6.572800pt;}
._8_c00227{width:7.532800pt;}
._15_c00227{width:9.126400pt;}
._10_c00227{width:10.124800pt;}
._2_c00227{width:11.398400pt;}
._7_c00227{width:12.838400pt;}
._f_c00227{width:13.862400pt;}
._0_c00227{width:15.033600pt;}
._e_c00227{width:15.993600pt;}
._5_c00227{width:18.848000pt;}
._d_c00227{width:19.795200pt;}
._12_c00227{width:21.056000pt;}
._13_c00227{width:22.080000pt;}
._18_c00227{width:25.344000pt;}
._16_c00227{width:27.084800pt;}
._17_c00227{width:29.171200pt;}
.fs3_c00227{font-size:35.555557pt;}
.fs1_c00227{font-size:42.666667pt;}
.fs2_c00227{font-size:53.333333pt;}
.fs0_c00227{font-size:64.000000pt;}
.y0_c00227{bottom:0.000000pt;}
.y1f_c00227{bottom:60.000000pt;}
.y22_c00227{bottom:120.755600pt;}
.y21_c00227{bottom:157.333333pt;}
.y20_c00227{bottom:178.088933pt;}
.y1d_c00227{bottom:245.333333pt;}
.y1c_c00227{bottom:269.333333pt;}
.y1b_c00227{bottom:293.333333pt;}
.y1a_c00227{bottom:317.333333pt;}
.y19_c00227{bottom:341.333333pt;}
.y18_c00227{bottom:365.333333pt;}
.y17_c00227{bottom:389.333333pt;}
.y16_c00227{bottom:413.333333pt;}
.y15_c00227{bottom:437.333333pt;}
.y14_c00227{bottom:480.000000pt;}
.y13_c00227{bottom:504.000000pt;}
.y12_c00227{bottom:528.000000pt;}
.y11_c00227{bottom:552.000000pt;}
.y10_c00227{bottom:576.000000pt;}
.yf_c00227{bottom:600.000000pt;}
.ye_c00227{bottom:624.000000pt;}
.yd_c00227{bottom:648.000000pt;}
.yc_c00227{bottom:672.000000pt;}
.yb_c00227{bottom:714.666667pt;}
.ya_c00227{bottom:738.666667pt;}
.y9_c00227{bottom:762.666667pt;}
.y8_c00227{bottom:786.666667pt;}
.y7_c00227{bottom:810.666667pt;}
.y6_c00227{bottom:834.666667pt;}
.y5_c00227{bottom:877.333333pt;}
.y4_c00227{bottom:901.333333pt;}
.y3_c00227{bottom:925.333333pt;}
.y2_c00227{bottom:949.333333pt;}
.y1_c00227{bottom:973.333333pt;}
.y1e_c00227{bottom:1061.333333pt;}
.h5_c00227{height:33.394267pt;}
.h4_c00227{height:39.296875pt;}
.h6_c00227{height:47.083333pt;}
.h3_c00227{height:49.843750pt;}
.h1_c00227{height:60.218750pt;}
.h2_c00227{height:60.666900pt;}
.h0_c00227{height:1122.666667pt;}
.w0_c00227{width:793.333333pt;}
.x0_c00227{left:0.000000pt;}
.x1_c00227{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_950d684b4cb15f47c376dc29.woff2')format("woff");}.ff1_c00228{font-family:ff1_c00228;line-height:1.163086;font-style:normal;font-weight:normal;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_200bb40b065e37c1c21f13b3.woff2')format("woff");}.ff2_c00228{font-family:ff2_c00228;line-height:0.987793;font-style:normal;font-weight:normal;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_be1d34a5e504ef9d30ba591b.woff2')format("woff");}.ff3_c00228{font-family:ff3_c00228;line-height:1.143066;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00228{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00228{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00228{vertical-align:0.000000px;}
.ls2_c00228{letter-spacing:0.000000px;}
.ls1_c00228{letter-spacing:0.012000px;}
.ls0_c00228{letter-spacing:0.016200px;}
.sc__c00228{text-shadow:none;}
.sc0_c00228{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00228{-webkit-text-stroke:0px transparent;}
.sc0_c00228{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00228{word-spacing:-17.080200px;}
.ws0_c00228{word-spacing:-17.064000px;}
.ws2_c00228{word-spacing:0.000000px;}
._0_c00228{margin-left:-10.584000px;}
._13_c00228{margin-left:-6.357600px;}
._11_c00228{margin-left:-5.248800px;}
._d_c00228{margin-left:-4.075200px;}
._a_c00228{margin-left:-2.980800px;}
._b_c00228{margin-left:-1.684800px;}
._1_c00228{width:1.368000px;}
._4_c00228{width:2.700000px;}
._10_c00228{width:4.082400px;}
._6_c00228{width:5.119200px;}
._12_c00228{width:6.379200px;}
._c_c00228{width:7.408800px;}
._9_c00228{width:9.057600px;}
._8_c00228{width:10.447200px;}
._7_c00228{width:11.995200px;}
._e_c00228{width:12.996000px;}
._5_c00228{width:14.515200px;}
._2_c00228{width:15.796800px;}
._3_c00228{width:17.143200px;}
._f_c00228{width:18.705600px;}
._16_c00228{width:32.479200px;}
._17_c00228{width:33.559200px;}
._14_c00228{width:36.972000px;}
._15_c00228{width:38.260800px;}
.fc1_c00228{color:rgb(0,0,153);}
.fc0_c00228{color:rgb(0,0,0);}
.fs1_c00228{font-size:54.000000px;}
.fs2_c00228{font-size:60.000000px;}
.fs0_c00228{font-size:72.000000px;}
.y0_c00228{bottom:0.000000px;}
.y8_c00228{bottom:10.500000px;}
.y7_c00228{bottom:27.000000px;}
.y6_c00228{bottom:45.000000px;}
.y1c_c00228{bottom:67.500000px;}
.y19_c00228{bottom:142.500000px;}
.y18_c00228{bottom:169.500000px;}
.y17_c00228{bottom:196.500000px;}
.y16_c00228{bottom:223.500000px;}
.y15_c00228{bottom:250.500000px;}
.y14_c00228{bottom:277.500000px;}
.y13_c00228{bottom:304.500000px;}
.y12_c00228{bottom:331.500000px;}
.y11_c00228{bottom:358.500000px;}
.y10_c00228{bottom:385.500000px;}
.yf_c00228{bottom:412.500000px;}
.ye_c00228{bottom:439.500000px;}
.yd_c00228{bottom:466.500000px;}
.yc_c00228{bottom:514.500000px;}
.yb_c00228{bottom:541.500000px;}
.ya_c00228{bottom:568.500000px;}
.y9_c00228{bottom:595.500000px;}
.y5_c00228{bottom:642.000000px;}
.y4_c00228{bottom:1014.000000px;}
.y3_c00228{bottom:1041.000000px;}
.y2_c00228{bottom:1068.000000px;}
.y1_c00228{bottom:1095.000000px;}
.y1b_c00228{bottom:1176.000000px;}
.y1a_c00228{bottom:1194.000000px;}
.h3_c00228{height:42.292969px;}
.h4_c00228{height:56.074219px;}
.h1_c00228{height:67.746094px;}
.h2_c00228{height:340.500000px;}
.h0_c00228{height:1263.000000px;}
.w1_c00228{width:676.500000px;}
.w0_c00228{width:892.500000px;}
.x0_c00228{left:0.000000px;}
.x2_c00228{left:15.634260px;}
.x3_c00228{left:117.942240px;}
.x1_c00228{left:150.519750px;}
.x5_c00228{left:195.862500px;}
.x4_c00228{left:198.681900px;}
.x6_c00228{left:627.778950px;}
.x7_c00228{left:801.992850px;}
@media print{
.v0_c00228{vertical-align:0.000000pt;}
.ls2_c00228{letter-spacing:0.000000pt;}
.ls1_c00228{letter-spacing:0.010667pt;}
.ls0_c00228{letter-spacing:0.014400pt;}
.ws1_c00228{word-spacing:-15.182400pt;}
.ws0_c00228{word-spacing:-15.168000pt;}
.ws2_c00228{word-spacing:0.000000pt;}
._0_c00228{margin-left:-9.408000pt;}
._13_c00228{margin-left:-5.651200pt;}
._11_c00228{margin-left:-4.665600pt;}
._d_c00228{margin-left:-3.622400pt;}
._a_c00228{margin-left:-2.649600pt;}
._b_c00228{margin-left:-1.497600pt;}
._1_c00228{width:1.216000pt;}
._4_c00228{width:2.400000pt;}
._10_c00228{width:3.628800pt;}
._6_c00228{width:4.550400pt;}
._12_c00228{width:5.670400pt;}
._c_c00228{width:6.585600pt;}
._9_c00228{width:8.051200pt;}
._8_c00228{width:9.286400pt;}
._7_c00228{width:10.662400pt;}
._e_c00228{width:11.552000pt;}
._5_c00228{width:12.902400pt;}
._2_c00228{width:14.041600pt;}
._3_c00228{width:15.238400pt;}
._f_c00228{width:16.627200pt;}
._16_c00228{width:28.870400pt;}
._17_c00228{width:29.830400pt;}
._14_c00228{width:32.864000pt;}
._15_c00228{width:34.009600pt;}
.fs1_c00228{font-size:48.000000pt;}
.fs2_c00228{font-size:53.333333pt;}
.fs0_c00228{font-size:64.000000pt;}
.y0_c00228{bottom:0.000000pt;}
.y8_c00228{bottom:9.333333pt;}
.y7_c00228{bottom:24.000000pt;}
.y6_c00228{bottom:40.000000pt;}
.y1c_c00228{bottom:60.000000pt;}
.y19_c00228{bottom:126.666667pt;}
.y18_c00228{bottom:150.666667pt;}
.y17_c00228{bottom:174.666667pt;}
.y16_c00228{bottom:198.666667pt;}
.y15_c00228{bottom:222.666667pt;}
.y14_c00228{bottom:246.666667pt;}
.y13_c00228{bottom:270.666667pt;}
.y12_c00228{bottom:294.666667pt;}
.y11_c00228{bottom:318.666667pt;}
.y10_c00228{bottom:342.666667pt;}
.yf_c00228{bottom:366.666667pt;}
.ye_c00228{bottom:390.666667pt;}
.yd_c00228{bottom:414.666667pt;}
.yc_c00228{bottom:457.333333pt;}
.yb_c00228{bottom:481.333333pt;}
.ya_c00228{bottom:505.333333pt;}
.y9_c00228{bottom:529.333333pt;}
.y5_c00228{bottom:570.666667pt;}
.y4_c00228{bottom:901.333333pt;}
.y3_c00228{bottom:925.333333pt;}
.y2_c00228{bottom:949.333333pt;}
.y1_c00228{bottom:973.333333pt;}
.y1b_c00228{bottom:1045.333333pt;}
.y1a_c00228{bottom:1061.333333pt;}
.h3_c00228{height:37.593750pt;}
.h4_c00228{height:49.843750pt;}
.h1_c00228{height:60.218750pt;}
.h2_c00228{height:302.666667pt;}
.h0_c00228{height:1122.666667pt;}
.w1_c00228{width:601.333333pt;}
.w0_c00228{width:793.333333pt;}
.x0_c00228{left:0.000000pt;}
.x2_c00228{left:13.897120pt;}
.x3_c00228{left:104.837547pt;}
.x1_c00228{left:133.795333pt;}
.x5_c00228{left:174.100000pt;}
.x4_c00228{left:176.606133pt;}
.x6_c00228{left:558.025733pt;}
.x7_c00228{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_69fd3e2a99ad105926c25647.woff2')format("woff");}.ff1_c00229{font-family:ff1_c00229;line-height:1.163086;font-style:normal;font-weight:normal;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_212e97bb35e9446779f13404.woff2')format("woff");}.ff2_c00229{font-family:ff2_c00229;line-height:0.756836;font-style:normal;font-weight:normal;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_b0a0eea2ff32014499e1e2f2.woff2')format("woff");}.ff3_c00229{font-family:ff3_c00229;line-height:1.155762;font-style:normal;font-weight:normal;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_e267412fefbb52c383dcfa7d.woff2')format("woff");}.ff4_c00229{font-family:ff4_c00229;line-height:1.101562;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00229;src:url('chunks/assets/font_943ee4ebfaf52bdc8d871105.woff2')format("woff");}.ff5_c00229{font-family:ff5_c00229;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00229{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00229{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00229{vertical-align:-23.086200px;}
.v3_c00229{vertical-align:-15.400200px;}
.v0_c00229{vertical-align:0.000000px;}
.v1_c00229{vertical-align:23.086200px;}
.ls8_c00229{letter-spacing:-0.007200px;}
.ls7_c00229{letter-spacing:0.000000px;}
.lsa_c00229{letter-spacing:0.012000px;}
.ls9_c00229{letter-spacing:0.014400px;}
.ls6_c00229{letter-spacing:0.085500px;}
.ls4_c00229{letter-spacing:1.759999px;}
.ls0_c00229{letter-spacing:1.857000px;}
.ls3_c00229{letter-spacing:2.558100px;}
.lsb_c00229{letter-spacing:3.456000px;}
.ls1_c00229{letter-spacing:5.739000px;}
.ls5_c00229{letter-spacing:6.492840px;}
.ls2_c00229{letter-spacing:7.759999px;}
.sc__c00229{text-shadow:none;}
.sc0_c00229{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00229{-webkit-text-stroke:0px transparent;}
.sc0_c00229{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00229{word-spacing:-15.000000px;}
.ws0_c00229{word-spacing:-13.200000px;}
.ws2_c00229{word-spacing:0.000000px;}
._19_c00229{margin-left:-10.590360px;}
._1b_c00229{margin-left:-6.897360px;}
._17_c00229{margin-left:-5.240640px;}
._7_c00229{margin-left:-4.112040px;}
._6_c00229{margin-left:-2.973600px;}
._0_c00229{margin-left:-1.944000px;}
._2_c00229{width:1.317600px;}
._5_c00229{width:2.606400px;}
._3_c00229{width:3.916800px;}
._4_c00229{width:5.248800px;}
._1_c00229{width:7.207200px;}
._1c_c00229{width:8.209560px;}
._b_c00229{width:9.332040px;}
._c_c00229{width:10.437480px;}
._8_c00229{width:12.074400px;}
._18_c00229{width:13.507560px;}
._a_c00229{width:14.702400px;}
._9_c00229{width:15.976800px;}
._d_c00229{width:17.258400px;}
._15_c00229{width:18.410400px;}
._1a_c00229{width:19.530660px;}
._16_c00229{width:20.930400px;}
._10_c00229{width:22.154400px;}
._11_c00229{width:24.127200px;}
._e_c00229{width:26.064000px;}
._f_c00229{width:28.000800px;}
._13_c00229{width:29.772000px;}
._12_c00229{width:31.716000px;}
._14_c00229{width:34.032600px;}
.fc0_c00229{color:rgb(0,0,0);}
.fs3_c00229{font-size:40.000002px;}
.fs1_c00229{font-size:48.000000px;}
.fs2_c00229{font-size:60.000000px;}
.fs0_c00229{font-size:72.000000px;}
.y0_c00229{bottom:0.000000px;}
.y19_c00229{bottom:67.500000px;}
.y25_c00229{bottom:132.000000px;}
.y24_c00229{bottom:155.350050px;}
.y23_c00229{bottom:196.500000px;}
.y22_c00229{bottom:219.850050px;}
.y21_c00229{bottom:261.000000px;}
.y20_c00229{bottom:280.500000px;}
.y1f_c00229{bottom:300.000000px;}
.y1e_c00229{bottom:319.500000px;}
.y1d_c00229{bottom:342.850050px;}
.y1c_c00229{bottom:384.000000px;}
.y1b_c00229{bottom:403.500000px;}
.y1a_c00229{bottom:426.850050px;}
.y17_c00229{bottom:480.000000px;}
.y16_c00229{bottom:507.000000px;}
.y15_c00229{bottom:534.000000px;}
.y14_c00229{bottom:561.000000px;}
.y13_c00229{bottom:588.000000px;}
.y12_c00229{bottom:615.000000px;}
.y11_c00229{bottom:642.000000px;}
.y10_c00229{bottom:669.000000px;}
.yf_c00229{bottom:696.000000px;}
.ye_c00229{bottom:723.000000px;}
.yd_c00229{bottom:771.000000px;}
.yc_c00229{bottom:798.000000px;}
.yb_c00229{bottom:825.000000px;}
.ya_c00229{bottom:852.000000px;}
.y9_c00229{bottom:879.000000px;}
.y8_c00229{bottom:906.000000px;}
.y7_c00229{bottom:933.000000px;}
.y6_c00229{bottom:960.000000px;}
.y5_c00229{bottom:987.000000px;}
.y4_c00229{bottom:1014.000000px;}
.y3_c00229{bottom:1041.000000px;}
.y2_c00229{bottom:1068.000000px;}
.y1_c00229{bottom:1095.000000px;}
.y18_c00229{bottom:1194.000000px;}
.h5_c00229{height:37.568550px;}
.h4_c00229{height:44.208984px;}
.h6_c00229{height:52.968750px;}
.h3_c00229{height:56.074219px;}
.h1_c00229{height:67.746094px;}
.h2_c00229{height:68.250262px;}
.h0_c00229{height:1263.000000px;}
.w0_c00229{width:892.500000px;}
.x0_c00229{left:0.000000px;}
.x1_c00229{left:65.480310px;}
@media print{
.v2_c00229{vertical-align:-20.521067pt;}
.v3_c00229{vertical-align:-13.689067pt;}
.v0_c00229{vertical-align:0.000000pt;}
.v1_c00229{vertical-align:20.521067pt;}
.ls8_c00229{letter-spacing:-0.006400pt;}
.ls7_c00229{letter-spacing:0.000000pt;}
.lsa_c00229{letter-spacing:0.010667pt;}
.ls9_c00229{letter-spacing:0.012800pt;}
.ls6_c00229{letter-spacing:0.076000pt;}
.ls4_c00229{letter-spacing:1.564443pt;}
.ls0_c00229{letter-spacing:1.650667pt;}
.ls3_c00229{letter-spacing:2.273867pt;}
.lsb_c00229{letter-spacing:3.072000pt;}
.ls1_c00229{letter-spacing:5.101333pt;}
.ls5_c00229{letter-spacing:5.771413pt;}
.ls2_c00229{letter-spacing:6.897777pt;}
.ws1_c00229{word-spacing:-13.333333pt;}
.ws0_c00229{word-spacing:-11.733333pt;}
.ws2_c00229{word-spacing:0.000000pt;}
._19_c00229{margin-left:-9.413653pt;}
._1b_c00229{margin-left:-6.130987pt;}
._17_c00229{margin-left:-4.658347pt;}
._7_c00229{margin-left:-3.655147pt;}
._6_c00229{margin-left:-2.643200pt;}
._0_c00229{margin-left:-1.728000pt;}
._2_c00229{width:1.171200pt;}
._5_c00229{width:2.316800pt;}
._3_c00229{width:3.481600pt;}
._4_c00229{width:4.665600pt;}
._1_c00229{width:6.406400pt;}
._1c_c00229{width:7.297387pt;}
._b_c00229{width:8.295147pt;}
._c_c00229{width:9.277760pt;}
._8_c00229{width:10.732800pt;}
._18_c00229{width:12.006720pt;}
._a_c00229{width:13.068800pt;}
._9_c00229{width:14.201600pt;}
._d_c00229{width:15.340800pt;}
._15_c00229{width:16.364800pt;}
._1a_c00229{width:17.360587pt;}
._16_c00229{width:18.604800pt;}
._10_c00229{width:19.692800pt;}
._11_c00229{width:21.446400pt;}
._e_c00229{width:23.168000pt;}
._f_c00229{width:24.889600pt;}
._13_c00229{width:26.464000pt;}
._12_c00229{width:28.192000pt;}
._14_c00229{width:30.251200pt;}
.fs3_c00229{font-size:35.555557pt;}
.fs1_c00229{font-size:42.666667pt;}
.fs2_c00229{font-size:53.333333pt;}
.fs0_c00229{font-size:64.000000pt;}
.y0_c00229{bottom:0.000000pt;}
.y19_c00229{bottom:60.000000pt;}
.y25_c00229{bottom:117.333333pt;}
.y24_c00229{bottom:138.088933pt;}
.y23_c00229{bottom:174.666667pt;}
.y22_c00229{bottom:195.422267pt;}
.y21_c00229{bottom:232.000000pt;}
.y20_c00229{bottom:249.333333pt;}
.y1f_c00229{bottom:266.666667pt;}
.y1e_c00229{bottom:284.000000pt;}
.y1d_c00229{bottom:304.755600pt;}
.y1c_c00229{bottom:341.333333pt;}
.y1b_c00229{bottom:358.666667pt;}
.y1a_c00229{bottom:379.422267pt;}
.y17_c00229{bottom:426.666667pt;}
.y16_c00229{bottom:450.666667pt;}
.y15_c00229{bottom:474.666667pt;}
.y14_c00229{bottom:498.666667pt;}
.y13_c00229{bottom:522.666667pt;}
.y12_c00229{bottom:546.666667pt;}
.y11_c00229{bottom:570.666667pt;}
.y10_c00229{bottom:594.666667pt;}
.yf_c00229{bottom:618.666667pt;}
.ye_c00229{bottom:642.666667pt;}
.yd_c00229{bottom:685.333333pt;}
.yc_c00229{bottom:709.333333pt;}
.yb_c00229{bottom:733.333333pt;}
.ya_c00229{bottom:757.333333pt;}
.y9_c00229{bottom:781.333333pt;}
.y8_c00229{bottom:805.333333pt;}
.y7_c00229{bottom:829.333333pt;}
.y6_c00229{bottom:853.333333pt;}
.y5_c00229{bottom:877.333333pt;}
.y4_c00229{bottom:901.333333pt;}
.y3_c00229{bottom:925.333333pt;}
.y2_c00229{bottom:949.333333pt;}
.y1_c00229{bottom:973.333333pt;}
.y18_c00229{bottom:1061.333333pt;}
.h5_c00229{height:33.394267pt;}
.h4_c00229{height:39.296875pt;}
.h6_c00229{height:47.083333pt;}
.h3_c00229{height:49.843750pt;}
.h1_c00229{height:60.218750pt;}
.h2_c00229{height:60.666900pt;}
.h0_c00229{height:1122.666667pt;}
.w0_c00229{width:793.333333pt;}
.x0_c00229{left:0.000000pt;}
.x1_c00229{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e617dbd2bb636a8f8ef2445d.woff2')format("woff");}.ff1_c00230{font-family:ff1_c00230;line-height:1.163086;font-style:normal;font-weight:normal;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_e80227d199dbfd91e76c55ec.woff2')format("woff");}.ff2_c00230{font-family:ff2_c00230;line-height:1.143066;font-style:normal;font-weight:normal;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_38e21b41d89b127840a49659.woff2')format("woff");}.ff3_c00230{font-family:ff3_c00230;line-height:1.115723;font-style:normal;font-weight:normal;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_b2f14b5e50d1645a647ffab6.woff2')format("woff");}.ff4_c00230{font-family:ff4_c00230;line-height:0.892578;font-style: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);}
.v2_c00230{vertical-align:-23.086200px;}
.v3_c00230{vertical-align:-15.400200px;}
.v0_c00230{vertical-align:0.000000px;}
.v1_c00230{vertical-align:23.086200px;}
.ls6_c00230{letter-spacing:-4.980000px;}
.ls4_c00230{letter-spacing:-0.009600px;}
.ls3_c00230{letter-spacing:-0.007200px;}
.ls2_c00230{letter-spacing:0.000000px;}
.ls5_c00230{letter-spacing:0.008000px;}
.ls0_c00230{letter-spacing:0.012000px;}
.ls1_c00230{letter-spacing:1.911000px;}
.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;}
}
.ws2_c00230{word-spacing:-15.000000px;}
.ws0_c00230{word-spacing:-13.190400px;}
.ws1_c00230{word-spacing:-11.128001px;}
.ws3_c00230{word-spacing:0.000000px;}
._17_c00230{margin-left:-11.282400px;}
._b_c00230{margin-left:-9.676800px;}
._18_c00230{margin-left:-7.135200px;}
._1f_c00230{margin-left:-5.496000px;}
._8_c00230{margin-left:-4.053600px;}
._1b_c00230{margin-left:-2.995200px;}
._0_c00230{margin-left:-1.958400px;}
._3_c00230{width:1.404000px;}
._1_c00230{width:2.930400px;}
._13_c00230{width:3.938400px;}
._6_c00230{width:5.068800px;}
._14_c00230{width:6.638400px;}
._9_c00230{width:8.510400px;}
._19_c00230{width:9.626400px;}
._a_c00230{width:10.857600px;}
._d_c00230{width:11.937600px;}
._e_c00230{width:12.974400px;}
._7_c00230{width:14.342400px;}
._c_c00230{width:15.717600px;}
._2_c00230{width:17.337600px;}
._4_c00230{width:18.727200px;}
._12_c00230{width:20.980800px;}
._5_c00230{width:22.168800px;}
._11_c00230{width:23.313600px;}
._10_c00230{width:25.322400px;}
._f_c00230{width:27.360000px;}
._1a_c00230{width:28.548000px;}
._15_c00230{width:29.836800px;}
._16_c00230{width:31.183200px;}
._1d_c00230{width:33.141600px;}
._1e_c00230{width:36.288000px;}
._1c_c00230{width:40.111200px;}
.fc1_c00230{color:rgb(0,0,153);}
.fc0_c00230{color:rgb(0,0,0);}
.fs3_c00230{font-size:40.000002px;}
.fs1_c00230{font-size:48.000000px;}
.fs2_c00230{font-size:60.000000px;}
.fs0_c00230{font-size:72.000000px;}
.y0_c00230{bottom:0.000000px;}
.y1d_c00230{bottom:67.500000px;}
.y25_c00230{bottom:132.000000px;}
.y24_c00230{bottom:151.500000px;}
.y23_c00230{bottom:174.850050px;}
.y22_c00230{bottom:219.850050px;}
.y21_c00230{bottom:261.000000px;}
.y20_c00230{bottom:280.500000px;}
.y1f_c00230{bottom:300.000000px;}
.y1e_c00230{bottom:323.350050px;}
.y1a_c00230{bottom:378.000000px;}
.y19_c00230{bottom:405.000000px;}
.y18_c00230{bottom:432.000000px;}
.y17_c00230{bottom:459.000000px;}
.y16_c00230{bottom:486.000000px;}
.y15_c00230{bottom:513.000000px;}
.y14_c00230{bottom:540.000000px;}
.y13_c00230{bottom:567.000000px;}
.y12_c00230{bottom:594.000000px;}
.y11_c00230{bottom:621.000000px;}
.y10_c00230{bottom:669.000000px;}
.yf_c00230{bottom:696.000000px;}
.ye_c00230{bottom:723.000000px;}
.yd_c00230{bottom:750.000000px;}
.yc_c00230{bottom:777.000000px;}
.yb_c00230{bottom:804.000000px;}
.ya_c00230{bottom:831.000000px;}
.y9_c00230{bottom:879.000000px;}
.y8_c00230{bottom:906.000000px;}
.y7_c00230{bottom:933.000000px;}
.y6_c00230{bottom:960.000000px;}
.y5_c00230{bottom:987.000000px;}
.y4_c00230{bottom:1014.000000px;}
.y3_c00230{bottom:1041.000000px;}
.y2_c00230{bottom:1068.000000px;}
.y1_c00230{bottom:1095.000000px;}
.y1c_c00230{bottom:1176.000000px;}
.y1b_c00230{bottom:1194.000000px;}
.h4_c00230{height:40.674019px;}
.h5_c00230{height:53.818359px;}
.h3_c00230{height:56.074219px;}
.h1_c00230{height:67.746094px;}
.h2_c00230{height:68.250262px;}
.h0_c00230{height:1263.000000px;}
.w0_c00230{width:892.500000px;}
.x0_c00230{left:0.000000px;}
.x1_c00230{left:150.519750px;}
.x2_c00230{left:195.862500px;}
.x3_c00230{left:627.778950px;}
.x4_c00230{left:801.992850px;}
@media print{
.v2_c00230{vertical-align:-20.521067pt;}
.v3_c00230{vertical-align:-13.689067pt;}
.v0_c00230{vertical-align:0.000000pt;}
.v1_c00230{vertical-align:20.521067pt;}
.ls6_c00230{letter-spacing:-4.426667pt;}
.ls4_c00230{letter-spacing:-0.008533pt;}
.ls3_c00230{letter-spacing:-0.006400pt;}
.ls2_c00230{letter-spacing:0.000000pt;}
.ls5_c00230{letter-spacing:0.007111pt;}
.ls0_c00230{letter-spacing:0.010667pt;}
.ls1_c00230{letter-spacing:1.698667pt;}
.ws2_c00230{word-spacing:-13.333333pt;}
.ws0_c00230{word-spacing:-11.724800pt;}
.ws1_c00230{word-spacing:-9.891556pt;}
.ws3_c00230{word-spacing:0.000000pt;}
._17_c00230{margin-left:-10.028800pt;}
._b_c00230{margin-left:-8.601600pt;}
._18_c00230{margin-left:-6.342400pt;}
._1f_c00230{margin-left:-4.885333pt;}
._8_c00230{margin-left:-3.603200pt;}
._1b_c00230{margin-left:-2.662400pt;}
._0_c00230{margin-left:-1.740800pt;}
._3_c00230{width:1.248000pt;}
._1_c00230{width:2.604800pt;}
._13_c00230{width:3.500800pt;}
._6_c00230{width:4.505600pt;}
._14_c00230{width:5.900800pt;}
._9_c00230{width:7.564800pt;}
._19_c00230{width:8.556800pt;}
._a_c00230{width:9.651200pt;}
._d_c00230{width:10.611200pt;}
._e_c00230{width:11.532800pt;}
._7_c00230{width:12.748800pt;}
._c_c00230{width:13.971200pt;}
._2_c00230{width:15.411200pt;}
._4_c00230{width:16.646400pt;}
._12_c00230{width:18.649600pt;}
._5_c00230{width:19.705600pt;}
._11_c00230{width:20.723200pt;}
._10_c00230{width:22.508800pt;}
._f_c00230{width:24.320000pt;}
._1a_c00230{width:25.376000pt;}
._15_c00230{width:26.521600pt;}
._16_c00230{width:27.718400pt;}
._1d_c00230{width:29.459200pt;}
._1e_c00230{width:32.256000pt;}
._1c_c00230{width:35.654400pt;}
.fs3_c00230{font-size:35.555557pt;}
.fs1_c00230{font-size:42.666667pt;}
.fs2_c00230{font-size:53.333333pt;}
.fs0_c00230{font-size:64.000000pt;}
.y0_c00230{bottom:0.000000pt;}
.y1d_c00230{bottom:60.000000pt;}
.y25_c00230{bottom:117.333333pt;}
.y24_c00230{bottom:134.666667pt;}
.y23_c00230{bottom:155.422267pt;}
.y22_c00230{bottom:195.422267pt;}
.y21_c00230{bottom:232.000000pt;}
.y20_c00230{bottom:249.333333pt;}
.y1f_c00230{bottom:266.666667pt;}
.y1e_c00230{bottom:287.422267pt;}
.y1a_c00230{bottom:336.000000pt;}
.y19_c00230{bottom:360.000000pt;}
.y18_c00230{bottom:384.000000pt;}
.y17_c00230{bottom:408.000000pt;}
.y16_c00230{bottom:432.000000pt;}
.y15_c00230{bottom:456.000000pt;}
.y14_c00230{bottom:480.000000pt;}
.y13_c00230{bottom:504.000000pt;}
.y12_c00230{bottom:528.000000pt;}
.y11_c00230{bottom:552.000000pt;}
.y10_c00230{bottom:594.666667pt;}
.yf_c00230{bottom:618.666667pt;}
.ye_c00230{bottom:642.666667pt;}
.yd_c00230{bottom:666.666667pt;}
.yc_c00230{bottom:690.666667pt;}
.yb_c00230{bottom:714.666667pt;}
.ya_c00230{bottom:738.666667pt;}
.y9_c00230{bottom:781.333333pt;}
.y8_c00230{bottom:805.333333pt;}
.y7_c00230{bottom:829.333333pt;}
.y6_c00230{bottom:853.333333pt;}
.y5_c00230{bottom:877.333333pt;}
.y4_c00230{bottom:901.333333pt;}
.y3_c00230{bottom:925.333333pt;}
.y2_c00230{bottom:949.333333pt;}
.y1_c00230{bottom:973.333333pt;}
.y1c_c00230{bottom:1045.333333pt;}
.y1b_c00230{bottom:1061.333333pt;}
.h4_c00230{height:36.154683pt;}
.h5_c00230{height:47.838542pt;}
.h3_c00230{height:49.843750pt;}
.h1_c00230{height:60.218750pt;}
.h2_c00230{height:60.666900pt;}
.h0_c00230{height:1122.666667pt;}
.w0_c00230{width:793.333333pt;}
.x0_c00230{left:0.000000pt;}
.x1_c00230{left:133.795333pt;}
.x2_c00230{left:174.100000pt;}
.x3_c00230{left:558.025733pt;}
.x4_c00230{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_808c191761726a814b75c05d.woff2')format("woff");}.ff1_c00231{font-family:ff1_c00231;line-height:1.124023;font-style:normal;font-weight:normal;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_01c5d6912be3257962ccc01d.woff2')format("woff");}.ff2_c00231{font-family:ff2_c00231;line-height:1.163086;font-style:normal;font-weight:normal;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_4abdde956e9e2ce2ac046d2e.woff2')format("woff");}.ff3_c00231{font-family:ff3_c00231;line-height:0.756836;font-style:normal;font-weight:normal;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_73e424d25094aab812bf4e40.woff2')format("woff");}.ff4_c00231{font-family:ff4_c00231;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00231;src:url('chunks/assets/font_999837b0b18b52208462d16a.woff2')format("woff");}.ff5_c00231{font-family:ff5_c00231;line-height:1.101562;font-style:normal;font-weight: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_c00231;src:url('chunks/assets/font_dd9f822b6505134009686de9.woff2')format("woff");}.ff6_c00231{font-family:ff6_c00231;line-height:1.091309;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00231{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00231{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00231{vertical-align:-23.086200px;}
.v3_c00231{vertical-align:-15.400200px;}
.v0_c00231{vertical-align:0.000000px;}
.v1_c00231{vertical-align:23.086200px;}
.ls9_c00231{letter-spacing:-2.311200px;}
.lsb_c00231{letter-spacing:-0.690000px;}
.ls8_c00231{letter-spacing:0.000000px;}
.ls6_c00231{letter-spacing:0.006019px;}
.ls0_c00231{letter-spacing:0.007200px;}
.lsa_c00231{letter-spacing:0.012000px;}
.ls4_c00231{letter-spacing:1.759999px;}
.ls2_c00231{letter-spacing:1.852080px;}
.ls7_c00231{letter-spacing:2.358780px;}
.ls5_c00231{letter-spacing:3.284760px;}
.ls3_c00231{letter-spacing:4.066800px;}
.ls1_c00231{letter-spacing:4.221600px;}
.sc__c00231{text-shadow:none;}
.sc0_c00231{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00231{-webkit-text-stroke:0px transparent;}
.sc0_c00231{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00231{word-spacing:-15.000000px;}
.ws0_c00231{word-spacing:-13.200000px;}
.ws2_c00231{word-spacing:0.000000px;}
._13_c00231{margin-left:-10.209840px;}
._0_c00231{margin-left:-7.877700px;}
._1c_c00231{margin-left:-6.331200px;}
._18_c00231{margin-left:-5.088000px;}
._9_c00231{margin-left:-3.859200px;}
._1_c00231{margin-left:-1.908000px;}
._b_c00231{width:1.180800px;}
._2_c00231{width:2.241600px;}
._7_c00231{width:3.686400px;}
._5_c00231{width:4.860000px;}
._16_c00231{width:5.899200px;}
._14_c00231{width:7.264800px;}
._15_c00231{width:8.426400px;}
._1b_c00231{width:9.624000px;}
._17_c00231{width:10.951200px;}
._12_c00231{width:12.091200px;}
._1a_c00231{width:13.168800px;}
._c_c00231{width:14.294400px;}
._a_c00231{width:15.578400px;}
._6_c00231{width:16.956000px;}
._8_c00231{width:18.093600px;}
._3_c00231{width:21.837600px;}
._4_c00231{width:23.577600px;}
._19_c00231{width:25.056000px;}
._f_c00231{width:31.557600px;}
._11_c00231{width:32.995200px;}
._d_c00231{width:35.236800px;}
._10_c00231{width:37.216800px;}
._e_c00231{width:39.146400px;}
.fc1_c00231{color:rgb(0,0,153);}
.fc0_c00231{color:rgb(0,0,0);}
.fs4_c00231{font-size:40.000002px;}
.fs2_c00231{font-size:48.000000px;}
.fs3_c00231{font-size:60.000000px;}
.fs0_c00231{font-size:72.000000px;}
.fs1_c00231{font-size:120.000000px;}
.y0_c00231{bottom:0.000000px;}
.y17_c00231{bottom:67.500000px;}
.y1e_c00231{bottom:132.000000px;}
.y1d_c00231{bottom:155.350050px;}
.y1c_c00231{bottom:196.500000px;}
.y1b_c00231{bottom:219.850050px;}
.y1a_c00231{bottom:264.850050px;}
.y19_c00231{bottom:306.000000px;}
.y18_c00231{bottom:329.350050px;}
.y15_c00231{bottom:376.500000px;}
.y14_c00231{bottom:403.500000px;}
.y13_c00231{bottom:430.500000px;}
.y12_c00231{bottom:457.500000px;}
.y11_c00231{bottom:484.500000px;}
.y10_c00231{bottom:511.500000px;}
.yf_c00231{bottom:538.500000px;}
.ye_c00231{bottom:565.500000px;}
.yd_c00231{bottom:592.500000px;}
.yc_c00231{bottom:640.500000px;}
.yb_c00231{bottom:667.500000px;}
.ya_c00231{bottom:694.500000px;}
.y9_c00231{bottom:721.500000px;}
.y8_c00231{bottom:748.500000px;}
.y7_c00231{bottom:775.500000px;}
.y6_c00231{bottom:802.500000px;}
.y5_c00231{bottom:829.500000px;}
.y4_c00231{bottom:877.500000px;}
.y3_c00231{bottom:904.500000px;}
.y2_c00231{bottom:993.000000px;}
.y1_c00231{bottom:1036.500000px;}
.y16_c00231{bottom:1194.000000px;}
.h6_c00231{height:37.627144px;}
.h5_c00231{height:44.208984px;}
.h8_c00231{height:52.968750px;}
.h7_c00231{height:53.027344px;}
.h4_c00231{height:56.074219px;}
.h2_c00231{height:67.746094px;}
.h3_c00231{height:68.250262px;}
.h1_c00231{height:113.671875px;}
.h0_c00231{height:1263.000000px;}
.w0_c00231{width:892.500000px;}
.x0_c00231{left:0.000000px;}
.x1_c00231{left:65.480310px;}
@media print{
.v2_c00231{vertical-align:-20.521067pt;}
.v3_c00231{vertical-align:-13.689067pt;}
.v0_c00231{vertical-align:0.000000pt;}
.v1_c00231{vertical-align:20.521067pt;}
.ls9_c00231{letter-spacing:-2.054400pt;}
.lsb_c00231{letter-spacing:-0.613333pt;}
.ls8_c00231{letter-spacing:0.000000pt;}
.ls6_c00231{letter-spacing:0.005350pt;}
.ls0_c00231{letter-spacing:0.006400pt;}
.lsa_c00231{letter-spacing:0.010667pt;}
.ls4_c00231{letter-spacing:1.564443pt;}
.ls2_c00231{letter-spacing:1.646293pt;}
.ls7_c00231{letter-spacing:2.096693pt;}
.ls5_c00231{letter-spacing:2.919787pt;}
.ls3_c00231{letter-spacing:3.614933pt;}
.ls1_c00231{letter-spacing:3.752533pt;}
.ws1_c00231{word-spacing:-13.333333pt;}
.ws0_c00231{word-spacing:-11.733333pt;}
.ws2_c00231{word-spacing:0.000000pt;}
._13_c00231{margin-left:-9.075413pt;}
._0_c00231{margin-left:-7.002400pt;}
._1c_c00231{margin-left:-5.627733pt;}
._18_c00231{margin-left:-4.522667pt;}
._9_c00231{margin-left:-3.430400pt;}
._1_c00231{margin-left:-1.696000pt;}
._b_c00231{width:1.049600pt;}
._2_c00231{width:1.992533pt;}
._7_c00231{width:3.276800pt;}
._5_c00231{width:4.320000pt;}
._16_c00231{width:5.243733pt;}
._14_c00231{width:6.457600pt;}
._15_c00231{width:7.490133pt;}
._1b_c00231{width:8.554667pt;}
._17_c00231{width:9.734400pt;}
._12_c00231{width:10.747733pt;}
._1a_c00231{width:11.705600pt;}
._c_c00231{width:12.706133pt;}
._a_c00231{width:13.847467pt;}
._6_c00231{width:15.072000pt;}
._8_c00231{width:16.083200pt;}
._3_c00231{width:19.411200pt;}
._4_c00231{width:20.957867pt;}
._19_c00231{width:22.272000pt;}
._f_c00231{width:28.051200pt;}
._11_c00231{width:29.329067pt;}
._d_c00231{width:31.321600pt;}
._10_c00231{width:33.081600pt;}
._e_c00231{width:34.796800pt;}
.fs4_c00231{font-size:35.555557pt;}
.fs2_c00231{font-size:42.666667pt;}
.fs3_c00231{font-size:53.333333pt;}
.fs0_c00231{font-size:64.000000pt;}
.fs1_c00231{font-size:106.666667pt;}
.y0_c00231{bottom:0.000000pt;}
.y17_c00231{bottom:60.000000pt;}
.y1e_c00231{bottom:117.333333pt;}
.y1d_c00231{bottom:138.088933pt;}
.y1c_c00231{bottom:174.666667pt;}
.y1b_c00231{bottom:195.422267pt;}
.y1a_c00231{bottom:235.422267pt;}
.y19_c00231{bottom:272.000000pt;}
.y18_c00231{bottom:292.755600pt;}
.y15_c00231{bottom:334.666667pt;}
.y14_c00231{bottom:358.666667pt;}
.y13_c00231{bottom:382.666667pt;}
.y12_c00231{bottom:406.666667pt;}
.y11_c00231{bottom:430.666667pt;}
.y10_c00231{bottom:454.666667pt;}
.yf_c00231{bottom:478.666667pt;}
.ye_c00231{bottom:502.666667pt;}
.yd_c00231{bottom:526.666667pt;}
.yc_c00231{bottom:569.333333pt;}
.yb_c00231{bottom:593.333333pt;}
.ya_c00231{bottom:617.333333pt;}
.y9_c00231{bottom:641.333333pt;}
.y8_c00231{bottom:665.333333pt;}
.y7_c00231{bottom:689.333333pt;}
.y6_c00231{bottom:713.333333pt;}
.y5_c00231{bottom:737.333333pt;}
.y4_c00231{bottom:780.000000pt;}
.y3_c00231{bottom:804.000000pt;}
.y2_c00231{bottom:882.666667pt;}
.y1_c00231{bottom:921.333333pt;}
.y16_c00231{bottom:1061.333333pt;}
.h6_c00231{height:33.446350pt;}
.h5_c00231{height:39.296875pt;}
.h8_c00231{height:47.083333pt;}
.h7_c00231{height:47.135417pt;}
.h4_c00231{height:49.843750pt;}
.h2_c00231{height:60.218750pt;}
.h3_c00231{height:60.666900pt;}
.h1_c00231{height:101.041667pt;}
.h0_c00231{height:1122.666667pt;}
.w0_c00231{width:793.333333pt;}
.x0_c00231{left:0.000000pt;}
.x1_c00231{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9144fc2f6d3237a2d2fa850e.woff2')format("woff");}.ff1_c00232{font-family:ff1_c00232;line-height:1.163086;font-style:normal;font-weight:normal;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_dfa357bf7e8a3761f01b898e.woff2')format("woff");}.ff2_c00232{font-family:ff2_c00232;line-height:0.888672;font-style:normal;font-weight:normal;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_c45a7eb1555bd21bca79e154.woff2')format("woff");}.ff3_c00232{font-family:ff3_c00232;line-height:1.143066;font-style:normal;font-weight:normal;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_956ef81c629f2adc20b9b759.woff2')format("woff");}.ff4_c00232{font-family:ff4_c00232;line-height:0.902344;font-style:normal;font-weight:normal;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_6caf4c2b6d320d00cc432794.woff2')format("woff");}.ff5_c00232{font-family:ff5_c00232;line-height:0.891113;font-style: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);}
.v2_c00232{vertical-align:-23.086200px;}
.v3_c00232{vertical-align:-15.400200px;}
.v0_c00232{vertical-align:0.000000px;}
.v4_c00232{vertical-align:15.000000px;}
.v1_c00232{vertical-align:23.086200px;}
.lse_c00232{letter-spacing:-4.296000px;}
.lsd_c00232{letter-spacing:-0.007200px;}
.lsc_c00232{letter-spacing:0.000000px;}
.lsb_c00232{letter-spacing:0.005599px;}
.ls1_c00232{letter-spacing:0.007200px;}
.ls6_c00232{letter-spacing:0.012000px;}
.ls5_c00232{letter-spacing:1.758600px;}
.ls7_c00232{letter-spacing:1.759999px;}
.ls0_c00232{letter-spacing:1.806000px;}
.ls4_c00232{letter-spacing:2.504400px;}
.ls9_c00232{letter-spacing:4.070400px;}
.ls8_c00232{letter-spacing:4.143600px;}
.ls3_c00232{letter-spacing:4.194600px;}
.ls2_c00232{letter-spacing:4.290600px;}
.lsa_c00232{letter-spacing:5.574800px;}
.sc__c00232{text-shadow:none;}
.sc0_c00232{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00232{-webkit-text-stroke:0px transparent;}
.sc0_c00232{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00232{word-spacing:-19.800000px;}
.ws1_c00232{word-spacing:0.000000px;}
._12_c00232{margin-left:-11.440800px;}
._14_c00232{margin-left:-7.149600px;}
._11_c00232{margin-left:-5.436000px;}
._1_c00232{margin-left:-4.291200px;}
._18_c00232{margin-left:-3.285600px;}
._5_c00232{margin-left:-2.232000px;}
._7_c00232{margin-left:-1.152000px;}
._3_c00232{width:1.936800px;}
._6_c00232{width:3.045600px;}
._4_c00232{width:5.004000px;}
._0_c00232{width:6.926400px;}
._13_c00232{width:8.107200px;}
._8_c00232{width:9.144000px;}
._17_c00232{width:10.198800px;}
._2_c00232{width:11.260800px;}
._10_c00232{width:12.909600px;}
._e_c00232{width:14.666400px;}
._f_c00232{width:15.724800px;}
._15_c00232{width:16.772400px;}
._b_c00232{width:17.798400px;}
._16_c00232{width:19.199400px;}
._c_c00232{width:20.988000px;}
._9_c00232{width:23.119200px;}
._a_c00232{width:24.242400px;}
._d_c00232{width:27.230400px;}
.fc0_c00232{color:rgb(0,0,0);}
.fs3_c00232{font-size:40.000002px;}
.fs1_c00232{font-size:48.000000px;}
.fs2_c00232{font-size:60.000000px;}
.fs0_c00232{font-size:72.000000px;}
.y0_c00232{bottom:0.000000px;}
.y19_c00232{bottom:67.500000px;}
.y22_c00232{bottom:135.850050px;}
.y21_c00232{bottom:180.850050px;}
.y20_c00232{bottom:225.850050px;}
.y1f_c00232{bottom:267.000000px;}
.y1e_c00232{bottom:286.500000px;}
.y1d_c00232{bottom:306.000000px;}
.y1c_c00232{bottom:329.350050px;}
.y1b_c00232{bottom:370.500000px;}
.y1a_c00232{bottom:393.850050px;}
.y16_c00232{bottom:465.000000px;}
.y15_c00232{bottom:492.000000px;}
.y14_c00232{bottom:519.000000px;}
.y13_c00232{bottom:546.000000px;}
.y12_c00232{bottom:573.000000px;}
.y11_c00232{bottom:621.000000px;}
.y10_c00232{bottom:648.000000px;}
.yf_c00232{bottom:675.000000px;}
.ye_c00232{bottom:702.000000px;}
.yd_c00232{bottom:729.000000px;}
.yc_c00232{bottom:756.000000px;}
.yb_c00232{bottom:804.000000px;}
.ya_c00232{bottom:831.000000px;}
.y9_c00232{bottom:858.000000px;}
.y8_c00232{bottom:885.000000px;}
.y7_c00232{bottom:933.000000px;}
.y6_c00232{bottom:960.000000px;}
.y5_c00232{bottom:987.000000px;}
.y4_c00232{bottom:1014.000000px;}
.y3_c00232{bottom:1041.000000px;}
.y2_c00232{bottom:1068.000000px;}
.y1_c00232{bottom:1095.000000px;}
.y18_c00232{bottom:1176.000000px;}
.y17_c00232{bottom:1194.000000px;}
.h6_c00232{height:37.382814px;}
.h4_c00232{height:40.674019px;}
.h5_c00232{height:41.015625px;}
.h3_c00232{height:56.074219px;}
.h1_c00232{height:67.746094px;}
.h2_c00232{height:68.250262px;}
.h0_c00232{height:1263.000000px;}
.w0_c00232{width:892.500000px;}
.x0_c00232{left:0.000000px;}
.x1_c00232{left:150.519750px;}
.x2_c00232{left:195.862500px;}
.x3_c00232{left:627.778950px;}
.x4_c00232{left:801.992850px;}
@media print{
.v2_c00232{vertical-align:-20.521067pt;}
.v3_c00232{vertical-align:-13.689067pt;}
.v0_c00232{vertical-align:0.000000pt;}
.v4_c00232{vertical-align:13.333333pt;}
.v1_c00232{vertical-align:20.521067pt;}
.lse_c00232{letter-spacing:-3.818667pt;}
.lsd_c00232{letter-spacing:-0.006400pt;}
.lsc_c00232{letter-spacing:0.000000pt;}
.lsb_c00232{letter-spacing:0.004977pt;}
.ls1_c00232{letter-spacing:0.006400pt;}
.ls6_c00232{letter-spacing:0.010667pt;}
.ls5_c00232{letter-spacing:1.563200pt;}
.ls7_c00232{letter-spacing:1.564443pt;}
.ls0_c00232{letter-spacing:1.605333pt;}
.ls4_c00232{letter-spacing:2.226133pt;}
.ls9_c00232{letter-spacing:3.618133pt;}
.ls8_c00232{letter-spacing:3.683200pt;}
.ls3_c00232{letter-spacing:3.728533pt;}
.ls2_c00232{letter-spacing:3.813867pt;}
.lsa_c00232{letter-spacing:4.955377pt;}
.ws0_c00232{word-spacing:-17.600000pt;}
.ws1_c00232{word-spacing:0.000000pt;}
._12_c00232{margin-left:-10.169600pt;}
._14_c00232{margin-left:-6.355200pt;}
._11_c00232{margin-left:-4.832000pt;}
._1_c00232{margin-left:-3.814400pt;}
._18_c00232{margin-left:-2.920533pt;}
._5_c00232{margin-left:-1.984000pt;}
._7_c00232{margin-left:-1.024000pt;}
._3_c00232{width:1.721600pt;}
._6_c00232{width:2.707200pt;}
._4_c00232{width:4.448000pt;}
._0_c00232{width:6.156800pt;}
._13_c00232{width:7.206400pt;}
._8_c00232{width:8.128000pt;}
._17_c00232{width:9.065600pt;}
._2_c00232{width:10.009600pt;}
._10_c00232{width:11.475200pt;}
._e_c00232{width:13.036800pt;}
._f_c00232{width:13.977600pt;}
._15_c00232{width:14.908800pt;}
._b_c00232{width:15.820800pt;}
._16_c00232{width:17.066133pt;}
._c_c00232{width:18.656000pt;}
._9_c00232{width:20.550400pt;}
._a_c00232{width:21.548800pt;}
._d_c00232{width:24.204800pt;}
.fs3_c00232{font-size:35.555557pt;}
.fs1_c00232{font-size:42.666667pt;}
.fs2_c00232{font-size:53.333333pt;}
.fs0_c00232{font-size:64.000000pt;}
.y0_c00232{bottom:0.000000pt;}
.y19_c00232{bottom:60.000000pt;}
.y22_c00232{bottom:120.755600pt;}
.y21_c00232{bottom:160.755600pt;}
.y20_c00232{bottom:200.755600pt;}
.y1f_c00232{bottom:237.333333pt;}
.y1e_c00232{bottom:254.666667pt;}
.y1d_c00232{bottom:272.000000pt;}
.y1c_c00232{bottom:292.755600pt;}
.y1b_c00232{bottom:329.333333pt;}
.y1a_c00232{bottom:350.088933pt;}
.y16_c00232{bottom:413.333333pt;}
.y15_c00232{bottom:437.333333pt;}
.y14_c00232{bottom:461.333333pt;}
.y13_c00232{bottom:485.333333pt;}
.y12_c00232{bottom:509.333333pt;}
.y11_c00232{bottom:552.000000pt;}
.y10_c00232{bottom:576.000000pt;}
.yf_c00232{bottom:600.000000pt;}
.ye_c00232{bottom:624.000000pt;}
.yd_c00232{bottom:648.000000pt;}
.yc_c00232{bottom:672.000000pt;}
.yb_c00232{bottom:714.666667pt;}
.ya_c00232{bottom:738.666667pt;}
.y9_c00232{bottom:762.666667pt;}
.y8_c00232{bottom:786.666667pt;}
.y7_c00232{bottom:829.333333pt;}
.y6_c00232{bottom:853.333333pt;}
.y5_c00232{bottom:877.333333pt;}
.y4_c00232{bottom:901.333333pt;}
.y3_c00232{bottom:925.333333pt;}
.y2_c00232{bottom:949.333333pt;}
.y1_c00232{bottom:973.333333pt;}
.y18_c00232{bottom:1045.333333pt;}
.y17_c00232{bottom:1061.333333pt;}
.h6_c00232{height:33.229168pt;}
.h4_c00232{height:36.154683pt;}
.h5_c00232{height:36.458333pt;}
.h3_c00232{height:49.843750pt;}
.h1_c00232{height:60.218750pt;}
.h2_c00232{height:60.666900pt;}
.h0_c00232{height:1122.666667pt;}
.w0_c00232{width:793.333333pt;}
.x0_c00232{left:0.000000pt;}
.x1_c00232{left:133.795333pt;}
.x2_c00232{left:174.100000pt;}
.x3_c00232{left:558.025733pt;}
.x4_c00232{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7b261f4f03bede801ef58f08.woff2')format("woff");}.ff1_c00233{font-family:ff1_c00233;line-height:1.163086;font-style:normal;font-weight:normal;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_834e64287c11b52acfe10427.woff2')format("woff");}.ff2_c00233{font-family:ff2_c00233;line-height:0.963867;font-style:normal;font-weight:normal;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_1ceea9550762747e645f1a8a.woff2')format("woff");}.ff3_c00233{font-family:ff3_c00233;line-height:0.755859;font-style:normal;font-weight:normal;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_165616df3b6af7d223897102.woff2')format("woff");}.ff4_c00233{font-family:ff4_c00233;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00233;src:url('chunks/assets/font_65de614ecc967bac1b73a799.woff2')format("woff");}.ff5_c00233{font-family:ff5_c00233;line-height:0.904785;font-style:normal;font-weight: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_c00233;src:url('chunks/assets/font_d5c43f5fb6d4f2bbf629d7f2.woff2')format("woff");}.ff6_c00233{font-family:ff6_c00233;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00233{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00233{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00233{vertical-align:-23.086200px;}
.v3_c00233{vertical-align:-15.400200px;}
.v0_c00233{vertical-align:0.000000px;}
.v1_c00233{vertical-align:23.086200px;}
.ls4_c00233{letter-spacing:-3.624000px;}
.ls1_c00233{letter-spacing:-0.009600px;}
.ls0_c00233{letter-spacing:0.000000px;}
.ls3_c00233{letter-spacing:0.008000px;}
.ls2_c00233{letter-spacing:0.012000px;}
.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;}
}
.ws2_c00233{word-spacing:-15.000000px;}
.ws0_c00233{word-spacing:-13.190400px;}
.ws1_c00233{word-spacing:-11.128001px;}
.ws3_c00233{word-spacing:0.000000px;}
._8_c00233{margin-left:-10.584000px;}
._10_c00233{margin-left:-6.708842px;}
._0_c00233{margin-left:-4.888800px;}
._a_c00233{margin-left:-3.628800px;}
._4_c00233{margin-left:-2.556000px;}
._9_c00233{margin-left:-1.324800px;}
._6_c00233{width:1.137600px;}
._2_c00233{width:2.174400px;}
._3_c00233{width:4.154400px;}
._7_c00233{width:5.212800px;}
._1_c00233{width:6.278400px;}
._b_c00233{width:7.754400px;}
._5_c00233{width:8.776800px;}
._c_c00233{width:10.281600px;}
._d_c00233{width:11.743200px;}
._f_c00233{width:13.147200px;}
._e_c00233{width:14.364000px;}
.fc0_c00233{color:rgb(0,0,0);}
.fs4_c00233{font-size:40.000002px;}
.fs1_c00233{font-size:48.000000px;}
.fs2_c00233{font-size:54.000000px;}
.fs3_c00233{font-size:60.000000px;}
.fs0_c00233{font-size:72.000000px;}
.y0_c00233{bottom:0.000000px;}
.y4_c00233{bottom:12.000000px;}
.y12_c00233{bottom:67.500000px;}
.y15_c00233{bottom:132.000000px;}
.y14_c00233{bottom:155.350050px;}
.y13_c00233{bottom:200.350050px;}
.y10_c00233{bottom:265.500000px;}
.yf_c00233{bottom:292.500000px;}
.ye_c00233{bottom:319.500000px;}
.yd_c00233{bottom:346.500000px;}
.yc_c00233{bottom:373.500000px;}
.yb_c00233{bottom:400.500000px;}
.ya_c00233{bottom:427.500000px;}
.y9_c00233{bottom:454.500000px;}
.y8_c00233{bottom:481.500000px;}
.y7_c00233{bottom:529.500000px;}
.y6_c00233{bottom:556.500000px;}
.y5_c00233{bottom:583.500000px;}
.y3_c00233{bottom:628.500000px;}
.y2_c00233{bottom:1068.000000px;}
.y1_c00233{bottom:1095.000000px;}
.y11_c00233{bottom:1194.000000px;}
.h7_c00233{height:29.472658px;}
.h8_c00233{height:41.220703px;}
.h4_c00233{height:41.633789px;}
.h6_c00233{height:44.208984px;}
.h5_c00233{height:56.074219px;}
.h1_c00233{height:67.746094px;}
.h2_c00233{height:68.250262px;}
.h3_c00233{height:408.000000px;}
.h0_c00233{height:1263.000000px;}
.w1_c00233{width:676.500000px;}
.w0_c00233{width:892.500000px;}
.x0_c00233{left:0.000000px;}
.x1_c00233{left:65.480310px;}
.x2_c00233{left:153.768750px;}
@media print{
.v2_c00233{vertical-align:-20.521067pt;}
.v3_c00233{vertical-align:-13.689067pt;}
.v0_c00233{vertical-align:0.000000pt;}
.v1_c00233{vertical-align:20.521067pt;}
.ls4_c00233{letter-spacing:-3.221333pt;}
.ls1_c00233{letter-spacing:-0.008533pt;}
.ls0_c00233{letter-spacing:0.000000pt;}
.ls3_c00233{letter-spacing:0.007111pt;}
.ls2_c00233{letter-spacing:0.010667pt;}
.ws2_c00233{word-spacing:-13.333333pt;}
.ws0_c00233{word-spacing:-11.724800pt;}
.ws1_c00233{word-spacing:-9.891556pt;}
.ws3_c00233{word-spacing:0.000000pt;}
._8_c00233{margin-left:-9.408000pt;}
._10_c00233{margin-left:-5.963415pt;}
._0_c00233{margin-left:-4.345600pt;}
._a_c00233{margin-left:-3.225600pt;}
._4_c00233{margin-left:-2.272000pt;}
._9_c00233{margin-left:-1.177600pt;}
._6_c00233{width:1.011200pt;}
._2_c00233{width:1.932800pt;}
._3_c00233{width:3.692800pt;}
._7_c00233{width:4.633600pt;}
._1_c00233{width:5.580800pt;}
._b_c00233{width:6.892800pt;}
._5_c00233{width:7.801600pt;}
._c_c00233{width:9.139200pt;}
._d_c00233{width:10.438400pt;}
._f_c00233{width:11.686400pt;}
._e_c00233{width:12.768000pt;}
.fs4_c00233{font-size:35.555557pt;}
.fs1_c00233{font-size:42.666667pt;}
.fs2_c00233{font-size:48.000000pt;}
.fs3_c00233{font-size:53.333333pt;}
.fs0_c00233{font-size:64.000000pt;}
.y0_c00233{bottom:0.000000pt;}
.y4_c00233{bottom:10.666667pt;}
.y12_c00233{bottom:60.000000pt;}
.y15_c00233{bottom:117.333333pt;}
.y14_c00233{bottom:138.088933pt;}
.y13_c00233{bottom:178.088933pt;}
.y10_c00233{bottom:236.000000pt;}
.yf_c00233{bottom:260.000000pt;}
.ye_c00233{bottom:284.000000pt;}
.yd_c00233{bottom:308.000000pt;}
.yc_c00233{bottom:332.000000pt;}
.yb_c00233{bottom:356.000000pt;}
.ya_c00233{bottom:380.000000pt;}
.y9_c00233{bottom:404.000000pt;}
.y8_c00233{bottom:428.000000pt;}
.y7_c00233{bottom:470.666667pt;}
.y6_c00233{bottom:494.666667pt;}
.y5_c00233{bottom:518.666667pt;}
.y3_c00233{bottom:558.666667pt;}
.y2_c00233{bottom:949.333333pt;}
.y1_c00233{bottom:973.333333pt;}
.y11_c00233{bottom:1061.333333pt;}
.h7_c00233{height:26.197918pt;}
.h8_c00233{height:36.640625pt;}
.h4_c00233{height:37.007812pt;}
.h6_c00233{height:39.296875pt;}
.h5_c00233{height:49.843750pt;}
.h1_c00233{height:60.218750pt;}
.h2_c00233{height:60.666900pt;}
.h3_c00233{height:362.666667pt;}
.h0_c00233{height:1122.666667pt;}
.w1_c00233{width:601.333333pt;}
.w0_c00233{width:793.333333pt;}
.x0_c00233{left:0.000000pt;}
.x1_c00233{left:58.204720pt;}
.x2_c00233{left:136.683333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e485fd3b589cb7e5883c4706.woff2')format("woff");}.ff1_c00234{font-family:ff1_c00234;line-height:1.163086;font-style:normal;font-weight:normal;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_35c5099ea3ca15e62ef2d8ac.woff2')format("woff");}.ff2_c00234{font-family:ff2_c00234;line-height:1.143066;font-style:normal;font-weight:normal;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_841409a528ddcbffe5d40529.woff2')format("woff");}.ff3_c00234{font-family:ff3_c00234;line-height:1.115723;font-style:normal;font-weight:normal;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_f4078ee341ec79143d01fd6c.woff2')format("woff");}.ff4_c00234{font-family:ff4_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;}
.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);}
.v2_c00234{vertical-align:-23.086200px;}
.v3_c00234{vertical-align:-15.400200px;}
.v0_c00234{vertical-align:0.000000px;}
.v1_c00234{vertical-align:23.086200px;}
.ls8_c00234{letter-spacing:-5.628000px;}
.ls7_c00234{letter-spacing:-4.134000px;}
.ls9_c00234{letter-spacing:-1.632000px;}
.ls5_c00234{letter-spacing:-0.009600px;}
.ls4_c00234{letter-spacing:0.000000px;}
.ls6_c00234{letter-spacing:0.008000px;}
.ls0_c00234{letter-spacing:0.012000px;}
.ls2_c00234{letter-spacing:1.296000px;}
.ls1_c00234{letter-spacing:1.831800px;}
.ls3_c00234{letter-spacing:2.970600px;}
.sc__c00234{text-shadow:none;}
.sc0_c00234{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00234{-webkit-text-stroke:0px transparent;}
.sc0_c00234{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00234{word-spacing:-19.800000px;}
.ws3_c00234{word-spacing:-15.000000px;}
.ws0_c00234{word-spacing:-13.190400px;}
.ws2_c00234{word-spacing:-11.128001px;}
.ws4_c00234{word-spacing:0.000000px;}
._f_c00234{margin-left:-10.244400px;}
._17_c00234{margin-left:-7.192800px;}
._1f_c00234{margin-left:-4.976402px;}
._0_c00234{margin-left:-3.945600px;}
._5_c00234{margin-left:-2.613600px;}
._10_c00234{margin-left:-1.548000px;}
._2_c00234{width:1.692000px;}
._3_c00234{width:3.578400px;}
._9_c00234{width:5.364000px;}
._11_c00234{width:6.388800px;}
._e_c00234{width:7.616400px;}
._1b_c00234{width:8.625600px;}
._d_c00234{width:9.741600px;}
._a_c00234{width:11.484000px;}
._1a_c00234{width:12.706800px;}
._c_c00234{width:14.054400px;}
._b_c00234{width:15.422400px;}
._4_c00234{width:17.366400px;}
._1c_c00234{width:18.408600px;}
._1_c00234{width:21.232800px;}
._19_c00234{width:22.392000px;}
._6_c00234{width:23.767200px;}
._18_c00234{width:25.221600px;}
._8_c00234{width:27.273600px;}
._7_c00234{width:28.742400px;}
._16_c00234{width:30.916800px;}
._14_c00234{width:32.349600px;}
._13_c00234{width:34.099200px;}
._15_c00234{width:35.596800px;}
._12_c00234{width:36.648000px;}
._1d_c00234{width:39.283200px;}
._1e_c00234{width:40.298400px;}
.fc1_c00234{color:rgb(0,0,153);}
.fc0_c00234{color:rgb(0,0,0);}
.fs3_c00234{font-size:40.000002px;}
.fs1_c00234{font-size:48.000000px;}
.fs2_c00234{font-size:60.000000px;}
.fs0_c00234{font-size:72.000000px;}
.y0_c00234{bottom:0.000000px;}
.y19_c00234{bottom:67.500000px;}
.y23_c00234{bottom:132.000000px;}
.y22_c00234{bottom:151.500000px;}
.y21_c00234{bottom:171.000000px;}
.y20_c00234{bottom:190.500000px;}
.y1f_c00234{bottom:213.850050px;}
.y1e_c00234{bottom:255.000000px;}
.y1d_c00234{bottom:278.350050px;}
.y1c_c00234{bottom:319.500000px;}
.y1b_c00234{bottom:342.850050px;}
.y1a_c00234{bottom:387.850050px;}
.y16_c00234{bottom:486.000000px;}
.y15_c00234{bottom:513.000000px;}
.y14_c00234{bottom:540.000000px;}
.y13_c00234{bottom:567.000000px;}
.y12_c00234{bottom:594.000000px;}
.y11_c00234{bottom:621.000000px;}
.y10_c00234{bottom:648.000000px;}
.yf_c00234{bottom:675.000000px;}
.ye_c00234{bottom:702.000000px;}
.yd_c00234{bottom:750.000000px;}
.yc_c00234{bottom:777.000000px;}
.yb_c00234{bottom:804.000000px;}
.ya_c00234{bottom:831.000000px;}
.y9_c00234{bottom:879.000000px;}
.y8_c00234{bottom:906.000000px;}
.y7_c00234{bottom:933.000000px;}
.y6_c00234{bottom:960.000000px;}
.y5_c00234{bottom:987.000000px;}
.y4_c00234{bottom:1014.000000px;}
.y3_c00234{bottom:1041.000000px;}
.y2_c00234{bottom:1068.000000px;}
.y1_c00234{bottom:1095.000000px;}
.y18_c00234{bottom:1176.000000px;}
.y17_c00234{bottom:1194.000000px;}
.h4_c00234{height:40.674019px;}
.h5_c00234{height:53.818359px;}
.h3_c00234{height:56.074219px;}
.h1_c00234{height:67.746094px;}
.h2_c00234{height:68.250262px;}
.h0_c00234{height:1263.000000px;}
.w0_c00234{width:892.500000px;}
.x0_c00234{left:0.000000px;}
.x1_c00234{left:150.519750px;}
.x2_c00234{left:195.862500px;}
.x3_c00234{left:627.778950px;}
.x4_c00234{left:801.992850px;}
@media print{
.v2_c00234{vertical-align:-20.521067pt;}
.v3_c00234{vertical-align:-13.689067pt;}
.v0_c00234{vertical-align:0.000000pt;}
.v1_c00234{vertical-align:20.521067pt;}
.ls8_c00234{letter-spacing:-5.002667pt;}
.ls7_c00234{letter-spacing:-3.674667pt;}
.ls9_c00234{letter-spacing:-1.450667pt;}
.ls5_c00234{letter-spacing:-0.008533pt;}
.ls4_c00234{letter-spacing:0.000000pt;}
.ls6_c00234{letter-spacing:0.007111pt;}
.ls0_c00234{letter-spacing:0.010667pt;}
.ls2_c00234{letter-spacing:1.152000pt;}
.ls1_c00234{letter-spacing:1.628267pt;}
.ls3_c00234{letter-spacing:2.640533pt;}
.ws1_c00234{word-spacing:-17.600000pt;}
.ws3_c00234{word-spacing:-13.333333pt;}
.ws0_c00234{word-spacing:-11.724800pt;}
.ws2_c00234{word-spacing:-9.891556pt;}
.ws4_c00234{word-spacing:0.000000pt;}
._f_c00234{margin-left:-9.106133pt;}
._17_c00234{margin-left:-6.393600pt;}
._1f_c00234{margin-left:-4.423469pt;}
._0_c00234{margin-left:-3.507200pt;}
._5_c00234{margin-left:-2.323200pt;}
._10_c00234{margin-left:-1.376000pt;}
._2_c00234{width:1.504000pt;}
._3_c00234{width:3.180800pt;}
._9_c00234{width:4.768000pt;}
._11_c00234{width:5.678933pt;}
._e_c00234{width:6.770133pt;}
._1b_c00234{width:7.667200pt;}
._d_c00234{width:8.659200pt;}
._a_c00234{width:10.208000pt;}
._1a_c00234{width:11.294933pt;}
._c_c00234{width:12.492800pt;}
._b_c00234{width:13.708800pt;}
._4_c00234{width:15.436800pt;}
._1c_c00234{width:16.363200pt;}
._1_c00234{width:18.873600pt;}
._19_c00234{width:19.904000pt;}
._6_c00234{width:21.126400pt;}
._18_c00234{width:22.419200pt;}
._8_c00234{width:24.243200pt;}
._7_c00234{width:25.548800pt;}
._16_c00234{width:27.481600pt;}
._14_c00234{width:28.755200pt;}
._13_c00234{width:30.310400pt;}
._15_c00234{width:31.641600pt;}
._12_c00234{width:32.576000pt;}
._1d_c00234{width:34.918400pt;}
._1e_c00234{width:35.820800pt;}
.fs3_c00234{font-size:35.555557pt;}
.fs1_c00234{font-size:42.666667pt;}
.fs2_c00234{font-size:53.333333pt;}
.fs0_c00234{font-size:64.000000pt;}
.y0_c00234{bottom:0.000000pt;}
.y19_c00234{bottom:60.000000pt;}
.y23_c00234{bottom:117.333333pt;}
.y22_c00234{bottom:134.666667pt;}
.y21_c00234{bottom:152.000000pt;}
.y20_c00234{bottom:169.333333pt;}
.y1f_c00234{bottom:190.088933pt;}
.y1e_c00234{bottom:226.666667pt;}
.y1d_c00234{bottom:247.422267pt;}
.y1c_c00234{bottom:284.000000pt;}
.y1b_c00234{bottom:304.755600pt;}
.y1a_c00234{bottom:344.755600pt;}
.y16_c00234{bottom:432.000000pt;}
.y15_c00234{bottom:456.000000pt;}
.y14_c00234{bottom:480.000000pt;}
.y13_c00234{bottom:504.000000pt;}
.y12_c00234{bottom:528.000000pt;}
.y11_c00234{bottom:552.000000pt;}
.y10_c00234{bottom:576.000000pt;}
.yf_c00234{bottom:600.000000pt;}
.ye_c00234{bottom:624.000000pt;}
.yd_c00234{bottom:666.666667pt;}
.yc_c00234{bottom:690.666667pt;}
.yb_c00234{bottom:714.666667pt;}
.ya_c00234{bottom:738.666667pt;}
.y9_c00234{bottom:781.333333pt;}
.y8_c00234{bottom:805.333333pt;}
.y7_c00234{bottom:829.333333pt;}
.y6_c00234{bottom:853.333333pt;}
.y5_c00234{bottom:877.333333pt;}
.y4_c00234{bottom:901.333333pt;}
.y3_c00234{bottom:925.333333pt;}
.y2_c00234{bottom:949.333333pt;}
.y1_c00234{bottom:973.333333pt;}
.y18_c00234{bottom:1045.333333pt;}
.y17_c00234{bottom:1061.333333pt;}
.h4_c00234{height:36.154683pt;}
.h5_c00234{height:47.838542pt;}
.h3_c00234{height:49.843750pt;}
.h1_c00234{height:60.218750pt;}
.h2_c00234{height:60.666900pt;}
.h0_c00234{height:1122.666667pt;}
.w0_c00234{width:793.333333pt;}
.x0_c00234{left:0.000000pt;}
.x1_c00234{left:133.795333pt;}
.x2_c00234{left:174.100000pt;}
.x3_c00234{left:558.025733pt;}
.x4_c00234{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9b5ac6734663f5a030c3780f.woff2')format("woff");}.ff1_c00235{font-family:ff1_c00235;line-height:0.755859;font-style:normal;font-weight:normal;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_d2f588b6cf415df2c8297749.woff2')format("woff");}.ff2_c00235{font-family:ff2_c00235;line-height:0.719727;font-style:normal;font-weight:normal;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_0ead3498095e11e14e08b149.woff2')format("woff");}.ff3_c00235{font-family:ff3_c00235;line-height:1.496000;font-style:normal;font-weight:normal;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_b9dff8684e9a36853a6eec67.woff2')format("woff");}.ff4_c00235{font-family:ff4_c00235;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00235{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00235{vertical-align:0.000000px;}
.ls1_c00235{letter-spacing:-0.013200px;}
.ls2_c00235{letter-spacing:0.000000px;}
.ls3_c00235{letter-spacing:0.012000px;}
.ls0_c00235{letter-spacing:1.372800px;}
.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:0.000000px;}
._11_c00235{margin-left:-4.728000px;}
._16_c00235{margin-left:-3.446400px;}
._3_c00235{margin-left:-2.299200px;}
._b_c00235{margin-left:-1.267200px;}
._0_c00235{width:1.680000px;}
._2_c00235{width:3.158400px;}
._8_c00235{width:4.852800px;}
._6_c00235{width:6.000000px;}
._f_c00235{width:7.027200px;}
._e_c00235{width:8.193600px;}
._c_c00235{width:9.460800px;}
._d_c00235{width:10.488000px;}
._13_c00235{width:11.966400px;}
._10_c00235{width:12.998400px;}
._12_c00235{width:14.059200px;}
._9_c00235{width:15.316800px;}
._14_c00235{width:16.526400px;}
._7_c00235{width:17.664000px;}
._a_c00235{width:18.739200px;}
._1_c00235{width:21.945600px;}
._5_c00235{width:23.668800px;}
._15_c00235{width:25.065600px;}
._4_c00235{width:26.088000px;}
.fc2_c00235{color:rgb(0,0,0);}
.fc1_c00235{color:rgb(78,60,31);}
.fc0_c00235{color:rgb(128,98,51);}
.fs3_c00235{font-size:48.000000px;}
.fs4_c00235{font-size:60.000000px;}
.fs0_c00235{font-size:66.000000px;}
.fs2_c00235{font-size:72.000000px;}
.fs1_c00235{font-size:78.000000px;}
.y0_c00235{bottom:0.000000px;}
.y26_c00235{bottom:67.500000px;}
.y24_c00235{bottom:298.500000px;}
.y23_c00235{bottom:315.000000px;}
.y22_c00235{bottom:348.000000px;}
.y21_c00235{bottom:364.500000px;}
.y20_c00235{bottom:381.000000px;}
.y1f_c00235{bottom:397.500000px;}
.y1e_c00235{bottom:414.000000px;}
.y1d_c00235{bottom:430.500000px;}
.y1c_c00235{bottom:447.000000px;}
.y1b_c00235{bottom:463.500000px;}
.y1a_c00235{bottom:480.000000px;}
.y19_c00235{bottom:513.000000px;}
.y18_c00235{bottom:529.500000px;}
.y17_c00235{bottom:546.000000px;}
.y16_c00235{bottom:562.500000px;}
.y15_c00235{bottom:595.500000px;}
.y14_c00235{bottom:612.000000px;}
.y13_c00235{bottom:645.000000px;}
.y12_c00235{bottom:661.500000px;}
.y11_c00235{bottom:694.500000px;}
.y10_c00235{bottom:711.000000px;}
.yf_c00235{bottom:744.000000px;}
.ye_c00235{bottom:777.000000px;}
.yd_c00235{bottom:793.500000px;}
.yc_c00235{bottom:810.000000px;}
.yb_c00235{bottom:843.000000px;}
.ya_c00235{bottom:859.500000px;}
.y9_c00235{bottom:876.000000px;}
.y8_c00235{bottom:892.500000px;}
.y7_c00235{bottom:909.000000px;}
.y6_c00235{bottom:925.500000px;}
.y5_c00235{bottom:942.000000px;}
.y4_c00235{bottom:958.500000px;}
.y3_c00235{bottom:975.000000px;}
.y2_c00235{bottom:1015.500000px;}
.y1_c00235{bottom:1044.000000px;}
.y25_c00235{bottom:1194.000000px;}
.h5_c00235{height:44.208984px;}
.h3_c00235{height:50.976000px;}
.h4_c00235{height:56.074219px;}
.h2_c00235{height:76.464000px;}
.h1_c00235{height:82.836000px;}
.h0_c00235{height:1263.000000px;}
.w0_c00235{width:892.500000px;}
.x0_c00235{left:0.000000px;}
.x2_c00235{left:65.480310px;}
.x1_c00235{left:104.999970px;}
@media print{
.v0_c00235{vertical-align:0.000000pt;}
.ls1_c00235{letter-spacing:-0.011733pt;}
.ls2_c00235{letter-spacing:0.000000pt;}
.ls3_c00235{letter-spacing:0.010667pt;}
.ls0_c00235{letter-spacing:1.220267pt;}
.ws0_c00235{word-spacing:0.000000pt;}
._11_c00235{margin-left:-4.202667pt;}
._16_c00235{margin-left:-3.063467pt;}
._3_c00235{margin-left:-2.043733pt;}
._b_c00235{margin-left:-1.126400pt;}
._0_c00235{width:1.493333pt;}
._2_c00235{width:2.807467pt;}
._8_c00235{width:4.313600pt;}
._6_c00235{width:5.333333pt;}
._f_c00235{width:6.246400pt;}
._e_c00235{width:7.283200pt;}
._c_c00235{width:8.409600pt;}
._d_c00235{width:9.322667pt;}
._13_c00235{width:10.636800pt;}
._10_c00235{width:11.554133pt;}
._12_c00235{width:12.497067pt;}
._9_c00235{width:13.614933pt;}
._14_c00235{width:14.690133pt;}
._7_c00235{width:15.701333pt;}
._a_c00235{width:16.657067pt;}
._1_c00235{width:19.507200pt;}
._5_c00235{width:21.038933pt;}
._15_c00235{width:22.280533pt;}
._4_c00235{width:23.189333pt;}
.fs3_c00235{font-size:42.666667pt;}
.fs4_c00235{font-size:53.333333pt;}
.fs0_c00235{font-size:58.666667pt;}
.fs2_c00235{font-size:64.000000pt;}
.fs1_c00235{font-size:69.333333pt;}
.y0_c00235{bottom:0.000000pt;}
.y26_c00235{bottom:60.000000pt;}
.y24_c00235{bottom:265.333333pt;}
.y23_c00235{bottom:280.000000pt;}
.y22_c00235{bottom:309.333333pt;}
.y21_c00235{bottom:324.000000pt;}
.y20_c00235{bottom:338.666667pt;}
.y1f_c00235{bottom:353.333333pt;}
.y1e_c00235{bottom:368.000000pt;}
.y1d_c00235{bottom:382.666667pt;}
.y1c_c00235{bottom:397.333333pt;}
.y1b_c00235{bottom:412.000000pt;}
.y1a_c00235{bottom:426.666667pt;}
.y19_c00235{bottom:456.000000pt;}
.y18_c00235{bottom:470.666667pt;}
.y17_c00235{bottom:485.333333pt;}
.y16_c00235{bottom:500.000000pt;}
.y15_c00235{bottom:529.333333pt;}
.y14_c00235{bottom:544.000000pt;}
.y13_c00235{bottom:573.333333pt;}
.y12_c00235{bottom:588.000000pt;}
.y11_c00235{bottom:617.333333pt;}
.y10_c00235{bottom:632.000000pt;}
.yf_c00235{bottom:661.333333pt;}
.ye_c00235{bottom:690.666667pt;}
.yd_c00235{bottom:705.333333pt;}
.yc_c00235{bottom:720.000000pt;}
.yb_c00235{bottom:749.333333pt;}
.ya_c00235{bottom:764.000000pt;}
.y9_c00235{bottom:778.666667pt;}
.y8_c00235{bottom:793.333333pt;}
.y7_c00235{bottom:808.000000pt;}
.y6_c00235{bottom:822.666667pt;}
.y5_c00235{bottom:837.333333pt;}
.y4_c00235{bottom:852.000000pt;}
.y3_c00235{bottom:866.666667pt;}
.y2_c00235{bottom:902.666667pt;}
.y1_c00235{bottom:928.000000pt;}
.y25_c00235{bottom:1061.333333pt;}
.h5_c00235{height:39.296875pt;}
.h3_c00235{height:45.312000pt;}
.h4_c00235{height:49.843750pt;}
.h2_c00235{height:67.968000pt;}
.h1_c00235{height:73.632000pt;}
.h0_c00235{height:1122.666667pt;}
.w0_c00235{width:793.333333pt;}
.x0_c00235{left:0.000000pt;}
.x2_c00235{left:58.204720pt;}
.x1_c00235{left:93.333307pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eafe22e86369beb72916c541.woff2')format("woff");}.ff1_c00236{font-family:ff1_c00236;line-height:1.496000;font-style:normal;font-weight:normal;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_2745d96717db9618e1ca7bcb.woff2')format("woff");}.ff2_c00236{font-family:ff2_c00236;line-height:0.996582;font-style:normal;font-weight:normal;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_7c669ce85d56d29dd3332a28.woff2')format("woff");}.ff3_c00236{font-family:ff3_c00236;line-height:1.005371;font-style:normal;font-weight:normal;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_dcf3dd58fa50d7f8f4236229.woff2')format("woff");}.ff4_c00236{font-family:ff4_c00236;line-height:1.143066;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00236{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00236{vertical-align:0.000000px;}
.ls1_c00236{letter-spacing:0.000000px;}
.ls0_c00236{letter-spacing:0.012000px;}
.sc__c00236{text-shadow:none;}
.sc0_c00236{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00236{-webkit-text-stroke:0px transparent;}
.sc0_c00236{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00236{word-spacing:0.000000px;}
._16_c00236{margin-left:-19.473600px;}
._17_c00236{margin-left:-6.672000px;}
._15_c00236{margin-left:-5.284800px;}
._b_c00236{margin-left:-3.633600px;}
._4_c00236{margin-left:-2.294400px;}
._f_c00236{margin-left:-1.152000px;}
._6_c00236{width:1.488000px;}
._0_c00236{width:2.500800px;}
._3_c00236{width:4.300800px;}
._11_c00236{width:5.414400px;}
._1_c00236{width:6.484800px;}
._7_c00236{width:7.492800px;}
._2_c00236{width:8.980800px;}
._14_c00236{width:10.305600px;}
._5_c00236{width:11.654400px;}
._a_c00236{width:13.084800px;}
._8_c00236{width:14.568000px;}
._12_c00236{width:15.696000px;}
._9_c00236{width:16.867200px;}
._13_c00236{width:18.129600px;}
._e_c00236{width:19.214400px;}
._d_c00236{width:21.720000px;}
._10_c00236{width:22.867200px;}
._c_c00236{width:24.014400px;}
.fc1_c00236{color:rgb(0,0,0);}
.fc0_c00236{color:rgb(78,60,31);}
.fs0_c00236{font-size:48.000000px;}
.fs1_c00236{font-size:60.000000px;}
.y0_c00236{bottom:0.000000px;}
.y30_c00236{bottom:67.500000px;}
.y2d_c00236{bottom:241.500000px;}
.y2c_c00236{bottom:255.000000px;}
.y2b_c00236{bottom:286.500000px;}
.y2a_c00236{bottom:303.000000px;}
.y29_c00236{bottom:319.500000px;}
.y28_c00236{bottom:336.000000px;}
.y27_c00236{bottom:352.500000px;}
.y26_c00236{bottom:369.000000px;}
.y25_c00236{bottom:385.500000px;}
.y24_c00236{bottom:402.000000px;}
.y23_c00236{bottom:418.500000px;}
.y22_c00236{bottom:435.000000px;}
.y21_c00236{bottom:451.500000px;}
.y20_c00236{bottom:468.000000px;}
.y1f_c00236{bottom:484.500000px;}
.y1e_c00236{bottom:501.000000px;}
.y1d_c00236{bottom:517.500000px;}
.y1c_c00236{bottom:534.000000px;}
.y1b_c00236{bottom:550.500000px;}
.y1a_c00236{bottom:583.500000px;}
.y19_c00236{bottom:616.500000px;}
.y18_c00236{bottom:633.000000px;}
.y17_c00236{bottom:666.000000px;}
.y16_c00236{bottom:682.500000px;}
.y15_c00236{bottom:699.000000px;}
.y14_c00236{bottom:715.500000px;}
.y13_c00236{bottom:732.000000px;}
.y12_c00236{bottom:748.500000px;}
.y11_c00236{bottom:781.500000px;}
.y10_c00236{bottom:798.000000px;}
.yf_c00236{bottom:831.000000px;}
.ye_c00236{bottom:847.500000px;}
.yd_c00236{bottom:864.000000px;}
.yc_c00236{bottom:880.500000px;}
.yb_c00236{bottom:897.000000px;}
.ya_c00236{bottom:930.000000px;}
.y9_c00236{bottom:946.500000px;}
.y8_c00236{bottom:963.000000px;}
.y7_c00236{bottom:979.500000px;}
.y6_c00236{bottom:996.000000px;}
.y5_c00236{bottom:1012.500000px;}
.y4_c00236{bottom:1029.000000px;}
.y3_c00236{bottom:1045.500000px;}
.y2_c00236{bottom:1062.000000px;}
.y1_c00236{bottom:1078.500000px;}
.y2f_c00236{bottom:1176.000000px;}
.y2e_c00236{bottom:1194.000000px;}
.h2_c00236{height:34.921875px;}
.h1_c00236{height:50.976000px;}
.h3_c00236{height:56.074219px;}
.h0_c00236{height:1263.000000px;}
.w0_c00236{width:892.500000px;}
.x0_c00236{left:0.000000px;}
.x2_c00236{left:188.999970px;}
.x1_c00236{left:191.248545px;}
.x3_c00236{left:195.862500px;}
.x4_c00236{left:627.778950px;}
.x5_c00236{left:801.992850px;}
@media print{
.v0_c00236{vertical-align:0.000000pt;}
.ls1_c00236{letter-spacing:0.000000pt;}
.ls0_c00236{letter-spacing:0.010667pt;}
.ws0_c00236{word-spacing:0.000000pt;}
._16_c00236{margin-left:-17.309867pt;}
._17_c00236{margin-left:-5.930667pt;}
._15_c00236{margin-left:-4.697600pt;}
._b_c00236{margin-left:-3.229867pt;}
._4_c00236{margin-left:-2.039467pt;}
._f_c00236{margin-left:-1.024000pt;}
._6_c00236{width:1.322667pt;}
._0_c00236{width:2.222933pt;}
._3_c00236{width:3.822933pt;}
._11_c00236{width:4.812800pt;}
._1_c00236{width:5.764267pt;}
._7_c00236{width:6.660267pt;}
._2_c00236{width:7.982933pt;}
._14_c00236{width:9.160533pt;}
._5_c00236{width:10.359467pt;}
._a_c00236{width:11.630933pt;}
._8_c00236{width:12.949333pt;}
._12_c00236{width:13.952000pt;}
._9_c00236{width:14.993067pt;}
._13_c00236{width:16.115200pt;}
._e_c00236{width:17.079467pt;}
._d_c00236{width:19.306667pt;}
._10_c00236{width:20.326400pt;}
._c_c00236{width:21.346133pt;}
.fs0_c00236{font-size:42.666667pt;}
.fs1_c00236{font-size:53.333333pt;}
.y0_c00236{bottom:0.000000pt;}
.y30_c00236{bottom:60.000000pt;}
.y2d_c00236{bottom:214.666667pt;}
.y2c_c00236{bottom:226.666667pt;}
.y2b_c00236{bottom:254.666667pt;}
.y2a_c00236{bottom:269.333333pt;}
.y29_c00236{bottom:284.000000pt;}
.y28_c00236{bottom:298.666667pt;}
.y27_c00236{bottom:313.333333pt;}
.y26_c00236{bottom:328.000000pt;}
.y25_c00236{bottom:342.666667pt;}
.y24_c00236{bottom:357.333333pt;}
.y23_c00236{bottom:372.000000pt;}
.y22_c00236{bottom:386.666667pt;}
.y21_c00236{bottom:401.333333pt;}
.y20_c00236{bottom:416.000000pt;}
.y1f_c00236{bottom:430.666667pt;}
.y1e_c00236{bottom:445.333333pt;}
.y1d_c00236{bottom:460.000000pt;}
.y1c_c00236{bottom:474.666667pt;}
.y1b_c00236{bottom:489.333333pt;}
.y1a_c00236{bottom:518.666667pt;}
.y19_c00236{bottom:548.000000pt;}
.y18_c00236{bottom:562.666667pt;}
.y17_c00236{bottom:592.000000pt;}
.y16_c00236{bottom:606.666667pt;}
.y15_c00236{bottom:621.333333pt;}
.y14_c00236{bottom:636.000000pt;}
.y13_c00236{bottom:650.666667pt;}
.y12_c00236{bottom:665.333333pt;}
.y11_c00236{bottom:694.666667pt;}
.y10_c00236{bottom:709.333333pt;}
.yf_c00236{bottom:738.666667pt;}
.ye_c00236{bottom:753.333333pt;}
.yd_c00236{bottom:768.000000pt;}
.yc_c00236{bottom:782.666667pt;}
.yb_c00236{bottom:797.333333pt;}
.ya_c00236{bottom:826.666667pt;}
.y9_c00236{bottom:841.333333pt;}
.y8_c00236{bottom:856.000000pt;}
.y7_c00236{bottom:870.666667pt;}
.y6_c00236{bottom:885.333333pt;}
.y5_c00236{bottom:900.000000pt;}
.y4_c00236{bottom:914.666667pt;}
.y3_c00236{bottom:929.333333pt;}
.y2_c00236{bottom:944.000000pt;}
.y1_c00236{bottom:958.666667pt;}
.y2f_c00236{bottom:1045.333333pt;}
.y2e_c00236{bottom:1061.333333pt;}
.h2_c00236{height:31.041667pt;}
.h1_c00236{height:45.312000pt;}
.h3_c00236{height:49.843750pt;}
.h0_c00236{height:1122.666667pt;}
.w0_c00236{width:793.333333pt;}
.x0_c00236{left:0.000000pt;}
.x2_c00236{left:167.999973pt;}
.x1_c00236{left:169.998707pt;}
.x3_c00236{left:174.100000pt;}
.x4_c00236{left:558.025733pt;}
.x5_c00236{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3ea5d20cede91d3ce6d70564.woff2')format("woff");}.ff1_c00237{font-family:ff1_c00237;line-height:0.934082;font-style:normal;font-weight:normal;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_ba5a116365d5e3d6efda4426.woff2')format("woff");}.ff2_c00237{font-family:ff2_c00237;line-height:0.932129;font-style:normal;font-weight:normal;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_ae2f25cfb6aee73c06a01717.woff2')format("woff");}.ff3_c00237{font-family:ff3_c00237;line-height:0.756836;font-style:normal;font-weight:normal;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_bb62c4ff417982f82a939981.woff2')format("woff");}.ff4_c00237{font-family:ff4_c00237;line-height:1.155762;font-style:normal;font-weight:normal;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_0a9e74e8e9fcedb10c2ad229.woff2')format("woff");}.ff5_c00237{font-family:ff5_c00237;line-height:1.115723;font-style:normal;font-weight: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_c00237;src:url('chunks/assets/font_4d60b2201ab3184dab6853c5.woff2')format("woff");}.ff6_c00237{font-family:ff6_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;}
.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);}
.v2_c00237{vertical-align:-23.086200px;}
.v3_c00237{vertical-align:-15.400200px;}
.v0_c00237{vertical-align:0.000000px;}
.v1_c00237{vertical-align:23.086200px;}
.ls3_c00237{letter-spacing:-0.009600px;}
.ls4_c00237{letter-spacing:-0.007200px;}
.ls2_c00237{letter-spacing:0.000000px;}
.ls0_c00237{letter-spacing:0.007200px;}
.ls6_c00237{letter-spacing:0.008000px;}
.ls5_c00237{letter-spacing:0.012000px;}
.ls1_c00237{letter-spacing:8.056800px;}
.sc__c00237{text-shadow:none;}
.sc0_c00237{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00237{-webkit-text-stroke:0px transparent;}
.sc0_c00237{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00237{word-spacing:-19.792800px;}
.ws0_c00237{word-spacing:-13.190400px;}
.ws2_c00237{word-spacing:-11.128001px;}
.ws3_c00237{word-spacing:0.000000px;}
._8_c00237{margin-left:-10.994400px;}
._13_c00237{margin-left:-7.214400px;}
._11_c00237{margin-left:-6.141600px;}
._1a_c00237{margin-left:-5.004000px;}
._5_c00237{margin-left:-3.816000px;}
._c_c00237{margin-left:-2.520000px;}
._0_c00237{margin-left:-1.490400px;}
._3_c00237{width:1.994400px;}
._6_c00237{width:4.046400px;}
._e_c00237{width:5.140800px;}
._12_c00237{width:6.184800px;}
._10_c00237{width:7.286400px;}
._f_c00237{width:8.654400px;}
._d_c00237{width:10.137600px;}
._14_c00237{width:12.016800px;}
._7_c00237{width:13.089600px;}
._4_c00237{width:14.428800px;}
._2_c00237{width:16.394400px;}
._1_c00237{width:17.884800px;}
._1d_c00237{width:19.204800px;}
._1c_c00237{width:20.319598px;}
._9_c00237{width:21.470400px;}
._a_c00237{width:23.342400px;}
._b_c00237{width:24.566400px;}
._19_c00237{width:26.265600px;}
._18_c00237{width:28.072800px;}
._1b_c00237{width:31.341600px;}
._15_c00237{width:33.472800px;}
._17_c00237{width:35.712000px;}
._16_c00237{width:37.800000px;}
.fc0_c00237{color:rgb(0,0,0);}
.fs3_c00237{font-size:40.000002px;}
.fs1_c00237{font-size:48.000000px;}
.fs2_c00237{font-size:60.000000px;}
.fs0_c00237{font-size:72.000000px;}
.y0_c00237{bottom:0.000000px;}
.y1e_c00237{bottom:67.500000px;}
.y22_c00237{bottom:132.000000px;}
.y21_c00237{bottom:155.350050px;}
.y20_c00237{bottom:200.350050px;}
.y1f_c00237{bottom:245.350050px;}
.y1c_c00237{bottom:324.000000px;}
.y1b_c00237{bottom:351.000000px;}
.y1a_c00237{bottom:378.000000px;}
.y19_c00237{bottom:405.000000px;}
.y18_c00237{bottom:432.000000px;}
.y17_c00237{bottom:480.000000px;}
.y16_c00237{bottom:507.000000px;}
.y15_c00237{bottom:534.000000px;}
.y14_c00237{bottom:561.000000px;}
.y13_c00237{bottom:588.000000px;}
.y12_c00237{bottom:615.000000px;}
.y11_c00237{bottom:642.000000px;}
.y10_c00237{bottom:669.000000px;}
.yf_c00237{bottom:696.000000px;}
.ye_c00237{bottom:723.000000px;}
.yd_c00237{bottom:750.000000px;}
.yc_c00237{bottom:777.000000px;}
.yb_c00237{bottom:825.000000px;}
.ya_c00237{bottom:852.000000px;}
.y9_c00237{bottom:879.000000px;}
.y8_c00237{bottom:906.000000px;}
.y7_c00237{bottom:933.000000px;}
.y6_c00237{bottom:960.000000px;}
.y5_c00237{bottom:987.000000px;}
.y4_c00237{bottom:1014.000000px;}
.y3_c00237{bottom:1041.000000px;}
.y2_c00237{bottom:1068.000000px;}
.y1_c00237{bottom:1095.000000px;}
.y1d_c00237{bottom:1194.000000px;}
.h5_c00237{height:38.418159px;}
.h4_c00237{height:44.208984px;}
.h1_c00237{height:51.257812px;}
.h6_c00237{height:53.818359px;}
.h3_c00237{height:56.074219px;}
.h2_c00237{height:57.258075px;}
.h0_c00237{height:1263.000000px;}
.w0_c00237{width:892.500000px;}
.x0_c00237{left:0.000000px;}
.x1_c00237{left:65.480310px;}
@media print{
.v2_c00237{vertical-align:-20.521067pt;}
.v3_c00237{vertical-align:-13.689067pt;}
.v0_c00237{vertical-align:0.000000pt;}
.v1_c00237{vertical-align:20.521067pt;}
.ls3_c00237{letter-spacing:-0.008533pt;}
.ls4_c00237{letter-spacing:-0.006400pt;}
.ls2_c00237{letter-spacing:0.000000pt;}
.ls0_c00237{letter-spacing:0.006400pt;}
.ls6_c00237{letter-spacing:0.007111pt;}
.ls5_c00237{letter-spacing:0.010667pt;}
.ls1_c00237{letter-spacing:7.161600pt;}
.ws1_c00237{word-spacing:-17.593600pt;}
.ws0_c00237{word-spacing:-11.724800pt;}
.ws2_c00237{word-spacing:-9.891556pt;}
.ws3_c00237{word-spacing:0.000000pt;}
._8_c00237{margin-left:-9.772800pt;}
._13_c00237{margin-left:-6.412800pt;}
._11_c00237{margin-left:-5.459200pt;}
._1a_c00237{margin-left:-4.448000pt;}
._5_c00237{margin-left:-3.392000pt;}
._c_c00237{margin-left:-2.240000pt;}
._0_c00237{margin-left:-1.324800pt;}
._3_c00237{width:1.772800pt;}
._6_c00237{width:3.596800pt;}
._e_c00237{width:4.569600pt;}
._12_c00237{width:5.497600pt;}
._10_c00237{width:6.476800pt;}
._f_c00237{width:7.692800pt;}
._d_c00237{width:9.011200pt;}
._14_c00237{width:10.681600pt;}
._7_c00237{width:11.635200pt;}
._4_c00237{width:12.825600pt;}
._2_c00237{width:14.572800pt;}
._1_c00237{width:15.897600pt;}
._1d_c00237{width:17.070933pt;}
._1c_c00237{width:18.061865pt;}
._9_c00237{width:19.084800pt;}
._a_c00237{width:20.748800pt;}
._b_c00237{width:21.836800pt;}
._19_c00237{width:23.347200pt;}
._18_c00237{width:24.953600pt;}
._1b_c00237{width:27.859200pt;}
._15_c00237{width:29.753600pt;}
._17_c00237{width:31.744000pt;}
._16_c00237{width:33.600000pt;}
.fs3_c00237{font-size:35.555557pt;}
.fs1_c00237{font-size:42.666667pt;}
.fs2_c00237{font-size:53.333333pt;}
.fs0_c00237{font-size:64.000000pt;}
.y0_c00237{bottom:0.000000pt;}
.y1e_c00237{bottom:60.000000pt;}
.y22_c00237{bottom:117.333333pt;}
.y21_c00237{bottom:138.088933pt;}
.y20_c00237{bottom:178.088933pt;}
.y1f_c00237{bottom:218.088933pt;}
.y1c_c00237{bottom:288.000000pt;}
.y1b_c00237{bottom:312.000000pt;}
.y1a_c00237{bottom:336.000000pt;}
.y19_c00237{bottom:360.000000pt;}
.y18_c00237{bottom:384.000000pt;}
.y17_c00237{bottom:426.666667pt;}
.y16_c00237{bottom:450.666667pt;}
.y15_c00237{bottom:474.666667pt;}
.y14_c00237{bottom:498.666667pt;}
.y13_c00237{bottom:522.666667pt;}
.y12_c00237{bottom:546.666667pt;}
.y11_c00237{bottom:570.666667pt;}
.y10_c00237{bottom:594.666667pt;}
.yf_c00237{bottom:618.666667pt;}
.ye_c00237{bottom:642.666667pt;}
.yd_c00237{bottom:666.666667pt;}
.yc_c00237{bottom:690.666667pt;}
.yb_c00237{bottom:733.333333pt;}
.ya_c00237{bottom:757.333333pt;}
.y9_c00237{bottom:781.333333pt;}
.y8_c00237{bottom:805.333333pt;}
.y7_c00237{bottom:829.333333pt;}
.y6_c00237{bottom:853.333333pt;}
.y5_c00237{bottom:877.333333pt;}
.y4_c00237{bottom:901.333333pt;}
.y3_c00237{bottom:925.333333pt;}
.y2_c00237{bottom:949.333333pt;}
.y1_c00237{bottom:973.333333pt;}
.y1d_c00237{bottom:1061.333333pt;}
.h5_c00237{height:34.149475pt;}
.h4_c00237{height:39.296875pt;}
.h1_c00237{height:45.562500pt;}
.h6_c00237{height:47.838542pt;}
.h3_c00237{height:49.843750pt;}
.h2_c00237{height:50.896067pt;}
.h0_c00237{height:1122.666667pt;}
.w0_c00237{width:793.333333pt;}
.x0_c00237{left:0.000000pt;}
.x1_c00237{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c214c1edfde87d8f06c00c33.woff2')format("woff");}.ff1_c00238{font-family:ff1_c00238;line-height:0.934082;font-style:normal;font-weight:normal;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_75a62d0b4da4c478f2c78ae1.woff2')format("woff");}.ff2_c00238{font-family:ff2_c00238;line-height:1.143066;font-style:normal;font-weight:normal;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_d30ee601bd681a22e214a19e.woff2')format("woff");}.ff3_c00238{font-family:ff3_c00238;line-height:1.115723;font-style:normal;font-weight:normal;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_9c0bedcbae3e10fd0c5f1b41.woff2')format("woff");}.ff4_c00238{font-family:ff4_c00238;line-height:0.892578;font-style: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);}
.v2_c00238{vertical-align:-23.086200px;}
.v3_c00238{vertical-align:-15.400200px;}
.v0_c00238{vertical-align:0.000000px;}
.v1_c00238{vertical-align:23.086200px;}
.ls6_c00238{letter-spacing:-1.068000px;}
.ls3_c00238{letter-spacing:-0.009600px;}
.ls4_c00238{letter-spacing:-0.007200px;}
.ls2_c00238{letter-spacing:0.000000px;}
.ls5_c00238{letter-spacing:0.008000px;}
.ls0_c00238{letter-spacing:0.012000px;}
.ls1_c00238{letter-spacing:0.843600px;}
.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;}
}
.ws2_c00238{word-spacing:-15.000000px;}
.ws0_c00238{word-spacing:-13.190400px;}
.ws1_c00238{word-spacing:-11.128001px;}
.ws3_c00238{word-spacing:0.000000px;}
._18_c00238{margin-left:-10.447200px;}
._1f_c00238{margin-left:-9.043802px;}
._1e_c00238{margin-left:-7.712402px;}
._13_c00238{margin-left:-6.091200px;}
._1d_c00238{margin-left:-4.930800px;}
._c_c00238{margin-left:-3.693600px;}
._1_c00238{margin-left:-2.664000px;}
._5_c00238{margin-left:-1.022400px;}
._a_c00238{width:1.159200px;}
._3_c00238{width:2.246400px;}
._7_c00238{width:3.672000px;}
._8_c00238{width:4.708800px;}
._b_c00238{width:6.602400px;}
._9_c00238{width:7.603200px;}
._4_c00238{width:9.396000px;}
._d_c00238{width:10.562400px;}
._0_c00238{width:11.613600px;}
._6_c00238{width:12.628800px;}
._2_c00238{width:14.284800px;}
._14_c00238{width:15.616800px;}
._15_c00238{width:17.164800px;}
._17_c00238{width:18.295200px;}
._20_c00238{width:21.174602px;}
._16_c00238{width:22.291200px;}
._1b_c00238{width:24.256800px;}
._1a_c00238{width:26.632800px;}
._19_c00238{width:27.734400px;}
._1c_c00238{width:29.844000px;}
._12_c00238{width:31.104000px;}
._11_c00238{width:32.695200px;}
._10_c00238{width:33.768000px;}
._f_c00238{width:34.934400px;}
._e_c00238{width:38.599200px;}
.fc1_c00238{color:rgb(0,0,153);}
.fc0_c00238{color:rgb(0,0,0);}
.fs3_c00238{font-size:40.000002px;}
.fs1_c00238{font-size:48.000000px;}
.fs2_c00238{font-size:60.000000px;}
.fs0_c00238{font-size:72.000000px;}
.y0_c00238{bottom:0.000000px;}
.y13_c00238{bottom:67.500000px;}
.y27_c00238{bottom:132.000000px;}
.y26_c00238{bottom:151.500000px;}
.y25_c00238{bottom:174.850050px;}
.y24_c00238{bottom:216.000000px;}
.y23_c00238{bottom:235.500000px;}
.y22_c00238{bottom:255.000000px;}
.y21_c00238{bottom:274.500000px;}
.y20_c00238{bottom:294.000000px;}
.y1f_c00238{bottom:313.500000px;}
.y1e_c00238{bottom:333.000000px;}
.y1d_c00238{bottom:352.500000px;}
.y1c_c00238{bottom:372.000000px;}
.y1b_c00238{bottom:391.500000px;}
.y1a_c00238{bottom:411.000000px;}
.y19_c00238{bottom:434.350050px;}
.y18_c00238{bottom:479.350050px;}
.y17_c00238{bottom:520.500000px;}
.y16_c00238{bottom:540.000000px;}
.y15_c00238{bottom:559.500000px;}
.y14_c00238{bottom:582.850050px;}
.y10_c00238{bottom:627.000000px;}
.yf_c00238{bottom:654.000000px;}
.ye_c00238{bottom:681.000000px;}
.yd_c00238{bottom:708.000000px;}
.yc_c00238{bottom:756.000000px;}
.yb_c00238{bottom:783.000000px;}
.ya_c00238{bottom:810.000000px;}
.y9_c00238{bottom:837.000000px;}
.y8_c00238{bottom:864.000000px;}
.y7_c00238{bottom:891.000000px;}
.y6_c00238{bottom:939.000000px;}
.y5_c00238{bottom:966.000000px;}
.y4_c00238{bottom:993.000000px;}
.y3_c00238{bottom:1020.000000px;}
.y2_c00238{bottom:1068.000000px;}
.y1_c00238{bottom:1095.000000px;}
.y12_c00238{bottom:1176.000000px;}
.y11_c00238{bottom:1194.000000px;}
.h4_c00238{height:40.674019px;}
.h1_c00238{height:51.257812px;}
.h5_c00238{height:53.818359px;}
.h3_c00238{height:56.074219px;}
.h2_c00238{height:57.258075px;}
.h0_c00238{height:1263.000000px;}
.w0_c00238{width:892.500000px;}
.x0_c00238{left:0.000000px;}
.x1_c00238{left:150.519750px;}
.x2_c00238{left:195.862500px;}
.x3_c00238{left:627.778950px;}
.x4_c00238{left:801.992850px;}
@media print{
.v2_c00238{vertical-align:-20.521067pt;}
.v3_c00238{vertical-align:-13.689067pt;}
.v0_c00238{vertical-align:0.000000pt;}
.v1_c00238{vertical-align:20.521067pt;}
.ls6_c00238{letter-spacing:-0.949333pt;}
.ls3_c00238{letter-spacing:-0.008533pt;}
.ls4_c00238{letter-spacing:-0.006400pt;}
.ls2_c00238{letter-spacing:0.000000pt;}
.ls5_c00238{letter-spacing:0.007111pt;}
.ls0_c00238{letter-spacing:0.010667pt;}
.ls1_c00238{letter-spacing:0.749867pt;}
.ws2_c00238{word-spacing:-13.333333pt;}
.ws0_c00238{word-spacing:-11.724800pt;}
.ws1_c00238{word-spacing:-9.891556pt;}
.ws3_c00238{word-spacing:0.000000pt;}
._18_c00238{margin-left:-9.286400pt;}
._1f_c00238{margin-left:-8.038935pt;}
._1e_c00238{margin-left:-6.855469pt;}
._13_c00238{margin-left:-5.414400pt;}
._1d_c00238{margin-left:-4.382933pt;}
._c_c00238{margin-left:-3.283200pt;}
._1_c00238{margin-left:-2.368000pt;}
._5_c00238{margin-left:-0.908800pt;}
._a_c00238{width:1.030400pt;}
._3_c00238{width:1.996800pt;}
._7_c00238{width:3.264000pt;}
._8_c00238{width:4.185600pt;}
._b_c00238{width:5.868800pt;}
._9_c00238{width:6.758400pt;}
._4_c00238{width:8.352000pt;}
._d_c00238{width:9.388800pt;}
._0_c00238{width:10.323200pt;}
._6_c00238{width:11.225600pt;}
._2_c00238{width:12.697600pt;}
._14_c00238{width:13.881600pt;}
._15_c00238{width:15.257600pt;}
._17_c00238{width:16.262400pt;}
._20_c00238{width:18.821869pt;}
._16_c00238{width:19.814400pt;}
._1b_c00238{width:21.561600pt;}
._1a_c00238{width:23.673600pt;}
._19_c00238{width:24.652800pt;}
._1c_c00238{width:26.528000pt;}
._12_c00238{width:27.648000pt;}
._11_c00238{width:29.062400pt;}
._10_c00238{width:30.016000pt;}
._f_c00238{width:31.052800pt;}
._e_c00238{width:34.310400pt;}
.fs3_c00238{font-size:35.555557pt;}
.fs1_c00238{font-size:42.666667pt;}
.fs2_c00238{font-size:53.333333pt;}
.fs0_c00238{font-size:64.000000pt;}
.y0_c00238{bottom:0.000000pt;}
.y13_c00238{bottom:60.000000pt;}
.y27_c00238{bottom:117.333333pt;}
.y26_c00238{bottom:134.666667pt;}
.y25_c00238{bottom:155.422267pt;}
.y24_c00238{bottom:192.000000pt;}
.y23_c00238{bottom:209.333333pt;}
.y22_c00238{bottom:226.666667pt;}
.y21_c00238{bottom:244.000000pt;}
.y20_c00238{bottom:261.333333pt;}
.y1f_c00238{bottom:278.666667pt;}
.y1e_c00238{bottom:296.000000pt;}
.y1d_c00238{bottom:313.333333pt;}
.y1c_c00238{bottom:330.666667pt;}
.y1b_c00238{bottom:348.000000pt;}
.y1a_c00238{bottom:365.333333pt;}
.y19_c00238{bottom:386.088933pt;}
.y18_c00238{bottom:426.088933pt;}
.y17_c00238{bottom:462.666667pt;}
.y16_c00238{bottom:480.000000pt;}
.y15_c00238{bottom:497.333333pt;}
.y14_c00238{bottom:518.088933pt;}
.y10_c00238{bottom:557.333333pt;}
.yf_c00238{bottom:581.333333pt;}
.ye_c00238{bottom:605.333333pt;}
.yd_c00238{bottom:629.333333pt;}
.yc_c00238{bottom:672.000000pt;}
.yb_c00238{bottom:696.000000pt;}
.ya_c00238{bottom:720.000000pt;}
.y9_c00238{bottom:744.000000pt;}
.y8_c00238{bottom:768.000000pt;}
.y7_c00238{bottom:792.000000pt;}
.y6_c00238{bottom:834.666667pt;}
.y5_c00238{bottom:858.666667pt;}
.y4_c00238{bottom:882.666667pt;}
.y3_c00238{bottom:906.666667pt;}
.y2_c00238{bottom:949.333333pt;}
.y1_c00238{bottom:973.333333pt;}
.y12_c00238{bottom:1045.333333pt;}
.y11_c00238{bottom:1061.333333pt;}
.h4_c00238{height:36.154683pt;}
.h1_c00238{height:45.562500pt;}
.h5_c00238{height:47.838542pt;}
.h3_c00238{height:49.843750pt;}
.h2_c00238{height:50.896067pt;}
.h0_c00238{height:1122.666667pt;}
.w0_c00238{width:793.333333pt;}
.x0_c00238{left:0.000000pt;}
.x1_c00238{left:133.795333pt;}
.x2_c00238{left:174.100000pt;}
.x3_c00238{left:558.025733pt;}
.x4_c00238{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f36ac0599fa924d693f98a15.woff2')format("woff");}.ff1_c00239{font-family:ff1_c00239;line-height:1.163086;font-style:normal;font-weight:normal;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_edf7a9104cb7d309ef434c2b.woff2')format("woff");}.ff2_c00239{font-family:ff2_c00239;line-height:0.987793;font-style:normal;font-weight:normal;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_0761f94fde8b567937c76dc9.woff2')format("woff");}.ff3_c00239{font-family:ff3_c00239;line-height:0.885254;font-style:normal;font-weight:normal;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_82fa1fea6405ab12f7c466c9.woff2')format("woff");}.ff4_c00239{font-family:ff4_c00239;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00239;src:url('chunks/assets/font_b6fae43f639616b31edb040c.woff2')format("woff");}.ff5_c00239{font-family:ff5_c00239;line-height:1.115723;font-style:normal;font-weight: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_c00239;src:url('chunks/assets/font_4ff383d1fc01bb1d0c0bbe75.woff2')format("woff");}.ff6_c00239{font-family:ff6_c00239;line-height:0.890137;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00239{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00239{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00239{vertical-align:-23.086200px;}
.v3_c00239{vertical-align:-15.400200px;}
.v0_c00239{vertical-align:0.000000px;}
.v1_c00239{vertical-align:23.086200px;}
.ls2_c00239{letter-spacing:-0.871200px;}
.ls6_c00239{letter-spacing:-0.594000px;}
.ls1_c00239{letter-spacing:-0.009600px;}
.ls0_c00239{letter-spacing:0.000000px;}
.ls4_c00239{letter-spacing:0.008000px;}
.ls3_c00239{letter-spacing:0.012000px;}
.ls5_c00239{letter-spacing:1.416000px;}
.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;}
}
.ws2_c00239{word-spacing:-15.000000px;}
.ws0_c00239{word-spacing:-13.190400px;}
.ws1_c00239{word-spacing:-11.128001px;}
.ws3_c00239{word-spacing:0.000000px;}
._2_c00239{margin-left:-10.584000px;}
._18_c00239{margin-left:-9.280800px;}
._1b_c00239{margin-left:-7.050782px;}
._1a_c00239{margin-left:-5.931842px;}
._b_c00239{margin-left:-4.392000px;}
._9_c00239{margin-left:-2.836800px;}
._3_c00239{margin-left:-1.468800px;}
._8_c00239{width:1.404000px;}
._0_c00239{width:2.448000px;}
._c_c00239{width:3.650400px;}
._6_c00239{width:4.896000px;}
._a_c00239{width:6.976800px;}
._7_c00239{width:8.985600px;}
._15_c00239{width:10.216800px;}
._1_c00239{width:11.260800px;}
._16_c00239{width:12.650400px;}
._5_c00239{width:13.687200px;}
._4_c00239{width:15.177600px;}
._14_c00239{width:16.963200px;}
._17_c00239{width:18.388800px;}
._1c_c00239{width:19.863360px;}
._19_c00239{width:21.002400px;}
._10_c00239{width:23.263200px;}
._d_c00239{width:24.494400px;}
._11_c00239{width:26.769600px;}
._f_c00239{width:28.209600px;}
._13_c00239{width:29.728800px;}
._e_c00239{width:31.003200px;}
._12_c00239{width:32.508000px;}
.fc1_c00239{color:rgb(0,0,153);}
.fc0_c00239{color:rgb(0,0,0);}
.fs4_c00239{font-size:40.000002px;}
.fs1_c00239{font-size:48.000000px;}
.fs2_c00239{font-size:54.000000px;}
.fs3_c00239{font-size:60.000000px;}
.fs0_c00239{font-size:72.000000px;}
.y0_c00239{bottom:0.000000px;}
.yc_c00239{bottom:12.000000px;}
.y13_c00239{bottom:67.500000px;}
.y17_c00239{bottom:132.000000px;}
.y16_c00239{bottom:151.500000px;}
.y15_c00239{bottom:174.850050px;}
.y14_c00239{bottom:219.850050px;}
.y11_c00239{bottom:285.000000px;}
.y10_c00239{bottom:312.000000px;}
.yf_c00239{bottom:339.000000px;}
.ye_c00239{bottom:366.000000px;}
.yd_c00239{bottom:393.000000px;}
.yb_c00239{bottom:438.000000px;}
.ya_c00239{bottom:852.000000px;}
.y9_c00239{bottom:879.000000px;}
.y8_c00239{bottom:906.000000px;}
.y7_c00239{bottom:933.000000px;}
.y6_c00239{bottom:960.000000px;}
.y5_c00239{bottom:987.000000px;}
.y4_c00239{bottom:1014.000000px;}
.y3_c00239{bottom:1041.000000px;}
.y2_c00239{bottom:1068.000000px;}
.y1_c00239{bottom:1095.000000px;}
.y12_c00239{bottom:1194.000000px;}
.h7_c00239{height:38.418159px;}
.h4_c00239{height:42.292969px;}
.h6_c00239{height:44.208984px;}
.h8_c00239{height:53.818359px;}
.h5_c00239{height:56.074219px;}
.h1_c00239{height:67.746094px;}
.h2_c00239{height:68.250262px;}
.h3_c00239{height:382.500000px;}
.h0_c00239{height:1263.000000px;}
.w1_c00239{width:676.500000px;}
.w0_c00239{width:892.500000px;}
.x0_c00239{left:0.000000px;}
.x1_c00239{left:65.480310px;}
.x2_c00239{left:166.583100px;}
@media print{
.v2_c00239{vertical-align:-20.521067pt;}
.v3_c00239{vertical-align:-13.689067pt;}
.v0_c00239{vertical-align:0.000000pt;}
.v1_c00239{vertical-align:20.521067pt;}
.ls2_c00239{letter-spacing:-0.774400pt;}
.ls6_c00239{letter-spacing:-0.528000pt;}
.ls1_c00239{letter-spacing:-0.008533pt;}
.ls0_c00239{letter-spacing:0.000000pt;}
.ls4_c00239{letter-spacing:0.007111pt;}
.ls3_c00239{letter-spacing:0.010667pt;}
.ls5_c00239{letter-spacing:1.258667pt;}
.ws2_c00239{word-spacing:-13.333333pt;}
.ws0_c00239{word-spacing:-11.724800pt;}
.ws1_c00239{word-spacing:-9.891556pt;}
.ws3_c00239{word-spacing:0.000000pt;}
._2_c00239{margin-left:-9.408000pt;}
._18_c00239{margin-left:-8.249600pt;}
._1b_c00239{margin-left:-6.267362pt;}
._1a_c00239{margin-left:-5.272749pt;}
._b_c00239{margin-left:-3.904000pt;}
._9_c00239{margin-left:-2.521600pt;}
._3_c00239{margin-left:-1.305600pt;}
._8_c00239{width:1.248000pt;}
._0_c00239{width:2.176000pt;}
._c_c00239{width:3.244800pt;}
._6_c00239{width:4.352000pt;}
._a_c00239{width:6.201600pt;}
._7_c00239{width:7.987200pt;}
._15_c00239{width:9.081600pt;}
._1_c00239{width:10.009600pt;}
._16_c00239{width:11.244800pt;}
._5_c00239{width:12.166400pt;}
._4_c00239{width:13.491200pt;}
._14_c00239{width:15.078400pt;}
._17_c00239{width:16.345600pt;}
._1c_c00239{width:17.656320pt;}
._19_c00239{width:18.668800pt;}
._10_c00239{width:20.678400pt;}
._d_c00239{width:21.772800pt;}
._11_c00239{width:23.795200pt;}
._f_c00239{width:25.075200pt;}
._13_c00239{width:26.425600pt;}
._e_c00239{width:27.558400pt;}
._12_c00239{width:28.896000pt;}
.fs4_c00239{font-size:35.555557pt;}
.fs1_c00239{font-size:42.666667pt;}
.fs2_c00239{font-size:48.000000pt;}
.fs3_c00239{font-size:53.333333pt;}
.fs0_c00239{font-size:64.000000pt;}
.y0_c00239{bottom:0.000000pt;}
.yc_c00239{bottom:10.666667pt;}
.y13_c00239{bottom:60.000000pt;}
.y17_c00239{bottom:117.333333pt;}
.y16_c00239{bottom:134.666667pt;}
.y15_c00239{bottom:155.422267pt;}
.y14_c00239{bottom:195.422267pt;}
.y11_c00239{bottom:253.333333pt;}
.y10_c00239{bottom:277.333333pt;}
.yf_c00239{bottom:301.333333pt;}
.ye_c00239{bottom:325.333333pt;}
.yd_c00239{bottom:349.333333pt;}
.yb_c00239{bottom:389.333333pt;}
.ya_c00239{bottom:757.333333pt;}
.y9_c00239{bottom:781.333333pt;}
.y8_c00239{bottom:805.333333pt;}
.y7_c00239{bottom:829.333333pt;}
.y6_c00239{bottom:853.333333pt;}
.y5_c00239{bottom:877.333333pt;}
.y4_c00239{bottom:901.333333pt;}
.y3_c00239{bottom:925.333333pt;}
.y2_c00239{bottom:949.333333pt;}
.y1_c00239{bottom:973.333333pt;}
.y12_c00239{bottom:1061.333333pt;}
.h7_c00239{height:34.149475pt;}
.h4_c00239{height:37.593750pt;}
.h6_c00239{height:39.296875pt;}
.h8_c00239{height:47.838542pt;}
.h5_c00239{height:49.843750pt;}
.h1_c00239{height:60.218750pt;}
.h2_c00239{height:60.666900pt;}
.h3_c00239{height:340.000000pt;}
.h0_c00239{height:1122.666667pt;}
.w1_c00239{width:601.333333pt;}
.w0_c00239{width:793.333333pt;}
.x0_c00239{left:0.000000pt;}
.x1_c00239{left:58.204720pt;}
.x2_c00239{left:148.073867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3e41ac2812c45440e40e4d72.woff2')format("woff");}.ff1_c00240{font-family:ff1_c00240;line-height:1.163086;font-style:normal;font-weight:normal;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_96f6741297cb5c65b3a50c97.woff2')format("woff");}.ff2_c00240{font-family:ff2_c00240;line-height:1.143066;font-style:normal;font-weight:normal;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_9ef9bec5c8e8abf0d524640d.woff2')format("woff");}.ff3_c00240{font-family:ff3_c00240;line-height:1.115723;font-style:normal;font-weight:normal;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_fb5f8f5896be5c02d5907ee2.woff2')format("woff");}.ff4_c00240{font-family:ff4_c00240;line-height:0.890137;font-style: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);}
.v2_c00240{vertical-align:-23.086200px;}
.v3_c00240{vertical-align:-15.400200px;}
.v0_c00240{vertical-align:0.000000px;}
.v1_c00240{vertical-align:23.086200px;}
.ls3_c00240{letter-spacing:-0.009600px;}
.ls2_c00240{letter-spacing:0.000000px;}
.ls4_c00240{letter-spacing:0.008000px;}
.ls1_c00240{letter-spacing:0.012000px;}
.ls0_c00240{letter-spacing:1.908000px;}
.sc__c00240{text-shadow:none;}
.sc0_c00240{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00240{-webkit-text-stroke:0px transparent;}
.sc0_c00240{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00240{word-spacing:-13.190400px;}
.ws1_c00240{word-spacing:-11.128001px;}
.ws2_c00240{word-spacing:0.000000px;}
._10_c00240{margin-left:-10.942800px;}
._12_c00240{margin-left:-6.411600px;}
._17_c00240{margin-left:-5.410800px;}
._d_c00240{margin-left:-4.334400px;}
._4_c00240{margin-left:-2.988000px;}
._0_c00240{margin-left:-1.173600px;}
._3_c00240{width:1.036800px;}
._13_c00240{width:2.044800px;}
._2_c00240{width:3.060000px;}
._1_c00240{width:4.356000px;}
._5_c00240{width:5.716800px;}
._e_c00240{width:7.315200px;}
._14_c00240{width:8.379600px;}
._b_c00240{width:9.640800px;}
._f_c00240{width:11.102400px;}
._c_c00240{width:13.009200px;}
._a_c00240{width:14.119200px;}
._11_c00240{width:15.123600px;}
._9_c00240{width:16.192800px;}
._1f_c00240{width:17.604000px;}
._6_c00240{width:18.655200px;}
._8_c00240{width:21.628800px;}
._7_c00240{width:23.464800px;}
._16_c00240{width:24.904800px;}
._15_c00240{width:26.920800px;}
._19_c00240{width:28.094400px;}
._18_c00240{width:30.398400px;}
._1b_c00240{width:33.120000px;}
._1e_c00240{width:35.222400px;}
._1d_c00240{width:36.288000px;}
._1a_c00240{width:38.530800px;}
._1c_c00240{width:42.262200px;}
.fc0_c00240{color:rgb(0,0,0);}
.fs3_c00240{font-size:40.000002px;}
.fs1_c00240{font-size:48.000000px;}
.fs2_c00240{font-size:60.000000px;}
.fs0_c00240{font-size:72.000000px;}
.y0_c00240{bottom:0.000000px;}
.y16_c00240{bottom:67.500000px;}
.y1b_c00240{bottom:135.850050px;}
.y1a_c00240{bottom:177.000000px;}
.y19_c00240{bottom:200.350050px;}
.y18_c00240{bottom:245.350050px;}
.y17_c00240{bottom:290.350050px;}
.y13_c00240{bottom:567.000000px;}
.y12_c00240{bottom:594.000000px;}
.y11_c00240{bottom:621.000000px;}
.y10_c00240{bottom:648.000000px;}
.yf_c00240{bottom:696.000000px;}
.ye_c00240{bottom:723.000000px;}
.yd_c00240{bottom:750.000000px;}
.yc_c00240{bottom:777.000000px;}
.yb_c00240{bottom:804.000000px;}
.ya_c00240{bottom:831.000000px;}
.y9_c00240{bottom:858.000000px;}
.y8_c00240{bottom:906.000000px;}
.y7_c00240{bottom:933.000000px;}
.y6_c00240{bottom:960.000000px;}
.y5_c00240{bottom:987.000000px;}
.y4_c00240{bottom:1014.000000px;}
.y3_c00240{bottom:1041.000000px;}
.y2_c00240{bottom:1068.000000px;}
.y1_c00240{bottom:1095.000000px;}
.y15_c00240{bottom:1176.000000px;}
.y14_c00240{bottom:1194.000000px;}
.h4_c00240{height:40.674019px;}
.h5_c00240{height:53.818359px;}
.h3_c00240{height:56.074219px;}
.h1_c00240{height:67.746094px;}
.h2_c00240{height:68.250262px;}
.h0_c00240{height:1263.000000px;}
.w0_c00240{width:892.500000px;}
.x0_c00240{left:0.000000px;}
.x1_c00240{left:150.519750px;}
.x2_c00240{left:195.862500px;}
.x3_c00240{left:627.778950px;}
.x4_c00240{left:801.992850px;}
@media print{
.v2_c00240{vertical-align:-20.521067pt;}
.v3_c00240{vertical-align:-13.689067pt;}
.v0_c00240{vertical-align:0.000000pt;}
.v1_c00240{vertical-align:20.521067pt;}
.ls3_c00240{letter-spacing:-0.008533pt;}
.ls2_c00240{letter-spacing:0.000000pt;}
.ls4_c00240{letter-spacing:0.007111pt;}
.ls1_c00240{letter-spacing:0.010667pt;}
.ls0_c00240{letter-spacing:1.696000pt;}
.ws0_c00240{word-spacing:-11.724800pt;}
.ws1_c00240{word-spacing:-9.891556pt;}
.ws2_c00240{word-spacing:0.000000pt;}
._10_c00240{margin-left:-9.726933pt;}
._12_c00240{margin-left:-5.699200pt;}
._17_c00240{margin-left:-4.809600pt;}
._d_c00240{margin-left:-3.852800pt;}
._4_c00240{margin-left:-2.656000pt;}
._0_c00240{margin-left:-1.043200pt;}
._3_c00240{width:0.921600pt;}
._13_c00240{width:1.817600pt;}
._2_c00240{width:2.720000pt;}
._1_c00240{width:3.872000pt;}
._5_c00240{width:5.081600pt;}
._e_c00240{width:6.502400pt;}
._14_c00240{width:7.448533pt;}
._b_c00240{width:8.569600pt;}
._f_c00240{width:9.868800pt;}
._c_c00240{width:11.563733pt;}
._a_c00240{width:12.550400pt;}
._11_c00240{width:13.443200pt;}
._9_c00240{width:14.393600pt;}
._1f_c00240{width:15.648000pt;}
._6_c00240{width:16.582400pt;}
._8_c00240{width:19.225600pt;}
._7_c00240{width:20.857600pt;}
._16_c00240{width:22.137600pt;}
._15_c00240{width:23.929600pt;}
._19_c00240{width:24.972800pt;}
._18_c00240{width:27.020800pt;}
._1b_c00240{width:29.440000pt;}
._1e_c00240{width:31.308800pt;}
._1d_c00240{width:32.256000pt;}
._1a_c00240{width:34.249600pt;}
._1c_c00240{width:37.566400pt;}
.fs3_c00240{font-size:35.555557pt;}
.fs1_c00240{font-size:42.666667pt;}
.fs2_c00240{font-size:53.333333pt;}
.fs0_c00240{font-size:64.000000pt;}
.y0_c00240{bottom:0.000000pt;}
.y16_c00240{bottom:60.000000pt;}
.y1b_c00240{bottom:120.755600pt;}
.y1a_c00240{bottom:157.333333pt;}
.y19_c00240{bottom:178.088933pt;}
.y18_c00240{bottom:218.088933pt;}
.y17_c00240{bottom:258.088933pt;}
.y13_c00240{bottom:504.000000pt;}
.y12_c00240{bottom:528.000000pt;}
.y11_c00240{bottom:552.000000pt;}
.y10_c00240{bottom:576.000000pt;}
.yf_c00240{bottom:618.666667pt;}
.ye_c00240{bottom:642.666667pt;}
.yd_c00240{bottom:666.666667pt;}
.yc_c00240{bottom:690.666667pt;}
.yb_c00240{bottom:714.666667pt;}
.ya_c00240{bottom:738.666667pt;}
.y9_c00240{bottom:762.666667pt;}
.y8_c00240{bottom:805.333333pt;}
.y7_c00240{bottom:829.333333pt;}
.y6_c00240{bottom:853.333333pt;}
.y5_c00240{bottom:877.333333pt;}
.y4_c00240{bottom:901.333333pt;}
.y3_c00240{bottom:925.333333pt;}
.y2_c00240{bottom:949.333333pt;}
.y1_c00240{bottom:973.333333pt;}
.y15_c00240{bottom:1045.333333pt;}
.y14_c00240{bottom:1061.333333pt;}
.h4_c00240{height:36.154683pt;}
.h5_c00240{height:47.838542pt;}
.h3_c00240{height:49.843750pt;}
.h1_c00240{height:60.218750pt;}
.h2_c00240{height:60.666900pt;}
.h0_c00240{height:1122.666667pt;}
.w0_c00240{width:793.333333pt;}
.x0_c00240{left:0.000000pt;}
.x1_c00240{left:133.795333pt;}
.x2_c00240{left:174.100000pt;}
.x3_c00240{left:558.025733pt;}
.x4_c00240{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_87d5bd925ff533339adf868f.woff2')format("woff");}.ff1_c00241{font-family:ff1_c00241;line-height:1.124023;font-style:normal;font-weight:normal;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_d0efc48bbd1e4638d8fa3237.woff2')format("woff");}.ff2_c00241{font-family:ff2_c00241;line-height:1.163086;font-style:normal;font-weight:normal;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_0c671431372686dbb8b57cc3.woff2')format("woff");}.ff3_c00241{font-family:ff3_c00241;line-height:0.888672;font-style:normal;font-weight:normal;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_4345fee431c6480b352a166e.woff2')format("woff");}.ff4_c00241{font-family:ff4_c00241;line-height:0.756836;font-style:normal;font-weight:normal;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_35600d53b6ca1cdec87ddced.woff2')format("woff");}.ff5_c00241{font-family:ff5_c00241;line-height:1.155762;font-style:normal;font-weight: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_c00241;src:url('chunks/assets/font_e83010c6cf44288846950a7b.woff2')format("woff");}.ff6_c00241{font-family:ff6_c00241;line-height:1.100586;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00241;src:url('chunks/assets/font_baf50648ec8ebc7456a31567.woff2')format("woff");}.ff7_c00241{font-family:ff7_c00241;line-height:1.092285;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00241{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00241{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00241{vertical-align:-23.086200px;}
.v3_c00241{vertical-align:-15.400200px;}
.v0_c00241{vertical-align:0.000000px;}
.v1_c00241{vertical-align:23.086200px;}
.ls6_c00241{letter-spacing:-5.862000px;}
.ls4_c00241{letter-spacing:0.000000px;}
.ls0_c00241{letter-spacing:0.007200px;}
.ls5_c00241{letter-spacing:0.012000px;}
.ls2_c00241{letter-spacing:0.014400px;}
.ls1_c00241{letter-spacing:0.024000px;}
.ls3_c00241{letter-spacing:1.759999px;}
.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:-13.200000px;}
.ws1_c00241{word-spacing:0.000000px;}
._14_c00241{margin-left:-10.447200px;}
._0_c00241{margin-left:-8.360400px;}
._e_c00241{margin-left:-7.077600px;}
._1a_c00241{margin-left:-5.710800px;}
._16_c00241{margin-left:-4.629600px;}
._6_c00241{margin-left:-3.067200px;}
._8_c00241{margin-left:-1.792800px;}
._c_c00241{width:1.108800px;}
._1_c00241{width:2.124000px;}
._a_c00241{width:3.556800px;}
._3_c00241{width:4.665600px;}
._b_c00241{width:6.012000px;}
._d_c00241{width:7.272000px;}
._4_c00241{width:8.431200px;}
._13_c00241{width:9.504000px;}
._5_c00241{width:11.023200px;}
._2_c00241{width:13.096800px;}
._9_c00241{width:14.904000px;}
._7_c00241{width:16.228800px;}
._17_c00241{width:17.892000px;}
._12_c00241{width:21.204000px;}
._10_c00241{width:22.802400px;}
._15_c00241{width:23.839200px;}
._f_c00241{width:24.948000px;}
._19_c00241{width:26.244000px;}
._11_c00241{width:28.058400px;}
._18_c00241{width:31.010400px;}
.fc0_c00241{color:rgb(0,0,0);}
.fs5_c00241{font-size:40.000002px;}
.fs3_c00241{font-size:48.000000px;}
.fs4_c00241{font-size:60.000000px;}
.fs0_c00241{font-size:72.000000px;}
.fs2_c00241{font-size:84.000000px;}
.fs1_c00241{font-size:120.000000px;}
.y0_c00241{bottom:0.000000px;}
.y17_c00241{bottom:67.500000px;}
.y1b_c00241{bottom:132.000000px;}
.y1a_c00241{bottom:155.350050px;}
.y19_c00241{bottom:196.500000px;}
.y18_c00241{bottom:219.850050px;}
.y15_c00241{bottom:280.500000px;}
.y14_c00241{bottom:307.500000px;}
.y13_c00241{bottom:334.500000px;}
.y12_c00241{bottom:361.500000px;}
.y11_c00241{bottom:388.500000px;}
.y10_c00241{bottom:415.500000px;}
.yf_c00241{bottom:442.500000px;}
.ye_c00241{bottom:469.500000px;}
.yd_c00241{bottom:531.000000px;}
.yc_c00241{bottom:579.000000px;}
.yb_c00241{bottom:606.000000px;}
.ya_c00241{bottom:654.000000px;}
.y9_c00241{bottom:681.000000px;}
.y8_c00241{bottom:708.000000px;}
.y7_c00241{bottom:735.000000px;}
.y6_c00241{bottom:762.000000px;}
.y5_c00241{bottom:810.000000px;}
.y4_c00241{bottom:837.000000px;}
.y3_c00241{bottom:864.000000px;}
.y2_c00241{bottom:891.000000px;}
.y1_c00241{bottom:1036.500000px;}
.y16_c00241{bottom:1194.000000px;}
.h7_c00241{height:37.627144px;}
.h6_c00241{height:44.208984px;}
.h8_c00241{height:52.968750px;}
.h9_c00241{height:53.027344px;}
.h5_c00241{height:56.074219px;}
.h2_c00241{height:67.746094px;}
.h4_c00241{height:68.250263px;}
.h3_c00241{height:79.570312px;}
.h1_c00241{height:113.671875px;}
.h0_c00241{height:1263.000000px;}
.w0_c00241{width:892.500000px;}
.x0_c00241{left:0.000000px;}
.x1_c00241{left:65.480310px;}
@media print{
.v2_c00241{vertical-align:-20.521067pt;}
.v3_c00241{vertical-align:-13.689067pt;}
.v0_c00241{vertical-align:0.000000pt;}
.v1_c00241{vertical-align:20.521067pt;}
.ls6_c00241{letter-spacing:-5.210667pt;}
.ls4_c00241{letter-spacing:0.000000pt;}
.ls0_c00241{letter-spacing:0.006400pt;}
.ls5_c00241{letter-spacing:0.010667pt;}
.ls2_c00241{letter-spacing:0.012800pt;}
.ls1_c00241{letter-spacing:0.021333pt;}
.ls3_c00241{letter-spacing:1.564443pt;}
.ws0_c00241{word-spacing:-11.733333pt;}
.ws1_c00241{word-spacing:0.000000pt;}
._14_c00241{margin-left:-9.286400pt;}
._0_c00241{margin-left:-7.431467pt;}
._e_c00241{margin-left:-6.291200pt;}
._1a_c00241{margin-left:-5.076267pt;}
._16_c00241{margin-left:-4.115200pt;}
._6_c00241{margin-left:-2.726400pt;}
._8_c00241{margin-left:-1.593600pt;}
._c_c00241{width:0.985600pt;}
._1_c00241{width:1.888000pt;}
._a_c00241{width:3.161600pt;}
._3_c00241{width:4.147200pt;}
._b_c00241{width:5.344000pt;}
._d_c00241{width:6.464000pt;}
._4_c00241{width:7.494400pt;}
._13_c00241{width:8.448000pt;}
._5_c00241{width:9.798400pt;}
._2_c00241{width:11.641600pt;}
._9_c00241{width:13.248000pt;}
._7_c00241{width:14.425600pt;}
._17_c00241{width:15.904000pt;}
._12_c00241{width:18.848000pt;}
._10_c00241{width:20.268800pt;}
._15_c00241{width:21.190400pt;}
._f_c00241{width:22.176000pt;}
._19_c00241{width:23.328000pt;}
._11_c00241{width:24.940800pt;}
._18_c00241{width:27.564800pt;}
.fs5_c00241{font-size:35.555557pt;}
.fs3_c00241{font-size:42.666667pt;}
.fs4_c00241{font-size:53.333333pt;}
.fs0_c00241{font-size:64.000000pt;}
.fs2_c00241{font-size:74.666667pt;}
.fs1_c00241{font-size:106.666667pt;}
.y0_c00241{bottom:0.000000pt;}
.y17_c00241{bottom:60.000000pt;}
.y1b_c00241{bottom:117.333333pt;}
.y1a_c00241{bottom:138.088933pt;}
.y19_c00241{bottom:174.666667pt;}
.y18_c00241{bottom:195.422267pt;}
.y15_c00241{bottom:249.333333pt;}
.y14_c00241{bottom:273.333333pt;}
.y13_c00241{bottom:297.333333pt;}
.y12_c00241{bottom:321.333333pt;}
.y11_c00241{bottom:345.333333pt;}
.y10_c00241{bottom:369.333333pt;}
.yf_c00241{bottom:393.333333pt;}
.ye_c00241{bottom:417.333333pt;}
.yd_c00241{bottom:472.000000pt;}
.yc_c00241{bottom:514.666667pt;}
.yb_c00241{bottom:538.666667pt;}
.ya_c00241{bottom:581.333333pt;}
.y9_c00241{bottom:605.333333pt;}
.y8_c00241{bottom:629.333333pt;}
.y7_c00241{bottom:653.333333pt;}
.y6_c00241{bottom:677.333333pt;}
.y5_c00241{bottom:720.000000pt;}
.y4_c00241{bottom:744.000000pt;}
.y3_c00241{bottom:768.000000pt;}
.y2_c00241{bottom:792.000000pt;}
.y1_c00241{bottom:921.333333pt;}
.y16_c00241{bottom:1061.333333pt;}
.h7_c00241{height:33.446350pt;}
.h6_c00241{height:39.296875pt;}
.h8_c00241{height:47.083333pt;}
.h9_c00241{height:47.135417pt;}
.h5_c00241{height:49.843750pt;}
.h2_c00241{height:60.218750pt;}
.h4_c00241{height:60.666900pt;}
.h3_c00241{height:70.729167pt;}
.h1_c00241{height:101.041667pt;}
.h0_c00241{height:1122.666667pt;}
.w0_c00241{width:793.333333pt;}
.x0_c00241{left:0.000000pt;}
.x1_c00241{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3c27fc7b70bb6b7c6b63bf17.woff2')format("woff");}.ff1_c00242{font-family:ff1_c00242;line-height:0.934082;font-style:normal;font-weight:normal;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_544aed87c0d9d195d6eb6ad7.woff2')format("woff");}.ff2_c00242{font-family:ff2_c00242;line-height:1.143066;font-style:normal;font-weight:normal;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_9a17e592b8bea831e3a4178f.woff2')format("woff");}.ff3_c00242{font-family:ff3_c00242;line-height:1.100586;font-style:normal;font-weight:normal;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_d46104cc631daafd14f34fec.woff2')format("woff");}.ff4_c00242{font-family:ff4_c00242;line-height:1.092285;font-style: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);}
.v2_c00242{vertical-align:-23.086200px;}
.v3_c00242{vertical-align:-15.400200px;}
.v0_c00242{vertical-align:0.000000px;}
.v1_c00242{vertical-align:23.086200px;}
.ls5_c00242{letter-spacing:-4.914000px;}
.ls4_c00242{letter-spacing:0.000000px;}
.ls2_c00242{letter-spacing:0.005599px;}
.ls1_c00242{letter-spacing:0.012000px;}
.ls3_c00242{letter-spacing:1.759999px;}
.ls0_c00242{letter-spacing:2.989200px;}
.sc__c00242{text-shadow:none;}
.sc0_c00242{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00242{-webkit-text-stroke:0px transparent;}
.sc0_c00242{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00242{word-spacing:-13.200000px;}
.ws1_c00242{word-spacing:0.000000px;}
._10_c00242{margin-left:-10.584000px;}
._b_c00242{margin-left:-7.264800px;}
._1b_c00242{margin-left:-5.061600px;}
._f_c00242{margin-left:-3.888000px;}
._11_c00242{margin-left:-2.865600px;}
._2_c00242{margin-left:-1.720800px;}
._4_c00242{width:1.058400px;}
._1_c00242{width:2.786400px;}
._0_c00242{width:4.651200px;}
._12_c00242{width:5.904000px;}
._3_c00242{width:7.099200px;}
._13_c00242{width:8.280000px;}
._e_c00242{width:9.597600px;}
._d_c00242{width:11.383200px;}
._a_c00242{width:12.456000px;}
._c_c00242{width:14.133600px;}
._9_c00242{width:15.444000px;}
._1d_c00242{width:16.488000px;}
._7_c00242{width:17.546400px;}
._6_c00242{width:18.756000px;}
._5_c00242{width:21.139200px;}
._8_c00242{width:23.205600px;}
._1a_c00242{width:25.113600px;}
._19_c00242{width:26.388000px;}
._1c_c00242{width:28.360800px;}
._15_c00242{width:29.808000px;}
._16_c00242{width:31.492800px;}
._14_c00242{width:32.544000px;}
._17_c00242{width:34.272000px;}
._18_c00242{width:35.424000px;}
.fc0_c00242{color:rgb(0,0,0);}
.fs3_c00242{font-size:40.000002px;}
.fs1_c00242{font-size:48.000000px;}
.fs2_c00242{font-size:60.000000px;}
.fs0_c00242{font-size:72.000000px;}
.y0_c00242{bottom:0.000000px;}
.y20_c00242{bottom:67.500000px;}
.y23_c00242{bottom:132.000000px;}
.y22_c00242{bottom:155.350050px;}
.y21_c00242{bottom:200.350050px;}
.y1d_c00242{bottom:276.000000px;}
.y1c_c00242{bottom:303.000000px;}
.y1b_c00242{bottom:330.000000px;}
.y1a_c00242{bottom:357.000000px;}
.y19_c00242{bottom:384.000000px;}
.y18_c00242{bottom:411.000000px;}
.y17_c00242{bottom:459.000000px;}
.y16_c00242{bottom:486.000000px;}
.y15_c00242{bottom:513.000000px;}
.y14_c00242{bottom:540.000000px;}
.y13_c00242{bottom:567.000000px;}
.y12_c00242{bottom:594.000000px;}
.y11_c00242{bottom:621.000000px;}
.y10_c00242{bottom:648.000000px;}
.yf_c00242{bottom:696.000000px;}
.ye_c00242{bottom:723.000000px;}
.yd_c00242{bottom:750.000000px;}
.yc_c00242{bottom:777.000000px;}
.yb_c00242{bottom:804.000000px;}
.ya_c00242{bottom:831.000000px;}
.y9_c00242{bottom:858.000000px;}
.y8_c00242{bottom:885.000000px;}
.y7_c00242{bottom:912.000000px;}
.y6_c00242{bottom:939.000000px;}
.y5_c00242{bottom:966.000000px;}
.y4_c00242{bottom:993.000000px;}
.y3_c00242{bottom:1041.000000px;}
.y2_c00242{bottom:1068.000000px;}
.y1_c00242{bottom:1095.000000px;}
.y1f_c00242{bottom:1176.000000px;}
.y1e_c00242{bottom:1194.000000px;}
.h4_c00242{height:40.674019px;}
.h1_c00242{height:51.257812px;}
.h5_c00242{height:53.027344px;}
.h3_c00242{height:56.074219px;}
.h2_c00242{height:57.258075px;}
.h0_c00242{height:1263.000000px;}
.w0_c00242{width:892.500000px;}
.x0_c00242{left:0.000000px;}
.x1_c00242{left:150.519750px;}
.x2_c00242{left:195.862500px;}
.x3_c00242{left:627.778950px;}
.x4_c00242{left:801.992850px;}
@media print{
.v2_c00242{vertical-align:-20.521067pt;}
.v3_c00242{vertical-align:-13.689067pt;}
.v0_c00242{vertical-align:0.000000pt;}
.v1_c00242{vertical-align:20.521067pt;}
.ls5_c00242{letter-spacing:-4.368000pt;}
.ls4_c00242{letter-spacing:0.000000pt;}
.ls2_c00242{letter-spacing:0.004977pt;}
.ls1_c00242{letter-spacing:0.010667pt;}
.ls3_c00242{letter-spacing:1.564443pt;}
.ls0_c00242{letter-spacing:2.657067pt;}
.ws0_c00242{word-spacing:-11.733333pt;}
.ws1_c00242{word-spacing:0.000000pt;}
._10_c00242{margin-left:-9.408000pt;}
._b_c00242{margin-left:-6.457600pt;}
._1b_c00242{margin-left:-4.499200pt;}
._f_c00242{margin-left:-3.456000pt;}
._11_c00242{margin-left:-2.547200pt;}
._2_c00242{margin-left:-1.529600pt;}
._4_c00242{width:0.940800pt;}
._1_c00242{width:2.476800pt;}
._0_c00242{width:4.134400pt;}
._12_c00242{width:5.248000pt;}
._3_c00242{width:6.310400pt;}
._13_c00242{width:7.360000pt;}
._e_c00242{width:8.531200pt;}
._d_c00242{width:10.118400pt;}
._a_c00242{width:11.072000pt;}
._c_c00242{width:12.563200pt;}
._9_c00242{width:13.728000pt;}
._1d_c00242{width:14.656000pt;}
._7_c00242{width:15.596800pt;}
._6_c00242{width:16.672000pt;}
._5_c00242{width:18.790400pt;}
._8_c00242{width:20.627200pt;}
._1a_c00242{width:22.323200pt;}
._19_c00242{width:23.456000pt;}
._1c_c00242{width:25.209600pt;}
._15_c00242{width:26.496000pt;}
._16_c00242{width:27.993600pt;}
._14_c00242{width:28.928000pt;}
._17_c00242{width:30.464000pt;}
._18_c00242{width:31.488000pt;}
.fs3_c00242{font-size:35.555557pt;}
.fs1_c00242{font-size:42.666667pt;}
.fs2_c00242{font-size:53.333333pt;}
.fs0_c00242{font-size:64.000000pt;}
.y0_c00242{bottom:0.000000pt;}
.y20_c00242{bottom:60.000000pt;}
.y23_c00242{bottom:117.333333pt;}
.y22_c00242{bottom:138.088933pt;}
.y21_c00242{bottom:178.088933pt;}
.y1d_c00242{bottom:245.333333pt;}
.y1c_c00242{bottom:269.333333pt;}
.y1b_c00242{bottom:293.333333pt;}
.y1a_c00242{bottom:317.333333pt;}
.y19_c00242{bottom:341.333333pt;}
.y18_c00242{bottom:365.333333pt;}
.y17_c00242{bottom:408.000000pt;}
.y16_c00242{bottom:432.000000pt;}
.y15_c00242{bottom:456.000000pt;}
.y14_c00242{bottom:480.000000pt;}
.y13_c00242{bottom:504.000000pt;}
.y12_c00242{bottom:528.000000pt;}
.y11_c00242{bottom:552.000000pt;}
.y10_c00242{bottom:576.000000pt;}
.yf_c00242{bottom:618.666667pt;}
.ye_c00242{bottom:642.666667pt;}
.yd_c00242{bottom:666.666667pt;}
.yc_c00242{bottom:690.666667pt;}
.yb_c00242{bottom:714.666667pt;}
.ya_c00242{bottom:738.666667pt;}
.y9_c00242{bottom:762.666667pt;}
.y8_c00242{bottom:786.666667pt;}
.y7_c00242{bottom:810.666667pt;}
.y6_c00242{bottom:834.666667pt;}
.y5_c00242{bottom:858.666667pt;}
.y4_c00242{bottom:882.666667pt;}
.y3_c00242{bottom:925.333333pt;}
.y2_c00242{bottom:949.333333pt;}
.y1_c00242{bottom:973.333333pt;}
.y1f_c00242{bottom:1045.333333pt;}
.y1e_c00242{bottom:1061.333333pt;}
.h4_c00242{height:36.154683pt;}
.h1_c00242{height:45.562500pt;}
.h5_c00242{height:47.135417pt;}
.h3_c00242{height:49.843750pt;}
.h2_c00242{height:50.896067pt;}
.h0_c00242{height:1122.666667pt;}
.w0_c00242{width:793.333333pt;}
.x0_c00242{left:0.000000pt;}
.x1_c00242{left:133.795333pt;}
.x2_c00242{left:174.100000pt;}
.x3_c00242{left:558.025733pt;}
.x4_c00242{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eed168c87cab16b89b6733b9.woff2')format("woff");}.ff1_c00243{font-family:ff1_c00243;line-height:0.934082;font-style:normal;font-weight:normal;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_6f7eb60118a5e27f340697bd.woff2')format("woff");}.ff2_c00243{font-family:ff2_c00243;line-height:0.963867;font-style:normal;font-weight:normal;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_31785890c1a516d2ab9376eb.woff2')format("woff");}.ff3_c00243{font-family:ff3_c00243;line-height:0.755859;font-style:normal;font-weight:normal;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_6ae1d891bf78fbd12cca5bf9.woff2')format("woff");}.ff4_c00243{font-family:ff4_c00243;line-height:1.155762;font-style:normal;font-weight:normal;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_8b3cea1cc2592500c0d70914.woff2')format("woff");}.ff5_c00243{font-family:ff5_c00243;line-height:1.115723;font-style:normal;font-weight: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_c00243;src:url('chunks/assets/font_d33ac436dd9d3d7347b396eb.woff2')format("woff");}.ff6_c00243{font-family:ff6_c00243;line-height:1.092285;font-style: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);}
.v2_c00243{vertical-align:-23.086200px;}
.v3_c00243{vertical-align:-15.400200px;}
.v0_c00243{vertical-align:0.000000px;}
.v1_c00243{vertical-align:23.086200px;}
.ls4_c00243{letter-spacing:0.000000px;}
.ls1_c00243{letter-spacing:0.006019px;}
.ls5_c00243{letter-spacing:0.012000px;}
.ls2_c00243{letter-spacing:1.759999px;}
.ls0_c00243{letter-spacing:1.964400px;}
.ls3_c00243{letter-spacing:2.582040px;}
.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:-13.200000px;}
.ws1_c00243{word-spacing:0.000000px;}
._15_c00243{margin-left:-7.752360px;}
._a_c00243{margin-left:-6.264000px;}
._b_c00243{margin-left:-4.665600px;}
._1_c00243{margin-left:-3.636000px;}
._d_c00243{margin-left:-2.580240px;}
._2_c00243{margin-left:-1.572240px;}
._3_c00243{width:1.699200px;}
._4_c00243{width:2.829600px;}
._0_c00243{width:3.960000px;}
._e_c00243{width:5.923680px;}
._8_c00243{width:7.202640px;}
._5_c00243{width:8.726400px;}
._7_c00243{width:10.418400px;}
._9_c00243{width:11.983440px;}
._6_c00243{width:14.054400px;}
._c_c00243{width:15.055200px;}
._13_c00243{width:17.128800px;}
._f_c00243{width:18.604800px;}
._12_c00243{width:21.132000px;}
._14_c00243{width:22.351440px;}
._10_c00243{width:23.683440px;}
._11_c00243{width:25.797600px;}
.fc0_c00243{color:rgb(0,0,0);}
.fs4_c00243{font-size:40.000002px;}
.fs1_c00243{font-size:48.000000px;}
.fs2_c00243{font-size:54.000000px;}
.fs3_c00243{font-size:60.000000px;}
.fs0_c00243{font-size:72.000000px;}
.y0_c00243{bottom:0.000000px;}
.y5_c00243{bottom:12.000000px;}
.y10_c00243{bottom:67.500000px;}
.y14_c00243{bottom:132.000000px;}
.y13_c00243{bottom:151.500000px;}
.y12_c00243{bottom:174.850050px;}
.y11_c00243{bottom:219.850050px;}
.ye_c00243{bottom:303.000000px;}
.yd_c00243{bottom:330.000000px;}
.yc_c00243{bottom:357.000000px;}
.yb_c00243{bottom:384.000000px;}
.ya_c00243{bottom:432.000000px;}
.y9_c00243{bottom:459.000000px;}
.y8_c00243{bottom:486.000000px;}
.y7_c00243{bottom:513.000000px;}
.y6_c00243{bottom:540.000000px;}
.y4_c00243{bottom:585.000000px;}
.y3_c00243{bottom:1041.000000px;}
.y2_c00243{bottom:1068.000000px;}
.y1_c00243{bottom:1095.000000px;}
.yf_c00243{bottom:1194.000000px;}
.h7_c00243{height:38.418159px;}
.h4_c00243{height:41.633789px;}
.h6_c00243{height:44.208984px;}
.h2_c00243{height:51.257812px;}
.h8_c00243{height:53.818359px;}
.h5_c00243{height:56.074219px;}
.h1_c00243{height:57.258075px;}
.h3_c00243{height:424.500000px;}
.h0_c00243{height:1263.000000px;}
.w1_c00243{width:676.500000px;}
.w0_c00243{width:892.500000px;}
.x0_c00243{left:0.000000px;}
.x2_c00243{left:63.606075px;}
.x1_c00243{left:65.480310px;}
@media print{
.v2_c00243{vertical-align:-20.521067pt;}
.v3_c00243{vertical-align:-13.689067pt;}
.v0_c00243{vertical-align:0.000000pt;}
.v1_c00243{vertical-align:20.521067pt;}
.ls4_c00243{letter-spacing:0.000000pt;}
.ls1_c00243{letter-spacing:0.005350pt;}
.ls5_c00243{letter-spacing:0.010667pt;}
.ls2_c00243{letter-spacing:1.564443pt;}
.ls0_c00243{letter-spacing:1.746133pt;}
.ls3_c00243{letter-spacing:2.295147pt;}
.ws0_c00243{word-spacing:-11.733333pt;}
.ws1_c00243{word-spacing:0.000000pt;}
._15_c00243{margin-left:-6.890987pt;}
._a_c00243{margin-left:-5.568000pt;}
._b_c00243{margin-left:-4.147200pt;}
._1_c00243{margin-left:-3.232000pt;}
._d_c00243{margin-left:-2.293547pt;}
._2_c00243{margin-left:-1.397547pt;}
._3_c00243{width:1.510400pt;}
._4_c00243{width:2.515200pt;}
._0_c00243{width:3.520000pt;}
._e_c00243{width:5.265493pt;}
._8_c00243{width:6.402347pt;}
._5_c00243{width:7.756800pt;}
._7_c00243{width:9.260800pt;}
._9_c00243{width:10.651947pt;}
._6_c00243{width:12.492800pt;}
._c_c00243{width:13.382400pt;}
._13_c00243{width:15.225600pt;}
._f_c00243{width:16.537600pt;}
._12_c00243{width:18.784000pt;}
._14_c00243{width:19.867947pt;}
._10_c00243{width:21.051947pt;}
._11_c00243{width:22.931200pt;}
.fs4_c00243{font-size:35.555557pt;}
.fs1_c00243{font-size:42.666667pt;}
.fs2_c00243{font-size:48.000000pt;}
.fs3_c00243{font-size:53.333333pt;}
.fs0_c00243{font-size:64.000000pt;}
.y0_c00243{bottom:0.000000pt;}
.y5_c00243{bottom:10.666667pt;}
.y10_c00243{bottom:60.000000pt;}
.y14_c00243{bottom:117.333333pt;}
.y13_c00243{bottom:134.666667pt;}
.y12_c00243{bottom:155.422267pt;}
.y11_c00243{bottom:195.422267pt;}
.ye_c00243{bottom:269.333333pt;}
.yd_c00243{bottom:293.333333pt;}
.yc_c00243{bottom:317.333333pt;}
.yb_c00243{bottom:341.333333pt;}
.ya_c00243{bottom:384.000000pt;}
.y9_c00243{bottom:408.000000pt;}
.y8_c00243{bottom:432.000000pt;}
.y7_c00243{bottom:456.000000pt;}
.y6_c00243{bottom:480.000000pt;}
.y4_c00243{bottom:520.000000pt;}
.y3_c00243{bottom:925.333333pt;}
.y2_c00243{bottom:949.333333pt;}
.y1_c00243{bottom:973.333333pt;}
.yf_c00243{bottom:1061.333333pt;}
.h7_c00243{height:34.149475pt;}
.h4_c00243{height:37.007812pt;}
.h6_c00243{height:39.296875pt;}
.h2_c00243{height:45.562500pt;}
.h8_c00243{height:47.838542pt;}
.h5_c00243{height:49.843750pt;}
.h1_c00243{height:50.896067pt;}
.h3_c00243{height:377.333333pt;}
.h0_c00243{height:1122.666667pt;}
.w1_c00243{width:601.333333pt;}
.w0_c00243{width:793.333333pt;}
.x0_c00243{left:0.000000pt;}
.x2_c00243{left:56.538733pt;}
.x1_c00243{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_65220e01db754fa7fcad2a1a.woff2')format("woff");}.ff1_c00244{font-family:ff1_c00244;line-height:0.934082;font-style:normal;font-weight:normal;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_1c5a41c0e4450ec77b1178ff.woff2')format("woff");}.ff2_c00244{font-family:ff2_c00244;line-height:1.143066;font-style:normal;font-weight:normal;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_a5ccff1aacb7cd43309a3c49.woff2')format("woff");}.ff3_c00244{font-family:ff3_c00244;line-height:1.114746;font-style:normal;font-weight:normal;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_180e8df216213ea9744bf8ca.woff2')format("woff");}.ff4_c00244{font-family:ff4_c00244;line-height:0.891113;font-style: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);}
.v2_c00244{vertical-align:-23.086200px;}
.v3_c00244{vertical-align:-15.400200px;}
.v0_c00244{vertical-align:0.000000px;}
.v1_c00244{vertical-align:23.086200px;}
.ls8_c00244{letter-spacing:-0.009600px;}
.ls7_c00244{letter-spacing:-0.007200px;}
.ls6_c00244{letter-spacing:0.000000px;}
.ls3_c00244{letter-spacing:0.005599px;}
.ls0_c00244{letter-spacing:0.007200px;}
.ls9_c00244{letter-spacing:0.008000px;}
.ls2_c00244{letter-spacing:0.012000px;}
.ls1_c00244{letter-spacing:0.582600px;}
.ls5_c00244{letter-spacing:1.604400px;}
.ls4_c00244{letter-spacing:1.759999px;}
.sc__c00244{text-shadow:none;}
.sc0_c00244{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00244{-webkit-text-stroke:0px transparent;}
.sc0_c00244{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00244{word-spacing:-13.200000px;}
.ws1_c00244{word-spacing:-13.190400px;}
.ws2_c00244{word-spacing:-11.128001px;}
.ws3_c00244{word-spacing:0.000000px;}
._a_c00244{margin-left:-10.584000px;}
._14_c00244{margin-left:-9.526800px;}
._10_c00244{margin-left:-7.252800px;}
._15_c00244{margin-left:-5.090400px;}
._0_c00244{margin-left:-3.888000px;}
._5_c00244{margin-left:-2.371200px;}
._9_c00244{margin-left:-1.231200px;}
._2_c00244{width:1.368000px;}
._7_c00244{width:2.995200px;}
._8_c00244{width:4.572000px;}
._3_c00244{width:6.192000px;}
._4_c00244{width:7.488000px;}
._11_c00244{width:8.553600px;}
._6_c00244{width:9.943200px;}
._1_c00244{width:11.376000px;}
._12_c00244{width:12.592800px;}
._13_c00244{width:13.672800px;}
._b_c00244{width:15.904800px;}
._c_c00244{width:17.496000px;}
._f_c00244{width:18.559200px;}
._e_c00244{width:21.235200px;}
._d_c00244{width:22.795200px;}
.fc0_c00244{color:rgb(0,0,0);}
.fs3_c00244{font-size:40.000002px;}
.fs1_c00244{font-size:48.000000px;}
.fs2_c00244{font-size:60.000000px;}
.fs0_c00244{font-size:72.000000px;}
.y0_c00244{bottom:0.000000px;}
.y6_c00244{bottom:12.000000px;}
.y1b_c00244{bottom:67.500000px;}
.y20_c00244{bottom:135.850050px;}
.y1f_c00244{bottom:177.000000px;}
.y1e_c00244{bottom:200.350050px;}
.y1d_c00244{bottom:245.350050px;}
.y1c_c00244{bottom:290.350050px;}
.y18_c00244{bottom:346.500000px;}
.y17_c00244{bottom:373.500000px;}
.y16_c00244{bottom:400.500000px;}
.y15_c00244{bottom:427.500000px;}
.y14_c00244{bottom:475.500000px;}
.y13_c00244{bottom:502.500000px;}
.y12_c00244{bottom:529.500000px;}
.y11_c00244{bottom:556.500000px;}
.y10_c00244{bottom:583.500000px;}
.yf_c00244{bottom:610.500000px;}
.ye_c00244{bottom:658.500000px;}
.yd_c00244{bottom:685.500000px;}
.yc_c00244{bottom:712.500000px;}
.yb_c00244{bottom:739.500000px;}
.ya_c00244{bottom:766.500000px;}
.y9_c00244{bottom:811.500000px;}
.y8_c00244{bottom:849.000000px;}
.y7_c00244{bottom:886.500000px;}
.y5_c00244{bottom:924.000000px;}
.y4_c00244{bottom:993.000000px;}
.y3_c00244{bottom:1020.000000px;}
.y2_c00244{bottom:1068.000000px;}
.y1_c00244{bottom:1095.000000px;}
.y1a_c00244{bottom:1176.000000px;}
.y19_c00244{bottom:1194.000000px;}
.h3_c00244{height:37.500000px;}
.h5_c00244{height:40.674019px;}
.h2_c00244{height:51.257812px;}
.h6_c00244{height:53.818359px;}
.h4_c00244{height:56.074219px;}
.h1_c00244{height:57.258075px;}
.h0_c00244{height:1263.000000px;}
.w1_c00244{width:225.499950px;}
.w0_c00244{width:892.500000px;}
.x0_c00244{left:0.000000px;}
.x3_c00244{left:7.500000px;}
.x1_c00244{left:150.519750px;}
.x5_c00244{left:195.862500px;}
.x2_c00244{left:375.499950px;}
.x4_c00244{left:601.000050px;}
.x6_c00244{left:627.778950px;}
.x7_c00244{left:801.992850px;}
@media print{
.v2_c00244{vertical-align:-20.521067pt;}
.v3_c00244{vertical-align:-13.689067pt;}
.v0_c00244{vertical-align:0.000000pt;}
.v1_c00244{vertical-align:20.521067pt;}
.ls8_c00244{letter-spacing:-0.008533pt;}
.ls7_c00244{letter-spacing:-0.006400pt;}
.ls6_c00244{letter-spacing:0.000000pt;}
.ls3_c00244{letter-spacing:0.004977pt;}
.ls0_c00244{letter-spacing:0.006400pt;}
.ls9_c00244{letter-spacing:0.007111pt;}
.ls2_c00244{letter-spacing:0.010667pt;}
.ls1_c00244{letter-spacing:0.517867pt;}
.ls5_c00244{letter-spacing:1.426133pt;}
.ls4_c00244{letter-spacing:1.564443pt;}
.ws0_c00244{word-spacing:-11.733333pt;}
.ws1_c00244{word-spacing:-11.724800pt;}
.ws2_c00244{word-spacing:-9.891556pt;}
.ws3_c00244{word-spacing:0.000000pt;}
._a_c00244{margin-left:-9.408000pt;}
._14_c00244{margin-left:-8.468267pt;}
._10_c00244{margin-left:-6.446933pt;}
._15_c00244{margin-left:-4.524800pt;}
._0_c00244{margin-left:-3.456000pt;}
._5_c00244{margin-left:-2.107733pt;}
._9_c00244{margin-left:-1.094400pt;}
._2_c00244{width:1.216000pt;}
._7_c00244{width:2.662400pt;}
._8_c00244{width:4.064000pt;}
._3_c00244{width:5.504000pt;}
._4_c00244{width:6.656000pt;}
._11_c00244{width:7.603200pt;}
._6_c00244{width:8.838400pt;}
._1_c00244{width:10.112000pt;}
._12_c00244{width:11.193600pt;}
._13_c00244{width:12.153600pt;}
._b_c00244{width:14.137600pt;}
._c_c00244{width:15.552000pt;}
._f_c00244{width:16.497067pt;}
._e_c00244{width:18.875733pt;}
._d_c00244{width:20.262400pt;}
.fs3_c00244{font-size:35.555557pt;}
.fs1_c00244{font-size:42.666667pt;}
.fs2_c00244{font-size:53.333333pt;}
.fs0_c00244{font-size:64.000000pt;}
.y0_c00244{bottom:0.000000pt;}
.y6_c00244{bottom:10.666667pt;}
.y1b_c00244{bottom:60.000000pt;}
.y20_c00244{bottom:120.755600pt;}
.y1f_c00244{bottom:157.333333pt;}
.y1e_c00244{bottom:178.088933pt;}
.y1d_c00244{bottom:218.088933pt;}
.y1c_c00244{bottom:258.088933pt;}
.y18_c00244{bottom:308.000000pt;}
.y17_c00244{bottom:332.000000pt;}
.y16_c00244{bottom:356.000000pt;}
.y15_c00244{bottom:380.000000pt;}
.y14_c00244{bottom:422.666667pt;}
.y13_c00244{bottom:446.666667pt;}
.y12_c00244{bottom:470.666667pt;}
.y11_c00244{bottom:494.666667pt;}
.y10_c00244{bottom:518.666667pt;}
.yf_c00244{bottom:542.666667pt;}
.ye_c00244{bottom:585.333333pt;}
.yd_c00244{bottom:609.333333pt;}
.yc_c00244{bottom:633.333333pt;}
.yb_c00244{bottom:657.333333pt;}
.ya_c00244{bottom:681.333333pt;}
.y9_c00244{bottom:721.333333pt;}
.y8_c00244{bottom:754.666667pt;}
.y7_c00244{bottom:788.000000pt;}
.y5_c00244{bottom:821.333333pt;}
.y4_c00244{bottom:882.666667pt;}
.y3_c00244{bottom:906.666667pt;}
.y2_c00244{bottom:949.333333pt;}
.y1_c00244{bottom:973.333333pt;}
.y1a_c00244{bottom:1045.333333pt;}
.y19_c00244{bottom:1061.333333pt;}
.h3_c00244{height:33.333333pt;}
.h5_c00244{height:36.154683pt;}
.h2_c00244{height:45.562500pt;}
.h6_c00244{height:47.838542pt;}
.h4_c00244{height:49.843750pt;}
.h1_c00244{height:50.896067pt;}
.h0_c00244{height:1122.666667pt;}
.w1_c00244{width:200.444400pt;}
.w0_c00244{width:793.333333pt;}
.x0_c00244{left:0.000000pt;}
.x3_c00244{left:6.666667pt;}
.x1_c00244{left:133.795333pt;}
.x5_c00244{left:174.100000pt;}
.x2_c00244{left:333.777733pt;}
.x4_c00244{left:534.222267pt;}
.x6_c00244{left:558.025733pt;}
.x7_c00244{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ed01748316e9d5d26ec7ada5.woff2')format("woff");}.ff1_c00245{font-family:ff1_c00245;line-height:0.934082;font-style:normal;font-weight:normal;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_9b1e7d968d30b20d643a7cd1.woff2')format("woff");}.ff2_c00245{font-family:ff2_c00245;line-height:0.892578;font-style:normal;font-weight:normal;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_a82a00a84994b1fd40b4b261.woff2')format("woff");}.ff3_c00245{font-family:ff3_c00245;line-height:0.987793;font-style:normal;font-weight:normal;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_e65db78ed2724d9fe27c43d0.woff2')format("woff");}.ff4_c00245{font-family:ff4_c00245;line-height:0.755859;font-style:normal;font-weight:normal;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_3c74b9653ea48506bb0d8b50.woff2')format("woff");}.ff5_c00245{font-family:ff5_c00245;line-height:1.155762;font-style:normal;font-weight: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_c00245;src:url('chunks/assets/font_f4588898a0f25b641b50262a.woff2')format("woff");}.ff6_c00245{font-family:ff6_c00245;line-height:1.100586;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00245;src:url('chunks/assets/font_38c8f73c3c122880dc47e886.woff2')format("woff");}.ff7_c00245{font-family:ff7_c00245;line-height:0.889648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00245{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00245{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00245{vertical-align:-23.086200px;}
.v3_c00245{vertical-align:-15.400200px;}
.v0_c00245{vertical-align:0.000000px;}
.v1_c00245{vertical-align:23.086200px;}
.ls1_c00245{letter-spacing:-0.009600px;}
.ls0_c00245{letter-spacing:0.000000px;}
.ls3_c00245{letter-spacing:0.008000px;}
.ls2_c00245{letter-spacing:0.012000px;}
.sc__c00245{text-shadow:none;}
.sc0_c00245{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00245{-webkit-text-stroke:0px transparent;}
.sc0_c00245{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00245{word-spacing:-17.064000px;}
.ws3_c00245{word-spacing:-15.000000px;}
.ws1_c00245{word-spacing:-13.190400px;}
.ws2_c00245{word-spacing:-11.128001px;}
.ws4_c00245{word-spacing:0.000000px;}
._10_c00245{margin-left:-9.280800px;}
._f_c00245{margin-left:-6.012000px;}
._5_c00245{margin-left:-4.888800px;}
._d_c00245{margin-left:-3.736800px;}
._a_c00245{margin-left:-2.289600px;}
._3_c00245{margin-left:-1.260000px;}
._e_c00245{width:1.058400px;}
._7_c00245{width:2.059200px;}
._1_c00245{width:3.204000px;}
._9_c00245{width:4.298400px;}
._8_c00245{width:5.968800px;}
._c_c00245{width:7.041600px;}
._6_c00245{width:8.128800px;}
._2_c00245{width:9.489600px;}
._b_c00245{width:11.498400px;}
._0_c00245{width:12.686400px;}
._4_c00245{width:13.946400px;}
._13_c00245{width:15.991200px;}
._11_c00245{width:17.776800px;}
._12_c00245{width:22.716000px;}
.fc1_c00245{color:rgb(0,0,153);}
.fc0_c00245{color:rgb(0,0,0);}
.fs5_c00245{font-size:40.000002px;}
.fs3_c00245{font-size:48.000000px;}
.fs2_c00245{font-size:54.000000px;}
.fs4_c00245{font-size:60.000000px;}
.fs0_c00245{font-size:72.000000px;}
.fs1_c00245{font-size:84.000000px;}
.y0_c00245{bottom:0.000000px;}
.ya_c00245{bottom:10.500000px;}
.y9_c00245{bottom:28.500000px;}
.y14_c00245{bottom:67.500000px;}
.y16_c00245{bottom:135.850050px;}
.y15_c00245{bottom:180.850050px;}
.y12_c00245{bottom:235.500000px;}
.y11_c00245{bottom:262.500000px;}
.y10_c00245{bottom:289.500000px;}
.yf_c00245{bottom:316.500000px;}
.ye_c00245{bottom:343.500000px;}
.yd_c00245{bottom:391.500000px;}
.yc_c00245{bottom:418.500000px;}
.yb_c00245{bottom:445.500000px;}
.y8_c00245{bottom:490.500000px;}
.y7_c00245{bottom:877.500000px;}
.y6_c00245{bottom:904.500000px;}
.y5_c00245{bottom:931.500000px;}
.y4_c00245{bottom:958.500000px;}
.y3_c00245{bottom:1018.500000px;}
.y2_c00245{bottom:1068.000000px;}
.y1_c00245{bottom:1095.000000px;}
.y13_c00245{bottom:1194.000000px;}
.h8_c00245{height:37.568550px;}
.h4_c00245{height:42.292969px;}
.h7_c00245{height:44.208984px;}
.h1_c00245{height:51.257812px;}
.h6_c00245{height:56.074219px;}
.h5_c00245{height:57.258075px;}
.h2_c00245{height:60.128906px;}
.h3_c00245{height:376.500000px;}
.h0_c00245{height:1263.000000px;}
.w1_c00245{width:676.500000px;}
.w0_c00245{width:892.500000px;}
.x0_c00245{left:0.000000px;}
.x2_c00245{left:51.025635px;}
.x3_c00245{left:55.771725px;}
.x1_c00245{left:65.480310px;}
@media print{
.v2_c00245{vertical-align:-20.521067pt;}
.v3_c00245{vertical-align:-13.689067pt;}
.v0_c00245{vertical-align:0.000000pt;}
.v1_c00245{vertical-align:20.521067pt;}
.ls1_c00245{letter-spacing:-0.008533pt;}
.ls0_c00245{letter-spacing:0.000000pt;}
.ls3_c00245{letter-spacing:0.007111pt;}
.ls2_c00245{letter-spacing:0.010667pt;}
.ws0_c00245{word-spacing:-15.168000pt;}
.ws3_c00245{word-spacing:-13.333333pt;}
.ws1_c00245{word-spacing:-11.724800pt;}
.ws2_c00245{word-spacing:-9.891556pt;}
.ws4_c00245{word-spacing:0.000000pt;}
._10_c00245{margin-left:-8.249600pt;}
._f_c00245{margin-left:-5.344000pt;}
._5_c00245{margin-left:-4.345600pt;}
._d_c00245{margin-left:-3.321600pt;}
._a_c00245{margin-left:-2.035200pt;}
._3_c00245{margin-left:-1.120000pt;}
._e_c00245{width:0.940800pt;}
._7_c00245{width:1.830400pt;}
._1_c00245{width:2.848000pt;}
._9_c00245{width:3.820800pt;}
._8_c00245{width:5.305600pt;}
._c_c00245{width:6.259200pt;}
._6_c00245{width:7.225600pt;}
._2_c00245{width:8.435200pt;}
._b_c00245{width:10.220800pt;}
._0_c00245{width:11.276800pt;}
._4_c00245{width:12.396800pt;}
._13_c00245{width:14.214400pt;}
._11_c00245{width:15.801600pt;}
._12_c00245{width:20.192000pt;}
.fs5_c00245{font-size:35.555557pt;}
.fs3_c00245{font-size:42.666667pt;}
.fs2_c00245{font-size:48.000000pt;}
.fs4_c00245{font-size:53.333333pt;}
.fs0_c00245{font-size:64.000000pt;}
.fs1_c00245{font-size:74.666667pt;}
.y0_c00245{bottom:0.000000pt;}
.ya_c00245{bottom:9.333333pt;}
.y9_c00245{bottom:25.333333pt;}
.y14_c00245{bottom:60.000000pt;}
.y16_c00245{bottom:120.755600pt;}
.y15_c00245{bottom:160.755600pt;}
.y12_c00245{bottom:209.333333pt;}
.y11_c00245{bottom:233.333333pt;}
.y10_c00245{bottom:257.333333pt;}
.yf_c00245{bottom:281.333333pt;}
.ye_c00245{bottom:305.333333pt;}
.yd_c00245{bottom:348.000000pt;}
.yc_c00245{bottom:372.000000pt;}
.yb_c00245{bottom:396.000000pt;}
.y8_c00245{bottom:436.000000pt;}
.y7_c00245{bottom:780.000000pt;}
.y6_c00245{bottom:804.000000pt;}
.y5_c00245{bottom:828.000000pt;}
.y4_c00245{bottom:852.000000pt;}
.y3_c00245{bottom:905.333333pt;}
.y2_c00245{bottom:949.333333pt;}
.y1_c00245{bottom:973.333333pt;}
.y13_c00245{bottom:1061.333333pt;}
.h8_c00245{height:33.394267pt;}
.h4_c00245{height:37.593750pt;}
.h7_c00245{height:39.296875pt;}
.h1_c00245{height:45.562500pt;}
.h6_c00245{height:49.843750pt;}
.h5_c00245{height:50.896067pt;}
.h2_c00245{height:53.447917pt;}
.h3_c00245{height:334.666667pt;}
.h0_c00245{height:1122.666667pt;}
.w1_c00245{width:601.333333pt;}
.w0_c00245{width:793.333333pt;}
.x0_c00245{left:0.000000pt;}
.x2_c00245{left:45.356120pt;}
.x3_c00245{left:49.574867pt;}
.x1_c00245{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_713e0e1cab559d35b95c1b73.woff2')format("woff");}.ff1_c00246{font-family:ff1_c00246;line-height:1.163086;font-style:normal;font-weight:normal;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_08b47dd4efd2cca015ae0e46.woff2')format("woff");}.ff2_c00246{font-family:ff2_c00246;line-height:0.888672;font-style:normal;font-weight:normal;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_3887c26e27458405021874da.woff2')format("woff");}.ff3_c00246{font-family:ff3_c00246;line-height:1.143066;font-style:normal;font-weight:normal;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_546f35cbdce0e079240e6156.woff2')format("woff");}.ff4_c00246{font-family:ff4_c00246;line-height:1.101562;font-style:normal;font-weight:normal;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_e3876f634823e091668c64e0.woff2')format("woff");}.ff5_c00246{font-family:ff5_c00246;line-height:0.889648;font-style: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);}
.v2_c00246{vertical-align:-23.086200px;}
.v3_c00246{vertical-align:-15.400200px;}
.v0_c00246{vertical-align:0.000000px;}
.v1_c00246{vertical-align:23.086200px;}
.ls3_c00246{letter-spacing:-0.014400px;}
.ls5_c00246{letter-spacing:-0.009600px;}
.ls4_c00246{letter-spacing:-0.007200px;}
.ls2_c00246{letter-spacing:0.000000px;}
.ls6_c00246{letter-spacing:0.008000px;}
.ls1_c00246{letter-spacing:0.012000px;}
.ls0_c00246{letter-spacing:2.498400px;}
.sc__c00246{text-shadow:none;}
.sc0_c00246{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00246{-webkit-text-stroke:0px transparent;}
.sc0_c00246{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00246{word-spacing:-19.800000px;}
.ws0_c00246{word-spacing:-13.190400px;}
.ws2_c00246{word-spacing:-11.128001px;}
.ws3_c00246{word-spacing:0.000000px;}
._5_c00246{margin-left:-5.745600px;}
._7_c00246{margin-left:-4.168800px;}
._0_c00246{margin-left:-2.577600px;}
._1_c00246{margin-left:-1.072800px;}
._13_c00246{width:1.015200px;}
._3_c00246{width:2.030400px;}
._2_c00246{width:3.117600px;}
._4_c00246{width:4.161600px;}
._6_c00246{width:5.450400px;}
._10_c00246{width:7.178400px;}
._f_c00246{width:9.115200px;}
._11_c00246{width:10.360800px;}
._12_c00246{width:11.476800px;}
._e_c00246{width:12.895200px;}
._15_c00246{width:13.906200px;}
._16_c00246{width:16.012200px;}
._14_c00246{width:17.546400px;}
._c_c00246{width:21.441600px;}
._a_c00246{width:22.579200px;}
._b_c00246{width:24.588000px;}
._d_c00246{width:25.632000px;}
._9_c00246{width:27.158400px;}
._8_c00246{width:28.785600px;}
._19_c00246{width:32.256000px;}
._18_c00246{width:33.328800px;}
._1a_c00246{width:34.833600px;}
._17_c00246{width:36.352800px;}
._1c_c00246{width:39.686400px;}
._1b_c00246{width:41.839200px;}
.fc0_c00246{color:rgb(0,0,0);}
.fs3_c00246{font-size:40.000002px;}
.fs1_c00246{font-size:48.000000px;}
.fs2_c00246{font-size:60.000000px;}
.fs0_c00246{font-size:72.000000px;}
.y0_c00246{bottom:0.000000px;}
.y15_c00246{bottom:12.000000px;}
.y17_c00246{bottom:17.235000px;}
.y14_c00246{bottom:39.000000px;}
.y19_c00246{bottom:66.000000px;}
.y1c_c00246{bottom:67.500000px;}
.y20_c00246{bottom:135.850050px;}
.y1f_c00246{bottom:180.850050px;}
.y1e_c00246{bottom:225.850050px;}
.y1d_c00246{bottom:270.850050px;}
.y18_c00246{bottom:342.765000px;}
.y16_c00246{bottom:434.265000px;}
.y13_c00246{bottom:477.000000px;}
.y12_c00246{bottom:573.000000px;}
.y11_c00246{bottom:621.000000px;}
.y10_c00246{bottom:648.000000px;}
.yf_c00246{bottom:675.000000px;}
.ye_c00246{bottom:702.000000px;}
.yd_c00246{bottom:729.000000px;}
.yc_c00246{bottom:777.000000px;}
.yb_c00246{bottom:804.000000px;}
.ya_c00246{bottom:831.000000px;}
.y9_c00246{bottom:858.000000px;}
.y8_c00246{bottom:885.000000px;}
.y7_c00246{bottom:933.000000px;}
.y6_c00246{bottom:960.000000px;}
.y5_c00246{bottom:987.000000px;}
.y4_c00246{bottom:1014.000000px;}
.y3_c00246{bottom:1041.000000px;}
.y2_c00246{bottom:1068.000000px;}
.y1_c00246{bottom:1095.000000px;}
.y1b_c00246{bottom:1176.000000px;}
.y1a_c00246{bottom:1194.000000px;}
.h7_c00246{height:40.674019px;}
.h4_c00246{height:42.734985px;}
.h6_c00246{height:56.074219px;}
.h3_c00246{height:64.500000px;}
.h1_c00246{height:67.746094px;}
.h2_c00246{height:68.250262px;}
.h5_c00246{height:91.500030px;}
.h0_c00246{height:1263.000000px;}
.w3_c00246{width:187.594650px;}
.w2_c00246{width:192.664950px;}
.w1_c00246{width:296.240400px;}
.w0_c00246{width:892.500000px;}
.x0_c00246{left:0.000000px;}
.x3_c00246{left:7.500000px;}
.x1_c00246{left:150.519750px;}
.x5_c00246{left:195.862500px;}
.x2_c00246{left:342.664950px;}
.x6_c00246{left:627.778950px;}
.x4_c00246{left:638.905350px;}
.x7_c00246{left:801.992850px;}
@media print{
.v2_c00246{vertical-align:-20.521067pt;}
.v3_c00246{vertical-align:-13.689067pt;}
.v0_c00246{vertical-align:0.000000pt;}
.v1_c00246{vertical-align:20.521067pt;}
.ls3_c00246{letter-spacing:-0.012800pt;}
.ls5_c00246{letter-spacing:-0.008533pt;}
.ls4_c00246{letter-spacing:-0.006400pt;}
.ls2_c00246{letter-spacing:0.000000pt;}
.ls6_c00246{letter-spacing:0.007111pt;}
.ls1_c00246{letter-spacing:0.010667pt;}
.ls0_c00246{letter-spacing:2.220800pt;}
.ws1_c00246{word-spacing:-17.600000pt;}
.ws0_c00246{word-spacing:-11.724800pt;}
.ws2_c00246{word-spacing:-9.891556pt;}
.ws3_c00246{word-spacing:0.000000pt;}
._5_c00246{margin-left:-5.107200pt;}
._7_c00246{margin-left:-3.705600pt;}
._0_c00246{margin-left:-2.291200pt;}
._1_c00246{margin-left:-0.953600pt;}
._13_c00246{width:0.902400pt;}
._3_c00246{width:1.804800pt;}
._2_c00246{width:2.771200pt;}
._4_c00246{width:3.699200pt;}
._6_c00246{width:4.844800pt;}
._10_c00246{width:6.380800pt;}
._f_c00246{width:8.102400pt;}
._11_c00246{width:9.209600pt;}
._12_c00246{width:10.201600pt;}
._e_c00246{width:11.462400pt;}
._15_c00246{width:12.361067pt;}
._16_c00246{width:14.233067pt;}
._14_c00246{width:15.596800pt;}
._c_c00246{width:19.059200pt;}
._a_c00246{width:20.070400pt;}
._b_c00246{width:21.856000pt;}
._d_c00246{width:22.784000pt;}
._9_c00246{width:24.140800pt;}
._8_c00246{width:25.587200pt;}
._19_c00246{width:28.672000pt;}
._18_c00246{width:29.625600pt;}
._1a_c00246{width:30.963200pt;}
._17_c00246{width:32.313600pt;}
._1c_c00246{width:35.276800pt;}
._1b_c00246{width:37.190400pt;}
.fs3_c00246{font-size:35.555557pt;}
.fs1_c00246{font-size:42.666667pt;}
.fs2_c00246{font-size:53.333333pt;}
.fs0_c00246{font-size:64.000000pt;}
.y0_c00246{bottom:0.000000pt;}
.y15_c00246{bottom:10.666667pt;}
.y17_c00246{bottom:15.320000pt;}
.y14_c00246{bottom:34.666667pt;}
.y19_c00246{bottom:58.666667pt;}
.y1c_c00246{bottom:60.000000pt;}
.y20_c00246{bottom:120.755600pt;}
.y1f_c00246{bottom:160.755600pt;}
.y1e_c00246{bottom:200.755600pt;}
.y1d_c00246{bottom:240.755600pt;}
.y18_c00246{bottom:304.680000pt;}
.y16_c00246{bottom:386.013333pt;}
.y13_c00246{bottom:424.000000pt;}
.y12_c00246{bottom:509.333333pt;}
.y11_c00246{bottom:552.000000pt;}
.y10_c00246{bottom:576.000000pt;}
.yf_c00246{bottom:600.000000pt;}
.ye_c00246{bottom:624.000000pt;}
.yd_c00246{bottom:648.000000pt;}
.yc_c00246{bottom:690.666667pt;}
.yb_c00246{bottom:714.666667pt;}
.ya_c00246{bottom:738.666667pt;}
.y9_c00246{bottom:762.666667pt;}
.y8_c00246{bottom:786.666667pt;}
.y7_c00246{bottom:829.333333pt;}
.y6_c00246{bottom:853.333333pt;}
.y5_c00246{bottom:877.333333pt;}
.y4_c00246{bottom:901.333333pt;}
.y3_c00246{bottom:925.333333pt;}
.y2_c00246{bottom:949.333333pt;}
.y1_c00246{bottom:973.333333pt;}
.y1b_c00246{bottom:1045.333333pt;}
.y1a_c00246{bottom:1061.333333pt;}
.h7_c00246{height:36.154683pt;}
.h4_c00246{height:37.986653pt;}
.h6_c00246{height:49.843750pt;}
.h3_c00246{height:57.333333pt;}
.h1_c00246{height:60.218750pt;}
.h2_c00246{height:60.666900pt;}
.h5_c00246{height:81.333360pt;}
.h0_c00246{height:1122.666667pt;}
.w3_c00246{width:166.750800pt;}
.w2_c00246{width:171.257733pt;}
.w1_c00246{width:263.324800pt;}
.w0_c00246{width:793.333333pt;}
.x0_c00246{left:0.000000pt;}
.x3_c00246{left:6.666667pt;}
.x1_c00246{left:133.795333pt;}
.x5_c00246{left:174.100000pt;}
.x2_c00246{left:304.591067pt;}
.x6_c00246{left:558.025733pt;}
.x4_c00246{left:567.915867pt;}
.x7_c00246{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6a9275d883cb55c28019702f.woff2')format("woff");}.ff1_c00247{font-family:ff1_c00247;line-height:0.934082;font-style:normal;font-weight:normal;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_d5191b5c5d08bbecd7831667.woff2')format("woff");}.ff2_c00247{font-family:ff2_c00247;line-height:1.144531;font-style:normal;font-weight:normal;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_e1a8004d91986d6e4ad63c84.woff2')format("woff");}.ff3_c00247{font-family:ff3_c00247;line-height:0.755859;font-style:normal;font-weight:normal;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_ff404830ae299226ba57d6df.woff2')format("woff");}.ff4_c00247{font-family:ff4_c00247;line-height:1.155762;font-style:normal;font-weight:normal;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_15c4f1752710916ac1db7757.woff2')format("woff");}.ff5_c00247{font-family:ff5_c00247;line-height:1.100586;font-style:normal;font-weight: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_c00247;src:url('chunks/assets/font_8e9d26d55a092c8391ca73ab.woff2')format("woff");}.ff6_c00247{font-family:ff6_c00247;line-height:0.889648;font-style: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);}
.v2_c00247{vertical-align:-15.400200px;}
.v0_c00247{vertical-align:0.000000px;}
.v1_c00247{vertical-align:23.086200px;}
.ls1_c00247{letter-spacing:-0.009600px;}
.ls0_c00247{letter-spacing:0.000000px;}
.ls3_c00247{letter-spacing:0.008000px;}
.ls2_c00247{letter-spacing:0.012000px;}
.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:-13.190400px;}
.ws1_c00247{word-spacing:-11.128001px;}
.ws2_c00247{word-spacing:0.000000px;}
._8_c00247{margin-left:-3.823200px;}
._5_c00247{margin-left:-2.476800px;}
._7_c00247{margin-left:-1.252800px;}
._e_c00247{width:1.065600px;}
._0_c00247{width:2.109600px;}
._4_c00247{width:3.196800px;}
._2_c00247{width:4.629600px;}
._f_c00247{width:5.724000px;}
._b_c00247{width:7.164000px;}
._c_c00247{width:8.647200px;}
._d_c00247{width:9.648000px;}
._10_c00247{width:10.684800px;}
._11_c00247{width:13.298400px;}
._3_c00247{width:15.883200px;}
._1_c00247{width:17.906400px;}
._a_c00247{width:21.376800px;}
._6_c00247{width:22.514400px;}
._9_c00247{width:24.134400px;}
.fc0_c00247{color:rgb(0,0,0);}
.fs4_c00247{font-size:40.000002px;}
.fs1_c00247{font-size:48.000000px;}
.fs2_c00247{font-size:54.000000px;}
.fs3_c00247{font-size:60.000000px;}
.fs0_c00247{font-size:72.000000px;}
.y0_c00247{bottom:0.000000px;}
.yf_c00247{bottom:10.500000px;}
.ye_c00247{bottom:28.500000px;}
.y11_c00247{bottom:67.500000px;}
.y12_c00247{bottom:135.850050px;}
.yd_c00247{bottom:172.500000px;}
.yc_c00247{bottom:756.000000px;}
.yb_c00247{bottom:783.000000px;}
.ya_c00247{bottom:831.000000px;}
.y9_c00247{bottom:858.000000px;}
.y8_c00247{bottom:885.000000px;}
.y7_c00247{bottom:933.000000px;}
.y6_c00247{bottom:960.000000px;}
.y5_c00247{bottom:987.000000px;}
.y4_c00247{bottom:1014.000000px;}
.y3_c00247{bottom:1041.000000px;}
.y2_c00247{bottom:1068.000000px;}
.y1_c00247{bottom:1095.000000px;}
.y10_c00247{bottom:1194.000000px;}
.h7_c00247{height:37.568550px;}
.h6_c00247{height:44.208984px;}
.h4_c00247{height:50.756836px;}
.h1_c00247{height:51.257812px;}
.h5_c00247{height:56.074219px;}
.h2_c00247{height:57.258075px;}
.h3_c00247{height:552.000000px;}
.h0_c00247{height:1263.000000px;}
.w1_c00247{width:676.500000px;}
.w0_c00247{width:892.500000px;}
.x0_c00247{left:0.000000px;}
.x2_c00247{left:26.761230px;}
.x3_c00247{left:42.097050px;}
.x1_c00247{left:65.480310px;}
@media print{
.v2_c00247{vertical-align:-13.689067pt;}
.v0_c00247{vertical-align:0.000000pt;}
.v1_c00247{vertical-align:20.521067pt;}
.ls1_c00247{letter-spacing:-0.008533pt;}
.ls0_c00247{letter-spacing:0.000000pt;}
.ls3_c00247{letter-spacing:0.007111pt;}
.ls2_c00247{letter-spacing:0.010667pt;}
.ws0_c00247{word-spacing:-11.724800pt;}
.ws1_c00247{word-spacing:-9.891556pt;}
.ws2_c00247{word-spacing:0.000000pt;}
._8_c00247{margin-left:-3.398400pt;}
._5_c00247{margin-left:-2.201600pt;}
._7_c00247{margin-left:-1.113600pt;}
._e_c00247{width:0.947200pt;}
._0_c00247{width:1.875200pt;}
._4_c00247{width:2.841600pt;}
._2_c00247{width:4.115200pt;}
._f_c00247{width:5.088000pt;}
._b_c00247{width:6.368000pt;}
._c_c00247{width:7.686400pt;}
._d_c00247{width:8.576000pt;}
._10_c00247{width:9.497600pt;}
._11_c00247{width:11.820800pt;}
._3_c00247{width:14.118400pt;}
._1_c00247{width:15.916800pt;}
._a_c00247{width:19.001600pt;}
._6_c00247{width:20.012800pt;}
._9_c00247{width:21.452800pt;}
.fs4_c00247{font-size:35.555557pt;}
.fs1_c00247{font-size:42.666667pt;}
.fs2_c00247{font-size:48.000000pt;}
.fs3_c00247{font-size:53.333333pt;}
.fs0_c00247{font-size:64.000000pt;}
.y0_c00247{bottom:0.000000pt;}
.yf_c00247{bottom:9.333333pt;}
.ye_c00247{bottom:25.333333pt;}
.y11_c00247{bottom:60.000000pt;}
.y12_c00247{bottom:120.755600pt;}
.yd_c00247{bottom:153.333333pt;}
.yc_c00247{bottom:672.000000pt;}
.yb_c00247{bottom:696.000000pt;}
.ya_c00247{bottom:738.666667pt;}
.y9_c00247{bottom:762.666667pt;}
.y8_c00247{bottom:786.666667pt;}
.y7_c00247{bottom:829.333333pt;}
.y6_c00247{bottom:853.333333pt;}
.y5_c00247{bottom:877.333333pt;}
.y4_c00247{bottom:901.333333pt;}
.y3_c00247{bottom:925.333333pt;}
.y2_c00247{bottom:949.333333pt;}
.y1_c00247{bottom:973.333333pt;}
.y10_c00247{bottom:1061.333333pt;}
.h7_c00247{height:33.394267pt;}
.h6_c00247{height:39.296875pt;}
.h4_c00247{height:45.117188pt;}
.h1_c00247{height:45.562500pt;}
.h5_c00247{height:49.843750pt;}
.h2_c00247{height:50.896067pt;}
.h3_c00247{height:490.666667pt;}
.h0_c00247{height:1122.666667pt;}
.w1_c00247{width:601.333333pt;}
.w0_c00247{width:793.333333pt;}
.x0_c00247{left:0.000000pt;}
.x2_c00247{left:23.787760pt;}
.x3_c00247{left:37.419600pt;}
.x1_c00247{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_210c602668b6642b7dc4539c.woff2')format("woff");}.ff1_c00248{font-family:ff1_c00248;line-height:0.934082;font-style:normal;font-weight:normal;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_c8febdc0594729f811f266a9.woff2')format("woff");}.ff2_c00248{font-family:ff2_c00248;line-height:0.987793;font-style:normal;font-weight:normal;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_56d9246c665072d66832384f.woff2')format("woff");}.ff3_c00248{font-family:ff3_c00248;line-height:1.143066;font-style:normal;font-weight:normal;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_58dd02102d048f6b2d13b0b4.woff2')format("woff");}.ff4_c00248{font-family:ff4_c00248;line-height:1.100586;font-style:normal;font-weight:normal;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_cd4b1b94128975eafbb26af1.woff2')format("woff");}.ff5_c00248{font-family:ff5_c00248;line-height:0.889648;font-style: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);}
.v2_c00248{vertical-align:-15.400200px;}
.v0_c00248{vertical-align:0.000000px;}
.v1_c00248{vertical-align:23.086200px;}
.ls2_c00248{letter-spacing:-0.009600px;}
.ls3_c00248{letter-spacing:-0.007200px;}
.ls1_c00248{letter-spacing:0.000000px;}
.ls4_c00248{letter-spacing:0.008000px;}
.ls0_c00248{letter-spacing:0.012000px;}
.sc__c00248{text-shadow:none;}
.sc0_c00248{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00248{-webkit-text-stroke:0px transparent;}
.sc0_c00248{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00248{word-spacing:-13.190400px;}
.ws1_c00248{word-spacing:-11.128001px;}
.ws2_c00248{word-spacing:0.000000px;}
._e_c00248{margin-left:-10.584000px;}
._16_c00248{margin-left:-6.672000px;}
._4_c00248{margin-left:-5.076000px;}
._6_c00248{margin-left:-3.679200px;}
._3_c00248{margin-left:-2.628000px;}
._1_c00248{margin-left:-1.411200px;}
._c_c00248{width:1.015200px;}
._0_c00248{width:2.066400px;}
._2_c00248{width:3.592800px;}
._5_c00248{width:5.594400px;}
._b_c00248{width:7.423200px;}
._a_c00248{width:9.136800px;}
._d_c00248{width:11.505600px;}
._f_c00248{width:12.765600px;}
._11_c00248{width:14.032800px;}
._10_c00248{width:16.876800px;}
._15_c00248{width:20.923200px;}
._14_c00248{width:21.952800px;}
._13_c00248{width:24.566400px;}
._12_c00248{width:25.574400px;}
._8_c00248{width:30.175200px;}
._9_c00248{width:32.205600px;}
._7_c00248{width:35.913600px;}
.fc0_c00248{color:rgb(0,0,0);}
.fs4_c00248{font-size:40.000002px;}
.fs1_c00248{font-size:48.000000px;}
.fs2_c00248{font-size:54.000000px;}
.fs3_c00248{font-size:60.000000px;}
.fs0_c00248{font-size:72.000000px;}
.y0_c00248{bottom:0.000000px;}
.yf_c00248{bottom:12.000000px;}
.y12_c00248{bottom:67.500000px;}
.y14_c00248{bottom:135.850050px;}
.y13_c00248{bottom:180.850050px;}
.ye_c00248{bottom:225.000000px;}
.yd_c00248{bottom:729.000000px;}
.yc_c00248{bottom:756.000000px;}
.yb_c00248{bottom:783.000000px;}
.ya_c00248{bottom:831.000000px;}
.y9_c00248{bottom:858.000000px;}
.y8_c00248{bottom:885.000000px;}
.y7_c00248{bottom:933.000000px;}
.y6_c00248{bottom:960.000000px;}
.y5_c00248{bottom:987.000000px;}
.y4_c00248{bottom:1014.000000px;}
.y3_c00248{bottom:1041.000000px;}
.y2_c00248{bottom:1068.000000px;}
.y1_c00248{bottom:1095.000000px;}
.y11_c00248{bottom:1176.000000px;}
.y10_c00248{bottom:1194.000000px;}
.h6_c00248{height:37.568550px;}
.h7_c00248{height:40.674019px;}
.h4_c00248{height:42.292969px;}
.h1_c00248{height:51.257812px;}
.h5_c00248{height:56.074219px;}
.h2_c00248{height:57.258075px;}
.h3_c00248{height:472.500000px;}
.h0_c00248{height:1263.000000px;}
.w1_c00248{width:676.500000px;}
.w0_c00248{width:892.500000px;}
.x0_c00248{left:0.000000px;}
.x2_c00248{left:18.828000px;}
.x1_c00248{left:150.519750px;}
.x3_c00248{left:195.862500px;}
.x4_c00248{left:627.778950px;}
.x5_c00248{left:801.992850px;}
@media print{
.v2_c00248{vertical-align:-13.689067pt;}
.v0_c00248{vertical-align:0.000000pt;}
.v1_c00248{vertical-align:20.521067pt;}
.ls2_c00248{letter-spacing:-0.008533pt;}
.ls3_c00248{letter-spacing:-0.006400pt;}
.ls1_c00248{letter-spacing:0.000000pt;}
.ls4_c00248{letter-spacing:0.007111pt;}
.ls0_c00248{letter-spacing:0.010667pt;}
.ws0_c00248{word-spacing:-11.724800pt;}
.ws1_c00248{word-spacing:-9.891556pt;}
.ws2_c00248{word-spacing:0.000000pt;}
._e_c00248{margin-left:-9.408000pt;}
._16_c00248{margin-left:-5.930667pt;}
._4_c00248{margin-left:-4.512000pt;}
._6_c00248{margin-left:-3.270400pt;}
._3_c00248{margin-left:-2.336000pt;}
._1_c00248{margin-left:-1.254400pt;}
._c_c00248{width:0.902400pt;}
._0_c00248{width:1.836800pt;}
._2_c00248{width:3.193600pt;}
._5_c00248{width:4.972800pt;}
._b_c00248{width:6.598400pt;}
._a_c00248{width:8.121600pt;}
._d_c00248{width:10.227200pt;}
._f_c00248{width:11.347200pt;}
._11_c00248{width:12.473600pt;}
._10_c00248{width:15.001600pt;}
._15_c00248{width:18.598400pt;}
._14_c00248{width:19.513600pt;}
._13_c00248{width:21.836800pt;}
._12_c00248{width:22.732800pt;}
._8_c00248{width:26.822400pt;}
._9_c00248{width:28.627200pt;}
._7_c00248{width:31.923200pt;}
.fs4_c00248{font-size:35.555557pt;}
.fs1_c00248{font-size:42.666667pt;}
.fs2_c00248{font-size:48.000000pt;}
.fs3_c00248{font-size:53.333333pt;}
.fs0_c00248{font-size:64.000000pt;}
.y0_c00248{bottom:0.000000pt;}
.yf_c00248{bottom:10.666667pt;}
.y12_c00248{bottom:60.000000pt;}
.y14_c00248{bottom:120.755600pt;}
.y13_c00248{bottom:160.755600pt;}
.ye_c00248{bottom:200.000000pt;}
.yd_c00248{bottom:648.000000pt;}
.yc_c00248{bottom:672.000000pt;}
.yb_c00248{bottom:696.000000pt;}
.ya_c00248{bottom:738.666667pt;}
.y9_c00248{bottom:762.666667pt;}
.y8_c00248{bottom:786.666667pt;}
.y7_c00248{bottom:829.333333pt;}
.y6_c00248{bottom:853.333333pt;}
.y5_c00248{bottom:877.333333pt;}
.y4_c00248{bottom:901.333333pt;}
.y3_c00248{bottom:925.333333pt;}
.y2_c00248{bottom:949.333333pt;}
.y1_c00248{bottom:973.333333pt;}
.y11_c00248{bottom:1045.333333pt;}
.y10_c00248{bottom:1061.333333pt;}
.h6_c00248{height:33.394267pt;}
.h7_c00248{height:36.154683pt;}
.h4_c00248{height:37.593750pt;}
.h1_c00248{height:45.562500pt;}
.h5_c00248{height:49.843750pt;}
.h2_c00248{height:50.896067pt;}
.h3_c00248{height:420.000000pt;}
.h0_c00248{height:1122.666667pt;}
.w1_c00248{width:601.333333pt;}
.w0_c00248{width:793.333333pt;}
.x0_c00248{left:0.000000pt;}
.x2_c00248{left:16.736000pt;}
.x1_c00248{left:133.795333pt;}
.x3_c00248{left:174.100000pt;}
.x4_c00248{left:558.025733pt;}
.x5_c00248{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
.sc__c00249{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00249{-webkit-text-stroke:0px transparent;}
}
.y0_c00249{bottom:0.000000px;}
.h0_c00249{height:1262.835000px;}
.h1_c00249{height:1263.000000px;}
.w0_c00249{width:892.935000px;}
.w1_c00249{width:893.250000px;}
.x0_c00249{left:0.000000px;}
@media print{
.y0_c00249{bottom:0.000000pt;}
.h0_c00249{height:1122.520000pt;}
.h1_c00249{height:1122.666667pt;}
.w0_c00249{width:793.720000pt;}
.w1_c00249{width:794.000000pt;}
.x0_c00249{left:0.000000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ea17cbe7288168486f400460.woff2')format("woff");}.ff1_c00250{font-family:ff1_c00250;line-height:0.717285;font-style:normal;font-weight:normal;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_f6d34cdd2d6aa197ad8323f0.woff2')format("woff");}.ff2_c00250{font-family:ff2_c00250;line-height:0.983887;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00250{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00250{vertical-align:0.000000px;}
.ls0_c00250{letter-spacing:-0.016800px;}
.ls1_c00250{letter-spacing:0.000000px;}
.sc__c00250{text-shadow:none;}
.sc0_c00250{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00250{-webkit-text-stroke:0px transparent;}
.sc0_c00250{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00250{word-spacing:0.000000px;}
._0_c00250{margin-left:-1.003200px;}
.fc2_c00250{color:transparent;}
.fc1_c00250{color:rgb(255,255,255);}
.fc0_c00250{color:rgb(6,6,6);}
.fs0_c00250{font-size:84.000000px;}
.fs2_c00250{font-size:132.000000px;}
.fs1_c00250{font-size:144.000000px;}
.y0_c00250{bottom:0.000000px;}
.y4_c00250{bottom:68.835000px;}
.y3_c00250{bottom:110.835000px;}
.y2_c00250{bottom:188.835000px;}
.y1_c00250{bottom:919.500000px;}
.h4_c00250{height:114.210938px;}
.h3_c00250{height:124.593750px;}
.h2_c00250{height:261.000000px;}
.h0_c00250{height:1262.835000px;}
.h1_c00250{height:1263.000000px;}
.w2_c00250{width:586.500000px;}
.w0_c00250{width:892.935000px;}
.w1_c00250{width:893.250000px;}
.x0_c00250{left:0.000000px;}
.x2_c00250{left:16.500000px;}
.x1_c00250{left:280.500000px;}
@media print{
.v0_c00250{vertical-align:0.000000pt;}
.ls0_c00250{letter-spacing:-0.014933pt;}
.ls1_c00250{letter-spacing:0.000000pt;}
.ws0_c00250{word-spacing:0.000000pt;}
._0_c00250{margin-left:-0.891733pt;}
.fs0_c00250{font-size:74.666667pt;}
.fs2_c00250{font-size:117.333333pt;}
.fs1_c00250{font-size:128.000000pt;}
.y0_c00250{bottom:0.000000pt;}
.y4_c00250{bottom:61.186667pt;}
.y3_c00250{bottom:98.520000pt;}
.y2_c00250{bottom:167.853333pt;}
.y1_c00250{bottom:817.333333pt;}
.h4_c00250{height:101.520833pt;}
.h3_c00250{height:110.750000pt;}
.h2_c00250{height:232.000000pt;}
.h0_c00250{height:1122.520000pt;}
.h1_c00250{height:1122.666667pt;}
.w2_c00250{width:521.333333pt;}
.w0_c00250{width:793.720000pt;}
.w1_c00250{width:794.000000pt;}
.x0_c00250{left:0.000000pt;}
.x2_c00250{left:14.666667pt;}
.x1_c00250{left:249.333333pt;}
}





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





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_6777ccea591f3615d3bbf9b4.woff2')format("woff");}.ff1_c00252{font-family:ff1_c00252;line-height:1.124023;font-style:normal;font-weight:normal;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_5bd40355c56b55a20c5dd434.woff2')format("woff");}.ff2_c00252{font-family:ff2_c00252;line-height:0.932129;font-style:normal;font-weight:normal;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_76571081d2b201cadbc5f8b8.woff2')format("woff");}.ff3_c00252{font-family:ff3_c00252;line-height:1.163086;font-style:normal;font-weight:normal;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_877229c20a362dfa42849c5d.woff2')format("woff");}.ff4_c00252{font-family:ff4_c00252;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00252;src:url('chunks/assets/font_c5ed72dcb1e80a26e7a2ff70.woff2')format("woff");}.ff5_c00252{font-family:ff5_c00252;line-height:1.115723;font-style:normal;font-weight: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_c00252;src:url('chunks/assets/font_2a2859b08b79e3be3e059898.woff2')format("woff");}.ff6_c00252{font-family:ff6_c00252;line-height:0.890137;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00252{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00252{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00252{vertical-align:-23.086200px;}
.v3_c00252{vertical-align:-15.000000px;}
.v0_c00252{vertical-align:0.000000px;}
.v1_c00252{vertical-align:23.086200px;}
.ls3_c00252{letter-spacing:0.000000px;}
.ls0_c00252{letter-spacing:0.012000px;}
.ls2_c00252{letter-spacing:3.999999px;}
.ls1_c00252{letter-spacing:15.552000px;}
.sc__c00252{text-shadow:none;}
.sc0_c00252{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00252{-webkit-text-stroke:0px transparent;}
.sc0_c00252{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00252{word-spacing:0.000000px;}
._7_c00252{margin-left:-9.280800px;}
._1b_c00252{margin-left:-5.982000px;}
._12_c00252{margin-left:-4.492800px;}
._0_c00252{margin-left:-3.405600px;}
._c_c00252{margin-left:-2.296800px;}
._3_c00252{margin-left:-1.209600px;}
._8_c00252{width:1.101600px;}
._5_c00252{width:2.210400px;}
._2_c00252{width:3.916800px;}
._6_c00252{width:5.587200px;}
._4_c00252{width:7.106400px;}
._15_c00252{width:8.892000px;}
._1_c00252{width:10.288800px;}
._10_c00252{width:11.822400px;}
._f_c00252{width:13.010400px;}
._11_c00252{width:14.068800px;}
._e_c00252{width:15.249600px;}
._d_c00252{width:16.336800px;}
._13_c00252{width:17.546400px;}
._14_c00252{width:18.799200px;}
._1d_c00252{width:20.242800px;}
._1c_c00252{width:21.345600px;}
._b_c00252{width:26.611200px;}
._a_c00252{width:30.520800px;}
._17_c00252{width:32.184000px;}
._9_c00252{width:33.876000px;}
._19_c00252{width:35.359200px;}
._1a_c00252{width:37.029600px;}
._16_c00252{width:38.426400px;}
._18_c00252{width:40.161600px;}
.fc0_c00252{color:rgb(0,0,0);}
.fs4_c00252{font-size:40.000002px;}
.fs2_c00252{font-size:48.000000px;}
.fs3_c00252{font-size:60.000000px;}
.fs1_c00252{font-size:72.000000px;}
.fs0_c00252{font-size:120.000000px;}
.y0_c00252{bottom:0.000000px;}
.y16_c00252{bottom:67.335000px;}
.y1c_c00252{bottom:131.835000px;}
.y1b_c00252{bottom:151.335000px;}
.y1a_c00252{bottom:170.835000px;}
.y19_c00252{bottom:194.085000px;}
.y18_c00252{bottom:235.335000px;}
.y17_c00252{bottom:258.585000px;}
.y14_c00252{bottom:337.335000px;}
.y13_c00252{bottom:364.335000px;}
.y12_c00252{bottom:412.335000px;}
.y11_c00252{bottom:439.335000px;}
.y10_c00252{bottom:466.335000px;}
.yf_c00252{bottom:493.335000px;}
.ye_c00252{bottom:520.335000px;}
.yd_c00252{bottom:547.335000px;}
.yc_c00252{bottom:574.335000px;}
.yb_c00252{bottom:622.335000px;}
.ya_c00252{bottom:649.335000px;}
.y9_c00252{bottom:676.335000px;}
.y8_c00252{bottom:703.335000px;}
.y7_c00252{bottom:730.335000px;}
.y6_c00252{bottom:778.335000px;}
.y5_c00252{bottom:805.335000px;}
.y4_c00252{bottom:832.335000px;}
.y3_c00252{bottom:859.335000px;}
.y2_c00252{bottom:886.335000px;}
.y1_c00252{bottom:1036.335000px;}
.y15_c00252{bottom:1193.835000px;}
.h8_c00252{height:38.818359px;}
.h4_c00252{height:51.257812px;}
.h9_c00252{height:53.818359px;}
.h7_c00252{height:56.074219px;}
.h6_c00252{height:67.746094px;}
.h5_c00252{height:68.250262px;}
.h3_c00252{height:113.671875px;}
.h2_c00252{height:1261.500000px;}
.h0_c00252{height:1262.835000px;}
.h1_c00252{height:1263.000000px;}
.w2_c00252{width:892.500000px;}
.w0_c00252{width:892.935000px;}
.w1_c00252{width:893.250000px;}
.x0_c00252{left:0.000000px;}
.x1_c00252{left:150.519750px;}
.x2_c00252{left:417.217800px;}
.x3_c00252{left:802.427700px;}
@media print{
.v2_c00252{vertical-align:-20.521067pt;}
.v3_c00252{vertical-align:-13.333333pt;}
.v0_c00252{vertical-align:0.000000pt;}
.v1_c00252{vertical-align:20.521067pt;}
.ls3_c00252{letter-spacing:0.000000pt;}
.ls0_c00252{letter-spacing:0.010667pt;}
.ls2_c00252{letter-spacing:3.555555pt;}
.ls1_c00252{letter-spacing:13.824000pt;}
.ws0_c00252{word-spacing:0.000000pt;}
._7_c00252{margin-left:-8.249600pt;}
._1b_c00252{margin-left:-5.317333pt;}
._12_c00252{margin-left:-3.993600pt;}
._0_c00252{margin-left:-3.027200pt;}
._c_c00252{margin-left:-2.041600pt;}
._3_c00252{margin-left:-1.075200pt;}
._8_c00252{width:0.979200pt;}
._5_c00252{width:1.964800pt;}
._2_c00252{width:3.481600pt;}
._6_c00252{width:4.966400pt;}
._4_c00252{width:6.316800pt;}
._15_c00252{width:7.904000pt;}
._1_c00252{width:9.145600pt;}
._10_c00252{width:10.508800pt;}
._f_c00252{width:11.564800pt;}
._11_c00252{width:12.505600pt;}
._e_c00252{width:13.555200pt;}
._d_c00252{width:14.521600pt;}
._13_c00252{width:15.596800pt;}
._14_c00252{width:16.710400pt;}
._1d_c00252{width:17.993600pt;}
._1c_c00252{width:18.973867pt;}
._b_c00252{width:23.654400pt;}
._a_c00252{width:27.129600pt;}
._17_c00252{width:28.608000pt;}
._9_c00252{width:30.112000pt;}
._19_c00252{width:31.430400pt;}
._1a_c00252{width:32.915200pt;}
._16_c00252{width:34.156800pt;}
._18_c00252{width:35.699200pt;}
.fs4_c00252{font-size:35.555557pt;}
.fs2_c00252{font-size:42.666667pt;}
.fs3_c00252{font-size:53.333333pt;}
.fs1_c00252{font-size:64.000000pt;}
.fs0_c00252{font-size:106.666667pt;}
.y0_c00252{bottom:0.000000pt;}
.y16_c00252{bottom:59.853333pt;}
.y1c_c00252{bottom:117.186667pt;}
.y1b_c00252{bottom:134.520000pt;}
.y1a_c00252{bottom:151.853333pt;}
.y19_c00252{bottom:172.520000pt;}
.y18_c00252{bottom:209.186667pt;}
.y17_c00252{bottom:229.853333pt;}
.y14_c00252{bottom:299.853333pt;}
.y13_c00252{bottom:323.853333pt;}
.y12_c00252{bottom:366.520000pt;}
.y11_c00252{bottom:390.520000pt;}
.y10_c00252{bottom:414.520000pt;}
.yf_c00252{bottom:438.520000pt;}
.ye_c00252{bottom:462.520000pt;}
.yd_c00252{bottom:486.520000pt;}
.yc_c00252{bottom:510.520000pt;}
.yb_c00252{bottom:553.186667pt;}
.ya_c00252{bottom:577.186667pt;}
.y9_c00252{bottom:601.186667pt;}
.y8_c00252{bottom:625.186667pt;}
.y7_c00252{bottom:649.186667pt;}
.y6_c00252{bottom:691.853333pt;}
.y5_c00252{bottom:715.853333pt;}
.y4_c00252{bottom:739.853333pt;}
.y3_c00252{bottom:763.853333pt;}
.y2_c00252{bottom:787.853333pt;}
.y1_c00252{bottom:921.186667pt;}
.y15_c00252{bottom:1061.186667pt;}
.h8_c00252{height:34.505208pt;}
.h4_c00252{height:45.562500pt;}
.h9_c00252{height:47.838542pt;}
.h7_c00252{height:49.843750pt;}
.h6_c00252{height:60.218750pt;}
.h5_c00252{height:60.666900pt;}
.h3_c00252{height:101.041667pt;}
.h2_c00252{height:1121.333333pt;}
.h0_c00252{height:1122.520000pt;}
.h1_c00252{height:1122.666667pt;}
.w2_c00252{width:793.333333pt;}
.w0_c00252{width:793.720000pt;}
.w1_c00252{width:794.000000pt;}
.x0_c00252{left:0.000000pt;}
.x1_c00252{left:133.795333pt;}
.x2_c00252{left:370.860267pt;}
.x3_c00252{left:713.269067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d5120d96e3ca22e58eca70b6.woff2')format("woff");}.ff1_c00253{font-family:ff1_c00253;line-height:1.163086;font-style:normal;font-weight:normal;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_99c6a24e48c60c55d2614fc3.woff2')format("woff");}.ff2_c00253{font-family:ff2_c00253;line-height:0.987793;font-style:normal;font-weight:normal;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_2f9ac00c7dd5646579ce34c2.woff2')format("woff");}.ff3_c00253{font-family:ff3_c00253;line-height:0.755859;font-style:normal;font-weight:normal;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_2ab9edf4c16e425dd9ff803c.woff2')format("woff");}.ff4_c00253{font-family:ff4_c00253;line-height:1.155762;font-style: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;}
.ls0_c00253{letter-spacing:0.000000px;}
.ls1_c00253{letter-spacing:0.010800px;}
.ls2_c00253{letter-spacing:0.012000px;}
.sc__c00253{text-shadow:none;}
.sc0_c00253{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00253{-webkit-text-stroke:0px transparent;}
.sc0_c00253{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00253{word-spacing:-17.064000px;}
.ws1_c00253{word-spacing:0.000000px;}
._18_c00253{margin-left:-9.597600px;}
._7_c00253{margin-left:-5.112000px;}
._2_c00253{margin-left:-3.506400px;}
._19_c00253{margin-left:-2.440800px;}
._0_c00253{margin-left:-1.303200px;}
._4_c00253{width:1.476000px;}
._b_c00253{width:2.786400px;}
._6_c00253{width:4.104000px;}
._11_c00253{width:5.119200px;}
._c_c00253{width:6.220800px;}
._a_c00253{width:8.121600px;}
._f_c00253{width:10.742400px;}
._d_c00253{width:12.844800px;}
._e_c00253{width:15.019200px;}
._10_c00253{width:16.747200px;}
._12_c00253{width:18.453600px;}
._13_c00253{width:21.340800px;}
._5_c00253{width:22.449600px;}
._9_c00253{width:23.565600px;}
._1_c00253{width:25.120800px;}
._3_c00253{width:27.115200px;}
._8_c00253{width:28.418400px;}
._16_c00253{width:30.513600px;}
._17_c00253{width:31.953600px;}
._15_c00253{width:36.532800px;}
._14_c00253{width:37.785600px;}
.fc1_c00253{color:rgb(0,0,153);}
.fc0_c00253{color:rgb(0,0,0);}
.fs1_c00253{font-size:54.000000px;}
.fs2_c00253{font-size:60.000000px;}
.fs0_c00253{font-size:72.000000px;}
.y0_c00253{bottom:0.000000px;}
.ya_c00253{bottom:10.500000px;}
.y9_c00253{bottom:28.500000px;}
.y14_c00253{bottom:67.335000px;}
.y12_c00253{bottom:155.835000px;}
.y11_c00253{bottom:182.835000px;}
.y10_c00253{bottom:209.835000px;}
.yf_c00253{bottom:236.835000px;}
.ye_c00253{bottom:284.835000px;}
.yd_c00253{bottom:311.835000px;}
.yc_c00253{bottom:338.835000px;}
.yb_c00253{bottom:365.835000px;}
.y8_c00253{bottom:410.835000px;}
.y7_c00253{bottom:911.835000px;}
.y6_c00253{bottom:938.835000px;}
.y5_c00253{bottom:965.835000px;}
.y4_c00253{bottom:992.835000px;}
.y3_c00253{bottom:1019.835000px;}
.y2_c00253{bottom:1067.835000px;}
.y1_c00253{bottom:1094.835000px;}
.y13_c00253{bottom:1193.835000px;}
.h5_c00253{height:42.292969px;}
.h7_c00253{height:44.208984px;}
.h6_c00253{height:56.074219px;}
.h3_c00253{height:67.746094px;}
.h4_c00253{height:469.500000px;}
.h2_c00253{height:1261.500000px;}
.h0_c00253{height:1262.835000px;}
.h1_c00253{height:1263.000000px;}
.w3_c00253{width:676.935000px;}
.w2_c00253{width:892.500000px;}
.w0_c00253{width:892.935000px;}
.w1_c00253{width:893.250000px;}
.x0_c00253{left:0.000000px;}
.x2_c00253{left:28.560750px;}
.x3_c00253{left:37.222365px;}
.x1_c00253{left:65.480310px;}
@media print{
.v0_c00253{vertical-align:0.000000pt;}
.ls0_c00253{letter-spacing:0.000000pt;}
.ls1_c00253{letter-spacing:0.009600pt;}
.ls2_c00253{letter-spacing:0.010667pt;}
.ws0_c00253{word-spacing:-15.168000pt;}
.ws1_c00253{word-spacing:0.000000pt;}
._18_c00253{margin-left:-8.531200pt;}
._7_c00253{margin-left:-4.544000pt;}
._2_c00253{margin-left:-3.116800pt;}
._19_c00253{margin-left:-2.169600pt;}
._0_c00253{margin-left:-1.158400pt;}
._4_c00253{width:1.312000pt;}
._b_c00253{width:2.476800pt;}
._6_c00253{width:3.648000pt;}
._11_c00253{width:4.550400pt;}
._c_c00253{width:5.529600pt;}
._a_c00253{width:7.219200pt;}
._f_c00253{width:9.548800pt;}
._d_c00253{width:11.417600pt;}
._e_c00253{width:13.350400pt;}
._10_c00253{width:14.886400pt;}
._12_c00253{width:16.403200pt;}
._13_c00253{width:18.969600pt;}
._5_c00253{width:19.955200pt;}
._9_c00253{width:20.947200pt;}
._1_c00253{width:22.329600pt;}
._3_c00253{width:24.102400pt;}
._8_c00253{width:25.260800pt;}
._16_c00253{width:27.123200pt;}
._17_c00253{width:28.403200pt;}
._15_c00253{width:32.473600pt;}
._14_c00253{width:33.587200pt;}
.fs1_c00253{font-size:48.000000pt;}
.fs2_c00253{font-size:53.333333pt;}
.fs0_c00253{font-size:64.000000pt;}
.y0_c00253{bottom:0.000000pt;}
.ya_c00253{bottom:9.333333pt;}
.y9_c00253{bottom:25.333333pt;}
.y14_c00253{bottom:59.853333pt;}
.y12_c00253{bottom:138.520000pt;}
.y11_c00253{bottom:162.520000pt;}
.y10_c00253{bottom:186.520000pt;}
.yf_c00253{bottom:210.520000pt;}
.ye_c00253{bottom:253.186667pt;}
.yd_c00253{bottom:277.186667pt;}
.yc_c00253{bottom:301.186667pt;}
.yb_c00253{bottom:325.186667pt;}
.y8_c00253{bottom:365.186667pt;}
.y7_c00253{bottom:810.520000pt;}
.y6_c00253{bottom:834.520000pt;}
.y5_c00253{bottom:858.520000pt;}
.y4_c00253{bottom:882.520000pt;}
.y3_c00253{bottom:906.520000pt;}
.y2_c00253{bottom:949.186667pt;}
.y1_c00253{bottom:973.186667pt;}
.y13_c00253{bottom:1061.186667pt;}
.h5_c00253{height:37.593750pt;}
.h7_c00253{height:39.296875pt;}
.h6_c00253{height:49.843750pt;}
.h3_c00253{height:60.218750pt;}
.h4_c00253{height:417.333333pt;}
.h2_c00253{height:1121.333333pt;}
.h0_c00253{height:1122.520000pt;}
.h1_c00253{height:1122.666667pt;}
.w3_c00253{width:601.720000pt;}
.w2_c00253{width:793.333333pt;}
.w0_c00253{width:793.720000pt;}
.w1_c00253{width:794.000000pt;}
.x0_c00253{left:0.000000pt;}
.x2_c00253{left:25.387333pt;}
.x3_c00253{left:33.086547pt;}
.x1_c00253{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_09a21cfac7815c1096cc8677.woff2')format("woff");}.ff1_c00254{font-family:ff1_c00254;line-height:0.932129;font-style:normal;font-weight:normal;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_8efb9b0f4167406ee09436b6.woff2')format("woff");}.ff2_c00254{font-family:ff2_c00254;line-height:0.987793;font-style:normal;font-weight:normal;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_1a949d8970c5436671e6645c.woff2')format("woff");}.ff3_c00254{font-family:ff3_c00254;line-height:1.155762;font-style:normal;font-weight:normal;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_0b82df7426d3bc773d03289d.woff2')format("woff");}.ff4_c00254{font-family:ff4_c00254;line-height:0.904297;font-style:normal;font-weight:normal;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_b5e4b56adccb73faeb46b295.woff2')format("woff");}.ff5_c00254{font-family:ff5_c00254;line-height:0.900391;font-style: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);}
.v2_c00254{vertical-align:-23.086200px;}
.v3_c00254{vertical-align:-15.000000px;}
.v0_c00254{vertical-align:0.000000px;}
.v4_c00254{vertical-align:15.000000px;}
.v1_c00254{vertical-align:23.086200px;}
.ls2_c00254{letter-spacing:0.000000px;}
.ls0_c00254{letter-spacing:0.012000px;}
.ls1_c00254{letter-spacing:3.999999px;}
.ls3_c00254{letter-spacing:18.156000px;}
.sc__c00254{text-shadow:none;}
.sc0_c00254{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00254{-webkit-text-stroke:0px transparent;}
.sc0_c00254{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00254{word-spacing:-13.200000px;}
.ws1_c00254{word-spacing:0.000000px;}
._d_c00254{margin-left:-18.120000px;}
._a_c00254{margin-left:-4.919400px;}
._6_c00254{margin-left:-3.758400px;}
._8_c00254{margin-left:-2.399400px;}
._2_c00254{margin-left:-1.152000px;}
._1_c00254{width:1.296000px;}
._0_c00254{width:3.168000px;}
._4_c00254{width:4.550400px;}
._5_c00254{width:6.314400px;}
._3_c00254{width:7.437600px;}
._7_c00254{width:9.100800px;}
._9_c00254{width:10.944000px;}
._b_c00254{width:12.084000px;}
._c_c00254{width:13.089000px;}
.fc0_c00254{color:rgb(0,0,0);}
.fs4_c00254{font-size:40.000002px;}
.fs1_c00254{font-size:48.000000px;}
.fs2_c00254{font-size:54.000000px;}
.fs3_c00254{font-size:60.000000px;}
.fs0_c00254{font-size:72.000000px;}
.y0_c00254{bottom:0.000000px;}
.y9_c00254{bottom:10.500000px;}
.y6_c00254{bottom:12.000000px;}
.y5_c00254{bottom:31.500000px;}
.y8_c00254{bottom:33.000000px;}
.y4_c00254{bottom:54.000000px;}
.yb_c00254{bottom:67.335000px;}
.y11_c00254{bottom:131.835000px;}
.y10_c00254{bottom:151.335000px;}
.yf_c00254{bottom:170.835000px;}
.ye_c00254{bottom:190.335000px;}
.yd_c00254{bottom:209.835000px;}
.yc_c00254{bottom:213.585000px;}
.y7_c00254{bottom:253.335000px;}
.y3_c00254{bottom:659.835000px;}
.y2_c00254{bottom:1067.835000px;}
.y1_c00254{bottom:1094.835000px;}
.ya_c00254{bottom:1193.835000px;}
.h9_c00254{height:27.421876px;}
.hb_c00254{height:40.957031px;}
.hc_c00254{height:41.132812px;}
.h6_c00254{height:42.292969px;}
.ha_c00254{height:42.304689px;}
.hd_c00254{height:42.421876px;}
.h3_c00254{height:51.257812px;}
.h8_c00254{height:56.074219px;}
.h4_c00254{height:57.258075px;}
.h5_c00254{height:376.500000px;}
.h7_c00254{height:378.000000px;}
.h2_c00254{height:1261.500000px;}
.h0_c00254{height:1262.835000px;}
.h1_c00254{height:1263.000000px;}
.w3_c00254{width:676.934850px;}
.w2_c00254{width:892.500000px;}
.w0_c00254{width:892.935000px;}
.w1_c00254{width:893.250000px;}
.x0_c00254{left:0.000000px;}
.x5_c00254{left:8.467461px;}
.x3_c00254{left:18.003960px;}
.x2_c00254{left:25.479060px;}
.x4_c00254{left:129.991995px;}
.x1_c00254{left:150.519750px;}
.x6_c00254{left:226.495950px;}
.x7_c00254{left:417.217800px;}
.x9_c00254{left:731.019750px;}
.xa_c00254{left:783.519600px;}
.xb_c00254{left:785.019600px;}
.x8_c00254{left:802.427700px;}
@media print{
.v2_c00254{vertical-align:-20.521067pt;}
.v3_c00254{vertical-align:-13.333333pt;}
.v0_c00254{vertical-align:0.000000pt;}
.v4_c00254{vertical-align:13.333333pt;}
.v1_c00254{vertical-align:20.521067pt;}
.ls2_c00254{letter-spacing:0.000000pt;}
.ls0_c00254{letter-spacing:0.010667pt;}
.ls1_c00254{letter-spacing:3.555555pt;}
.ls3_c00254{letter-spacing:16.138667pt;}
.ws0_c00254{word-spacing:-11.733333pt;}
.ws1_c00254{word-spacing:0.000000pt;}
._d_c00254{margin-left:-16.106667pt;}
._a_c00254{margin-left:-4.372800pt;}
._6_c00254{margin-left:-3.340800pt;}
._8_c00254{margin-left:-2.132800pt;}
._2_c00254{margin-left:-1.024000pt;}
._1_c00254{width:1.152000pt;}
._0_c00254{width:2.816000pt;}
._4_c00254{width:4.044800pt;}
._5_c00254{width:5.612800pt;}
._3_c00254{width:6.611200pt;}
._7_c00254{width:8.089600pt;}
._9_c00254{width:9.728000pt;}
._b_c00254{width:10.741333pt;}
._c_c00254{width:11.634667pt;}
.fs4_c00254{font-size:35.555557pt;}
.fs1_c00254{font-size:42.666667pt;}
.fs2_c00254{font-size:48.000000pt;}
.fs3_c00254{font-size:53.333333pt;}
.fs0_c00254{font-size:64.000000pt;}
.y0_c00254{bottom:0.000000pt;}
.y9_c00254{bottom:9.333333pt;}
.y6_c00254{bottom:10.666667pt;}
.y5_c00254{bottom:28.000000pt;}
.y8_c00254{bottom:29.333333pt;}
.y4_c00254{bottom:48.000000pt;}
.yb_c00254{bottom:59.853333pt;}
.y11_c00254{bottom:117.186667pt;}
.y10_c00254{bottom:134.520000pt;}
.yf_c00254{bottom:151.853333pt;}
.ye_c00254{bottom:169.186667pt;}
.yd_c00254{bottom:186.520000pt;}
.yc_c00254{bottom:189.853333pt;}
.y7_c00254{bottom:225.186667pt;}
.y3_c00254{bottom:586.520000pt;}
.y2_c00254{bottom:949.186667pt;}
.y1_c00254{bottom:973.186667pt;}
.ya_c00254{bottom:1061.186667pt;}
.h9_c00254{height:24.375001pt;}
.hb_c00254{height:36.406250pt;}
.hc_c00254{height:36.562500pt;}
.h6_c00254{height:37.593750pt;}
.ha_c00254{height:37.604168pt;}
.hd_c00254{height:37.708335pt;}
.h3_c00254{height:45.562500pt;}
.h8_c00254{height:49.843750pt;}
.h4_c00254{height:50.896067pt;}
.h5_c00254{height:334.666667pt;}
.h7_c00254{height:336.000000pt;}
.h2_c00254{height:1121.333333pt;}
.h0_c00254{height:1122.520000pt;}
.h1_c00254{height:1122.666667pt;}
.w3_c00254{width:601.719867pt;}
.w2_c00254{width:793.333333pt;}
.w0_c00254{width:793.720000pt;}
.w1_c00254{width:794.000000pt;}
.x0_c00254{left:0.000000pt;}
.x5_c00254{left:7.526632pt;}
.x3_c00254{left:16.003520pt;}
.x2_c00254{left:22.648053pt;}
.x4_c00254{left:115.548440pt;}
.x1_c00254{left:133.795333pt;}
.x6_c00254{left:201.329733pt;}
.x7_c00254{left:370.860267pt;}
.x9_c00254{left:649.795333pt;}
.xa_c00254{left:696.461867pt;}
.xb_c00254{left:697.795200pt;}
.x8_c00254{left:713.269067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_056580d894d83d5b51e4d0a7.woff2')format("woff");}.ff1_c00255{font-family:ff1_c00255;line-height:1.163086;font-style:normal;font-weight:normal;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_e5fe8316f2031df4248d3b23.woff2')format("woff");}.ff2_c00255{font-family:ff2_c00255;line-height:0.987793;font-style:normal;font-weight:normal;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_26a0924b763fd809c43ed76e.woff2')format("woff");}.ff3_c00255{font-family:ff3_c00255;line-height:0.755859;font-style:normal;font-weight:normal;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_84867a9248b97108092c785d.woff2')format("woff");}.ff4_c00255{font-family:ff4_c00255;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00255;src:url('chunks/assets/font_a90b0622b9976efc9529aaf8.woff2')format("woff");}.ff5_c00255{font-family:ff5_c00255;line-height:0.905762;font-style:normal;font-weight: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_c00255;src:url('chunks/assets/font_80449ac9086fe145a1105d20.woff2')format("woff");}.ff6_c00255{font-family:ff6_c00255;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00255{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00255{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00255{vertical-align:-23.086200px;}
.v3_c00255{vertical-align:-15.000000px;}
.v0_c00255{vertical-align:0.000000px;}
.v1_c00255{vertical-align:23.086200px;}
.ls4_c00255{letter-spacing:-0.007200px;}
.ls3_c00255{letter-spacing:0.000000px;}
.ls5_c00255{letter-spacing:0.012000px;}
.ls0_c00255{letter-spacing:0.021600px;}
.ls1_c00255{letter-spacing:3.598860px;}
.ls2_c00255{letter-spacing:3.999999px;}
.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;}
}
.ws1_c00255{word-spacing:-19.800000px;}
.ws0_c00255{word-spacing:-13.200000px;}
.ws2_c00255{word-spacing:-10.000001px;}
.ws3_c00255{word-spacing:0.000000px;}
._12_c00255{margin-left:-17.064000px;}
._11_c00255{margin-left:-9.990000px;}
._1f_c00255{margin-left:-6.538821px;}
._1a_c00255{margin-left:-5.422800px;}
._1_c00255{margin-left:-3.600000px;}
._5_c00255{margin-left:-2.491200px;}
._10_c00255{margin-left:-1.483200px;}
._d_c00255{width:1.288800px;}
._3_c00255{width:2.390400px;}
._f_c00255{width:3.945600px;}
._8_c00255{width:5.112000px;}
._13_c00255{width:6.249600px;}
._14_c00255{width:7.372800px;}
._1c_c00255{width:8.455200px;}
._1e_c00255{width:9.570000px;}
._19_c00255{width:10.815600px;}
._1d_c00255{width:12.421200px;}
._1b_c00255{width:13.518000px;}
._17_c00255{width:14.544000px;}
._7_c00255{width:17.632800px;}
._18_c00255{width:18.763200px;}
._4_c00255{width:21.391200px;}
._6_c00255{width:22.392000px;}
._0_c00255{width:23.716800px;}
._16_c00255{width:25.905600px;}
._2_c00255{width:27.338400px;}
._9_c00255{width:28.627200px;}
._15_c00255{width:29.779200px;}
._b_c00255{width:31.320000px;}
._e_c00255{width:32.464800px;}
._a_c00255{width:33.724800px;}
._c_c00255{width:36.230400px;}
.fc0_c00255{color:rgb(0,0,0);}
.fs4_c00255{font-size:40.000002px;}
.fs1_c00255{font-size:48.000000px;}
.fs2_c00255{font-size:54.000000px;}
.fs3_c00255{font-size:60.000000px;}
.fs0_c00255{font-size:72.000000px;}
.y0_c00255{bottom:0.000000px;}
.y8_c00255{bottom:10.500000px;}
.y7_c00255{bottom:13.500000px;}
.y11_c00255{bottom:67.335000px;}
.y18_c00255{bottom:135.585000px;}
.y17_c00255{bottom:176.835000px;}
.y16_c00255{bottom:196.335000px;}
.y15_c00255{bottom:215.835000px;}
.y14_c00255{bottom:235.335000px;}
.y13_c00255{bottom:254.835000px;}
.y12_c00255{bottom:278.085000px;}
.yf_c00255{bottom:406.335000px;}
.ye_c00255{bottom:433.335000px;}
.yd_c00255{bottom:481.335000px;}
.yc_c00255{bottom:508.335000px;}
.yb_c00255{bottom:535.335000px;}
.ya_c00255{bottom:562.335000px;}
.y9_c00255{bottom:589.335000px;}
.y6_c00255{bottom:634.335000px;}
.y5_c00255{bottom:986.835000px;}
.y4_c00255{bottom:1013.835000px;}
.y3_c00255{bottom:1040.835000px;}
.y2_c00255{bottom:1067.835000px;}
.y1_c00255{bottom:1094.835000px;}
.y10_c00255{bottom:1193.835000px;}
.h9_c00255{height:27.480470px;}
.ha_c00255{height:41.220703px;}
.h6_c00255{height:42.292969px;}
.h8_c00255{height:44.208984px;}
.h7_c00255{height:56.074219px;}
.h3_c00255{height:67.746094px;}
.h4_c00255{height:68.250262px;}
.h5_c00255{height:321.000000px;}
.h2_c00255{height:1261.500000px;}
.h0_c00255{height:1262.835000px;}
.h1_c00255{height:1263.000000px;}
.w3_c00255{width:676.935000px;}
.w2_c00255{width:892.500000px;}
.w0_c00255{width:892.935000px;}
.w1_c00255{width:893.250000px;}
.x0_c00255{left:0.000000px;}
.x1_c00255{left:65.480310px;}
.x3_c00255{left:66.987630px;}
.x2_c00255{left:501.072600px;}
@media print{
.v2_c00255{vertical-align:-20.521067pt;}
.v3_c00255{vertical-align:-13.333333pt;}
.v0_c00255{vertical-align:0.000000pt;}
.v1_c00255{vertical-align:20.521067pt;}
.ls4_c00255{letter-spacing:-0.006400pt;}
.ls3_c00255{letter-spacing:0.000000pt;}
.ls5_c00255{letter-spacing:0.010667pt;}
.ls0_c00255{letter-spacing:0.019200pt;}
.ls1_c00255{letter-spacing:3.198987pt;}
.ls2_c00255{letter-spacing:3.555555pt;}
.ws1_c00255{word-spacing:-17.600000pt;}
.ws0_c00255{word-spacing:-11.733333pt;}
.ws2_c00255{word-spacing:-8.888889pt;}
.ws3_c00255{word-spacing:0.000000pt;}
._12_c00255{margin-left:-15.168000pt;}
._11_c00255{margin-left:-8.880000pt;}
._1f_c00255{margin-left:-5.812285pt;}
._1a_c00255{margin-left:-4.820267pt;}
._1_c00255{margin-left:-3.200000pt;}
._5_c00255{margin-left:-2.214400pt;}
._10_c00255{margin-left:-1.318400pt;}
._d_c00255{width:1.145600pt;}
._3_c00255{width:2.124800pt;}
._f_c00255{width:3.507200pt;}
._8_c00255{width:4.544000pt;}
._13_c00255{width:5.555200pt;}
._14_c00255{width:6.553600pt;}
._1c_c00255{width:7.515733pt;}
._1e_c00255{width:8.506667pt;}
._19_c00255{width:9.613867pt;}
._1d_c00255{width:11.041067pt;}
._1b_c00255{width:12.016000pt;}
._17_c00255{width:12.928000pt;}
._7_c00255{width:15.673600pt;}
._18_c00255{width:16.678400pt;}
._4_c00255{width:19.014400pt;}
._6_c00255{width:19.904000pt;}
._0_c00255{width:21.081600pt;}
._16_c00255{width:23.027200pt;}
._2_c00255{width:24.300800pt;}
._9_c00255{width:25.446400pt;}
._15_c00255{width:26.470400pt;}
._b_c00255{width:27.840000pt;}
._e_c00255{width:28.857600pt;}
._a_c00255{width:29.977600pt;}
._c_c00255{width:32.204800pt;}
.fs4_c00255{font-size:35.555557pt;}
.fs1_c00255{font-size:42.666667pt;}
.fs2_c00255{font-size:48.000000pt;}
.fs3_c00255{font-size:53.333333pt;}
.fs0_c00255{font-size:64.000000pt;}
.y0_c00255{bottom:0.000000pt;}
.y8_c00255{bottom:9.333333pt;}
.y7_c00255{bottom:12.000000pt;}
.y11_c00255{bottom:59.853333pt;}
.y18_c00255{bottom:120.520000pt;}
.y17_c00255{bottom:157.186667pt;}
.y16_c00255{bottom:174.520000pt;}
.y15_c00255{bottom:191.853333pt;}
.y14_c00255{bottom:209.186667pt;}
.y13_c00255{bottom:226.520000pt;}
.y12_c00255{bottom:247.186667pt;}
.yf_c00255{bottom:361.186667pt;}
.ye_c00255{bottom:385.186667pt;}
.yd_c00255{bottom:427.853333pt;}
.yc_c00255{bottom:451.853333pt;}
.yb_c00255{bottom:475.853333pt;}
.ya_c00255{bottom:499.853333pt;}
.y9_c00255{bottom:523.853333pt;}
.y6_c00255{bottom:563.853333pt;}
.y5_c00255{bottom:877.186667pt;}
.y4_c00255{bottom:901.186667pt;}
.y3_c00255{bottom:925.186667pt;}
.y2_c00255{bottom:949.186667pt;}
.y1_c00255{bottom:973.186667pt;}
.y10_c00255{bottom:1061.186667pt;}
.h9_c00255{height:24.427085pt;}
.ha_c00255{height:36.640625pt;}
.h6_c00255{height:37.593750pt;}
.h8_c00255{height:39.296875pt;}
.h7_c00255{height:49.843750pt;}
.h3_c00255{height:60.218750pt;}
.h4_c00255{height:60.666900pt;}
.h5_c00255{height:285.333333pt;}
.h2_c00255{height:1121.333333pt;}
.h0_c00255{height:1122.520000pt;}
.h1_c00255{height:1122.666667pt;}
.w3_c00255{width:601.720000pt;}
.w2_c00255{width:793.333333pt;}
.w0_c00255{width:793.720000pt;}
.w1_c00255{width:794.000000pt;}
.x0_c00255{left:0.000000pt;}
.x1_c00255{left:58.204720pt;}
.x3_c00255{left:59.544560pt;}
.x2_c00255{left:445.397867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4e86d9b99a34bc43c3ed0dce.woff2')format("woff");}.ff1_c00256{font-family:ff1_c00256;line-height:0.934082;font-style:normal;font-weight:normal;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_e442e7b8c60af8e1be38b14e.woff2')format("woff");}.ff2_c00256{font-family:ff2_c00256;line-height:0.987793;font-style:normal;font-weight:normal;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_15d97dcdea9438d1903ddd8f.woff2')format("woff");}.ff3_c00256{font-family:ff3_c00256;line-height:1.155762;font-style:normal;font-weight:normal;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_b927df79af3d9893f418e013.woff2')format("woff");}.ff4_c00256{font-family:ff4_c00256;line-height:0.904297;font-style:normal;font-weight:normal;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_1dc6f9b5983566c68634ade3.woff2')format("woff");}.ff5_c00256{font-family:ff5_c00256;line-height:0.891113;font-style: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);}
.v2_c00256{vertical-align:-23.086200px;}
.v3_c00256{vertical-align:-15.000000px;}
.v0_c00256{vertical-align:0.000000px;}
.v1_c00256{vertical-align:23.086200px;}
.ls3_c00256{letter-spacing:0.000000px;}
.ls1_c00256{letter-spacing:0.012000px;}
.ls2_c00256{letter-spacing:3.999999px;}
.ls0_c00256{letter-spacing:5.151000px;}
.sc__c00256{text-shadow:none;}
.sc0_c00256{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00256{-webkit-text-stroke:0px transparent;}
.sc0_c00256{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00256{word-spacing:-17.064000px;}
.ws0_c00256{word-spacing:-13.200000px;}
.ws2_c00256{word-spacing:-10.000001px;}
.ws3_c00256{word-spacing:0.000000px;}
._15_c00256{margin-left:-5.436000px;}
._2_c00256{margin-left:-4.226400px;}
._0_c00256{margin-left:-2.347200px;}
._7_c00256{margin-left:-1.130400px;}
._b_c00256{width:1.540800px;}
._4_c00256{width:2.721600px;}
._11_c00256{width:4.010400px;}
._e_c00256{width:5.068800px;}
._5_c00256{width:6.228000px;}
._10_c00256{width:7.279200px;}
._6_c00256{width:9.028800px;}
._14_c00256{width:10.056000px;}
._1_c00256{width:11.289600px;}
._3_c00256{width:13.233600px;}
._13_c00256{width:14.464800px;}
._12_c00256{width:16.250400px;}
._16_c00256{width:17.838000px;}
._f_c00256{width:19.627200px;}
._d_c00256{width:21.254400px;}
._c_c00256{width:22.449600px;}
._9_c00256{width:23.961600px;}
._8_c00256{width:25.092000px;}
._a_c00256{width:26.301600px;}
.fc0_c00256{color:rgb(0,0,0);}
.fs4_c00256{font-size:40.000002px;}
.fs1_c00256{font-size:48.000000px;}
.fs2_c00256{font-size:54.000000px;}
.fs3_c00256{font-size:60.000000px;}
.fs0_c00256{font-size:72.000000px;}
.y0_c00256{bottom:0.000000px;}
.y6_c00256{bottom:10.500000px;}
.y5_c00256{bottom:33.000000px;}
.yd_c00256{bottom:67.335000px;}
.y14_c00256{bottom:131.835000px;}
.y13_c00256{bottom:151.335000px;}
.y12_c00256{bottom:174.585000px;}
.y11_c00256{bottom:215.835000px;}
.y10_c00256{bottom:235.335000px;}
.yf_c00256{bottom:254.835000px;}
.ye_c00256{bottom:278.085000px;}
.yb_c00256{bottom:343.335000px;}
.ya_c00256{bottom:370.335000px;}
.y9_c00256{bottom:397.335000px;}
.y8_c00256{bottom:424.335000px;}
.y7_c00256{bottom:451.335000px;}
.y4_c00256{bottom:496.335000px;}
.y3_c00256{bottom:1040.835000px;}
.y2_c00256{bottom:1067.835000px;}
.y1_c00256{bottom:1094.835000px;}
.yc_c00256{bottom:1193.835000px;}
.h8_c00256{height:27.421876px;}
.h9_c00256{height:41.132812px;}
.h6_c00256{height:42.292969px;}
.h4_c00256{height:51.257812px;}
.h7_c00256{height:56.074219px;}
.h3_c00256{height:57.258075px;}
.h5_c00256{height:513.000000px;}
.h2_c00256{height:1261.500000px;}
.h0_c00256{height:1262.835000px;}
.h1_c00256{height:1263.000000px;}
.w3_c00256{width:415.500000px;}
.w2_c00256{width:892.500000px;}
.w0_c00256{width:892.935000px;}
.w1_c00256{width:893.250000px;}
.x0_c00256{left:0.000000px;}
.x3_c00256{left:7.630692px;}
.x1_c00256{left:150.519750px;}
.x2_c00256{left:280.500000px;}
.x4_c00256{left:417.217800px;}
.x5_c00256{left:802.427700px;}
@media print{
.v2_c00256{vertical-align:-20.521067pt;}
.v3_c00256{vertical-align:-13.333333pt;}
.v0_c00256{vertical-align:0.000000pt;}
.v1_c00256{vertical-align:20.521067pt;}
.ls3_c00256{letter-spacing:0.000000pt;}
.ls1_c00256{letter-spacing:0.010667pt;}
.ls2_c00256{letter-spacing:3.555555pt;}
.ls0_c00256{letter-spacing:4.578667pt;}
.ws1_c00256{word-spacing:-15.168000pt;}
.ws0_c00256{word-spacing:-11.733333pt;}
.ws2_c00256{word-spacing:-8.888889pt;}
.ws3_c00256{word-spacing:0.000000pt;}
._15_c00256{margin-left:-4.832000pt;}
._2_c00256{margin-left:-3.756800pt;}
._0_c00256{margin-left:-2.086400pt;}
._7_c00256{margin-left:-1.004800pt;}
._b_c00256{width:1.369600pt;}
._4_c00256{width:2.419200pt;}
._11_c00256{width:3.564800pt;}
._e_c00256{width:4.505600pt;}
._5_c00256{width:5.536000pt;}
._10_c00256{width:6.470400pt;}
._6_c00256{width:8.025600pt;}
._14_c00256{width:8.938667pt;}
._1_c00256{width:10.035200pt;}
._3_c00256{width:11.763200pt;}
._13_c00256{width:12.857600pt;}
._12_c00256{width:14.444800pt;}
._16_c00256{width:15.856000pt;}
._f_c00256{width:17.446400pt;}
._d_c00256{width:18.892800pt;}
._c_c00256{width:19.955200pt;}
._9_c00256{width:21.299200pt;}
._8_c00256{width:22.304000pt;}
._a_c00256{width:23.379200pt;}
.fs4_c00256{font-size:35.555557pt;}
.fs1_c00256{font-size:42.666667pt;}
.fs2_c00256{font-size:48.000000pt;}
.fs3_c00256{font-size:53.333333pt;}
.fs0_c00256{font-size:64.000000pt;}
.y0_c00256{bottom:0.000000pt;}
.y6_c00256{bottom:9.333333pt;}
.y5_c00256{bottom:29.333333pt;}
.yd_c00256{bottom:59.853333pt;}
.y14_c00256{bottom:117.186667pt;}
.y13_c00256{bottom:134.520000pt;}
.y12_c00256{bottom:155.186667pt;}
.y11_c00256{bottom:191.853333pt;}
.y10_c00256{bottom:209.186667pt;}
.yf_c00256{bottom:226.520000pt;}
.ye_c00256{bottom:247.186667pt;}
.yb_c00256{bottom:305.186667pt;}
.ya_c00256{bottom:329.186667pt;}
.y9_c00256{bottom:353.186667pt;}
.y8_c00256{bottom:377.186667pt;}
.y7_c00256{bottom:401.186667pt;}
.y4_c00256{bottom:441.186667pt;}
.y3_c00256{bottom:925.186667pt;}
.y2_c00256{bottom:949.186667pt;}
.y1_c00256{bottom:973.186667pt;}
.yc_c00256{bottom:1061.186667pt;}
.h8_c00256{height:24.375001pt;}
.h9_c00256{height:36.562500pt;}
.h6_c00256{height:37.593750pt;}
.h4_c00256{height:45.562500pt;}
.h7_c00256{height:49.843750pt;}
.h3_c00256{height:50.896067pt;}
.h5_c00256{height:456.000000pt;}
.h2_c00256{height:1121.333333pt;}
.h0_c00256{height:1122.520000pt;}
.h1_c00256{height:1122.666667pt;}
.w3_c00256{width:369.333333pt;}
.w2_c00256{width:793.333333pt;}
.w0_c00256{width:793.720000pt;}
.w1_c00256{width:794.000000pt;}
.x0_c00256{left:0.000000pt;}
.x3_c00256{left:6.782837pt;}
.x1_c00256{left:133.795333pt;}
.x2_c00256{left:249.333333pt;}
.x4_c00256{left:370.860267pt;}
.x5_c00256{left:713.269067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_42188c06f3d7fe948850b318.woff2')format("woff");}.ff1_c00257{font-family:ff1_c00257;line-height:1.163086;font-style:normal;font-weight:normal;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_16a112c967ce416a82006186.woff2')format("woff");}.ff2_c00257{font-family:ff2_c00257;line-height:0.756348;font-style:normal;font-weight:normal;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_23ac1d7c371e1c59248ca408.woff2')format("woff");}.ff3_c00257{font-family:ff3_c00257;line-height:1.155762;font-style:normal;font-weight:normal;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_1fc64b3e15c33b87ab7ce353.woff2')format("woff");}.ff4_c00257{font-family:ff4_c00257;line-height:0.905762;font-style:normal;font-weight:normal;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_413d41e3b3441d4af3a5c294.woff2')format("woff");}.ff5_c00257{font-family:ff5_c00257;line-height:0.891113;font-style: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);}
.v2_c00257{vertical-align:-23.086200px;}
.v3_c00257{vertical-align:-15.000000px;}
.v0_c00257{vertical-align:0.000000px;}
.v1_c00257{vertical-align:23.086200px;}
.ls4_c00257{letter-spacing:0.000000px;}
.ls3_c00257{letter-spacing:0.006019px;}
.ls5_c00257{letter-spacing:0.012000px;}
.ls1_c00257{letter-spacing:3.552000px;}
.ls2_c00257{letter-spacing:3.999999px;}
.ls0_c00257{letter-spacing:4.881600px;}
.sc__c00257{text-shadow:none;}
.sc0_c00257{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00257{-webkit-text-stroke:0px transparent;}
.sc0_c00257{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00257{word-spacing:-19.800000px;}
.ws1_c00257{word-spacing:0.000000px;}
._4_c00257{margin-left:-10.584000px;}
._1a_c00257{margin-left:-7.185600px;}
._6_c00257{margin-left:-4.394160px;}
._1_c00257{margin-left:-3.189600px;}
._5_c00257{margin-left:-1.958400px;}
._b_c00257{width:1.478160px;}
._0_c00257{width:2.541600px;}
._8_c00257{width:3.554640px;}
._c_c00257{width:4.582080px;}
._a_c00257{width:5.738400px;}
._9_c00257{width:7.187760px;}
._13_c00257{width:9.159120px;}
._15_c00257{width:10.687680px;}
._10_c00257{width:12.029040px;}
._e_c00257{width:14.016240px;}
._d_c00257{width:15.530400px;}
._11_c00257{width:17.337600px;}
._f_c00257{width:18.652320px;}
._12_c00257{width:21.422880px;}
._7_c00257{width:22.917600px;}
._14_c00257{width:24.134400px;}
._3_c00257{width:25.770960px;}
._2_c00257{width:27.021600px;}
._17_c00257{width:29.844000px;}
._1b_c00257{width:30.950640px;}
._19_c00257{width:32.436000px;}
._18_c00257{width:35.532000px;}
._16_c00257{width:36.794160px;}
.fc0_c00257{color:rgb(0,0,0);}
.fs3_c00257{font-size:40.000002px;}
.fs1_c00257{font-size:48.000000px;}
.fs2_c00257{font-size:60.000000px;}
.fs0_c00257{font-size:72.000000px;}
.y0_c00257{bottom:0.000000px;}
.y1e_c00257{bottom:67.335000px;}
.y22_c00257{bottom:135.685050px;}
.y21_c00257{bottom:176.835000px;}
.y20_c00257{bottom:196.335000px;}
.y1f_c00257{bottom:219.585000px;}
.y1c_c00257{bottom:260.835000px;}
.y1b_c00257{bottom:287.835000px;}
.y1a_c00257{bottom:314.835000px;}
.y19_c00257{bottom:362.835000px;}
.y18_c00257{bottom:389.835000px;}
.y17_c00257{bottom:416.835000px;}
.y16_c00257{bottom:443.835000px;}
.y15_c00257{bottom:491.835000px;}
.y14_c00257{bottom:518.835000px;}
.y13_c00257{bottom:545.835000px;}
.y12_c00257{bottom:572.835000px;}
.y11_c00257{bottom:599.835000px;}
.y10_c00257{bottom:626.835000px;}
.yf_c00257{bottom:653.835000px;}
.ye_c00257{bottom:680.835000px;}
.yd_c00257{bottom:728.835000px;}
.yc_c00257{bottom:755.835000px;}
.yb_c00257{bottom:782.835000px;}
.ya_c00257{bottom:809.835000px;}
.y9_c00257{bottom:836.835000px;}
.y8_c00257{bottom:884.835000px;}
.y7_c00257{bottom:911.835000px;}
.y6_c00257{bottom:938.835000px;}
.y5_c00257{bottom:965.835000px;}
.y4_c00257{bottom:1013.835000px;}
.y3_c00257{bottom:1040.835000px;}
.y2_c00257{bottom:1067.835000px;}
.y1_c00257{bottom:1094.835000px;}
.y1d_c00257{bottom:1193.835000px;}
.h7_c00257{height:27.480470px;}
.h9_c00257{height:29.472658px;}
.h8_c00257{height:41.220703px;}
.h6_c00257{height:44.208984px;}
.h5_c00257{height:56.074219px;}
.h4_c00257{height:67.746094px;}
.h3_c00257{height:68.250262px;}
.h2_c00257{height:1261.500000px;}
.h0_c00257{height:1262.835000px;}
.h1_c00257{height:1263.000000px;}
.w2_c00257{width:892.500000px;}
.w0_c00257{width:892.935000px;}
.w1_c00257{width:893.250000px;}
.x0_c00257{left:0.000000px;}
.x1_c00257{left:65.480310px;}
@media print{
.v2_c00257{vertical-align:-20.521067pt;}
.v3_c00257{vertical-align:-13.333333pt;}
.v0_c00257{vertical-align:0.000000pt;}
.v1_c00257{vertical-align:20.521067pt;}
.ls4_c00257{letter-spacing:0.000000pt;}
.ls3_c00257{letter-spacing:0.005350pt;}
.ls5_c00257{letter-spacing:0.010667pt;}
.ls1_c00257{letter-spacing:3.157333pt;}
.ls2_c00257{letter-spacing:3.555555pt;}
.ls0_c00257{letter-spacing:4.339200pt;}
.ws0_c00257{word-spacing:-17.600000pt;}
.ws1_c00257{word-spacing:0.000000pt;}
._4_c00257{margin-left:-9.408000pt;}
._1a_c00257{margin-left:-6.387200pt;}
._6_c00257{margin-left:-3.905920pt;}
._1_c00257{margin-left:-2.835200pt;}
._5_c00257{margin-left:-1.740800pt;}
._b_c00257{width:1.313920pt;}
._0_c00257{width:2.259200pt;}
._8_c00257{width:3.159680pt;}
._c_c00257{width:4.072960pt;}
._a_c00257{width:5.100800pt;}
._9_c00257{width:6.389120pt;}
._13_c00257{width:8.141440pt;}
._15_c00257{width:9.500160pt;}
._10_c00257{width:10.692480pt;}
._e_c00257{width:12.458880pt;}
._d_c00257{width:13.804800pt;}
._11_c00257{width:15.411200pt;}
._f_c00257{width:16.579840pt;}
._12_c00257{width:19.042560pt;}
._7_c00257{width:20.371200pt;}
._14_c00257{width:21.452800pt;}
._3_c00257{width:22.907520pt;}
._2_c00257{width:24.019200pt;}
._17_c00257{width:26.528000pt;}
._1b_c00257{width:27.511680pt;}
._19_c00257{width:28.832000pt;}
._18_c00257{width:31.584000pt;}
._16_c00257{width:32.705920pt;}
.fs3_c00257{font-size:35.555557pt;}
.fs1_c00257{font-size:42.666667pt;}
.fs2_c00257{font-size:53.333333pt;}
.fs0_c00257{font-size:64.000000pt;}
.y0_c00257{bottom:0.000000pt;}
.y1e_c00257{bottom:59.853333pt;}
.y22_c00257{bottom:120.608933pt;}
.y21_c00257{bottom:157.186667pt;}
.y20_c00257{bottom:174.520000pt;}
.y1f_c00257{bottom:195.186667pt;}
.y1c_c00257{bottom:231.853333pt;}
.y1b_c00257{bottom:255.853333pt;}
.y1a_c00257{bottom:279.853333pt;}
.y19_c00257{bottom:322.520000pt;}
.y18_c00257{bottom:346.520000pt;}
.y17_c00257{bottom:370.520000pt;}
.y16_c00257{bottom:394.520000pt;}
.y15_c00257{bottom:437.186667pt;}
.y14_c00257{bottom:461.186667pt;}
.y13_c00257{bottom:485.186667pt;}
.y12_c00257{bottom:509.186667pt;}
.y11_c00257{bottom:533.186667pt;}
.y10_c00257{bottom:557.186667pt;}
.yf_c00257{bottom:581.186667pt;}
.ye_c00257{bottom:605.186667pt;}
.yd_c00257{bottom:647.853333pt;}
.yc_c00257{bottom:671.853333pt;}
.yb_c00257{bottom:695.853333pt;}
.ya_c00257{bottom:719.853333pt;}
.y9_c00257{bottom:743.853333pt;}
.y8_c00257{bottom:786.520000pt;}
.y7_c00257{bottom:810.520000pt;}
.y6_c00257{bottom:834.520000pt;}
.y5_c00257{bottom:858.520000pt;}
.y4_c00257{bottom:901.186667pt;}
.y3_c00257{bottom:925.186667pt;}
.y2_c00257{bottom:949.186667pt;}
.y1_c00257{bottom:973.186667pt;}
.y1d_c00257{bottom:1061.186667pt;}
.h7_c00257{height:24.427085pt;}
.h9_c00257{height:26.197918pt;}
.h8_c00257{height:36.640625pt;}
.h6_c00257{height:39.296875pt;}
.h5_c00257{height:49.843750pt;}
.h4_c00257{height:60.218750pt;}
.h3_c00257{height:60.666900pt;}
.h2_c00257{height:1121.333333pt;}
.h0_c00257{height:1122.520000pt;}
.h1_c00257{height:1122.666667pt;}
.w2_c00257{width:793.333333pt;}
.w0_c00257{width:793.720000pt;}
.w1_c00257{width:794.000000pt;}
.x0_c00257{left:0.000000pt;}
.x1_c00257{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cf7eb0112daf951631e9ea56.woff2')format("woff");}.ff1_c00258{font-family:ff1_c00258;line-height:1.163086;font-style:normal;font-weight:normal;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_fc1f3a78b22f610442698028.woff2')format("woff");}.ff2_c00258{font-family:ff2_c00258;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00258;src:url('chunks/assets/font_497acd3d6d27be7ebee20785.woff2')format("woff");}.ff3_c00258{font-family:ff3_c00258;line-height:1.155762;font-style:normal;font-weight:normal;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_60022cd921f98df54ac19f5a.woff2')format("woff");}.ff4_c00258{font-family:ff4_c00258;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00258;src:url('chunks/assets/font_1854c77801a40041c5f232d2.woff2')format("woff");}.ff5_c00258{font-family:ff5_c00258;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00258{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00258{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00258{vertical-align:-23.086200px;}
.v3_c00258{vertical-align:-15.400200px;}
.v0_c00258{vertical-align:0.000000px;}
.v1_c00258{vertical-align:23.086200px;}
.ls4_c00258{letter-spacing:-0.009600px;}
.ls3_c00258{letter-spacing:0.000000px;}
.ls5_c00258{letter-spacing:0.008000px;}
.ls0_c00258{letter-spacing:0.012000px;}
.ls2_c00258{letter-spacing:3.428400px;}
.ls1_c00258{letter-spacing:3.977400px;}
.sc__c00258{text-shadow:none;}
.sc0_c00258{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00258{-webkit-text-stroke:0px transparent;}
.sc0_c00258{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00258{word-spacing:-19.800000px;}
.ws2_c00258{word-spacing:-13.190400px;}
.ws4_c00258{word-spacing:-11.128001px;}
.ws1_c00258{word-spacing:-0.067200px;}
.ws5_c00258{word-spacing:0.000000px;}
.ws3_c00258{word-spacing:1.033800px;}
._15_c00258{margin-left:-10.166400px;}
._18_c00258{margin-left:-7.189202px;}
._16_c00258{margin-left:-5.762400px;}
._0_c00258{margin-left:-3.780000px;}
._7_c00258{margin-left:-2.721600px;}
._2_c00258{margin-left:-1.598400px;}
._8_c00258{width:1.101600px;}
._5_c00258{width:3.024000px;}
._13_c00258{width:4.156800px;}
._4_c00258{width:5.184000px;}
._9_c00258{width:6.566400px;}
._6_c00258{width:8.150400px;}
._3_c00258{width:9.885600px;}
._b_c00258{width:10.958400px;}
._1_c00258{width:12.060000px;}
._a_c00258{width:13.478400px;}
._12_c00258{width:14.947200px;}
._11_c00258{width:16.005600px;}
._19_c00258{width:17.289598px;}
._10_c00258{width:18.432000px;}
._17_c00258{width:19.451398px;}
._14_c00258{width:22.068000px;}
._c_c00258{width:23.738400px;}
._d_c00258{width:24.917400px;}
._f_c00258{width:26.258400px;}
._e_c00258{width:27.541200px;}
.fc0_c00258{color:rgb(0,0,0);}
.fs3_c00258{font-size:40.000002px;}
.fs1_c00258{font-size:48.000000px;}
.fs2_c00258{font-size:60.000000px;}
.fs0_c00258{font-size:72.000000px;}
.y0_c00258{bottom:0.000000px;}
.y17_c00258{bottom:67.335000px;}
.y1f_c00258{bottom:131.835000px;}
.y1e_c00258{bottom:151.335000px;}
.y1d_c00258{bottom:174.685050px;}
.y1c_c00258{bottom:215.835000px;}
.y1b_c00258{bottom:239.185050px;}
.y1a_c00258{bottom:284.185050px;}
.y19_c00258{bottom:325.335000px;}
.y18_c00258{bottom:348.685050px;}
.y15_c00258{bottom:470.835000px;}
.y14_c00258{bottom:497.835000px;}
.y13_c00258{bottom:545.835000px;}
.y12_c00258{bottom:572.835000px;}
.y11_c00258{bottom:599.835000px;}
.y10_c00258{bottom:626.835000px;}
.yf_c00258{bottom:674.835000px;}
.ye_c00258{bottom:701.835000px;}
.yd_c00258{bottom:728.835000px;}
.yc_c00258{bottom:755.835000px;}
.yb_c00258{bottom:782.835000px;}
.ya_c00258{bottom:809.835000px;}
.y9_c00258{bottom:836.835000px;}
.y8_c00258{bottom:863.835000px;}
.y7_c00258{bottom:890.835000px;}
.y6_c00258{bottom:938.835000px;}
.y5_c00258{bottom:965.835000px;}
.y4_c00258{bottom:992.835000px;}
.y3_c00258{bottom:1019.835000px;}
.y2_c00258{bottom:1067.835000px;}
.y1_c00258{bottom:1094.835000px;}
.y16_c00258{bottom:1193.835000px;}
.h6_c00258{height:40.674019px;}
.h7_c00258{height:53.671875px;}
.h5_c00258{height:56.074219px;}
.h3_c00258{height:67.746094px;}
.h4_c00258{height:68.250262px;}
.h2_c00258{height:1261.500000px;}
.h0_c00258{height:1262.835000px;}
.h1_c00258{height:1263.000000px;}
.w2_c00258{width:892.500000px;}
.w0_c00258{width:892.935000px;}
.w1_c00258{width:893.250000px;}
.x0_c00258{left:0.000000px;}
.x1_c00258{left:150.519750px;}
.x2_c00258{left:417.217800px;}
.x3_c00258{left:802.427700px;}
@media print{
.v2_c00258{vertical-align:-20.521067pt;}
.v3_c00258{vertical-align:-13.689067pt;}
.v0_c00258{vertical-align:0.000000pt;}
.v1_c00258{vertical-align:20.521067pt;}
.ls4_c00258{letter-spacing:-0.008533pt;}
.ls3_c00258{letter-spacing:0.000000pt;}
.ls5_c00258{letter-spacing:0.007111pt;}
.ls0_c00258{letter-spacing:0.010667pt;}
.ls2_c00258{letter-spacing:3.047467pt;}
.ls1_c00258{letter-spacing:3.535467pt;}
.ws0_c00258{word-spacing:-17.600000pt;}
.ws2_c00258{word-spacing:-11.724800pt;}
.ws4_c00258{word-spacing:-9.891556pt;}
.ws1_c00258{word-spacing:-0.059733pt;}
.ws5_c00258{word-spacing:0.000000pt;}
.ws3_c00258{word-spacing:0.918933pt;}
._15_c00258{margin-left:-9.036800pt;}
._18_c00258{margin-left:-6.390402pt;}
._16_c00258{margin-left:-5.122133pt;}
._0_c00258{margin-left:-3.360000pt;}
._7_c00258{margin-left:-2.419200pt;}
._2_c00258{margin-left:-1.420800pt;}
._8_c00258{width:0.979200pt;}
._5_c00258{width:2.688000pt;}
._13_c00258{width:3.694933pt;}
._4_c00258{width:4.608000pt;}
._9_c00258{width:5.836800pt;}
._6_c00258{width:7.244800pt;}
._3_c00258{width:8.787200pt;}
._b_c00258{width:9.740800pt;}
._1_c00258{width:10.720000pt;}
._a_c00258{width:11.980800pt;}
._12_c00258{width:13.286400pt;}
._11_c00258{width:14.227200pt;}
._19_c00258{width:15.368531pt;}
._10_c00258{width:16.384000pt;}
._17_c00258{width:17.290131pt;}
._14_c00258{width:19.616000pt;}
._c_c00258{width:21.100800pt;}
._d_c00258{width:22.148800pt;}
._f_c00258{width:23.340800pt;}
._e_c00258{width:24.481067pt;}
.fs3_c00258{font-size:35.555557pt;}
.fs1_c00258{font-size:42.666667pt;}
.fs2_c00258{font-size:53.333333pt;}
.fs0_c00258{font-size:64.000000pt;}
.y0_c00258{bottom:0.000000pt;}
.y17_c00258{bottom:59.853333pt;}
.y1f_c00258{bottom:117.186667pt;}
.y1e_c00258{bottom:134.520000pt;}
.y1d_c00258{bottom:155.275600pt;}
.y1c_c00258{bottom:191.853333pt;}
.y1b_c00258{bottom:212.608933pt;}
.y1a_c00258{bottom:252.608933pt;}
.y19_c00258{bottom:289.186667pt;}
.y18_c00258{bottom:309.942267pt;}
.y15_c00258{bottom:418.520000pt;}
.y14_c00258{bottom:442.520000pt;}
.y13_c00258{bottom:485.186667pt;}
.y12_c00258{bottom:509.186667pt;}
.y11_c00258{bottom:533.186667pt;}
.y10_c00258{bottom:557.186667pt;}
.yf_c00258{bottom:599.853333pt;}
.ye_c00258{bottom:623.853333pt;}
.yd_c00258{bottom:647.853333pt;}
.yc_c00258{bottom:671.853333pt;}
.yb_c00258{bottom:695.853333pt;}
.ya_c00258{bottom:719.853333pt;}
.y9_c00258{bottom:743.853333pt;}
.y8_c00258{bottom:767.853333pt;}
.y7_c00258{bottom:791.853333pt;}
.y6_c00258{bottom:834.520000pt;}
.y5_c00258{bottom:858.520000pt;}
.y4_c00258{bottom:882.520000pt;}
.y3_c00258{bottom:906.520000pt;}
.y2_c00258{bottom:949.186667pt;}
.y1_c00258{bottom:973.186667pt;}
.y16_c00258{bottom:1061.186667pt;}
.h6_c00258{height:36.154683pt;}
.h7_c00258{height:47.708333pt;}
.h5_c00258{height:49.843750pt;}
.h3_c00258{height:60.218750pt;}
.h4_c00258{height:60.666900pt;}
.h2_c00258{height:1121.333333pt;}
.h0_c00258{height:1122.520000pt;}
.h1_c00258{height:1122.666667pt;}
.w2_c00258{width:793.333333pt;}
.w0_c00258{width:793.720000pt;}
.w1_c00258{width:794.000000pt;}
.x0_c00258{left:0.000000pt;}
.x1_c00258{left:133.795333pt;}
.x2_c00258{left:370.860267pt;}
.x3_c00258{left:713.269067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_054d09958cc3325bdd0562a2.woff2')format("woff");}.ff1_c00259{font-family:ff1_c00259;line-height:1.163086;font-style:normal;font-weight:normal;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_6d7e1ded10994a8ac6576a0c.woff2')format("woff");}.ff2_c00259{font-family:ff2_c00259;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00259;src:url('chunks/assets/font_37b1dd80b1c163e7a408feba.woff2')format("woff");}.ff3_c00259{font-family:ff3_c00259;line-height:0.755859;font-style:normal;font-weight:normal;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_846c56831c66a3f168c847b9.woff2')format("woff");}.ff4_c00259{font-family:ff4_c00259;line-height:1.155762;font-style:normal;font-weight:normal;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_abc4a8f368f58438095287cd.woff2')format("woff");}.ff5_c00259{font-family:ff5_c00259;line-height:1.115723;font-style:normal;font-weight: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_c00259;src:url('chunks/assets/font_41f8fa84f06b84f6452f77a9.woff2')format("woff");}.ff6_c00259{font-family:ff6_c00259;line-height:0.891113;font-style: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);}
.v2_c00259{vertical-align:-23.086200px;}
.v3_c00259{vertical-align:-15.400200px;}
.v0_c00259{vertical-align:0.000000px;}
.v1_c00259{vertical-align:23.086200px;}
.ls3_c00259{letter-spacing:-0.014400px;}
.ls2_c00259{letter-spacing:-0.009600px;}
.ls1_c00259{letter-spacing:0.000000px;}
.ls6_c00259{letter-spacing:0.006000px;}
.ls5_c00259{letter-spacing:0.008000px;}
.ls4_c00259{letter-spacing:0.012000px;}
.ls0_c00259{letter-spacing:1.052400px;}
.sc__c00259{text-shadow:none;}
.sc0_c00259{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00259{-webkit-text-stroke:0px transparent;}
.sc0_c00259{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00259{word-spacing:-19.785600px;}
.ws0_c00259{word-spacing:-13.190400px;}
.ws2_c00259{word-spacing:-11.128001px;}
.ws3_c00259{word-spacing:-10.000001px;}
.ws4_c00259{word-spacing:-2.000002px;}
.ws5_c00259{word-spacing:0.000000px;}
._14_c00259{margin-left:-6.307482px;}
._e_c00259{margin-left:-5.138400px;}
._7_c00259{margin-left:-4.115640px;}
._3_c00259{margin-left:-2.152800px;}
._8_c00259{margin-left:-1.000800px;}
._1_c00259{width:1.296000px;}
._5_c00259{width:2.498400px;}
._d_c00259{width:4.194840px;}
._6_c00259{width:5.594400px;}
._2_c00259{width:6.847200px;}
._0_c00259{width:8.078400px;}
._f_c00259{width:9.137640px;}
._4_c00259{width:10.245600px;}
._10_c00259{width:11.351878px;}
._9_c00259{width:12.520800px;}
._c_c00259{width:13.752000px;}
._a_c00259{width:15.033600px;}
._b_c00259{width:17.215200px;}
._13_c00259{width:18.450000px;}
._11_c00259{width:19.878840px;}
._12_c00259{width:21.332400px;}
.fc0_c00259{color:rgb(0,0,0);}
.fs4_c00259{font-size:40.000002px;}
.fs1_c00259{font-size:48.000000px;}
.fs3_c00259{font-size:60.000000px;}
.fs0_c00259{font-size:72.000000px;}
.fs2_c00259{font-size:120.000000px;}
.y0_c00259{bottom:0.000000px;}
.y13_c00259{bottom:67.335000px;}
.y21_c00259{bottom:131.835000px;}
.y20_c00259{bottom:151.335000px;}
.y1f_c00259{bottom:174.585000px;}
.y1e_c00259{bottom:215.835000px;}
.y1d_c00259{bottom:239.085000px;}
.y1c_c00259{bottom:280.335000px;}
.y1b_c00259{bottom:299.835000px;}
.y1a_c00259{bottom:319.335000px;}
.y19_c00259{bottom:342.685050px;}
.y18_c00259{bottom:383.835000px;}
.y17_c00259{bottom:407.185050px;}
.y16_c00259{bottom:448.335000px;}
.y15_c00259{bottom:467.835000px;}
.y14_c00259{bottom:491.185050px;}
.y11_c00259{bottom:539.835000px;}
.y10_c00259{bottom:647.835000px;}
.yf_c00259{bottom:674.835000px;}
.ye_c00259{bottom:701.835000px;}
.yd_c00259{bottom:728.835000px;}
.yc_c00259{bottom:755.835000px;}
.yb_c00259{bottom:803.835000px;}
.ya_c00259{bottom:830.835000px;}
.y9_c00259{bottom:857.835000px;}
.y8_c00259{bottom:884.835000px;}
.y7_c00259{bottom:911.835000px;}
.y6_c00259{bottom:938.835000px;}
.y5_c00259{bottom:965.835000px;}
.y4_c00259{bottom:1013.835000px;}
.y3_c00259{bottom:1040.835000px;}
.y2_c00259{bottom:1067.835000px;}
.y1_c00259{bottom:1094.835000px;}
.y12_c00259{bottom:1193.835000px;}
.h8_c00259{height:38.418159px;}
.ha_c00259{height:38.818359px;}
.h7_c00259{height:44.208984px;}
.h9_c00259{height:53.818359px;}
.h6_c00259{height:56.074219px;}
.h4_c00259{height:67.746094px;}
.h3_c00259{height:68.250262px;}
.h5_c00259{height:84.609375px;}
.h2_c00259{height:1261.500000px;}
.h0_c00259{height:1262.835000px;}
.h1_c00259{height:1263.000000px;}
.w2_c00259{width:892.500000px;}
.w0_c00259{width:892.935000px;}
.w1_c00259{width:893.250000px;}
.x0_c00259{left:0.000000px;}
.x1_c00259{left:65.480310px;}
@media print{
.v2_c00259{vertical-align:-20.521067pt;}
.v3_c00259{vertical-align:-13.689067pt;}
.v0_c00259{vertical-align:0.000000pt;}
.v1_c00259{vertical-align:20.521067pt;}
.ls3_c00259{letter-spacing:-0.012800pt;}
.ls2_c00259{letter-spacing:-0.008533pt;}
.ls1_c00259{letter-spacing:0.000000pt;}
.ls6_c00259{letter-spacing:0.005333pt;}
.ls5_c00259{letter-spacing:0.007111pt;}
.ls4_c00259{letter-spacing:0.010667pt;}
.ls0_c00259{letter-spacing:0.935467pt;}
.ws1_c00259{word-spacing:-17.587200pt;}
.ws0_c00259{word-spacing:-11.724800pt;}
.ws2_c00259{word-spacing:-9.891556pt;}
.ws3_c00259{word-spacing:-8.888889pt;}
.ws4_c00259{word-spacing:-1.777780pt;}
.ws5_c00259{word-spacing:0.000000pt;}
._14_c00259{margin-left:-5.606651pt;}
._e_c00259{margin-left:-4.567467pt;}
._7_c00259{margin-left:-3.658347pt;}
._3_c00259{margin-left:-1.913600pt;}
._8_c00259{margin-left:-0.889600pt;}
._1_c00259{width:1.152000pt;}
._5_c00259{width:2.220800pt;}
._d_c00259{width:3.728747pt;}
._6_c00259{width:4.972800pt;}
._2_c00259{width:6.086400pt;}
._0_c00259{width:7.180800pt;}
._f_c00259{width:8.122347pt;}
._4_c00259{width:9.107200pt;}
._10_c00259{width:10.090558pt;}
._9_c00259{width:11.129600pt;}
._c_c00259{width:12.224000pt;}
._a_c00259{width:13.363200pt;}
._b_c00259{width:15.302400pt;}
._13_c00259{width:16.400000pt;}
._11_c00259{width:17.670080pt;}
._12_c00259{width:18.962133pt;}
.fs4_c00259{font-size:35.555557pt;}
.fs1_c00259{font-size:42.666667pt;}
.fs3_c00259{font-size:53.333333pt;}
.fs0_c00259{font-size:64.000000pt;}
.fs2_c00259{font-size:106.666667pt;}
.y0_c00259{bottom:0.000000pt;}
.y13_c00259{bottom:59.853333pt;}
.y21_c00259{bottom:117.186667pt;}
.y20_c00259{bottom:134.520000pt;}
.y1f_c00259{bottom:155.186667pt;}
.y1e_c00259{bottom:191.853333pt;}
.y1d_c00259{bottom:212.520000pt;}
.y1c_c00259{bottom:249.186667pt;}
.y1b_c00259{bottom:266.520000pt;}
.y1a_c00259{bottom:283.853333pt;}
.y19_c00259{bottom:304.608933pt;}
.y18_c00259{bottom:341.186667pt;}
.y17_c00259{bottom:361.942267pt;}
.y16_c00259{bottom:398.520000pt;}
.y15_c00259{bottom:415.853333pt;}
.y14_c00259{bottom:436.608933pt;}
.y11_c00259{bottom:479.853333pt;}
.y10_c00259{bottom:575.853333pt;}
.yf_c00259{bottom:599.853333pt;}
.ye_c00259{bottom:623.853333pt;}
.yd_c00259{bottom:647.853333pt;}
.yc_c00259{bottom:671.853333pt;}
.yb_c00259{bottom:714.520000pt;}
.ya_c00259{bottom:738.520000pt;}
.y9_c00259{bottom:762.520000pt;}
.y8_c00259{bottom:786.520000pt;}
.y7_c00259{bottom:810.520000pt;}
.y6_c00259{bottom:834.520000pt;}
.y5_c00259{bottom:858.520000pt;}
.y4_c00259{bottom:901.186667pt;}
.y3_c00259{bottom:925.186667pt;}
.y2_c00259{bottom:949.186667pt;}
.y1_c00259{bottom:973.186667pt;}
.y12_c00259{bottom:1061.186667pt;}
.h8_c00259{height:34.149475pt;}
.ha_c00259{height:34.505208pt;}
.h7_c00259{height:39.296875pt;}
.h9_c00259{height:47.838542pt;}
.h6_c00259{height:49.843750pt;}
.h4_c00259{height:60.218750pt;}
.h3_c00259{height:60.666900pt;}
.h5_c00259{height:75.208333pt;}
.h2_c00259{height:1121.333333pt;}
.h0_c00259{height:1122.520000pt;}
.h1_c00259{height:1122.666667pt;}
.w2_c00259{width:793.333333pt;}
.w0_c00259{width:793.720000pt;}
.w1_c00259{width:794.000000pt;}
.x0_c00259{left:0.000000pt;}
.x1_c00259{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1e61a96877043d7e16602484.woff2')format("woff");}.ff1_c00260{font-family:ff1_c00260;line-height:1.167480;font-style:normal;font-weight:normal;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_3c2cf94c508e558f095cd250.woff2')format("woff");}.ff2_c00260{font-family:ff2_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;}
@font-face{font-family:ff3_c00260;src:url('chunks/assets/font_0317ba87bb6aeff30304b3a2.woff2')format("woff");}.ff3_c00260{font-family:ff3_c00260;line-height:1.163086;font-style:normal;font-weight:normal;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_52c4572057ab97694f1ef01a.woff2')format("woff");}.ff4_c00260{font-family:ff4_c00260;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00260{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00260{vertical-align:0.000000px;}
.ls4_c00260{letter-spacing:-19.800000px;}
.ls3_c00260{letter-spacing:-0.007200px;}
.ls2_c00260{letter-spacing:0.000000px;}
.ls0_c00260{letter-spacing:0.012000px;}
.ls1_c00260{letter-spacing:1.173600px;}
.sc__c00260{text-shadow:none;}
.sc0_c00260{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00260{-webkit-text-stroke:0px transparent;}
.sc0_c00260{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00260{word-spacing:0.000000px;}
._2_c00260{margin-left:-31.212000px;}
._1_c00260{margin-left:-13.194600px;}
._f_c00260{margin-left:-4.536000px;}
._7_c00260{margin-left:-3.139200px;}
._0_c00260{margin-left:-1.419600px;}
._6_c00260{width:1.166400px;}
._4_c00260{width:3.261600px;}
._a_c00260{width:4.348800px;}
._16_c00260{width:5.907600px;}
._11_c00260{width:7.200000px;}
._13_c00260{width:8.359200px;}
._15_c00260{width:9.692400px;}
._14_c00260{width:11.412000px;}
._12_c00260{width:12.866400px;}
._1a_c00260{width:14.185200px;}
._17_c00260{width:15.546000px;}
._5_c00260{width:17.762400px;}
._3_c00260{width:21.081600px;}
._9_c00260{width:22.501200px;}
._8_c00260{width:24.307200px;}
._1d_c00260{width:25.336800px;}
._1b_c00260{width:27.202800px;}
._18_c00260{width:28.281600px;}
._1c_c00260{width:29.606400px;}
._e_c00260{width:31.154400px;}
._d_c00260{width:32.666400px;}
._c_c00260{width:33.868800px;}
._b_c00260{width:35.288400px;}
._10_c00260{width:38.188800px;}
._19_c00260{width:40.744800px;}
.fc0_c00260{color:rgb(0,0,0);}
.fs4_c00260{font-size:60.000000px;}
.fs1_c00260{font-size:72.000000px;}
.fs2_c00260{font-size:84.000000px;}
.fs3_c00260{font-size:108.000000px;}
.fs0_c00260{font-size:120.000000px;}
.y0_c00260{bottom:0.000000px;}
.y1e_c00260{bottom:67.335000px;}
.y1c_c00260{bottom:167.835000px;}
.y1b_c00260{bottom:194.835000px;}
.y1a_c00260{bottom:221.835000px;}
.y19_c00260{bottom:269.835000px;}
.y18_c00260{bottom:296.835000px;}
.y17_c00260{bottom:323.835000px;}
.y16_c00260{bottom:350.835000px;}
.y15_c00260{bottom:377.835000px;}
.y14_c00260{bottom:425.835000px;}
.y13_c00260{bottom:452.835000px;}
.y12_c00260{bottom:479.835000px;}
.y11_c00260{bottom:506.835000px;}
.y10_c00260{bottom:554.835000px;}
.yf_c00260{bottom:581.835000px;}
.ye_c00260{bottom:608.835000px;}
.yd_c00260{bottom:635.835000px;}
.yc_c00260{bottom:662.835000px;}
.yb_c00260{bottom:689.835000px;}
.ya_c00260{bottom:716.835000px;}
.y9_c00260{bottom:764.835000px;}
.y8_c00260{bottom:791.835000px;}
.y7_c00260{bottom:818.835000px;}
.y6_c00260{bottom:845.835000px;}
.y5_c00260{bottom:872.835000px;}
.y4_c00260{bottom:899.835000px;}
.y3_c00260{bottom:1000.335000px;}
.y2_c00260{bottom:1039.335000px;}
.y1_c00260{bottom:1084.335000px;}
.y1d_c00260{bottom:1193.835000px;}
.h7_c00260{height:56.074219px;}
.h6_c00260{height:67.746094px;}
.h5_c00260{height:102.304688px;}
.h3_c00260{height:113.671875px;}
.h4_c00260{height:115.546875px;}
.h2_c00260{height:1261.500000px;}
.h0_c00260{height:1262.835000px;}
.h1_c00260{height:1263.000000px;}
.w2_c00260{width:892.500000px;}
.w0_c00260{width:892.935000px;}
.w1_c00260{width:893.250000px;}
.x0_c00260{left:0.000000px;}
.x1_c00260{left:150.519750px;}
.x2_c00260{left:417.217800px;}
.x3_c00260{left:802.427700px;}
@media print{
.v0_c00260{vertical-align:0.000000pt;}
.ls4_c00260{letter-spacing:-17.600000pt;}
.ls3_c00260{letter-spacing:-0.006400pt;}
.ls2_c00260{letter-spacing:0.000000pt;}
.ls0_c00260{letter-spacing:0.010667pt;}
.ls1_c00260{letter-spacing:1.043200pt;}
.ws0_c00260{word-spacing:0.000000pt;}
._2_c00260{margin-left:-27.744000pt;}
._1_c00260{margin-left:-11.728533pt;}
._f_c00260{margin-left:-4.032000pt;}
._7_c00260{margin-left:-2.790400pt;}
._0_c00260{margin-left:-1.261867pt;}
._6_c00260{width:1.036800pt;}
._4_c00260{width:2.899200pt;}
._a_c00260{width:3.865600pt;}
._16_c00260{width:5.251200pt;}
._11_c00260{width:6.400000pt;}
._13_c00260{width:7.430400pt;}
._15_c00260{width:8.615467pt;}
._14_c00260{width:10.144000pt;}
._12_c00260{width:11.436800pt;}
._1a_c00260{width:12.609067pt;}
._17_c00260{width:13.818667pt;}
._5_c00260{width:15.788800pt;}
._3_c00260{width:18.739200pt;}
._9_c00260{width:20.001067pt;}
._8_c00260{width:21.606400pt;}
._1d_c00260{width:22.521600pt;}
._1b_c00260{width:24.180267pt;}
._18_c00260{width:25.139200pt;}
._1c_c00260{width:26.316800pt;}
._e_c00260{width:27.692800pt;}
._d_c00260{width:29.036800pt;}
._c_c00260{width:30.105600pt;}
._b_c00260{width:31.367467pt;}
._10_c00260{width:33.945600pt;}
._19_c00260{width:36.217600pt;}
.fs4_c00260{font-size:53.333333pt;}
.fs1_c00260{font-size:64.000000pt;}
.fs2_c00260{font-size:74.666667pt;}
.fs3_c00260{font-size:96.000000pt;}
.fs0_c00260{font-size:106.666667pt;}
.y0_c00260{bottom:0.000000pt;}
.y1e_c00260{bottom:59.853333pt;}
.y1c_c00260{bottom:149.186667pt;}
.y1b_c00260{bottom:173.186667pt;}
.y1a_c00260{bottom:197.186667pt;}
.y19_c00260{bottom:239.853333pt;}
.y18_c00260{bottom:263.853333pt;}
.y17_c00260{bottom:287.853333pt;}
.y16_c00260{bottom:311.853333pt;}
.y15_c00260{bottom:335.853333pt;}
.y14_c00260{bottom:378.520000pt;}
.y13_c00260{bottom:402.520000pt;}
.y12_c00260{bottom:426.520000pt;}
.y11_c00260{bottom:450.520000pt;}
.y10_c00260{bottom:493.186667pt;}
.yf_c00260{bottom:517.186667pt;}
.ye_c00260{bottom:541.186667pt;}
.yd_c00260{bottom:565.186667pt;}
.yc_c00260{bottom:589.186667pt;}
.yb_c00260{bottom:613.186667pt;}
.ya_c00260{bottom:637.186667pt;}
.y9_c00260{bottom:679.853333pt;}
.y8_c00260{bottom:703.853333pt;}
.y7_c00260{bottom:727.853333pt;}
.y6_c00260{bottom:751.853333pt;}
.y5_c00260{bottom:775.853333pt;}
.y4_c00260{bottom:799.853333pt;}
.y3_c00260{bottom:889.186667pt;}
.y2_c00260{bottom:923.853333pt;}
.y1_c00260{bottom:963.853333pt;}
.y1d_c00260{bottom:1061.186667pt;}
.h7_c00260{height:49.843750pt;}
.h6_c00260{height:60.218750pt;}
.h5_c00260{height:90.937500pt;}
.h3_c00260{height:101.041667pt;}
.h4_c00260{height:102.708333pt;}
.h2_c00260{height:1121.333333pt;}
.h0_c00260{height:1122.520000pt;}
.h1_c00260{height:1122.666667pt;}
.w2_c00260{width:793.333333pt;}
.w0_c00260{width:793.720000pt;}
.w1_c00260{width:794.000000pt;}
.x0_c00260{left:0.000000pt;}
.x1_c00260{left:133.795333pt;}
.x2_c00260{left:370.860267pt;}
.x3_c00260{left:713.269067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7c676d90e5c9a2ed64d911fa.woff2')format("woff");}.ff1_c00261{font-family:ff1_c00261;line-height:1.163086;font-style:normal;font-weight:normal;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_8a2d29b4e6503b3af8982de0.woff2')format("woff");}.ff2_c00261{font-family:ff2_c00261;line-height:0.756836;font-style:normal;font-weight:normal;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_15894c505f48e580b3374977.woff2')format("woff");}.ff3_c00261{font-family:ff3_c00261;line-height:1.155762;font-style: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;}
.ls1_c00261{letter-spacing:-0.007200px;}
.ls0_c00261{letter-spacing:0.000000px;}
.ls2_c00261{letter-spacing:0.012000px;}
.sc__c00261{text-shadow:none;}
.sc0_c00261{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00261{-webkit-text-stroke:0px transparent;}
.sc0_c00261{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00261{word-spacing:-19.800000px;}
.ws1_c00261{word-spacing:0.000000px;}
._19_c00261{margin-left:-10.584000px;}
._11_c00261{margin-left:-7.617600px;}
._17_c00261{margin-left:-6.544800px;}
._6_c00261{margin-left:-4.399200px;}
._e_c00261{margin-left:-2.671200px;}
._4_c00261{margin-left:-1.656000px;}
._0_c00261{width:1.274400px;}
._5_c00261{width:2.318400px;}
._3_c00261{width:4.291200px;}
._a_c00261{width:6.004800px;}
._1b_c00261{width:7.214400px;}
._9_c00261{width:8.373600px;}
._b_c00261{width:9.583200px;}
._8_c00261{width:10.692000px;}
._d_c00261{width:11.966400px;}
._1a_c00261{width:13.140000px;}
._c_c00261{width:14.716800px;}
._18_c00261{width:16.696800px;}
._10_c00261{width:18.734400px;}
._1_c00261{width:21.801600px;}
._2_c00261{width:23.104800px;}
._f_c00261{width:25.099200px;}
._7_c00261{width:27.446400px;}
._13_c00261{width:29.181600px;}
._14_c00261{width:30.528000px;}
._15_c00261{width:32.083200px;}
._16_c00261{width:33.177600px;}
._12_c00261{width:34.351200px;}
.fc0_c00261{color:rgb(0,0,0);}
.fs1_c00261{font-size:60.000000px;}
.fs0_c00261{font-size:72.000000px;}
.y0_c00261{bottom:0.000000px;}
.y1f_c00261{bottom:67.335000px;}
.y1d_c00261{bottom:191.835000px;}
.y1c_c00261{bottom:218.835000px;}
.y1b_c00261{bottom:245.835000px;}
.y1a_c00261{bottom:272.835000px;}
.y19_c00261{bottom:320.835000px;}
.y18_c00261{bottom:347.835000px;}
.y17_c00261{bottom:374.835000px;}
.y16_c00261{bottom:401.835000px;}
.y15_c00261{bottom:428.835000px;}
.y14_c00261{bottom:455.835000px;}
.y13_c00261{bottom:482.835000px;}
.y12_c00261{bottom:509.835000px;}
.y11_c00261{bottom:536.835000px;}
.y10_c00261{bottom:584.835000px;}
.yf_c00261{bottom:611.835000px;}
.ye_c00261{bottom:638.835000px;}
.yd_c00261{bottom:665.835000px;}
.yc_c00261{bottom:692.835000px;}
.yb_c00261{bottom:740.835000px;}
.ya_c00261{bottom:767.835000px;}
.y9_c00261{bottom:794.835000px;}
.y8_c00261{bottom:821.835000px;}
.y7_c00261{bottom:848.835000px;}
.y6_c00261{bottom:896.835000px;}
.y5_c00261{bottom:944.835000px;}
.y4_c00261{bottom:971.835000px;}
.y3_c00261{bottom:1019.835000px;}
.y2_c00261{bottom:1067.835000px;}
.y1_c00261{bottom:1094.835000px;}
.y1e_c00261{bottom:1193.835000px;}
.h5_c00261{height:44.208984px;}
.h4_c00261{height:56.074219px;}
.h3_c00261{height:67.746094px;}
.h2_c00261{height:1261.500000px;}
.h0_c00261{height:1262.835000px;}
.h1_c00261{height:1263.000000px;}
.w2_c00261{width:892.500000px;}
.w0_c00261{width:892.935000px;}
.w1_c00261{width:893.250000px;}
.x0_c00261{left:0.000000px;}
.x1_c00261{left:65.480310px;}
@media print{
.v0_c00261{vertical-align:0.000000pt;}
.ls1_c00261{letter-spacing:-0.006400pt;}
.ls0_c00261{letter-spacing:0.000000pt;}
.ls2_c00261{letter-spacing:0.010667pt;}
.ws0_c00261{word-spacing:-17.600000pt;}
.ws1_c00261{word-spacing:0.000000pt;}
._19_c00261{margin-left:-9.408000pt;}
._11_c00261{margin-left:-6.771200pt;}
._17_c00261{margin-left:-5.817600pt;}
._6_c00261{margin-left:-3.910400pt;}
._e_c00261{margin-left:-2.374400pt;}
._4_c00261{margin-left:-1.472000pt;}
._0_c00261{width:1.132800pt;}
._5_c00261{width:2.060800pt;}
._3_c00261{width:3.814400pt;}
._a_c00261{width:5.337600pt;}
._1b_c00261{width:6.412800pt;}
._9_c00261{width:7.443200pt;}
._b_c00261{width:8.518400pt;}
._8_c00261{width:9.504000pt;}
._d_c00261{width:10.636800pt;}
._1a_c00261{width:11.680000pt;}
._c_c00261{width:13.081600pt;}
._18_c00261{width:14.841600pt;}
._10_c00261{width:16.652800pt;}
._1_c00261{width:19.379200pt;}
._2_c00261{width:20.537600pt;}
._f_c00261{width:22.310400pt;}
._7_c00261{width:24.396800pt;}
._13_c00261{width:25.939200pt;}
._14_c00261{width:27.136000pt;}
._15_c00261{width:28.518400pt;}
._16_c00261{width:29.491200pt;}
._12_c00261{width:30.534400pt;}
.fs1_c00261{font-size:53.333333pt;}
.fs0_c00261{font-size:64.000000pt;}
.y0_c00261{bottom:0.000000pt;}
.y1f_c00261{bottom:59.853333pt;}
.y1d_c00261{bottom:170.520000pt;}
.y1c_c00261{bottom:194.520000pt;}
.y1b_c00261{bottom:218.520000pt;}
.y1a_c00261{bottom:242.520000pt;}
.y19_c00261{bottom:285.186667pt;}
.y18_c00261{bottom:309.186667pt;}
.y17_c00261{bottom:333.186667pt;}
.y16_c00261{bottom:357.186667pt;}
.y15_c00261{bottom:381.186667pt;}
.y14_c00261{bottom:405.186667pt;}
.y13_c00261{bottom:429.186667pt;}
.y12_c00261{bottom:453.186667pt;}
.y11_c00261{bottom:477.186667pt;}
.y10_c00261{bottom:519.853333pt;}
.yf_c00261{bottom:543.853333pt;}
.ye_c00261{bottom:567.853333pt;}
.yd_c00261{bottom:591.853333pt;}
.yc_c00261{bottom:615.853333pt;}
.yb_c00261{bottom:658.520000pt;}
.ya_c00261{bottom:682.520000pt;}
.y9_c00261{bottom:706.520000pt;}
.y8_c00261{bottom:730.520000pt;}
.y7_c00261{bottom:754.520000pt;}
.y6_c00261{bottom:797.186667pt;}
.y5_c00261{bottom:839.853333pt;}
.y4_c00261{bottom:863.853333pt;}
.y3_c00261{bottom:906.520000pt;}
.y2_c00261{bottom:949.186667pt;}
.y1_c00261{bottom:973.186667pt;}
.y1e_c00261{bottom:1061.186667pt;}
.h5_c00261{height:39.296875pt;}
.h4_c00261{height:49.843750pt;}
.h3_c00261{height:60.218750pt;}
.h2_c00261{height:1121.333333pt;}
.h0_c00261{height:1122.520000pt;}
.h1_c00261{height:1122.666667pt;}
.w2_c00261{width:793.333333pt;}
.w0_c00261{width:793.720000pt;}
.w1_c00261{width:794.000000pt;}
.x0_c00261{left:0.000000pt;}
.x1_c00261{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f1c8ea06bf99387a610d89ca.woff2')format("woff");}.ff1_c00262{font-family:ff1_c00262;line-height:1.155762;font-style:normal;font-weight:normal;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_59d767bc035960f8cd6cc602.woff2')format("woff");}.ff2_c00262{font-family:ff2_c00262;line-height:1.496000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00262{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00262{vertical-align:0.000000px;}
.ls3_c00262{letter-spacing:-0.008400px;}
.ls4_c00262{letter-spacing:0.000000px;}
.ls2_c00262{letter-spacing:0.012000px;}
.ls1_c00262{letter-spacing:0.070200px;}
.ls0_c00262{letter-spacing:0.615600px;}
.sc__c00262{text-shadow:none;}
.sc0_c00262{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00262{-webkit-text-stroke:0px transparent;}
.sc0_c00262{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00262{word-spacing:0.000000px;}
._f_c00262{margin-left:-5.562000px;}
._9_c00262{margin-left:-4.039200px;}
._7_c00262{margin-left:-2.943000px;}
._0_c00262{margin-left:-1.587600px;}
._3_c00262{width:1.539000px;}
._5_c00262{width:3.537000px;}
._6_c00262{width:5.281200px;}
._4_c00262{width:7.279200px;}
._2_c00262{width:8.818200px;}
._1_c00262{width:10.405800px;}
._8_c00262{width:11.761200px;}
._a_c00262{width:12.857400px;}
._c_c00262{width:13.894200px;}
._d_c00262{width:15.255000px;}
._b_c00262{width:16.432200px;}
._e_c00262{width:18.516600px;}
._13_c00262{width:19.818000px;}
._14_c00262{width:21.254400px;}
._18_c00262{width:24.591600px;}
._15_c00262{width:25.741800px;}
._11_c00262{width:26.859600px;}
._17_c00262{width:27.874800px;}
._12_c00262{width:28.927800px;}
._10_c00262{width:30.898800px;}
._16_c00262{width:32.545800px;}
.fc3_c00262{color:rgb(0,0,0);}
.fc2_c00262{color:rgb(69,39,0);}
.fc1_c00262{color:rgb(78,60,31);}
.fc0_c00262{color:rgb(128,98,51);}
.fs0_c00262{font-size:42.000000px;}
.fs3_c00262{font-size:54.000000px;}
.fs4_c00262{font-size:60.000000px;}
.fs2_c00262{font-size:72.000000px;}
.fs1_c00262{font-size:78.000000px;}
.y0_c00262{bottom:0.000000px;}
.y27_c00262{bottom:53.999985px;}
.y29_c00262{bottom:67.335000px;}
.y26_c00262{bottom:74.999985px;}
.y25_c00262{bottom:95.999985px;}
.y24_c00262{bottom:116.999985px;}
.y1_c00262{bottom:127.335015px;}
.y23_c00262{bottom:137.999985px;}
.y22_c00262{bottom:158.999985px;}
.y21_c00262{bottom:179.999985px;}
.y20_c00262{bottom:200.999985px;}
.y1f_c00262{bottom:221.999985px;}
.y1e_c00262{bottom:242.999985px;}
.y1d_c00262{bottom:263.999985px;}
.y1c_c00262{bottom:284.999985px;}
.y1b_c00262{bottom:305.999985px;}
.y1a_c00262{bottom:326.999985px;}
.y19_c00262{bottom:347.999985px;}
.y18_c00262{bottom:368.999985px;}
.y17_c00262{bottom:389.999985px;}
.y16_c00262{bottom:410.999985px;}
.y15_c00262{bottom:431.999985px;}
.y14_c00262{bottom:452.999985px;}
.y13_c00262{bottom:473.999985px;}
.y12_c00262{bottom:494.999985px;}
.y11_c00262{bottom:515.999985px;}
.y10_c00262{bottom:536.999985px;}
.yf_c00262{bottom:557.999985px;}
.ye_c00262{bottom:578.999985px;}
.yd_c00262{bottom:599.999985px;}
.yc_c00262{bottom:620.999985px;}
.yb_c00262{bottom:641.999985px;}
.ya_c00262{bottom:662.999985px;}
.y9_c00262{bottom:683.999985px;}
.y8_c00262{bottom:704.999985px;}
.y7_c00262{bottom:725.999985px;}
.y6_c00262{bottom:746.999985px;}
.y5_c00262{bottom:767.999985px;}
.y4_c00262{bottom:817.499985px;}
.y3_c00262{bottom:875.999985px;}
.y2_c00262{bottom:905.999985px;}
.y28_c00262{bottom:1193.835000px;}
.h7_c00262{height:56.074219px;}
.h5_c00262{height:57.348000px;}
.h4_c00262{height:76.464000px;}
.h3_c00262{height:82.836000px;}
.h2_c00262{height:985.500000px;}
.h6_c00262{height:1261.500000px;}
.h0_c00262{height:1262.835000px;}
.h1_c00262{height:1263.000000px;}
.w2_c00262{width:676.934850px;}
.w3_c00262{width:892.500000px;}
.w0_c00262{width:892.935000px;}
.w1_c00262{width:893.250000px;}
.x0_c00262{left:0.000000px;}
.x4_c00262{left:23.480220px;}
.x2_c00262{left:37.963320px;}
.x1_c00262{left:150.519750px;}
.x3_c00262{left:282.838500px;}
.x5_c00262{left:417.217800px;}
.x6_c00262{left:802.427700px;}
@media print{
.v0_c00262{vertical-align:0.000000pt;}
.ls3_c00262{letter-spacing:-0.007467pt;}
.ls4_c00262{letter-spacing:0.000000pt;}
.ls2_c00262{letter-spacing:0.010667pt;}
.ls1_c00262{letter-spacing:0.062400pt;}
.ls0_c00262{letter-spacing:0.547200pt;}
.ws0_c00262{word-spacing:0.000000pt;}
._f_c00262{margin-left:-4.944000pt;}
._9_c00262{margin-left:-3.590400pt;}
._7_c00262{margin-left:-2.616000pt;}
._0_c00262{margin-left:-1.411200pt;}
._3_c00262{width:1.368000pt;}
._5_c00262{width:3.144000pt;}
._6_c00262{width:4.694400pt;}
._4_c00262{width:6.470400pt;}
._2_c00262{width:7.838400pt;}
._1_c00262{width:9.249600pt;}
._8_c00262{width:10.454400pt;}
._a_c00262{width:11.428800pt;}
._c_c00262{width:12.350400pt;}
._d_c00262{width:13.560000pt;}
._b_c00262{width:14.606400pt;}
._e_c00262{width:16.459200pt;}
._13_c00262{width:17.616000pt;}
._14_c00262{width:18.892800pt;}
._18_c00262{width:21.859200pt;}
._15_c00262{width:22.881600pt;}
._11_c00262{width:23.875200pt;}
._17_c00262{width:24.777600pt;}
._12_c00262{width:25.713600pt;}
._10_c00262{width:27.465600pt;}
._16_c00262{width:28.929600pt;}
.fs0_c00262{font-size:37.333333pt;}
.fs3_c00262{font-size:48.000000pt;}
.fs4_c00262{font-size:53.333333pt;}
.fs2_c00262{font-size:64.000000pt;}
.fs1_c00262{font-size:69.333333pt;}
.y0_c00262{bottom:0.000000pt;}
.y27_c00262{bottom:47.999987pt;}
.y29_c00262{bottom:59.853333pt;}
.y26_c00262{bottom:66.666653pt;}
.y25_c00262{bottom:85.333320pt;}
.y24_c00262{bottom:103.999987pt;}
.y1_c00262{bottom:113.186680pt;}
.y23_c00262{bottom:122.666653pt;}
.y22_c00262{bottom:141.333320pt;}
.y21_c00262{bottom:159.999987pt;}
.y20_c00262{bottom:178.666653pt;}
.y1f_c00262{bottom:197.333320pt;}
.y1e_c00262{bottom:215.999987pt;}
.y1d_c00262{bottom:234.666653pt;}
.y1c_c00262{bottom:253.333320pt;}
.y1b_c00262{bottom:271.999987pt;}
.y1a_c00262{bottom:290.666653pt;}
.y19_c00262{bottom:309.333320pt;}
.y18_c00262{bottom:327.999987pt;}
.y17_c00262{bottom:346.666653pt;}
.y16_c00262{bottom:365.333320pt;}
.y15_c00262{bottom:383.999987pt;}
.y14_c00262{bottom:402.666653pt;}
.y13_c00262{bottom:421.333320pt;}
.y12_c00262{bottom:439.999987pt;}
.y11_c00262{bottom:458.666653pt;}
.y10_c00262{bottom:477.333320pt;}
.yf_c00262{bottom:495.999987pt;}
.ye_c00262{bottom:514.666653pt;}
.yd_c00262{bottom:533.333320pt;}
.yc_c00262{bottom:551.999987pt;}
.yb_c00262{bottom:570.666653pt;}
.ya_c00262{bottom:589.333320pt;}
.y9_c00262{bottom:607.999987pt;}
.y8_c00262{bottom:626.666653pt;}
.y7_c00262{bottom:645.333320pt;}
.y6_c00262{bottom:663.999987pt;}
.y5_c00262{bottom:682.666653pt;}
.y4_c00262{bottom:726.666653pt;}
.y3_c00262{bottom:778.666653pt;}
.y2_c00262{bottom:805.333320pt;}
.y28_c00262{bottom:1061.186667pt;}
.h7_c00262{height:49.843750pt;}
.h5_c00262{height:50.976000pt;}
.h4_c00262{height:67.968000pt;}
.h3_c00262{height:73.632000pt;}
.h2_c00262{height:876.000000pt;}
.h6_c00262{height:1121.333333pt;}
.h0_c00262{height:1122.520000pt;}
.h1_c00262{height:1122.666667pt;}
.w2_c00262{width:601.719867pt;}
.w3_c00262{width:793.333333pt;}
.w0_c00262{width:793.720000pt;}
.w1_c00262{width:794.000000pt;}
.x0_c00262{left:0.000000pt;}
.x4_c00262{left:20.871307pt;}
.x2_c00262{left:33.745173pt;}
.x1_c00262{left:133.795333pt;}
.x3_c00262{left:251.412000pt;}
.x5_c00262{left:370.860267pt;}
.x6_c00262{left:713.269067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6e5ea667c0026ba8e667f0f9.woff2')format("woff");}.ff1_c00263{font-family:ff1_c00263;line-height:1.496000;font-style:normal;font-weight:normal;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_4b9060fb1cdf323dd71458ea.woff2')format("woff");}.ff2_c00263{font-family:ff2_c00263;line-height:0.755859;font-style:normal;font-weight:normal;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_ebf8c80d67499aa34b1f10e7.woff2')format("woff");}.ff3_c00263{font-family:ff3_c00263;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00263{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00263{vertical-align:0.000000px;}
.ls1_c00263{letter-spacing:0.000000px;}
.ls2_c00263{letter-spacing:0.012000px;}
.ls0_c00263{letter-spacing:1.787400px;}
.sc__c00263{text-shadow:none;}
.sc0_c00263{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00263{-webkit-text-stroke:0px transparent;}
.sc0_c00263{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00263{word-spacing:0.000000px;}
._2_c00263{margin-left:-5.599800px;}
._10_c00263{margin-left:-4.444200px;}
._4_c00263{margin-left:-3.202200px;}
._7_c00263{margin-left:-1.512000px;}
._0_c00263{width:2.008800px;}
._c_c00263{width:3.369600px;}
._6_c00263{width:4.536000px;}
._1_c00263{width:5.540400px;}
._f_c00263{width:6.879600px;}
._5_c00263{width:7.981200px;}
._3_c00263{width:9.622800px;}
._13_c00263{width:10.681200px;}
._e_c00263{width:11.696400px;}
._14_c00263{width:13.564800px;}
._d_c00263{width:14.590800px;}
._b_c00263{width:16.205400px;}
._15_c00263{width:17.620200px;}
._a_c00263{width:18.716400px;}
._12_c00263{width:19.904400px;}
._9_c00263{width:21.027600px;}
._8_c00263{width:24.229800px;}
._11_c00263{width:26.217000px;}
._18_c00263{width:27.518400px;}
._17_c00263{width:28.765800px;}
._16_c00263{width:29.916000px;}
.fc1_c00263{color:rgb(0,0,0);}
.fc0_c00263{color:rgb(69,39,0);}
.fs0_c00263{font-size:54.000000px;}
.fs1_c00263{font-size:60.000000px;}
.y0_c00263{bottom:0.000000px;}
.y29_c00263{bottom:67.335000px;}
.y27_c00263{bottom:232.335000px;}
.y26_c00263{bottom:253.335000px;}
.y25_c00263{bottom:274.335000px;}
.y24_c00263{bottom:295.335000px;}
.y23_c00263{bottom:337.335000px;}
.y22_c00263{bottom:358.335000px;}
.y21_c00263{bottom:379.335000px;}
.y20_c00263{bottom:400.335000px;}
.y1f_c00263{bottom:421.335000px;}
.y1e_c00263{bottom:442.335000px;}
.y1d_c00263{bottom:463.335000px;}
.y1c_c00263{bottom:484.335000px;}
.y1b_c00263{bottom:505.335000px;}
.y1a_c00263{bottom:526.335000px;}
.y19_c00263{bottom:547.335000px;}
.y18_c00263{bottom:568.335000px;}
.y17_c00263{bottom:589.335000px;}
.y16_c00263{bottom:610.335000px;}
.y15_c00263{bottom:631.335000px;}
.y14_c00263{bottom:652.335000px;}
.y13_c00263{bottom:673.335000px;}
.y12_c00263{bottom:694.335000px;}
.y11_c00263{bottom:715.335000px;}
.y10_c00263{bottom:736.335000px;}
.yf_c00263{bottom:757.335000px;}
.ye_c00263{bottom:778.335000px;}
.yd_c00263{bottom:799.335000px;}
.yc_c00263{bottom:820.335000px;}
.yb_c00263{bottom:841.335000px;}
.ya_c00263{bottom:862.335000px;}
.y9_c00263{bottom:883.335000px;}
.y8_c00263{bottom:904.335000px;}
.y7_c00263{bottom:925.335000px;}
.y6_c00263{bottom:946.335000px;}
.y5_c00263{bottom:967.335000px;}
.y4_c00263{bottom:988.335000px;}
.y3_c00263{bottom:1009.335000px;}
.y2_c00263{bottom:1030.335000px;}
.y1_c00263{bottom:1051.335000px;}
.y28_c00263{bottom:1193.835000px;}
.h5_c00263{height:44.208984px;}
.h4_c00263{height:56.074219px;}
.h3_c00263{height:57.348000px;}
.h2_c00263{height:1261.500000px;}
.h0_c00263{height:1262.835000px;}
.h1_c00263{height:1263.000000px;}
.w2_c00263{width:676.935000px;}
.w3_c00263{width:892.500000px;}
.w0_c00263{width:892.935000px;}
.w1_c00263{width:893.250000px;}
.x0_c00263{left:0.000000px;}
.x2_c00263{left:23.019660px;}
.x1_c00263{left:65.480310px;}
@media print{
.v0_c00263{vertical-align:0.000000pt;}
.ls1_c00263{letter-spacing:0.000000pt;}
.ls2_c00263{letter-spacing:0.010667pt;}
.ls0_c00263{letter-spacing:1.588800pt;}
.ws0_c00263{word-spacing:0.000000pt;}
._2_c00263{margin-left:-4.977600pt;}
._10_c00263{margin-left:-3.950400pt;}
._4_c00263{margin-left:-2.846400pt;}
._7_c00263{margin-left:-1.344000pt;}
._0_c00263{width:1.785600pt;}
._c_c00263{width:2.995200pt;}
._6_c00263{width:4.032000pt;}
._1_c00263{width:4.924800pt;}
._f_c00263{width:6.115200pt;}
._5_c00263{width:7.094400pt;}
._3_c00263{width:8.553600pt;}
._13_c00263{width:9.494400pt;}
._e_c00263{width:10.396800pt;}
._14_c00263{width:12.057600pt;}
._d_c00263{width:12.969600pt;}
._b_c00263{width:14.404800pt;}
._15_c00263{width:15.662400pt;}
._a_c00263{width:16.636800pt;}
._12_c00263{width:17.692800pt;}
._9_c00263{width:18.691200pt;}
._8_c00263{width:21.537600pt;}
._11_c00263{width:23.304000pt;}
._18_c00263{width:24.460800pt;}
._17_c00263{width:25.569600pt;}
._16_c00263{width:26.592000pt;}
.fs0_c00263{font-size:48.000000pt;}
.fs1_c00263{font-size:53.333333pt;}
.y0_c00263{bottom:0.000000pt;}
.y29_c00263{bottom:59.853333pt;}
.y27_c00263{bottom:206.520000pt;}
.y26_c00263{bottom:225.186667pt;}
.y25_c00263{bottom:243.853333pt;}
.y24_c00263{bottom:262.520000pt;}
.y23_c00263{bottom:299.853333pt;}
.y22_c00263{bottom:318.520000pt;}
.y21_c00263{bottom:337.186667pt;}
.y20_c00263{bottom:355.853333pt;}
.y1f_c00263{bottom:374.520000pt;}
.y1e_c00263{bottom:393.186667pt;}
.y1d_c00263{bottom:411.853333pt;}
.y1c_c00263{bottom:430.520000pt;}
.y1b_c00263{bottom:449.186667pt;}
.y1a_c00263{bottom:467.853333pt;}
.y19_c00263{bottom:486.520000pt;}
.y18_c00263{bottom:505.186667pt;}
.y17_c00263{bottom:523.853333pt;}
.y16_c00263{bottom:542.520000pt;}
.y15_c00263{bottom:561.186667pt;}
.y14_c00263{bottom:579.853333pt;}
.y13_c00263{bottom:598.520000pt;}
.y12_c00263{bottom:617.186667pt;}
.y11_c00263{bottom:635.853333pt;}
.y10_c00263{bottom:654.520000pt;}
.yf_c00263{bottom:673.186667pt;}
.ye_c00263{bottom:691.853333pt;}
.yd_c00263{bottom:710.520000pt;}
.yc_c00263{bottom:729.186667pt;}
.yb_c00263{bottom:747.853333pt;}
.ya_c00263{bottom:766.520000pt;}
.y9_c00263{bottom:785.186667pt;}
.y8_c00263{bottom:803.853333pt;}
.y7_c00263{bottom:822.520000pt;}
.y6_c00263{bottom:841.186667pt;}
.y5_c00263{bottom:859.853333pt;}
.y4_c00263{bottom:878.520000pt;}
.y3_c00263{bottom:897.186667pt;}
.y2_c00263{bottom:915.853333pt;}
.y1_c00263{bottom:934.520000pt;}
.y28_c00263{bottom:1061.186667pt;}
.h5_c00263{height:39.296875pt;}
.h4_c00263{height:49.843750pt;}
.h3_c00263{height:50.976000pt;}
.h2_c00263{height:1121.333333pt;}
.h0_c00263{height:1122.520000pt;}
.h1_c00263{height:1122.666667pt;}
.w2_c00263{width:601.720000pt;}
.w3_c00263{width:793.333333pt;}
.w0_c00263{width:793.720000pt;}
.w1_c00263{width:794.000000pt;}
.x0_c00263{left:0.000000pt;}
.x2_c00263{left:20.461920pt;}
.x1_c00263{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8d9dd1ff1a09141edb923582.woff2')format("woff");}.ff1_c00264{font-family:ff1_c00264;line-height:1.496000;font-style:normal;font-weight:normal;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_497306ef04cff1ba487de758.woff2')format("woff");}.ff2_c00264{font-family:ff2_c00264;line-height:1.173828;font-style:normal;font-weight:normal;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_5b58dc7b92a4029520f0b91e.woff2')format("woff");}.ff3_c00264{font-family:ff3_c00264;line-height:0.738770;font-style:normal;font-weight:normal;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_64945878db6ce380982c8297.woff2')format("woff");}.ff4_c00264{font-family:ff4_c00264;line-height:1.163086;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00264;src:url('chunks/assets/font_8dcba16f398ce7e7c9431504.woff2')format("woff");}.ff5_c00264{font-family:ff5_c00264;line-height:1.155762;font-style: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;}
.ls5_c00264{letter-spacing:0.000000px;}
.ls3_c00264{letter-spacing:0.010800px;}
.ls4_c00264{letter-spacing:0.012000px;}
.ls1_c00264{letter-spacing:0.924000px;}
.ls0_c00264{letter-spacing:2.292000px;}
.ls2_c00264{letter-spacing:2.808000px;}
.sc__c00264{text-shadow:none;}
.sc0_c00264{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00264{-webkit-text-stroke:0px transparent;}
.sc0_c00264{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00264{word-spacing:-0.064800px;}
.ws1_c00264{word-spacing:0.000000px;}
._19_c00264{margin-left:-10.584000px;}
._14_c00264{margin-left:-7.140000px;}
._8_c00264{margin-left:-5.832000px;}
._1_c00264{margin-left:-4.152600px;}
._3_c00264{margin-left:-2.532600px;}
._7_c00264{margin-left:-1.101600px;}
._5_c00264{width:1.603800px;}
._0_c00264{width:2.921400px;}
._6_c00264{width:4.422600px;}
._4_c00264{width:5.454000px;}
._2_c00264{width:7.074000px;}
._f_c00264{width:10.589400px;}
._1a_c00264{width:11.905200px;}
._d_c00264{width:13.122000px;}
._e_c00264{width:14.742000px;}
._10_c00264{width:16.026000px;}
._12_c00264{width:17.115600px;}
._11_c00264{width:18.232800px;}
._18_c00264{width:19.304400px;}
._17_c00264{width:20.373000px;}
._b_c00264{width:21.708000px;}
._16_c00264{width:23.475000px;}
._a_c00264{width:26.130600px;}
._c_c00264{width:28.657800px;}
._9_c00264{width:30.283200px;}
._13_c00264{width:31.288800px;}
._15_c00264{width:32.940000px;}
.fc1_c00264{color:rgb(0,0,0);}
.fc0_c00264{color:rgb(69,39,0);}
.fs0_c00264{font-size:54.000000px;}
.fs1_c00264{font-size:60.000000px;}
.fs2_c00264{font-size:72.000000px;}
.y0_c00264{bottom:0.000000px;}
.y21_c00264{bottom:67.335000px;}
.y1f_c00264{bottom:184.335000px;}
.y1e_c00264{bottom:211.335000px;}
.y1d_c00264{bottom:238.335000px;}
.y1c_c00264{bottom:265.335000px;}
.y1b_c00264{bottom:292.335000px;}
.y1a_c00264{bottom:340.335000px;}
.y19_c00264{bottom:367.335000px;}
.y18_c00264{bottom:394.335000px;}
.y17_c00264{bottom:442.335000px;}
.y16_c00264{bottom:469.335000px;}
.y15_c00264{bottom:496.335000px;}
.y14_c00264{bottom:523.335000px;}
.y13_c00264{bottom:550.335000px;}
.y12_c00264{bottom:577.335000px;}
.y11_c00264{bottom:604.335000px;}
.y10_c00264{bottom:697.335000px;}
.yf_c00264{bottom:713.835000px;}
.ye_c00264{bottom:754.335000px;}
.yd_c00264{bottom:776.835000px;}
.yc_c00264{bottom:799.335000px;}
.yb_c00264{bottom:821.835000px;}
.ya_c00264{bottom:844.335000px;}
.y9_c00264{bottom:866.835000px;}
.y8_c00264{bottom:889.335000px;}
.y7_c00264{bottom:911.835000px;}
.y6_c00264{bottom:934.335000px;}
.y5_c00264{bottom:956.835000px;}
.y4_c00264{bottom:1000.335000px;}
.y3_c00264{bottom:1021.335000px;}
.y2_c00264{bottom:1042.335000px;}
.y1_c00264{bottom:1063.335000px;}
.y20_c00264{bottom:1193.835000px;}
.h5_c00264{height:48.858398px;}
.h7_c00264{height:56.074219px;}
.h3_c00264{height:57.348000px;}
.h4_c00264{height:63.720000px;}
.h6_c00264{height:67.746094px;}
.h2_c00264{height:1261.500000px;}
.h0_c00264{height:1262.835000px;}
.h1_c00264{height:1263.000000px;}
.w2_c00264{width:676.934850px;}
.w3_c00264{width:892.500000px;}
.w0_c00264{width:892.935000px;}
.w1_c00264{width:893.250000px;}
.x0_c00264{left:0.000000px;}
.x2_c00264{left:23.480235px;}
.x1_c00264{left:150.519750px;}
.x3_c00264{left:417.217800px;}
.x4_c00264{left:802.427700px;}
@media print{
.v0_c00264{vertical-align:0.000000pt;}
.ls5_c00264{letter-spacing:0.000000pt;}
.ls3_c00264{letter-spacing:0.009600pt;}
.ls4_c00264{letter-spacing:0.010667pt;}
.ls1_c00264{letter-spacing:0.821333pt;}
.ls0_c00264{letter-spacing:2.037333pt;}
.ls2_c00264{letter-spacing:2.496000pt;}
.ws0_c00264{word-spacing:-0.057600pt;}
.ws1_c00264{word-spacing:0.000000pt;}
._19_c00264{margin-left:-9.408000pt;}
._14_c00264{margin-left:-6.346667pt;}
._8_c00264{margin-left:-5.184000pt;}
._1_c00264{margin-left:-3.691200pt;}
._3_c00264{margin-left:-2.251200pt;}
._7_c00264{margin-left:-0.979200pt;}
._5_c00264{width:1.425600pt;}
._0_c00264{width:2.596800pt;}
._6_c00264{width:3.931200pt;}
._4_c00264{width:4.848000pt;}
._2_c00264{width:6.288000pt;}
._f_c00264{width:9.412800pt;}
._1a_c00264{width:10.582400pt;}
._d_c00264{width:11.664000pt;}
._e_c00264{width:13.104000pt;}
._10_c00264{width:14.245333pt;}
._12_c00264{width:15.213867pt;}
._11_c00264{width:16.206933pt;}
._18_c00264{width:17.159467pt;}
._17_c00264{width:18.109333pt;}
._b_c00264{width:19.296000pt;}
._16_c00264{width:20.866667pt;}
._a_c00264{width:23.227200pt;}
._c_c00264{width:25.473600pt;}
._9_c00264{width:26.918400pt;}
._13_c00264{width:27.812267pt;}
._15_c00264{width:29.280000pt;}
.fs0_c00264{font-size:48.000000pt;}
.fs1_c00264{font-size:53.333333pt;}
.fs2_c00264{font-size:64.000000pt;}
.y0_c00264{bottom:0.000000pt;}
.y21_c00264{bottom:59.853333pt;}
.y1f_c00264{bottom:163.853333pt;}
.y1e_c00264{bottom:187.853333pt;}
.y1d_c00264{bottom:211.853333pt;}
.y1c_c00264{bottom:235.853333pt;}
.y1b_c00264{bottom:259.853333pt;}
.y1a_c00264{bottom:302.520000pt;}
.y19_c00264{bottom:326.520000pt;}
.y18_c00264{bottom:350.520000pt;}
.y17_c00264{bottom:393.186667pt;}
.y16_c00264{bottom:417.186667pt;}
.y15_c00264{bottom:441.186667pt;}
.y14_c00264{bottom:465.186667pt;}
.y13_c00264{bottom:489.186667pt;}
.y12_c00264{bottom:513.186667pt;}
.y11_c00264{bottom:537.186667pt;}
.y10_c00264{bottom:619.853333pt;}
.yf_c00264{bottom:634.520000pt;}
.ye_c00264{bottom:670.520000pt;}
.yd_c00264{bottom:690.520000pt;}
.yc_c00264{bottom:710.520000pt;}
.yb_c00264{bottom:730.520000pt;}
.ya_c00264{bottom:750.520000pt;}
.y9_c00264{bottom:770.520000pt;}
.y8_c00264{bottom:790.520000pt;}
.y7_c00264{bottom:810.520000pt;}
.y6_c00264{bottom:830.520000pt;}
.y5_c00264{bottom:850.520000pt;}
.y4_c00264{bottom:889.186667pt;}
.y3_c00264{bottom:907.853333pt;}
.y2_c00264{bottom:926.520000pt;}
.y1_c00264{bottom:945.186667pt;}
.y20_c00264{bottom:1061.186667pt;}
.h5_c00264{height:43.429688pt;}
.h7_c00264{height:49.843750pt;}
.h3_c00264{height:50.976000pt;}
.h4_c00264{height:56.640000pt;}
.h6_c00264{height:60.218750pt;}
.h2_c00264{height:1121.333333pt;}
.h0_c00264{height:1122.520000pt;}
.h1_c00264{height:1122.666667pt;}
.w2_c00264{width:601.719867pt;}
.w3_c00264{width:793.333333pt;}
.w0_c00264{width:793.720000pt;}
.w1_c00264{width:794.000000pt;}
.x0_c00264{left:0.000000pt;}
.x2_c00264{left:20.871320pt;}
.x1_c00264{left:133.795333pt;}
.x3_c00264{left:370.860267pt;}
.x4_c00264{left:713.269067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f51b57952c22d96c32b21847.woff2')format("woff");}.ff1_c00265{font-family:ff1_c00265;line-height:1.163086;font-style:normal;font-weight:normal;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_0ed7f646b3f1611a985ed47d.woff2')format("woff");}.ff2_c00265{font-family:ff2_c00265;line-height:0.915527;font-style:normal;font-weight:normal;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_4509c68e2b5f81d658b55c6f.woff2')format("woff");}.ff3_c00265{font-family:ff3_c00265;line-height:0.755859;font-style:normal;font-weight:normal;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_776d2d90e32111825e5e3009.woff2')format("woff");}.ff4_c00265{font-family:ff4_c00265;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00265{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00265{vertical-align:0.000000px;}
.ls0_c00265{letter-spacing:0.000000px;}
.ls1_c00265{letter-spacing:0.012000px;}
.sc__c00265{text-shadow:none;}
.sc0_c00265{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00265{-webkit-text-stroke:0px transparent;}
.sc0_c00265{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00265{word-spacing:0.000000px;}
._5_c00265{margin-left:-4.449600px;}
._1_c00265{margin-left:-2.736000px;}
._4_c00265{margin-left:-1.144800px;}
._2_c00265{width:1.627200px;}
._3_c00265{width:2.815200px;}
._0_c00265{width:4.464000px;}
._6_c00265{width:6.062400px;}
._c_c00265{width:7.200000px;}
._9_c00265{width:8.935200px;}
._b_c00265{width:10.159200px;}
._8_c00265{width:11.757600px;}
._7_c00265{width:12.895200px;}
._a_c00265{width:14.522400px;}
.fc0_c00265{color:rgb(0,0,0);}
.fs1_c00265{font-size:54.000000px;}
.fs2_c00265{font-size:60.000000px;}
.fs0_c00265{font-size:72.000000px;}
.y0_c00265{bottom:0.000000px;}
.yd_c00265{bottom:10.500000px;}
.yf_c00265{bottom:67.335000px;}
.yc_c00265{bottom:193.335000px;}
.yb_c00265{bottom:782.835000px;}
.ya_c00265{bottom:809.835000px;}
.y9_c00265{bottom:836.835000px;}
.y8_c00265{bottom:863.835000px;}
.y7_c00265{bottom:890.835000px;}
.y6_c00265{bottom:938.835000px;}
.y5_c00265{bottom:965.835000px;}
.y4_c00265{bottom:992.835000px;}
.y3_c00265{bottom:1019.835000px;}
.y2_c00265{bottom:1067.835000px;}
.y1_c00265{bottom:1094.835000px;}
.ye_c00265{bottom:1193.835000px;}
.h5_c00265{height:41.633789px;}
.h7_c00265{height:44.208984px;}
.h6_c00265{height:56.074219px;}
.h3_c00265{height:67.746094px;}
.h4_c00265{height:558.000000px;}
.h2_c00265{height:1261.500000px;}
.h0_c00265{height:1262.835000px;}
.h1_c00265{height:1263.000000px;}
.w3_c00265{width:676.935000px;}
.w2_c00265{width:892.500000px;}
.w0_c00265{width:892.935000px;}
.w1_c00265{width:893.250000px;}
.x0_c00265{left:0.000000px;}
.x1_c00265{left:65.480310px;}
.x2_c00265{left:282.107550px;}
@media print{
.v0_c00265{vertical-align:0.000000pt;}
.ls0_c00265{letter-spacing:0.000000pt;}
.ls1_c00265{letter-spacing:0.010667pt;}
.ws0_c00265{word-spacing:0.000000pt;}
._5_c00265{margin-left:-3.955200pt;}
._1_c00265{margin-left:-2.432000pt;}
._4_c00265{margin-left:-1.017600pt;}
._2_c00265{width:1.446400pt;}
._3_c00265{width:2.502400pt;}
._0_c00265{width:3.968000pt;}
._6_c00265{width:5.388800pt;}
._c_c00265{width:6.400000pt;}
._9_c00265{width:7.942400pt;}
._b_c00265{width:9.030400pt;}
._8_c00265{width:10.451200pt;}
._7_c00265{width:11.462400pt;}
._a_c00265{width:12.908800pt;}
.fs1_c00265{font-size:48.000000pt;}
.fs2_c00265{font-size:53.333333pt;}
.fs0_c00265{font-size:64.000000pt;}
.y0_c00265{bottom:0.000000pt;}
.yd_c00265{bottom:9.333333pt;}
.yf_c00265{bottom:59.853333pt;}
.yc_c00265{bottom:171.853333pt;}
.yb_c00265{bottom:695.853333pt;}
.ya_c00265{bottom:719.853333pt;}
.y9_c00265{bottom:743.853333pt;}
.y8_c00265{bottom:767.853333pt;}
.y7_c00265{bottom:791.853333pt;}
.y6_c00265{bottom:834.520000pt;}
.y5_c00265{bottom:858.520000pt;}
.y4_c00265{bottom:882.520000pt;}
.y3_c00265{bottom:906.520000pt;}
.y2_c00265{bottom:949.186667pt;}
.y1_c00265{bottom:973.186667pt;}
.ye_c00265{bottom:1061.186667pt;}
.h5_c00265{height:37.007812pt;}
.h7_c00265{height:39.296875pt;}
.h6_c00265{height:49.843750pt;}
.h3_c00265{height:60.218750pt;}
.h4_c00265{height:496.000000pt;}
.h2_c00265{height:1121.333333pt;}
.h0_c00265{height:1122.520000pt;}
.h1_c00265{height:1122.666667pt;}
.w3_c00265{width:601.720000pt;}
.w2_c00265{width:793.333333pt;}
.w0_c00265{width:793.720000pt;}
.w1_c00265{width:794.000000pt;}
.x0_c00265{left:0.000000pt;}
.x1_c00265{left:58.204720pt;}
.x2_c00265{left:250.762267pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3e275383a8a838a58127521f.woff2')format("woff");}.ff1_c00266{font-family:ff1_c00266;line-height:1.163086;font-style:normal;font-weight:normal;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_f2c70ef7fae2d31c9dd4124e.woff2')format("woff");}.ff2_c00266{font-family:ff2_c00266;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00266{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00266{vertical-align:0.000000px;}
.ls1_c00266{letter-spacing:0.000000px;}
.ls0_c00266{letter-spacing:0.012000px;}
.sc__c00266{text-shadow:none;}
.sc0_c00266{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00266{-webkit-text-stroke:0px transparent;}
.sc0_c00266{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00266{word-spacing:-19.800000px;}
.ws1_c00266{word-spacing:0.000000px;}
._6_c00266{margin-left:-10.512000px;}
._17_c00266{margin-left:-6.868800px;}
._13_c00266{margin-left:-4.622400px;}
._d_c00266{margin-left:-3.326400px;}
._1_c00266{margin-left:-1.864800px;}
._4_c00266{width:1.944000px;}
._0_c00266{width:2.995200px;}
._3_c00266{width:4.982400px;}
._5_c00266{width:6.948000px;}
._15_c00266{width:8.100000px;}
._2_c00266{width:9.727200px;}
._16_c00266{width:11.268000px;}
._7_c00266{width:12.729600px;}
._11_c00266{width:14.443200px;}
._8_c00266{width:15.840000px;}
._a_c00266{width:17.654400px;}
._9_c00266{width:18.727200px;}
._14_c00266{width:20.995200px;}
._f_c00266{width:22.176000px;}
._b_c00266{width:24.580800px;}
._c_c00266{width:26.481600px;}
._10_c00266{width:28.339200px;}
._e_c00266{width:29.750400px;}
._12_c00266{width:31.348800px;}
._19_c00266{width:32.400000px;}
._18_c00266{width:33.868800px;}
.fc0_c00266{color:rgb(0,0,0);}
.fs1_c00266{font-size:60.000000px;}
.fs0_c00266{font-size:72.000000px;}
.y0_c00266{bottom:0.000000px;}
.y1f_c00266{bottom:67.335000px;}
.y1d_c00266{bottom:275.835000px;}
.y1c_c00266{bottom:302.835000px;}
.y1b_c00266{bottom:329.835000px;}
.y1a_c00266{bottom:356.835000px;}
.y19_c00266{bottom:383.835000px;}
.y18_c00266{bottom:431.835000px;}
.y17_c00266{bottom:458.835000px;}
.y16_c00266{bottom:485.835000px;}
.y15_c00266{bottom:512.835000px;}
.y14_c00266{bottom:539.835000px;}
.y13_c00266{bottom:566.835000px;}
.y12_c00266{bottom:614.835000px;}
.y11_c00266{bottom:641.835000px;}
.y10_c00266{bottom:668.835000px;}
.yf_c00266{bottom:695.835000px;}
.ye_c00266{bottom:722.835000px;}
.yd_c00266{bottom:749.835000px;}
.yc_c00266{bottom:776.835000px;}
.yb_c00266{bottom:803.835000px;}
.ya_c00266{bottom:830.835000px;}
.y9_c00266{bottom:878.835000px;}
.y8_c00266{bottom:905.835000px;}
.y7_c00266{bottom:932.835000px;}
.y6_c00266{bottom:959.835000px;}
.y5_c00266{bottom:986.835000px;}
.y4_c00266{bottom:1013.835000px;}
.y3_c00266{bottom:1040.835000px;}
.y2_c00266{bottom:1067.835000px;}
.y1_c00266{bottom:1094.835000px;}
.y1e_c00266{bottom:1193.835000px;}
.h4_c00266{height:56.074219px;}
.h3_c00266{height:67.746094px;}
.h2_c00266{height:1261.500000px;}
.h0_c00266{height:1262.835000px;}
.h1_c00266{height:1263.000000px;}
.w2_c00266{width:892.500000px;}
.w0_c00266{width:892.935000px;}
.w1_c00266{width:893.250000px;}
.x0_c00266{left:0.000000px;}
.x1_c00266{left:150.519750px;}
.x2_c00266{left:417.217800px;}
.x3_c00266{left:802.427700px;}
@media print{
.v0_c00266{vertical-align:0.000000pt;}
.ls1_c00266{letter-spacing:0.000000pt;}
.ls0_c00266{letter-spacing:0.010667pt;}
.ws0_c00266{word-spacing:-17.600000pt;}
.ws1_c00266{word-spacing:0.000000pt;}
._6_c00266{margin-left:-9.344000pt;}
._17_c00266{margin-left:-6.105600pt;}
._13_c00266{margin-left:-4.108800pt;}
._d_c00266{margin-left:-2.956800pt;}
._1_c00266{margin-left:-1.657600pt;}
._4_c00266{width:1.728000pt;}
._0_c00266{width:2.662400pt;}
._3_c00266{width:4.428800pt;}
._5_c00266{width:6.176000pt;}
._15_c00266{width:7.200000pt;}
._2_c00266{width:8.646400pt;}
._16_c00266{width:10.016000pt;}
._7_c00266{width:11.315200pt;}
._11_c00266{width:12.838400pt;}
._8_c00266{width:14.080000pt;}
._a_c00266{width:15.692800pt;}
._9_c00266{width:16.646400pt;}
._14_c00266{width:18.662400pt;}
._f_c00266{width:19.712000pt;}
._b_c00266{width:21.849600pt;}
._c_c00266{width:23.539200pt;}
._10_c00266{width:25.190400pt;}
._e_c00266{width:26.444800pt;}
._12_c00266{width:27.865600pt;}
._19_c00266{width:28.800000pt;}
._18_c00266{width:30.105600pt;}
.fs1_c00266{font-size:53.333333pt;}
.fs0_c00266{font-size:64.000000pt;}
.y0_c00266{bottom:0.000000pt;}
.y1f_c00266{bottom:59.853333pt;}
.y1d_c00266{bottom:245.186667pt;}
.y1c_c00266{bottom:269.186667pt;}
.y1b_c00266{bottom:293.186667pt;}
.y1a_c00266{bottom:317.186667pt;}
.y19_c00266{bottom:341.186667pt;}
.y18_c00266{bottom:383.853333pt;}
.y17_c00266{bottom:407.853333pt;}
.y16_c00266{bottom:431.853333pt;}
.y15_c00266{bottom:455.853333pt;}
.y14_c00266{bottom:479.853333pt;}
.y13_c00266{bottom:503.853333pt;}
.y12_c00266{bottom:546.520000pt;}
.y11_c00266{bottom:570.520000pt;}
.y10_c00266{bottom:594.520000pt;}
.yf_c00266{bottom:618.520000pt;}
.ye_c00266{bottom:642.520000pt;}
.yd_c00266{bottom:666.520000pt;}
.yc_c00266{bottom:690.520000pt;}
.yb_c00266{bottom:714.520000pt;}
.ya_c00266{bottom:738.520000pt;}
.y9_c00266{bottom:781.186667pt;}
.y8_c00266{bottom:805.186667pt;}
.y7_c00266{bottom:829.186667pt;}
.y6_c00266{bottom:853.186667pt;}
.y5_c00266{bottom:877.186667pt;}
.y4_c00266{bottom:901.186667pt;}
.y3_c00266{bottom:925.186667pt;}
.y2_c00266{bottom:949.186667pt;}
.y1_c00266{bottom:973.186667pt;}
.y1e_c00266{bottom:1061.186667pt;}
.h4_c00266{height:49.843750pt;}
.h3_c00266{height:60.218750pt;}
.h2_c00266{height:1121.333333pt;}
.h0_c00266{height:1122.520000pt;}
.h1_c00266{height:1122.666667pt;}
.w2_c00266{width:793.333333pt;}
.w0_c00266{width:793.720000pt;}
.w1_c00266{width:794.000000pt;}
.x0_c00266{left:0.000000pt;}
.x1_c00266{left:133.795333pt;}
.x2_c00266{left:370.860267pt;}
.x3_c00266{left:713.269067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4fab698c103f3d74d8b6a880.woff2')format("woff");}.ff1_c00267{font-family:ff1_c00267;line-height:0.987793;font-style:normal;font-weight:normal;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_01655c0ee47a4062f72137dc.woff2')format("woff");}.ff2_c00267{font-family:ff2_c00267;line-height:1.163086;font-style:normal;font-weight:normal;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_f3eaa81adaf963f670ae440d.woff2')format("woff");}.ff3_c00267{font-family:ff3_c00267;line-height:0.755859;font-style:normal;font-weight:normal;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_960fc56b4e7745d75e71cfbb.woff2')format("woff");}.ff4_c00267{font-family:ff4_c00267;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00267{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00267{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00267{vertical-align:0.000000px;}
.ls0_c00267{letter-spacing:0.000000px;}
.ls1_c00267{letter-spacing:0.010800px;}
.ls2_c00267{letter-spacing:0.012000px;}
.sc__c00267{text-shadow:none;}
.sc0_c00267{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00267{-webkit-text-stroke:0px transparent;}
.sc0_c00267{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00267{word-spacing:-17.064000px;}
.ws1_c00267{word-spacing:0.000000px;}
._d_c00267{margin-left:-10.692000px;}
._6_c00267{margin-left:-3.261600px;}
._1_c00267{margin-left:-1.864800px;}
._4_c00267{width:1.972800px;}
._0_c00267{width:2.995200px;}
._5_c00267{width:4.514400px;}
._3_c00267{width:5.738400px;}
._2_c00267{width:7.315200px;}
._e_c00267{width:8.553600px;}
._9_c00267{width:10.620000px;}
._c_c00267{width:12.132000px;}
._a_c00267{width:13.176000px;}
._b_c00267{width:15.019200px;}
._8_c00267{width:16.927200px;}
._7_c00267{width:18.396000px;}
.fc1_c00267{color:rgb(0,0,153);}
.fc0_c00267{color:rgb(0,0,0);}
.fs0_c00267{font-size:54.000000px;}
.fs2_c00267{font-size:60.000000px;}
.fs1_c00267{font-size:72.000000px;}
.y0_c00267{bottom:0.000000px;}
.y3_c00267{bottom:10.500000px;}
.y2_c00267{bottom:43.500000px;}
.y13_c00267{bottom:67.335000px;}
.y11_c00267{bottom:131.835000px;}
.y10_c00267{bottom:158.835000px;}
.yf_c00267{bottom:185.835000px;}
.ye_c00267{bottom:212.835000px;}
.yd_c00267{bottom:260.835000px;}
.yc_c00267{bottom:287.835000px;}
.yb_c00267{bottom:314.835000px;}
.ya_c00267{bottom:341.835000px;}
.y9_c00267{bottom:368.835000px;}
.y8_c00267{bottom:395.835000px;}
.y7_c00267{bottom:443.835000px;}
.y6_c00267{bottom:470.835000px;}
.y5_c00267{bottom:497.835000px;}
.y4_c00267{bottom:524.835000px;}
.y1_c00267{bottom:569.835000px;}
.y12_c00267{bottom:1193.835000px;}
.h3_c00267{height:42.292969px;}
.h7_c00267{height:44.208984px;}
.h6_c00267{height:56.074219px;}
.h5_c00267{height:67.746094px;}
.h2_c00267{height:543.000000px;}
.h4_c00267{height:1261.500000px;}
.h0_c00267{height:1262.835000px;}
.h1_c00267{height:1263.000000px;}
.w2_c00267{width:676.935000px;}
.w3_c00267{width:892.500000px;}
.w0_c00267{width:892.935000px;}
.w1_c00267{width:893.250000px;}
.x0_c00267{left:0.000000px;}
.x1_c00267{left:66.000000px;}
.x2_c00267{left:70.672440px;}
@media print{
.v0_c00267{vertical-align:0.000000pt;}
.ls0_c00267{letter-spacing:0.000000pt;}
.ls1_c00267{letter-spacing:0.009600pt;}
.ls2_c00267{letter-spacing:0.010667pt;}
.ws0_c00267{word-spacing:-15.168000pt;}
.ws1_c00267{word-spacing:0.000000pt;}
._d_c00267{margin-left:-9.504000pt;}
._6_c00267{margin-left:-2.899200pt;}
._1_c00267{margin-left:-1.657600pt;}
._4_c00267{width:1.753600pt;}
._0_c00267{width:2.662400pt;}
._5_c00267{width:4.012800pt;}
._3_c00267{width:5.100800pt;}
._2_c00267{width:6.502400pt;}
._e_c00267{width:7.603200pt;}
._9_c00267{width:9.440000pt;}
._c_c00267{width:10.784000pt;}
._a_c00267{width:11.712000pt;}
._b_c00267{width:13.350400pt;}
._8_c00267{width:15.046400pt;}
._7_c00267{width:16.352000pt;}
.fs0_c00267{font-size:48.000000pt;}
.fs2_c00267{font-size:53.333333pt;}
.fs1_c00267{font-size:64.000000pt;}
.y0_c00267{bottom:0.000000pt;}
.y3_c00267{bottom:9.333333pt;}
.y2_c00267{bottom:38.666667pt;}
.y13_c00267{bottom:59.853333pt;}
.y11_c00267{bottom:117.186667pt;}
.y10_c00267{bottom:141.186667pt;}
.yf_c00267{bottom:165.186667pt;}
.ye_c00267{bottom:189.186667pt;}
.yd_c00267{bottom:231.853333pt;}
.yc_c00267{bottom:255.853333pt;}
.yb_c00267{bottom:279.853333pt;}
.ya_c00267{bottom:303.853333pt;}
.y9_c00267{bottom:327.853333pt;}
.y8_c00267{bottom:351.853333pt;}
.y7_c00267{bottom:394.520000pt;}
.y6_c00267{bottom:418.520000pt;}
.y5_c00267{bottom:442.520000pt;}
.y4_c00267{bottom:466.520000pt;}
.y1_c00267{bottom:506.520000pt;}
.y12_c00267{bottom:1061.186667pt;}
.h3_c00267{height:37.593750pt;}
.h7_c00267{height:39.296875pt;}
.h6_c00267{height:49.843750pt;}
.h5_c00267{height:60.218750pt;}
.h2_c00267{height:482.666667pt;}
.h4_c00267{height:1121.333333pt;}
.h0_c00267{height:1122.520000pt;}
.h1_c00267{height:1122.666667pt;}
.w2_c00267{width:601.720000pt;}
.w3_c00267{width:793.333333pt;}
.w0_c00267{width:793.720000pt;}
.w1_c00267{width:794.000000pt;}
.x0_c00267{left:0.000000pt;}
.x1_c00267{left:58.666667pt;}
.x2_c00267{left:62.819947pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b86e1d6e1a3a9550c561a263.woff2')format("woff");}.ff1_c00268{font-family:ff1_c00268;line-height:1.163086;font-style:normal;font-weight:normal;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_d2b915e8776ea5f2d4f4d6c5.woff2')format("woff");}.ff2_c00268{font-family:ff2_c00268;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00268{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00268{vertical-align:0.000000px;}
.ls1_c00268{letter-spacing:0.000000px;}
.ls2_c00268{letter-spacing:0.007200px;}
.ls0_c00268{letter-spacing:0.012000px;}
.sc__c00268{text-shadow:none;}
.sc0_c00268{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00268{-webkit-text-stroke:0px transparent;}
.sc0_c00268{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00268{word-spacing:-19.800000px;}
.ws1_c00268{word-spacing:0.000000px;}
._15_c00268{margin-left:-9.626400px;}
._14_c00268{margin-left:-7.243200px;}
._16_c00268{margin-left:-5.572800px;}
._9_c00268{margin-left:-4.212000px;}
._1_c00268{margin-left:-2.671200px;}
._3_c00268{margin-left:-1.620000px;}
._2_c00268{width:1.850400px;}
._4_c00268{width:3.470400px;}
._0_c00268{width:4.514400px;}
._e_c00268{width:5.932800px;}
._d_c00268{width:7.675200px;}
._17_c00268{width:9.352800px;}
._c_c00268{width:10.440000px;}
._b_c00268{width:11.923200px;}
._7_c00268{width:13.989600px;}
._5_c00268{width:15.667200px;}
._6_c00268{width:17.236800px;}
._a_c00268{width:21.664800px;}
._8_c00268{width:23.328000px;}
._11_c00268{width:27.619200px;}
._10_c00268{width:28.720800px;}
._13_c00268{width:30.340800px;}
._f_c00268{width:32.133600px;}
._12_c00268{width:34.826400px;}
.fc0_c00268{color:rgb(0,0,0);}
.fs1_c00268{font-size:60.000000px;}
.fs0_c00268{font-size:72.000000px;}
.y0_c00268{bottom:0.000000px;}
.y20_c00268{bottom:67.335000px;}
.y1e_c00268{bottom:185.835000px;}
.y1d_c00268{bottom:212.835000px;}
.y1c_c00268{bottom:239.835000px;}
.y1b_c00268{bottom:287.835000px;}
.y1a_c00268{bottom:314.835000px;}
.y19_c00268{bottom:362.835000px;}
.y18_c00268{bottom:389.835000px;}
.y17_c00268{bottom:416.835000px;}
.y16_c00268{bottom:443.835000px;}
.y15_c00268{bottom:470.835000px;}
.y14_c00268{bottom:497.835000px;}
.y13_c00268{bottom:524.835000px;}
.y12_c00268{bottom:572.835000px;}
.y11_c00268{bottom:599.835000px;}
.y10_c00268{bottom:626.835000px;}
.yf_c00268{bottom:653.835000px;}
.ye_c00268{bottom:701.835000px;}
.yd_c00268{bottom:728.835000px;}
.yc_c00268{bottom:755.835000px;}
.yb_c00268{bottom:782.835000px;}
.ya_c00268{bottom:809.835000px;}
.y9_c00268{bottom:857.835000px;}
.y8_c00268{bottom:884.835000px;}
.y7_c00268{bottom:932.835000px;}
.y6_c00268{bottom:959.835000px;}
.y5_c00268{bottom:986.835000px;}
.y4_c00268{bottom:1013.835000px;}
.y3_c00268{bottom:1040.835000px;}
.y2_c00268{bottom:1067.835000px;}
.y1_c00268{bottom:1094.835000px;}
.y1f_c00268{bottom:1193.835000px;}
.h4_c00268{height:56.074219px;}
.h3_c00268{height:67.746094px;}
.h2_c00268{height:1261.500000px;}
.h0_c00268{height:1262.835000px;}
.h1_c00268{height:1263.000000px;}
.w2_c00268{width:892.500000px;}
.w0_c00268{width:892.935000px;}
.w1_c00268{width:893.250000px;}
.x0_c00268{left:0.000000px;}
.x1_c00268{left:150.519750px;}
.x2_c00268{left:417.217800px;}
.x3_c00268{left:802.427700px;}
@media print{
.v0_c00268{vertical-align:0.000000pt;}
.ls1_c00268{letter-spacing:0.000000pt;}
.ls2_c00268{letter-spacing:0.006400pt;}
.ls0_c00268{letter-spacing:0.010667pt;}
.ws0_c00268{word-spacing:-17.600000pt;}
.ws1_c00268{word-spacing:0.000000pt;}
._15_c00268{margin-left:-8.556800pt;}
._14_c00268{margin-left:-6.438400pt;}
._16_c00268{margin-left:-4.953600pt;}
._9_c00268{margin-left:-3.744000pt;}
._1_c00268{margin-left:-2.374400pt;}
._3_c00268{margin-left:-1.440000pt;}
._2_c00268{width:1.644800pt;}
._4_c00268{width:3.084800pt;}
._0_c00268{width:4.012800pt;}
._e_c00268{width:5.273600pt;}
._d_c00268{width:6.822400pt;}
._17_c00268{width:8.313600pt;}
._c_c00268{width:9.280000pt;}
._b_c00268{width:10.598400pt;}
._7_c00268{width:12.435200pt;}
._5_c00268{width:13.926400pt;}
._6_c00268{width:15.321600pt;}
._a_c00268{width:19.257600pt;}
._8_c00268{width:20.736000pt;}
._11_c00268{width:24.550400pt;}
._10_c00268{width:25.529600pt;}
._13_c00268{width:26.969600pt;}
._f_c00268{width:28.563200pt;}
._12_c00268{width:30.956800pt;}
.fs1_c00268{font-size:53.333333pt;}
.fs0_c00268{font-size:64.000000pt;}
.y0_c00268{bottom:0.000000pt;}
.y20_c00268{bottom:59.853333pt;}
.y1e_c00268{bottom:165.186667pt;}
.y1d_c00268{bottom:189.186667pt;}
.y1c_c00268{bottom:213.186667pt;}
.y1b_c00268{bottom:255.853333pt;}
.y1a_c00268{bottom:279.853333pt;}
.y19_c00268{bottom:322.520000pt;}
.y18_c00268{bottom:346.520000pt;}
.y17_c00268{bottom:370.520000pt;}
.y16_c00268{bottom:394.520000pt;}
.y15_c00268{bottom:418.520000pt;}
.y14_c00268{bottom:442.520000pt;}
.y13_c00268{bottom:466.520000pt;}
.y12_c00268{bottom:509.186667pt;}
.y11_c00268{bottom:533.186667pt;}
.y10_c00268{bottom:557.186667pt;}
.yf_c00268{bottom:581.186667pt;}
.ye_c00268{bottom:623.853333pt;}
.yd_c00268{bottom:647.853333pt;}
.yc_c00268{bottom:671.853333pt;}
.yb_c00268{bottom:695.853333pt;}
.ya_c00268{bottom:719.853333pt;}
.y9_c00268{bottom:762.520000pt;}
.y8_c00268{bottom:786.520000pt;}
.y7_c00268{bottom:829.186667pt;}
.y6_c00268{bottom:853.186667pt;}
.y5_c00268{bottom:877.186667pt;}
.y4_c00268{bottom:901.186667pt;}
.y3_c00268{bottom:925.186667pt;}
.y2_c00268{bottom:949.186667pt;}
.y1_c00268{bottom:973.186667pt;}
.y1f_c00268{bottom:1061.186667pt;}
.h4_c00268{height:49.843750pt;}
.h3_c00268{height:60.218750pt;}
.h2_c00268{height:1121.333333pt;}
.h0_c00268{height:1122.520000pt;}
.h1_c00268{height:1122.666667pt;}
.w2_c00268{width:793.333333pt;}
.w0_c00268{width:793.720000pt;}
.w1_c00268{width:794.000000pt;}
.x0_c00268{left:0.000000pt;}
.x1_c00268{left:133.795333pt;}
.x2_c00268{left:370.860267pt;}
.x3_c00268{left:713.269067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4cb3a2e45ec7b1ea5c9f5820.woff2')format("woff");}.ff1_c00269{font-family:ff1_c00269;line-height:1.163086;font-style:normal;font-weight:normal;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_14df3f5831b67742820705b8.woff2')format("woff");}.ff2_c00269{font-family:ff2_c00269;line-height:0.755859;font-style:normal;font-weight:normal;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_2996c9c245894b3ed6a37db5.woff2')format("woff");}.ff3_c00269{font-family:ff3_c00269;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00269{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00269{vertical-align:0.000000px;}
.ls0_c00269{letter-spacing:0.000000px;}
.ls1_c00269{letter-spacing:0.012000px;}
.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:0.000000px;}
._14_c00269{margin-left:-11.188800px;}
._19_c00269{margin-left:-9.921600px;}
._5_c00269{margin-left:-7.113600px;}
._1_c00269{margin-left:-4.874400px;}
._6_c00269{margin-left:-2.930400px;}
._4_c00269{margin-left:-1.641600px;}
._3_c00269{width:1.180800px;}
._0_c00269{width:2.995200px;}
._8_c00269{width:4.399200px;}
._2_c00269{width:5.997600px;}
._15_c00269{width:7.063200px;}
._7_c00269{width:8.078400px;}
._12_c00269{width:9.835200px;}
._13_c00269{width:10.958400px;}
._16_c00269{width:12.319200px;}
._18_c00269{width:13.716000px;}
._11_c00269{width:14.716800px;}
._b_c00269{width:16.912800px;}
._17_c00269{width:18.036000px;}
._9_c00269{width:21.204000px;}
._c_c00269{width:22.852800px;}
._a_c00269{width:24.156000px;}
._f_c00269{width:25.603200px;}
._d_c00269{width:26.740800px;}
._1c_c00269{width:27.813600px;}
._e_c00269{width:29.376000px;}
._1b_c00269{width:30.722400px;}
._10_c00269{width:32.061600px;}
._1a_c00269{width:33.120000px;}
.fc0_c00269{color:rgb(0,0,0);}
.fs1_c00269{font-size:60.000000px;}
.fs0_c00269{font-size:72.000000px;}
.y0_c00269{bottom:0.000000px;}
.y22_c00269{bottom:67.335000px;}
.y20_c00269{bottom:173.835000px;}
.y1f_c00269{bottom:200.835000px;}
.y1e_c00269{bottom:227.835000px;}
.y1d_c00269{bottom:275.835000px;}
.y1c_c00269{bottom:302.835000px;}
.y1b_c00269{bottom:329.835000px;}
.y1a_c00269{bottom:356.835000px;}
.y19_c00269{bottom:383.835000px;}
.y18_c00269{bottom:410.835000px;}
.y17_c00269{bottom:458.835000px;}
.y16_c00269{bottom:485.835000px;}
.y15_c00269{bottom:512.835000px;}
.y14_c00269{bottom:539.835000px;}
.y13_c00269{bottom:587.835000px;}
.y12_c00269{bottom:614.835000px;}
.y11_c00269{bottom:641.835000px;}
.y10_c00269{bottom:668.835000px;}
.yf_c00269{bottom:695.835000px;}
.ye_c00269{bottom:743.835000px;}
.yd_c00269{bottom:770.835000px;}
.yc_c00269{bottom:797.835000px;}
.yb_c00269{bottom:824.835000px;}
.ya_c00269{bottom:851.835000px;}
.y9_c00269{bottom:878.835000px;}
.y8_c00269{bottom:905.835000px;}
.y7_c00269{bottom:932.835000px;}
.y6_c00269{bottom:959.835000px;}
.y5_c00269{bottom:986.835000px;}
.y4_c00269{bottom:1013.835000px;}
.y3_c00269{bottom:1040.835000px;}
.y2_c00269{bottom:1067.835000px;}
.y1_c00269{bottom:1094.835000px;}
.y21_c00269{bottom:1193.835000px;}
.h5_c00269{height:44.208984px;}
.h4_c00269{height:56.074219px;}
.h3_c00269{height:67.746094px;}
.h2_c00269{height:1261.500000px;}
.h0_c00269{height:1262.835000px;}
.h1_c00269{height:1263.000000px;}
.w2_c00269{width:892.500000px;}
.w0_c00269{width:892.935000px;}
.w1_c00269{width:893.250000px;}
.x0_c00269{left:0.000000px;}
.x1_c00269{left:65.480310px;}
@media print{
.v0_c00269{vertical-align:0.000000pt;}
.ls0_c00269{letter-spacing:0.000000pt;}
.ls1_c00269{letter-spacing:0.010667pt;}
.ws0_c00269{word-spacing:0.000000pt;}
._14_c00269{margin-left:-9.945600pt;}
._19_c00269{margin-left:-8.819200pt;}
._5_c00269{margin-left:-6.323200pt;}
._1_c00269{margin-left:-4.332800pt;}
._6_c00269{margin-left:-2.604800pt;}
._4_c00269{margin-left:-1.459200pt;}
._3_c00269{width:1.049600pt;}
._0_c00269{width:2.662400pt;}
._8_c00269{width:3.910400pt;}
._2_c00269{width:5.331200pt;}
._15_c00269{width:6.278400pt;}
._7_c00269{width:7.180800pt;}
._12_c00269{width:8.742400pt;}
._13_c00269{width:9.740800pt;}
._16_c00269{width:10.950400pt;}
._18_c00269{width:12.192000pt;}
._11_c00269{width:13.081600pt;}
._b_c00269{width:15.033600pt;}
._17_c00269{width:16.032000pt;}
._9_c00269{width:18.848000pt;}
._c_c00269{width:20.313600pt;}
._a_c00269{width:21.472000pt;}
._f_c00269{width:22.758400pt;}
._d_c00269{width:23.769600pt;}
._1c_c00269{width:24.723200pt;}
._e_c00269{width:26.112000pt;}
._1b_c00269{width:27.308800pt;}
._10_c00269{width:28.499200pt;}
._1a_c00269{width:29.440000pt;}
.fs1_c00269{font-size:53.333333pt;}
.fs0_c00269{font-size:64.000000pt;}
.y0_c00269{bottom:0.000000pt;}
.y22_c00269{bottom:59.853333pt;}
.y20_c00269{bottom:154.520000pt;}
.y1f_c00269{bottom:178.520000pt;}
.y1e_c00269{bottom:202.520000pt;}
.y1d_c00269{bottom:245.186667pt;}
.y1c_c00269{bottom:269.186667pt;}
.y1b_c00269{bottom:293.186667pt;}
.y1a_c00269{bottom:317.186667pt;}
.y19_c00269{bottom:341.186667pt;}
.y18_c00269{bottom:365.186667pt;}
.y17_c00269{bottom:407.853333pt;}
.y16_c00269{bottom:431.853333pt;}
.y15_c00269{bottom:455.853333pt;}
.y14_c00269{bottom:479.853333pt;}
.y13_c00269{bottom:522.520000pt;}
.y12_c00269{bottom:546.520000pt;}
.y11_c00269{bottom:570.520000pt;}
.y10_c00269{bottom:594.520000pt;}
.yf_c00269{bottom:618.520000pt;}
.ye_c00269{bottom:661.186667pt;}
.yd_c00269{bottom:685.186667pt;}
.yc_c00269{bottom:709.186667pt;}
.yb_c00269{bottom:733.186667pt;}
.ya_c00269{bottom:757.186667pt;}
.y9_c00269{bottom:781.186667pt;}
.y8_c00269{bottom:805.186667pt;}
.y7_c00269{bottom:829.186667pt;}
.y6_c00269{bottom:853.186667pt;}
.y5_c00269{bottom:877.186667pt;}
.y4_c00269{bottom:901.186667pt;}
.y3_c00269{bottom:925.186667pt;}
.y2_c00269{bottom:949.186667pt;}
.y1_c00269{bottom:973.186667pt;}
.y21_c00269{bottom:1061.186667pt;}
.h5_c00269{height:39.296875pt;}
.h4_c00269{height:49.843750pt;}
.h3_c00269{height:60.218750pt;}
.h2_c00269{height:1121.333333pt;}
.h0_c00269{height:1122.520000pt;}
.h1_c00269{height:1122.666667pt;}
.w2_c00269{width:793.333333pt;}
.w0_c00269{width:793.720000pt;}
.w1_c00269{width:794.000000pt;}
.x0_c00269{left:0.000000pt;}
.x1_c00269{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_98ab5ebd304c8d6484a5b63f.woff2')format("woff");}.ff1_c00270{font-family:ff1_c00270;line-height:0.987793;font-style:normal;font-weight:normal;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_71357246c787979d0f67e497.woff2')format("woff");}.ff2_c00270{font-family:ff2_c00270;line-height:1.163086;font-style:normal;font-weight:normal;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_e29b727bc52bdf2e1850a907.woff2')format("woff");}.ff3_c00270{font-family:ff3_c00270;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00270{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00270{vertical-align:0.000000px;}
.ls1_c00270{letter-spacing:0.000000px;}
.ls0_c00270{letter-spacing:0.012000px;}
.sc__c00270{text-shadow:none;}
.sc0_c00270{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00270{-webkit-text-stroke:0px transparent;}
.sc0_c00270{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00270{word-spacing:0.000000px;}
._1a_c00270{margin-left:-5.328000px;}
._1_c00270{margin-left:-3.477600px;}
._d_c00270{margin-left:-2.289600px;}
._3_c00270{margin-left:-1.260000px;}
._2_c00270{width:1.548000px;}
._4_c00270{width:2.685600px;}
._6_c00270{width:3.708000px;}
._0_c00270{width:4.996800px;}
._15_c00270{width:6.436800px;}
._10_c00270{width:7.567200px;}
._11_c00270{width:8.632800px;}
._f_c00270{width:10.281600px;}
._12_c00270{width:12.470400px;}
._13_c00270{width:13.773600px;}
._14_c00270{width:15.372000px;}
._a_c00270{width:17.049600px;}
._7_c00270{width:18.237600px;}
._9_c00270{width:21.600000px;}
._8_c00270{width:22.903200px;}
._5_c00270{width:25.120800px;}
._e_c00270{width:27.403200px;}
._b_c00270{width:28.504800px;}
._c_c00270{width:29.736000px;}
._17_c00270{width:34.380000px;}
._19_c00270{width:35.726400px;}
._18_c00270{width:38.469600px;}
._16_c00270{width:40.111200px;}
.fc1_c00270{color:transparent;}
.fc0_c00270{color:rgb(0,0,0);}
.fs0_c00270{font-size:54.000000px;}
.fs2_c00270{font-size:60.000000px;}
.fs1_c00270{font-size:72.000000px;}
.y0_c00270{bottom:0.000000px;}
.y2_c00270{bottom:12.000000px;}
.y15_c00270{bottom:67.335000px;}
.y13_c00270{bottom:203.835000px;}
.y12_c00270{bottom:230.835000px;}
.y11_c00270{bottom:257.835000px;}
.y10_c00270{bottom:284.835000px;}
.yf_c00270{bottom:311.835000px;}
.ye_c00270{bottom:338.835000px;}
.yd_c00270{bottom:365.835000px;}
.yc_c00270{bottom:392.835000px;}
.yb_c00270{bottom:419.835000px;}
.ya_c00270{bottom:446.835000px;}
.y9_c00270{bottom:473.835000px;}
.y8_c00270{bottom:521.835000px;}
.y7_c00270{bottom:548.835000px;}
.y6_c00270{bottom:575.835000px;}
.y5_c00270{bottom:602.835000px;}
.y4_c00270{bottom:629.835000px;}
.y3_c00270{bottom:656.835000px;}
.y1_c00270{bottom:701.835000px;}
.y14_c00270{bottom:1193.835000px;}
.h5_c00270{height:56.074219px;}
.h3_c00270{height:67.746094px;}
.h2_c00270{height:411.000000px;}
.h4_c00270{height:1261.500000px;}
.h0_c00270{height:1262.835000px;}
.h1_c00270{height:1263.000000px;}
.w2_c00270{width:676.935000px;}
.w3_c00270{width:892.500000px;}
.w0_c00270{width:892.935000px;}
.w1_c00270{width:893.250000px;}
.x0_c00270{left:0.000000px;}
.x2_c00270{left:7.500000px;}
.x1_c00270{left:150.000000px;}
.x3_c00270{left:417.217800px;}
.x4_c00270{left:802.427700px;}
@media print{
.v0_c00270{vertical-align:0.000000pt;}
.ls1_c00270{letter-spacing:0.000000pt;}
.ls0_c00270{letter-spacing:0.010667pt;}
.ws0_c00270{word-spacing:0.000000pt;}
._1a_c00270{margin-left:-4.736000pt;}
._1_c00270{margin-left:-3.091200pt;}
._d_c00270{margin-left:-2.035200pt;}
._3_c00270{margin-left:-1.120000pt;}
._2_c00270{width:1.376000pt;}
._4_c00270{width:2.387200pt;}
._6_c00270{width:3.296000pt;}
._0_c00270{width:4.441600pt;}
._15_c00270{width:5.721600pt;}
._10_c00270{width:6.726400pt;}
._11_c00270{width:7.673600pt;}
._f_c00270{width:9.139200pt;}
._12_c00270{width:11.084800pt;}
._13_c00270{width:12.243200pt;}
._14_c00270{width:13.664000pt;}
._a_c00270{width:15.155200pt;}
._7_c00270{width:16.211200pt;}
._9_c00270{width:19.200000pt;}
._8_c00270{width:20.358400pt;}
._5_c00270{width:22.329600pt;}
._e_c00270{width:24.358400pt;}
._b_c00270{width:25.337600pt;}
._c_c00270{width:26.432000pt;}
._17_c00270{width:30.560000pt;}
._19_c00270{width:31.756800pt;}
._18_c00270{width:34.195200pt;}
._16_c00270{width:35.654400pt;}
.fs0_c00270{font-size:48.000000pt;}
.fs2_c00270{font-size:53.333333pt;}
.fs1_c00270{font-size:64.000000pt;}
.y0_c00270{bottom:0.000000pt;}
.y2_c00270{bottom:10.666667pt;}
.y15_c00270{bottom:59.853333pt;}
.y13_c00270{bottom:181.186667pt;}
.y12_c00270{bottom:205.186667pt;}
.y11_c00270{bottom:229.186667pt;}
.y10_c00270{bottom:253.186667pt;}
.yf_c00270{bottom:277.186667pt;}
.ye_c00270{bottom:301.186667pt;}
.yd_c00270{bottom:325.186667pt;}
.yc_c00270{bottom:349.186667pt;}
.yb_c00270{bottom:373.186667pt;}
.ya_c00270{bottom:397.186667pt;}
.y9_c00270{bottom:421.186667pt;}
.y8_c00270{bottom:463.853333pt;}
.y7_c00270{bottom:487.853333pt;}
.y6_c00270{bottom:511.853333pt;}
.y5_c00270{bottom:535.853333pt;}
.y4_c00270{bottom:559.853333pt;}
.y3_c00270{bottom:583.853333pt;}
.y1_c00270{bottom:623.853333pt;}
.y14_c00270{bottom:1061.186667pt;}
.h5_c00270{height:49.843750pt;}
.h3_c00270{height:60.218750pt;}
.h2_c00270{height:365.333333pt;}
.h4_c00270{height:1121.333333pt;}
.h0_c00270{height:1122.520000pt;}
.h1_c00270{height:1122.666667pt;}
.w2_c00270{width:601.720000pt;}
.w3_c00270{width:793.333333pt;}
.w0_c00270{width:793.720000pt;}
.w1_c00270{width:794.000000pt;}
.x0_c00270{left:0.000000pt;}
.x2_c00270{left:6.666667pt;}
.x1_c00270{left:133.333333pt;}
.x3_c00270{left:370.860267pt;}
.x4_c00270{left:713.269067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ce91b14b6b16811059f45898.woff2')format("woff");}.ff1_c00271{font-family:ff1_c00271;line-height:1.163086;font-style:normal;font-weight:normal;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_a9ba3582aacb97960e2ab636.woff2')format("woff");}.ff2_c00271{font-family:ff2_c00271;line-height:0.756836;font-style:normal;font-weight:normal;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_7e74f7f22132080fcb3af0da.woff2')format("woff");}.ff3_c00271{font-family:ff3_c00271;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00271{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00271{vertical-align:0.000000px;}
.ls1_c00271{letter-spacing:0.000000px;}
.ls2_c00271{letter-spacing:0.012000px;}
.ls0_c00271{letter-spacing:0.057600px;}
.sc__c00271{text-shadow:none;}
.sc0_c00271{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00271{-webkit-text-stroke:0px transparent;}
.sc0_c00271{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00271{word-spacing:-19.800000px;}
.ws1_c00271{word-spacing:0.000000px;}
._17_c00271{margin-left:-10.584000px;}
._a_c00271{margin-left:-6.271200px;}
._5_c00271{margin-left:-4.219200px;}
._b_c00271{margin-left:-2.527200px;}
._7_c00271{margin-left:-1.058400px;}
._3_c00271{width:1.792800px;}
._9_c00271{width:3.060000px;}
._1_c00271{width:4.111200px;}
._2_c00271{width:5.162400px;}
._d_c00271{width:6.444000px;}
._4_c00271{width:7.480800px;}
._0_c00271{width:9.237600px;}
._8_c00271{width:10.288800px;}
._c_c00271{width:11.772000px;}
._6_c00271{width:13.485600px;}
._e_c00271{width:14.860800px;}
._f_c00271{width:16.473600px;}
._10_c00271{width:17.611200px;}
._1c_c00271{width:21.333600px;}
._16_c00271{width:22.831200px;}
._14_c00271{width:24.112800px;}
._12_c00271{width:25.862400px;}
._13_c00271{width:26.913600px;}
._11_c00271{width:28.382400px;}
._15_c00271{width:30.074400px;}
._1b_c00271{width:31.816800px;}
._18_c00271{width:34.063200px;}
._19_c00271{width:35.928000px;}
._1a_c00271{width:38.383200px;}
.fc0_c00271{color:rgb(0,0,0);}
.fs1_c00271{font-size:60.000000px;}
.fs0_c00271{font-size:72.000000px;}
.y0_c00271{bottom:0.000000px;}
.y22_c00271{bottom:67.335000px;}
.y20_c00271{bottom:173.835000px;}
.y1f_c00271{bottom:200.835000px;}
.y1e_c00271{bottom:227.835000px;}
.y1d_c00271{bottom:275.835000px;}
.y1c_c00271{bottom:302.835000px;}
.y1b_c00271{bottom:329.835000px;}
.y1a_c00271{bottom:356.835000px;}
.y19_c00271{bottom:383.835000px;}
.y18_c00271{bottom:410.835000px;}
.y17_c00271{bottom:458.835000px;}
.y16_c00271{bottom:485.835000px;}
.y15_c00271{bottom:512.835000px;}
.y14_c00271{bottom:539.835000px;}
.y13_c00271{bottom:566.835000px;}
.y12_c00271{bottom:614.835000px;}
.y11_c00271{bottom:641.835000px;}
.y10_c00271{bottom:668.835000px;}
.yf_c00271{bottom:695.835000px;}
.ye_c00271{bottom:722.835000px;}
.yd_c00271{bottom:770.835000px;}
.yc_c00271{bottom:797.835000px;}
.yb_c00271{bottom:824.835000px;}
.ya_c00271{bottom:851.835000px;}
.y9_c00271{bottom:878.835000px;}
.y8_c00271{bottom:905.835000px;}
.y7_c00271{bottom:932.835000px;}
.y6_c00271{bottom:959.835000px;}
.y5_c00271{bottom:986.835000px;}
.y4_c00271{bottom:1013.835000px;}
.y3_c00271{bottom:1040.835000px;}
.y2_c00271{bottom:1067.835000px;}
.y1_c00271{bottom:1094.835000px;}
.y21_c00271{bottom:1193.835000px;}
.h5_c00271{height:44.208984px;}
.h4_c00271{height:56.074219px;}
.h3_c00271{height:67.746094px;}
.h2_c00271{height:1261.500000px;}
.h0_c00271{height:1262.835000px;}
.h1_c00271{height:1263.000000px;}
.w2_c00271{width:892.500000px;}
.w0_c00271{width:892.935000px;}
.w1_c00271{width:893.250000px;}
.x0_c00271{left:0.000000px;}
.x1_c00271{left:65.480310px;}
@media print{
.v0_c00271{vertical-align:0.000000pt;}
.ls1_c00271{letter-spacing:0.000000pt;}
.ls2_c00271{letter-spacing:0.010667pt;}
.ls0_c00271{letter-spacing:0.051200pt;}
.ws0_c00271{word-spacing:-17.600000pt;}
.ws1_c00271{word-spacing:0.000000pt;}
._17_c00271{margin-left:-9.408000pt;}
._a_c00271{margin-left:-5.574400pt;}
._5_c00271{margin-left:-3.750400pt;}
._b_c00271{margin-left:-2.246400pt;}
._7_c00271{margin-left:-0.940800pt;}
._3_c00271{width:1.593600pt;}
._9_c00271{width:2.720000pt;}
._1_c00271{width:3.654400pt;}
._2_c00271{width:4.588800pt;}
._d_c00271{width:5.728000pt;}
._4_c00271{width:6.649600pt;}
._0_c00271{width:8.211200pt;}
._8_c00271{width:9.145600pt;}
._c_c00271{width:10.464000pt;}
._6_c00271{width:11.987200pt;}
._e_c00271{width:13.209600pt;}
._f_c00271{width:14.643200pt;}
._10_c00271{width:15.654400pt;}
._1c_c00271{width:18.963200pt;}
._16_c00271{width:20.294400pt;}
._14_c00271{width:21.433600pt;}
._12_c00271{width:22.988800pt;}
._13_c00271{width:23.923200pt;}
._11_c00271{width:25.228800pt;}
._15_c00271{width:26.732800pt;}
._1b_c00271{width:28.281600pt;}
._18_c00271{width:30.278400pt;}
._19_c00271{width:31.936000pt;}
._1a_c00271{width:34.118400pt;}
.fs1_c00271{font-size:53.333333pt;}
.fs0_c00271{font-size:64.000000pt;}
.y0_c00271{bottom:0.000000pt;}
.y22_c00271{bottom:59.853333pt;}
.y20_c00271{bottom:154.520000pt;}
.y1f_c00271{bottom:178.520000pt;}
.y1e_c00271{bottom:202.520000pt;}
.y1d_c00271{bottom:245.186667pt;}
.y1c_c00271{bottom:269.186667pt;}
.y1b_c00271{bottom:293.186667pt;}
.y1a_c00271{bottom:317.186667pt;}
.y19_c00271{bottom:341.186667pt;}
.y18_c00271{bottom:365.186667pt;}
.y17_c00271{bottom:407.853333pt;}
.y16_c00271{bottom:431.853333pt;}
.y15_c00271{bottom:455.853333pt;}
.y14_c00271{bottom:479.853333pt;}
.y13_c00271{bottom:503.853333pt;}
.y12_c00271{bottom:546.520000pt;}
.y11_c00271{bottom:570.520000pt;}
.y10_c00271{bottom:594.520000pt;}
.yf_c00271{bottom:618.520000pt;}
.ye_c00271{bottom:642.520000pt;}
.yd_c00271{bottom:685.186667pt;}
.yc_c00271{bottom:709.186667pt;}
.yb_c00271{bottom:733.186667pt;}
.ya_c00271{bottom:757.186667pt;}
.y9_c00271{bottom:781.186667pt;}
.y8_c00271{bottom:805.186667pt;}
.y7_c00271{bottom:829.186667pt;}
.y6_c00271{bottom:853.186667pt;}
.y5_c00271{bottom:877.186667pt;}
.y4_c00271{bottom:901.186667pt;}
.y3_c00271{bottom:925.186667pt;}
.y2_c00271{bottom:949.186667pt;}
.y1_c00271{bottom:973.186667pt;}
.y21_c00271{bottom:1061.186667pt;}
.h5_c00271{height:39.296875pt;}
.h4_c00271{height:49.843750pt;}
.h3_c00271{height:60.218750pt;}
.h2_c00271{height:1121.333333pt;}
.h0_c00271{height:1122.520000pt;}
.h1_c00271{height:1122.666667pt;}
.w2_c00271{width:793.333333pt;}
.w0_c00271{width:793.720000pt;}
.w1_c00271{width:794.000000pt;}
.x0_c00271{left:0.000000pt;}
.x1_c00271{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8e9cda98da69364312ec6baa.woff2')format("woff");}.ff1_c00272{font-family:ff1_c00272;line-height:0.975586;font-style:normal;font-weight:normal;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_6032263e50401776e21f9542.woff2')format("woff");}.ff2_c00272{font-family:ff2_c00272;line-height:1.163086;font-style:normal;font-weight:normal;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_7696734490f62de14a5ed604.woff2')format("woff");}.ff3_c00272{font-family:ff3_c00272;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00272{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00272{vertical-align:0.000000px;}
.ls1_c00272{letter-spacing:0.000000px;}
.ls0_c00272{letter-spacing:0.012000px;}
.sc__c00272{text-shadow:none;}
.sc0_c00272{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00272{-webkit-text-stroke:0px transparent;}
.sc0_c00272{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00272{word-spacing:-19.800000px;}
.ws1_c00272{word-spacing:0.000000px;}
._16_c00272{margin-left:-6.631200px;}
._15_c00272{margin-left:-4.773600px;}
._4_c00272{margin-left:-3.290400px;}
._13_c00272{margin-left:-2.152800px;}
._a_c00272{margin-left:-1.152000px;}
._2_c00272{width:1.188000px;}
._0_c00272{width:2.325600px;}
._6_c00272{width:4.132800px;}
._17_c00272{width:5.299200px;}
._12_c00272{width:6.408000px;}
._14_c00272{width:9.172800px;}
._f_c00272{width:10.512000px;}
._10_c00272{width:11.736000px;}
._11_c00272{width:13.428000px;}
._7_c00272{width:15.328800px;}
._1_c00272{width:17.150400px;}
._3_c00272{width:18.316800px;}
._5_c00272{width:22.795200px;}
._d_c00272{width:24.098400px;}
._8_c00272{width:26.114400px;}
._9_c00272{width:27.180000px;}
._e_c00272{width:28.396800px;}
._b_c00272{width:29.606400px;}
._c_c00272{width:31.687200px;}
.fc0_c00272{color:rgb(0,0,0);}
.fs0_c00272{font-size:54.000000px;}
.fs2_c00272{font-size:60.000000px;}
.fs1_c00272{font-size:72.000000px;}
.y0_c00272{bottom:0.000000px;}
.y2_c00272{bottom:12.000000px;}
.y13_c00272{bottom:67.335000px;}
.y11_c00272{bottom:158.835000px;}
.y10_c00272{bottom:185.835000px;}
.yf_c00272{bottom:212.835000px;}
.ye_c00272{bottom:239.835000px;}
.yd_c00272{bottom:287.835000px;}
.yc_c00272{bottom:314.835000px;}
.yb_c00272{bottom:341.835000px;}
.ya_c00272{bottom:368.835000px;}
.y9_c00272{bottom:416.835000px;}
.y8_c00272{bottom:443.835000px;}
.y7_c00272{bottom:470.835000px;}
.y6_c00272{bottom:497.835000px;}
.y5_c00272{bottom:524.835000px;}
.y4_c00272{bottom:551.835000px;}
.y3_c00272{bottom:578.835000px;}
.y1_c00272{bottom:623.835000px;}
.y12_c00272{bottom:1193.835000px;}
.h3_c00272{height:41.633789px;}
.h6_c00272{height:56.074219px;}
.h5_c00272{height:67.746094px;}
.h2_c00272{height:489.000000px;}
.h4_c00272{height:1261.500000px;}
.h0_c00272{height:1262.835000px;}
.h1_c00272{height:1263.000000px;}
.w2_c00272{width:676.934850px;}
.w3_c00272{width:892.500000px;}
.w0_c00272{width:892.935000px;}
.w1_c00272{width:893.250000px;}
.x0_c00272{left:0.000000px;}
.x2_c00272{left:133.310970px;}
.x1_c00272{left:150.000000px;}
.x3_c00272{left:417.217800px;}
.x4_c00272{left:802.427700px;}
@media print{
.v0_c00272{vertical-align:0.000000pt;}
.ls1_c00272{letter-spacing:0.000000pt;}
.ls0_c00272{letter-spacing:0.010667pt;}
.ws0_c00272{word-spacing:-17.600000pt;}
.ws1_c00272{word-spacing:0.000000pt;}
._16_c00272{margin-left:-5.894400pt;}
._15_c00272{margin-left:-4.243200pt;}
._4_c00272{margin-left:-2.924800pt;}
._13_c00272{margin-left:-1.913600pt;}
._a_c00272{margin-left:-1.024000pt;}
._2_c00272{width:1.056000pt;}
._0_c00272{width:2.067200pt;}
._6_c00272{width:3.673600pt;}
._17_c00272{width:4.710400pt;}
._12_c00272{width:5.696000pt;}
._14_c00272{width:8.153600pt;}
._f_c00272{width:9.344000pt;}
._10_c00272{width:10.432000pt;}
._11_c00272{width:11.936000pt;}
._7_c00272{width:13.625600pt;}
._1_c00272{width:15.244800pt;}
._3_c00272{width:16.281600pt;}
._5_c00272{width:20.262400pt;}
._d_c00272{width:21.420800pt;}
._8_c00272{width:23.212800pt;}
._9_c00272{width:24.160000pt;}
._e_c00272{width:25.241600pt;}
._b_c00272{width:26.316800pt;}
._c_c00272{width:28.166400pt;}
.fs0_c00272{font-size:48.000000pt;}
.fs2_c00272{font-size:53.333333pt;}
.fs1_c00272{font-size:64.000000pt;}
.y0_c00272{bottom:0.000000pt;}
.y2_c00272{bottom:10.666667pt;}
.y13_c00272{bottom:59.853333pt;}
.y11_c00272{bottom:141.186667pt;}
.y10_c00272{bottom:165.186667pt;}
.yf_c00272{bottom:189.186667pt;}
.ye_c00272{bottom:213.186667pt;}
.yd_c00272{bottom:255.853333pt;}
.yc_c00272{bottom:279.853333pt;}
.yb_c00272{bottom:303.853333pt;}
.ya_c00272{bottom:327.853333pt;}
.y9_c00272{bottom:370.520000pt;}
.y8_c00272{bottom:394.520000pt;}
.y7_c00272{bottom:418.520000pt;}
.y6_c00272{bottom:442.520000pt;}
.y5_c00272{bottom:466.520000pt;}
.y4_c00272{bottom:490.520000pt;}
.y3_c00272{bottom:514.520000pt;}
.y1_c00272{bottom:554.520000pt;}
.y12_c00272{bottom:1061.186667pt;}
.h3_c00272{height:37.007812pt;}
.h6_c00272{height:49.843750pt;}
.h5_c00272{height:60.218750pt;}
.h2_c00272{height:434.666667pt;}
.h4_c00272{height:1121.333333pt;}
.h0_c00272{height:1122.520000pt;}
.h1_c00272{height:1122.666667pt;}
.w2_c00272{width:601.719867pt;}
.w3_c00272{width:793.333333pt;}
.w0_c00272{width:793.720000pt;}
.w1_c00272{width:794.000000pt;}
.x0_c00272{left:0.000000pt;}
.x2_c00272{left:118.498640pt;}
.x1_c00272{left:133.333333pt;}
.x3_c00272{left:370.860267pt;}
.x4_c00272{left:713.269067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b6cdc375b8f70d3c30f2a917.woff2')format("woff");}.ff1_c00273{font-family:ff1_c00273;line-height:0.934082;font-style:normal;font-weight:normal;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_1463c747d2037037fdbf33fa.woff2')format("woff");}.ff2_c00273{font-family:ff2_c00273;line-height:0.932129;font-style:normal;font-weight:normal;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_e2339010db798bb2df378f85.woff2')format("woff");}.ff3_c00273{font-family:ff3_c00273;line-height:0.975586;font-style:normal;font-weight:normal;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_73a765197ed2f181fcabb5c4.woff2')format("woff");}.ff4_c00273{font-family:ff4_c00273;line-height:0.755859;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00273;src:url('chunks/assets/font_305f418a1b8f3feca568d37a.woff2')format("woff");}.ff5_c00273{font-family:ff5_c00273;line-height:1.155762;font-style: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;}
.ls2_c00273{letter-spacing:-0.014400px;}
.ls1_c00273{letter-spacing:-0.007200px;}
.ls0_c00273{letter-spacing:0.000000px;}
.ls3_c00273{letter-spacing:0.012000px;}
.sc__c00273{text-shadow:none;}
.sc0_c00273{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00273{-webkit-text-stroke:0px transparent;}
.sc0_c00273{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00273{word-spacing:-0.057600px;}
.ws1_c00273{word-spacing:0.000000px;}
._12_c00273{margin-left:-19.174680px;}
._13_c00273{margin-left:-6.933600px;}
._4_c00273{margin-left:-3.758400px;}
._1_c00273{margin-left:-2.757600px;}
._3_c00273{margin-left:-1.216800px;}
._0_c00273{width:1.288800px;}
._8_c00273{width:2.448000px;}
._2_c00273{width:3.506400px;}
._5_c00273{width:5.112000px;}
._e_c00273{width:6.588000px;}
._d_c00273{width:7.840800px;}
._10_c00273{width:9.641160px;}
._f_c00273{width:11.188440px;}
._11_c00273{width:12.226320px;}
._6_c00273{width:13.269600px;}
._9_c00273{width:14.551560px;}
._7_c00273{width:16.660800px;}
._a_c00273{width:17.786400px;}
._b_c00273{width:21.561600px;}
._c_c00273{width:23.868000px;}
.fc0_c00273{color:rgb(0,0,0);}
.fs1_c00273{font-size:54.000000px;}
.fs2_c00273{font-size:60.000000px;}
.fs0_c00273{font-size:72.000000px;}
.y0_c00273{bottom:0.000000px;}
.y7_c00273{bottom:12.000000px;}
.y13_c00273{bottom:67.335000px;}
.y11_c00273{bottom:140.835000px;}
.y10_c00273{bottom:167.835000px;}
.yf_c00273{bottom:194.835000px;}
.ye_c00273{bottom:221.835000px;}
.yd_c00273{bottom:248.835000px;}
.yc_c00273{bottom:275.835000px;}
.yb_c00273{bottom:302.835000px;}
.ya_c00273{bottom:329.835000px;}
.y9_c00273{bottom:356.835000px;}
.y8_c00273{bottom:383.835000px;}
.y6_c00273{bottom:407.835000px;}
.y5_c00273{bottom:986.835000px;}
.y4_c00273{bottom:1013.835000px;}
.y3_c00273{bottom:1040.835000px;}
.y2_c00273{bottom:1067.835000px;}
.y1_c00273{bottom:1094.835000px;}
.y12_c00273{bottom:1193.835000px;}
.h5_c00273{height:41.633789px;}
.h7_c00273{height:44.208984px;}
.h3_c00273{height:51.257812px;}
.h6_c00273{height:56.074219px;}
.h4_c00273{height:547.500000px;}
.h2_c00273{height:1261.500000px;}
.h0_c00273{height:1262.835000px;}
.h1_c00273{height:1263.000000px;}
.w3_c00273{width:676.935000px;}
.w2_c00273{width:892.500000px;}
.w0_c00273{width:892.935000px;}
.w1_c00273{width:893.250000px;}
.x0_c00273{left:0.000000px;}
.x1_c00273{left:65.480310px;}
.x2_c00273{left:250.783350px;}
@media print{
.v0_c00273{vertical-align:0.000000pt;}
.ls2_c00273{letter-spacing:-0.012800pt;}
.ls1_c00273{letter-spacing:-0.006400pt;}
.ls0_c00273{letter-spacing:0.000000pt;}
.ls3_c00273{letter-spacing:0.010667pt;}
.ws0_c00273{word-spacing:-0.051200pt;}
.ws1_c00273{word-spacing:0.000000pt;}
._12_c00273{margin-left:-17.044160pt;}
._13_c00273{margin-left:-6.163200pt;}
._4_c00273{margin-left:-3.340800pt;}
._1_c00273{margin-left:-2.451200pt;}
._3_c00273{margin-left:-1.081600pt;}
._0_c00273{width:1.145600pt;}
._8_c00273{width:2.176000pt;}
._2_c00273{width:3.116800pt;}
._5_c00273{width:4.544000pt;}
._e_c00273{width:5.856000pt;}
._d_c00273{width:6.969600pt;}
._10_c00273{width:8.569920pt;}
._f_c00273{width:9.945280pt;}
._11_c00273{width:10.867840pt;}
._6_c00273{width:11.795200pt;}
._9_c00273{width:12.934720pt;}
._7_c00273{width:14.809600pt;}
._a_c00273{width:15.810133pt;}
._b_c00273{width:19.165867pt;}
._c_c00273{width:21.216000pt;}
.fs1_c00273{font-size:48.000000pt;}
.fs2_c00273{font-size:53.333333pt;}
.fs0_c00273{font-size:64.000000pt;}
.y0_c00273{bottom:0.000000pt;}
.y7_c00273{bottom:10.666667pt;}
.y13_c00273{bottom:59.853333pt;}
.y11_c00273{bottom:125.186667pt;}
.y10_c00273{bottom:149.186667pt;}
.yf_c00273{bottom:173.186667pt;}
.ye_c00273{bottom:197.186667pt;}
.yd_c00273{bottom:221.186667pt;}
.yc_c00273{bottom:245.186667pt;}
.yb_c00273{bottom:269.186667pt;}
.ya_c00273{bottom:293.186667pt;}
.y9_c00273{bottom:317.186667pt;}
.y8_c00273{bottom:341.186667pt;}
.y6_c00273{bottom:362.520000pt;}
.y5_c00273{bottom:877.186667pt;}
.y4_c00273{bottom:901.186667pt;}
.y3_c00273{bottom:925.186667pt;}
.y2_c00273{bottom:949.186667pt;}
.y1_c00273{bottom:973.186667pt;}
.y12_c00273{bottom:1061.186667pt;}
.h5_c00273{height:37.007812pt;}
.h7_c00273{height:39.296875pt;}
.h3_c00273{height:45.562500pt;}
.h6_c00273{height:49.843750pt;}
.h4_c00273{height:486.666667pt;}
.h2_c00273{height:1121.333333pt;}
.h0_c00273{height:1122.520000pt;}
.h1_c00273{height:1122.666667pt;}
.w3_c00273{width:601.720000pt;}
.w2_c00273{width:793.333333pt;}
.w0_c00273{width:793.720000pt;}
.w1_c00273{width:794.000000pt;}
.x0_c00273{left:0.000000pt;}
.x1_c00273{left:58.204720pt;}
.x2_c00273{left:222.918533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_30376e6ac19e53f488a89e01.woff2')format("woff");}.ff1_c00274{font-family:ff1_c00274;line-height:0.975586;font-style:normal;font-weight:normal;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_4c83d5bdba0eb50320de50d8.woff2')format("woff");}.ff2_c00274{font-family:ff2_c00274;line-height:1.163086;font-style:normal;font-weight:normal;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_dbc8266c338c864b3dcc92b0.woff2')format("woff");}.ff3_c00274{font-family:ff3_c00274;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00274{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00274{vertical-align:0.000000px;}
.ls1_c00274{letter-spacing:0.000000px;}
.ls0_c00274{letter-spacing:0.012000px;}
.sc__c00274{text-shadow:none;}
.sc0_c00274{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00274{-webkit-text-stroke:0px transparent;}
.sc0_c00274{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00274{word-spacing:0.000000px;}
._12_c00274{margin-left:-10.584000px;}
._9_c00274{margin-left:-5.284800px;}
._0_c00274{margin-left:-3.945600px;}
._5_c00274{margin-left:-2.383200px;}
._d_c00274{margin-left:-1.173600px;}
._1_c00274{width:1.540800px;}
._2_c00274{width:3.254400px;}
._3_c00274{width:4.802400px;}
._c_c00274{width:5.889600px;}
._6_c00274{width:7.214400px;}
._4_c00274{width:8.625600px;}
._f_c00274{width:9.763200px;}
._e_c00274{width:10.929600px;}
._10_c00274{width:12.074400px;}
._11_c00274{width:13.910400px;}
._8_c00274{width:16.135200px;}
._7_c00274{width:17.784000px;}
._b_c00274{width:21.009600px;}
._14_c00274{width:22.032000px;}
._a_c00274{width:23.760000px;}
._15_c00274{width:25.444800px;}
._13_c00274{width:26.618400px;}
.fc0_c00274{color:rgb(0,0,0);}
.fs0_c00274{font-size:54.000000px;}
.fs2_c00274{font-size:60.000000px;}
.fs1_c00274{font-size:72.000000px;}
.y0_c00274{bottom:0.000000px;}
.y2_c00274{bottom:12.000000px;}
.y13_c00274{bottom:67.335000px;}
.y11_c00274{bottom:151.335000px;}
.y10_c00274{bottom:178.335000px;}
.yf_c00274{bottom:205.335000px;}
.ye_c00274{bottom:253.335000px;}
.yd_c00274{bottom:280.335000px;}
.yc_c00274{bottom:307.335000px;}
.yb_c00274{bottom:334.335000px;}
.ya_c00274{bottom:361.335000px;}
.y9_c00274{bottom:388.335000px;}
.y8_c00274{bottom:436.335000px;}
.y7_c00274{bottom:463.335000px;}
.y6_c00274{bottom:490.335000px;}
.y5_c00274{bottom:538.335000px;}
.y4_c00274{bottom:565.335000px;}
.y3_c00274{bottom:592.335000px;}
.y1_c00274{bottom:637.335000px;}
.y12_c00274{bottom:1193.835000px;}
.h3_c00274{height:41.633789px;}
.h6_c00274{height:56.074219px;}
.h5_c00274{height:67.746094px;}
.h2_c00274{height:475.500000px;}
.h4_c00274{height:1261.500000px;}
.h0_c00274{height:1262.835000px;}
.h1_c00274{height:1263.000000px;}
.w2_c00274{width:676.934850px;}
.w3_c00274{width:892.500000px;}
.w0_c00274{width:892.935000px;}
.w1_c00274{width:893.250000px;}
.x0_c00274{left:0.000000px;}
.x1_c00274{left:150.000000px;}
.x2_c00274{left:223.892100px;}
.x3_c00274{left:417.217800px;}
.x4_c00274{left:802.427700px;}
@media print{
.v0_c00274{vertical-align:0.000000pt;}
.ls1_c00274{letter-spacing:0.000000pt;}
.ls0_c00274{letter-spacing:0.010667pt;}
.ws0_c00274{word-spacing:0.000000pt;}
._12_c00274{margin-left:-9.408000pt;}
._9_c00274{margin-left:-4.697600pt;}
._0_c00274{margin-left:-3.507200pt;}
._5_c00274{margin-left:-2.118400pt;}
._d_c00274{margin-left:-1.043200pt;}
._1_c00274{width:1.369600pt;}
._2_c00274{width:2.892800pt;}
._3_c00274{width:4.268800pt;}
._c_c00274{width:5.235200pt;}
._6_c00274{width:6.412800pt;}
._4_c00274{width:7.667200pt;}
._f_c00274{width:8.678400pt;}
._e_c00274{width:9.715200pt;}
._10_c00274{width:10.732800pt;}
._11_c00274{width:12.364800pt;}
._8_c00274{width:14.342400pt;}
._7_c00274{width:15.808000pt;}
._b_c00274{width:18.675200pt;}
._14_c00274{width:19.584000pt;}
._a_c00274{width:21.120000pt;}
._15_c00274{width:22.617600pt;}
._13_c00274{width:23.660800pt;}
.fs0_c00274{font-size:48.000000pt;}
.fs2_c00274{font-size:53.333333pt;}
.fs1_c00274{font-size:64.000000pt;}
.y0_c00274{bottom:0.000000pt;}
.y2_c00274{bottom:10.666667pt;}
.y13_c00274{bottom:59.853333pt;}
.y11_c00274{bottom:134.520000pt;}
.y10_c00274{bottom:158.520000pt;}
.yf_c00274{bottom:182.520000pt;}
.ye_c00274{bottom:225.186667pt;}
.yd_c00274{bottom:249.186667pt;}
.yc_c00274{bottom:273.186667pt;}
.yb_c00274{bottom:297.186667pt;}
.ya_c00274{bottom:321.186667pt;}
.y9_c00274{bottom:345.186667pt;}
.y8_c00274{bottom:387.853333pt;}
.y7_c00274{bottom:411.853333pt;}
.y6_c00274{bottom:435.853333pt;}
.y5_c00274{bottom:478.520000pt;}
.y4_c00274{bottom:502.520000pt;}
.y3_c00274{bottom:526.520000pt;}
.y1_c00274{bottom:566.520000pt;}
.y12_c00274{bottom:1061.186667pt;}
.h3_c00274{height:37.007812pt;}
.h6_c00274{height:49.843750pt;}
.h5_c00274{height:60.218750pt;}
.h2_c00274{height:422.666667pt;}
.h4_c00274{height:1121.333333pt;}
.h0_c00274{height:1122.520000pt;}
.h1_c00274{height:1122.666667pt;}
.w2_c00274{width:601.719867pt;}
.w3_c00274{width:793.333333pt;}
.w0_c00274{width:793.720000pt;}
.w1_c00274{width:794.000000pt;}
.x0_c00274{left:0.000000pt;}
.x1_c00274{left:133.333333pt;}
.x2_c00274{left:199.015200pt;}
.x3_c00274{left:370.860267pt;}
.x4_c00274{left:713.269067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_53ec34284394c9d9b0a82b2c.woff2')format("woff");}.ff1_c00275{font-family:ff1_c00275;line-height:1.163086;font-style:normal;font-weight:normal;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_bd16d08ef4526342dff01608.woff2')format("woff");}.ff2_c00275{font-family:ff2_c00275;line-height:0.755859;font-style:normal;font-weight:normal;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_fe0bba45747fb20737c5893d.woff2')format("woff");}.ff3_c00275{font-family:ff3_c00275;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00275{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00275{vertical-align:0.000000px;}
.ls0_c00275{letter-spacing:0.000000px;}
.ls1_c00275{letter-spacing:0.012000px;}
.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:-19.800000px;}
.ws1_c00275{word-spacing:0.000000px;}
._13_c00275{margin-left:-10.627200px;}
._e_c00275{margin-left:-6.868800px;}
._5_c00275{margin-left:-4.723200px;}
._1_c00275{margin-left:-2.656800px;}
._3_c00275{margin-left:-1.519200px;}
._0_c00275{width:1.634400px;}
._2_c00275{width:2.908800px;}
._d_c00275{width:4.370400px;}
._4_c00275{width:5.630400px;}
._1b_c00275{width:6.667200px;}
._b_c00275{width:7.675200px;}
._f_c00275{width:9.388800px;}
._a_c00275{width:10.411200px;}
._7_c00275{width:11.671200px;}
._9_c00275{width:13.276800px;}
._6_c00275{width:14.832000px;}
._8_c00275{width:15.998400px;}
._c_c00275{width:17.208000px;}
._14_c00275{width:18.648000px;}
._12_c00275{width:21.369600px;}
._11_c00275{width:23.976000px;}
._10_c00275{width:26.121600px;}
._17_c00275{width:28.101600px;}
._15_c00275{width:29.296800px;}
._16_c00275{width:31.046400px;}
._18_c00275{width:32.752800px;}
._19_c00275{width:34.272000px;}
._1a_c00275{width:37.490400px;}
.fc0_c00275{color:rgb(0,0,0);}
.fs1_c00275{font-size:60.000000px;}
.fs0_c00275{font-size:72.000000px;}
.y0_c00275{bottom:0.000000px;}
.y22_c00275{bottom:67.335000px;}
.y20_c00275{bottom:152.835000px;}
.y1f_c00275{bottom:179.835000px;}
.y1e_c00275{bottom:227.835000px;}
.y1d_c00275{bottom:254.835000px;}
.y1c_c00275{bottom:281.835000px;}
.y1b_c00275{bottom:308.835000px;}
.y1a_c00275{bottom:335.835000px;}
.y19_c00275{bottom:362.835000px;}
.y18_c00275{bottom:389.835000px;}
.y17_c00275{bottom:437.835000px;}
.y16_c00275{bottom:464.835000px;}
.y15_c00275{bottom:491.835000px;}
.y14_c00275{bottom:518.835000px;}
.y13_c00275{bottom:545.835000px;}
.y12_c00275{bottom:593.835000px;}
.y11_c00275{bottom:620.835000px;}
.y10_c00275{bottom:647.835000px;}
.yf_c00275{bottom:674.835000px;}
.ye_c00275{bottom:701.835000px;}
.yd_c00275{bottom:728.835000px;}
.yc_c00275{bottom:755.835000px;}
.yb_c00275{bottom:782.835000px;}
.ya_c00275{bottom:830.835000px;}
.y9_c00275{bottom:857.835000px;}
.y8_c00275{bottom:884.835000px;}
.y7_c00275{bottom:911.835000px;}
.y6_c00275{bottom:938.835000px;}
.y5_c00275{bottom:986.835000px;}
.y4_c00275{bottom:1013.835000px;}
.y3_c00275{bottom:1040.835000px;}
.y2_c00275{bottom:1067.835000px;}
.y1_c00275{bottom:1094.835000px;}
.y21_c00275{bottom:1193.835000px;}
.h5_c00275{height:44.208984px;}
.h4_c00275{height:56.074219px;}
.h3_c00275{height:67.746094px;}
.h2_c00275{height:1261.500000px;}
.h0_c00275{height:1262.835000px;}
.h1_c00275{height:1263.000000px;}
.w2_c00275{width:892.500000px;}
.w0_c00275{width:892.935000px;}
.w1_c00275{width:893.250000px;}
.x0_c00275{left:0.000000px;}
.x1_c00275{left:65.480310px;}
@media print{
.v0_c00275{vertical-align:0.000000pt;}
.ls0_c00275{letter-spacing:0.000000pt;}
.ls1_c00275{letter-spacing:0.010667pt;}
.ws0_c00275{word-spacing:-17.600000pt;}
.ws1_c00275{word-spacing:0.000000pt;}
._13_c00275{margin-left:-9.446400pt;}
._e_c00275{margin-left:-6.105600pt;}
._5_c00275{margin-left:-4.198400pt;}
._1_c00275{margin-left:-2.361600pt;}
._3_c00275{margin-left:-1.350400pt;}
._0_c00275{width:1.452800pt;}
._2_c00275{width:2.585600pt;}
._d_c00275{width:3.884800pt;}
._4_c00275{width:5.004800pt;}
._1b_c00275{width:5.926400pt;}
._b_c00275{width:6.822400pt;}
._f_c00275{width:8.345600pt;}
._a_c00275{width:9.254400pt;}
._7_c00275{width:10.374400pt;}
._9_c00275{width:11.801600pt;}
._6_c00275{width:13.184000pt;}
._8_c00275{width:14.220800pt;}
._c_c00275{width:15.296000pt;}
._14_c00275{width:16.576000pt;}
._12_c00275{width:18.995200pt;}
._11_c00275{width:21.312000pt;}
._10_c00275{width:23.219200pt;}
._17_c00275{width:24.979200pt;}
._15_c00275{width:26.041600pt;}
._16_c00275{width:27.596800pt;}
._18_c00275{width:29.113600pt;}
._19_c00275{width:30.464000pt;}
._1a_c00275{width:33.324800pt;}
.fs1_c00275{font-size:53.333333pt;}
.fs0_c00275{font-size:64.000000pt;}
.y0_c00275{bottom:0.000000pt;}
.y22_c00275{bottom:59.853333pt;}
.y20_c00275{bottom:135.853333pt;}
.y1f_c00275{bottom:159.853333pt;}
.y1e_c00275{bottom:202.520000pt;}
.y1d_c00275{bottom:226.520000pt;}
.y1c_c00275{bottom:250.520000pt;}
.y1b_c00275{bottom:274.520000pt;}
.y1a_c00275{bottom:298.520000pt;}
.y19_c00275{bottom:322.520000pt;}
.y18_c00275{bottom:346.520000pt;}
.y17_c00275{bottom:389.186667pt;}
.y16_c00275{bottom:413.186667pt;}
.y15_c00275{bottom:437.186667pt;}
.y14_c00275{bottom:461.186667pt;}
.y13_c00275{bottom:485.186667pt;}
.y12_c00275{bottom:527.853333pt;}
.y11_c00275{bottom:551.853333pt;}
.y10_c00275{bottom:575.853333pt;}
.yf_c00275{bottom:599.853333pt;}
.ye_c00275{bottom:623.853333pt;}
.yd_c00275{bottom:647.853333pt;}
.yc_c00275{bottom:671.853333pt;}
.yb_c00275{bottom:695.853333pt;}
.ya_c00275{bottom:738.520000pt;}
.y9_c00275{bottom:762.520000pt;}
.y8_c00275{bottom:786.520000pt;}
.y7_c00275{bottom:810.520000pt;}
.y6_c00275{bottom:834.520000pt;}
.y5_c00275{bottom:877.186667pt;}
.y4_c00275{bottom:901.186667pt;}
.y3_c00275{bottom:925.186667pt;}
.y2_c00275{bottom:949.186667pt;}
.y1_c00275{bottom:973.186667pt;}
.y21_c00275{bottom:1061.186667pt;}
.h5_c00275{height:39.296875pt;}
.h4_c00275{height:49.843750pt;}
.h3_c00275{height:60.218750pt;}
.h2_c00275{height:1121.333333pt;}
.h0_c00275{height:1122.520000pt;}
.h1_c00275{height:1122.666667pt;}
.w2_c00275{width:793.333333pt;}
.w0_c00275{width:793.720000pt;}
.w1_c00275{width:794.000000pt;}
.x0_c00275{left:0.000000pt;}
.x1_c00275{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e672b9df37faa750bfdeee34.woff2')format("woff");}.ff1_c00276{font-family:ff1_c00276;line-height:0.987793;font-style:normal;font-weight:normal;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_663f61fbd1daccc7072b9a0c.woff2')format("woff");}.ff2_c00276{font-family:ff2_c00276;line-height:1.163086;font-style:normal;font-weight:normal;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_1f9817aebfe0c06cd81ceecc.woff2')format("woff");}.ff3_c00276{font-family:ff3_c00276;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00276{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00276{vertical-align:0.000000px;}
.ls1_c00276{letter-spacing:0.000000px;}
.ls0_c00276{letter-spacing:0.012000px;}
.sc__c00276{text-shadow:none;}
.sc0_c00276{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00276{-webkit-text-stroke:0px transparent;}
.sc0_c00276{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00276{word-spacing:-19.800000px;}
.ws1_c00276{word-spacing:0.000000px;}
._18_c00276{margin-left:-6.933600px;}
._3_c00276{margin-left:-4.543200px;}
._0_c00276{margin-left:-3.261600px;}
._8_c00276{margin-left:-2.073600px;}
._1_c00276{margin-left:-1.058400px;}
._6_c00276{width:1.648800px;}
._14_c00276{width:3.211200px;}
._4_c00276{width:5.198400px;}
._17_c00276{width:6.508800px;}
._16_c00276{width:8.215200px;}
._c_c00276{width:9.280800px;}
._5_c00276{width:10.497600px;}
._1a_c00276{width:11.563200px;}
._b_c00276{width:12.628800px;}
._7_c00276{width:13.903200px;}
._2_c00276{width:15.652800px;}
._9_c00276{width:17.532000px;}
._a_c00276{width:18.741600px;}
._13_c00276{width:21.636000px;}
._15_c00276{width:22.824000px;}
._e_c00276{width:25.308000px;}
._19_c00276{width:26.848800px;}
._d_c00276{width:28.872000px;}
._10_c00276{width:31.557600px;}
._f_c00276{width:32.601600px;}
._11_c00276{width:33.775200px;}
._12_c00276{width:35.006400px;}
.fc0_c00276{color:rgb(0,0,0);}
.fs0_c00276{font-size:54.000000px;}
.fs2_c00276{font-size:60.000000px;}
.fs1_c00276{font-size:72.000000px;}
.y0_c00276{bottom:0.000000px;}
.y2_c00276{bottom:12.000000px;}
.y14_c00276{bottom:67.335000px;}
.y12_c00276{bottom:152.835000px;}
.y11_c00276{bottom:179.835000px;}
.y10_c00276{bottom:206.835000px;}
.yf_c00276{bottom:254.835000px;}
.ye_c00276{bottom:281.835000px;}
.yd_c00276{bottom:308.835000px;}
.yc_c00276{bottom:335.835000px;}
.yb_c00276{bottom:362.835000px;}
.ya_c00276{bottom:389.835000px;}
.y9_c00276{bottom:416.835000px;}
.y8_c00276{bottom:443.835000px;}
.y7_c00276{bottom:491.835000px;}
.y6_c00276{bottom:518.835000px;}
.y5_c00276{bottom:545.835000px;}
.y4_c00276{bottom:572.835000px;}
.y3_c00276{bottom:599.835000px;}
.y1_c00276{bottom:644.835000px;}
.y13_c00276{bottom:1193.835000px;}
.h3_c00276{height:42.292969px;}
.h6_c00276{height:56.074219px;}
.h5_c00276{height:67.746094px;}
.h2_c00276{height:468.000000px;}
.h4_c00276{height:1261.500000px;}
.h0_c00276{height:1262.835000px;}
.h1_c00276{height:1263.000000px;}
.w2_c00276{width:676.934850px;}
.w3_c00276{width:892.500000px;}
.w0_c00276{width:892.935000px;}
.w1_c00276{width:893.250000px;}
.x0_c00276{left:0.000000px;}
.x2_c00276{left:72.877380px;}
.x1_c00276{left:150.000000px;}
.x3_c00276{left:417.217800px;}
.x4_c00276{left:802.427700px;}
@media print{
.v0_c00276{vertical-align:0.000000pt;}
.ls1_c00276{letter-spacing:0.000000pt;}
.ls0_c00276{letter-spacing:0.010667pt;}
.ws0_c00276{word-spacing:-17.600000pt;}
.ws1_c00276{word-spacing:0.000000pt;}
._18_c00276{margin-left:-6.163200pt;}
._3_c00276{margin-left:-4.038400pt;}
._0_c00276{margin-left:-2.899200pt;}
._8_c00276{margin-left:-1.843200pt;}
._1_c00276{margin-left:-0.940800pt;}
._6_c00276{width:1.465600pt;}
._14_c00276{width:2.854400pt;}
._4_c00276{width:4.620800pt;}
._17_c00276{width:5.785600pt;}
._16_c00276{width:7.302400pt;}
._c_c00276{width:8.249600pt;}
._5_c00276{width:9.331200pt;}
._1a_c00276{width:10.278400pt;}
._b_c00276{width:11.225600pt;}
._7_c00276{width:12.358400pt;}
._2_c00276{width:13.913600pt;}
._9_c00276{width:15.584000pt;}
._a_c00276{width:16.659200pt;}
._13_c00276{width:19.232000pt;}
._15_c00276{width:20.288000pt;}
._e_c00276{width:22.496000pt;}
._19_c00276{width:23.865600pt;}
._d_c00276{width:25.664000pt;}
._10_c00276{width:28.051200pt;}
._f_c00276{width:28.979200pt;}
._11_c00276{width:30.022400pt;}
._12_c00276{width:31.116800pt;}
.fs0_c00276{font-size:48.000000pt;}
.fs2_c00276{font-size:53.333333pt;}
.fs1_c00276{font-size:64.000000pt;}
.y0_c00276{bottom:0.000000pt;}
.y2_c00276{bottom:10.666667pt;}
.y14_c00276{bottom:59.853333pt;}
.y12_c00276{bottom:135.853333pt;}
.y11_c00276{bottom:159.853333pt;}
.y10_c00276{bottom:183.853333pt;}
.yf_c00276{bottom:226.520000pt;}
.ye_c00276{bottom:250.520000pt;}
.yd_c00276{bottom:274.520000pt;}
.yc_c00276{bottom:298.520000pt;}
.yb_c00276{bottom:322.520000pt;}
.ya_c00276{bottom:346.520000pt;}
.y9_c00276{bottom:370.520000pt;}
.y8_c00276{bottom:394.520000pt;}
.y7_c00276{bottom:437.186667pt;}
.y6_c00276{bottom:461.186667pt;}
.y5_c00276{bottom:485.186667pt;}
.y4_c00276{bottom:509.186667pt;}
.y3_c00276{bottom:533.186667pt;}
.y1_c00276{bottom:573.186667pt;}
.y13_c00276{bottom:1061.186667pt;}
.h3_c00276{height:37.593750pt;}
.h6_c00276{height:49.843750pt;}
.h5_c00276{height:60.218750pt;}
.h2_c00276{height:416.000000pt;}
.h4_c00276{height:1121.333333pt;}
.h0_c00276{height:1122.520000pt;}
.h1_c00276{height:1122.666667pt;}
.w2_c00276{width:601.719867pt;}
.w3_c00276{width:793.333333pt;}
.w0_c00276{width:793.720000pt;}
.w1_c00276{width:794.000000pt;}
.x0_c00276{left:0.000000pt;}
.x2_c00276{left:64.779893pt;}
.x1_c00276{left:133.333333pt;}
.x3_c00276{left:370.860267pt;}
.x4_c00276{left:713.269067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8a8d7880b640522330186a0e.woff2')format("woff");}.ff1_c00277{font-family:ff1_c00277;line-height:1.163086;font-style:normal;font-weight:normal;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_2cf85ff65cabea908eb9f7d9.woff2')format("woff");}.ff2_c00277{font-family:ff2_c00277;line-height:0.755859;font-style:normal;font-weight:normal;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_b06fae0c62b634c8bfd2f35c.woff2')format("woff");}.ff3_c00277{font-family:ff3_c00277;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00277{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00277{vertical-align:0.000000px;}
.ls0_c00277{letter-spacing:0.000000px;}
.ls1_c00277{letter-spacing:0.012000px;}
.sc__c00277{text-shadow:none;}
.sc0_c00277{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00277{-webkit-text-stroke:0px transparent;}
.sc0_c00277{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00277{word-spacing:0.000000px;}
._12_c00277{margin-left:-20.080800px;}
._8_c00277{margin-left:-4.075200px;}
._3_c00277{margin-left:-2.930400px;}
._0_c00277{margin-left:-1.123200px;}
._7_c00277{width:1.245600px;}
._5_c00277{width:2.311200px;}
._6_c00277{width:3.996000px;}
._9_c00277{width:5.133600px;}
._2_c00277{width:6.307200px;}
._1_c00277{width:7.416000px;}
._4_c00277{width:9.086400px;}
._10_c00277{width:10.922400px;}
._a_c00277{width:12.009600px;}
._11_c00277{width:13.564800px;}
._d_c00277{width:14.673600px;}
._b_c00277{width:16.365600px;}
._e_c00277{width:17.424000px;}
._c_c00277{width:18.655200px;}
._f_c00277{width:21.614400px;}
.fc0_c00277{color:rgb(0,0,0);}
.fs1_c00277{font-size:60.000000px;}
.fs0_c00277{font-size:72.000000px;}
.y0_c00277{bottom:0.000000px;}
.y21_c00277{bottom:67.335000px;}
.y1f_c00277{bottom:158.835000px;}
.y1e_c00277{bottom:185.835000px;}
.y1d_c00277{bottom:233.835000px;}
.y1c_c00277{bottom:260.835000px;}
.y1b_c00277{bottom:287.835000px;}
.y1a_c00277{bottom:314.835000px;}
.y19_c00277{bottom:341.835000px;}
.y18_c00277{bottom:389.835000px;}
.y17_c00277{bottom:416.835000px;}
.y16_c00277{bottom:443.835000px;}
.y15_c00277{bottom:470.835000px;}
.y14_c00277{bottom:518.835000px;}
.y13_c00277{bottom:545.835000px;}
.y12_c00277{bottom:572.835000px;}
.y11_c00277{bottom:599.835000px;}
.y10_c00277{bottom:626.835000px;}
.yf_c00277{bottom:653.835000px;}
.ye_c00277{bottom:701.835000px;}
.yd_c00277{bottom:728.835000px;}
.yc_c00277{bottom:755.835000px;}
.yb_c00277{bottom:782.835000px;}
.ya_c00277{bottom:830.835000px;}
.y9_c00277{bottom:857.835000px;}
.y8_c00277{bottom:884.835000px;}
.y7_c00277{bottom:911.835000px;}
.y6_c00277{bottom:959.835000px;}
.y5_c00277{bottom:986.835000px;}
.y4_c00277{bottom:1013.835000px;}
.y3_c00277{bottom:1040.835000px;}
.y2_c00277{bottom:1067.835000px;}
.y1_c00277{bottom:1094.835000px;}
.y20_c00277{bottom:1193.835000px;}
.h5_c00277{height:44.208984px;}
.h4_c00277{height:56.074219px;}
.h3_c00277{height:67.746094px;}
.h2_c00277{height:1261.500000px;}
.h0_c00277{height:1262.835000px;}
.h1_c00277{height:1263.000000px;}
.w2_c00277{width:892.500000px;}
.w0_c00277{width:892.935000px;}
.w1_c00277{width:893.250000px;}
.x0_c00277{left:0.000000px;}
.x1_c00277{left:65.480310px;}
@media print{
.v0_c00277{vertical-align:0.000000pt;}
.ls0_c00277{letter-spacing:0.000000pt;}
.ls1_c00277{letter-spacing:0.010667pt;}
.ws0_c00277{word-spacing:0.000000pt;}
._12_c00277{margin-left:-17.849600pt;}
._8_c00277{margin-left:-3.622400pt;}
._3_c00277{margin-left:-2.604800pt;}
._0_c00277{margin-left:-0.998400pt;}
._7_c00277{width:1.107200pt;}
._5_c00277{width:2.054400pt;}
._6_c00277{width:3.552000pt;}
._9_c00277{width:4.563200pt;}
._2_c00277{width:5.606400pt;}
._1_c00277{width:6.592000pt;}
._4_c00277{width:8.076800pt;}
._10_c00277{width:9.708800pt;}
._a_c00277{width:10.675200pt;}
._11_c00277{width:12.057600pt;}
._d_c00277{width:13.043200pt;}
._b_c00277{width:14.547200pt;}
._e_c00277{width:15.488000pt;}
._c_c00277{width:16.582400pt;}
._f_c00277{width:19.212800pt;}
.fs1_c00277{font-size:53.333333pt;}
.fs0_c00277{font-size:64.000000pt;}
.y0_c00277{bottom:0.000000pt;}
.y21_c00277{bottom:59.853333pt;}
.y1f_c00277{bottom:141.186667pt;}
.y1e_c00277{bottom:165.186667pt;}
.y1d_c00277{bottom:207.853333pt;}
.y1c_c00277{bottom:231.853333pt;}
.y1b_c00277{bottom:255.853333pt;}
.y1a_c00277{bottom:279.853333pt;}
.y19_c00277{bottom:303.853333pt;}
.y18_c00277{bottom:346.520000pt;}
.y17_c00277{bottom:370.520000pt;}
.y16_c00277{bottom:394.520000pt;}
.y15_c00277{bottom:418.520000pt;}
.y14_c00277{bottom:461.186667pt;}
.y13_c00277{bottom:485.186667pt;}
.y12_c00277{bottom:509.186667pt;}
.y11_c00277{bottom:533.186667pt;}
.y10_c00277{bottom:557.186667pt;}
.yf_c00277{bottom:581.186667pt;}
.ye_c00277{bottom:623.853333pt;}
.yd_c00277{bottom:647.853333pt;}
.yc_c00277{bottom:671.853333pt;}
.yb_c00277{bottom:695.853333pt;}
.ya_c00277{bottom:738.520000pt;}
.y9_c00277{bottom:762.520000pt;}
.y8_c00277{bottom:786.520000pt;}
.y7_c00277{bottom:810.520000pt;}
.y6_c00277{bottom:853.186667pt;}
.y5_c00277{bottom:877.186667pt;}
.y4_c00277{bottom:901.186667pt;}
.y3_c00277{bottom:925.186667pt;}
.y2_c00277{bottom:949.186667pt;}
.y1_c00277{bottom:973.186667pt;}
.y20_c00277{bottom:1061.186667pt;}
.h5_c00277{height:39.296875pt;}
.h4_c00277{height:49.843750pt;}
.h3_c00277{height:60.218750pt;}
.h2_c00277{height:1121.333333pt;}
.h0_c00277{height:1122.520000pt;}
.h1_c00277{height:1122.666667pt;}
.w2_c00277{width:793.333333pt;}
.w0_c00277{width:793.720000pt;}
.w1_c00277{width:794.000000pt;}
.x0_c00277{left:0.000000pt;}
.x1_c00277{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f8ad5112668ea5f0d0d2d901.woff2')format("woff");}.ff1_c00278{font-family:ff1_c00278;line-height:0.934082;font-style:normal;font-weight:normal;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_9ee3550d3b4a144873943722.woff2')format("woff");}.ff2_c00278{font-family:ff2_c00278;line-height:1.155762;font-style: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;}
.ls1_c00278{letter-spacing:0.000000px;}
.ls0_c00278{letter-spacing:0.012000px;}
.sc__c00278{text-shadow:none;}
.sc0_c00278{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00278{-webkit-text-stroke:0px transparent;}
.sc0_c00278{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00278{word-spacing:-19.800000px;}
.ws1_c00278{word-spacing:0.000000px;}
._17_c00278{margin-left:-10.432800px;}
._16_c00278{margin-left:-6.991200px;}
._5_c00278{margin-left:-4.413600px;}
._1_c00278{margin-left:-2.779200px;}
._3_c00278{margin-left:-1.461600px;}
._7_c00278{width:1.166400px;}
._4_c00278{width:2.203200px;}
._2_c00278{width:3.657600px;}
._0_c00278{width:4.996800px;}
._6_c00278{width:6.717600px;}
._8_c00278{width:8.352000px;}
._9_c00278{width:9.511200px;}
._a_c00278{width:11.419200px;}
._b_c00278{width:12.614400px;}
._12_c00278{width:13.773600px;}
._13_c00278{width:16.675200px;}
._14_c00278{width:17.726400px;}
._15_c00278{width:22.204800px;}
._10_c00278{width:23.940000px;}
._f_c00278{width:25.747200px;}
._d_c00278{width:26.784000px;}
._e_c00278{width:27.921600px;}
._11_c00278{width:29.325600px;}
._c_c00278{width:30.686400px;}
.fc0_c00278{color:rgb(0,0,0);}
.fs1_c00278{font-size:60.000000px;}
.fs0_c00278{font-size:72.000000px;}
.y0_c00278{bottom:0.000000px;}
.y22_c00278{bottom:67.335000px;}
.y20_c00278{bottom:173.835000px;}
.y1f_c00278{bottom:200.835000px;}
.y1e_c00278{bottom:227.835000px;}
.y1d_c00278{bottom:254.835000px;}
.y1c_c00278{bottom:281.835000px;}
.y1b_c00278{bottom:308.835000px;}
.y1a_c00278{bottom:335.835000px;}
.y19_c00278{bottom:362.835000px;}
.y18_c00278{bottom:389.835000px;}
.y17_c00278{bottom:416.835000px;}
.y16_c00278{bottom:443.835000px;}
.y15_c00278{bottom:491.835000px;}
.y14_c00278{bottom:518.835000px;}
.y13_c00278{bottom:545.835000px;}
.y12_c00278{bottom:572.835000px;}
.y11_c00278{bottom:599.835000px;}
.y10_c00278{bottom:626.835000px;}
.yf_c00278{bottom:674.835000px;}
.ye_c00278{bottom:701.835000px;}
.yd_c00278{bottom:728.835000px;}
.yc_c00278{bottom:755.835000px;}
.yb_c00278{bottom:782.835000px;}
.ya_c00278{bottom:809.835000px;}
.y9_c00278{bottom:836.835000px;}
.y8_c00278{bottom:884.835000px;}
.y7_c00278{bottom:911.835000px;}
.y6_c00278{bottom:938.835000px;}
.y5_c00278{bottom:965.835000px;}
.y4_c00278{bottom:992.835000px;}
.y3_c00278{bottom:1019.835000px;}
.y2_c00278{bottom:1067.835000px;}
.y1_c00278{bottom:1094.835000px;}
.y21_c00278{bottom:1193.835000px;}
.h3_c00278{height:51.257812px;}
.h4_c00278{height:56.074219px;}
.h2_c00278{height:1261.500000px;}
.h0_c00278{height:1262.835000px;}
.h1_c00278{height:1263.000000px;}
.w2_c00278{width:892.500000px;}
.w0_c00278{width:892.935000px;}
.w1_c00278{width:893.250000px;}
.x0_c00278{left:0.000000px;}
.x1_c00278{left:150.519750px;}
.x2_c00278{left:417.217800px;}
.x3_c00278{left:802.427700px;}
@media print{
.v0_c00278{vertical-align:0.000000pt;}
.ls1_c00278{letter-spacing:0.000000pt;}
.ls0_c00278{letter-spacing:0.010667pt;}
.ws0_c00278{word-spacing:-17.600000pt;}
.ws1_c00278{word-spacing:0.000000pt;}
._17_c00278{margin-left:-9.273600pt;}
._16_c00278{margin-left:-6.214400pt;}
._5_c00278{margin-left:-3.923200pt;}
._1_c00278{margin-left:-2.470400pt;}
._3_c00278{margin-left:-1.299200pt;}
._7_c00278{width:1.036800pt;}
._4_c00278{width:1.958400pt;}
._2_c00278{width:3.251200pt;}
._0_c00278{width:4.441600pt;}
._6_c00278{width:5.971200pt;}
._8_c00278{width:7.424000pt;}
._9_c00278{width:8.454400pt;}
._a_c00278{width:10.150400pt;}
._b_c00278{width:11.212800pt;}
._12_c00278{width:12.243200pt;}
._13_c00278{width:14.822400pt;}
._14_c00278{width:15.756800pt;}
._15_c00278{width:19.737600pt;}
._10_c00278{width:21.280000pt;}
._f_c00278{width:22.886400pt;}
._d_c00278{width:23.808000pt;}
._e_c00278{width:24.819200pt;}
._11_c00278{width:26.067200pt;}
._c_c00278{width:27.276800pt;}
.fs1_c00278{font-size:53.333333pt;}
.fs0_c00278{font-size:64.000000pt;}
.y0_c00278{bottom:0.000000pt;}
.y22_c00278{bottom:59.853333pt;}
.y20_c00278{bottom:154.520000pt;}
.y1f_c00278{bottom:178.520000pt;}
.y1e_c00278{bottom:202.520000pt;}
.y1d_c00278{bottom:226.520000pt;}
.y1c_c00278{bottom:250.520000pt;}
.y1b_c00278{bottom:274.520000pt;}
.y1a_c00278{bottom:298.520000pt;}
.y19_c00278{bottom:322.520000pt;}
.y18_c00278{bottom:346.520000pt;}
.y17_c00278{bottom:370.520000pt;}
.y16_c00278{bottom:394.520000pt;}
.y15_c00278{bottom:437.186667pt;}
.y14_c00278{bottom:461.186667pt;}
.y13_c00278{bottom:485.186667pt;}
.y12_c00278{bottom:509.186667pt;}
.y11_c00278{bottom:533.186667pt;}
.y10_c00278{bottom:557.186667pt;}
.yf_c00278{bottom:599.853333pt;}
.ye_c00278{bottom:623.853333pt;}
.yd_c00278{bottom:647.853333pt;}
.yc_c00278{bottom:671.853333pt;}
.yb_c00278{bottom:695.853333pt;}
.ya_c00278{bottom:719.853333pt;}
.y9_c00278{bottom:743.853333pt;}
.y8_c00278{bottom:786.520000pt;}
.y7_c00278{bottom:810.520000pt;}
.y6_c00278{bottom:834.520000pt;}
.y5_c00278{bottom:858.520000pt;}
.y4_c00278{bottom:882.520000pt;}
.y3_c00278{bottom:906.520000pt;}
.y2_c00278{bottom:949.186667pt;}
.y1_c00278{bottom:973.186667pt;}
.y21_c00278{bottom:1061.186667pt;}
.h3_c00278{height:45.562500pt;}
.h4_c00278{height:49.843750pt;}
.h2_c00278{height:1121.333333pt;}
.h0_c00278{height:1122.520000pt;}
.h1_c00278{height:1122.666667pt;}
.w2_c00278{width:793.333333pt;}
.w0_c00278{width:793.720000pt;}
.w1_c00278{width:794.000000pt;}
.x0_c00278{left:0.000000pt;}
.x1_c00278{left:133.795333pt;}
.x2_c00278{left:370.860267pt;}
.x3_c00278{left:713.269067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e5ffa541819e7ecbf1b87264.woff2')format("woff");}.ff1_c00279{font-family:ff1_c00279;line-height:1.163086;font-style:normal;font-weight:normal;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_cd95b243ed4106e6a935c48e.woff2')format("woff");}.ff2_c00279{font-family:ff2_c00279;line-height:0.755859;font-style:normal;font-weight:normal;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_01072195cd12e66b0e854012.woff2')format("woff");}.ff3_c00279{font-family:ff3_c00279;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00279{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00279{vertical-align:0.000000px;}
.ls0_c00279{letter-spacing:0.000000px;}
.ls1_c00279{letter-spacing:0.012000px;}
.sc__c00279{text-shadow:none;}
.sc0_c00279{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00279{-webkit-text-stroke:0px transparent;}
.sc0_c00279{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00279{word-spacing:0.000000px;}
._14_c00279{margin-left:-11.296800px;}
._c_c00279{margin-left:-7.711200px;}
._15_c00279{margin-left:-6.667200px;}
._d_c00279{margin-left:-5.054400px;}
._0_c00279{margin-left:-3.945600px;}
._4_c00279{margin-left:-2.131200px;}
._b_c00279{margin-left:-1.036800px;}
._1_c00279{width:1.540800px;}
._9_c00279{width:2.959200px;}
._6_c00279{width:4.831200px;}
._8_c00279{width:6.249600px;}
._7_c00279{width:7.358400px;}
._a_c00279{width:8.366400px;}
._10_c00279{width:9.590400px;}
._2_c00279{width:10.648800px;}
._3_c00279{width:12.160800px;}
._e_c00279{width:13.248000px;}
._5_c00279{width:14.299200px;}
._f_c00279{width:16.171200px;}
._12_c00279{width:17.496000px;}
._13_c00279{width:21.348000px;}
._11_c00279{width:23.076000px;}
._16_c00279{width:24.264000px;}
._19_c00279{width:26.121600px;}
._18_c00279{width:28.281600px;}
._17_c00279{width:29.332800px;}
.fc0_c00279{color:rgb(0,0,0);}
.fs1_c00279{font-size:60.000000px;}
.fs0_c00279{font-size:72.000000px;}
.y0_c00279{bottom:0.000000px;}
.y21_c00279{bottom:67.335000px;}
.y1f_c00279{bottom:179.835000px;}
.y1e_c00279{bottom:206.835000px;}
.y1d_c00279{bottom:254.835000px;}
.y1c_c00279{bottom:281.835000px;}
.y1b_c00279{bottom:308.835000px;}
.y1a_c00279{bottom:335.835000px;}
.y19_c00279{bottom:362.835000px;}
.y18_c00279{bottom:389.835000px;}
.y17_c00279{bottom:416.835000px;}
.y16_c00279{bottom:464.835000px;}
.y15_c00279{bottom:491.835000px;}
.y14_c00279{bottom:518.835000px;}
.y13_c00279{bottom:545.835000px;}
.y12_c00279{bottom:572.835000px;}
.y11_c00279{bottom:620.835000px;}
.y10_c00279{bottom:647.835000px;}
.yf_c00279{bottom:674.835000px;}
.ye_c00279{bottom:722.835000px;}
.yd_c00279{bottom:749.835000px;}
.yc_c00279{bottom:776.835000px;}
.yb_c00279{bottom:803.835000px;}
.ya_c00279{bottom:830.835000px;}
.y9_c00279{bottom:878.835000px;}
.y8_c00279{bottom:905.835000px;}
.y7_c00279{bottom:932.835000px;}
.y6_c00279{bottom:959.835000px;}
.y5_c00279{bottom:986.835000px;}
.y4_c00279{bottom:1013.835000px;}
.y3_c00279{bottom:1040.835000px;}
.y2_c00279{bottom:1067.835000px;}
.y1_c00279{bottom:1094.835000px;}
.y20_c00279{bottom:1193.835000px;}
.h5_c00279{height:44.208984px;}
.h4_c00279{height:56.074219px;}
.h3_c00279{height:67.746094px;}
.h2_c00279{height:1261.500000px;}
.h0_c00279{height:1262.835000px;}
.h1_c00279{height:1263.000000px;}
.w2_c00279{width:892.500000px;}
.w0_c00279{width:892.935000px;}
.w1_c00279{width:893.250000px;}
.x0_c00279{left:0.000000px;}
.x1_c00279{left:65.480310px;}
@media print{
.v0_c00279{vertical-align:0.000000pt;}
.ls0_c00279{letter-spacing:0.000000pt;}
.ls1_c00279{letter-spacing:0.010667pt;}
.ws0_c00279{word-spacing:0.000000pt;}
._14_c00279{margin-left:-10.041600pt;}
._c_c00279{margin-left:-6.854400pt;}
._15_c00279{margin-left:-5.926400pt;}
._d_c00279{margin-left:-4.492800pt;}
._0_c00279{margin-left:-3.507200pt;}
._4_c00279{margin-left:-1.894400pt;}
._b_c00279{margin-left:-0.921600pt;}
._1_c00279{width:1.369600pt;}
._9_c00279{width:2.630400pt;}
._6_c00279{width:4.294400pt;}
._8_c00279{width:5.555200pt;}
._7_c00279{width:6.540800pt;}
._a_c00279{width:7.436800pt;}
._10_c00279{width:8.524800pt;}
._2_c00279{width:9.465600pt;}
._3_c00279{width:10.809600pt;}
._e_c00279{width:11.776000pt;}
._5_c00279{width:12.710400pt;}
._f_c00279{width:14.374400pt;}
._12_c00279{width:15.552000pt;}
._13_c00279{width:18.976000pt;}
._11_c00279{width:20.512000pt;}
._16_c00279{width:21.568000pt;}
._19_c00279{width:23.219200pt;}
._18_c00279{width:25.139200pt;}
._17_c00279{width:26.073600pt;}
.fs1_c00279{font-size:53.333333pt;}
.fs0_c00279{font-size:64.000000pt;}
.y0_c00279{bottom:0.000000pt;}
.y21_c00279{bottom:59.853333pt;}
.y1f_c00279{bottom:159.853333pt;}
.y1e_c00279{bottom:183.853333pt;}
.y1d_c00279{bottom:226.520000pt;}
.y1c_c00279{bottom:250.520000pt;}
.y1b_c00279{bottom:274.520000pt;}
.y1a_c00279{bottom:298.520000pt;}
.y19_c00279{bottom:322.520000pt;}
.y18_c00279{bottom:346.520000pt;}
.y17_c00279{bottom:370.520000pt;}
.y16_c00279{bottom:413.186667pt;}
.y15_c00279{bottom:437.186667pt;}
.y14_c00279{bottom:461.186667pt;}
.y13_c00279{bottom:485.186667pt;}
.y12_c00279{bottom:509.186667pt;}
.y11_c00279{bottom:551.853333pt;}
.y10_c00279{bottom:575.853333pt;}
.yf_c00279{bottom:599.853333pt;}
.ye_c00279{bottom:642.520000pt;}
.yd_c00279{bottom:666.520000pt;}
.yc_c00279{bottom:690.520000pt;}
.yb_c00279{bottom:714.520000pt;}
.ya_c00279{bottom:738.520000pt;}
.y9_c00279{bottom:781.186667pt;}
.y8_c00279{bottom:805.186667pt;}
.y7_c00279{bottom:829.186667pt;}
.y6_c00279{bottom:853.186667pt;}
.y5_c00279{bottom:877.186667pt;}
.y4_c00279{bottom:901.186667pt;}
.y3_c00279{bottom:925.186667pt;}
.y2_c00279{bottom:949.186667pt;}
.y1_c00279{bottom:973.186667pt;}
.y20_c00279{bottom:1061.186667pt;}
.h5_c00279{height:39.296875pt;}
.h4_c00279{height:49.843750pt;}
.h3_c00279{height:60.218750pt;}
.h2_c00279{height:1121.333333pt;}
.h0_c00279{height:1122.520000pt;}
.h1_c00279{height:1122.666667pt;}
.w2_c00279{width:793.333333pt;}
.w0_c00279{width:793.720000pt;}
.w1_c00279{width:794.000000pt;}
.x0_c00279{left:0.000000pt;}
.x1_c00279{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d7a0763843bb7202da551800.woff2')format("woff");}.ff1_c00280{font-family:ff1_c00280;line-height:1.163086;font-style:normal;font-weight:normal;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_0cd6db9b8f670a85fbf49ca5.woff2')format("woff");}.ff2_c00280{font-family:ff2_c00280;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00280{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00280{vertical-align:0.000000px;}
.ls1_c00280{letter-spacing:0.000000px;}
.ls0_c00280{letter-spacing:0.012000px;}
.sc__c00280{text-shadow:none;}
.sc0_c00280{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00280{-webkit-text-stroke:0px transparent;}
.sc0_c00280{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00280{word-spacing:0.000000px;}
._a_c00280{margin-left:-4.363200px;}
._5_c00280{margin-left:-3.348000px;}
._0_c00280{margin-left:-2.275200px;}
._8_c00280{margin-left:-1.108800px;}
._3_c00280{width:1.360800px;}
._7_c00280{width:2.498400px;}
._4_c00280{width:3.636000px;}
._2_c00280{width:4.932000px;}
._1_c00280{width:7.192800px;}
._6_c00280{width:8.395200px;}
._9_c00280{width:9.424800px;}
._c_c00280{width:11.376000px;}
._b_c00280{width:12.693600px;}
.fc0_c00280{color:rgb(0,0,0);}
.fs1_c00280{font-size:60.000000px;}
.fs0_c00280{font-size:72.000000px;}
.y0_c00280{bottom:0.000000px;}
.y9_c00280{bottom:67.335000px;}
.y7_c00280{bottom:911.835000px;}
.y6_c00280{bottom:938.835000px;}
.y5_c00280{bottom:965.835000px;}
.y4_c00280{bottom:992.835000px;}
.y3_c00280{bottom:1019.835000px;}
.y2_c00280{bottom:1067.835000px;}
.y1_c00280{bottom:1094.835000px;}
.y8_c00280{bottom:1193.835000px;}
.h4_c00280{height:56.074219px;}
.h3_c00280{height:67.746094px;}
.h2_c00280{height:1261.500000px;}
.h0_c00280{height:1262.835000px;}
.h1_c00280{height:1263.000000px;}
.w2_c00280{width:892.500000px;}
.w0_c00280{width:892.935000px;}
.w1_c00280{width:893.250000px;}
.x0_c00280{left:0.000000px;}
.x1_c00280{left:150.519750px;}
.x2_c00280{left:417.217800px;}
.x3_c00280{left:802.427700px;}
@media print{
.v0_c00280{vertical-align:0.000000pt;}
.ls1_c00280{letter-spacing:0.000000pt;}
.ls0_c00280{letter-spacing:0.010667pt;}
.ws0_c00280{word-spacing:0.000000pt;}
._a_c00280{margin-left:-3.878400pt;}
._5_c00280{margin-left:-2.976000pt;}
._0_c00280{margin-left:-2.022400pt;}
._8_c00280{margin-left:-0.985600pt;}
._3_c00280{width:1.209600pt;}
._7_c00280{width:2.220800pt;}
._4_c00280{width:3.232000pt;}
._2_c00280{width:4.384000pt;}
._1_c00280{width:6.393600pt;}
._6_c00280{width:7.462400pt;}
._9_c00280{width:8.377600pt;}
._c_c00280{width:10.112000pt;}
._b_c00280{width:11.283200pt;}
.fs1_c00280{font-size:53.333333pt;}
.fs0_c00280{font-size:64.000000pt;}
.y0_c00280{bottom:0.000000pt;}
.y9_c00280{bottom:59.853333pt;}
.y7_c00280{bottom:810.520000pt;}
.y6_c00280{bottom:834.520000pt;}
.y5_c00280{bottom:858.520000pt;}
.y4_c00280{bottom:882.520000pt;}
.y3_c00280{bottom:906.520000pt;}
.y2_c00280{bottom:949.186667pt;}
.y1_c00280{bottom:973.186667pt;}
.y8_c00280{bottom:1061.186667pt;}
.h4_c00280{height:49.843750pt;}
.h3_c00280{height:60.218750pt;}
.h2_c00280{height:1121.333333pt;}
.h0_c00280{height:1122.520000pt;}
.h1_c00280{height:1122.666667pt;}
.w2_c00280{width:793.333333pt;}
.w0_c00280{width:793.720000pt;}
.w1_c00280{width:794.000000pt;}
.x0_c00280{left:0.000000pt;}
.x1_c00280{left:133.795333pt;}
.x2_c00280{left:370.860267pt;}
.x3_c00280{left:713.269067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_148070992f3c324799dd1fa2.woff2')format("woff");}.ff1_c00281{font-family:ff1_c00281;line-height:0.756836;font-style:normal;font-weight:normal;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_e26982b9490d3137c3e23b3b.woff2')format("woff");}.ff2_c00281{font-family:ff2_c00281;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00281{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00281{vertical-align:0.000000px;}
.ls0_c00281{letter-spacing:0.000000px;}
.ls1_c00281{letter-spacing:0.012000px;}
.sc__c00281{text-shadow:none;}
.sc0_c00281{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00281{-webkit-text-stroke:0px transparent;}
.sc0_c00281{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00281{word-spacing:0.000000px;}
._0_c00281{margin-left:-3.216000px;}
.fc0_c00281{color:rgb(0,0,0);}
.fs0_c00281{font-size:60.000000px;}
.y0_c00281{bottom:0.000000px;}
.y2_c00281{bottom:67.335000px;}
.y1_c00281{bottom:1193.835000px;}
.h4_c00281{height:44.208984px;}
.h3_c00281{height:56.074219px;}
.h2_c00281{height:1261.500000px;}
.h0_c00281{height:1262.835000px;}
.h1_c00281{height:1263.000000px;}
.w2_c00281{width:892.500000px;}
.w0_c00281{width:892.935000px;}
.w1_c00281{width:893.250000px;}
.x0_c00281{left:0.000000px;}
.x1_c00281{left:65.480310px;}
@media print{
.v0_c00281{vertical-align:0.000000pt;}
.ls0_c00281{letter-spacing:0.000000pt;}
.ls1_c00281{letter-spacing:0.010667pt;}
.ws0_c00281{word-spacing:0.000000pt;}
._0_c00281{margin-left:-2.858667pt;}
.fs0_c00281{font-size:53.333333pt;}
.y0_c00281{bottom:0.000000pt;}
.y2_c00281{bottom:59.853333pt;}
.y1_c00281{bottom:1061.186667pt;}
.h4_c00281{height:39.296875pt;}
.h3_c00281{height:49.843750pt;}
.h2_c00281{height:1121.333333pt;}
.h0_c00281{height:1122.520000pt;}
.h1_c00281{height:1122.666667pt;}
.w2_c00281{width:793.333333pt;}
.w0_c00281{width:793.720000pt;}
.w1_c00281{width:794.000000pt;}
.x0_c00281{left:0.000000pt;}
.x1_c00281{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0cf39455524600be7137eaf1.woff2')format("woff");}.ff1_c00282{font-family:ff1_c00282;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00282{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00282{vertical-align:0.000000px;}
.ls0_c00282{letter-spacing:0.012000px;}
.sc__c00282{text-shadow:none;}
.sc0_c00282{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00282{-webkit-text-stroke:0px transparent;}
.sc0_c00282{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00282{word-spacing:0.000000px;}
._0_c00282{margin-left:-3.426000px;}
.fc0_c00282{color:rgb(0,0,0);}
.fs0_c00282{font-size:60.000000px;}
.y0_c00282{bottom:0.000000px;}
.y2_c00282{bottom:67.335000px;}
.y1_c00282{bottom:1193.835000px;}
.h3_c00282{height:56.074219px;}
.h2_c00282{height:1261.500000px;}
.h0_c00282{height:1262.835000px;}
.h1_c00282{height:1263.000000px;}
.w2_c00282{width:892.500000px;}
.w0_c00282{width:892.935000px;}
.w1_c00282{width:893.250000px;}
.x0_c00282{left:0.000000px;}
.x1_c00282{left:417.217800px;}
.x2_c00282{left:802.427700px;}
@media print{
.v0_c00282{vertical-align:0.000000pt;}
.ls0_c00282{letter-spacing:0.010667pt;}
.ws0_c00282{word-spacing:0.000000pt;}
._0_c00282{margin-left:-3.045333pt;}
.fs0_c00282{font-size:53.333333pt;}
.y0_c00282{bottom:0.000000pt;}
.y2_c00282{bottom:59.853333pt;}
.y1_c00282{bottom:1061.186667pt;}
.h3_c00282{height:49.843750pt;}
.h2_c00282{height:1121.333333pt;}
.h0_c00282{height:1122.520000pt;}
.h1_c00282{height:1122.666667pt;}
.w2_c00282{width:793.333333pt;}
.w0_c00282{width:793.720000pt;}
.w1_c00282{width:794.000000pt;}
.x0_c00282{left:0.000000pt;}
.x1_c00282{left:370.860267pt;}
.x2_c00282{left:713.269067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1faf0ae4cf7c0d6a30965416.woff2')format("woff");}.ff1_c00283{font-family:ff1_c00283;line-height:0.756836;font-style:normal;font-weight:normal;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_9c50cfa26dd4c77d47bcf8a7.woff2')format("woff");}.ff2_c00283{font-family:ff2_c00283;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00283{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00283{vertical-align:0.000000px;}
.ls0_c00283{letter-spacing:0.000000px;}
.ls1_c00283{letter-spacing:0.012000px;}
.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:0.000000px;}
._0_c00283{margin-left:-3.216000px;}
.fc0_c00283{color:rgb(0,0,0);}
.fs0_c00283{font-size:60.000000px;}
.y0_c00283{bottom:0.000000px;}
.y2_c00283{bottom:67.335000px;}
.y1_c00283{bottom:1193.835000px;}
.h4_c00283{height:44.208984px;}
.h3_c00283{height:56.074219px;}
.h2_c00283{height:1261.500000px;}
.h0_c00283{height:1262.835000px;}
.h1_c00283{height:1263.000000px;}
.w2_c00283{width:892.500000px;}
.w0_c00283{width:892.935000px;}
.w1_c00283{width:893.250000px;}
.x0_c00283{left:0.000000px;}
.x1_c00283{left:65.480310px;}
@media print{
.v0_c00283{vertical-align:0.000000pt;}
.ls0_c00283{letter-spacing:0.000000pt;}
.ls1_c00283{letter-spacing:0.010667pt;}
.ws0_c00283{word-spacing:0.000000pt;}
._0_c00283{margin-left:-2.858667pt;}
.fs0_c00283{font-size:53.333333pt;}
.y0_c00283{bottom:0.000000pt;}
.y2_c00283{bottom:59.853333pt;}
.y1_c00283{bottom:1061.186667pt;}
.h4_c00283{height:39.296875pt;}
.h3_c00283{height:49.843750pt;}
.h2_c00283{height:1121.333333pt;}
.h0_c00283{height:1122.520000pt;}
.h1_c00283{height:1122.666667pt;}
.w2_c00283{width:793.333333pt;}
.w0_c00283{width:793.720000pt;}
.w1_c00283{width:794.000000pt;}
.x0_c00283{left:0.000000pt;}
.x1_c00283{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_56760d77beda690dab4ad0bf.woff2')format("woff");}.ff1_c00284{font-family:ff1_c00284;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00284{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00284{vertical-align:0.000000px;}
.ls0_c00284{letter-spacing:0.012000px;}
.sc__c00284{text-shadow:none;}
.sc0_c00284{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00284{-webkit-text-stroke:0px transparent;}
.sc0_c00284{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00284{word-spacing:0.000000px;}
._0_c00284{margin-left:-3.426000px;}
.fc0_c00284{color:rgb(0,0,0);}
.fs0_c00284{font-size:60.000000px;}
.y0_c00284{bottom:0.000000px;}
.y2_c00284{bottom:67.335000px;}
.y1_c00284{bottom:1193.835000px;}
.h3_c00284{height:56.074219px;}
.h2_c00284{height:1261.500000px;}
.h0_c00284{height:1262.835000px;}
.h1_c00284{height:1263.000000px;}
.w2_c00284{width:892.500000px;}
.w0_c00284{width:892.935000px;}
.w1_c00284{width:893.250000px;}
.x0_c00284{left:0.000000px;}
.x1_c00284{left:417.217800px;}
.x2_c00284{left:802.427700px;}
@media print{
.v0_c00284{vertical-align:0.000000pt;}
.ls0_c00284{letter-spacing:0.010667pt;}
.ws0_c00284{word-spacing:0.000000pt;}
._0_c00284{margin-left:-3.045333pt;}
.fs0_c00284{font-size:53.333333pt;}
.y0_c00284{bottom:0.000000pt;}
.y2_c00284{bottom:59.853333pt;}
.y1_c00284{bottom:1061.186667pt;}
.h3_c00284{height:49.843750pt;}
.h2_c00284{height:1121.333333pt;}
.h0_c00284{height:1122.520000pt;}
.h1_c00284{height:1122.666667pt;}
.w2_c00284{width:793.333333pt;}
.w0_c00284{width:793.720000pt;}
.w1_c00284{width:794.000000pt;}
.x0_c00284{left:0.000000pt;}
.x1_c00284{left:370.860267pt;}
.x2_c00284{left:713.269067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b7529d1fc9495c16cac6820c.woff2')format("woff");}.ff1_c00285{font-family:ff1_c00285;line-height:0.756836;font-style:normal;font-weight:normal;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_1795f07ddf6377051569d2a0.woff2')format("woff");}.ff2_c00285{font-family:ff2_c00285;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00285{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00285{vertical-align:0.000000px;}
.ls0_c00285{letter-spacing:0.000000px;}
.ls1_c00285{letter-spacing:0.012000px;}
.sc__c00285{text-shadow:none;}
.sc0_c00285{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00285{-webkit-text-stroke:0px transparent;}
.sc0_c00285{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00285{word-spacing:0.000000px;}
._0_c00285{margin-left:-3.216000px;}
.fc0_c00285{color:rgb(0,0,0);}
.fs0_c00285{font-size:60.000000px;}
.y0_c00285{bottom:0.000000px;}
.y2_c00285{bottom:67.335000px;}
.y1_c00285{bottom:1193.835000px;}
.h4_c00285{height:44.208984px;}
.h3_c00285{height:56.074219px;}
.h2_c00285{height:1261.500000px;}
.h0_c00285{height:1262.835000px;}
.h1_c00285{height:1263.000000px;}
.w2_c00285{width:892.500000px;}
.w0_c00285{width:892.935000px;}
.w1_c00285{width:893.250000px;}
.x0_c00285{left:0.000000px;}
.x1_c00285{left:65.480310px;}
@media print{
.v0_c00285{vertical-align:0.000000pt;}
.ls0_c00285{letter-spacing:0.000000pt;}
.ls1_c00285{letter-spacing:0.010667pt;}
.ws0_c00285{word-spacing:0.000000pt;}
._0_c00285{margin-left:-2.858667pt;}
.fs0_c00285{font-size:53.333333pt;}
.y0_c00285{bottom:0.000000pt;}
.y2_c00285{bottom:59.853333pt;}
.y1_c00285{bottom:1061.186667pt;}
.h4_c00285{height:39.296875pt;}
.h3_c00285{height:49.843750pt;}
.h2_c00285{height:1121.333333pt;}
.h0_c00285{height:1122.520000pt;}
.h1_c00285{height:1122.666667pt;}
.w2_c00285{width:793.333333pt;}
.w0_c00285{width:793.720000pt;}
.w1_c00285{width:794.000000pt;}
.x0_c00285{left:0.000000pt;}
.x1_c00285{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5d46b60c8e81d418aeb50d3a.woff2')format("woff");}.ff1_c00286{font-family:ff1_c00286;line-height:0.941406;font-style:normal;font-weight:normal;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_e74106dfa528f7337699505a.woff2')format("woff");}.ff2_c00286{font-family:ff2_c00286;line-height:0.934082;font-style:normal;font-weight:normal;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_93e330606c73122b0cca0517.woff2')format("woff");}.ff3_c00286{font-family:ff3_c00286;line-height:1.155762;font-style: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;}
.ls7_c00286{letter-spacing:-0.005400px;}
.ls6_c00286{letter-spacing:0.000000px;}
.ls2_c00286{letter-spacing:0.003000px;}
.ls1_c00286{letter-spacing:0.003600px;}
.ls3_c00286{letter-spacing:0.005400px;}
.ls5_c00286{letter-spacing:0.007200px;}
.ls0_c00286{letter-spacing:0.010800px;}
.ls4_c00286{letter-spacing:0.012000px;}
.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;}
}
.ws3_c00286{word-spacing:-14.850000px;}
.ws6_c00286{word-spacing:0.000000px;}
.ws2_c00286{word-spacing:2.234400px;}
.ws0_c00286{word-spacing:33.505800px;}
.ws5_c00286{word-spacing:122.304600px;}
.ws1_c00286{word-spacing:122.326200px;}
.ws4_c00286{word-spacing:128.320800px;}
._8_c00286{margin-left:-3.426000px;}
._2_c00286{margin-left:-2.157600px;}
._7_c00286{width:17.845800px;}
._4_c00286{width:113.973000px;}
._6_c00286{width:126.169800px;}
._3_c00286{width:131.868600px;}
._1_c00286{width:137.999400px;}
._0_c00286{width:143.968200px;}
._5_c00286{width:149.895600px;}
.fc0_c00286{color:rgb(0,0,0);}
.fs2_c00286{font-size:54.000000px;}
.fs1_c00286{font-size:60.000000px;}
.fs0_c00286{font-size:72.000000px;}
.y0_c00286{bottom:0.000000px;}
.y19_c00286{bottom:67.335000px;}
.y17_c00286{bottom:151.335000px;}
.y16_c00286{bottom:191.835000px;}
.y15_c00286{bottom:233.835000px;}
.y14_c00286{bottom:277.335000px;}
.y13_c00286{bottom:319.335000px;}
.y12_c00286{bottom:361.335000px;}
.y11_c00286{bottom:404.835000px;}
.y10_c00286{bottom:448.335000px;}
.yf_c00286{bottom:491.835000px;}
.ye_c00286{bottom:533.835000px;}
.yd_c00286{bottom:577.335000px;}
.yc_c00286{bottom:617.835000px;}
.yb_c00286{bottom:662.835000px;}
.ya_c00286{bottom:703.335000px;}
.y9_c00286{bottom:742.335000px;}
.y8_c00286{bottom:781.335000px;}
.y7_c00286{bottom:826.335000px;}
.y6_c00286{bottom:868.335000px;}
.y5_c00286{bottom:908.835000px;}
.y4_c00286{bottom:953.835000px;}
.y3_c00286{bottom:988.335000px;}
.y2_c00286{bottom:1049.835000px;}
.y1_c00286{bottom:1094.835000px;}
.y18_c00286{bottom:1193.835000px;}
.h5_c00286{height:38.838867px;}
.h4_c00286{height:42.714844px;}
.h3_c00286{height:51.785156px;}
.h6_c00286{height:56.074219px;}
.h2_c00286{height:1261.500000px;}
.h0_c00286{height:1262.835000px;}
.h1_c00286{height:1263.000000px;}
.w2_c00286{width:892.500000px;}
.w0_c00286{width:892.935000px;}
.w1_c00286{width:893.250000px;}
.x0_c00286{left:0.000000px;}
.x1_c00286{left:150.519750px;}
.x2_c00286{left:179.019750px;}
.x3_c00286{left:417.217800px;}
.x4_c00286{left:802.427700px;}
@media print{
.v0_c00286{vertical-align:0.000000pt;}
.ls7_c00286{letter-spacing:-0.004800pt;}
.ls6_c00286{letter-spacing:0.000000pt;}
.ls2_c00286{letter-spacing:0.002667pt;}
.ls1_c00286{letter-spacing:0.003200pt;}
.ls3_c00286{letter-spacing:0.004800pt;}
.ls5_c00286{letter-spacing:0.006400pt;}
.ls0_c00286{letter-spacing:0.009600pt;}
.ls4_c00286{letter-spacing:0.010667pt;}
.ws3_c00286{word-spacing:-13.200000pt;}
.ws6_c00286{word-spacing:0.000000pt;}
.ws2_c00286{word-spacing:1.986133pt;}
.ws0_c00286{word-spacing:29.782933pt;}
.ws5_c00286{word-spacing:108.715200pt;}
.ws1_c00286{word-spacing:108.734400pt;}
.ws4_c00286{word-spacing:114.062933pt;}
._8_c00286{margin-left:-3.045333pt;}
._2_c00286{margin-left:-1.917867pt;}
._7_c00286{width:15.862933pt;}
._4_c00286{width:101.309333pt;}
._6_c00286{width:112.150933pt;}
._3_c00286{width:117.216533pt;}
._1_c00286{width:122.666133pt;}
._0_c00286{width:127.971733pt;}
._5_c00286{width:133.240533pt;}
.fs2_c00286{font-size:48.000000pt;}
.fs1_c00286{font-size:53.333333pt;}
.fs0_c00286{font-size:64.000000pt;}
.y0_c00286{bottom:0.000000pt;}
.y19_c00286{bottom:59.853333pt;}
.y17_c00286{bottom:134.520000pt;}
.y16_c00286{bottom:170.520000pt;}
.y15_c00286{bottom:207.853333pt;}
.y14_c00286{bottom:246.520000pt;}
.y13_c00286{bottom:283.853333pt;}
.y12_c00286{bottom:321.186667pt;}
.y11_c00286{bottom:359.853333pt;}
.y10_c00286{bottom:398.520000pt;}
.yf_c00286{bottom:437.186667pt;}
.ye_c00286{bottom:474.520000pt;}
.yd_c00286{bottom:513.186667pt;}
.yc_c00286{bottom:549.186667pt;}
.yb_c00286{bottom:589.186667pt;}
.ya_c00286{bottom:625.186667pt;}
.y9_c00286{bottom:659.853333pt;}
.y8_c00286{bottom:694.520000pt;}
.y7_c00286{bottom:734.520000pt;}
.y6_c00286{bottom:771.853333pt;}
.y5_c00286{bottom:807.853333pt;}
.y4_c00286{bottom:847.853333pt;}
.y3_c00286{bottom:878.520000pt;}
.y2_c00286{bottom:933.186667pt;}
.y1_c00286{bottom:973.186667pt;}
.y18_c00286{bottom:1061.186667pt;}
.h5_c00286{height:34.523438pt;}
.h4_c00286{height:37.968750pt;}
.h3_c00286{height:46.031250pt;}
.h6_c00286{height:49.843750pt;}
.h2_c00286{height:1121.333333pt;}
.h0_c00286{height:1122.520000pt;}
.h1_c00286{height:1122.666667pt;}
.w2_c00286{width:793.333333pt;}
.w0_c00286{width:793.720000pt;}
.w1_c00286{width:794.000000pt;}
.x0_c00286{left:0.000000pt;}
.x1_c00286{left:133.795333pt;}
.x2_c00286{left:159.128667pt;}
.x3_c00286{left:370.860267pt;}
.x4_c00286{left:713.269067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8627781829015299f9830d3e.woff2')format("woff");}.ff1_c00287{font-family:ff1_c00287;line-height:0.939453;font-style:normal;font-weight:normal;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_965cf47de3642a8f701d13de.woff2')format("woff");}.ff2_c00287{font-family:ff2_c00287;line-height:0.934082;font-style:normal;font-weight:normal;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_0aae05c904d3b861e0a869fc.woff2')format("woff");}.ff3_c00287{font-family:ff3_c00287;line-height:0.756836;font-style:normal;font-weight:normal;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_2ddbc6ba0859379d79383d7b.woff2')format("woff");}.ff4_c00287{font-family:ff4_c00287;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00287{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00287{vertical-align:0.000000px;}
.ls7_c00287{letter-spacing:-0.005400px;}
.ls5_c00287{letter-spacing:0.000000px;}
.ls4_c00287{letter-spacing:0.003000px;}
.ls2_c00287{letter-spacing:0.003600px;}
.ls0_c00287{letter-spacing:0.005400px;}
.ls6_c00287{letter-spacing:0.007200px;}
.ls1_c00287{letter-spacing:0.010800px;}
.ls9_c00287{letter-spacing:0.012000px;}
.ls8_c00287{letter-spacing:1.501200px;}
.ls3_c00287{letter-spacing:13.017000px;}
.sc__c00287{text-shadow:none;}
.sc0_c00287{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00287{-webkit-text-stroke:0px transparent;}
.sc0_c00287{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00287{word-spacing:-19.807200px;}
.ws3_c00287{word-spacing:-15.606000px;}
.ws2_c00287{word-spacing:-14.850000px;}
.ws5_c00287{word-spacing:0.000000px;}
.ws0_c00287{word-spacing:2.234400px;}
.ws4_c00287{word-spacing:125.393760px;}
._15_c00287{margin-left:-8.894400px;}
._7_c00287{margin-left:-5.374200px;}
._18_c00287{margin-left:-4.060800px;}
._0_c00287{margin-left:-2.970000px;}
._6_c00287{margin-left:-1.933200px;}
._5_c00287{width:1.004400px;}
._d_c00287{width:2.359800px;}
._17_c00287{width:3.450600px;}
._13_c00287{width:5.507640px;}
._f_c00287{width:8.488800px;}
._a_c00287{width:9.768600px;}
._b_c00287{width:10.794600px;}
._16_c00287{width:11.894160px;}
._c_c00287{width:13.732200px;}
._9_c00287{width:16.168800px;}
._3_c00287{width:17.845800px;}
._19_c00287{width:19.045800px;}
._10_c00287{width:113.946960px;}
._1_c00287{width:137.952360px;}
._4_c00287{width:143.862960px;}
._2_c00287{width:144.872760px;}
._12_c00287{width:150.295800px;}
._11_c00287{width:155.028960px;}
._8_c00287{width:158.600160px;}
._14_c00287{width:160.205760px;}
._e_c00287{width:165.139200px;}
.fc0_c00287{color:rgb(0,0,0);}
.fs0_c00287{font-size:54.000000px;}
.fs2_c00287{font-size:60.000000px;}
.fs1_c00287{font-size:72.000000px;}
.y0_c00287{bottom:0.000000px;}
.y18_c00287{bottom:67.335000px;}
.y16_c00287{bottom:233.835000px;}
.y15_c00287{bottom:277.335000px;}
.y14_c00287{bottom:320.835000px;}
.y13_c00287{bottom:364.335000px;}
.y12_c00287{bottom:404.835000px;}
.y11_c00287{bottom:446.835000px;}
.y10_c00287{bottom:488.835000px;}
.yf_c00287{bottom:530.835000px;}
.ye_c00287{bottom:551.835000px;}
.yd_c00287{bottom:595.335000px;}
.yc_c00287{bottom:637.335000px;}
.yb_c00287{bottom:679.335000px;}
.ya_c00287{bottom:715.335000px;}
.y9_c00287{bottom:757.335000px;}
.y8_c00287{bottom:778.335000px;}
.y7_c00287{bottom:821.835000px;}
.y6_c00287{bottom:862.335000px;}
.y5_c00287{bottom:905.835000px;}
.y4_c00287{bottom:950.835000px;}
.y3_c00287{bottom:992.835000px;}
.y2_c00287{bottom:1036.335000px;}
.y1_c00287{bottom:1078.335000px;}
.y17_c00287{bottom:1193.835000px;}
.h5_c00287{height:38.443359px;}
.h3_c00287{height:38.838867px;}
.h7_c00287{height:44.208984px;}
.h4_c00287{height:51.257812px;}
.h6_c00287{height:56.074219px;}
.h2_c00287{height:1261.500000px;}
.h0_c00287{height:1262.835000px;}
.h1_c00287{height:1263.000000px;}
.w2_c00287{width:892.500000px;}
.w0_c00287{width:892.935000px;}
.w1_c00287{width:893.250000px;}
.x0_c00287{left:0.000000px;}
.x1_c00287{left:65.480310px;}
.x2_c00287{left:89.480310px;}
@media print{
.v0_c00287{vertical-align:0.000000pt;}
.ls7_c00287{letter-spacing:-0.004800pt;}
.ls5_c00287{letter-spacing:0.000000pt;}
.ls4_c00287{letter-spacing:0.002667pt;}
.ls2_c00287{letter-spacing:0.003200pt;}
.ls0_c00287{letter-spacing:0.004800pt;}
.ls6_c00287{letter-spacing:0.006400pt;}
.ls1_c00287{letter-spacing:0.009600pt;}
.ls9_c00287{letter-spacing:0.010667pt;}
.ls8_c00287{letter-spacing:1.334400pt;}
.ls3_c00287{letter-spacing:11.570667pt;}
.ws1_c00287{word-spacing:-17.606400pt;}
.ws3_c00287{word-spacing:-13.872000pt;}
.ws2_c00287{word-spacing:-13.200000pt;}
.ws5_c00287{word-spacing:0.000000pt;}
.ws0_c00287{word-spacing:1.986133pt;}
.ws4_c00287{word-spacing:111.461120pt;}
._15_c00287{margin-left:-7.906133pt;}
._7_c00287{margin-left:-4.777067pt;}
._18_c00287{margin-left:-3.609600pt;}
._0_c00287{margin-left:-2.640000pt;}
._6_c00287{margin-left:-1.718400pt;}
._5_c00287{width:0.892800pt;}
._d_c00287{width:2.097600pt;}
._17_c00287{width:3.067200pt;}
._13_c00287{width:4.895680pt;}
._f_c00287{width:7.545600pt;}
._a_c00287{width:8.683200pt;}
._b_c00287{width:9.595200pt;}
._16_c00287{width:10.572587pt;}
._c_c00287{width:12.206400pt;}
._9_c00287{width:14.372267pt;}
._3_c00287{width:15.862933pt;}
._19_c00287{width:16.929600pt;}
._10_c00287{width:101.286187pt;}
._1_c00287{width:122.624320pt;}
._4_c00287{width:127.878187pt;}
._2_c00287{width:128.775787pt;}
._12_c00287{width:133.596267pt;}
._11_c00287{width:137.803520pt;}
._8_c00287{width:140.977920pt;}
._14_c00287{width:142.405120pt;}
._e_c00287{width:146.790400pt;}
.fs0_c00287{font-size:48.000000pt;}
.fs2_c00287{font-size:53.333333pt;}
.fs1_c00287{font-size:64.000000pt;}
.y0_c00287{bottom:0.000000pt;}
.y18_c00287{bottom:59.853333pt;}
.y16_c00287{bottom:207.853333pt;}
.y15_c00287{bottom:246.520000pt;}
.y14_c00287{bottom:285.186667pt;}
.y13_c00287{bottom:323.853333pt;}
.y12_c00287{bottom:359.853333pt;}
.y11_c00287{bottom:397.186667pt;}
.y10_c00287{bottom:434.520000pt;}
.yf_c00287{bottom:471.853333pt;}
.ye_c00287{bottom:490.520000pt;}
.yd_c00287{bottom:529.186667pt;}
.yc_c00287{bottom:566.520000pt;}
.yb_c00287{bottom:603.853333pt;}
.ya_c00287{bottom:635.853333pt;}
.y9_c00287{bottom:673.186667pt;}
.y8_c00287{bottom:691.853333pt;}
.y7_c00287{bottom:730.520000pt;}
.y6_c00287{bottom:766.520000pt;}
.y5_c00287{bottom:805.186667pt;}
.y4_c00287{bottom:845.186667pt;}
.y3_c00287{bottom:882.520000pt;}
.y2_c00287{bottom:921.186667pt;}
.y1_c00287{bottom:958.520000pt;}
.y17_c00287{bottom:1061.186667pt;}
.h5_c00287{height:34.171875pt;}
.h3_c00287{height:34.523438pt;}
.h7_c00287{height:39.296875pt;}
.h4_c00287{height:45.562500pt;}
.h6_c00287{height:49.843750pt;}
.h2_c00287{height:1121.333333pt;}
.h0_c00287{height:1122.520000pt;}
.h1_c00287{height:1122.666667pt;}
.w2_c00287{width:793.333333pt;}
.w0_c00287{width:793.720000pt;}
.w1_c00287{width:794.000000pt;}
.x0_c00287{left:0.000000pt;}
.x1_c00287{left:58.204720pt;}
.x2_c00287{left:79.538053pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3a7c01a5aeab0cb3e350f25c.woff2')format("woff");}.ff1_c00288{font-family:ff1_c00288;line-height:1.124023;font-style:normal;font-weight:normal;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_b7f0b32513c5b083c1640ced.woff2')format("woff");}.ff2_c00288{font-family:ff2_c00288;line-height:0.934082;font-style:normal;font-weight:normal;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_1e8de82a014326616684147d.woff2')format("woff");}.ff3_c00288{font-family:ff3_c00288;line-height:1.155762;font-style:normal;font-weight:normal;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_9ae82cc04ab62c53d0265bc1.woff2')format("woff");}.ff4_c00288{font-family:ff4_c00288;line-height:1.100098;font-style:normal;font-weight:normal;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_91c8da3ffed2b7cd82a0af7b.woff2')format("woff");}.ff5_c00288{font-family:ff5_c00288;line-height:0.892578;font-style: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);}
.v3_c00288{vertical-align:-33.000000px;}
.v2_c00288{vertical-align:-23.086200px;}
.v0_c00288{vertical-align:0.000000px;}
.v1_c00288{vertical-align:23.086200px;}
.ls5_c00288{letter-spacing:0.000000px;}
.ls0_c00288{letter-spacing:0.007200px;}
.ls1_c00288{letter-spacing:0.007800px;}
.ls3_c00288{letter-spacing:0.012000px;}
.ls4_c00288{letter-spacing:3.999999px;}
.ls2_c00288{letter-spacing:15.552000px;}
.sc__c00288{text-shadow:none;}
.sc0_c00288{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00288{-webkit-text-stroke:0px transparent;}
.sc0_c00288{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00288{word-spacing:-13.200000px;}
.ws1_c00288{word-spacing:-10.000001px;}
.ws2_c00288{word-spacing:0.000000px;}
._7_c00288{margin-left:-10.346400px;}
._12_c00288{margin-left:-8.645799px;}
._11_c00288{margin-left:-7.461801px;}
._0_c00288{margin-left:-4.888800px;}
._c_c00288{margin-left:-3.204000px;}
._4_c00288{margin-left:-1.735200px;}
._2_c00288{width:1.483200px;}
._6_c00288{width:2.865600px;}
._1_c00288{width:4.838400px;}
._3_c00288{width:6.314400px;}
._5_c00288{width:8.085600px;}
._d_c00288{width:9.698400px;}
._e_c00288{width:12.693600px;}
._9_c00288{width:14.608800px;}
._a_c00288{width:15.912000px;}
._8_c00288{width:17.402400px;}
._f_c00288{width:18.652800px;}
._10_c00288{width:21.024000px;}
._b_c00288{width:22.185600px;}
.fc1_c00288{color:rgb(255,255,255);}
.fc0_c00288{color:rgb(0,0,0);}
.fs6_c00288{font-size:40.000002px;}
.fs3_c00288{font-size:48.000000px;}
.fs5_c00288{font-size:60.000000px;}
.fs0_c00288{font-size:72.000000px;}
.fs2_c00288{font-size:78.000000px;}
.fs4_c00288{font-size:96.000000px;}
.fs1_c00288{font-size:120.000000px;}
.y0_c00288{bottom:0.000000px;}
.y13_c00288{bottom:67.500000px;}
.y17_c00288{bottom:132.000000px;}
.y16_c00288{bottom:159.750000px;}
.y15_c00288{bottom:209.250000px;}
.y14_c00288{bottom:258.750000px;}
.y10_c00288{bottom:330.000000px;}
.yf_c00288{bottom:357.000000px;}
.ye_c00288{bottom:405.000000px;}
.yd_c00288{bottom:432.000000px;}
.yc_c00288{bottom:459.000000px;}
.yb_c00288{bottom:507.000000px;}
.ya_c00288{bottom:534.000000px;}
.y9_c00288{bottom:561.000000px;}
.y8_c00288{bottom:588.000000px;}
.y7_c00288{bottom:615.000000px;}
.y6_c00288{bottom:663.000000px;}
.y5_c00288{bottom:690.000000px;}
.y4_c00288{bottom:717.000000px;}
.y3_c00288{bottom:744.000000px;}
.y2_c00288{bottom:790.500000px;}
.y11_c00288{bottom:873.000000px;}
.y1_c00288{bottom:1030.500000px;}
.y12_c00288{bottom:1194.000000px;}
.h7_c00288{height:35.292971px;}
.h3_c00288{height:51.257812px;}
.h8_c00288{height:52.939453px;}
.h6_c00288{height:56.074219px;}
.h4_c00288{height:57.258075px;}
.h5_c00288{height:68.343750px;}
.h2_c00288{height:73.886719px;}
.h1_c00288{height:113.671875px;}
.h0_c00288{height:1263.000000px;}
.w0_c00288{width:892.500000px;}
.x0_c00288{left:0.000000px;}
.x1_c00288{left:150.519750px;}
.x2_c00288{left:180.298875px;}
.x3_c00288{left:419.000850px;}
.x4_c00288{left:804.210750px;}
@media print{
.v3_c00288{vertical-align:-29.333333pt;}
.v2_c00288{vertical-align:-20.521067pt;}
.v0_c00288{vertical-align:0.000000pt;}
.v1_c00288{vertical-align:20.521067pt;}
.ls5_c00288{letter-spacing:0.000000pt;}
.ls0_c00288{letter-spacing:0.006400pt;}
.ls1_c00288{letter-spacing:0.006933pt;}
.ls3_c00288{letter-spacing:0.010667pt;}
.ls4_c00288{letter-spacing:3.555555pt;}
.ls2_c00288{letter-spacing:13.824000pt;}
.ws0_c00288{word-spacing:-11.733333pt;}
.ws1_c00288{word-spacing:-8.888889pt;}
.ws2_c00288{word-spacing:0.000000pt;}
._7_c00288{margin-left:-9.196800pt;}
._12_c00288{margin-left:-7.685155pt;}
._11_c00288{margin-left:-6.632712pt;}
._0_c00288{margin-left:-4.345600pt;}
._c_c00288{margin-left:-2.848000pt;}
._4_c00288{margin-left:-1.542400pt;}
._2_c00288{width:1.318400pt;}
._6_c00288{width:2.547200pt;}
._1_c00288{width:4.300800pt;}
._3_c00288{width:5.612800pt;}
._5_c00288{width:7.187200pt;}
._d_c00288{width:8.620800pt;}
._e_c00288{width:11.283200pt;}
._9_c00288{width:12.985600pt;}
._a_c00288{width:14.144000pt;}
._8_c00288{width:15.468800pt;}
._f_c00288{width:16.580267pt;}
._10_c00288{width:18.688000pt;}
._b_c00288{width:19.720533pt;}
.fs6_c00288{font-size:35.555557pt;}
.fs3_c00288{font-size:42.666667pt;}
.fs5_c00288{font-size:53.333333pt;}
.fs0_c00288{font-size:64.000000pt;}
.fs2_c00288{font-size:69.333333pt;}
.fs4_c00288{font-size:85.333333pt;}
.fs1_c00288{font-size:106.666667pt;}
.y0_c00288{bottom:0.000000pt;}
.y13_c00288{bottom:60.000000pt;}
.y17_c00288{bottom:117.333333pt;}
.y16_c00288{bottom:142.000000pt;}
.y15_c00288{bottom:186.000000pt;}
.y14_c00288{bottom:230.000000pt;}
.y10_c00288{bottom:293.333333pt;}
.yf_c00288{bottom:317.333333pt;}
.ye_c00288{bottom:360.000000pt;}
.yd_c00288{bottom:384.000000pt;}
.yc_c00288{bottom:408.000000pt;}
.yb_c00288{bottom:450.666667pt;}
.ya_c00288{bottom:474.666667pt;}
.y9_c00288{bottom:498.666667pt;}
.y8_c00288{bottom:522.666667pt;}
.y7_c00288{bottom:546.666667pt;}
.y6_c00288{bottom:589.333333pt;}
.y5_c00288{bottom:613.333333pt;}
.y4_c00288{bottom:637.333333pt;}
.y3_c00288{bottom:661.333333pt;}
.y2_c00288{bottom:702.666667pt;}
.y11_c00288{bottom:776.000000pt;}
.y1_c00288{bottom:916.000000pt;}
.y12_c00288{bottom:1061.333333pt;}
.h7_c00288{height:31.371529pt;}
.h3_c00288{height:45.562500pt;}
.h8_c00288{height:47.057292pt;}
.h6_c00288{height:49.843750pt;}
.h4_c00288{height:50.896067pt;}
.h5_c00288{height:60.750000pt;}
.h2_c00288{height:65.677083pt;}
.h1_c00288{height:101.041667pt;}
.h0_c00288{height:1122.666667pt;}
.w0_c00288{width:793.333333pt;}
.x0_c00288{left:0.000000pt;}
.x1_c00288{left:133.795333pt;}
.x2_c00288{left:160.265667pt;}
.x3_c00288{left:372.445200pt;}
.x4_c00288{left:714.854000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b54c32458568c8df059b5c16.woff2')format("woff");}.ff1_c00289{font-family:ff1_c00289;line-height:0.934082;font-style:normal;font-weight:normal;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_67869d02550756096950e432.woff2')format("woff");}.ff2_c00289{font-family:ff2_c00289;line-height:0.939453;font-style:normal;font-weight:normal;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_948d30877415aec8aa33ba8c.woff2')format("woff");}.ff3_c00289{font-family:ff3_c00289;line-height:0.976074;font-style:normal;font-weight:normal;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_9cd30dabbf249a2f522ce713.woff2')format("woff");}.ff4_c00289{font-family:ff4_c00289;line-height:0.756836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00289;src:url('chunks/assets/font_5013f37257ecbfaa02b62146.woff2')format("woff");}.ff5_c00289{font-family:ff5_c00289;line-height:1.155762;font-style:normal;font-weight: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_c00289;src:url('chunks/assets/font_9c53d23147b61a573b5babbe.woff2')format("woff");}.ff6_c00289{font-family:ff6_c00289;line-height:0.894531;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00289;src:url('chunks/assets/font_b2517b3d556820c80eb45b9c.woff2')format("woff");}.ff7_c00289{font-family:ff7_c00289;line-height:0.889648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00289{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00289{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3_c00289{vertical-align:-33.000000px;}
.v2_c00289{vertical-align:-23.086200px;}
.v0_c00289{vertical-align:0.000000px;}
.v1_c00289{vertical-align:23.086200px;}
.ls3_c00289{letter-spacing:0.000000px;}
.ls0_c00289{letter-spacing:0.007800px;}
.ls4_c00289{letter-spacing:0.012000px;}
.ls1_c00289{letter-spacing:0.016200px;}
.ls2_c00289{letter-spacing:6.855600px;}
.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:-10.000001px;}
.ws0_c00289{word-spacing:-0.085800px;}
.ws2_c00289{word-spacing:0.000000px;}
._5_c00289{margin-left:-4.075200px;}
._9_c00289{margin-left:-3.074400px;}
._1_c00289{margin-left:-2.066400px;}
._4_c00289{width:1.504800px;}
._3_c00289{width:2.872800px;}
._0_c00289{width:4.975200px;}
._2_c00289{width:7.041600px;}
._7_c00289{width:9.626400px;}
._8_c00289{width:10.879200px;}
._6_c00289{width:13.672800px;}
.fc0_c00289{color:rgb(0,0,0);}
.fs5_c00289{font-size:40.000002px;}
.fs3_c00289{font-size:48.000000px;}
.fs2_c00289{font-size:54.000000px;}
.fs4_c00289{font-size:60.000000px;}
.fs0_c00289{font-size:72.000000px;}
.fs1_c00289{font-size:78.000000px;}
.y0_c00289{bottom:0.000000px;}
.y7_c00289{bottom:12.000000px;}
.yd_c00289{bottom:67.500000px;}
.ye_c00289{bottom:140.250000px;}
.yb_c00289{bottom:205.500000px;}
.ya_c00289{bottom:232.500000px;}
.y9_c00289{bottom:280.500000px;}
.y8_c00289{bottom:307.500000px;}
.y6_c00289{bottom:352.500000px;}
.y5_c00289{bottom:924.000000px;}
.y4_c00289{bottom:951.000000px;}
.y3_c00289{bottom:997.500000px;}
.y2_c00289{bottom:1068.000000px;}
.y1_c00289{bottom:1095.000000px;}
.yc_c00289{bottom:1194.000000px;}
.h8_c00289{height:27.070314px;}
.h4_c00289{height:42.292969px;}
.h7_c00289{height:44.208984px;}
.h1_c00289{height:51.257812px;}
.h6_c00289{height:56.074219px;}
.h2_c00289{height:56.100586px;}
.h5_c00289{height:57.258075px;}
.h3_c00289{height:540.000000px;}
.h0_c00289{height:1263.000000px;}
.w1_c00289{width:676.500000px;}
.w0_c00289{width:892.500000px;}
.x0_c00289{left:0.000000px;}
.x1_c00289{left:63.262395px;}
.x2_c00289{left:64.500000px;}
.x3_c00289{left:91.331175px;}
@media print{
.v3_c00289{vertical-align:-29.333333pt;}
.v2_c00289{vertical-align:-20.521067pt;}
.v0_c00289{vertical-align:0.000000pt;}
.v1_c00289{vertical-align:20.521067pt;}
.ls3_c00289{letter-spacing:0.000000pt;}
.ls0_c00289{letter-spacing:0.006933pt;}
.ls4_c00289{letter-spacing:0.010667pt;}
.ls1_c00289{letter-spacing:0.014400pt;}
.ls2_c00289{letter-spacing:6.093867pt;}
.ws1_c00289{word-spacing:-8.888889pt;}
.ws0_c00289{word-spacing:-0.076267pt;}
.ws2_c00289{word-spacing:0.000000pt;}
._5_c00289{margin-left:-3.622400pt;}
._9_c00289{margin-left:-2.732800pt;}
._1_c00289{margin-left:-1.836800pt;}
._4_c00289{width:1.337600pt;}
._3_c00289{width:2.553600pt;}
._0_c00289{width:4.422400pt;}
._2_c00289{width:6.259200pt;}
._7_c00289{width:8.556800pt;}
._8_c00289{width:9.670400pt;}
._6_c00289{width:12.153600pt;}
.fs5_c00289{font-size:35.555557pt;}
.fs3_c00289{font-size:42.666667pt;}
.fs2_c00289{font-size:48.000000pt;}
.fs4_c00289{font-size:53.333333pt;}
.fs0_c00289{font-size:64.000000pt;}
.fs1_c00289{font-size:69.333333pt;}
.y0_c00289{bottom:0.000000pt;}
.y7_c00289{bottom:10.666667pt;}
.yd_c00289{bottom:60.000000pt;}
.ye_c00289{bottom:124.666667pt;}
.yb_c00289{bottom:182.666667pt;}
.ya_c00289{bottom:206.666667pt;}
.y9_c00289{bottom:249.333333pt;}
.y8_c00289{bottom:273.333333pt;}
.y6_c00289{bottom:313.333333pt;}
.y5_c00289{bottom:821.333333pt;}
.y4_c00289{bottom:845.333333pt;}
.y3_c00289{bottom:886.666667pt;}
.y2_c00289{bottom:949.333333pt;}
.y1_c00289{bottom:973.333333pt;}
.yc_c00289{bottom:1061.333333pt;}
.h8_c00289{height:24.062501pt;}
.h4_c00289{height:37.593750pt;}
.h7_c00289{height:39.296875pt;}
.h1_c00289{height:45.562500pt;}
.h6_c00289{height:49.843750pt;}
.h2_c00289{height:49.867188pt;}
.h5_c00289{height:50.896067pt;}
.h3_c00289{height:480.000000pt;}
.h0_c00289{height:1122.666667pt;}
.w1_c00289{width:601.333333pt;}
.w0_c00289{width:793.333333pt;}
.x0_c00289{left:0.000000pt;}
.x1_c00289{left:56.233240pt;}
.x2_c00289{left:57.333333pt;}
.x3_c00289{left:81.183267pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6e3c6a44d5bb2a1e2de7e94f.woff2')format("woff");}.ff1_c00290{font-family:ff1_c00290;line-height:0.987793;font-style:normal;font-weight:normal;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_e83c1399e755152baf1a1e40.woff2')format("woff");}.ff2_c00290{font-family:ff2_c00290;line-height:1.161133;font-style:normal;font-weight:normal;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_4478b7878245b197722ab7cc.woff2')format("woff");}.ff3_c00290{font-family:ff3_c00290;line-height:0.932129;font-style:normal;font-weight:normal;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_61e457d69ace05dfb676048e.woff2')format("woff");}.ff4_c00290{font-family:ff4_c00290;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00290{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00290{vertical-align:0.000000px;}
.ls2_c00290{letter-spacing:-0.014400px;}
.ls1_c00290{letter-spacing:0.000000px;}
.ls0_c00290{letter-spacing:0.012000px;}
.sc__c00290{text-shadow:none;}
.sc0_c00290{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00290{-webkit-text-stroke:0px transparent;}
.sc0_c00290{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00290{word-spacing:-19.800000px;}
.ws1_c00290{word-spacing:0.000000px;}
._a_c00290{margin-left:-9.280800px;}
._8_c00290{margin-left:-4.471200px;}
._b_c00290{margin-left:-2.872800px;}
._1_c00290{margin-left:-1.260000px;}
._6_c00290{width:1.915200px;}
._2_c00290{width:3.391200px;}
._4_c00290{width:4.485600px;}
._12_c00290{width:6.479400px;}
._11_c00290{width:7.521600px;}
._10_c00290{width:8.798400px;}
._d_c00290{width:11.448000px;}
._f_c00290{width:13.435200px;}
._e_c00290{width:14.623200px;}
._c_c00290{width:16.228800px;}
._5_c00290{width:18.712800px;}
._7_c00290{width:21.412800px;}
._0_c00290{width:23.335200px;}
._3_c00290{width:24.804000px;}
._9_c00290{width:27.777600px;}
.fc1_c00290{color:transparent;}
.fc0_c00290{color:rgb(0,0,0);}
.fs0_c00290{font-size:54.000000px;}
.fs2_c00290{font-size:60.000000px;}
.fs1_c00290{font-size:72.000000px;}
.y0_c00290{bottom:0.000000px;}
.y2_c00290{bottom:10.500000px;}
.y4_c00290{bottom:12.000000px;}
.yd_c00290{bottom:67.500000px;}
.yb_c00290{bottom:138.000000px;}
.ya_c00290{bottom:156.000000px;}
.y9_c00290{bottom:195.000000px;}
.y8_c00290{bottom:217.500000px;}
.y7_c00290{bottom:240.000000px;}
.y6_c00290{bottom:285.000000px;}
.y5_c00290{bottom:330.000000px;}
.y3_c00290{bottom:354.000000px;}
.y1_c00290{bottom:762.000000px;}
.yc_c00290{bottom:1194.000000px;}
.h2_c00290{height:42.292969px;}
.h5_c00290{height:51.257812px;}
.h7_c00290{height:56.074219px;}
.h6_c00290{height:56.455078px;}
.h4_c00290{height:67.746094px;}
.h1_c00290{height:351.000000px;}
.h3_c00290{height:379.500000px;}
.h0_c00290{height:1263.000000px;}
.w1_c00290{width:676.500000px;}
.w0_c00290{width:892.500000px;}
.x0_c00290{left:0.000000px;}
.x2_c00290{left:140.759760px;}
.x1_c00290{left:151.500000px;}
.x3_c00290{left:224.653500px;}
.x4_c00290{left:419.000850px;}
.x5_c00290{left:804.210750px;}
@media print{
.v0_c00290{vertical-align:0.000000pt;}
.ls2_c00290{letter-spacing:-0.012800pt;}
.ls1_c00290{letter-spacing:0.000000pt;}
.ls0_c00290{letter-spacing:0.010667pt;}
.ws0_c00290{word-spacing:-17.600000pt;}
.ws1_c00290{word-spacing:0.000000pt;}
._a_c00290{margin-left:-8.249600pt;}
._8_c00290{margin-left:-3.974400pt;}
._b_c00290{margin-left:-2.553600pt;}
._1_c00290{margin-left:-1.120000pt;}
._6_c00290{width:1.702400pt;}
._2_c00290{width:3.014400pt;}
._4_c00290{width:3.987200pt;}
._12_c00290{width:5.759467pt;}
._11_c00290{width:6.685867pt;}
._10_c00290{width:7.820800pt;}
._d_c00290{width:10.176000pt;}
._f_c00290{width:11.942400pt;}
._e_c00290{width:12.998400pt;}
._c_c00290{width:14.425600pt;}
._5_c00290{width:16.633600pt;}
._7_c00290{width:19.033600pt;}
._0_c00290{width:20.742400pt;}
._3_c00290{width:22.048000pt;}
._9_c00290{width:24.691200pt;}
.fs0_c00290{font-size:48.000000pt;}
.fs2_c00290{font-size:53.333333pt;}
.fs1_c00290{font-size:64.000000pt;}
.y0_c00290{bottom:0.000000pt;}
.y2_c00290{bottom:9.333333pt;}
.y4_c00290{bottom:10.666667pt;}
.yd_c00290{bottom:60.000000pt;}
.yb_c00290{bottom:122.666667pt;}
.ya_c00290{bottom:138.666667pt;}
.y9_c00290{bottom:173.333333pt;}
.y8_c00290{bottom:193.333333pt;}
.y7_c00290{bottom:213.333333pt;}
.y6_c00290{bottom:253.333333pt;}
.y5_c00290{bottom:293.333333pt;}
.y3_c00290{bottom:314.666667pt;}
.y1_c00290{bottom:677.333333pt;}
.yc_c00290{bottom:1061.333333pt;}
.h2_c00290{height:37.593750pt;}
.h5_c00290{height:45.562500pt;}
.h7_c00290{height:49.843750pt;}
.h6_c00290{height:50.182292pt;}
.h4_c00290{height:60.218750pt;}
.h1_c00290{height:312.000000pt;}
.h3_c00290{height:337.333333pt;}
.h0_c00290{height:1122.666667pt;}
.w1_c00290{width:601.333333pt;}
.w0_c00290{width:793.333333pt;}
.x0_c00290{left:0.000000pt;}
.x2_c00290{left:125.119787pt;}
.x1_c00290{left:134.666667pt;}
.x3_c00290{left:199.692000pt;}
.x4_c00290{left:372.445200pt;}
.x5_c00290{left:714.854000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5c8978e6eca7cc85f457c175.woff2')format("woff");}.ff1_c00291{font-family:ff1_c00291;line-height:1.010254;font-style:normal;font-weight:normal;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_5ac719e1bdfef516f36f2008.woff2')format("woff");}.ff2_c00291{font-family:ff2_c00291;line-height:0.986816;font-style:normal;font-weight:normal;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_dfc135e058584c95f96fb381.woff2')format("woff");}.ff3_c00291{font-family:ff3_c00291;line-height:0.932129;font-style:normal;font-weight:normal;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_a882c899dfa2323a136b6ae7.woff2')format("woff");}.ff4_c00291{font-family:ff4_c00291;line-height:0.932129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00291;src:url('chunks/assets/font_fde9dbf452a5efcef0765996.woff2')format("woff");}.ff5_c00291{font-family:ff5_c00291;line-height:0.756836;font-style:normal;font-weight: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_c00291;src:url('chunks/assets/font_35fd29fe6c26b532c67ea377.woff2')format("woff");}.ff6_c00291{font-family:ff6_c00291;line-height:1.155762;font-style: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;}
.ls1_c00291{letter-spacing:-0.006000px;}
.ls0_c00291{letter-spacing:0.000000px;}
.ls2_c00291{letter-spacing:0.012000px;}
.sc__c00291{text-shadow:none;}
.sc0_c00291{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00291{-webkit-text-stroke:0px transparent;}
.sc0_c00291{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00291{word-spacing:-18.000000px;}
.ws2_c00291{word-spacing:-16.500000px;}
.ws0_c00291{word-spacing:-0.072000px;}
.ws3_c00291{word-spacing:0.000000px;}
._1c_c00291{margin-left:-9.115200px;}
._13_c00291{margin-left:-6.854400px;}
._7_c00291{margin-left:-4.644000px;}
._f_c00291{margin-left:-2.829600px;}
._3_c00291{margin-left:-1.821600px;}
._0_c00291{width:1.771200px;}
._b_c00291{width:2.793600px;}
._1_c00291{width:4.320000px;}
._e_c00291{width:5.608800px;}
._12_c00291{width:7.473600px;}
._11_c00291{width:8.481600px;}
._10_c00291{width:10.353600px;}
._1b_c00291{width:11.361600px;}
._14_c00291{width:12.916800px;}
._2_c00291{width:14.428800px;}
._1a_c00291{width:15.602400px;}
._4_c00291{width:16.999200px;}
._6_c00291{width:19.180800px;}
._5_c00291{width:21.081600px;}
._19_c00291{width:22.824000px;}
._8_c00291{width:23.896800px;}
._16_c00291{width:25.149600px;}
._15_c00291{width:26.560800px;}
._17_c00291{width:28.677600px;}
._18_c00291{width:30.499200px;}
._c_c00291{width:32.644800px;}
._a_c00291{width:34.675200px;}
._9_c00291{width:36.892800px;}
._d_c00291{width:38.239200px;}
.fc0_c00291{color:rgb(0,0,0);}
.fs1_c00291{font-size:60.000000px;}
.fs0_c00291{font-size:72.000000px;}
.y0_c00291{bottom:0.000000px;}
.y2a_c00291{bottom:67.500000px;}
.y28_c00291{bottom:141.000000px;}
.y27_c00291{bottom:162.000000px;}
.y26_c00291{bottom:183.000000px;}
.y25_c00291{bottom:204.000000px;}
.y24_c00291{bottom:225.000000px;}
.y23_c00291{bottom:246.000000px;}
.y22_c00291{bottom:267.000000px;}
.y21_c00291{bottom:288.000000px;}
.y20_c00291{bottom:309.000000px;}
.y1f_c00291{bottom:330.000000px;}
.y1e_c00291{bottom:351.000000px;}
.y1d_c00291{bottom:372.000000px;}
.y1c_c00291{bottom:409.500000px;}
.y1b_c00291{bottom:451.500000px;}
.y1a_c00291{bottom:474.000000px;}
.y19_c00291{bottom:496.500000px;}
.y18_c00291{bottom:519.000000px;}
.y17_c00291{bottom:541.500000px;}
.y16_c00291{bottom:586.500000px;}
.y15_c00291{bottom:631.500000px;}
.y14_c00291{bottom:675.000000px;}
.y13_c00291{bottom:696.000000px;}
.y12_c00291{bottom:717.000000px;}
.y11_c00291{bottom:738.000000px;}
.y10_c00291{bottom:759.000000px;}
.yf_c00291{bottom:780.000000px;}
.ye_c00291{bottom:801.000000px;}
.yd_c00291{bottom:822.000000px;}
.yc_c00291{bottom:843.000000px;}
.yb_c00291{bottom:864.000000px;}
.ya_c00291{bottom:885.000000px;}
.y9_c00291{bottom:906.000000px;}
.y8_c00291{bottom:927.000000px;}
.y7_c00291{bottom:948.000000px;}
.y6_c00291{bottom:969.000000px;}
.y5_c00291{bottom:990.000000px;}
.y4_c00291{bottom:1011.000000px;}
.y3_c00291{bottom:1032.000000px;}
.y2_c00291{bottom:1053.000000px;}
.y1_c00291{bottom:1074.000000px;}
.y29_c00291{bottom:1194.000000px;}
.h3_c00291{height:42.714844px;}
.h5_c00291{height:44.208984px;}
.h2_c00291{height:51.257812px;}
.h1_c00291{height:52.417969px;}
.h4_c00291{height:56.074219px;}
.h0_c00291{height:1263.000000px;}
.w0_c00291{width:892.500000px;}
.x0_c00291{left:0.000000px;}
.x1_c00291{left:63.262395px;}
@media print{
.v0_c00291{vertical-align:0.000000pt;}
.ls1_c00291{letter-spacing:-0.005333pt;}
.ls0_c00291{letter-spacing:0.000000pt;}
.ls2_c00291{letter-spacing:0.010667pt;}
.ws1_c00291{word-spacing:-16.000000pt;}
.ws2_c00291{word-spacing:-14.666667pt;}
.ws0_c00291{word-spacing:-0.064000pt;}
.ws3_c00291{word-spacing:0.000000pt;}
._1c_c00291{margin-left:-8.102400pt;}
._13_c00291{margin-left:-6.092800pt;}
._7_c00291{margin-left:-4.128000pt;}
._f_c00291{margin-left:-2.515200pt;}
._3_c00291{margin-left:-1.619200pt;}
._0_c00291{width:1.574400pt;}
._b_c00291{width:2.483200pt;}
._1_c00291{width:3.840000pt;}
._e_c00291{width:4.985600pt;}
._12_c00291{width:6.643200pt;}
._11_c00291{width:7.539200pt;}
._10_c00291{width:9.203200pt;}
._1b_c00291{width:10.099200pt;}
._14_c00291{width:11.481600pt;}
._2_c00291{width:12.825600pt;}
._1a_c00291{width:13.868800pt;}
._4_c00291{width:15.110400pt;}
._6_c00291{width:17.049600pt;}
._5_c00291{width:18.739200pt;}
._19_c00291{width:20.288000pt;}
._8_c00291{width:21.241600pt;}
._16_c00291{width:22.355200pt;}
._15_c00291{width:23.609600pt;}
._17_c00291{width:25.491200pt;}
._18_c00291{width:27.110400pt;}
._c_c00291{width:29.017600pt;}
._a_c00291{width:30.822400pt;}
._9_c00291{width:32.793600pt;}
._d_c00291{width:33.990400pt;}
.fs1_c00291{font-size:53.333333pt;}
.fs0_c00291{font-size:64.000000pt;}
.y0_c00291{bottom:0.000000pt;}
.y2a_c00291{bottom:60.000000pt;}
.y28_c00291{bottom:125.333333pt;}
.y27_c00291{bottom:144.000000pt;}
.y26_c00291{bottom:162.666667pt;}
.y25_c00291{bottom:181.333333pt;}
.y24_c00291{bottom:200.000000pt;}
.y23_c00291{bottom:218.666667pt;}
.y22_c00291{bottom:237.333333pt;}
.y21_c00291{bottom:256.000000pt;}
.y20_c00291{bottom:274.666667pt;}
.y1f_c00291{bottom:293.333333pt;}
.y1e_c00291{bottom:312.000000pt;}
.y1d_c00291{bottom:330.666667pt;}
.y1c_c00291{bottom:364.000000pt;}
.y1b_c00291{bottom:401.333333pt;}
.y1a_c00291{bottom:421.333333pt;}
.y19_c00291{bottom:441.333333pt;}
.y18_c00291{bottom:461.333333pt;}
.y17_c00291{bottom:481.333333pt;}
.y16_c00291{bottom:521.333333pt;}
.y15_c00291{bottom:561.333333pt;}
.y14_c00291{bottom:600.000000pt;}
.y13_c00291{bottom:618.666667pt;}
.y12_c00291{bottom:637.333333pt;}
.y11_c00291{bottom:656.000000pt;}
.y10_c00291{bottom:674.666667pt;}
.yf_c00291{bottom:693.333333pt;}
.ye_c00291{bottom:712.000000pt;}
.yd_c00291{bottom:730.666667pt;}
.yc_c00291{bottom:749.333333pt;}
.yb_c00291{bottom:768.000000pt;}
.ya_c00291{bottom:786.666667pt;}
.y9_c00291{bottom:805.333333pt;}
.y8_c00291{bottom:824.000000pt;}
.y7_c00291{bottom:842.666667pt;}
.y6_c00291{bottom:861.333333pt;}
.y5_c00291{bottom:880.000000pt;}
.y4_c00291{bottom:898.666667pt;}
.y3_c00291{bottom:917.333333pt;}
.y2_c00291{bottom:936.000000pt;}
.y1_c00291{bottom:954.666667pt;}
.y29_c00291{bottom:1061.333333pt;}
.h3_c00291{height:37.968750pt;}
.h5_c00291{height:39.296875pt;}
.h2_c00291{height:45.562500pt;}
.h1_c00291{height:46.593750pt;}
.h4_c00291{height:49.843750pt;}
.h0_c00291{height:1122.666667pt;}
.w0_c00291{width:793.333333pt;}
.x0_c00291{left:0.000000pt;}
.x1_c00291{left:56.233240pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_89823a5bfeb3d354afcc9b7b.woff2')format("woff");}.ff1_c00292{font-family:ff1_c00292;line-height:1.010254;font-style:normal;font-weight:normal;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_f3b943a10702f43af9ec60ae.woff2')format("woff");}.ff2_c00292{font-family:ff2_c00292;line-height:0.986816;font-style:normal;font-weight:normal;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_34d2a487684512cd8572758b.woff2')format("woff");}.ff3_c00292{font-family:ff3_c00292;line-height:0.934082;font-style:normal;font-weight:normal;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_2ce2031dc3bd82ee63a3b77d.woff2')format("woff");}.ff4_c00292{font-family:ff4_c00292;line-height:0.932129;font-style:normal;font-weight:normal;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_c2ade87fd7a5826aec086127.woff2')format("woff");}.ff5_c00292{font-family:ff5_c00292;line-height:1.155762;font-style: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;}
.ls4_c00292{letter-spacing:0.000000px;}
.ls3_c00292{letter-spacing:0.012000px;}
.ls1_c00292{letter-spacing:0.079200px;}
.ls2_c00292{letter-spacing:0.432000px;}
.ls0_c00292{letter-spacing:1.180800px;}
.sc__c00292{text-shadow:none;}
.sc0_c00292{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00292{-webkit-text-stroke:0px transparent;}
.sc0_c00292{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00292{word-spacing:-18.000000px;}
.ws2_c00292{word-spacing:-16.500000px;}
.ws0_c00292{word-spacing:-0.072000px;}
.ws3_c00292{word-spacing:0.000000px;}
._22_c00292{margin-left:-9.252000px;}
._23_c00292{margin-left:-7.666800px;}
._b_c00292{margin-left:-6.480000px;}
._19_c00292{margin-left:-5.378400px;}
._1a_c00292{margin-left:-4.204800px;}
._0_c00292{margin-left:-2.858400px;}
._5_c00292{margin-left:-1.288800px;}
._3_c00292{width:1.346400px;}
._10_c00292{width:2.620800px;}
._6_c00292{width:3.636000px;}
._8_c00292{width:4.658400px;}
._9_c00292{width:6.624000px;}
._16_c00292{width:8.222400px;}
._25_c00292{width:9.280800px;}
._a_c00292{width:10.382400px;}
._24_c00292{width:11.577600px;}
._7_c00292{width:12.816000px;}
._1b_c00292{width:14.040000px;}
._4_c00292{width:15.127200px;}
._2_c00292{width:16.452000px;}
._1_c00292{width:19.324800px;}
._18_c00292{width:20.606400px;}
._17_c00292{width:21.844800px;}
._1f_c00292{width:22.910400px;}
._d_c00292{width:24.213600px;}
._c_c00292{width:25.243200px;}
._1d_c00292{width:26.308800px;}
._e_c00292{width:27.525600px;}
._1c_c00292{width:28.922400px;}
._f_c00292{width:30.204000px;}
._11_c00292{width:31.435200px;}
._12_c00292{width:32.925600px;}
._14_c00292{width:34.200000px;}
._15_c00292{width:35.488800px;}
._13_c00292{width:37.058400px;}
._21_c00292{width:38.534400px;}
._20_c00292{width:39.708000px;}
._1e_c00292{width:42.249600px;}
.fc1_c00292{color:rgb(0,0,153);}
.fc0_c00292{color:rgb(0,0,0);}
.fs1_c00292{font-size:60.000000px;}
.fs0_c00292{font-size:72.000000px;}
.y0_c00292{bottom:0.000000px;}
.y2a_c00292{bottom:67.500000px;}
.y28_c00292{bottom:148.500000px;}
.y27_c00292{bottom:169.500000px;}
.y26_c00292{bottom:190.500000px;}
.y25_c00292{bottom:211.500000px;}
.y24_c00292{bottom:232.500000px;}
.y23_c00292{bottom:253.500000px;}
.y22_c00292{bottom:274.500000px;}
.y21_c00292{bottom:295.500000px;}
.y20_c00292{bottom:316.500000px;}
.y1f_c00292{bottom:337.500000px;}
.y1e_c00292{bottom:358.500000px;}
.y1d_c00292{bottom:379.500000px;}
.y1c_c00292{bottom:400.500000px;}
.y1b_c00292{bottom:421.500000px;}
.y1a_c00292{bottom:459.000000px;}
.y19_c00292{bottom:477.000000px;}
.y18_c00292{bottom:519.000000px;}
.y17_c00292{bottom:541.500000px;}
.y16_c00292{bottom:609.000000px;}
.y15_c00292{bottom:654.000000px;}
.y14_c00292{bottom:697.500000px;}
.y13_c00292{bottom:718.500000px;}
.y12_c00292{bottom:739.500000px;}
.y11_c00292{bottom:760.500000px;}
.y10_c00292{bottom:781.500000px;}
.yf_c00292{bottom:802.500000px;}
.ye_c00292{bottom:823.500000px;}
.yd_c00292{bottom:844.500000px;}
.yc_c00292{bottom:865.500000px;}
.yb_c00292{bottom:886.500000px;}
.ya_c00292{bottom:907.500000px;}
.y9_c00292{bottom:928.500000px;}
.y8_c00292{bottom:949.500000px;}
.y7_c00292{bottom:970.500000px;}
.y6_c00292{bottom:991.500000px;}
.y5_c00292{bottom:1012.500000px;}
.y4_c00292{bottom:1033.500000px;}
.y3_c00292{bottom:1054.500000px;}
.y2_c00292{bottom:1075.500000px;}
.y1_c00292{bottom:1096.500000px;}
.y29_c00292{bottom:1194.000000px;}
.h3_c00292{height:42.714844px;}
.h2_c00292{height:51.257812px;}
.h1_c00292{height:52.417969px;}
.h4_c00292{height:56.074219px;}
.h0_c00292{height:1263.000000px;}
.w0_c00292{width:892.500000px;}
.x0_c00292{left:0.000000px;}
.x1_c00292{left:150.519750px;}
.x2_c00292{left:419.000850px;}
.x3_c00292{left:804.210750px;}
@media print{
.v0_c00292{vertical-align:0.000000pt;}
.ls4_c00292{letter-spacing:0.000000pt;}
.ls3_c00292{letter-spacing:0.010667pt;}
.ls1_c00292{letter-spacing:0.070400pt;}
.ls2_c00292{letter-spacing:0.384000pt;}
.ls0_c00292{letter-spacing:1.049600pt;}
.ws1_c00292{word-spacing:-16.000000pt;}
.ws2_c00292{word-spacing:-14.666667pt;}
.ws0_c00292{word-spacing:-0.064000pt;}
.ws3_c00292{word-spacing:0.000000pt;}
._22_c00292{margin-left:-8.224000pt;}
._23_c00292{margin-left:-6.814933pt;}
._b_c00292{margin-left:-5.760000pt;}
._19_c00292{margin-left:-4.780800pt;}
._1a_c00292{margin-left:-3.737600pt;}
._0_c00292{margin-left:-2.540800pt;}
._5_c00292{margin-left:-1.145600pt;}
._3_c00292{width:1.196800pt;}
._10_c00292{width:2.329600pt;}
._6_c00292{width:3.232000pt;}
._8_c00292{width:4.140800pt;}
._9_c00292{width:5.888000pt;}
._16_c00292{width:7.308800pt;}
._25_c00292{width:8.249600pt;}
._a_c00292{width:9.228800pt;}
._24_c00292{width:10.291200pt;}
._7_c00292{width:11.392000pt;}
._1b_c00292{width:12.480000pt;}
._4_c00292{width:13.446400pt;}
._2_c00292{width:14.624000pt;}
._1_c00292{width:17.177600pt;}
._18_c00292{width:18.316800pt;}
._17_c00292{width:19.417600pt;}
._1f_c00292{width:20.364800pt;}
._d_c00292{width:21.523200pt;}
._c_c00292{width:22.438400pt;}
._1d_c00292{width:23.385600pt;}
._e_c00292{width:24.467200pt;}
._1c_c00292{width:25.708800pt;}
._f_c00292{width:26.848000pt;}
._11_c00292{width:27.942400pt;}
._12_c00292{width:29.267200pt;}
._14_c00292{width:30.400000pt;}
._15_c00292{width:31.545600pt;}
._13_c00292{width:32.940800pt;}
._21_c00292{width:34.252800pt;}
._20_c00292{width:35.296000pt;}
._1e_c00292{width:37.555200pt;}
.fs1_c00292{font-size:53.333333pt;}
.fs0_c00292{font-size:64.000000pt;}
.y0_c00292{bottom:0.000000pt;}
.y2a_c00292{bottom:60.000000pt;}
.y28_c00292{bottom:132.000000pt;}
.y27_c00292{bottom:150.666667pt;}
.y26_c00292{bottom:169.333333pt;}
.y25_c00292{bottom:188.000000pt;}
.y24_c00292{bottom:206.666667pt;}
.y23_c00292{bottom:225.333333pt;}
.y22_c00292{bottom:244.000000pt;}
.y21_c00292{bottom:262.666667pt;}
.y20_c00292{bottom:281.333333pt;}
.y1f_c00292{bottom:300.000000pt;}
.y1e_c00292{bottom:318.666667pt;}
.y1d_c00292{bottom:337.333333pt;}
.y1c_c00292{bottom:356.000000pt;}
.y1b_c00292{bottom:374.666667pt;}
.y1a_c00292{bottom:408.000000pt;}
.y19_c00292{bottom:424.000000pt;}
.y18_c00292{bottom:461.333333pt;}
.y17_c00292{bottom:481.333333pt;}
.y16_c00292{bottom:541.333333pt;}
.y15_c00292{bottom:581.333333pt;}
.y14_c00292{bottom:620.000000pt;}
.y13_c00292{bottom:638.666667pt;}
.y12_c00292{bottom:657.333333pt;}
.y11_c00292{bottom:676.000000pt;}
.y10_c00292{bottom:694.666667pt;}
.yf_c00292{bottom:713.333333pt;}
.ye_c00292{bottom:732.000000pt;}
.yd_c00292{bottom:750.666667pt;}
.yc_c00292{bottom:769.333333pt;}
.yb_c00292{bottom:788.000000pt;}
.ya_c00292{bottom:806.666667pt;}
.y9_c00292{bottom:825.333333pt;}
.y8_c00292{bottom:844.000000pt;}
.y7_c00292{bottom:862.666667pt;}
.y6_c00292{bottom:881.333333pt;}
.y5_c00292{bottom:900.000000pt;}
.y4_c00292{bottom:918.666667pt;}
.y3_c00292{bottom:937.333333pt;}
.y2_c00292{bottom:956.000000pt;}
.y1_c00292{bottom:974.666667pt;}
.y29_c00292{bottom:1061.333333pt;}
.h3_c00292{height:37.968750pt;}
.h2_c00292{height:45.562500pt;}
.h1_c00292{height:46.593750pt;}
.h4_c00292{height:49.843750pt;}
.h0_c00292{height:1122.666667pt;}
.w0_c00292{width:793.333333pt;}
.x0_c00292{left:0.000000pt;}
.x1_c00292{left:133.795333pt;}
.x2_c00292{left:372.445200pt;}
.x3_c00292{left:714.854000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ca63fbeff71f27de17bd3b0b.woff2')format("woff");}.ff1_c00293{font-family:ff1_c00293;line-height:1.010254;font-style:normal;font-weight:normal;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_275aed0ca3524589ca8b1afb.woff2')format("woff");}.ff2_c00293{font-family:ff2_c00293;line-height:0.756348;font-style:normal;font-weight:normal;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_a88fdaf2fac3b537ffe3aa2c.woff2')format("woff");}.ff3_c00293{font-family:ff3_c00293;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00293{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00293{vertical-align:0.000000px;}
.ls1_c00293{letter-spacing:0.000000px;}
.ls2_c00293{letter-spacing:0.012000px;}
.ls0_c00293{letter-spacing:0.194400px;}
.sc__c00293{text-shadow:none;}
.sc0_c00293{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00293{-webkit-text-stroke:0px transparent;}
.sc0_c00293{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00293{word-spacing:0.000000px;}
._13_c00293{margin-left:-6.451200px;}
._14_c00293{margin-left:-5.349600px;}
._10_c00293{margin-left:-4.053600px;}
._7_c00293{margin-left:-2.829600px;}
._2_c00293{margin-left:-1.296000px;}
._0_c00293{width:1.749600px;}
._4_c00293{width:3.297600px;}
._e_c00293{width:4.622400px;}
._5_c00293{width:6.508800px;}
._1_c00293{width:8.049600px;}
._3_c00293{width:9.792000px;}
._6_c00293{width:11.088000px;}
._8_c00293{width:12.607200px;}
._12_c00293{width:13.874400px;}
._11_c00293{width:16.070400px;}
._16_c00293{width:19.231200px;}
._15_c00293{width:21.355200px;}
._17_c00293{width:24.955200px;}
._f_c00293{width:26.287200px;}
._18_c00293{width:27.828000px;}
._d_c00293{width:29.037600px;}
._c_c00293{width:32.486400px;}
._a_c00293{width:33.962400px;}
._b_c00293{width:35.640000px;}
._9_c00293{width:37.008000px;}
._1a_c00293{width:38.412000px;}
._19_c00293{width:40.046400px;}
.fc0_c00293{color:rgb(0,0,0);}
.fs1_c00293{font-size:60.000000px;}
.fs0_c00293{font-size:72.000000px;}
.y0_c00293{bottom:0.000000px;}
.y10_c00293{bottom:67.500000px;}
.ye_c00293{bottom:823.500000px;}
.yd_c00293{bottom:844.500000px;}
.yc_c00293{bottom:865.500000px;}
.yb_c00293{bottom:886.500000px;}
.ya_c00293{bottom:907.500000px;}
.y9_c00293{bottom:928.500000px;}
.y8_c00293{bottom:949.500000px;}
.y7_c00293{bottom:970.500000px;}
.y6_c00293{bottom:991.500000px;}
.y5_c00293{bottom:1012.500000px;}
.y4_c00293{bottom:1033.500000px;}
.y3_c00293{bottom:1054.500000px;}
.y2_c00293{bottom:1075.500000px;}
.y1_c00293{bottom:1096.500000px;}
.yf_c00293{bottom:1194.000000px;}
.h3_c00293{height:44.208984px;}
.h1_c00293{height:52.417969px;}
.h2_c00293{height:56.074219px;}
.h0_c00293{height:1263.000000px;}
.w0_c00293{width:892.500000px;}
.x0_c00293{left:0.000000px;}
.x1_c00293{left:63.262395px;}
@media print{
.v0_c00293{vertical-align:0.000000pt;}
.ls1_c00293{letter-spacing:0.000000pt;}
.ls2_c00293{letter-spacing:0.010667pt;}
.ls0_c00293{letter-spacing:0.172800pt;}
.ws0_c00293{word-spacing:0.000000pt;}
._13_c00293{margin-left:-5.734400pt;}
._14_c00293{margin-left:-4.755200pt;}
._10_c00293{margin-left:-3.603200pt;}
._7_c00293{margin-left:-2.515200pt;}
._2_c00293{margin-left:-1.152000pt;}
._0_c00293{width:1.555200pt;}
._4_c00293{width:2.931200pt;}
._e_c00293{width:4.108800pt;}
._5_c00293{width:5.785600pt;}
._1_c00293{width:7.155200pt;}
._3_c00293{width:8.704000pt;}
._6_c00293{width:9.856000pt;}
._8_c00293{width:11.206400pt;}
._12_c00293{width:12.332800pt;}
._11_c00293{width:14.284800pt;}
._16_c00293{width:17.094400pt;}
._15_c00293{width:18.982400pt;}
._17_c00293{width:22.182400pt;}
._f_c00293{width:23.366400pt;}
._18_c00293{width:24.736000pt;}
._d_c00293{width:25.811200pt;}
._c_c00293{width:28.876800pt;}
._a_c00293{width:30.188800pt;}
._b_c00293{width:31.680000pt;}
._9_c00293{width:32.896000pt;}
._1a_c00293{width:34.144000pt;}
._19_c00293{width:35.596800pt;}
.fs1_c00293{font-size:53.333333pt;}
.fs0_c00293{font-size:64.000000pt;}
.y0_c00293{bottom:0.000000pt;}
.y10_c00293{bottom:60.000000pt;}
.ye_c00293{bottom:732.000000pt;}
.yd_c00293{bottom:750.666667pt;}
.yc_c00293{bottom:769.333333pt;}
.yb_c00293{bottom:788.000000pt;}
.ya_c00293{bottom:806.666667pt;}
.y9_c00293{bottom:825.333333pt;}
.y8_c00293{bottom:844.000000pt;}
.y7_c00293{bottom:862.666667pt;}
.y6_c00293{bottom:881.333333pt;}
.y5_c00293{bottom:900.000000pt;}
.y4_c00293{bottom:918.666667pt;}
.y3_c00293{bottom:937.333333pt;}
.y2_c00293{bottom:956.000000pt;}
.y1_c00293{bottom:974.666667pt;}
.yf_c00293{bottom:1061.333333pt;}
.h3_c00293{height:39.296875pt;}
.h1_c00293{height:46.593750pt;}
.h2_c00293{height:49.843750pt;}
.h0_c00293{height:1122.666667pt;}
.w0_c00293{width:793.333333pt;}
.x0_c00293{left:0.000000pt;}
.x1_c00293{left:56.233240pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bafdb9cf9980fcd72062729a.woff2')format("woff");}.ff1_c00294{font-family:ff1_c00294;line-height:0.884766;font-style:normal;font-weight:normal;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_6d8850b048287386b8bd39ed.woff2')format("woff");}.ff2_c00294{font-family:ff2_c00294;line-height:1.163086;font-style:normal;font-weight:normal;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_2b9beff63df37571d0acf4dd.woff2')format("woff");}.ff3_c00294{font-family:ff3_c00294;line-height:0.888672;font-style:normal;font-weight:normal;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_6004b7571e9b320f4a3299e5.woff2')format("woff");}.ff4_c00294{font-family:ff4_c00294;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00294;src:url('chunks/assets/font_1308517396bcda4251101605.woff2')format("woff");}.ff5_c00294{font-family:ff5_c00294;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00294;src:url('chunks/assets/font_1835af2ea7018e9146ca8b87.woff2')format("woff");}.ff6_c00294{font-family:ff6_c00294;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00294{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00294{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3_c00294{vertical-align:-33.000000px;}
.v2_c00294{vertical-align:-23.086200px;}
.v0_c00294{vertical-align:0.000000px;}
.v1_c00294{vertical-align:23.086200px;}
.ls8_c00294{letter-spacing:-0.012000px;}
.ls7_c00294{letter-spacing:-0.007200px;}
.ls5_c00294{letter-spacing:0.000000px;}
.ls0_c00294{letter-spacing:0.007800px;}
.ls3_c00294{letter-spacing:0.012000px;}
.ls6_c00294{letter-spacing:1.188000px;}
.ls4_c00294{letter-spacing:3.999999px;}
.ls2_c00294{letter-spacing:9.382200px;}
.ls1_c00294{letter-spacing:19.843200px;}
.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:-19.800000px;}
.ws4_c00294{word-spacing:-14.988000px;}
.ws2_c00294{word-spacing:-13.200000px;}
.ws3_c00294{word-spacing:-10.000001px;}
.ws0_c00294{word-spacing:-0.072000px;}
.ws5_c00294{word-spacing:0.000000px;}
._14_c00294{margin-left:-10.969200px;}
._15_c00294{margin-left:-9.864000px;}
._1a_c00294{margin-left:-6.332400px;}
._19_c00294{margin-left:-5.136801px;}
._d_c00294{margin-left:-3.675600px;}
._9_c00294{margin-left:-2.649600px;}
._1_c00294{margin-left:-1.461600px;}
._17_c00294{width:1.008000px;}
._4_c00294{width:2.016000px;}
._3_c00294{width:3.873600px;}
._5_c00294{width:5.378400px;}
._18_c00294{width:6.426000px;}
._0_c00294{width:7.531200px;}
._2_c00294{width:9.028800px;}
._8_c00294{width:10.771200px;}
._6_c00294{width:12.621600px;}
._7_c00294{width:14.666400px;}
._16_c00294{width:16.174800px;}
._a_c00294{width:17.265600px;}
._b_c00294{width:18.460800px;}
._c_c00294{width:21.067200px;}
._e_c00294{width:22.572000px;}
._12_c00294{width:25.768800px;}
._10_c00294{width:27.662400px;}
._f_c00294{width:29.728800px;}
._11_c00294{width:31.104000px;}
._13_c00294{width:33.296400px;}
.fc1_c00294{color:rgb(255,255,255);}
.fc0_c00294{color:rgb(0,0,0);}
.fs5_c00294{font-size:40.000002px;}
.fs2_c00294{font-size:48.000000px;}
.fs4_c00294{font-size:60.000000px;}
.fs1_c00294{font-size:72.000000px;}
.fs0_c00294{font-size:78.000000px;}
.fs3_c00294{font-size:96.000000px;}
.y0_c00294{bottom:0.000000px;}
.y17_c00294{bottom:67.500000px;}
.y1f_c00294{bottom:132.000000px;}
.y1e_c00294{bottom:151.500000px;}
.y1d_c00294{bottom:179.250000px;}
.y1c_c00294{bottom:228.750000px;}
.y1b_c00294{bottom:270.000000px;}
.y1a_c00294{bottom:297.750000px;}
.y19_c00294{bottom:339.000000px;}
.y18_c00294{bottom:366.750000px;}
.y14_c00294{bottom:415.500000px;}
.y13_c00294{bottom:442.500000px;}
.y12_c00294{bottom:469.500000px;}
.y11_c00294{bottom:496.500000px;}
.y10_c00294{bottom:523.500000px;}
.yf_c00294{bottom:571.500000px;}
.ye_c00294{bottom:598.500000px;}
.yd_c00294{bottom:625.500000px;}
.yc_c00294{bottom:652.500000px;}
.yb_c00294{bottom:679.500000px;}
.ya_c00294{bottom:706.500000px;}
.y9_c00294{bottom:733.500000px;}
.y8_c00294{bottom:781.500000px;}
.y7_c00294{bottom:808.500000px;}
.y6_c00294{bottom:835.500000px;}
.y5_c00294{bottom:862.500000px;}
.y4_c00294{bottom:889.500000px;}
.y3_c00294{bottom:916.500000px;}
.y2_c00294{bottom:943.500000px;}
.y1_c00294{bottom:990.000000px;}
.y15_c00294{bottom:1066.500000px;}
.y16_c00294{bottom:1194.000000px;}
.h6_c00294{height:35.781252px;}
.h7_c00294{height:53.671875px;}
.h1_c00294{height:55.224609px;}
.h5_c00294{height:56.074219px;}
.h2_c00294{height:67.746094px;}
.h3_c00294{height:68.250262px;}
.h4_c00294{height:90.328125px;}
.h0_c00294{height:1263.000000px;}
.w0_c00294{width:892.500000px;}
.x0_c00294{left:0.000000px;}
.x1_c00294{left:150.519750px;}
.x2_c00294{left:180.298875px;}
.x3_c00294{left:416.782800px;}
.x4_c00294{left:801.992850px;}
@media print{
.v3_c00294{vertical-align:-29.333333pt;}
.v2_c00294{vertical-align:-20.521067pt;}
.v0_c00294{vertical-align:0.000000pt;}
.v1_c00294{vertical-align:20.521067pt;}
.ls8_c00294{letter-spacing:-0.010667pt;}
.ls7_c00294{letter-spacing:-0.006400pt;}
.ls5_c00294{letter-spacing:0.000000pt;}
.ls0_c00294{letter-spacing:0.006933pt;}
.ls3_c00294{letter-spacing:0.010667pt;}
.ls6_c00294{letter-spacing:1.056000pt;}
.ls4_c00294{letter-spacing:3.555555pt;}
.ls2_c00294{letter-spacing:8.339733pt;}
.ls1_c00294{letter-spacing:17.638400pt;}
.ws1_c00294{word-spacing:-17.600000pt;}
.ws4_c00294{word-spacing:-13.322667pt;}
.ws2_c00294{word-spacing:-11.733333pt;}
.ws3_c00294{word-spacing:-8.888889pt;}
.ws0_c00294{word-spacing:-0.064000pt;}
.ws5_c00294{word-spacing:0.000000pt;}
._14_c00294{margin-left:-9.750400pt;}
._15_c00294{margin-left:-8.768000pt;}
._1a_c00294{margin-left:-5.628800pt;}
._19_c00294{margin-left:-4.566045pt;}
._d_c00294{margin-left:-3.267200pt;}
._9_c00294{margin-left:-2.355200pt;}
._1_c00294{margin-left:-1.299200pt;}
._17_c00294{width:0.896000pt;}
._4_c00294{width:1.792000pt;}
._3_c00294{width:3.443200pt;}
._5_c00294{width:4.780800pt;}
._18_c00294{width:5.712000pt;}
._0_c00294{width:6.694400pt;}
._2_c00294{width:8.025600pt;}
._8_c00294{width:9.574400pt;}
._6_c00294{width:11.219200pt;}
._7_c00294{width:13.036800pt;}
._16_c00294{width:14.377600pt;}
._a_c00294{width:15.347200pt;}
._b_c00294{width:16.409600pt;}
._c_c00294{width:18.726400pt;}
._e_c00294{width:20.064000pt;}
._12_c00294{width:22.905600pt;}
._10_c00294{width:24.588800pt;}
._f_c00294{width:26.425600pt;}
._11_c00294{width:27.648000pt;}
._13_c00294{width:29.596800pt;}
.fs5_c00294{font-size:35.555557pt;}
.fs2_c00294{font-size:42.666667pt;}
.fs4_c00294{font-size:53.333333pt;}
.fs1_c00294{font-size:64.000000pt;}
.fs0_c00294{font-size:69.333333pt;}
.fs3_c00294{font-size:85.333333pt;}
.y0_c00294{bottom:0.000000pt;}
.y17_c00294{bottom:60.000000pt;}
.y1f_c00294{bottom:117.333333pt;}
.y1e_c00294{bottom:134.666667pt;}
.y1d_c00294{bottom:159.333333pt;}
.y1c_c00294{bottom:203.333333pt;}
.y1b_c00294{bottom:240.000000pt;}
.y1a_c00294{bottom:264.666667pt;}
.y19_c00294{bottom:301.333333pt;}
.y18_c00294{bottom:326.000000pt;}
.y14_c00294{bottom:369.333333pt;}
.y13_c00294{bottom:393.333333pt;}
.y12_c00294{bottom:417.333333pt;}
.y11_c00294{bottom:441.333333pt;}
.y10_c00294{bottom:465.333333pt;}
.yf_c00294{bottom:508.000000pt;}
.ye_c00294{bottom:532.000000pt;}
.yd_c00294{bottom:556.000000pt;}
.yc_c00294{bottom:580.000000pt;}
.yb_c00294{bottom:604.000000pt;}
.ya_c00294{bottom:628.000000pt;}
.y9_c00294{bottom:652.000000pt;}
.y8_c00294{bottom:694.666667pt;}
.y7_c00294{bottom:718.666667pt;}
.y6_c00294{bottom:742.666667pt;}
.y5_c00294{bottom:766.666667pt;}
.y4_c00294{bottom:790.666667pt;}
.y3_c00294{bottom:814.666667pt;}
.y2_c00294{bottom:838.666667pt;}
.y1_c00294{bottom:880.000000pt;}
.y15_c00294{bottom:948.000000pt;}
.y16_c00294{bottom:1061.333333pt;}
.h6_c00294{height:31.805557pt;}
.h7_c00294{height:47.708333pt;}
.h1_c00294{height:49.088542pt;}
.h5_c00294{height:49.843750pt;}
.h2_c00294{height:60.218750pt;}
.h3_c00294{height:60.666900pt;}
.h4_c00294{height:80.291667pt;}
.h0_c00294{height:1122.666667pt;}
.w0_c00294{width:793.333333pt;}
.x0_c00294{left:0.000000pt;}
.x1_c00294{left:133.795333pt;}
.x2_c00294{left:160.265667pt;}
.x3_c00294{left:370.473600pt;}
.x4_c00294{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a1a732691f74111878e60213.woff2')format("woff");}.ff1_c00295{font-family:ff1_c00295;line-height:0.934082;font-style:normal;font-weight:normal;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_be33d87989dfbdde6757f9b4.woff2')format("woff");}.ff2_c00295{font-family:ff2_c00295;line-height:0.939453;font-style:normal;font-weight:normal;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_cecf191768a8568871ee8a89.woff2')format("woff");}.ff3_c00295{font-family:ff3_c00295;line-height:0.756348;font-style:normal;font-weight:normal;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_de3b394cfc44d1773106ff3d.woff2')format("woff");}.ff4_c00295{font-family:ff4_c00295;line-height:1.155762;font-style:normal;font-weight:normal;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_40da7b0bc8f4b31c433f87ae.woff2')format("woff");}.ff5_c00295{font-family:ff5_c00295;line-height:1.060059;font-style:normal;font-weight: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_c00295;src:url('chunks/assets/font_3d6836bc1912ba7e4ad45c50.woff2')format("woff");}.ff6_c00295{font-family:ff6_c00295;line-height:0.892578;font-style: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);}
.v3_c00295{vertical-align:-33.000000px;}
.v2_c00295{vertical-align:-23.086200px;}
.v0_c00295{vertical-align:0.000000px;}
.v1_c00295{vertical-align:23.086200px;}
.ls4_c00295{letter-spacing:0.000000px;}
.ls2_c00295{letter-spacing:0.007800px;}
.ls5_c00295{letter-spacing:0.012000px;}
.ls1_c00295{letter-spacing:2.837400px;}
.ls0_c00295{letter-spacing:3.604200px;}
.ls3_c00295{letter-spacing:3.999999px;}
.sc__c00295{text-shadow:none;}
.sc0_c00295{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00295{-webkit-text-stroke:0px transparent;}
.sc0_c00295{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00295{word-spacing:-19.800000px;}
.ws1_c00295{word-spacing:0.000000px;}
._12_c00295{margin-left:-10.584000px;}
._16_c00295{margin-left:-6.883200px;}
._1c_c00295{margin-left:-5.456400px;}
._3_c00295{margin-left:-4.384800px;}
._5_c00295{margin-left:-2.390400px;}
._1_c00295{margin-left:-1.382400px;}
._6_c00295{width:1.000800px;}
._f_c00295{width:2.260800px;}
._a_c00295{width:3.420000px;}
._10_c00295{width:4.960800px;}
._15_c00295{width:5.997600px;}
._19_c00295{width:7.149600px;}
._18_c00295{width:8.179200px;}
._d_c00295{width:9.338400px;}
._b_c00295{width:10.533600px;}
._17_c00295{width:11.563200px;}
._c_c00295{width:12.636000px;}
._7_c00295{width:14.047200px;}
._e_c00295{width:15.300000px;}
._8_c00295{width:16.336800px;}
._9_c00295{width:18.331200px;}
._11_c00295{width:21.412800px;}
._13_c00295{width:22.500000px;}
._0_c00295{width:23.947200px;}
._2_c00295{width:25.351200px;}
._14_c00295{width:26.517600px;}
._4_c00295{width:28.317600px;}
._1b_c00295{width:30.463200px;}
._1a_c00295{width:32.148000px;}
.fc0_c00295{color:rgb(0,0,0);}
.fs4_c00295{font-size:40.000002px;}
.fs1_c00295{font-size:48.000000px;}
.fs3_c00295{font-size:60.000000px;}
.fs0_c00295{font-size:72.000000px;}
.fs2_c00295{font-size:78.000000px;}
.y0_c00295{bottom:0.000000px;}
.y1b_c00295{bottom:67.500000px;}
.y1f_c00295{bottom:132.000000px;}
.y1e_c00295{bottom:159.750000px;}
.y1d_c00295{bottom:201.000000px;}
.y1c_c00295{bottom:228.750000px;}
.y19_c00295{bottom:321.000000px;}
.y18_c00295{bottom:348.000000px;}
.y17_c00295{bottom:396.000000px;}
.y16_c00295{bottom:423.000000px;}
.y15_c00295{bottom:450.000000px;}
.y14_c00295{bottom:477.000000px;}
.y13_c00295{bottom:504.000000px;}
.y12_c00295{bottom:550.500000px;}
.y11_c00295{bottom:621.000000px;}
.y10_c00295{bottom:648.000000px;}
.yf_c00295{bottom:675.000000px;}
.ye_c00295{bottom:723.000000px;}
.yd_c00295{bottom:750.000000px;}
.yc_c00295{bottom:777.000000px;}
.yb_c00295{bottom:804.000000px;}
.ya_c00295{bottom:831.000000px;}
.y9_c00295{bottom:858.000000px;}
.y8_c00295{bottom:885.000000px;}
.y7_c00295{bottom:933.000000px;}
.y6_c00295{bottom:960.000000px;}
.y5_c00295{bottom:987.000000px;}
.y4_c00295{bottom:1014.000000px;}
.y3_c00295{bottom:1041.000000px;}
.y2_c00295{bottom:1068.000000px;}
.y1_c00295{bottom:1095.000000px;}
.y1a_c00295{bottom:1194.000000px;}
.h6_c00295{height:33.652345px;}
.h5_c00295{height:44.208984px;}
.h7_c00295{height:50.478516px;}
.h1_c00295{height:51.257812px;}
.h4_c00295{height:56.074219px;}
.h3_c00295{height:56.100586px;}
.h2_c00295{height:57.258075px;}
.h0_c00295{height:1263.000000px;}
.w0_c00295{width:892.500000px;}
.x0_c00295{left:0.000000px;}
.x1_c00295{left:65.480310px;}
@media print{
.v3_c00295{vertical-align:-29.333333pt;}
.v2_c00295{vertical-align:-20.521067pt;}
.v0_c00295{vertical-align:0.000000pt;}
.v1_c00295{vertical-align:20.521067pt;}
.ls4_c00295{letter-spacing:0.000000pt;}
.ls2_c00295{letter-spacing:0.006933pt;}
.ls5_c00295{letter-spacing:0.010667pt;}
.ls1_c00295{letter-spacing:2.522133pt;}
.ls0_c00295{letter-spacing:3.203733pt;}
.ls3_c00295{letter-spacing:3.555555pt;}
.ws0_c00295{word-spacing:-17.600000pt;}
.ws1_c00295{word-spacing:0.000000pt;}
._12_c00295{margin-left:-9.408000pt;}
._16_c00295{margin-left:-6.118400pt;}
._1c_c00295{margin-left:-4.850133pt;}
._3_c00295{margin-left:-3.897600pt;}
._5_c00295{margin-left:-2.124800pt;}
._1_c00295{margin-left:-1.228800pt;}
._6_c00295{width:0.889600pt;}
._f_c00295{width:2.009600pt;}
._a_c00295{width:3.040000pt;}
._10_c00295{width:4.409600pt;}
._15_c00295{width:5.331200pt;}
._19_c00295{width:6.355200pt;}
._18_c00295{width:7.270400pt;}
._d_c00295{width:8.300800pt;}
._b_c00295{width:9.363200pt;}
._17_c00295{width:10.278400pt;}
._c_c00295{width:11.232000pt;}
._7_c00295{width:12.486400pt;}
._e_c00295{width:13.600000pt;}
._8_c00295{width:14.521600pt;}
._9_c00295{width:16.294400pt;}
._11_c00295{width:19.033600pt;}
._13_c00295{width:20.000000pt;}
._0_c00295{width:21.286400pt;}
._2_c00295{width:22.534400pt;}
._14_c00295{width:23.571200pt;}
._4_c00295{width:25.171200pt;}
._1b_c00295{width:27.078400pt;}
._1a_c00295{width:28.576000pt;}
.fs4_c00295{font-size:35.555557pt;}
.fs1_c00295{font-size:42.666667pt;}
.fs3_c00295{font-size:53.333333pt;}
.fs0_c00295{font-size:64.000000pt;}
.fs2_c00295{font-size:69.333333pt;}
.y0_c00295{bottom:0.000000pt;}
.y1b_c00295{bottom:60.000000pt;}
.y1f_c00295{bottom:117.333333pt;}
.y1e_c00295{bottom:142.000000pt;}
.y1d_c00295{bottom:178.666667pt;}
.y1c_c00295{bottom:203.333333pt;}
.y19_c00295{bottom:285.333333pt;}
.y18_c00295{bottom:309.333333pt;}
.y17_c00295{bottom:352.000000pt;}
.y16_c00295{bottom:376.000000pt;}
.y15_c00295{bottom:400.000000pt;}
.y14_c00295{bottom:424.000000pt;}
.y13_c00295{bottom:448.000000pt;}
.y12_c00295{bottom:489.333333pt;}
.y11_c00295{bottom:552.000000pt;}
.y10_c00295{bottom:576.000000pt;}
.yf_c00295{bottom:600.000000pt;}
.ye_c00295{bottom:642.666667pt;}
.yd_c00295{bottom:666.666667pt;}
.yc_c00295{bottom:690.666667pt;}
.yb_c00295{bottom:714.666667pt;}
.ya_c00295{bottom:738.666667pt;}
.y9_c00295{bottom:762.666667pt;}
.y8_c00295{bottom:786.666667pt;}
.y7_c00295{bottom:829.333333pt;}
.y6_c00295{bottom:853.333333pt;}
.y5_c00295{bottom:877.333333pt;}
.y4_c00295{bottom:901.333333pt;}
.y3_c00295{bottom:925.333333pt;}
.y2_c00295{bottom:949.333333pt;}
.y1_c00295{bottom:973.333333pt;}
.y1a_c00295{bottom:1061.333333pt;}
.h6_c00295{height:29.913196pt;}
.h5_c00295{height:39.296875pt;}
.h7_c00295{height:44.869792pt;}
.h1_c00295{height:45.562500pt;}
.h4_c00295{height:49.843750pt;}
.h3_c00295{height:49.867188pt;}
.h2_c00295{height:50.896067pt;}
.h0_c00295{height:1122.666667pt;}
.w0_c00295{width:793.333333pt;}
.x0_c00295{left:0.000000pt;}
.x1_c00295{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3cd93e5b355cf63489b67691.woff2')format("woff");}.ff1_c00296{font-family:ff1_c00296;line-height:1.163086;font-style:normal;font-weight:normal;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_c5efa6d720ae3e1a5e17f66c.woff2')format("woff");}.ff2_c00296{font-family:ff2_c00296;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00296;src:url('chunks/assets/font_8fa7138e2eee10cf775c9cd1.woff2')format("woff");}.ff3_c00296{font-family:ff3_c00296;line-height:1.155762;font-style:normal;font-weight:normal;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_13a7cb29b74eeb43c32f2e85.woff2')format("woff");}.ff4_c00296{font-family:ff4_c00296;line-height:1.112305;font-style:normal;font-weight:normal;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_7ef600c1e547cb311bfb7096.woff2')format("woff");}.ff5_c00296{font-family:ff5_c00296;line-height:0.678223;font-style: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);}
.v3_c00296{vertical-align:-33.000000px;}
.v2_c00296{vertical-align:-23.086200px;}
.v0_c00296{vertical-align:0.000000px;}
.v1_c00296{vertical-align:23.086200px;}
.ls3_c00296{letter-spacing:0.000000px;}
.ls1_c00296{letter-spacing:0.012000px;}
.ls2_c00296{letter-spacing:3.999999px;}
.ls0_c00296{letter-spacing:15.356400px;}
.sc__c00296{text-shadow:none;}
.sc0_c00296{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00296{-webkit-text-stroke:0px transparent;}
.sc0_c00296{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00296{word-spacing:0.000000px;}
._d_c00296{margin-left:-10.548000px;}
._11_c00296{margin-left:-7.293600px;}
._16_c00296{margin-left:-5.457600px;}
._c_c00296{margin-left:-3.945600px;}
._3_c00296{margin-left:-1.980000px;}
._9_c00296{width:1.396800px;}
._1_c00296{width:2.584800px;}
._5_c00296{width:3.772800px;}
._10_c00296{width:5.191200px;}
._12_c00296{width:6.321600px;}
._f_c00296{width:7.380000px;}
._e_c00296{width:9.331200px;}
._b_c00296{width:10.526400px;}
._13_c00296{width:11.556000px;}
._a_c00296{width:12.909600px;}
._8_c00296{width:14.284800px;}
._7_c00296{width:16.308000px;}
._6_c00296{width:17.344800px;}
._2_c00296{width:18.453600px;}
._0_c00296{width:21.067200px;}
._4_c00296{width:23.068800px;}
._14_c00296{width:25.430400px;}
._15_c00296{width:27.367200px;}
.fc0_c00296{color:rgb(0,0,0);}
.fs3_c00296{font-size:40.000002px;}
.fs1_c00296{font-size:48.000000px;}
.fs2_c00296{font-size:60.000000px;}
.fs0_c00296{font-size:72.000000px;}
.y0_c00296{bottom:0.000000px;}
.y20_c00296{bottom:67.500000px;}
.y22_c00296{bottom:132.000000px;}
.y21_c00296{bottom:159.750000px;}
.y1e_c00296{bottom:208.500000px;}
.y1d_c00296{bottom:235.500000px;}
.y1c_c00296{bottom:262.500000px;}
.y1b_c00296{bottom:289.500000px;}
.y1a_c00296{bottom:316.500000px;}
.y19_c00296{bottom:343.500000px;}
.y18_c00296{bottom:370.500000px;}
.y17_c00296{bottom:397.500000px;}
.y16_c00296{bottom:444.000000px;}
.y15_c00296{bottom:513.000000px;}
.y14_c00296{bottom:540.000000px;}
.y13_c00296{bottom:567.000000px;}
.y12_c00296{bottom:594.000000px;}
.y11_c00296{bottom:642.000000px;}
.y10_c00296{bottom:669.000000px;}
.yf_c00296{bottom:696.000000px;}
.ye_c00296{bottom:723.000000px;}
.yd_c00296{bottom:750.000000px;}
.yc_c00296{bottom:777.000000px;}
.yb_c00296{bottom:804.000000px;}
.ya_c00296{bottom:831.000000px;}
.y9_c00296{bottom:858.000000px;}
.y8_c00296{bottom:906.000000px;}
.y7_c00296{bottom:933.000000px;}
.y6_c00296{bottom:960.000000px;}
.y5_c00296{bottom:987.000000px;}
.y4_c00296{bottom:1014.000000px;}
.y3_c00296{bottom:1041.000000px;}
.y2_c00296{bottom:1068.000000px;}
.y1_c00296{bottom:1095.000000px;}
.y1f_c00296{bottom:1194.000000px;}
.h5_c00296{height:35.781252px;}
.h2_c00296{height:51.785156px;}
.h6_c00296{height:53.671875px;}
.h4_c00296{height:56.074219px;}
.h1_c00296{height:67.746094px;}
.h3_c00296{height:68.250262px;}
.h0_c00296{height:1263.000000px;}
.w0_c00296{width:892.500000px;}
.x0_c00296{left:0.000000px;}
.x1_c00296{left:150.519750px;}
.x2_c00296{left:416.782800px;}
.x3_c00296{left:801.992850px;}
@media print{
.v3_c00296{vertical-align:-29.333333pt;}
.v2_c00296{vertical-align:-20.521067pt;}
.v0_c00296{vertical-align:0.000000pt;}
.v1_c00296{vertical-align:20.521067pt;}
.ls3_c00296{letter-spacing:0.000000pt;}
.ls1_c00296{letter-spacing:0.010667pt;}
.ls2_c00296{letter-spacing:3.555555pt;}
.ls0_c00296{letter-spacing:13.650133pt;}
.ws0_c00296{word-spacing:0.000000pt;}
._d_c00296{margin-left:-9.376000pt;}
._11_c00296{margin-left:-6.483200pt;}
._16_c00296{margin-left:-4.851200pt;}
._c_c00296{margin-left:-3.507200pt;}
._3_c00296{margin-left:-1.760000pt;}
._9_c00296{width:1.241600pt;}
._1_c00296{width:2.297600pt;}
._5_c00296{width:3.353600pt;}
._10_c00296{width:4.614400pt;}
._12_c00296{width:5.619200pt;}
._f_c00296{width:6.560000pt;}
._e_c00296{width:8.294400pt;}
._b_c00296{width:9.356800pt;}
._13_c00296{width:10.272000pt;}
._a_c00296{width:11.475200pt;}
._8_c00296{width:12.697600pt;}
._7_c00296{width:14.496000pt;}
._6_c00296{width:15.417600pt;}
._2_c00296{width:16.403200pt;}
._0_c00296{width:18.726400pt;}
._4_c00296{width:20.505600pt;}
._14_c00296{width:22.604800pt;}
._15_c00296{width:24.326400pt;}
.fs3_c00296{font-size:35.555557pt;}
.fs1_c00296{font-size:42.666667pt;}
.fs2_c00296{font-size:53.333333pt;}
.fs0_c00296{font-size:64.000000pt;}
.y0_c00296{bottom:0.000000pt;}
.y20_c00296{bottom:60.000000pt;}
.y22_c00296{bottom:117.333333pt;}
.y21_c00296{bottom:142.000000pt;}
.y1e_c00296{bottom:185.333333pt;}
.y1d_c00296{bottom:209.333333pt;}
.y1c_c00296{bottom:233.333333pt;}
.y1b_c00296{bottom:257.333333pt;}
.y1a_c00296{bottom:281.333333pt;}
.y19_c00296{bottom:305.333333pt;}
.y18_c00296{bottom:329.333333pt;}
.y17_c00296{bottom:353.333333pt;}
.y16_c00296{bottom:394.666667pt;}
.y15_c00296{bottom:456.000000pt;}
.y14_c00296{bottom:480.000000pt;}
.y13_c00296{bottom:504.000000pt;}
.y12_c00296{bottom:528.000000pt;}
.y11_c00296{bottom:570.666667pt;}
.y10_c00296{bottom:594.666667pt;}
.yf_c00296{bottom:618.666667pt;}
.ye_c00296{bottom:642.666667pt;}
.yd_c00296{bottom:666.666667pt;}
.yc_c00296{bottom:690.666667pt;}
.yb_c00296{bottom:714.666667pt;}
.ya_c00296{bottom:738.666667pt;}
.y9_c00296{bottom:762.666667pt;}
.y8_c00296{bottom:805.333333pt;}
.y7_c00296{bottom:829.333333pt;}
.y6_c00296{bottom:853.333333pt;}
.y5_c00296{bottom:877.333333pt;}
.y4_c00296{bottom:901.333333pt;}
.y3_c00296{bottom:925.333333pt;}
.y2_c00296{bottom:949.333333pt;}
.y1_c00296{bottom:973.333333pt;}
.y1f_c00296{bottom:1061.333333pt;}
.h5_c00296{height:31.805557pt;}
.h2_c00296{height:46.031250pt;}
.h6_c00296{height:47.708333pt;}
.h4_c00296{height:49.843750pt;}
.h1_c00296{height:60.218750pt;}
.h3_c00296{height:60.666900pt;}
.h0_c00296{height:1122.666667pt;}
.w0_c00296{width:793.333333pt;}
.x0_c00296{left:0.000000pt;}
.x1_c00296{left:133.795333pt;}
.x2_c00296{left:370.473600pt;}
.x3_c00296{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_87bddfa9993d97dbbd01f636.woff2')format("woff");}.ff1_c00297{font-family:ff1_c00297;line-height:0.934082;font-style:normal;font-weight:normal;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_6a4829608d08e9400414f213.woff2')format("woff");}.ff2_c00297{font-family:ff2_c00297;line-height:0.987793;font-style:normal;font-weight:normal;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_0ca9ad3da7823ec2967e211a.woff2')format("woff");}.ff3_c00297{font-family:ff3_c00297;line-height:0.928223;font-style:normal;font-weight:normal;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_8edf78fccd27e518b6a52265.woff2')format("woff");}.ff4_c00297{font-family:ff4_c00297;line-height:0.756348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00297;src:url('chunks/assets/font_27c55bb6d4adfaa25ff38999.woff2')format("woff");}.ff5_c00297{font-family:ff5_c00297;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00297{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00297{vertical-align:0.000000px;}
.ls0_c00297{letter-spacing:0.000000px;}
.ls1_c00297{letter-spacing:0.012000px;}
.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;}
}
.ws0_c00297{word-spacing:0.000000px;}
._a_c00297{margin-left:-10.576800px;}
._b_c00297{margin-left:-7.848000px;}
._4_c00297{margin-left:-4.665600px;}
._6_c00297{margin-left:-2.786400px;}
._2_c00297{margin-left:-1.699200px;}
._0_c00297{width:1.447200px;}
._3_c00297{width:3.312000px;}
._7_c00297{width:4.442400px;}
._1_c00297{width:5.443200px;}
._c_c00297{width:6.688800px;}
._5_c00297{width:8.028000px;}
._8_c00297{width:9.504000px;}
._9_c00297{width:11.347200px;}
.fc0_c00297{color:rgb(0,0,0);}
.fs1_c00297{font-size:54.000000px;}
.fs2_c00297{font-size:60.000000px;}
.fs0_c00297{font-size:72.000000px;}
.y0_c00297{bottom:0.000000px;}
.y6_c00297{bottom:10.500000px;}
.y5_c00297{bottom:43.500000px;}
.yc_c00297{bottom:67.500000px;}
.ya_c00297{bottom:163.500000px;}
.y9_c00297{bottom:190.500000px;}
.y8_c00297{bottom:217.500000px;}
.y7_c00297{bottom:264.000000px;}
.y4_c00297{bottom:330.000000px;}
.y3_c00297{bottom:1041.000000px;}
.y2_c00297{bottom:1068.000000px;}
.y1_c00297{bottom:1095.000000px;}
.yb_c00297{bottom:1194.000000px;}
.h3_c00297{height:42.292969px;}
.h6_c00297{height:44.208984px;}
.h4_c00297{height:50.976562px;}
.h1_c00297{height:51.257812px;}
.h5_c00297{height:56.074219px;}
.h2_c00297{height:679.500000px;}
.h0_c00297{height:1263.000000px;}
.w1_c00297{width:676.500000px;}
.w0_c00297{width:892.500000px;}
.x0_c00297{left:0.000000px;}
.x1_c00297{left:65.480310px;}
.x3_c00297{left:107.247075px;}
.x2_c00297{left:136.557495px;}
@media print{
.v0_c00297{vertical-align:0.000000pt;}
.ls0_c00297{letter-spacing:0.000000pt;}
.ls1_c00297{letter-spacing:0.010667pt;}
.ws0_c00297{word-spacing:0.000000pt;}
._a_c00297{margin-left:-9.401600pt;}
._b_c00297{margin-left:-6.976000pt;}
._4_c00297{margin-left:-4.147200pt;}
._6_c00297{margin-left:-2.476800pt;}
._2_c00297{margin-left:-1.510400pt;}
._0_c00297{width:1.286400pt;}
._3_c00297{width:2.944000pt;}
._7_c00297{width:3.948800pt;}
._1_c00297{width:4.838400pt;}
._c_c00297{width:5.945600pt;}
._5_c00297{width:7.136000pt;}
._8_c00297{width:8.448000pt;}
._9_c00297{width:10.086400pt;}
.fs1_c00297{font-size:48.000000pt;}
.fs2_c00297{font-size:53.333333pt;}
.fs0_c00297{font-size:64.000000pt;}
.y0_c00297{bottom:0.000000pt;}
.y6_c00297{bottom:9.333333pt;}
.y5_c00297{bottom:38.666667pt;}
.yc_c00297{bottom:60.000000pt;}
.ya_c00297{bottom:145.333333pt;}
.y9_c00297{bottom:169.333333pt;}
.y8_c00297{bottom:193.333333pt;}
.y7_c00297{bottom:234.666667pt;}
.y4_c00297{bottom:293.333333pt;}
.y3_c00297{bottom:925.333333pt;}
.y2_c00297{bottom:949.333333pt;}
.y1_c00297{bottom:973.333333pt;}
.yb_c00297{bottom:1061.333333pt;}
.h3_c00297{height:37.593750pt;}
.h6_c00297{height:39.296875pt;}
.h4_c00297{height:45.312500pt;}
.h1_c00297{height:45.562500pt;}
.h5_c00297{height:49.843750pt;}
.h2_c00297{height:604.000000pt;}
.h0_c00297{height:1122.666667pt;}
.w1_c00297{width:601.333333pt;}
.w0_c00297{width:793.333333pt;}
.x0_c00297{left:0.000000pt;}
.x1_c00297{left:58.204720pt;}
.x3_c00297{left:95.330733pt;}
.x2_c00297{left:121.384440pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_163b29d910b3d6d46794e0a4.woff2')format("woff");}.ff1_c00298{font-family:ff1_c00298;line-height:0.933105;font-style:normal;font-weight:normal;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_4fa48b6a040bf6a3eaf75607.woff2')format("woff");}.ff2_c00298{font-family:ff2_c00298;line-height:0.987793;font-style:normal;font-weight:normal;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_43d3e1f4ff4e74e2050cd94c.woff2')format("woff");}.ff3_c00298{font-family:ff3_c00298;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00298{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00298{vertical-align:0.000000px;}
.ls2_c00298{letter-spacing:0.000000px;}
.ls1_c00298{letter-spacing:0.012000px;}
.ls0_c00298{letter-spacing:0.016200px;}
.sc__c00298{text-shadow:none;}
.sc0_c00298{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00298{-webkit-text-stroke:0px transparent;}
.sc0_c00298{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00298{word-spacing:0.000000px;}
._6_c00298{margin-left:-10.598400px;}
._d_c00298{margin-left:-6.667200px;}
._1_c00298{margin-left:-4.032000px;}
._7_c00298{margin-left:-2.260800px;}
._3_c00298{margin-left:-1.173600px;}
._2_c00298{width:1.101600px;}
._4_c00298{width:2.311200px;}
._9_c00298{width:3.384000px;}
._0_c00298{width:4.651200px;}
._b_c00298{width:5.846400px;}
._a_c00298{width:7.113600px;}
._5_c00298{width:8.114400px;}
._8_c00298{width:9.194400px;}
._c_c00298{width:10.764000px;}
._f_c00298{width:11.880000px;}
._10_c00298{width:12.981600px;}
._e_c00298{width:15.350400px;}
._11_c00298{width:17.560800px;}
.fc0_c00298{color:rgb(0,0,0);}
.fs1_c00298{font-size:54.000000px;}
.fs2_c00298{font-size:60.000000px;}
.fs0_c00298{font-size:72.000000px;}
.y0_c00298{bottom:0.000000px;}
.y5_c00298{bottom:12.000000px;}
.yb_c00298{bottom:67.500000px;}
.y9_c00298{bottom:148.500000px;}
.y8_c00298{bottom:609.000000px;}
.y7_c00298{bottom:636.000000px;}
.y6_c00298{bottom:663.000000px;}
.y4_c00298{bottom:708.000000px;}
.y3_c00298{bottom:1041.000000px;}
.y2_c00298{bottom:1068.000000px;}
.y1_c00298{bottom:1095.000000px;}
.ya_c00298{bottom:1194.000000px;}
.h3_c00298{height:42.292969px;}
.h1_c00298{height:51.187500px;}
.h5_c00298{height:56.074219px;}
.h2_c00298{height:301.500000px;}
.h4_c00298{height:429.000000px;}
.h0_c00298{height:1263.000000px;}
.w2_c00298{width:500.700000px;}
.w1_c00298{width:676.500000px;}
.w0_c00298{width:892.500000px;}
.x0_c00298{left:0.000000px;}
.x1_c00298{left:150.519750px;}
.x4_c00298{left:181.093350px;}
.x2_c00298{left:216.634650px;}
.x3_c00298{left:238.500000px;}
.x5_c00298{left:416.782800px;}
.x6_c00298{left:801.992850px;}
@media print{
.v0_c00298{vertical-align:0.000000pt;}
.ls2_c00298{letter-spacing:0.000000pt;}
.ls1_c00298{letter-spacing:0.010667pt;}
.ls0_c00298{letter-spacing:0.014400pt;}
.ws0_c00298{word-spacing:0.000000pt;}
._6_c00298{margin-left:-9.420800pt;}
._d_c00298{margin-left:-5.926400pt;}
._1_c00298{margin-left:-3.584000pt;}
._7_c00298{margin-left:-2.009600pt;}
._3_c00298{margin-left:-1.043200pt;}
._2_c00298{width:0.979200pt;}
._4_c00298{width:2.054400pt;}
._9_c00298{width:3.008000pt;}
._0_c00298{width:4.134400pt;}
._b_c00298{width:5.196800pt;}
._a_c00298{width:6.323200pt;}
._5_c00298{width:7.212800pt;}
._8_c00298{width:8.172800pt;}
._c_c00298{width:9.568000pt;}
._f_c00298{width:10.560000pt;}
._10_c00298{width:11.539200pt;}
._e_c00298{width:13.644800pt;}
._11_c00298{width:15.609600pt;}
.fs1_c00298{font-size:48.000000pt;}
.fs2_c00298{font-size:53.333333pt;}
.fs0_c00298{font-size:64.000000pt;}
.y0_c00298{bottom:0.000000pt;}
.y5_c00298{bottom:10.666667pt;}
.yb_c00298{bottom:60.000000pt;}
.y9_c00298{bottom:132.000000pt;}
.y8_c00298{bottom:541.333333pt;}
.y7_c00298{bottom:565.333333pt;}
.y6_c00298{bottom:589.333333pt;}
.y4_c00298{bottom:629.333333pt;}
.y3_c00298{bottom:925.333333pt;}
.y2_c00298{bottom:949.333333pt;}
.y1_c00298{bottom:973.333333pt;}
.ya_c00298{bottom:1061.333333pt;}
.h3_c00298{height:37.593750pt;}
.h1_c00298{height:45.500000pt;}
.h5_c00298{height:49.843750pt;}
.h2_c00298{height:268.000000pt;}
.h4_c00298{height:381.333333pt;}
.h0_c00298{height:1122.666667pt;}
.w2_c00298{width:445.066667pt;}
.w1_c00298{width:601.333333pt;}
.w0_c00298{width:793.333333pt;}
.x0_c00298{left:0.000000pt;}
.x1_c00298{left:133.795333pt;}
.x4_c00298{left:160.971867pt;}
.x2_c00298{left:192.564133pt;}
.x3_c00298{left:212.000000pt;}
.x5_c00298{left:370.473600pt;}
.x6_c00298{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7fcfcd59d0d255062e19fb0f.woff2')format("woff");}.ff1_c00299{font-family:ff1_c00299;line-height:0.801270;font-style:normal;font-weight:normal;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_1c232bda9bc552e091514934.woff2')format("woff");}.ff2_c00299{font-family:ff2_c00299;line-height:0.934082;font-style:normal;font-weight:normal;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_6432a6919177c069a06fb731.woff2')format("woff");}.ff3_c00299{font-family:ff3_c00299;line-height:0.756348;font-style:normal;font-weight:normal;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_f7329ad011d2803eeac5af88.woff2')format("woff");}.ff4_c00299{font-family:ff4_c00299;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00299{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00299{vertical-align:0.000000px;}
.ls0_c00299{letter-spacing:0.000000px;}
.ls1_c00299{letter-spacing:0.012000px;}
.sc__c00299{text-shadow:none;}
.sc0_c00299{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00299{-webkit-text-stroke:0px transparent;}
.sc0_c00299{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00299{word-spacing:0.000000px;}
._8_c00299{margin-left:-10.584000px;}
._6_c00299{margin-left:-5.378400px;}
._c_c00299{margin-left:-3.909600px;}
._3_c00299{margin-left:-2.779200px;}
._5_c00299{margin-left:-1.605600px;}
._1_c00299{width:1.972800px;}
._2_c00299{width:3.556800px;}
._0_c00299{width:4.874400px;}
._7_c00299{width:6.580800px;}
._4_c00299{width:8.013600px;}
._a_c00299{width:9.518400px;}
._9_c00299{width:10.944000px;}
._b_c00299{width:13.032000px;}
.fc0_c00299{color:rgb(0,0,0);}
.fs0_c00299{font-size:54.000000px;}
.fs2_c00299{font-size:60.000000px;}
.fs1_c00299{font-size:72.000000px;}
.y0_c00299{bottom:0.000000px;}
.y2_c00299{bottom:12.000000px;}
.yd_c00299{bottom:67.500000px;}
.yb_c00299{bottom:132.000000px;}
.ya_c00299{bottom:159.000000px;}
.y9_c00299{bottom:186.000000px;}
.y8_c00299{bottom:231.000000px;}
.y7_c00299{bottom:628.500000px;}
.y6_c00299{bottom:655.500000px;}
.y5_c00299{bottom:703.500000px;}
.y4_c00299{bottom:730.500000px;}
.y3_c00299{bottom:757.500000px;}
.y1_c00299{bottom:802.500000px;}
.yc_c00299{bottom:1194.000000px;}
.h2_c00299{height:42.292969px;}
.h6_c00299{height:44.208984px;}
.h3_c00299{height:51.257812px;}
.h5_c00299{height:56.074219px;}
.h1_c00299{height:310.500000px;}
.h4_c00299{height:366.000000px;}
.h0_c00299{height:1263.000000px;}
.w1_c00299{width:676.500000px;}
.w0_c00299{width:892.500000px;}
.x0_c00299{left:0.000000px;}
.x1_c00299{left:66.000000px;}
.x2_c00299{left:199.153200px;}
.x3_c00299{left:239.696100px;}
@media print{
.v0_c00299{vertical-align:0.000000pt;}
.ls0_c00299{letter-spacing:0.000000pt;}
.ls1_c00299{letter-spacing:0.010667pt;}
.ws0_c00299{word-spacing:0.000000pt;}
._8_c00299{margin-left:-9.408000pt;}
._6_c00299{margin-left:-4.780800pt;}
._c_c00299{margin-left:-3.475200pt;}
._3_c00299{margin-left:-2.470400pt;}
._5_c00299{margin-left:-1.427200pt;}
._1_c00299{width:1.753600pt;}
._2_c00299{width:3.161600pt;}
._0_c00299{width:4.332800pt;}
._7_c00299{width:5.849600pt;}
._4_c00299{width:7.123200pt;}
._a_c00299{width:8.460800pt;}
._9_c00299{width:9.728000pt;}
._b_c00299{width:11.584000pt;}
.fs0_c00299{font-size:48.000000pt;}
.fs2_c00299{font-size:53.333333pt;}
.fs1_c00299{font-size:64.000000pt;}
.y0_c00299{bottom:0.000000pt;}
.y2_c00299{bottom:10.666667pt;}
.yd_c00299{bottom:60.000000pt;}
.yb_c00299{bottom:117.333333pt;}
.ya_c00299{bottom:141.333333pt;}
.y9_c00299{bottom:165.333333pt;}
.y8_c00299{bottom:205.333333pt;}
.y7_c00299{bottom:558.666667pt;}
.y6_c00299{bottom:582.666667pt;}
.y5_c00299{bottom:625.333333pt;}
.y4_c00299{bottom:649.333333pt;}
.y3_c00299{bottom:673.333333pt;}
.y1_c00299{bottom:713.333333pt;}
.yc_c00299{bottom:1061.333333pt;}
.h2_c00299{height:37.593750pt;}
.h6_c00299{height:39.296875pt;}
.h3_c00299{height:45.562500pt;}
.h5_c00299{height:49.843750pt;}
.h1_c00299{height:276.000000pt;}
.h4_c00299{height:325.333333pt;}
.h0_c00299{height:1122.666667pt;}
.w1_c00299{width:601.333333pt;}
.w0_c00299{width:793.333333pt;}
.x0_c00299{left:0.000000pt;}
.x1_c00299{left:58.666667pt;}
.x2_c00299{left:177.025067pt;}
.x3_c00299{left:213.063200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6bf3d94d22de5b4824cb7db4.woff2')format("woff");}.ff1_c00300{font-family:ff1_c00300;line-height:0.987793;font-style:normal;font-weight:normal;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_19932e3df69954277f1eb7da.woff2')format("woff");}.ff2_c00300{font-family:ff2_c00300;line-height:0.934082;font-style:normal;font-weight:normal;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_6304e858c47dfac8724ec8f7.woff2')format("woff");}.ff3_c00300{font-family:ff3_c00300;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00300{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00300{vertical-align:0.000000px;}
.ls1_c00300{letter-spacing:0.000000px;}
.ls0_c00300{letter-spacing:0.012000px;}
.sc__c00300{text-shadow:none;}
.sc0_c00300{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00300{-webkit-text-stroke:0px transparent;}
.sc0_c00300{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00300{word-spacing:-19.800000px;}
.ws1_c00300{word-spacing:0.000000px;}
._10_c00300{margin-left:-4.209600px;}
._4_c00300{margin-left:-2.858400px;}
._2_c00300{margin-left:-1.814400px;}
._6_c00300{width:1.368000px;}
._1_c00300{width:2.995200px;}
._0_c00300{width:4.996800px;}
._7_c00300{width:6.645600px;}
._8_c00300{width:7.977600px;}
._3_c00300{width:9.792000px;}
._5_c00300{width:10.864800px;}
._a_c00300{width:12.031200px;}
._b_c00300{width:13.060800px;}
._c_c00300{width:14.450400px;}
._d_c00300{width:15.861600px;}
._9_c00300{width:17.330400px;}
._f_c00300{width:21.924000px;}
._e_c00300{width:23.306400px;}
.fc0_c00300{color:rgb(0,0,0);}
.fs0_c00300{font-size:54.000000px;}
.fs2_c00300{font-size:60.000000px;}
.fs1_c00300{font-size:72.000000px;}
.y0_c00300{bottom:0.000000px;}
.y2_c00300{bottom:12.000000px;}
.y8_c00300{bottom:13.500000px;}
.yd_c00300{bottom:67.500000px;}
.yb_c00300{bottom:138.000000px;}
.ya_c00300{bottom:165.000000px;}
.y9_c00300{bottom:192.000000px;}
.y7_c00300{bottom:237.000000px;}
.y6_c00300{bottom:549.000000px;}
.y5_c00300{bottom:576.000000px;}
.y4_c00300{bottom:603.000000px;}
.y3_c00300{bottom:630.000000px;}
.y1_c00300{bottom:675.000000px;}
.yc_c00300{bottom:1194.000000px;}
.h2_c00300{height:42.292969px;}
.h3_c00300{height:51.257812px;}
.h5_c00300{height:56.074219px;}
.h4_c00300{height:280.500000px;}
.h1_c00300{height:438.000000px;}
.h0_c00300{height:1263.000000px;}
.w1_c00300{width:676.500000px;}
.w0_c00300{width:892.500000px;}
.x0_c00300{left:0.000000px;}
.x3_c00300{left:79.897680px;}
.x1_c00300{left:150.000000px;}
.x2_c00300{left:201.809700px;}
.x4_c00300{left:416.782800px;}
.x5_c00300{left:801.992850px;}
@media print{
.v0_c00300{vertical-align:0.000000pt;}
.ls1_c00300{letter-spacing:0.000000pt;}
.ls0_c00300{letter-spacing:0.010667pt;}
.ws0_c00300{word-spacing:-17.600000pt;}
.ws1_c00300{word-spacing:0.000000pt;}
._10_c00300{margin-left:-3.741867pt;}
._4_c00300{margin-left:-2.540800pt;}
._2_c00300{margin-left:-1.612800pt;}
._6_c00300{width:1.216000pt;}
._1_c00300{width:2.662400pt;}
._0_c00300{width:4.441600pt;}
._7_c00300{width:5.907200pt;}
._8_c00300{width:7.091200pt;}
._3_c00300{width:8.704000pt;}
._5_c00300{width:9.657600pt;}
._a_c00300{width:10.694400pt;}
._b_c00300{width:11.609600pt;}
._c_c00300{width:12.844800pt;}
._d_c00300{width:14.099200pt;}
._9_c00300{width:15.404800pt;}
._f_c00300{width:19.488000pt;}
._e_c00300{width:20.716800pt;}
.fs0_c00300{font-size:48.000000pt;}
.fs2_c00300{font-size:53.333333pt;}
.fs1_c00300{font-size:64.000000pt;}
.y0_c00300{bottom:0.000000pt;}
.y2_c00300{bottom:10.666667pt;}
.y8_c00300{bottom:12.000000pt;}
.yd_c00300{bottom:60.000000pt;}
.yb_c00300{bottom:122.666667pt;}
.ya_c00300{bottom:146.666667pt;}
.y9_c00300{bottom:170.666667pt;}
.y7_c00300{bottom:210.666667pt;}
.y6_c00300{bottom:488.000000pt;}
.y5_c00300{bottom:512.000000pt;}
.y4_c00300{bottom:536.000000pt;}
.y3_c00300{bottom:560.000000pt;}
.y1_c00300{bottom:600.000000pt;}
.yc_c00300{bottom:1061.333333pt;}
.h2_c00300{height:37.593750pt;}
.h3_c00300{height:45.562500pt;}
.h5_c00300{height:49.843750pt;}
.h4_c00300{height:249.333333pt;}
.h1_c00300{height:389.333333pt;}
.h0_c00300{height:1122.666667pt;}
.w1_c00300{width:601.333333pt;}
.w0_c00300{width:793.333333pt;}
.x0_c00300{left:0.000000pt;}
.x3_c00300{left:71.020160pt;}
.x1_c00300{left:133.333333pt;}
.x2_c00300{left:179.386400pt;}
.x4_c00300{left:370.473600pt;}
.x5_c00300{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_135eeeb9ee25b5b506f379bd.woff2')format("woff");}.ff1_c00301{font-family:ff1_c00301;line-height:0.936035;font-style:normal;font-weight:normal;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_237e911b18d98bcfc972bd8c.woff2')format("woff");}.ff2_c00301{font-family:ff2_c00301;line-height:0.934082;font-style:normal;font-weight:normal;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_88332af9d65f1d44bcb9a8ca.woff2')format("woff");}.ff3_c00301{font-family:ff3_c00301;line-height:1.144531;font-style:normal;font-weight:normal;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_b5aa45abf70db97ced33094e.woff2')format("woff");}.ff4_c00301{font-family:ff4_c00301;line-height:0.756836;font-style:normal;font-weight:normal;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_6fcb87d745721f745bf8f3e2.woff2')format("woff");}.ff5_c00301{font-family:ff5_c00301;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00301{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00301{vertical-align:0.000000px;}
.ls0_c00301{letter-spacing:0.000000px;}
.ls1_c00301{letter-spacing:0.007200px;}
.ls2_c00301{letter-spacing:0.012000px;}
.sc__c00301{text-shadow:none;}
.sc0_c00301{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00301{-webkit-text-stroke:0px transparent;}
.sc0_c00301{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00301{word-spacing:0.000000px;}
._11_c00301{margin-left:-10.504800px;}
._13_c00301{margin-left:-7.120800px;}
._6_c00301{margin-left:-4.780800px;}
._3_c00301{margin-left:-2.973600px;}
._0_c00301{margin-left:-1.490400px;}
._5_c00301{width:1.612800px;}
._2_c00301{width:3.160800px;}
._1_c00301{width:4.644000px;}
._4_c00301{width:6.192000px;}
._12_c00301{width:8.114400px;}
._b_c00301{width:10.108800px;}
._7_c00301{width:11.599200px;}
._9_c00301{width:13.204800px;}
._8_c00301{width:14.731200px;}
._a_c00301{width:16.164000px;}
._15_c00301{width:17.632800px;}
._14_c00301{width:18.655200px;}
._16_c00301{width:21.254400px;}
._e_c00301{width:31.075200px;}
._10_c00301{width:32.508000px;}
._d_c00301{width:34.077600px;}
._f_c00301{width:35.625600px;}
._c_c00301{width:37.144800px;}
.fc0_c00301{color:rgb(0,0,0);}
.fs1_c00301{font-size:54.000000px;}
.fs2_c00301{font-size:60.000000px;}
.fs0_c00301{font-size:72.000000px;}
.y0_c00301{bottom:0.000000px;}
.yd_c00301{bottom:12.000000px;}
.yc_c00301{bottom:36.000000px;}
.y17_c00301{bottom:67.500000px;}
.y15_c00301{bottom:168.000000px;}
.y14_c00301{bottom:195.000000px;}
.y13_c00301{bottom:222.000000px;}
.y12_c00301{bottom:270.000000px;}
.y11_c00301{bottom:297.000000px;}
.y10_c00301{bottom:324.000000px;}
.yf_c00301{bottom:351.000000px;}
.ye_c00301{bottom:378.000000px;}
.yb_c00301{bottom:423.000000px;}
.ya_c00301{bottom:807.000000px;}
.y9_c00301{bottom:834.000000px;}
.y8_c00301{bottom:861.000000px;}
.y7_c00301{bottom:909.000000px;}
.y6_c00301{bottom:936.000000px;}
.y5_c00301{bottom:963.000000px;}
.y4_c00301{bottom:990.000000px;}
.y3_c00301{bottom:1017.000000px;}
.y2_c00301{bottom:1044.000000px;}
.y1_c00301{bottom:1095.000000px;}
.y16_c00301{bottom:1194.000000px;}
.h6_c00301{height:44.208984px;}
.h4_c00301{height:50.756836px;}
.h2_c00301{height:51.257812px;}
.h1_c00301{height:51.539062px;}
.h5_c00301{height:56.074219px;}
.h3_c00301{height:352.500000px;}
.h0_c00301{height:1263.000000px;}
.w1_c00301{width:676.500000px;}
.w0_c00301{width:892.500000px;}
.x0_c00301{left:0.000000px;}
.x2_c00301{left:7.500000px;}
.x1_c00301{left:65.480310px;}
@media print{
.v0_c00301{vertical-align:0.000000pt;}
.ls0_c00301{letter-spacing:0.000000pt;}
.ls1_c00301{letter-spacing:0.006400pt;}
.ls2_c00301{letter-spacing:0.010667pt;}
.ws0_c00301{word-spacing:0.000000pt;}
._11_c00301{margin-left:-9.337600pt;}
._13_c00301{margin-left:-6.329600pt;}
._6_c00301{margin-left:-4.249600pt;}
._3_c00301{margin-left:-2.643200pt;}
._0_c00301{margin-left:-1.324800pt;}
._5_c00301{width:1.433600pt;}
._2_c00301{width:2.809600pt;}
._1_c00301{width:4.128000pt;}
._4_c00301{width:5.504000pt;}
._12_c00301{width:7.212800pt;}
._b_c00301{width:8.985600pt;}
._7_c00301{width:10.310400pt;}
._9_c00301{width:11.737600pt;}
._8_c00301{width:13.094400pt;}
._a_c00301{width:14.368000pt;}
._15_c00301{width:15.673600pt;}
._14_c00301{width:16.582400pt;}
._16_c00301{width:18.892800pt;}
._e_c00301{width:27.622400pt;}
._10_c00301{width:28.896000pt;}
._d_c00301{width:30.291200pt;}
._f_c00301{width:31.667200pt;}
._c_c00301{width:33.017600pt;}
.fs1_c00301{font-size:48.000000pt;}
.fs2_c00301{font-size:53.333333pt;}
.fs0_c00301{font-size:64.000000pt;}
.y0_c00301{bottom:0.000000pt;}
.yd_c00301{bottom:10.666667pt;}
.yc_c00301{bottom:32.000000pt;}
.y17_c00301{bottom:60.000000pt;}
.y15_c00301{bottom:149.333333pt;}
.y14_c00301{bottom:173.333333pt;}
.y13_c00301{bottom:197.333333pt;}
.y12_c00301{bottom:240.000000pt;}
.y11_c00301{bottom:264.000000pt;}
.y10_c00301{bottom:288.000000pt;}
.yf_c00301{bottom:312.000000pt;}
.ye_c00301{bottom:336.000000pt;}
.yb_c00301{bottom:376.000000pt;}
.ya_c00301{bottom:717.333333pt;}
.y9_c00301{bottom:741.333333pt;}
.y8_c00301{bottom:765.333333pt;}
.y7_c00301{bottom:808.000000pt;}
.y6_c00301{bottom:832.000000pt;}
.y5_c00301{bottom:856.000000pt;}
.y4_c00301{bottom:880.000000pt;}
.y3_c00301{bottom:904.000000pt;}
.y2_c00301{bottom:928.000000pt;}
.y1_c00301{bottom:973.333333pt;}
.y16_c00301{bottom:1061.333333pt;}
.h6_c00301{height:39.296875pt;}
.h4_c00301{height:45.117188pt;}
.h2_c00301{height:45.562500pt;}
.h1_c00301{height:45.812500pt;}
.h5_c00301{height:49.843750pt;}
.h3_c00301{height:313.333333pt;}
.h0_c00301{height:1122.666667pt;}
.w1_c00301{width:601.333333pt;}
.w0_c00301{width:793.333333pt;}
.x0_c00301{left:0.000000pt;}
.x2_c00301{left:6.666667pt;}
.x1_c00301{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ff4bee9278dd3de31983c133.woff2')format("woff");}.ff1_c00302{font-family:ff1_c00302;line-height:1.144531;font-style:normal;font-weight:normal;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_394c69d900982f47e55d3edc.woff2')format("woff");}.ff2_c00302{font-family:ff2_c00302;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00302{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00302{vertical-align:0.000000px;}
.ls2_c00302{letter-spacing:-0.005400px;}
.ls1_c00302{letter-spacing:0.000000px;}
.ls0_c00302{letter-spacing:0.012000px;}
.sc__c00302{text-shadow:none;}
.sc0_c00302{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00302{-webkit-text-stroke:0px transparent;}
.sc0_c00302{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00302{word-spacing:0.000000px;}
._0_c00302{margin-left:-3.426000px;}
.fc0_c00302{color:rgb(0,0,0);}
.fs0_c00302{font-size:54.000000px;}
.fs1_c00302{font-size:60.000000px;}
.y0_c00302{bottom:0.000000px;}
.y3_c00302{bottom:10.500000px;}
.y5_c00302{bottom:12.000000px;}
.y2_c00302{bottom:28.500000px;}
.y7_c00302{bottom:67.500000px;}
.y4_c00302{bottom:159.000000px;}
.y1_c00302{bottom:747.000000px;}
.y6_c00302{bottom:1194.000000px;}
.h2_c00302{height:50.756836px;}
.h4_c00302{height:56.074219px;}
.h1_c00302{height:366.000000px;}
.h3_c00302{height:559.500000px;}
.h0_c00302{height:1263.000000px;}
.w1_c00302{width:577.500000px;}
.w2_c00302{width:676.500000px;}
.w0_c00302{width:892.500000px;}
.x0_c00302{left:0.000000px;}
.x2_c00302{left:14.534546px;}
.x3_c00302{left:75.376830px;}
.x4_c00302{left:150.000000px;}
.x1_c00302{left:199.500000px;}
.x5_c00302{left:273.225150px;}
.x6_c00302{left:416.782800px;}
.x7_c00302{left:801.992850px;}
@media print{
.v0_c00302{vertical-align:0.000000pt;}
.ls2_c00302{letter-spacing:-0.004800pt;}
.ls1_c00302{letter-spacing:0.000000pt;}
.ls0_c00302{letter-spacing:0.010667pt;}
.ws0_c00302{word-spacing:0.000000pt;}
._0_c00302{margin-left:-3.045333pt;}
.fs0_c00302{font-size:48.000000pt;}
.fs1_c00302{font-size:53.333333pt;}
.y0_c00302{bottom:0.000000pt;}
.y3_c00302{bottom:9.333333pt;}
.y5_c00302{bottom:10.666667pt;}
.y2_c00302{bottom:25.333333pt;}
.y7_c00302{bottom:60.000000pt;}
.y4_c00302{bottom:141.333333pt;}
.y1_c00302{bottom:664.000000pt;}
.y6_c00302{bottom:1061.333333pt;}
.h2_c00302{height:45.117188pt;}
.h4_c00302{height:49.843750pt;}
.h1_c00302{height:325.333333pt;}
.h3_c00302{height:497.333333pt;}
.h0_c00302{height:1122.666667pt;}
.w1_c00302{width:513.333333pt;}
.w2_c00302{width:601.333333pt;}
.w0_c00302{width:793.333333pt;}
.x0_c00302{left:0.000000pt;}
.x2_c00302{left:12.919596pt;}
.x3_c00302{left:67.001627pt;}
.x4_c00302{left:133.333333pt;}
.x1_c00302{left:177.333333pt;}
.x5_c00302{left:242.866800pt;}
.x6_c00302{left:370.473600pt;}
.x7_c00302{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_97a73c39694040f56f8628ef.woff2')format("woff");}.ff1_c00303{font-family:ff1_c00303;line-height:0.931152;font-style:normal;font-weight:normal;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_17879d3a5faeb8941233b4ba.woff2')format("woff");}.ff2_c00303{font-family:ff2_c00303;line-height:1.144531;font-style:normal;font-weight:normal;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_9239599462487a5893d40841.woff2')format("woff");}.ff3_c00303{font-family:ff3_c00303;line-height:0.755859;font-style:normal;font-weight:normal;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_93f5357b7c85425a38248a7d.woff2')format("woff");}.ff4_c00303{font-family:ff4_c00303;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00303{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00303{vertical-align:0.000000px;}
.ls1_c00303{letter-spacing:-0.005400px;}
.ls0_c00303{letter-spacing:0.000000px;}
.ls2_c00303{letter-spacing:0.012000px;}
.sc__c00303{text-shadow:none;}
.sc0_c00303{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00303{-webkit-text-stroke:0px transparent;}
.sc0_c00303{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00303{word-spacing:0.000000px;}
._e_c00303{margin-left:-6.667200px;}
._7_c00303{margin-left:-3.715200px;}
._1_c00303{margin-left:-1.915200px;}
._5_c00303{width:1.749600px;}
._a_c00303{width:3.060000px;}
._3_c00303{width:4.118400px;}
._9_c00303{width:5.270400px;}
._b_c00303{width:7.329600px;}
._c_c00303{width:9.252000px;}
._f_c00303{width:10.296000px;}
._10_c00303{width:11.894400px;}
._d_c00303{width:13.500000px;}
._13_c00303{width:16.149600px;}
._12_c00303{width:17.704800px;}
._14_c00303{width:21.758400px;}
._11_c00303{width:22.939200px;}
._4_c00303{width:26.935200px;}
._6_c00303{width:29.325600px;}
._0_c00303{width:31.039200px;}
._2_c00303{width:33.062400px;}
._8_c00303{width:34.732800px;}
.fc0_c00303{color:rgb(0,0,0);}
.fs1_c00303{font-size:54.000000px;}
.fs2_c00303{font-size:60.000000px;}
.fs0_c00303{font-size:72.000000px;}
.y0_c00303{bottom:0.000000px;}
.y7_c00303{bottom:12.000000px;}
.yb_c00303{bottom:67.500000px;}
.y9_c00303{bottom:133.500000px;}
.y8_c00303{bottom:160.500000px;}
.y6_c00303{bottom:205.500000px;}
.y5_c00303{bottom:987.000000px;}
.y4_c00303{bottom:1014.000000px;}
.y3_c00303{bottom:1041.000000px;}
.y2_c00303{bottom:1068.000000px;}
.y1_c00303{bottom:1095.000000px;}
.ya_c00303{bottom:1194.000000px;}
.h5_c00303{height:44.208984px;}
.h3_c00303{height:50.756836px;}
.h1_c00303{height:51.187500px;}
.h4_c00303{height:56.074219px;}
.h2_c00303{height:750.000000px;}
.h0_c00303{height:1263.000000px;}
.w1_c00303{width:676.500000px;}
.w0_c00303{width:892.500000px;}
.x0_c00303{left:0.000000px;}
.x1_c00303{left:65.480310px;}
.x2_c00303{left:281.151900px;}
@media print{
.v0_c00303{vertical-align:0.000000pt;}
.ls1_c00303{letter-spacing:-0.004800pt;}
.ls0_c00303{letter-spacing:0.000000pt;}
.ls2_c00303{letter-spacing:0.010667pt;}
.ws0_c00303{word-spacing:0.000000pt;}
._e_c00303{margin-left:-5.926400pt;}
._7_c00303{margin-left:-3.302400pt;}
._1_c00303{margin-left:-1.702400pt;}
._5_c00303{width:1.555200pt;}
._a_c00303{width:2.720000pt;}
._3_c00303{width:3.660800pt;}
._9_c00303{width:4.684800pt;}
._b_c00303{width:6.515200pt;}
._c_c00303{width:8.224000pt;}
._f_c00303{width:9.152000pt;}
._10_c00303{width:10.572800pt;}
._d_c00303{width:12.000000pt;}
._13_c00303{width:14.355200pt;}
._12_c00303{width:15.737600pt;}
._14_c00303{width:19.340800pt;}
._11_c00303{width:20.390400pt;}
._4_c00303{width:23.942400pt;}
._6_c00303{width:26.067200pt;}
._0_c00303{width:27.590400pt;}
._2_c00303{width:29.388800pt;}
._8_c00303{width:30.873600pt;}
.fs1_c00303{font-size:48.000000pt;}
.fs2_c00303{font-size:53.333333pt;}
.fs0_c00303{font-size:64.000000pt;}
.y0_c00303{bottom:0.000000pt;}
.y7_c00303{bottom:10.666667pt;}
.yb_c00303{bottom:60.000000pt;}
.y9_c00303{bottom:118.666667pt;}
.y8_c00303{bottom:142.666667pt;}
.y6_c00303{bottom:182.666667pt;}
.y5_c00303{bottom:877.333333pt;}
.y4_c00303{bottom:901.333333pt;}
.y3_c00303{bottom:925.333333pt;}
.y2_c00303{bottom:949.333333pt;}
.y1_c00303{bottom:973.333333pt;}
.ya_c00303{bottom:1061.333333pt;}
.h5_c00303{height:39.296875pt;}
.h3_c00303{height:45.117188pt;}
.h1_c00303{height:45.500000pt;}
.h4_c00303{height:49.843750pt;}
.h2_c00303{height:666.666667pt;}
.h0_c00303{height:1122.666667pt;}
.w1_c00303{width:601.333333pt;}
.w0_c00303{width:793.333333pt;}
.x0_c00303{left:0.000000pt;}
.x1_c00303{left:58.204720pt;}
.x2_c00303{left:249.912800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5e3c9ca60ebbda397362998e.woff2')format("woff");}.ff1_c00304{font-family:ff1_c00304;line-height:0.933105;font-style:normal;font-weight:normal;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_d55c7124c2fc24ac3f59b17d.woff2')format("woff");}.ff2_c00304{font-family:ff2_c00304;line-height:0.987793;font-style:normal;font-weight:normal;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_3d841a1762da969c48a28f91.woff2')format("woff");}.ff3_c00304{font-family:ff3_c00304;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00304{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00304{vertical-align:0.000000px;}
.ls1_c00304{letter-spacing:0.000000px;}
.ls0_c00304{letter-spacing:0.012000px;}
.sc__c00304{text-shadow:none;}
.sc0_c00304{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00304{-webkit-text-stroke:0px transparent;}
.sc0_c00304{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00304{word-spacing:-19.800000px;}
.ws1_c00304{word-spacing:0.000000px;}
._4_c00304{margin-left:-4.780800px;}
._8_c00304{margin-left:-3.528000px;}
._0_c00304{margin-left:-2.476800px;}
._3_c00304{margin-left:-1.375200px;}
._2_c00304{width:1.094400px;}
._1_c00304{width:2.800800px;}
._5_c00304{width:4.651200px;}
._6_c00304{width:5.788800px;}
._7_c00304{width:7.581600px;}
._9_c00304{width:16.300800px;}
._b_c00304{width:18.453600px;}
._a_c00304{width:21.981600px;}
.fc0_c00304{color:rgb(0,0,0);}
.fs1_c00304{font-size:54.000000px;}
.fs2_c00304{font-size:60.000000px;}
.fs0_c00304{font-size:72.000000px;}
.y0_c00304{bottom:0.000000px;}
.ya_c00304{bottom:12.000000px;}
.y4_c00304{bottom:13.500000px;}
.yc_c00304{bottom:67.500000px;}
.y9_c00304{bottom:142.500000px;}
.y8_c00304{bottom:529.500000px;}
.y7_c00304{bottom:556.500000px;}
.y6_c00304{bottom:583.500000px;}
.y5_c00304{bottom:610.500000px;}
.y3_c00304{bottom:655.500000px;}
.y2_c00304{bottom:1068.000000px;}
.y1_c00304{bottom:1095.000000px;}
.yb_c00304{bottom:1194.000000px;}
.h3_c00304{height:42.292969px;}
.h1_c00304{height:51.187500px;}
.h5_c00304{height:56.074219px;}
.h4_c00304{height:355.500000px;}
.h2_c00304{height:381.000000px;}
.h0_c00304{height:1263.000000px;}
.w2_c00304{width:660.000000px;}
.w1_c00304{width:676.500000px;}
.w0_c00304{width:892.500000px;}
.x0_c00304{left:0.000000px;}
.x2_c00304{left:125.305305px;}
.x1_c00304{left:150.519750px;}
.x3_c00304{left:159.000000px;}
.x4_c00304{left:207.768300px;}
.x5_c00304{left:416.782800px;}
.x6_c00304{left:801.992850px;}
@media print{
.v0_c00304{vertical-align:0.000000pt;}
.ls1_c00304{letter-spacing:0.000000pt;}
.ls0_c00304{letter-spacing:0.010667pt;}
.ws0_c00304{word-spacing:-17.600000pt;}
.ws1_c00304{word-spacing:0.000000pt;}
._4_c00304{margin-left:-4.249600pt;}
._8_c00304{margin-left:-3.136000pt;}
._0_c00304{margin-left:-2.201600pt;}
._3_c00304{margin-left:-1.222400pt;}
._2_c00304{width:0.972800pt;}
._1_c00304{width:2.489600pt;}
._5_c00304{width:4.134400pt;}
._6_c00304{width:5.145600pt;}
._7_c00304{width:6.739200pt;}
._9_c00304{width:14.489600pt;}
._b_c00304{width:16.403200pt;}
._a_c00304{width:19.539200pt;}
.fs1_c00304{font-size:48.000000pt;}
.fs2_c00304{font-size:53.333333pt;}
.fs0_c00304{font-size:64.000000pt;}
.y0_c00304{bottom:0.000000pt;}
.ya_c00304{bottom:10.666667pt;}
.y4_c00304{bottom:12.000000pt;}
.yc_c00304{bottom:60.000000pt;}
.y9_c00304{bottom:126.666667pt;}
.y8_c00304{bottom:470.666667pt;}
.y7_c00304{bottom:494.666667pt;}
.y6_c00304{bottom:518.666667pt;}
.y5_c00304{bottom:542.666667pt;}
.y3_c00304{bottom:582.666667pt;}
.y2_c00304{bottom:949.333333pt;}
.y1_c00304{bottom:973.333333pt;}
.yb_c00304{bottom:1061.333333pt;}
.h3_c00304{height:37.593750pt;}
.h1_c00304{height:45.500000pt;}
.h5_c00304{height:49.843750pt;}
.h4_c00304{height:316.000000pt;}
.h2_c00304{height:338.666667pt;}
.h0_c00304{height:1122.666667pt;}
.w2_c00304{width:586.666667pt;}
.w1_c00304{width:601.333333pt;}
.w0_c00304{width:793.333333pt;}
.x0_c00304{left:0.000000pt;}
.x2_c00304{left:111.382493pt;}
.x1_c00304{left:133.795333pt;}
.x3_c00304{left:141.333333pt;}
.x4_c00304{left:184.682933pt;}
.x5_c00304{left:370.473600pt;}
.x6_c00304{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d1b27562ef9ed11e4433bd77.woff2')format("woff");}.ff1_c00305{font-family:ff1_c00305;line-height:0.933105;font-style:normal;font-weight:normal;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_451b4e12065d24c3a06eade0.woff2')format("woff");}.ff2_c00305{font-family:ff2_c00305;line-height:0.987793;font-style:normal;font-weight:normal;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_e28902ec607e28eddb33bdb3.woff2')format("woff");}.ff3_c00305{font-family:ff3_c00305;line-height:0.755859;font-style:normal;font-weight:normal;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_58b6935b0152c898c015f87e.woff2')format("woff");}.ff4_c00305{font-family:ff4_c00305;line-height:1.155762;font-style: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;}
.ls0_c00305{letter-spacing:0.000000px;}
.ls1_c00305{letter-spacing:0.012000px;}
.sc__c00305{text-shadow:none;}
.sc0_c00305{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00305{-webkit-text-stroke:0px transparent;}
.sc0_c00305{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00305{word-spacing:0.000000px;}
._e_c00305{margin-left:-10.497600px;}
._b_c00305{margin-left:-6.609600px;}
._7_c00305{margin-left:-4.068000px;}
._5_c00305{margin-left:-2.692800px;}
._3_c00305{margin-left:-1.245600px;}
._0_c00305{width:2.325600px;}
._d_c00305{width:3.506400px;}
._a_c00305{width:5.040000px;}
._f_c00305{width:6.048000px;}
._1_c00305{width:7.855200px;}
._10_c00305{width:9.000000px;}
._2_c00305{width:10.216800px;}
._4_c00305{width:11.498400px;}
._6_c00305{width:12.888000px;}
._8_c00305{width:14.342400px;}
._9_c00305{width:15.588000px;}
._c_c00305{width:18.180000px;}
.fc0_c00305{color:rgb(0,0,0);}
.fs1_c00305{font-size:54.000000px;}
.fs2_c00305{font-size:60.000000px;}
.fs0_c00305{font-size:72.000000px;}
.y0_c00305{bottom:0.000000px;}
.y5_c00305{bottom:12.000000px;}
.yc_c00305{bottom:67.500000px;}
.ya_c00305{bottom:138.000000px;}
.y9_c00305{bottom:531.000000px;}
.y8_c00305{bottom:558.000000px;}
.y7_c00305{bottom:585.000000px;}
.y6_c00305{bottom:612.000000px;}
.y4_c00305{bottom:657.000000px;}
.y3_c00305{bottom:1041.000000px;}
.y2_c00305{bottom:1068.000000px;}
.y1_c00305{bottom:1095.000000px;}
.yb_c00305{bottom:1194.000000px;}
.h3_c00305{height:42.292969px;}
.h6_c00305{height:44.208984px;}
.h1_c00305{height:51.187500px;}
.h5_c00305{height:56.074219px;}
.h2_c00305{height:352.500000px;}
.h4_c00305{height:361.500000px;}
.h0_c00305{height:1263.000000px;}
.w1_c00305{width:676.500000px;}
.w0_c00305{width:892.500000px;}
.x0_c00305{left:0.000000px;}
.x1_c00305{left:65.480310px;}
.x3_c00305{left:201.803100px;}
.x2_c00305{left:208.362000px;}
@media print{
.v0_c00305{vertical-align:0.000000pt;}
.ls0_c00305{letter-spacing:0.000000pt;}
.ls1_c00305{letter-spacing:0.010667pt;}
.ws0_c00305{word-spacing:0.000000pt;}
._e_c00305{margin-left:-9.331200pt;}
._b_c00305{margin-left:-5.875200pt;}
._7_c00305{margin-left:-3.616000pt;}
._5_c00305{margin-left:-2.393600pt;}
._3_c00305{margin-left:-1.107200pt;}
._0_c00305{width:2.067200pt;}
._d_c00305{width:3.116800pt;}
._a_c00305{width:4.480000pt;}
._f_c00305{width:5.376000pt;}
._1_c00305{width:6.982400pt;}
._10_c00305{width:8.000000pt;}
._2_c00305{width:9.081600pt;}
._4_c00305{width:10.220800pt;}
._6_c00305{width:11.456000pt;}
._8_c00305{width:12.748800pt;}
._9_c00305{width:13.856000pt;}
._c_c00305{width:16.160000pt;}
.fs1_c00305{font-size:48.000000pt;}
.fs2_c00305{font-size:53.333333pt;}
.fs0_c00305{font-size:64.000000pt;}
.y0_c00305{bottom:0.000000pt;}
.y5_c00305{bottom:10.666667pt;}
.yc_c00305{bottom:60.000000pt;}
.ya_c00305{bottom:122.666667pt;}
.y9_c00305{bottom:472.000000pt;}
.y8_c00305{bottom:496.000000pt;}
.y7_c00305{bottom:520.000000pt;}
.y6_c00305{bottom:544.000000pt;}
.y4_c00305{bottom:584.000000pt;}
.y3_c00305{bottom:925.333333pt;}
.y2_c00305{bottom:949.333333pt;}
.y1_c00305{bottom:973.333333pt;}
.yb_c00305{bottom:1061.333333pt;}
.h3_c00305{height:37.593750pt;}
.h6_c00305{height:39.296875pt;}
.h1_c00305{height:45.500000pt;}
.h5_c00305{height:49.843750pt;}
.h2_c00305{height:313.333333pt;}
.h4_c00305{height:321.333333pt;}
.h0_c00305{height:1122.666667pt;}
.w1_c00305{width:601.333333pt;}
.w0_c00305{width:793.333333pt;}
.x0_c00305{left:0.000000pt;}
.x1_c00305{left:58.204720pt;}
.x3_c00305{left:179.380533pt;}
.x2_c00305{left:185.210667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_06bca4776d6e6c3d3e71dcd9.woff2')format("woff");}.ff1_c00306{font-family:ff1_c00306;line-height:0.987793;font-style:normal;font-weight:normal;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_674fd7aa2600f35b80404e87.woff2')format("woff");}.ff2_c00306{font-family:ff2_c00306;line-height:0.933105;font-style:normal;font-weight:normal;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_28d3410ec18d53c280f2d016.woff2')format("woff");}.ff3_c00306{font-family:ff3_c00306;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00306{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00306{vertical-align:0.000000px;}
.ls1_c00306{letter-spacing:0.000000px;}
.ls0_c00306{letter-spacing:0.012000px;}
.sc__c00306{text-shadow:none;}
.sc0_c00306{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00306{-webkit-text-stroke:0px transparent;}
.sc0_c00306{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00306{word-spacing:0.000000px;}
._c_c00306{margin-left:-7.207200px;}
._b_c00306{margin-left:-4.564800px;}
._7_c00306{margin-left:-3.168000px;}
._3_c00306{margin-left:-1.785600px;}
._8_c00306{width:1.540800px;}
._5_c00306{width:3.204000px;}
._1_c00306{width:5.162400px;}
._9_c00306{width:6.580800px;}
._a_c00306{width:7.819200px;}
._2_c00306{width:10.814400px;}
._6_c00306{width:12.758400px;}
._0_c00306{width:15.991200px;}
._4_c00306{width:17.769600px;}
.fc0_c00306{color:rgb(0,0,0);}
.fs0_c00306{font-size:54.000000px;}
.fs2_c00306{font-size:60.000000px;}
.fs1_c00306{font-size:72.000000px;}
.y0_c00306{bottom:0.000000px;}
.y2_c00306{bottom:12.000000px;}
.y8_c00306{bottom:13.500000px;}
.ya_c00306{bottom:67.500000px;}
.y7_c00306{bottom:172.500000px;}
.y6_c00306{bottom:687.000000px;}
.y5_c00306{bottom:714.000000px;}
.y4_c00306{bottom:741.000000px;}
.y3_c00306{bottom:768.000000px;}
.y1_c00306{bottom:813.000000px;}
.y9_c00306{bottom:1194.000000px;}
.h2_c00306{height:42.292969px;}
.h3_c00306{height:51.187500px;}
.h5_c00306{height:56.074219px;}
.h1_c00306{height:300.000000px;}
.h4_c00306{height:483.000000px;}
.h0_c00306{height:1263.000000px;}
.w1_c00306{width:676.500000px;}
.w0_c00306{width:892.500000px;}
.x0_c00306{left:0.000000px;}
.x3_c00306{left:114.926520px;}
.x1_c00306{left:150.000000px;}
.x2_c00306{left:196.948200px;}
.x4_c00306{left:416.782800px;}
.x5_c00306{left:801.992850px;}
@media print{
.v0_c00306{vertical-align:0.000000pt;}
.ls1_c00306{letter-spacing:0.000000pt;}
.ls0_c00306{letter-spacing:0.010667pt;}
.ws0_c00306{word-spacing:0.000000pt;}
._c_c00306{margin-left:-6.406400pt;}
._b_c00306{margin-left:-4.057600pt;}
._7_c00306{margin-left:-2.816000pt;}
._3_c00306{margin-left:-1.587200pt;}
._8_c00306{width:1.369600pt;}
._5_c00306{width:2.848000pt;}
._1_c00306{width:4.588800pt;}
._9_c00306{width:5.849600pt;}
._a_c00306{width:6.950400pt;}
._2_c00306{width:9.612800pt;}
._6_c00306{width:11.340800pt;}
._0_c00306{width:14.214400pt;}
._4_c00306{width:15.795200pt;}
.fs0_c00306{font-size:48.000000pt;}
.fs2_c00306{font-size:53.333333pt;}
.fs1_c00306{font-size:64.000000pt;}
.y0_c00306{bottom:0.000000pt;}
.y2_c00306{bottom:10.666667pt;}
.y8_c00306{bottom:12.000000pt;}
.ya_c00306{bottom:60.000000pt;}
.y7_c00306{bottom:153.333333pt;}
.y6_c00306{bottom:610.666667pt;}
.y5_c00306{bottom:634.666667pt;}
.y4_c00306{bottom:658.666667pt;}
.y3_c00306{bottom:682.666667pt;}
.y1_c00306{bottom:722.666667pt;}
.y9_c00306{bottom:1061.333333pt;}
.h2_c00306{height:37.593750pt;}
.h3_c00306{height:45.500000pt;}
.h5_c00306{height:49.843750pt;}
.h1_c00306{height:266.666667pt;}
.h4_c00306{height:429.333333pt;}
.h0_c00306{height:1122.666667pt;}
.w1_c00306{width:601.333333pt;}
.w0_c00306{width:793.333333pt;}
.x0_c00306{left:0.000000pt;}
.x3_c00306{left:102.156907pt;}
.x1_c00306{left:133.333333pt;}
.x2_c00306{left:175.065067pt;}
.x4_c00306{left:370.473600pt;}
.x5_c00306{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_36a4ef631cda7b1775685d90.woff2')format("woff");}.ff1_c00307{font-family:ff1_c00307;line-height:0.933105;font-style:normal;font-weight:normal;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_6375c1e0fb11d7412852680d.woff2')format("woff");}.ff2_c00307{font-family:ff2_c00307;line-height:0.801270;font-style:normal;font-weight:normal;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_49f5628a81ef7dcb67d787ba.woff2')format("woff");}.ff3_c00307{font-family:ff3_c00307;line-height:0.755859;font-style:normal;font-weight:normal;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_09f9013bdad728738fc7fb03.woff2')format("woff");}.ff4_c00307{font-family:ff4_c00307;line-height:1.155762;font-style: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;}
.ls1_c00307{letter-spacing:-0.005400px;}
.ls0_c00307{letter-spacing:0.000000px;}
.ls2_c00307{letter-spacing:0.012000px;}
.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:0.000000px;}
._5_c00307{margin-left:-7.128000px;}
._8_c00307{margin-left:-3.182400px;}
._6_c00307{margin-left:-2.174400px;}
._3_c00307{margin-left:-1.101600px;}
._c_c00307{width:1.072800px;}
._0_c00307{width:2.325600px;}
._a_c00307{width:3.873600px;}
._b_c00307{width:5.666400px;}
._f_c00307{width:7.185600px;}
._d_c00307{width:8.445600px;}
._e_c00307{width:9.468000px;}
._9_c00307{width:10.490400px;}
._7_c00307{width:11.700000px;}
._1_c00307{width:29.095200px;}
._2_c00307{width:31.478400px;}
._4_c00307{width:32.580000px;}
.fc0_c00307{color:rgb(0,0,0);}
.fs1_c00307{font-size:54.000000px;}
.fs2_c00307{font-size:60.000000px;}
.fs0_c00307{font-size:72.000000px;}
.y0_c00307{bottom:0.000000px;}
.y8_c00307{bottom:12.000000px;}
.ye_c00307{bottom:67.500000px;}
.yc_c00307{bottom:160.500000px;}
.yb_c00307{bottom:508.500000px;}
.ya_c00307{bottom:535.500000px;}
.y9_c00307{bottom:562.500000px;}
.y7_c00307{bottom:607.500000px;}
.y6_c00307{bottom:960.000000px;}
.y5_c00307{bottom:987.000000px;}
.y4_c00307{bottom:1014.000000px;}
.y3_c00307{bottom:1041.000000px;}
.y2_c00307{bottom:1068.000000px;}
.y1_c00307{bottom:1095.000000px;}
.yd_c00307{bottom:1194.000000px;}
.h3_c00307{height:42.292969px;}
.h6_c00307{height:44.208984px;}
.h1_c00307{height:51.187500px;}
.h5_c00307{height:56.074219px;}
.h4_c00307{height:316.500000px;}
.h2_c00307{height:321.000000px;}
.h0_c00307{height:1263.000000px;}
.w1_c00307{width:676.500000px;}
.w0_c00307{width:892.500000px;}
.x0_c00307{left:0.000000px;}
.x1_c00307{left:65.480310px;}
.x2_c00307{left:233.608500px;}
.x3_c00307{left:247.398600px;}
@media print{
.v0_c00307{vertical-align:0.000000pt;}
.ls1_c00307{letter-spacing:-0.004800pt;}
.ls0_c00307{letter-spacing:0.000000pt;}
.ls2_c00307{letter-spacing:0.010667pt;}
.ws0_c00307{word-spacing:0.000000pt;}
._5_c00307{margin-left:-6.336000pt;}
._8_c00307{margin-left:-2.828800pt;}
._6_c00307{margin-left:-1.932800pt;}
._3_c00307{margin-left:-0.979200pt;}
._c_c00307{width:0.953600pt;}
._0_c00307{width:2.067200pt;}
._a_c00307{width:3.443200pt;}
._b_c00307{width:5.036800pt;}
._f_c00307{width:6.387200pt;}
._d_c00307{width:7.507200pt;}
._e_c00307{width:8.416000pt;}
._9_c00307{width:9.324800pt;}
._7_c00307{width:10.400000pt;}
._1_c00307{width:25.862400pt;}
._2_c00307{width:27.980800pt;}
._4_c00307{width:28.960000pt;}
.fs1_c00307{font-size:48.000000pt;}
.fs2_c00307{font-size:53.333333pt;}
.fs0_c00307{font-size:64.000000pt;}
.y0_c00307{bottom:0.000000pt;}
.y8_c00307{bottom:10.666667pt;}
.ye_c00307{bottom:60.000000pt;}
.yc_c00307{bottom:142.666667pt;}
.yb_c00307{bottom:452.000000pt;}
.ya_c00307{bottom:476.000000pt;}
.y9_c00307{bottom:500.000000pt;}
.y7_c00307{bottom:540.000000pt;}
.y6_c00307{bottom:853.333333pt;}
.y5_c00307{bottom:877.333333pt;}
.y4_c00307{bottom:901.333333pt;}
.y3_c00307{bottom:925.333333pt;}
.y2_c00307{bottom:949.333333pt;}
.y1_c00307{bottom:973.333333pt;}
.yd_c00307{bottom:1061.333333pt;}
.h3_c00307{height:37.593750pt;}
.h6_c00307{height:39.296875pt;}
.h1_c00307{height:45.500000pt;}
.h5_c00307{height:49.843750pt;}
.h4_c00307{height:281.333333pt;}
.h2_c00307{height:285.333333pt;}
.h0_c00307{height:1122.666667pt;}
.w1_c00307{width:601.333333pt;}
.w0_c00307{width:793.333333pt;}
.x0_c00307{left:0.000000pt;}
.x1_c00307{left:58.204720pt;}
.x2_c00307{left:207.652000pt;}
.x3_c00307{left:219.909867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b2bad0f328d5db869a57bebb.woff2')format("woff");}.ff1_c00308{font-family:ff1_c00308;line-height:0.931152;font-style:normal;font-weight:normal;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_6acb78db0be5e8767173e19b.woff2')format("woff");}.ff2_c00308{font-family:ff2_c00308;line-height:0.934082;font-style:normal;font-weight:normal;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_b0813b42fe7c0edb2efd0af4.woff2')format("woff");}.ff3_c00308{font-family:ff3_c00308;line-height:1.010254;font-style:normal;font-weight:normal;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_fbe7d2c40ba81840218fa6b9.woff2')format("woff");}.ff4_c00308{font-family:ff4_c00308;line-height:0.986816;font-style:normal;font-weight:normal;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_ba32d6c77370bc36a3329cd9.woff2')format("woff");}.ff5_c00308{font-family:ff5_c00308;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00308{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00308{vertical-align:0.000000px;}
.ls2_c00308{letter-spacing:0.000000px;}
.ls1_c00308{letter-spacing:0.012000px;}
.ls0_c00308{letter-spacing:2.836800px;}
.sc__c00308{text-shadow:none;}
.sc0_c00308{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00308{-webkit-text-stroke:0px transparent;}
.sc0_c00308{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00308{word-spacing:-18.000000px;}
.ws0_c00308{word-spacing:-16.500000px;}
.ws2_c00308{word-spacing:-0.072000px;}
.ws3_c00308{word-spacing:0.000000px;}
._5_c00308{margin-left:-8.560800px;}
._a_c00308{margin-left:-6.624000px;}
._6_c00308{margin-left:-4.209060px;}
._1_c00308{margin-left:-3.196800px;}
._3_c00308{margin-left:-1.965600px;}
._10_c00308{width:1.000800px;}
._0_c00308{width:2.001600px;}
._4_c00308{width:3.902400px;}
._2_c00308{width:5.184000px;}
._c_c00308{width:6.645600px;}
._15_c00308{width:8.460000px;}
._12_c00308{width:9.594660px;}
._b_c00308{width:10.692000px;}
._8_c00308{width:11.894400px;}
._7_c00308{width:13.910400px;}
._9_c00308{width:15.357600px;}
._14_c00308{width:16.732800px;}
._13_c00308{width:19.411200px;}
._f_c00308{width:20.692800px;}
._e_c00308{width:22.586400px;}
._d_c00308{width:24.552000px;}
._16_c00308{width:25.552800px;}
._11_c00308{width:27.504000px;}
._1c_c00308{width:30.470400px;}
._1a_c00308{width:31.716000px;}
._1b_c00308{width:32.738400px;}
._17_c00308{width:33.739200px;}
._18_c00308{width:35.676000px;}
._19_c00308{width:36.892800px;}
.fc0_c00308{color:rgb(0,0,0);}
.fs1_c00308{font-size:60.000000px;}
.fs0_c00308{font-size:72.000000px;}
.y0_c00308{bottom:0.000000px;}
.y23_c00308{bottom:67.500000px;}
.y21_c00308{bottom:274.500000px;}
.y20_c00308{bottom:295.500000px;}
.y1f_c00308{bottom:316.500000px;}
.y1e_c00308{bottom:337.500000px;}
.y1d_c00308{bottom:358.500000px;}
.y1c_c00308{bottom:379.500000px;}
.y1b_c00308{bottom:400.500000px;}
.y1a_c00308{bottom:421.500000px;}
.y19_c00308{bottom:463.500000px;}
.y18_c00308{bottom:505.500000px;}
.y17_c00308{bottom:526.500000px;}
.y16_c00308{bottom:547.500000px;}
.y15_c00308{bottom:568.500000px;}
.y14_c00308{bottom:589.500000px;}
.y13_c00308{bottom:610.500000px;}
.y12_c00308{bottom:631.500000px;}
.y11_c00308{bottom:652.500000px;}
.y10_c00308{bottom:673.500000px;}
.yf_c00308{bottom:694.500000px;}
.ye_c00308{bottom:715.500000px;}
.yd_c00308{bottom:736.500000px;}
.yc_c00308{bottom:757.500000px;}
.yb_c00308{bottom:778.500000px;}
.ya_c00308{bottom:799.500000px;}
.y9_c00308{bottom:820.500000px;}
.y8_c00308{bottom:841.500000px;}
.y7_c00308{bottom:862.500000px;}
.y6_c00308{bottom:906.000000px;}
.y5_c00308{bottom:927.000000px;}
.y4_c00308{bottom:972.000000px;}
.y3_c00308{bottom:999.000000px;}
.y2_c00308{bottom:1047.000000px;}
.y1_c00308{bottom:1095.000000px;}
.y22_c00308{bottom:1194.000000px;}
.h4_c00308{height:42.714844px;}
.h3_c00308{height:42.832031px;}
.h1_c00308{height:51.257812px;}
.h2_c00308{height:51.398438px;}
.h5_c00308{height:52.417969px;}
.h6_c00308{height:56.074219px;}
.h0_c00308{height:1263.000000px;}
.w0_c00308{width:892.500000px;}
.x0_c00308{left:0.000000px;}
.x1_c00308{left:148.837515px;}
.x2_c00308{left:416.782800px;}
.x3_c00308{left:801.992850px;}
@media print{
.v0_c00308{vertical-align:0.000000pt;}
.ls2_c00308{letter-spacing:0.000000pt;}
.ls1_c00308{letter-spacing:0.010667pt;}
.ls0_c00308{letter-spacing:2.521600pt;}
.ws1_c00308{word-spacing:-16.000000pt;}
.ws0_c00308{word-spacing:-14.666667pt;}
.ws2_c00308{word-spacing:-0.064000pt;}
.ws3_c00308{word-spacing:0.000000pt;}
._5_c00308{margin-left:-7.609600pt;}
._a_c00308{margin-left:-5.888000pt;}
._6_c00308{margin-left:-3.741387pt;}
._1_c00308{margin-left:-2.841600pt;}
._3_c00308{margin-left:-1.747200pt;}
._10_c00308{width:0.889600pt;}
._0_c00308{width:1.779200pt;}
._4_c00308{width:3.468800pt;}
._2_c00308{width:4.608000pt;}
._c_c00308{width:5.907200pt;}
._15_c00308{width:7.520000pt;}
._12_c00308{width:8.528587pt;}
._b_c00308{width:9.504000pt;}
._8_c00308{width:10.572800pt;}
._7_c00308{width:12.364800pt;}
._9_c00308{width:13.651200pt;}
._14_c00308{width:14.873600pt;}
._13_c00308{width:17.254400pt;}
._f_c00308{width:18.393600pt;}
._e_c00308{width:20.076800pt;}
._d_c00308{width:21.824000pt;}
._16_c00308{width:22.713600pt;}
._11_c00308{width:24.448000pt;}
._1c_c00308{width:27.084800pt;}
._1a_c00308{width:28.192000pt;}
._1b_c00308{width:29.100800pt;}
._17_c00308{width:29.990400pt;}
._18_c00308{width:31.712000pt;}
._19_c00308{width:32.793600pt;}
.fs1_c00308{font-size:53.333333pt;}
.fs0_c00308{font-size:64.000000pt;}
.y0_c00308{bottom:0.000000pt;}
.y23_c00308{bottom:60.000000pt;}
.y21_c00308{bottom:244.000000pt;}
.y20_c00308{bottom:262.666667pt;}
.y1f_c00308{bottom:281.333333pt;}
.y1e_c00308{bottom:300.000000pt;}
.y1d_c00308{bottom:318.666667pt;}
.y1c_c00308{bottom:337.333333pt;}
.y1b_c00308{bottom:356.000000pt;}
.y1a_c00308{bottom:374.666667pt;}
.y19_c00308{bottom:412.000000pt;}
.y18_c00308{bottom:449.333333pt;}
.y17_c00308{bottom:468.000000pt;}
.y16_c00308{bottom:486.666667pt;}
.y15_c00308{bottom:505.333333pt;}
.y14_c00308{bottom:524.000000pt;}
.y13_c00308{bottom:542.666667pt;}
.y12_c00308{bottom:561.333333pt;}
.y11_c00308{bottom:580.000000pt;}
.y10_c00308{bottom:598.666667pt;}
.yf_c00308{bottom:617.333333pt;}
.ye_c00308{bottom:636.000000pt;}
.yd_c00308{bottom:654.666667pt;}
.yc_c00308{bottom:673.333333pt;}
.yb_c00308{bottom:692.000000pt;}
.ya_c00308{bottom:710.666667pt;}
.y9_c00308{bottom:729.333333pt;}
.y8_c00308{bottom:748.000000pt;}
.y7_c00308{bottom:766.666667pt;}
.y6_c00308{bottom:805.333333pt;}
.y5_c00308{bottom:824.000000pt;}
.y4_c00308{bottom:864.000000pt;}
.y3_c00308{bottom:888.000000pt;}
.y2_c00308{bottom:930.666667pt;}
.y1_c00308{bottom:973.333333pt;}
.y22_c00308{bottom:1061.333333pt;}
.h4_c00308{height:37.968750pt;}
.h3_c00308{height:38.072917pt;}
.h1_c00308{height:45.562500pt;}
.h2_c00308{height:45.687500pt;}
.h5_c00308{height:46.593750pt;}
.h6_c00308{height:49.843750pt;}
.h0_c00308{height:1122.666667pt;}
.w0_c00308{width:793.333333pt;}
.x0_c00308{left:0.000000pt;}
.x1_c00308{left:132.300013pt;}
.x2_c00308{left:370.473600pt;}
.x3_c00308{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_af663625f5d7405f6a432c43.woff2')format("woff");}.ff1_c00309{font-family:ff1_c00309;line-height:0.884766;font-style:normal;font-weight:normal;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_b02a2bc1bf8f004f3a8e1ba7.woff2')format("woff");}.ff2_c00309{font-family:ff2_c00309;line-height:1.135254;font-style:normal;font-weight:normal;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_c2ffec0ef61617df9b4fa8da.woff2')format("woff");}.ff3_c00309{font-family:ff3_c00309;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00309;src:url('chunks/assets/font_35064ed0cfecd4e50e47de62.woff2')format("woff");}.ff4_c00309{font-family:ff4_c00309;line-height:0.755859;font-style:normal;font-weight:normal;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_6646cd795f3c6d4261d7770d.woff2')format("woff");}.ff5_c00309{font-family:ff5_c00309;line-height:1.155762;font-style:normal;font-weight: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_c00309;src:url('chunks/assets/font_c643fdbc0cbf9d7e6c117e10.woff2')format("woff");}.ff6_c00309{font-family:ff6_c00309;line-height:0.670898;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00309;src:url('chunks/assets/font_6b8894fda5a1c5f7c8d8b1ed.woff2')format("woff");}.ff7_c00309{font-family:ff7_c00309;line-height:0.903320;font-style: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);}
.v3_c00309{vertical-align:-33.000000px;}
.v2_c00309{vertical-align:-23.086200px;}
.v0_c00309{vertical-align:0.000000px;}
.v1_c00309{vertical-align:23.086200px;}
.ls2_c00309{letter-spacing:0.000000px;}
.ls0_c00309{letter-spacing:0.007800px;}
.ls3_c00309{letter-spacing:0.012000px;}
.ls1_c00309{letter-spacing:7.238400px;}
.sc__c00309{text-shadow:none;}
.sc0_c00309{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00309{-webkit-text-stroke:0px transparent;}
.sc0_c00309{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00309{word-spacing:-19.800000px;}
.ws1_c00309{word-spacing:-0.040000px;}
.ws2_c00309{word-spacing:0.000000px;}
._11_c00309{margin-left:-10.296000px;}
._7_c00309{margin-left:-5.176800px;}
._3_c00309{margin-left:-3.924000px;}
._8_c00309{margin-left:-2.894400px;}
._1_c00309{margin-left:-1.576800px;}
._6_c00309{width:1.202400px;}
._0_c00309{width:2.210400px;}
._5_c00309{width:3.528000px;}
._2_c00309{width:4.852800px;}
._4_c00309{width:6.789600px;}
._9_c00309{width:8.186400px;}
._b_c00309{width:9.698400px;}
._a_c00309{width:10.958400px;}
._f_c00309{width:12.045600px;}
._e_c00309{width:13.060800px;}
._d_c00309{width:14.220000px;}
._c_c00309{width:15.768000px;}
._15_c00309{width:17.395200px;}
._10_c00309{width:21.607200px;}
._12_c00309{width:23.803200px;}
._14_c00309{width:24.811200px;}
._13_c00309{width:27.468000px;}
._19_c00309{width:33.069600px;}
._16_c00309{width:34.099200px;}
._1a_c00309{width:35.913600px;}
._18_c00309{width:37.886400px;}
._17_c00309{width:38.930400px;}
.fc1_c00309{color:rgb(255,255,255);}
.fc0_c00309{color:rgb(0,0,0);}
.fs5_c00309{font-size:40.000002px;}
.fs2_c00309{font-size:48.000000px;}
.fs4_c00309{font-size:60.000000px;}
.fs1_c00309{font-size:72.000000px;}
.fs0_c00309{font-size:78.000000px;}
.fs3_c00309{font-size:96.000000px;}
.y0_c00309{bottom:0.000000px;}
.y1c_c00309{bottom:67.500000px;}
.y1d_c00309{bottom:140.250000px;}
.y19_c00309{bottom:261.000000px;}
.y18_c00309{bottom:288.000000px;}
.y17_c00309{bottom:336.000000px;}
.y16_c00309{bottom:363.000000px;}
.y15_c00309{bottom:390.000000px;}
.y14_c00309{bottom:417.000000px;}
.y13_c00309{bottom:444.000000px;}
.y12_c00309{bottom:471.000000px;}
.y11_c00309{bottom:519.000000px;}
.y10_c00309{bottom:546.000000px;}
.yf_c00309{bottom:573.000000px;}
.ye_c00309{bottom:600.000000px;}
.yd_c00309{bottom:627.000000px;}
.yc_c00309{bottom:654.000000px;}
.yb_c00309{bottom:681.000000px;}
.ya_c00309{bottom:708.000000px;}
.y9_c00309{bottom:735.000000px;}
.y8_c00309{bottom:783.000000px;}
.y7_c00309{bottom:810.000000px;}
.y6_c00309{bottom:837.000000px;}
.y5_c00309{bottom:864.000000px;}
.y4_c00309{bottom:891.000000px;}
.y3_c00309{bottom:918.000000px;}
.y2_c00309{bottom:945.000000px;}
.y1_c00309{bottom:988.500000px;}
.y1a_c00309{bottom:1066.500000px;}
.y1b_c00309{bottom:1194.000000px;}
.h6_c00309{height:26.835939px;}
.h5_c00309{height:44.208984px;}
.h1_c00309{height:55.224609px;}
.h4_c00309{height:56.074219px;}
.h2_c00309{height:65.742188px;}
.h3_c00309{height:87.656250px;}
.h0_c00309{height:1263.000000px;}
.w0_c00309{width:892.500000px;}
.x0_c00309{left:0.000000px;}
.x1_c00309{left:65.480310px;}
.x2_c00309{left:94.798875px;}
@media print{
.v3_c00309{vertical-align:-29.333333pt;}
.v2_c00309{vertical-align:-20.521067pt;}
.v0_c00309{vertical-align:0.000000pt;}
.v1_c00309{vertical-align:20.521067pt;}
.ls2_c00309{letter-spacing:0.000000pt;}
.ls0_c00309{letter-spacing:0.006933pt;}
.ls3_c00309{letter-spacing:0.010667pt;}
.ls1_c00309{letter-spacing:6.434133pt;}
.ws0_c00309{word-spacing:-17.600000pt;}
.ws1_c00309{word-spacing:-0.035556pt;}
.ws2_c00309{word-spacing:0.000000pt;}
._11_c00309{margin-left:-9.152000pt;}
._7_c00309{margin-left:-4.601600pt;}
._3_c00309{margin-left:-3.488000pt;}
._8_c00309{margin-left:-2.572800pt;}
._1_c00309{margin-left:-1.401600pt;}
._6_c00309{width:1.068800pt;}
._0_c00309{width:1.964800pt;}
._5_c00309{width:3.136000pt;}
._2_c00309{width:4.313600pt;}
._4_c00309{width:6.035200pt;}
._9_c00309{width:7.276800pt;}
._b_c00309{width:8.620800pt;}
._a_c00309{width:9.740800pt;}
._f_c00309{width:10.707200pt;}
._e_c00309{width:11.609600pt;}
._d_c00309{width:12.640000pt;}
._c_c00309{width:14.016000pt;}
._15_c00309{width:15.462400pt;}
._10_c00309{width:19.206400pt;}
._12_c00309{width:21.158400pt;}
._14_c00309{width:22.054400pt;}
._13_c00309{width:24.416000pt;}
._19_c00309{width:29.395200pt;}
._16_c00309{width:30.310400pt;}
._1a_c00309{width:31.923200pt;}
._18_c00309{width:33.676800pt;}
._17_c00309{width:34.604800pt;}
.fs5_c00309{font-size:35.555557pt;}
.fs2_c00309{font-size:42.666667pt;}
.fs4_c00309{font-size:53.333333pt;}
.fs1_c00309{font-size:64.000000pt;}
.fs0_c00309{font-size:69.333333pt;}
.fs3_c00309{font-size:85.333333pt;}
.y0_c00309{bottom:0.000000pt;}
.y1c_c00309{bottom:60.000000pt;}
.y1d_c00309{bottom:124.666667pt;}
.y19_c00309{bottom:232.000000pt;}
.y18_c00309{bottom:256.000000pt;}
.y17_c00309{bottom:298.666667pt;}
.y16_c00309{bottom:322.666667pt;}
.y15_c00309{bottom:346.666667pt;}
.y14_c00309{bottom:370.666667pt;}
.y13_c00309{bottom:394.666667pt;}
.y12_c00309{bottom:418.666667pt;}
.y11_c00309{bottom:461.333333pt;}
.y10_c00309{bottom:485.333333pt;}
.yf_c00309{bottom:509.333333pt;}
.ye_c00309{bottom:533.333333pt;}
.yd_c00309{bottom:557.333333pt;}
.yc_c00309{bottom:581.333333pt;}
.yb_c00309{bottom:605.333333pt;}
.ya_c00309{bottom:629.333333pt;}
.y9_c00309{bottom:653.333333pt;}
.y8_c00309{bottom:696.000000pt;}
.y7_c00309{bottom:720.000000pt;}
.y6_c00309{bottom:744.000000pt;}
.y5_c00309{bottom:768.000000pt;}
.y4_c00309{bottom:792.000000pt;}
.y3_c00309{bottom:816.000000pt;}
.y2_c00309{bottom:840.000000pt;}
.y1_c00309{bottom:878.666667pt;}
.y1a_c00309{bottom:948.000000pt;}
.y1b_c00309{bottom:1061.333333pt;}
.h6_c00309{height:23.854168pt;}
.h5_c00309{height:39.296875pt;}
.h1_c00309{height:49.088542pt;}
.h4_c00309{height:49.843750pt;}
.h2_c00309{height:58.437500pt;}
.h3_c00309{height:77.916667pt;}
.h0_c00309{height:1122.666667pt;}
.w0_c00309{width:793.333333pt;}
.x0_c00309{left:0.000000pt;}
.x1_c00309{left:58.204720pt;}
.x2_c00309{left:84.265667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_732ddcc90de00b854c69f8fe.woff2')format("woff");}.ff1_c00310{font-family:ff1_c00310;line-height:0.934082;font-style:normal;font-weight:normal;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_decdec853e3ddcc6bb2ea9d3.woff2')format("woff");}.ff2_c00310{font-family:ff2_c00310;line-height:0.882812;font-style:normal;font-weight:normal;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_44930e707b574801b10aade4.woff2')format("woff");}.ff3_c00310{font-family:ff3_c00310;line-height:1.155762;font-style:normal;font-weight:normal;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_b66305286d71e47d728f07b7.woff2')format("woff");}.ff4_c00310{font-family:ff4_c00310;line-height:0.684082;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00310;src:url('chunks/assets/font_671d815c81c56ab4debab16d.woff2')format("woff");}.ff5_c00310{font-family:ff5_c00310;line-height:1.115723;font-style:normal;font-weight: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_c00310;src:url('chunks/assets/font_59d544c023707680b6f813e3.woff2')format("woff");}.ff6_c00310{font-family:ff6_c00310;line-height:0.864746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00310{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00310{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3_c00310{vertical-align:-33.000000px;}
.v2_c00310{vertical-align:-23.086200px;}
.v0_c00310{vertical-align:0.000000px;}
.v1_c00310{vertical-align:23.086200px;}
.ls5_c00310{letter-spacing:0.000000px;}
.ls3_c00310{letter-spacing:0.012000px;}
.ls4_c00310{letter-spacing:3.999939px;}
.ls0_c00310{letter-spacing:9.621000px;}
.ls2_c00310{letter-spacing:11.058000px;}
.ls1_c00310{letter-spacing:12.279000px;}
.sc__c00310{text-shadow:none;}
.sc0_c00310{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00310{-webkit-text-stroke:0px transparent;}
.sc0_c00310{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00310{word-spacing:-15.000000px;}
.ws1_c00310{word-spacing:-0.040000px;}
.ws2_c00310{word-spacing:0.000000px;}
._1a_c00310{margin-left:-11.188800px;}
._8_c00310{margin-left:-7.797000px;}
._19_c00310{margin-left:-4.723200px;}
._2_c00310{margin-left:-3.600000px;}
._0_c00310{margin-left:-2.131200px;}
._10_c00310{margin-left:-1.130400px;}
._d_c00310{width:1.080000px;}
._4_c00310{width:2.325600px;}
._c_c00310{width:3.384000px;}
._7_c00310{width:4.903200px;}
._5_c00310{width:5.983200px;}
._e_c00310{width:7.099200px;}
._6_c00310{width:8.265540px;}
._f_c00310{width:9.360000px;}
._1_c00310{width:10.533600px;}
._3_c00310{width:11.973600px;}
._b_c00310{width:13.557600px;}
._a_c00310{width:15.696000px;}
._9_c00310{width:17.143200px;}
._13_c00310{width:21.981600px;}
._12_c00310{width:24.019200px;}
._11_c00310{width:25.243200px;}
._18_c00310{width:28.519200px;}
._14_c00310{width:29.678400px;}
._15_c00310{width:30.866400px;}
._16_c00310{width:31.975200px;}
._1d_c00310{width:32.976000px;}
._17_c00310{width:34.099200px;}
._1b_c00310{width:35.150400px;}
._1c_c00310{width:38.152800px;}
.fc0_c00310{color:rgb(0,0,0);}
.fs3_c00310{font-size:40.000002px;}
.fs1_c00310{font-size:48.000000px;}
.fs2_c00310{font-size:60.000000px;}
.fs0_c00310{font-size:72.000000px;}
.y0_c00310{bottom:0.000000px;}
.y19_c00310{bottom:67.500000px;}
.y25_c00310{bottom:132.000000px;}
.y24_c00310{bottom:151.500000px;}
.y23_c00310{bottom:171.000000px;}
.y22_c00310{bottom:190.500000px;}
.y21_c00310{bottom:218.250000px;}
.y20_c00310{bottom:267.750000px;}
.y1f_c00310{bottom:309.000000px;}
.y1e_c00310{bottom:328.500000px;}
.y1d_c00310{bottom:348.000000px;}
.y1c_c00310{bottom:367.500000px;}
.y1b_c00310{bottom:387.000000px;}
.y1a_c00310{bottom:414.750000px;}
.y17_c00310{bottom:480.000000px;}
.y16_c00310{bottom:507.000000px;}
.y15_c00310{bottom:534.000000px;}
.y14_c00310{bottom:561.000000px;}
.y13_c00310{bottom:588.000000px;}
.y12_c00310{bottom:615.000000px;}
.y11_c00310{bottom:642.000000px;}
.y10_c00310{bottom:669.000000px;}
.yf_c00310{bottom:696.000000px;}
.ye_c00310{bottom:723.000000px;}
.yd_c00310{bottom:750.000000px;}
.yc_c00310{bottom:798.000000px;}
.yb_c00310{bottom:825.000000px;}
.ya_c00310{bottom:852.000000px;}
.y9_c00310{bottom:879.000000px;}
.y8_c00310{bottom:906.000000px;}
.y7_c00310{bottom:933.000000px;}
.y6_c00310{bottom:960.000000px;}
.y5_c00310{bottom:987.000000px;}
.y4_c00310{bottom:1014.000000px;}
.y3_c00310{bottom:1041.000000px;}
.y2_c00310{bottom:1068.000000px;}
.y1_c00310{bottom:1095.000000px;}
.y18_c00310{bottom:1194.000000px;}
.h4_c00310{height:27.070314px;}
.h2_c00310{height:51.257812px;}
.h5_c00310{height:53.818359px;}
.h3_c00310{height:56.074219px;}
.h1_c00310{height:56.976825px;}
.h0_c00310{height:1263.000000px;}
.w0_c00310{width:892.500000px;}
.x0_c00310{left:0.000000px;}
.x1_c00310{left:148.837515px;}
.x2_c00310{left:416.782800px;}
.x3_c00310{left:801.992850px;}
@media print{
.v3_c00310{vertical-align:-29.333333pt;}
.v2_c00310{vertical-align:-20.521067pt;}
.v0_c00310{vertical-align:0.000000pt;}
.v1_c00310{vertical-align:20.521067pt;}
.ls5_c00310{letter-spacing:0.000000pt;}
.ls3_c00310{letter-spacing:0.010667pt;}
.ls4_c00310{letter-spacing:3.555501pt;}
.ls0_c00310{letter-spacing:8.552000pt;}
.ls2_c00310{letter-spacing:9.829333pt;}
.ls1_c00310{letter-spacing:10.914667pt;}
.ws0_c00310{word-spacing:-13.333333pt;}
.ws1_c00310{word-spacing:-0.035556pt;}
.ws2_c00310{word-spacing:0.000000pt;}
._1a_c00310{margin-left:-9.945600pt;}
._8_c00310{margin-left:-6.930667pt;}
._19_c00310{margin-left:-4.198400pt;}
._2_c00310{margin-left:-3.200000pt;}
._0_c00310{margin-left:-1.894400pt;}
._10_c00310{margin-left:-1.004800pt;}
._d_c00310{width:0.960000pt;}
._4_c00310{width:2.067200pt;}
._c_c00310{width:3.008000pt;}
._7_c00310{width:4.358400pt;}
._5_c00310{width:5.318400pt;}
._e_c00310{width:6.310400pt;}
._6_c00310{width:7.347147pt;}
._f_c00310{width:8.320000pt;}
._1_c00310{width:9.363200pt;}
._3_c00310{width:10.643200pt;}
._b_c00310{width:12.051200pt;}
._a_c00310{width:13.952000pt;}
._9_c00310{width:15.238400pt;}
._13_c00310{width:19.539200pt;}
._12_c00310{width:21.350400pt;}
._11_c00310{width:22.438400pt;}
._18_c00310{width:25.350400pt;}
._14_c00310{width:26.380800pt;}
._15_c00310{width:27.436800pt;}
._16_c00310{width:28.422400pt;}
._1d_c00310{width:29.312000pt;}
._17_c00310{width:30.310400pt;}
._1b_c00310{width:31.244800pt;}
._1c_c00310{width:33.913600pt;}
.fs3_c00310{font-size:35.555557pt;}
.fs1_c00310{font-size:42.666667pt;}
.fs2_c00310{font-size:53.333333pt;}
.fs0_c00310{font-size:64.000000pt;}
.y0_c00310{bottom:0.000000pt;}
.y19_c00310{bottom:60.000000pt;}
.y25_c00310{bottom:117.333333pt;}
.y24_c00310{bottom:134.666667pt;}
.y23_c00310{bottom:152.000000pt;}
.y22_c00310{bottom:169.333333pt;}
.y21_c00310{bottom:194.000000pt;}
.y20_c00310{bottom:238.000000pt;}
.y1f_c00310{bottom:274.666667pt;}
.y1e_c00310{bottom:292.000000pt;}
.y1d_c00310{bottom:309.333333pt;}
.y1c_c00310{bottom:326.666667pt;}
.y1b_c00310{bottom:344.000000pt;}
.y1a_c00310{bottom:368.666667pt;}
.y17_c00310{bottom:426.666667pt;}
.y16_c00310{bottom:450.666667pt;}
.y15_c00310{bottom:474.666667pt;}
.y14_c00310{bottom:498.666667pt;}
.y13_c00310{bottom:522.666667pt;}
.y12_c00310{bottom:546.666667pt;}
.y11_c00310{bottom:570.666667pt;}
.y10_c00310{bottom:594.666667pt;}
.yf_c00310{bottom:618.666667pt;}
.ye_c00310{bottom:642.666667pt;}
.yd_c00310{bottom:666.666667pt;}
.yc_c00310{bottom:709.333333pt;}
.yb_c00310{bottom:733.333333pt;}
.ya_c00310{bottom:757.333333pt;}
.y9_c00310{bottom:781.333333pt;}
.y8_c00310{bottom:805.333333pt;}
.y7_c00310{bottom:829.333333pt;}
.y6_c00310{bottom:853.333333pt;}
.y5_c00310{bottom:877.333333pt;}
.y4_c00310{bottom:901.333333pt;}
.y3_c00310{bottom:925.333333pt;}
.y2_c00310{bottom:949.333333pt;}
.y1_c00310{bottom:973.333333pt;}
.y18_c00310{bottom:1061.333333pt;}
.h4_c00310{height:24.062501pt;}
.h2_c00310{height:45.562500pt;}
.h5_c00310{height:47.838542pt;}
.h3_c00310{height:49.843750pt;}
.h1_c00310{height:50.646067pt;}
.h0_c00310{height:1122.666667pt;}
.w0_c00310{width:793.333333pt;}
.x0_c00310{left:0.000000pt;}
.x1_c00310{left:132.300013pt;}
.x2_c00310{left:370.473600pt;}
.x3_c00310{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0120ea43988bcfb2824f6ae3.woff2')format("woff");}.ff1_c00311{font-family:ff1_c00311;line-height:0.934082;font-style:normal;font-weight:normal;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_da073641fcb86bef2da020d3.woff2')format("woff");}.ff2_c00311{font-family:ff2_c00311;line-height:0.882812;font-style:normal;font-weight:normal;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_0cf9861988b00c45eda0c5eb.woff2')format("woff");}.ff3_c00311{font-family:ff3_c00311;line-height:0.756836;font-style:normal;font-weight:normal;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_df42314c2e3b5ff70134715a.woff2')format("woff");}.ff4_c00311{font-family:ff4_c00311;line-height:1.155762;font-style:normal;font-weight:normal;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_d3a5058c61465225ed1f209a.woff2')format("woff");}.ff5_c00311{font-family:ff5_c00311;line-height:0.697754;font-style:normal;font-weight: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_c00311;src:url('chunks/assets/font_e45bc0fbab1982acceff3bee.woff2')format("woff");}.ff6_c00311{font-family:ff6_c00311;line-height:1.115723;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00311;src:url('chunks/assets/font_59de36ad6dd046441dbcc54c.woff2')format("woff");}.ff7_c00311{font-family:ff7_c00311;line-height:0.864746;font-style: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);}
.v3_c00311{vertical-align:-33.000000px;}
.v2_c00311{vertical-align:-23.086200px;}
.v0_c00311{vertical-align:0.000000px;}
.v1_c00311{vertical-align:23.086200px;}
.ls6_c00311{letter-spacing:0.000000px;}
.ls2_c00311{letter-spacing:0.007200px;}
.ls7_c00311{letter-spacing:0.012000px;}
.ls1_c00311{letter-spacing:0.372600px;}
.ls5_c00311{letter-spacing:3.999999px;}
.ls0_c00311{letter-spacing:4.389000px;}
.ls3_c00311{letter-spacing:5.734440px;}
.ls4_c00311{letter-spacing:6.379200px;}
.sc__c00311{text-shadow:none;}
.sc0_c00311{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00311{-webkit-text-stroke:0px transparent;}
.sc0_c00311{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00311{word-spacing:-15.000000px;}
.ws0_c00311{word-spacing:-0.040000px;}
.ws2_c00311{word-spacing:0.000000px;}
._8_c00311{margin-left:-10.699200px;}
._13_c00311{margin-left:-4.831200px;}
._0_c00311{margin-left:-3.816000px;}
._7_c00311{margin-left:-2.131200px;}
._11_c00311{margin-left:-1.101600px;}
._9_c00311{width:1.065600px;}
._3_c00311{width:2.714400px;}
._f_c00311{width:3.722400px;}
._5_c00311{width:4.723200px;}
._17_c00311{width:5.968800px;}
._10_c00311{width:7.027200px;}
._12_c00311{width:8.164800px;}
._e_c00311{width:9.280800px;}
._b_c00311{width:10.742400px;}
._d_c00311{width:11.836800px;}
._c_c00311{width:12.859200px;}
._6_c00311{width:13.924800px;}
._4_c00311{width:15.840000px;}
._a_c00311{width:17.179200px;}
._2_c00311{width:18.597600px;}
._14_c00311{width:21.240000px;}
._1_c00311{width:22.413600px;}
._16_c00311{width:24.040800px;}
._15_c00311{width:25.113600px;}
.fc0_c00311{color:rgb(0,0,0);}
.fs3_c00311{font-size:40.000002px;}
.fs1_c00311{font-size:48.000000px;}
.fs2_c00311{font-size:60.000000px;}
.fs0_c00311{font-size:72.000000px;}
.y0_c00311{bottom:0.000000px;}
.y1d_c00311{bottom:67.500000px;}
.y23_c00311{bottom:140.250000px;}
.y22_c00311{bottom:181.500000px;}
.y21_c00311{bottom:209.250000px;}
.y20_c00311{bottom:250.500000px;}
.y1f_c00311{bottom:278.250000px;}
.y1e_c00311{bottom:327.750000px;}
.y1b_c00311{bottom:372.000000px;}
.y1a_c00311{bottom:399.000000px;}
.y19_c00311{bottom:426.000000px;}
.y18_c00311{bottom:453.000000px;}
.y17_c00311{bottom:480.000000px;}
.y16_c00311{bottom:507.000000px;}
.y15_c00311{bottom:534.000000px;}
.y14_c00311{bottom:561.000000px;}
.y13_c00311{bottom:588.000000px;}
.y12_c00311{bottom:615.000000px;}
.y11_c00311{bottom:642.000000px;}
.y10_c00311{bottom:669.000000px;}
.yf_c00311{bottom:696.000000px;}
.ye_c00311{bottom:723.000000px;}
.yd_c00311{bottom:750.000000px;}
.yc_c00311{bottom:777.000000px;}
.yb_c00311{bottom:804.000000px;}
.ya_c00311{bottom:831.000000px;}
.y9_c00311{bottom:858.000000px;}
.y8_c00311{bottom:885.000000px;}
.y7_c00311{bottom:933.000000px;}
.y6_c00311{bottom:960.000000px;}
.y5_c00311{bottom:987.000000px;}
.y4_c00311{bottom:1014.000000px;}
.y3_c00311{bottom:1041.000000px;}
.y2_c00311{bottom:1068.000000px;}
.y1_c00311{bottom:1095.000000px;}
.y1c_c00311{bottom:1194.000000px;}
.h5_c00311{height:27.480470px;}
.h4_c00311{height:44.208984px;}
.h1_c00311{height:51.257812px;}
.h6_c00311{height:53.818359px;}
.h3_c00311{height:56.074219px;}
.h2_c00311{height:56.976825px;}
.h0_c00311{height:1263.000000px;}
.w0_c00311{width:892.500000px;}
.x0_c00311{left:0.000000px;}
.x1_c00311{left:65.480310px;}
@media print{
.v3_c00311{vertical-align:-29.333333pt;}
.v2_c00311{vertical-align:-20.521067pt;}
.v0_c00311{vertical-align:0.000000pt;}
.v1_c00311{vertical-align:20.521067pt;}
.ls6_c00311{letter-spacing:0.000000pt;}
.ls2_c00311{letter-spacing:0.006400pt;}
.ls7_c00311{letter-spacing:0.010667pt;}
.ls1_c00311{letter-spacing:0.331200pt;}
.ls5_c00311{letter-spacing:3.555555pt;}
.ls0_c00311{letter-spacing:3.901333pt;}
.ls3_c00311{letter-spacing:5.097280pt;}
.ls4_c00311{letter-spacing:5.670400pt;}
.ws1_c00311{word-spacing:-13.333333pt;}
.ws0_c00311{word-spacing:-0.035556pt;}
.ws2_c00311{word-spacing:0.000000pt;}
._8_c00311{margin-left:-9.510400pt;}
._13_c00311{margin-left:-4.294400pt;}
._0_c00311{margin-left:-3.392000pt;}
._7_c00311{margin-left:-1.894400pt;}
._11_c00311{margin-left:-0.979200pt;}
._9_c00311{width:0.947200pt;}
._3_c00311{width:2.412800pt;}
._f_c00311{width:3.308800pt;}
._5_c00311{width:4.198400pt;}
._17_c00311{width:5.305600pt;}
._10_c00311{width:6.246400pt;}
._12_c00311{width:7.257600pt;}
._e_c00311{width:8.249600pt;}
._b_c00311{width:9.548800pt;}
._d_c00311{width:10.521600pt;}
._c_c00311{width:11.430400pt;}
._6_c00311{width:12.377600pt;}
._4_c00311{width:14.080000pt;}
._a_c00311{width:15.270400pt;}
._2_c00311{width:16.531200pt;}
._14_c00311{width:18.880000pt;}
._1_c00311{width:19.923200pt;}
._16_c00311{width:21.369600pt;}
._15_c00311{width:22.323200pt;}
.fs3_c00311{font-size:35.555557pt;}
.fs1_c00311{font-size:42.666667pt;}
.fs2_c00311{font-size:53.333333pt;}
.fs0_c00311{font-size:64.000000pt;}
.y0_c00311{bottom:0.000000pt;}
.y1d_c00311{bottom:60.000000pt;}
.y23_c00311{bottom:124.666667pt;}
.y22_c00311{bottom:161.333333pt;}
.y21_c00311{bottom:186.000000pt;}
.y20_c00311{bottom:222.666667pt;}
.y1f_c00311{bottom:247.333333pt;}
.y1e_c00311{bottom:291.333333pt;}
.y1b_c00311{bottom:330.666667pt;}
.y1a_c00311{bottom:354.666667pt;}
.y19_c00311{bottom:378.666667pt;}
.y18_c00311{bottom:402.666667pt;}
.y17_c00311{bottom:426.666667pt;}
.y16_c00311{bottom:450.666667pt;}
.y15_c00311{bottom:474.666667pt;}
.y14_c00311{bottom:498.666667pt;}
.y13_c00311{bottom:522.666667pt;}
.y12_c00311{bottom:546.666667pt;}
.y11_c00311{bottom:570.666667pt;}
.y10_c00311{bottom:594.666667pt;}
.yf_c00311{bottom:618.666667pt;}
.ye_c00311{bottom:642.666667pt;}
.yd_c00311{bottom:666.666667pt;}
.yc_c00311{bottom:690.666667pt;}
.yb_c00311{bottom:714.666667pt;}
.ya_c00311{bottom:738.666667pt;}
.y9_c00311{bottom:762.666667pt;}
.y8_c00311{bottom:786.666667pt;}
.y7_c00311{bottom:829.333333pt;}
.y6_c00311{bottom:853.333333pt;}
.y5_c00311{bottom:877.333333pt;}
.y4_c00311{bottom:901.333333pt;}
.y3_c00311{bottom:925.333333pt;}
.y2_c00311{bottom:949.333333pt;}
.y1_c00311{bottom:973.333333pt;}
.y1c_c00311{bottom:1061.333333pt;}
.h5_c00311{height:24.427085pt;}
.h4_c00311{height:39.296875pt;}
.h1_c00311{height:45.562500pt;}
.h6_c00311{height:47.838542pt;}
.h3_c00311{height:49.843750pt;}
.h2_c00311{height:50.646067pt;}
.h0_c00311{height:1122.666667pt;}
.w0_c00311{width:793.333333pt;}
.x0_c00311{left:0.000000pt;}
.x1_c00311{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1a3c0e68e6452357845a4a61.woff2')format("woff");}.ff1_c00312{font-family:ff1_c00312;line-height:0.934082;font-style:normal;font-weight:normal;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_e2e6617f24fc7ba9a8898ed8.woff2')format("woff");}.ff2_c00312{font-family:ff2_c00312;line-height:0.882812;font-style:normal;font-weight:normal;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_7d3a7b18199ff14da108bafc.woff2')format("woff");}.ff3_c00312{font-family:ff3_c00312;line-height:0.939453;font-style:normal;font-weight:normal;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_e8cdd3f8006a184a8979cc2b.woff2')format("woff");}.ff4_c00312{font-family:ff4_c00312;line-height:0.932129;font-style:normal;font-weight:normal;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_2ceca77c9d81ad7aa46d4099.woff2')format("woff");}.ff5_c00312{font-family:ff5_c00312;line-height:1.155762;font-style:normal;font-weight: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_c00312;src:url('chunks/assets/font_1aefcac8ae169576052b869f.woff2')format("woff");}.ff6_c00312{font-family:ff6_c00312;line-height:0.696777;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00312;src:url('chunks/assets/font_0cbd7edc884ffa7770faa0d0.woff2')format("woff");}.ff7_c00312{font-family:ff7_c00312;line-height:1.101562;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00312;src:url('chunks/assets/font_b2bc4e9166b4dab533cd81f5.woff2')format("woff");}.ff8_c00312{font-family:ff8_c00312;line-height:0.678223;font-style: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);}
.v3_c00312{vertical-align:-33.000000px;}
.v2_c00312{vertical-align:-23.086200px;}
.v0_c00312{vertical-align:0.000000px;}
.v1_c00312{vertical-align:23.086200px;}
.ls5_c00312{letter-spacing:-0.014400px;}
.ls4_c00312{letter-spacing:-0.009600px;}
.ls3_c00312{letter-spacing:0.000000px;}
.ls1_c00312{letter-spacing:0.007800px;}
.ls2_c00312{letter-spacing:0.012000px;}
.ls0_c00312{letter-spacing:31.401600px;}
.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:-0.072000px;}
.ws1_c00312{word-spacing:-0.057600px;}
.ws3_c00312{word-spacing:-0.040000px;}
.ws0_c00312{word-spacing:-0.038400px;}
.ws4_c00312{word-spacing:0.000000px;}
._19_c00312{margin-left:-11.390400px;}
._1b_c00312{margin-left:-6.091200px;}
._8_c00312{margin-left:-4.312800px;}
._a_c00312{margin-left:-2.988000px;}
._4_c00312{margin-left:-1.843200px;}
._0_c00312{width:1.944000px;}
._2_c00312{width:3.895200px;}
._6_c00312{width:5.011200px;}
._14_c00312{width:7.063200px;}
._18_c00312{width:8.388000px;}
._17_c00312{width:9.784800px;}
._1a_c00312{width:10.944000px;}
._7_c00312{width:12.240000px;}
._3_c00312{width:13.291200px;}
._1_c00312{width:15.256800px;}
._5_c00312{width:16.408800px;}
._16_c00312{width:17.416800px;}
._15_c00312{width:18.583200px;}
._9_c00312{width:21.492000px;}
._12_c00312{width:23.342400px;}
._1c_c00312{width:24.487200px;}
._10_c00312{width:25.576740px;}
._f_c00312{width:27.259200px;}
._11_c00312{width:29.044800px;}
._13_c00312{width:30.247200px;}
._b_c00312{width:34.120800px;}
._d_c00312{width:36.007200px;}
._e_c00312{width:39.060000px;}
._c_c00312{width:40.413600px;}
.fc0_c00312{color:rgb(0,0,0);}
.fs4_c00312{font-size:40.000002px;}
.fs1_c00312{font-size:48.000000px;}
.fs3_c00312{font-size:60.000000px;}
.fs0_c00312{font-size:72.000000px;}
.fs2_c00312{font-size:78.000000px;}
.y0_c00312{bottom:0.000000px;}
.y1b_c00312{bottom:67.500000px;}
.y1f_c00312{bottom:132.000000px;}
.y1e_c00312{bottom:159.750000px;}
.y1d_c00312{bottom:209.250000px;}
.y1c_c00312{bottom:258.750000px;}
.y19_c00312{bottom:342.000000px;}
.y18_c00312{bottom:369.000000px;}
.y17_c00312{bottom:396.000000px;}
.y16_c00312{bottom:423.000000px;}
.y15_c00312{bottom:450.000000px;}
.y14_c00312{bottom:477.000000px;}
.y13_c00312{bottom:504.000000px;}
.y12_c00312{bottom:531.000000px;}
.y11_c00312{bottom:558.000000px;}
.y10_c00312{bottom:604.500000px;}
.yf_c00312{bottom:675.000000px;}
.ye_c00312{bottom:702.000000px;}
.yd_c00312{bottom:729.000000px;}
.yc_c00312{bottom:777.000000px;}
.yb_c00312{bottom:804.000000px;}
.ya_c00312{bottom:831.000000px;}
.y9_c00312{bottom:858.000000px;}
.y8_c00312{bottom:885.000000px;}
.y7_c00312{bottom:912.000000px;}
.y6_c00312{bottom:939.000000px;}
.y5_c00312{bottom:987.000000px;}
.y4_c00312{bottom:1014.000000px;}
.y3_c00312{bottom:1041.000000px;}
.y2_c00312{bottom:1068.000000px;}
.y1_c00312{bottom:1095.000000px;}
.y1a_c00312{bottom:1194.000000px;}
.h5_c00312{height:26.933595px;}
.h1_c00312{height:51.257812px;}
.h6_c00312{height:52.968750px;}
.h4_c00312{height:56.074219px;}
.h3_c00312{height:56.100586px;}
.h2_c00312{height:56.976825px;}
.h0_c00312{height:1263.000000px;}
.w0_c00312{width:892.500000px;}
.x0_c00312{left:0.000000px;}
.x1_c00312{left:148.837515px;}
.x2_c00312{left:416.782800px;}
.x3_c00312{left:801.992850px;}
@media print{
.v3_c00312{vertical-align:-29.333333pt;}
.v2_c00312{vertical-align:-20.521067pt;}
.v0_c00312{vertical-align:0.000000pt;}
.v1_c00312{vertical-align:20.521067pt;}
.ls5_c00312{letter-spacing:-0.012800pt;}
.ls4_c00312{letter-spacing:-0.008533pt;}
.ls3_c00312{letter-spacing:0.000000pt;}
.ls1_c00312{letter-spacing:0.006933pt;}
.ls2_c00312{letter-spacing:0.010667pt;}
.ls0_c00312{letter-spacing:27.912533pt;}
.ws2_c00312{word-spacing:-0.064000pt;}
.ws1_c00312{word-spacing:-0.051200pt;}
.ws3_c00312{word-spacing:-0.035556pt;}
.ws0_c00312{word-spacing:-0.034133pt;}
.ws4_c00312{word-spacing:0.000000pt;}
._19_c00312{margin-left:-10.124800pt;}
._1b_c00312{margin-left:-5.414400pt;}
._8_c00312{margin-left:-3.833600pt;}
._a_c00312{margin-left:-2.656000pt;}
._4_c00312{margin-left:-1.638400pt;}
._0_c00312{width:1.728000pt;}
._2_c00312{width:3.462400pt;}
._6_c00312{width:4.454400pt;}
._14_c00312{width:6.278400pt;}
._18_c00312{width:7.456000pt;}
._17_c00312{width:8.697600pt;}
._1a_c00312{width:9.728000pt;}
._7_c00312{width:10.880000pt;}
._3_c00312{width:11.814400pt;}
._1_c00312{width:13.561600pt;}
._5_c00312{width:14.585600pt;}
._16_c00312{width:15.481600pt;}
._15_c00312{width:16.518400pt;}
._9_c00312{width:19.104000pt;}
._12_c00312{width:20.748800pt;}
._1c_c00312{width:21.766400pt;}
._10_c00312{width:22.734880pt;}
._f_c00312{width:24.230400pt;}
._11_c00312{width:25.817600pt;}
._13_c00312{width:26.886400pt;}
._b_c00312{width:30.329600pt;}
._d_c00312{width:32.006400pt;}
._e_c00312{width:34.720000pt;}
._c_c00312{width:35.923200pt;}
.fs4_c00312{font-size:35.555557pt;}
.fs1_c00312{font-size:42.666667pt;}
.fs3_c00312{font-size:53.333333pt;}
.fs0_c00312{font-size:64.000000pt;}
.fs2_c00312{font-size:69.333333pt;}
.y0_c00312{bottom:0.000000pt;}
.y1b_c00312{bottom:60.000000pt;}
.y1f_c00312{bottom:117.333333pt;}
.y1e_c00312{bottom:142.000000pt;}
.y1d_c00312{bottom:186.000000pt;}
.y1c_c00312{bottom:230.000000pt;}
.y19_c00312{bottom:304.000000pt;}
.y18_c00312{bottom:328.000000pt;}
.y17_c00312{bottom:352.000000pt;}
.y16_c00312{bottom:376.000000pt;}
.y15_c00312{bottom:400.000000pt;}
.y14_c00312{bottom:424.000000pt;}
.y13_c00312{bottom:448.000000pt;}
.y12_c00312{bottom:472.000000pt;}
.y11_c00312{bottom:496.000000pt;}
.y10_c00312{bottom:537.333333pt;}
.yf_c00312{bottom:600.000000pt;}
.ye_c00312{bottom:624.000000pt;}
.yd_c00312{bottom:648.000000pt;}
.yc_c00312{bottom:690.666667pt;}
.yb_c00312{bottom:714.666667pt;}
.ya_c00312{bottom:738.666667pt;}
.y9_c00312{bottom:762.666667pt;}
.y8_c00312{bottom:786.666667pt;}
.y7_c00312{bottom:810.666667pt;}
.y6_c00312{bottom:834.666667pt;}
.y5_c00312{bottom:877.333333pt;}
.y4_c00312{bottom:901.333333pt;}
.y3_c00312{bottom:925.333333pt;}
.y2_c00312{bottom:949.333333pt;}
.y1_c00312{bottom:973.333333pt;}
.y1a_c00312{bottom:1061.333333pt;}
.h5_c00312{height:23.940973pt;}
.h1_c00312{height:45.562500pt;}
.h6_c00312{height:47.083333pt;}
.h4_c00312{height:49.843750pt;}
.h3_c00312{height:49.867188pt;}
.h2_c00312{height:50.646067pt;}
.h0_c00312{height:1122.666667pt;}
.w0_c00312{width:793.333333pt;}
.x0_c00312{left:0.000000pt;}
.x1_c00312{left:132.300013pt;}
.x2_c00312{left:370.473600pt;}
.x3_c00312{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9f46ad46ab8574b298fef4ce.woff2')format("woff");}.ff1_c00313{font-family:ff1_c00313;line-height:0.934082;font-style:normal;font-weight:normal;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_dd8fdc8f729f87e4b2e8c8cf.woff2')format("woff");}.ff2_c00313{font-family:ff2_c00313;line-height:0.936035;font-style:normal;font-weight:normal;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_394b28954a02be561441fdac.woff2')format("woff");}.ff3_c00313{font-family:ff3_c00313;line-height:0.755859;font-style:normal;font-weight:normal;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_a9057cdf7d45680e453f5eb5.woff2')format("woff");}.ff4_c00313{font-family:ff4_c00313;line-height:1.155762;font-style: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;}
.ls1_c00313{letter-spacing:0.000000px;}
.ls0_c00313{letter-spacing:0.007200px;}
.ls2_c00313{letter-spacing:0.012000px;}
.sc__c00313{text-shadow:none;}
.sc0_c00313{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00313{-webkit-text-stroke:0px transparent;}
.sc0_c00313{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00313{word-spacing:0.000000px;}
._c_c00313{margin-left:-7.214400px;}
._4_c00313{margin-left:-4.363200px;}
._8_c00313{margin-left:-2.815200px;}
._7_c00313{margin-left:-1.252800px;}
._0_c00313{width:1.944000px;}
._9_c00313{width:3.204000px;}
._e_c00313{width:4.636800px;}
._2_c00313{width:5.932800px;}
._a_c00313{width:7.970400px;}
._13_c00313{width:9.295200px;}
._b_c00313{width:10.706400px;}
._d_c00313{width:12.708000px;}
._12_c00313{width:14.810400px;}
._10_c00313{width:15.998400px;}
._11_c00313{width:17.265600px;}
._f_c00313{width:18.784800px;}
._3_c00313{width:30.888000px;}
._1_c00313{width:34.545600px;}
._6_c00313{width:35.899200px;}
._5_c00313{width:40.514400px;}
.fc0_c00313{color:rgb(0,0,0);}
.fs1_c00313{font-size:60.000000px;}
.fs0_c00313{font-size:72.000000px;}
.y0_c00313{bottom:0.000000px;}
.y1f_c00313{bottom:67.500000px;}
.y1d_c00313{bottom:193.500000px;}
.y1c_c00313{bottom:220.500000px;}
.y1b_c00313{bottom:247.500000px;}
.y1a_c00313{bottom:274.500000px;}
.y19_c00313{bottom:301.500000px;}
.y18_c00313{bottom:348.000000px;}
.y17_c00313{bottom:417.000000px;}
.y16_c00313{bottom:444.000000px;}
.y15_c00313{bottom:471.000000px;}
.y14_c00313{bottom:519.000000px;}
.y13_c00313{bottom:546.000000px;}
.y12_c00313{bottom:573.000000px;}
.y11_c00313{bottom:600.000000px;}
.y10_c00313{bottom:627.000000px;}
.yf_c00313{bottom:654.000000px;}
.ye_c00313{bottom:702.000000px;}
.yd_c00313{bottom:729.000000px;}
.yc_c00313{bottom:756.000000px;}
.yb_c00313{bottom:804.000000px;}
.ya_c00313{bottom:831.000000px;}
.y9_c00313{bottom:858.000000px;}
.y8_c00313{bottom:885.000000px;}
.y7_c00313{bottom:912.000000px;}
.y6_c00313{bottom:939.000000px;}
.y5_c00313{bottom:966.000000px;}
.y4_c00313{bottom:993.000000px;}
.y3_c00313{bottom:1020.000000px;}
.y2_c00313{bottom:1068.000000px;}
.y1_c00313{bottom:1095.000000px;}
.y1e_c00313{bottom:1194.000000px;}
.h4_c00313{height:44.208984px;}
.h1_c00313{height:51.257812px;}
.h2_c00313{height:51.539062px;}
.h3_c00313{height:56.074219px;}
.h0_c00313{height:1263.000000px;}
.w0_c00313{width:892.500000px;}
.x0_c00313{left:0.000000px;}
.x1_c00313{left:65.480310px;}
@media print{
.v0_c00313{vertical-align:0.000000pt;}
.ls1_c00313{letter-spacing:0.000000pt;}
.ls0_c00313{letter-spacing:0.006400pt;}
.ls2_c00313{letter-spacing:0.010667pt;}
.ws0_c00313{word-spacing:0.000000pt;}
._c_c00313{margin-left:-6.412800pt;}
._4_c00313{margin-left:-3.878400pt;}
._8_c00313{margin-left:-2.502400pt;}
._7_c00313{margin-left:-1.113600pt;}
._0_c00313{width:1.728000pt;}
._9_c00313{width:2.848000pt;}
._e_c00313{width:4.121600pt;}
._2_c00313{width:5.273600pt;}
._a_c00313{width:7.084800pt;}
._13_c00313{width:8.262400pt;}
._b_c00313{width:9.516800pt;}
._d_c00313{width:11.296000pt;}
._12_c00313{width:13.164800pt;}
._10_c00313{width:14.220800pt;}
._11_c00313{width:15.347200pt;}
._f_c00313{width:16.697600pt;}
._3_c00313{width:27.456000pt;}
._1_c00313{width:30.707200pt;}
._6_c00313{width:31.910400pt;}
._5_c00313{width:36.012800pt;}
.fs1_c00313{font-size:53.333333pt;}
.fs0_c00313{font-size:64.000000pt;}
.y0_c00313{bottom:0.000000pt;}
.y1f_c00313{bottom:60.000000pt;}
.y1d_c00313{bottom:172.000000pt;}
.y1c_c00313{bottom:196.000000pt;}
.y1b_c00313{bottom:220.000000pt;}
.y1a_c00313{bottom:244.000000pt;}
.y19_c00313{bottom:268.000000pt;}
.y18_c00313{bottom:309.333333pt;}
.y17_c00313{bottom:370.666667pt;}
.y16_c00313{bottom:394.666667pt;}
.y15_c00313{bottom:418.666667pt;}
.y14_c00313{bottom:461.333333pt;}
.y13_c00313{bottom:485.333333pt;}
.y12_c00313{bottom:509.333333pt;}
.y11_c00313{bottom:533.333333pt;}
.y10_c00313{bottom:557.333333pt;}
.yf_c00313{bottom:581.333333pt;}
.ye_c00313{bottom:624.000000pt;}
.yd_c00313{bottom:648.000000pt;}
.yc_c00313{bottom:672.000000pt;}
.yb_c00313{bottom:714.666667pt;}
.ya_c00313{bottom:738.666667pt;}
.y9_c00313{bottom:762.666667pt;}
.y8_c00313{bottom:786.666667pt;}
.y7_c00313{bottom:810.666667pt;}
.y6_c00313{bottom:834.666667pt;}
.y5_c00313{bottom:858.666667pt;}
.y4_c00313{bottom:882.666667pt;}
.y3_c00313{bottom:906.666667pt;}
.y2_c00313{bottom:949.333333pt;}
.y1_c00313{bottom:973.333333pt;}
.y1e_c00313{bottom:1061.333333pt;}
.h4_c00313{height:39.296875pt;}
.h1_c00313{height:45.562500pt;}
.h2_c00313{height:45.812500pt;}
.h3_c00313{height:49.843750pt;}
.h0_c00313{height:1122.666667pt;}
.w0_c00313{width:793.333333pt;}
.x0_c00313{left:0.000000pt;}
.x1_c00313{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_91c9ba0c8cc30bb9894bc2db.woff2')format("woff");}.ff1_c00314{font-family:ff1_c00314;line-height:0.934082;font-style:normal;font-weight:normal;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_36573f071ffec459293ec823.woff2')format("woff");}.ff2_c00314{font-family:ff2_c00314;line-height:1.132812;font-style:normal;font-weight:normal;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_27c34ba19dd694533e470450.woff2')format("woff");}.ff3_c00314{font-family:ff3_c00314;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00314{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00314{vertical-align:0.000000px;}
.ls4_c00314{letter-spacing:-0.005400px;}
.ls2_c00314{letter-spacing:0.000000px;}
.ls3_c00314{letter-spacing:0.007200px;}
.ls1_c00314{letter-spacing:0.012000px;}
.ls0_c00314{letter-spacing:0.016200px;}
.sc__c00314{text-shadow:none;}
.sc0_c00314{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00314{-webkit-text-stroke:0px transparent;}
.sc0_c00314{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00314{word-spacing:-17.058600px;}
.ws1_c00314{word-spacing:0.000000px;}
._5_c00314{margin-left:-7.092000px;}
._9_c00314{margin-left:-3.981600px;}
._4_c00314{margin-left:-2.210400px;}
._d_c00314{margin-left:-1.123200px;}
._3_c00314{width:1.000800px;}
._0_c00314{width:2.210400px;}
._c_c00314{width:3.297600px;}
._1_c00314{width:4.744800px;}
._11_c00314{width:5.745600px;}
._2_c00314{width:6.804000px;}
._b_c00314{width:7.884000px;}
._6_c00314{width:9.108000px;}
._7_c00314{width:10.188000px;}
._8_c00314{width:12.506400px;}
._a_c00314{width:14.176800px;}
._10_c00314{width:15.739200px;}
._f_c00314{width:18.151200px;}
._e_c00314{width:20.800800px;}
.fc0_c00314{color:rgb(0,0,0);}
.fs1_c00314{font-size:54.000000px;}
.fs2_c00314{font-size:60.000000px;}
.fs0_c00314{font-size:72.000000px;}
.y0_c00314{bottom:0.000000px;}
.yf_c00314{bottom:10.500000px;}
.ye_c00314{bottom:28.500000px;}
.y11_c00314{bottom:67.500000px;}
.yd_c00314{bottom:129.000000px;}
.yc_c00314{bottom:756.000000px;}
.yb_c00314{bottom:783.000000px;}
.ya_c00314{bottom:810.000000px;}
.y9_c00314{bottom:837.000000px;}
.y8_c00314{bottom:864.000000px;}
.y7_c00314{bottom:891.000000px;}
.y6_c00314{bottom:939.000000px;}
.y5_c00314{bottom:966.000000px;}
.y4_c00314{bottom:993.000000px;}
.y3_c00314{bottom:1041.000000px;}
.y2_c00314{bottom:1068.000000px;}
.y1_c00314{bottom:1095.000000px;}
.y10_c00314{bottom:1194.000000px;}
.h3_c00314{height:50.756836px;}
.h1_c00314{height:51.257812px;}
.h4_c00314{height:56.074219px;}
.h2_c00314{height:595.500000px;}
.h0_c00314{height:1263.000000px;}
.w1_c00314{width:678.182250px;}
.w0_c00314{width:892.500000px;}
.x0_c00314{left:0.000000px;}
.x2_c00314{left:7.500000px;}
.x1_c00314{left:148.837515px;}
.x3_c00314{left:416.782800px;}
.x4_c00314{left:801.992850px;}
@media print{
.v0_c00314{vertical-align:0.000000pt;}
.ls4_c00314{letter-spacing:-0.004800pt;}
.ls2_c00314{letter-spacing:0.000000pt;}
.ls3_c00314{letter-spacing:0.006400pt;}
.ls1_c00314{letter-spacing:0.010667pt;}
.ls0_c00314{letter-spacing:0.014400pt;}
.ws0_c00314{word-spacing:-15.163200pt;}
.ws1_c00314{word-spacing:0.000000pt;}
._5_c00314{margin-left:-6.304000pt;}
._9_c00314{margin-left:-3.539200pt;}
._4_c00314{margin-left:-1.964800pt;}
._d_c00314{margin-left:-0.998400pt;}
._3_c00314{width:0.889600pt;}
._0_c00314{width:1.964800pt;}
._c_c00314{width:2.931200pt;}
._1_c00314{width:4.217600pt;}
._11_c00314{width:5.107200pt;}
._2_c00314{width:6.048000pt;}
._b_c00314{width:7.008000pt;}
._6_c00314{width:8.096000pt;}
._7_c00314{width:9.056000pt;}
._8_c00314{width:11.116800pt;}
._a_c00314{width:12.601600pt;}
._10_c00314{width:13.990400pt;}
._f_c00314{width:16.134400pt;}
._e_c00314{width:18.489600pt;}
.fs1_c00314{font-size:48.000000pt;}
.fs2_c00314{font-size:53.333333pt;}
.fs0_c00314{font-size:64.000000pt;}
.y0_c00314{bottom:0.000000pt;}
.yf_c00314{bottom:9.333333pt;}
.ye_c00314{bottom:25.333333pt;}
.y11_c00314{bottom:60.000000pt;}
.yd_c00314{bottom:114.666667pt;}
.yc_c00314{bottom:672.000000pt;}
.yb_c00314{bottom:696.000000pt;}
.ya_c00314{bottom:720.000000pt;}
.y9_c00314{bottom:744.000000pt;}
.y8_c00314{bottom:768.000000pt;}
.y7_c00314{bottom:792.000000pt;}
.y6_c00314{bottom:834.666667pt;}
.y5_c00314{bottom:858.666667pt;}
.y4_c00314{bottom:882.666667pt;}
.y3_c00314{bottom:925.333333pt;}
.y2_c00314{bottom:949.333333pt;}
.y1_c00314{bottom:973.333333pt;}
.y10_c00314{bottom:1061.333333pt;}
.h3_c00314{height:45.117188pt;}
.h1_c00314{height:45.562500pt;}
.h4_c00314{height:49.843750pt;}
.h2_c00314{height:529.333333pt;}
.h0_c00314{height:1122.666667pt;}
.w1_c00314{width:602.828667pt;}
.w0_c00314{width:793.333333pt;}
.x0_c00314{left:0.000000pt;}
.x2_c00314{left:6.666667pt;}
.x1_c00314{left:132.300013pt;}
.x3_c00314{left:370.473600pt;}
.x4_c00314{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6143dfd335b0e4c4d33b650a.woff2')format("woff");}.ff1_c00315{font-family:ff1_c00315;line-height:0.934082;font-style:normal;font-weight:normal;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_99ac7e02ddb9ec222c7c7527.woff2')format("woff");}.ff2_c00315{font-family:ff2_c00315;line-height:0.882812;font-style:normal;font-weight:normal;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_876a9bc98d73167407815362.woff2')format("woff");}.ff3_c00315{font-family:ff3_c00315;line-height:0.783203;font-style:normal;font-weight:normal;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_e9d765a5a2a8f9e57ed6a8e5.woff2')format("woff");}.ff4_c00315{font-family:ff4_c00315;line-height:0.755859;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00315;src:url('chunks/assets/font_22543dd292a07016444ebc6f.woff2')format("woff");}.ff5_c00315{font-family:ff5_c00315;line-height:1.155762;font-style:normal;font-weight: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_c00315;src:url('chunks/assets/font_ca3c1826e58f674c9f4b2458.woff2')format("woff");}.ff6_c00315{font-family:ff6_c00315;line-height:0.673828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00315;src:url('chunks/assets/font_f9389d66ed3a53eedee5be58.woff2')format("woff");}.ff7_c00315{font-family:ff7_c00315;line-height:1.100586;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00315;src:url('chunks/assets/font_33bcb642484abe5bfe2c75e0.woff2')format("woff");}.ff8_c00315{font-family:ff8_c00315;line-height:0.864746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00315{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00315{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3_c00315{vertical-align:-33.000000px;}
.v2_c00315{vertical-align:-23.086200px;}
.v0_c00315{vertical-align:0.000000px;}
.v1_c00315{vertical-align:23.086200px;}
.ls1_c00315{letter-spacing:-0.009600px;}
.ls0_c00315{letter-spacing:0.000000px;}
.ls2_c00315{letter-spacing:0.012000px;}
.sc__c00315{text-shadow:none;}
.sc0_c00315{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00315{-webkit-text-stroke:0px transparent;}
.sc0_c00315{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00315{word-spacing:-0.060000px;}
.ws1_c00315{word-spacing:-0.040000px;}
.ws3_c00315{word-spacing:0.000000px;}
.ws0_c00315{word-spacing:10.647600px;}
._e_c00315{margin-left:-10.238400px;}
._d_c00315{margin-left:-7.243440px;}
._f_c00315{margin-left:-4.593600px;}
._5_c00315{margin-left:-3.218400px;}
._7_c00315{margin-left:-1.288800px;}
._1_c00315{width:1.692000px;}
._3_c00315{width:3.268800px;}
._4_c00315{width:4.384800px;}
._2_c00315{width:5.752800px;}
._0_c00315{width:7.459200px;}
._c_c00315{width:8.791200px;}
._6_c00315{width:10.677600px;}
._10_c00315{width:12.038400px;}
._a_c00315{width:13.377600px;}
._8_c00315{width:14.961600px;}
._9_c00315{width:16.639200px;}
._b_c00315{width:18.057600px;}
._11_c00315{width:23.738400px;}
._16_c00315{width:24.919200px;}
._12_c00315{width:26.452800px;}
._14_c00315{width:28.101600px;}
._15_c00315{width:29.412000px;}
._13_c00315{width:31.348800px;}
.fc0_c00315{color:rgb(0,0,0);}
.fs4_c00315{font-size:40.000002px;}
.fs1_c00315{font-size:48.000000px;}
.fs2_c00315{font-size:54.000000px;}
.fs3_c00315{font-size:60.000000px;}
.fs0_c00315{font-size:72.000000px;}
.y0_c00315{bottom:0.000000px;}
.y11_c00315{bottom:12.000000px;}
.y13_c00315{bottom:67.500000px;}
.y15_c00315{bottom:132.000000px;}
.y14_c00315{bottom:159.750000px;}
.y10_c00315{bottom:208.500000px;}
.yf_c00315{bottom:675.000000px;}
.ye_c00315{bottom:702.000000px;}
.yd_c00315{bottom:729.000000px;}
.yc_c00315{bottom:777.000000px;}
.yb_c00315{bottom:804.000000px;}
.ya_c00315{bottom:831.000000px;}
.y9_c00315{bottom:858.000000px;}
.y8_c00315{bottom:885.000000px;}
.y7_c00315{bottom:912.000000px;}
.y6_c00315{bottom:939.000000px;}
.y5_c00315{bottom:966.000000px;}
.y4_c00315{bottom:1014.000000px;}
.y3_c00315{bottom:1041.000000px;}
.y2_c00315{bottom:1068.000000px;}
.y1_c00315{bottom:1095.000000px;}
.y12_c00315{bottom:1194.000000px;}
.h7_c00315{height:26.953126px;}
.h4_c00315{height:41.633789px;}
.h6_c00315{height:44.208984px;}
.h1_c00315{height:51.257812px;}
.h8_c00315{height:52.968750px;}
.h5_c00315{height:56.074219px;}
.h2_c00315{height:56.976825px;}
.h3_c00315{height:435.000000px;}
.h0_c00315{height:1263.000000px;}
.w1_c00315{width:678.182100px;}
.w0_c00315{width:892.500000px;}
.x0_c00315{left:0.000000px;}
.x1_c00315{left:65.480310px;}
.x2_c00315{left:196.207350px;}
@media print{
.v3_c00315{vertical-align:-29.333333pt;}
.v2_c00315{vertical-align:-20.521067pt;}
.v0_c00315{vertical-align:0.000000pt;}
.v1_c00315{vertical-align:20.521067pt;}
.ls1_c00315{letter-spacing:-0.008533pt;}
.ls0_c00315{letter-spacing:0.000000pt;}
.ls2_c00315{letter-spacing:0.010667pt;}
.ws2_c00315{word-spacing:-0.053333pt;}
.ws1_c00315{word-spacing:-0.035556pt;}
.ws3_c00315{word-spacing:0.000000pt;}
.ws0_c00315{word-spacing:9.464533pt;}
._e_c00315{margin-left:-9.100800pt;}
._d_c00315{margin-left:-6.438613pt;}
._f_c00315{margin-left:-4.083200pt;}
._5_c00315{margin-left:-2.860800pt;}
._7_c00315{margin-left:-1.145600pt;}
._1_c00315{width:1.504000pt;}
._3_c00315{width:2.905600pt;}
._4_c00315{width:3.897600pt;}
._2_c00315{width:5.113600pt;}
._0_c00315{width:6.630400pt;}
._c_c00315{width:7.814400pt;}
._6_c00315{width:9.491200pt;}
._10_c00315{width:10.700800pt;}
._a_c00315{width:11.891200pt;}
._8_c00315{width:13.299200pt;}
._9_c00315{width:14.790400pt;}
._b_c00315{width:16.051200pt;}
._11_c00315{width:21.100800pt;}
._16_c00315{width:22.150400pt;}
._12_c00315{width:23.513600pt;}
._14_c00315{width:24.979200pt;}
._15_c00315{width:26.144000pt;}
._13_c00315{width:27.865600pt;}
.fs4_c00315{font-size:35.555557pt;}
.fs1_c00315{font-size:42.666667pt;}
.fs2_c00315{font-size:48.000000pt;}
.fs3_c00315{font-size:53.333333pt;}
.fs0_c00315{font-size:64.000000pt;}
.y0_c00315{bottom:0.000000pt;}
.y11_c00315{bottom:10.666667pt;}
.y13_c00315{bottom:60.000000pt;}
.y15_c00315{bottom:117.333333pt;}
.y14_c00315{bottom:142.000000pt;}
.y10_c00315{bottom:185.333333pt;}
.yf_c00315{bottom:600.000000pt;}
.ye_c00315{bottom:624.000000pt;}
.yd_c00315{bottom:648.000000pt;}
.yc_c00315{bottom:690.666667pt;}
.yb_c00315{bottom:714.666667pt;}
.ya_c00315{bottom:738.666667pt;}
.y9_c00315{bottom:762.666667pt;}
.y8_c00315{bottom:786.666667pt;}
.y7_c00315{bottom:810.666667pt;}
.y6_c00315{bottom:834.666667pt;}
.y5_c00315{bottom:858.666667pt;}
.y4_c00315{bottom:901.333333pt;}
.y3_c00315{bottom:925.333333pt;}
.y2_c00315{bottom:949.333333pt;}
.y1_c00315{bottom:973.333333pt;}
.y12_c00315{bottom:1061.333333pt;}
.h7_c00315{height:23.958335pt;}
.h4_c00315{height:37.007812pt;}
.h6_c00315{height:39.296875pt;}
.h1_c00315{height:45.562500pt;}
.h8_c00315{height:47.083333pt;}
.h5_c00315{height:49.843750pt;}
.h2_c00315{height:50.646067pt;}
.h3_c00315{height:386.666667pt;}
.h0_c00315{height:1122.666667pt;}
.w1_c00315{width:602.828533pt;}
.w0_c00315{width:793.333333pt;}
.x0_c00315{left:0.000000pt;}
.x1_c00315{left:58.204720pt;}
.x2_c00315{left:174.406533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c00c31cc61aced34bcaef6a2.woff2')format("woff");}.ff1_c00316{font-family:ff1_c00316;line-height:0.933105;font-style:normal;font-weight:normal;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_c5b6008f42d216c9ea193c65.woff2')format("woff");}.ff2_c00316{font-family:ff2_c00316;line-height:0.963867;font-style:normal;font-weight:normal;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_5a92c75a4f2f4a0f9906c4e5.woff2')format("woff");}.ff3_c00316{font-family:ff3_c00316;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00316{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00316{vertical-align:0.000000px;}
.ls2_c00316{letter-spacing:0.000000px;}
.ls1_c00316{letter-spacing:0.012000px;}
.ls0_c00316{letter-spacing:6.645540px;}
.sc__c00316{text-shadow:none;}
.sc0_c00316{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00316{-webkit-text-stroke:0px transparent;}
.sc0_c00316{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00316{word-spacing:0.000000px;}
._0_c00316{margin-left:-10.584000px;}
._a_c00316{margin-left:-6.775200px;}
._9_c00316{margin-left:-5.306400px;}
._8_c00316{margin-left:-4.082400px;}
._b_c00316{margin-left:-2.642400px;}
._5_c00316{margin-left:-1.612800px;}
._3_c00316{width:1.411200px;}
._1_c00316{width:2.779200px;}
._2_c00316{width:4.514400px;}
._4_c00316{width:5.846400px;}
._7_c00316{width:7.243200px;}
._6_c00316{width:8.834400px;}
._d_c00316{width:9.957600px;}
._c_c00316{width:12.384000px;}
._e_c00316{width:13.428000px;}
.fc0_c00316{color:rgb(0,0,0);}
.fs2_c00316{font-size:54.000000px;}
.fs3_c00316{font-size:60.000000px;}
.fs0_c00316{font-size:66.000000px;}
.fs1_c00316{font-size:72.000000px;}
.y0_c00316{bottom:0.000000px;}
.y7_c00316{bottom:13.500000px;}
.y9_c00316{bottom:67.500000px;}
.y6_c00316{bottom:127.500000px;}
.y5_c00316{bottom:987.000000px;}
.y4_c00316{bottom:1014.000000px;}
.y3_c00316{bottom:1041.000000px;}
.y2_c00316{bottom:1068.000000px;}
.y1_c00316{bottom:1095.000000px;}
.y8_c00316{bottom:1194.000000px;}
.h3_c00316{height:41.633789px;}
.h1_c00316{height:51.187500px;}
.h4_c00316{height:56.074219px;}
.h2_c00316{height:828.000000px;}
.h0_c00316{height:1263.000000px;}
.w1_c00316{width:678.182250px;}
.w0_c00316{width:892.500000px;}
.x0_c00316{left:0.000000px;}
.x1_c00316{left:148.837515px;}
.x2_c00316{left:164.929200px;}
.x3_c00316{left:416.782800px;}
.x4_c00316{left:801.992850px;}
@media print{
.v0_c00316{vertical-align:0.000000pt;}
.ls2_c00316{letter-spacing:0.000000pt;}
.ls1_c00316{letter-spacing:0.010667pt;}
.ls0_c00316{letter-spacing:5.907147pt;}
.ws0_c00316{word-spacing:0.000000pt;}
._0_c00316{margin-left:-9.408000pt;}
._a_c00316{margin-left:-6.022400pt;}
._9_c00316{margin-left:-4.716800pt;}
._8_c00316{margin-left:-3.628800pt;}
._b_c00316{margin-left:-2.348800pt;}
._5_c00316{margin-left:-1.433600pt;}
._3_c00316{width:1.254400pt;}
._1_c00316{width:2.470400pt;}
._2_c00316{width:4.012800pt;}
._4_c00316{width:5.196800pt;}
._7_c00316{width:6.438400pt;}
._6_c00316{width:7.852800pt;}
._d_c00316{width:8.851200pt;}
._c_c00316{width:11.008000pt;}
._e_c00316{width:11.936000pt;}
.fs2_c00316{font-size:48.000000pt;}
.fs3_c00316{font-size:53.333333pt;}
.fs0_c00316{font-size:58.666667pt;}
.fs1_c00316{font-size:64.000000pt;}
.y0_c00316{bottom:0.000000pt;}
.y7_c00316{bottom:12.000000pt;}
.y9_c00316{bottom:60.000000pt;}
.y6_c00316{bottom:113.333333pt;}
.y5_c00316{bottom:877.333333pt;}
.y4_c00316{bottom:901.333333pt;}
.y3_c00316{bottom:925.333333pt;}
.y2_c00316{bottom:949.333333pt;}
.y1_c00316{bottom:973.333333pt;}
.y8_c00316{bottom:1061.333333pt;}
.h3_c00316{height:37.007812pt;}
.h1_c00316{height:45.500000pt;}
.h4_c00316{height:49.843750pt;}
.h2_c00316{height:736.000000pt;}
.h0_c00316{height:1122.666667pt;}
.w1_c00316{width:602.828667pt;}
.w0_c00316{width:793.333333pt;}
.x0_c00316{left:0.000000pt;}
.x1_c00316{left:132.300013pt;}
.x2_c00316{left:146.603733pt;}
.x3_c00316{left:370.473600pt;}
.x4_c00316{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_16846902b896f57bf56a491b.woff2')format("woff");}.ff1_c00317{font-family:ff1_c00317;line-height:0.934082;font-style:normal;font-weight:normal;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_5c076ea94d01f398787d4000.woff2')format("woff");}.ff2_c00317{font-family:ff2_c00317;line-height:0.987793;font-style:normal;font-weight:normal;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_89c75bce94a5feabfa147718.woff2')format("woff");}.ff3_c00317{font-family:ff3_c00317;line-height:0.755859;font-style:normal;font-weight:normal;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_b27931bcf7ac5aeca509e422.woff2')format("woff");}.ff4_c00317{font-family:ff4_c00317;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00317{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00317{vertical-align:0.000000px;}
.ls0_c00317{letter-spacing:0.000000px;}
.ls1_c00317{letter-spacing:0.012000px;}
.sc__c00317{text-shadow:none;}
.sc0_c00317{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00317{-webkit-text-stroke:0px transparent;}
.sc0_c00317{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00317{word-spacing:0.000000px;}
._0_c00317{margin-left:-10.584000px;}
._d_c00317{margin-left:-6.544800px;}
._5_c00317{margin-left:-4.226400px;}
._b_c00317{margin-left:-3.211200px;}
._3_c00317{margin-left:-1.252800px;}
._1_c00317{width:1.418400px;}
._9_c00317{width:2.923200px;}
._a_c00317{width:4.766400px;}
._7_c00317{width:5.882400px;}
._c_c00317{width:7.365600px;}
._e_c00317{width:8.524800px;}
._13_c00317{width:9.979200px;}
._10_c00317{width:11.023200px;}
._11_c00317{width:12.412800px;}
._12_c00317{width:13.680000px;}
._8_c00317{width:15.019200px;}
._f_c00317{width:16.632000px;}
._2_c00317{width:18.748800px;}
._4_c00317{width:21.535200px;}
._6_c00317{width:24.422400px;}
.fc0_c00317{color:rgb(0,0,0);}
.fs1_c00317{font-size:54.000000px;}
.fs2_c00317{font-size:60.000000px;}
.fs0_c00317{font-size:72.000000px;}
.y0_c00317{bottom:0.000000px;}
.y4_c00317{bottom:12.000000px;}
.yc_c00317{bottom:67.500000px;}
.ya_c00317{bottom:154.500000px;}
.y9_c00317{bottom:181.500000px;}
.y8_c00317{bottom:229.500000px;}
.y7_c00317{bottom:256.500000px;}
.y6_c00317{bottom:283.500000px;}
.y5_c00317{bottom:310.500000px;}
.y3_c00317{bottom:355.500000px;}
.y2_c00317{bottom:1068.000000px;}
.y1_c00317{bottom:1095.000000px;}
.yb_c00317{bottom:1194.000000px;}
.h3_c00317{height:42.292969px;}
.h5_c00317{height:44.208984px;}
.h1_c00317{height:51.257812px;}
.h4_c00317{height:56.074219px;}
.h2_c00317{height:681.000000px;}
.h0_c00317{height:1263.000000px;}
.w1_c00317{width:678.182250px;}
.w0_c00317{width:892.500000px;}
.x0_c00317{left:0.000000px;}
.x1_c00317{left:65.480310px;}
.x2_c00317{left:180.472650px;}
@media print{
.v0_c00317{vertical-align:0.000000pt;}
.ls0_c00317{letter-spacing:0.000000pt;}
.ls1_c00317{letter-spacing:0.010667pt;}
.ws0_c00317{word-spacing:0.000000pt;}
._0_c00317{margin-left:-9.408000pt;}
._d_c00317{margin-left:-5.817600pt;}
._5_c00317{margin-left:-3.756800pt;}
._b_c00317{margin-left:-2.854400pt;}
._3_c00317{margin-left:-1.113600pt;}
._1_c00317{width:1.260800pt;}
._9_c00317{width:2.598400pt;}
._a_c00317{width:4.236800pt;}
._7_c00317{width:5.228800pt;}
._c_c00317{width:6.547200pt;}
._e_c00317{width:7.577600pt;}
._13_c00317{width:8.870400pt;}
._10_c00317{width:9.798400pt;}
._11_c00317{width:11.033600pt;}
._12_c00317{width:12.160000pt;}
._8_c00317{width:13.350400pt;}
._f_c00317{width:14.784000pt;}
._2_c00317{width:16.665600pt;}
._4_c00317{width:19.142400pt;}
._6_c00317{width:21.708800pt;}
.fs1_c00317{font-size:48.000000pt;}
.fs2_c00317{font-size:53.333333pt;}
.fs0_c00317{font-size:64.000000pt;}
.y0_c00317{bottom:0.000000pt;}
.y4_c00317{bottom:10.666667pt;}
.yc_c00317{bottom:60.000000pt;}
.ya_c00317{bottom:137.333333pt;}
.y9_c00317{bottom:161.333333pt;}
.y8_c00317{bottom:204.000000pt;}
.y7_c00317{bottom:228.000000pt;}
.y6_c00317{bottom:252.000000pt;}
.y5_c00317{bottom:276.000000pt;}
.y3_c00317{bottom:316.000000pt;}
.y2_c00317{bottom:949.333333pt;}
.y1_c00317{bottom:973.333333pt;}
.yb_c00317{bottom:1061.333333pt;}
.h3_c00317{height:37.593750pt;}
.h5_c00317{height:39.296875pt;}
.h1_c00317{height:45.562500pt;}
.h4_c00317{height:49.843750pt;}
.h2_c00317{height:605.333333pt;}
.h0_c00317{height:1122.666667pt;}
.w1_c00317{width:602.828667pt;}
.w0_c00317{width:793.333333pt;}
.x0_c00317{left:0.000000pt;}
.x1_c00317{left:58.204720pt;}
.x2_c00317{left:160.420133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_616b96692b54005d7430db20.woff2')format("woff");}.ff1_c00318{font-family:ff1_c00318;line-height:0.934082;font-style:normal;font-weight:normal;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_59b474230c42c8848aba6f33.woff2')format("woff");}.ff2_c00318{font-family:ff2_c00318;line-height:0.975586;font-style:normal;font-weight:normal;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_5eca448993568150574a2923.woff2')format("woff");}.ff3_c00318{font-family:ff3_c00318;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00318{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00318{vertical-align:0.000000px;}
.ls1_c00318{letter-spacing:0.000000px;}
.ls0_c00318{letter-spacing:0.012000px;}
.sc__c00318{text-shadow:none;}
.sc0_c00318{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00318{-webkit-text-stroke:0px transparent;}
.sc0_c00318{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00318{word-spacing:0.000000px;}
._8_c00318{margin-left:-10.584000px;}
._10_c00318{margin-left:-6.969600px;}
._e_c00318{margin-left:-4.564800px;}
._1_c00318{margin-left:-3.240000px;}
._3_c00318{margin-left:-2.095200px;}
._9_c00318{margin-left:-1.087200px;}
._5_c00318{width:1.339200px;}
._7_c00318{width:2.988000px;}
._6_c00318{width:4.284000px;}
._0_c00318{width:5.623200px;}
._4_c00318{width:7.732800px;}
._2_c00318{width:8.841600px;}
._d_c00318{width:10.324800px;}
._c_c00318{width:11.664000px;}
._a_c00318{width:13.384800px;}
._b_c00318{width:14.428800px;}
._f_c00318{width:15.789600px;}
._11_c00318{width:17.532000px;}
.fc0_c00318{color:rgb(0,0,0);}
.fs1_c00318{font-size:54.000000px;}
.fs2_c00318{font-size:60.000000px;}
.fs0_c00318{font-size:72.000000px;}
.y0_c00318{bottom:0.000000px;}
.y4_c00318{bottom:12.000000px;}
.yd_c00318{bottom:67.500000px;}
.yb_c00318{bottom:141.000000px;}
.ya_c00318{bottom:168.000000px;}
.y9_c00318{bottom:195.000000px;}
.y8_c00318{bottom:222.000000px;}
.y7_c00318{bottom:249.000000px;}
.y6_c00318{bottom:276.000000px;}
.y5_c00318{bottom:303.000000px;}
.y3_c00318{bottom:348.000000px;}
.y2_c00318{bottom:1068.000000px;}
.y1_c00318{bottom:1095.000000px;}
.yc_c00318{bottom:1194.000000px;}
.h3_c00318{height:41.633789px;}
.h1_c00318{height:51.257812px;}
.h4_c00318{height:56.074219px;}
.h2_c00318{height:688.500000px;}
.h0_c00318{height:1263.000000px;}
.w1_c00318{width:678.182250px;}
.w0_c00318{width:892.500000px;}
.x0_c00318{left:0.000000px;}
.x1_c00318{left:148.837515px;}
.x2_c00318{left:171.933000px;}
.x3_c00318{left:416.782800px;}
.x4_c00318{left:801.992850px;}
@media print{
.v0_c00318{vertical-align:0.000000pt;}
.ls1_c00318{letter-spacing:0.000000pt;}
.ls0_c00318{letter-spacing:0.010667pt;}
.ws0_c00318{word-spacing:0.000000pt;}
._8_c00318{margin-left:-9.408000pt;}
._10_c00318{margin-left:-6.195200pt;}
._e_c00318{margin-left:-4.057600pt;}
._1_c00318{margin-left:-2.880000pt;}
._3_c00318{margin-left:-1.862400pt;}
._9_c00318{margin-left:-0.966400pt;}
._5_c00318{width:1.190400pt;}
._7_c00318{width:2.656000pt;}
._6_c00318{width:3.808000pt;}
._0_c00318{width:4.998400pt;}
._4_c00318{width:6.873600pt;}
._2_c00318{width:7.859200pt;}
._d_c00318{width:9.177600pt;}
._c_c00318{width:10.368000pt;}
._a_c00318{width:11.897600pt;}
._b_c00318{width:12.825600pt;}
._f_c00318{width:14.035200pt;}
._11_c00318{width:15.584000pt;}
.fs1_c00318{font-size:48.000000pt;}
.fs2_c00318{font-size:53.333333pt;}
.fs0_c00318{font-size:64.000000pt;}
.y0_c00318{bottom:0.000000pt;}
.y4_c00318{bottom:10.666667pt;}
.yd_c00318{bottom:60.000000pt;}
.yb_c00318{bottom:125.333333pt;}
.ya_c00318{bottom:149.333333pt;}
.y9_c00318{bottom:173.333333pt;}
.y8_c00318{bottom:197.333333pt;}
.y7_c00318{bottom:221.333333pt;}
.y6_c00318{bottom:245.333333pt;}
.y5_c00318{bottom:269.333333pt;}
.y3_c00318{bottom:309.333333pt;}
.y2_c00318{bottom:949.333333pt;}
.y1_c00318{bottom:973.333333pt;}
.yc_c00318{bottom:1061.333333pt;}
.h3_c00318{height:37.007812pt;}
.h1_c00318{height:45.562500pt;}
.h4_c00318{height:49.843750pt;}
.h2_c00318{height:612.000000pt;}
.h0_c00318{height:1122.666667pt;}
.w1_c00318{width:602.828667pt;}
.w0_c00318{width:793.333333pt;}
.x0_c00318{left:0.000000pt;}
.x1_c00318{left:132.300013pt;}
.x2_c00318{left:152.829333pt;}
.x3_c00318{left:370.473600pt;}
.x4_c00318{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3c5919bb9f3dc2cd2c4d0335.woff2')format("woff");}.ff1_c00319{font-family:ff1_c00319;line-height:0.975586;font-style:normal;font-weight:normal;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_2133ae171c1f691573d07e52.woff2')format("woff");}.ff2_c00319{font-family:ff2_c00319;line-height:0.934082;font-style:normal;font-weight:normal;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_26394f995b861aa278dac2db.woff2')format("woff");}.ff3_c00319{font-family:ff3_c00319;line-height:0.755859;font-style:normal;font-weight:normal;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_2278c860e1d50a43941f9716.woff2')format("woff");}.ff4_c00319{font-family:ff4_c00319;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00319{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00319{vertical-align:0.000000px;}
.ls1_c00319{letter-spacing:-0.005400px;}
.ls0_c00319{letter-spacing:0.000000px;}
.ls2_c00319{letter-spacing:0.012000px;}
.sc__c00319{text-shadow:none;}
.sc0_c00319{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00319{-webkit-text-stroke:0px transparent;}
.sc0_c00319{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00319{word-spacing:0.000000px;}
._4_c00319{margin-left:-3.844800px;}
._a_c00319{margin-left:-2.656440px;}
._8_c00319{margin-left:-1.375200px;}
._2_c00319{width:2.008800px;}
._6_c00319{width:3.247200px;}
._0_c00319{width:4.996800px;}
._3_c00319{width:7.041600px;}
._1_c00319{width:8.157600px;}
._7_c00319{width:9.936000px;}
._9_c00319{width:11.088000px;}
._5_c00319{width:13.838400px;}
.fc0_c00319{color:rgb(0,0,0);}
.fs0_c00319{font-size:54.000000px;}
.fs2_c00319{font-size:60.000000px;}
.fs1_c00319{font-size:72.000000px;}
.y0_c00319{bottom:0.000000px;}
.y2_c00319{bottom:12.000000px;}
.y8_c00319{bottom:67.500000px;}
.y6_c00319{bottom:129.000000px;}
.y5_c00319{bottom:591.000000px;}
.y4_c00319{bottom:618.000000px;}
.y3_c00319{bottom:645.000000px;}
.y1_c00319{bottom:690.000000px;}
.y7_c00319{bottom:1194.000000px;}
.h2_c00319{height:41.633789px;}
.h6_c00319{height:44.208984px;}
.h3_c00319{height:51.257812px;}
.h5_c00319{height:56.074219px;}
.h1_c00319{height:423.000000px;}
.h4_c00319{height:430.500000px;}
.h0_c00319{height:1263.000000px;}
.w2_c00319{width:678.182100px;}
.w1_c00319{width:678.182250px;}
.w0_c00319{width:892.500000px;}
.x0_c00319{left:0.000000px;}
.x1_c00319{left:66.000000px;}
.x2_c00319{left:102.023715px;}
.x3_c00319{left:265.731000px;}
@media print{
.v0_c00319{vertical-align:0.000000pt;}
.ls1_c00319{letter-spacing:-0.004800pt;}
.ls0_c00319{letter-spacing:0.000000pt;}
.ls2_c00319{letter-spacing:0.010667pt;}
.ws0_c00319{word-spacing:0.000000pt;}
._4_c00319{margin-left:-3.417600pt;}
._a_c00319{margin-left:-2.361280pt;}
._8_c00319{margin-left:-1.222400pt;}
._2_c00319{width:1.785600pt;}
._6_c00319{width:2.886400pt;}
._0_c00319{width:4.441600pt;}
._3_c00319{width:6.259200pt;}
._1_c00319{width:7.251200pt;}
._7_c00319{width:8.832000pt;}
._9_c00319{width:9.856000pt;}
._5_c00319{width:12.300800pt;}
.fs0_c00319{font-size:48.000000pt;}
.fs2_c00319{font-size:53.333333pt;}
.fs1_c00319{font-size:64.000000pt;}
.y0_c00319{bottom:0.000000pt;}
.y2_c00319{bottom:10.666667pt;}
.y8_c00319{bottom:60.000000pt;}
.y6_c00319{bottom:114.666667pt;}
.y5_c00319{bottom:525.333333pt;}
.y4_c00319{bottom:549.333333pt;}
.y3_c00319{bottom:573.333333pt;}
.y1_c00319{bottom:613.333333pt;}
.y7_c00319{bottom:1061.333333pt;}
.h2_c00319{height:37.007812pt;}
.h6_c00319{height:39.296875pt;}
.h3_c00319{height:45.562500pt;}
.h5_c00319{height:49.843750pt;}
.h1_c00319{height:376.000000pt;}
.h4_c00319{height:382.666667pt;}
.h0_c00319{height:1122.666667pt;}
.w2_c00319{width:602.828533pt;}
.w1_c00319{width:602.828667pt;}
.w0_c00319{width:793.333333pt;}
.x0_c00319{left:0.000000pt;}
.x1_c00319{left:58.666667pt;}
.x2_c00319{left:90.687747pt;}
.x3_c00319{left:236.205333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1af1bfa402ff31fa364beb8c.woff2')format("woff");}.ff1_c00320{font-family:ff1_c00320;line-height:1.163086;font-style:normal;font-weight:normal;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_6f1cc656262f550a4db4844c.woff2')format("woff");}.ff2_c00320{font-family:ff2_c00320;line-height:0.987793;font-style:normal;font-weight:normal;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_5f28cb04c81381ee444a6db4.woff2')format("woff");}.ff3_c00320{font-family:ff3_c00320;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00320{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00320{vertical-align:0.000000px;}
.ls2_c00320{letter-spacing:0.000000px;}
.ls0_c00320{letter-spacing:0.005400px;}
.ls1_c00320{letter-spacing:0.012000px;}
.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;}
}
.ws0_c00320{word-spacing:0.000000px;}
._f_c00320{margin-left:-4.118400px;}
._4_c00320{margin-left:-3.060000px;}
._0_c00320{margin-left:-1.130400px;}
._7_c00320{width:1.980000px;}
._2_c00320{width:3.268800px;}
._e_c00320{width:4.334400px;}
._9_c00320{width:5.392800px;}
._3_c00320{width:6.998400px;}
._8_c00320{width:8.186400px;}
._6_c00320{width:10.296000px;}
._1_c00320{width:11.412000px;}
._5_c00320{width:13.363200px;}
._b_c00320{width:21.672000px;}
._d_c00320{width:23.702400px;}
._c_c00320{width:24.818400px;}
._a_c00320{width:26.719200px;}
.fc0_c00320{color:rgb(0,0,0);}
.fs1_c00320{font-size:54.000000px;}
.fs2_c00320{font-size:60.000000px;}
.fs0_c00320{font-size:72.000000px;}
.y0_c00320{bottom:0.000000px;}
.ya_c00320{bottom:12.000000px;}
.y7_c00320{bottom:13.500000px;}
.y9_c00320{bottom:30.000000px;}
.y11_c00320{bottom:67.500000px;}
.yf_c00320{bottom:163.500000px;}
.ye_c00320{bottom:190.500000px;}
.yd_c00320{bottom:217.500000px;}
.yc_c00320{bottom:244.500000px;}
.yb_c00320{bottom:271.500000px;}
.y8_c00320{bottom:316.500000px;}
.y6_c00320{bottom:649.500000px;}
.y5_c00320{bottom:987.000000px;}
.y4_c00320{bottom:1014.000000px;}
.y3_c00320{bottom:1041.000000px;}
.y2_c00320{bottom:1068.000000px;}
.y1_c00320{bottom:1095.000000px;}
.y10_c00320{bottom:1194.000000px;}
.h3_c00320{height:42.292969px;}
.h5_c00320{height:56.074219px;}
.h1_c00320{height:67.746094px;}
.h2_c00320{height:306.000000px;}
.h4_c00320{height:325.500000px;}
.h0_c00320{height:1263.000000px;}
.w1_c00320{width:678.182250px;}
.w0_c00320{width:892.500000px;}
.x0_c00320{left:0.000000px;}
.x2_c00320{left:7.500000px;}
.x3_c00320{left:10.012116px;}
.x4_c00320{left:109.020900px;}
.x1_c00320{left:148.837515px;}
.x5_c00320{left:416.782800px;}
.x6_c00320{left:801.992850px;}
@media print{
.v0_c00320{vertical-align:0.000000pt;}
.ls2_c00320{letter-spacing:0.000000pt;}
.ls0_c00320{letter-spacing:0.004800pt;}
.ls1_c00320{letter-spacing:0.010667pt;}
.ws0_c00320{word-spacing:0.000000pt;}
._f_c00320{margin-left:-3.660800pt;}
._4_c00320{margin-left:-2.720000pt;}
._0_c00320{margin-left:-1.004800pt;}
._7_c00320{width:1.760000pt;}
._2_c00320{width:2.905600pt;}
._e_c00320{width:3.852800pt;}
._9_c00320{width:4.793600pt;}
._3_c00320{width:6.220800pt;}
._8_c00320{width:7.276800pt;}
._6_c00320{width:9.152000pt;}
._1_c00320{width:10.144000pt;}
._5_c00320{width:11.878400pt;}
._b_c00320{width:19.264000pt;}
._d_c00320{width:21.068800pt;}
._c_c00320{width:22.060800pt;}
._a_c00320{width:23.750400pt;}
.fs1_c00320{font-size:48.000000pt;}
.fs2_c00320{font-size:53.333333pt;}
.fs0_c00320{font-size:64.000000pt;}
.y0_c00320{bottom:0.000000pt;}
.ya_c00320{bottom:10.666667pt;}
.y7_c00320{bottom:12.000000pt;}
.y9_c00320{bottom:26.666667pt;}
.y11_c00320{bottom:60.000000pt;}
.yf_c00320{bottom:145.333333pt;}
.ye_c00320{bottom:169.333333pt;}
.yd_c00320{bottom:193.333333pt;}
.yc_c00320{bottom:217.333333pt;}
.yb_c00320{bottom:241.333333pt;}
.y8_c00320{bottom:281.333333pt;}
.y6_c00320{bottom:577.333333pt;}
.y5_c00320{bottom:877.333333pt;}
.y4_c00320{bottom:901.333333pt;}
.y3_c00320{bottom:925.333333pt;}
.y2_c00320{bottom:949.333333pt;}
.y1_c00320{bottom:973.333333pt;}
.y10_c00320{bottom:1061.333333pt;}
.h3_c00320{height:37.593750pt;}
.h5_c00320{height:49.843750pt;}
.h1_c00320{height:60.218750pt;}
.h2_c00320{height:272.000000pt;}
.h4_c00320{height:289.333333pt;}
.h0_c00320{height:1122.666667pt;}
.w1_c00320{width:602.828667pt;}
.w0_c00320{width:793.333333pt;}
.x0_c00320{left:0.000000pt;}
.x2_c00320{left:6.666667pt;}
.x3_c00320{left:8.899659pt;}
.x4_c00320{left:96.907467pt;}
.x1_c00320{left:132.300013pt;}
.x5_c00320{left:370.473600pt;}
.x6_c00320{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d4db20ccafebdafda7d7e593.woff2')format("woff");}.ff1_c00321{font-family:ff1_c00321;line-height:0.933105;font-style:normal;font-weight:normal;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_15a2e6369659b8e4fd1e2f0a.woff2')format("woff");}.ff2_c00321{font-family:ff2_c00321;line-height:0.963867;font-style:normal;font-weight:normal;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_238834d767fb4912f2a3e375.woff2')format("woff");}.ff3_c00321{font-family:ff3_c00321;line-height:0.756836;font-style:normal;font-weight:normal;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_b7d58c31790fc7ae36acb1a2.woff2')format("woff");}.ff4_c00321{font-family:ff4_c00321;line-height:1.155762;font-style: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;}
.ls0_c00321{letter-spacing:0.000000px;}
.ls1_c00321{letter-spacing:0.007200px;}
.ls2_c00321{letter-spacing:0.012000px;}
.sc__c00321{text-shadow:none;}
.sc0_c00321{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00321{-webkit-text-stroke:0px transparent;}
.sc0_c00321{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00321{word-spacing:0.000000px;}
._f_c00321{margin-left:-4.392000px;}
._a_c00321{margin-left:-3.276000px;}
._5_c00321{margin-left:-2.059200px;}
._3_c00321{margin-left:-1.029600px;}
._1_c00321{width:1.173600px;}
._6_c00321{width:2.239200px;}
._d_c00321{width:3.542400px;}
._7_c00321{width:4.780800px;}
._c_c00321{width:6.199200px;}
._8_c00321{width:7.365600px;}
._b_c00321{width:8.388000px;}
._9_c00321{width:9.972000px;}
._2_c00321{width:11.181600px;}
._0_c00321{width:12.384000px;}
._4_c00321{width:13.392000px;}
._14_c00321{width:14.594400px;}
._11_c00321{width:21.528000px;}
._13_c00321{width:23.011200px;}
._e_c00321{width:24.192000px;}
._12_c00321{width:27.460800px;}
._10_c00321{width:28.591200px;}
.fc0_c00321{color:rgb(0,0,0);}
.fs1_c00321{font-size:54.000000px;}
.fs2_c00321{font-size:60.000000px;}
.fs0_c00321{font-size:72.000000px;}
.y0_c00321{bottom:0.000000px;}
.y4_c00321{bottom:12.000000px;}
.ye_c00321{bottom:67.500000px;}
.yc_c00321{bottom:130.500000px;}
.yb_c00321{bottom:454.500000px;}
.ya_c00321{bottom:481.500000px;}
.y9_c00321{bottom:508.500000px;}
.y8_c00321{bottom:535.500000px;}
.y7_c00321{bottom:583.500000px;}
.y6_c00321{bottom:610.500000px;}
.y5_c00321{bottom:637.500000px;}
.y3_c00321{bottom:682.500000px;}
.y2_c00321{bottom:1068.000000px;}
.y1_c00321{bottom:1095.000000px;}
.yd_c00321{bottom:1194.000000px;}
.h3_c00321{height:41.633789px;}
.h6_c00321{height:44.208984px;}
.h1_c00321{height:51.187500px;}
.h5_c00321{height:56.074219px;}
.h4_c00321{height:292.500000px;}
.h2_c00321{height:354.000000px;}
.h0_c00321{height:1263.000000px;}
.w1_c00321{width:678.182100px;}
.w0_c00321{width:892.500000px;}
.x0_c00321{left:0.000000px;}
.x1_c00321{left:65.480310px;}
.x3_c00321{left:173.643600px;}
.x2_c00321{left:269.313600px;}
@media print{
.v0_c00321{vertical-align:0.000000pt;}
.ls0_c00321{letter-spacing:0.000000pt;}
.ls1_c00321{letter-spacing:0.006400pt;}
.ls2_c00321{letter-spacing:0.010667pt;}
.ws0_c00321{word-spacing:0.000000pt;}
._f_c00321{margin-left:-3.904000pt;}
._a_c00321{margin-left:-2.912000pt;}
._5_c00321{margin-left:-1.830400pt;}
._3_c00321{margin-left:-0.915200pt;}
._1_c00321{width:1.043200pt;}
._6_c00321{width:1.990400pt;}
._d_c00321{width:3.148800pt;}
._7_c00321{width:4.249600pt;}
._c_c00321{width:5.510400pt;}
._8_c00321{width:6.547200pt;}
._b_c00321{width:7.456000pt;}
._9_c00321{width:8.864000pt;}
._2_c00321{width:9.939200pt;}
._0_c00321{width:11.008000pt;}
._4_c00321{width:11.904000pt;}
._14_c00321{width:12.972800pt;}
._11_c00321{width:19.136000pt;}
._13_c00321{width:20.454400pt;}
._e_c00321{width:21.504000pt;}
._12_c00321{width:24.409600pt;}
._10_c00321{width:25.414400pt;}
.fs1_c00321{font-size:48.000000pt;}
.fs2_c00321{font-size:53.333333pt;}
.fs0_c00321{font-size:64.000000pt;}
.y0_c00321{bottom:0.000000pt;}
.y4_c00321{bottom:10.666667pt;}
.ye_c00321{bottom:60.000000pt;}
.yc_c00321{bottom:116.000000pt;}
.yb_c00321{bottom:404.000000pt;}
.ya_c00321{bottom:428.000000pt;}
.y9_c00321{bottom:452.000000pt;}
.y8_c00321{bottom:476.000000pt;}
.y7_c00321{bottom:518.666667pt;}
.y6_c00321{bottom:542.666667pt;}
.y5_c00321{bottom:566.666667pt;}
.y3_c00321{bottom:606.666667pt;}
.y2_c00321{bottom:949.333333pt;}
.y1_c00321{bottom:973.333333pt;}
.yd_c00321{bottom:1061.333333pt;}
.h3_c00321{height:37.007812pt;}
.h6_c00321{height:39.296875pt;}
.h1_c00321{height:45.500000pt;}
.h5_c00321{height:49.843750pt;}
.h4_c00321{height:260.000000pt;}
.h2_c00321{height:314.666667pt;}
.h0_c00321{height:1122.666667pt;}
.w1_c00321{width:602.828533pt;}
.w0_c00321{width:793.333333pt;}
.x0_c00321{left:0.000000pt;}
.x1_c00321{left:58.204720pt;}
.x3_c00321{left:154.349867pt;}
.x2_c00321{left:239.389867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_aa427f5a5a92bbec2bef27c0.woff2')format("woff");}.ff1_c00322{font-family:ff1_c00322;line-height:0.933105;font-style:normal;font-weight:normal;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_bba2a096b605415ddded3a55.woff2')format("woff");}.ff2_c00322{font-family:ff2_c00322;line-height:0.783203;font-style:normal;font-weight:normal;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_4ba69dc6475e6f61d2ef872c.woff2')format("woff");}.ff3_c00322{font-family:ff3_c00322;line-height:1.155762;font-style:normal;font-weight:normal;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_cb5c95bdc2f55833b8d8b915.woff2')format("woff");}.ff4_c00322{font-family:ff4_c00322;line-height:0.684082;font-style:normal;font-weight:normal;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_f904e2c13dc1b352471582df.woff2')format("woff");}.ff5_c00322{font-family:ff5_c00322;line-height:1.100586;font-style: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);}
.v2_c00322{vertical-align:-33.000000px;}
.v0_c00322{vertical-align:0.000000px;}
.v1_c00322{vertical-align:21.162000px;}
.ls3_c00322{letter-spacing:-0.008800px;}
.ls2_c00322{letter-spacing:0.000000px;}
.ls1_c00322{letter-spacing:0.012000px;}
.ls0_c00322{letter-spacing:0.016200px;}
.sc__c00322{text-shadow:none;}
.sc0_c00322{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00322{-webkit-text-stroke:0px transparent;}
.sc0_c00322{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00322{word-spacing:-18.150000px;}
.ws1_c00322{word-spacing:-12.091199px;}
.ws2_c00322{word-spacing:-0.040000px;}
.ws3_c00322{word-spacing:0.000000px;}
._d_c00322{margin-left:-6.600000px;}
._7_c00322{margin-left:-4.831200px;}
._b_c00322{margin-left:-3.649800px;}
._1_c00322{margin-left:-2.554200px;}
._5_c00322{margin-left:-1.234200px;}
._e_c00322{width:1.161600px;}
._4_c00322{width:2.290200px;}
._3_c00322{width:3.550800px;}
._9_c00322{width:4.573800px;}
._0_c00322{width:5.821200px;}
._6_c00322{width:7.081800px;}
._2_c00322{width:8.375400px;}
._c_c00322{width:9.418200px;}
._8_c00322{width:10.579800px;}
._a_c00322{width:12.573000px;}
._11_c00322{width:13.616400px;}
._f_c00322{width:14.645400px;}
._10_c00322{width:15.912600px;}
._13_c00322{width:21.612600px;}
._14_c00322{width:23.946600px;}
._16_c00322{width:25.046400px;}
._15_c00322{width:26.150400px;}
._12_c00322{width:28.755000px;}
._17_c00322{width:30.045000px;}
.fc0_c00322{color:rgb(0,0,0);}
.fs5_c00322{font-size:40.000002px;}
.fs1_c00322{font-size:43.999998px;}
.fs2_c00322{font-size:54.000000px;}
.fs4_c00322{font-size:60.000000px;}
.fs0_c00322{font-size:66.000000px;}
.fs3_c00322{font-size:72.000000px;}
.y0_c00322{bottom:0.000000px;}
.y7_c00322{bottom:12.000000px;}
.yf_c00322{bottom:67.500000px;}
.y10_c00322{bottom:140.250000px;}
.yd_c00322{bottom:178.500000px;}
.yc_c00322{bottom:538.500000px;}
.yb_c00322{bottom:565.500000px;}
.ya_c00322{bottom:592.500000px;}
.y9_c00322{bottom:619.500000px;}
.y8_c00322{bottom:646.500000px;}
.y6_c00322{bottom:691.500000px;}
.y5_c00322{bottom:994.500000px;}
.y4_c00322{bottom:1020.000000px;}
.y3_c00322{bottom:1045.500000px;}
.y2_c00322{bottom:1071.000000px;}
.y1_c00322{bottom:1096.500000px;}
.ye_c00322{bottom:1194.000000px;}
.h8_c00322{height:27.070314px;}
.h4_c00322{height:41.633789px;}
.h1_c00322{height:46.921875px;}
.h5_c00322{height:51.187500px;}
.h2_c00322{height:52.443249px;}
.h7_c00322{height:56.074219px;}
.h3_c00322{height:271.500000px;}
.h6_c00322{height:328.500000px;}
.h0_c00322{height:1263.000000px;}
.w1_c00322{width:678.182250px;}
.w0_c00322{width:892.500000px;}
.x0_c00322{left:0.000000px;}
.x1_c00322{left:148.837515px;}
.x3_c00322{left:215.491650px;}
.x2_c00322{left:264.422550px;}
.x4_c00322{left:416.782800px;}
.x5_c00322{left:801.992850px;}
@media print{
.v2_c00322{vertical-align:-29.333333pt;}
.v0_c00322{vertical-align:0.000000pt;}
.v1_c00322{vertical-align:18.810667pt;}
.ls3_c00322{letter-spacing:-0.007822pt;}
.ls2_c00322{letter-spacing:0.000000pt;}
.ls1_c00322{letter-spacing:0.010667pt;}
.ls0_c00322{letter-spacing:0.014400pt;}
.ws0_c00322{word-spacing:-16.133333pt;}
.ws1_c00322{word-spacing:-10.747733pt;}
.ws2_c00322{word-spacing:-0.035556pt;}
.ws3_c00322{word-spacing:0.000000pt;}
._d_c00322{margin-left:-5.866667pt;}
._7_c00322{margin-left:-4.294400pt;}
._b_c00322{margin-left:-3.244267pt;}
._1_c00322{margin-left:-2.270400pt;}
._5_c00322{margin-left:-1.097067pt;}
._e_c00322{width:1.032533pt;}
._4_c00322{width:2.035733pt;}
._3_c00322{width:3.156267pt;}
._9_c00322{width:4.065600pt;}
._0_c00322{width:5.174400pt;}
._6_c00322{width:6.294933pt;}
._2_c00322{width:7.444800pt;}
._c_c00322{width:8.371733pt;}
._8_c00322{width:9.404267pt;}
._a_c00322{width:11.176000pt;}
._11_c00322{width:12.103467pt;}
._f_c00322{width:13.018133pt;}
._10_c00322{width:14.144533pt;}
._13_c00322{width:19.211200pt;}
._14_c00322{width:21.285867pt;}
._16_c00322{width:22.263467pt;}
._15_c00322{width:23.244800pt;}
._12_c00322{width:25.560000pt;}
._17_c00322{width:26.706667pt;}
.fs5_c00322{font-size:35.555557pt;}
.fs1_c00322{font-size:39.111109pt;}
.fs2_c00322{font-size:48.000000pt;}
.fs4_c00322{font-size:53.333333pt;}
.fs0_c00322{font-size:58.666667pt;}
.fs3_c00322{font-size:64.000000pt;}
.y0_c00322{bottom:0.000000pt;}
.y7_c00322{bottom:10.666667pt;}
.yf_c00322{bottom:60.000000pt;}
.y10_c00322{bottom:124.666667pt;}
.yd_c00322{bottom:158.666667pt;}
.yc_c00322{bottom:478.666667pt;}
.yb_c00322{bottom:502.666667pt;}
.ya_c00322{bottom:526.666667pt;}
.y9_c00322{bottom:550.666667pt;}
.y8_c00322{bottom:574.666667pt;}
.y6_c00322{bottom:614.666667pt;}
.y5_c00322{bottom:884.000000pt;}
.y4_c00322{bottom:906.666667pt;}
.y3_c00322{bottom:929.333333pt;}
.y2_c00322{bottom:952.000000pt;}
.y1_c00322{bottom:974.666667pt;}
.ye_c00322{bottom:1061.333333pt;}
.h8_c00322{height:24.062501pt;}
.h4_c00322{height:37.007812pt;}
.h1_c00322{height:41.708333pt;}
.h5_c00322{height:45.500000pt;}
.h2_c00322{height:46.616221pt;}
.h7_c00322{height:49.843750pt;}
.h3_c00322{height:241.333333pt;}
.h6_c00322{height:292.000000pt;}
.h0_c00322{height:1122.666667pt;}
.w1_c00322{width:602.828667pt;}
.w0_c00322{width:793.333333pt;}
.x0_c00322{left:0.000000pt;}
.x1_c00322{left:132.300013pt;}
.x3_c00322{left:191.548133pt;}
.x2_c00322{left:235.042267pt;}
.x4_c00322{left:370.473600pt;}
.x5_c00322{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_aca79c9635100cf2e529bee9.woff2')format("woff");}.ff1_c00323{font-family:ff1_c00323;line-height:0.933105;font-style:normal;font-weight:normal;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_e1e3209d746d942dd65a9464.woff2')format("woff");}.ff2_c00323{font-family:ff2_c00323;line-height:0.963867;font-style:normal;font-weight:normal;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_6a27a901d0bd4626a32d24cc.woff2')format("woff");}.ff3_c00323{font-family:ff3_c00323;line-height:0.755859;font-style:normal;font-weight:normal;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_e8ac06b3dedcce6ccc97c82d.woff2')format("woff");}.ff4_c00323{font-family:ff4_c00323;line-height:1.155762;font-style: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;}
.ls0_c00323{letter-spacing:0.000000px;}
.ls1_c00323{letter-spacing:0.012000px;}
.sc__c00323{text-shadow:none;}
.sc0_c00323{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00323{-webkit-text-stroke:0px transparent;}
.sc0_c00323{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00323{word-spacing:0.000000px;}
._c_c00323{margin-left:-10.951200px;}
._6_c00323{margin-left:-4.046400px;}
._2_c00323{margin-left:-2.476800px;}
._1_c00323{margin-left:-1.418400px;}
._4_c00323{width:1.166400px;}
._0_c00323{width:2.325600px;}
._3_c00323{width:3.888000px;}
._8_c00323{width:5.090400px;}
._10_c00323{width:6.271200px;}
._11_c00323{width:7.387200px;}
._9_c00323{width:11.376000px;}
._5_c00323{width:12.657600px;}
._7_c00323{width:16.020000px;}
._a_c00323{width:18.280800px;}
._b_c00323{width:20.980800px;}
._f_c00323{width:22.096800px;}
._e_c00323{width:23.443200px;}
._d_c00323{width:24.544800px;}
.fc0_c00323{color:rgb(0,0,0);}
.fs1_c00323{font-size:54.000000px;}
.fs2_c00323{font-size:60.000000px;}
.fs0_c00323{font-size:72.000000px;}
.y0_c00323{bottom:0.000000px;}
.y7_c00323{bottom:12.000000px;}
.y9_c00323{bottom:67.500000px;}
.y6_c00323{bottom:165.000000px;}
.y5_c00323{bottom:987.000000px;}
.y4_c00323{bottom:1014.000000px;}
.y3_c00323{bottom:1041.000000px;}
.y2_c00323{bottom:1068.000000px;}
.y1_c00323{bottom:1095.000000px;}
.y8_c00323{bottom:1194.000000px;}
.h3_c00323{height:41.633789px;}
.h5_c00323{height:44.208984px;}
.h1_c00323{height:51.187500px;}
.h4_c00323{height:56.074219px;}
.h2_c00323{height:790.500000px;}
.h0_c00323{height:1263.000000px;}
.w1_c00323{width:678.182100px;}
.w0_c00323{width:892.500000px;}
.x0_c00323{left:0.000000px;}
.x1_c00323{left:65.480310px;}
.x2_c00323{left:233.948550px;}
@media print{
.v0_c00323{vertical-align:0.000000pt;}
.ls0_c00323{letter-spacing:0.000000pt;}
.ls1_c00323{letter-spacing:0.010667pt;}
.ws0_c00323{word-spacing:0.000000pt;}
._c_c00323{margin-left:-9.734400pt;}
._6_c00323{margin-left:-3.596800pt;}
._2_c00323{margin-left:-2.201600pt;}
._1_c00323{margin-left:-1.260800pt;}
._4_c00323{width:1.036800pt;}
._0_c00323{width:2.067200pt;}
._3_c00323{width:3.456000pt;}
._8_c00323{width:4.524800pt;}
._10_c00323{width:5.574400pt;}
._11_c00323{width:6.566400pt;}
._9_c00323{width:10.112000pt;}
._5_c00323{width:11.251200pt;}
._7_c00323{width:14.240000pt;}
._a_c00323{width:16.249600pt;}
._b_c00323{width:18.649600pt;}
._f_c00323{width:19.641600pt;}
._e_c00323{width:20.838400pt;}
._d_c00323{width:21.817600pt;}
.fs1_c00323{font-size:48.000000pt;}
.fs2_c00323{font-size:53.333333pt;}
.fs0_c00323{font-size:64.000000pt;}
.y0_c00323{bottom:0.000000pt;}
.y7_c00323{bottom:10.666667pt;}
.y9_c00323{bottom:60.000000pt;}
.y6_c00323{bottom:146.666667pt;}
.y5_c00323{bottom:877.333333pt;}
.y4_c00323{bottom:901.333333pt;}
.y3_c00323{bottom:925.333333pt;}
.y2_c00323{bottom:949.333333pt;}
.y1_c00323{bottom:973.333333pt;}
.y8_c00323{bottom:1061.333333pt;}
.h3_c00323{height:37.007812pt;}
.h5_c00323{height:39.296875pt;}
.h1_c00323{height:45.500000pt;}
.h4_c00323{height:49.843750pt;}
.h2_c00323{height:702.666667pt;}
.h0_c00323{height:1122.666667pt;}
.w1_c00323{width:602.828533pt;}
.w0_c00323{width:793.333333pt;}
.x0_c00323{left:0.000000pt;}
.x1_c00323{left:58.204720pt;}
.x2_c00323{left:207.954267pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5f1823f620cd409cb5dc975c.woff2')format("woff");}.ff1_c00324{font-family:ff1_c00324;line-height:0.987793;font-style:normal;font-weight:normal;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_45a0621a9764be05d8c3faa4.woff2')format("woff");}.ff2_c00324{font-family:ff2_c00324;line-height:1.163086;font-style:normal;font-weight:normal;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_9861f12a3bac49402d580832.woff2')format("woff");}.ff3_c00324{font-family:ff3_c00324;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00324{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00324{vertical-align:0.000000px;}
.ls1_c00324{letter-spacing:0.000000px;}
.ls0_c00324{letter-spacing:0.012000px;}
.sc__c00324{text-shadow:none;}
.sc0_c00324{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00324{-webkit-text-stroke:0px transparent;}
.sc0_c00324{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00324{word-spacing:0.000000px;}
._8_c00324{margin-left:-7.322400px;}
._6_c00324{margin-left:-3.801600px;}
._1_c00324{margin-left:-1.944000px;}
._4_c00324{width:1.188000px;}
._3_c00324{width:2.311200px;}
._0_c00324{width:3.751200px;}
._2_c00324{width:5.104800px;}
._5_c00324{width:6.386400px;}
._7_c00324{width:7.869600px;}
._c_c00324{width:12.916800px;}
._d_c00324{width:14.392800px;}
._b_c00324{width:15.580800px;}
._9_c00324{width:16.696800px;}
._a_c00324{width:18.633600px;}
.fc0_c00324{color:rgb(0,0,0);}
.fs0_c00324{font-size:54.000000px;}
.fs2_c00324{font-size:60.000000px;}
.fs1_c00324{font-size:72.000000px;}
.y0_c00324{bottom:0.000000px;}
.yb_c00324{bottom:12.000000px;}
.y2_c00324{bottom:13.500000px;}
.yd_c00324{bottom:67.500000px;}
.ya_c00324{bottom:127.500000px;}
.y9_c00324{bottom:631.500000px;}
.y8_c00324{bottom:658.500000px;}
.y7_c00324{bottom:685.500000px;}
.y6_c00324{bottom:712.500000px;}
.y5_c00324{bottom:739.500000px;}
.y4_c00324{bottom:787.500000px;}
.y3_c00324{bottom:814.500000px;}
.y1_c00324{bottom:859.500000px;}
.yc_c00324{bottom:1194.000000px;}
.h2_c00324{height:42.292969px;}
.h5_c00324{height:56.074219px;}
.h3_c00324{height:67.746094px;}
.h1_c00324{height:253.500000px;}
.h4_c00324{height:472.500000px;}
.h0_c00324{height:1263.000000px;}
.w1_c00324{width:678.182250px;}
.w0_c00324{width:892.500000px;}
.x0_c00324{left:0.000000px;}
.x2_c00324{left:142.625880px;}
.x1_c00324{left:148.500000px;}
.x3_c00324{left:251.746500px;}
.x4_c00324{left:416.782800px;}
.x5_c00324{left:801.992850px;}
@media print{
.v0_c00324{vertical-align:0.000000pt;}
.ls1_c00324{letter-spacing:0.000000pt;}
.ls0_c00324{letter-spacing:0.010667pt;}
.ws0_c00324{word-spacing:0.000000pt;}
._8_c00324{margin-left:-6.508800pt;}
._6_c00324{margin-left:-3.379200pt;}
._1_c00324{margin-left:-1.728000pt;}
._4_c00324{width:1.056000pt;}
._3_c00324{width:2.054400pt;}
._0_c00324{width:3.334400pt;}
._2_c00324{width:4.537600pt;}
._5_c00324{width:5.676800pt;}
._7_c00324{width:6.995200pt;}
._c_c00324{width:11.481600pt;}
._d_c00324{width:12.793600pt;}
._b_c00324{width:13.849600pt;}
._9_c00324{width:14.841600pt;}
._a_c00324{width:16.563200pt;}
.fs0_c00324{font-size:48.000000pt;}
.fs2_c00324{font-size:53.333333pt;}
.fs1_c00324{font-size:64.000000pt;}
.y0_c00324{bottom:0.000000pt;}
.yb_c00324{bottom:10.666667pt;}
.y2_c00324{bottom:12.000000pt;}
.yd_c00324{bottom:60.000000pt;}
.ya_c00324{bottom:113.333333pt;}
.y9_c00324{bottom:561.333333pt;}
.y8_c00324{bottom:585.333333pt;}
.y7_c00324{bottom:609.333333pt;}
.y6_c00324{bottom:633.333333pt;}
.y5_c00324{bottom:657.333333pt;}
.y4_c00324{bottom:700.000000pt;}
.y3_c00324{bottom:724.000000pt;}
.y1_c00324{bottom:764.000000pt;}
.yc_c00324{bottom:1061.333333pt;}
.h2_c00324{height:37.593750pt;}
.h5_c00324{height:49.843750pt;}
.h3_c00324{height:60.218750pt;}
.h1_c00324{height:225.333333pt;}
.h4_c00324{height:420.000000pt;}
.h0_c00324{height:1122.666667pt;}
.w1_c00324{width:602.828667pt;}
.w0_c00324{width:793.333333pt;}
.x0_c00324{left:0.000000pt;}
.x2_c00324{left:126.778560pt;}
.x1_c00324{left:132.000000pt;}
.x3_c00324{left:223.774667pt;}
.x4_c00324{left:370.473600pt;}
.x5_c00324{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_dc7cbbdef58e418fa3e6ec59.woff2')format("woff");}.ff1_c00325{font-family:ff1_c00325;line-height:0.934082;font-style:normal;font-weight:normal;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_78fa105cabda21c09552c727.woff2')format("woff");}.ff2_c00325{font-family:ff2_c00325;line-height:0.976074;font-style:normal;font-weight:normal;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_f37f3304958fc92c42d21c40.woff2')format("woff");}.ff3_c00325{font-family:ff3_c00325;line-height:0.755859;font-style:normal;font-weight:normal;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_4edee3a3d18bf0bd024116b6.woff2')format("woff");}.ff4_c00325{font-family:ff4_c00325;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00325{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00325{vertical-align:0.000000px;}
.ls0_c00325{letter-spacing:0.000000px;}
.ls1_c00325{letter-spacing:0.012000px;}
.sc__c00325{text-shadow:none;}
.sc0_c00325{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00325{-webkit-text-stroke:0px transparent;}
.sc0_c00325{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00325{word-spacing:0.000000px;}
._14_c00325{margin-left:-10.648800px;}
._15_c00325{margin-left:-7.214400px;}
._9_c00325{margin-left:-4.219200px;}
._16_c00325{margin-left:-2.851200px;}
._0_c00325{margin-left:-1.814400px;}
._7_c00325{width:1.252800px;}
._3_c00325{width:2.642400px;}
._c_c00325{width:3.844800px;}
._5_c00325{width:4.881600px;}
._6_c00325{width:6.588000px;}
._13_c00325{width:7.660800px;}
._4_c00325{width:8.791200px;}
._8_c00325{width:10.252800px;}
._2_c00325{width:11.505600px;}
._1_c00325{width:13.262400px;}
._12_c00325{width:14.400000px;}
._a_c00325{width:15.746400px;}
._b_c00325{width:17.748000px;}
._11_c00325{width:25.552800px;}
._10_c00325{width:28.692000px;}
._e_c00325{width:29.937600px;}
._d_c00325{width:31.730400px;}
._f_c00325{width:34.149600px;}
.fc0_c00325{color:rgb(0,0,0);}
.fs1_c00325{font-size:54.000000px;}
.fs2_c00325{font-size:60.000000px;}
.fs0_c00325{font-size:72.000000px;}
.y0_c00325{bottom:0.000000px;}
.y14_c00325{bottom:12.000000px;}
.y16_c00325{bottom:67.500000px;}
.y13_c00325{bottom:138.000000px;}
.y12_c00325{bottom:615.000000px;}
.y11_c00325{bottom:642.000000px;}
.y10_c00325{bottom:669.000000px;}
.yf_c00325{bottom:696.000000px;}
.ye_c00325{bottom:723.000000px;}
.yd_c00325{bottom:750.000000px;}
.yc_c00325{bottom:777.000000px;}
.yb_c00325{bottom:825.000000px;}
.ya_c00325{bottom:852.000000px;}
.y9_c00325{bottom:879.000000px;}
.y8_c00325{bottom:906.000000px;}
.y7_c00325{bottom:933.000000px;}
.y6_c00325{bottom:960.000000px;}
.y5_c00325{bottom:987.000000px;}
.y4_c00325{bottom:1014.000000px;}
.y3_c00325{bottom:1041.000000px;}
.y2_c00325{bottom:1068.000000px;}
.y1_c00325{bottom:1095.000000px;}
.y15_c00325{bottom:1194.000000px;}
.h3_c00325{height:42.292969px;}
.h5_c00325{height:44.208984px;}
.h1_c00325{height:51.257812px;}
.h4_c00325{height:56.074219px;}
.h2_c00325{height:445.500000px;}
.h0_c00325{height:1263.000000px;}
.w1_c00325{width:678.182250px;}
.w0_c00325{width:892.500000px;}
.x0_c00325{left:0.000000px;}
.x1_c00325{left:65.480310px;}
.x2_c00325{left:117.349635px;}
@media print{
.v0_c00325{vertical-align:0.000000pt;}
.ls0_c00325{letter-spacing:0.000000pt;}
.ls1_c00325{letter-spacing:0.010667pt;}
.ws0_c00325{word-spacing:0.000000pt;}
._14_c00325{margin-left:-9.465600pt;}
._15_c00325{margin-left:-6.412800pt;}
._9_c00325{margin-left:-3.750400pt;}
._16_c00325{margin-left:-2.534400pt;}
._0_c00325{margin-left:-1.612800pt;}
._7_c00325{width:1.113600pt;}
._3_c00325{width:2.348800pt;}
._c_c00325{width:3.417600pt;}
._5_c00325{width:4.339200pt;}
._6_c00325{width:5.856000pt;}
._13_c00325{width:6.809600pt;}
._4_c00325{width:7.814400pt;}
._8_c00325{width:9.113600pt;}
._2_c00325{width:10.227200pt;}
._1_c00325{width:11.788800pt;}
._12_c00325{width:12.800000pt;}
._a_c00325{width:13.996800pt;}
._b_c00325{width:15.776000pt;}
._11_c00325{width:22.713600pt;}
._10_c00325{width:25.504000pt;}
._e_c00325{width:26.611200pt;}
._d_c00325{width:28.204800pt;}
._f_c00325{width:30.355200pt;}
.fs1_c00325{font-size:48.000000pt;}
.fs2_c00325{font-size:53.333333pt;}
.fs0_c00325{font-size:64.000000pt;}
.y0_c00325{bottom:0.000000pt;}
.y14_c00325{bottom:10.666667pt;}
.y16_c00325{bottom:60.000000pt;}
.y13_c00325{bottom:122.666667pt;}
.y12_c00325{bottom:546.666667pt;}
.y11_c00325{bottom:570.666667pt;}
.y10_c00325{bottom:594.666667pt;}
.yf_c00325{bottom:618.666667pt;}
.ye_c00325{bottom:642.666667pt;}
.yd_c00325{bottom:666.666667pt;}
.yc_c00325{bottom:690.666667pt;}
.yb_c00325{bottom:733.333333pt;}
.ya_c00325{bottom:757.333333pt;}
.y9_c00325{bottom:781.333333pt;}
.y8_c00325{bottom:805.333333pt;}
.y7_c00325{bottom:829.333333pt;}
.y6_c00325{bottom:853.333333pt;}
.y5_c00325{bottom:877.333333pt;}
.y4_c00325{bottom:901.333333pt;}
.y3_c00325{bottom:925.333333pt;}
.y2_c00325{bottom:949.333333pt;}
.y1_c00325{bottom:973.333333pt;}
.y15_c00325{bottom:1061.333333pt;}
.h3_c00325{height:37.593750pt;}
.h5_c00325{height:39.296875pt;}
.h1_c00325{height:45.562500pt;}
.h4_c00325{height:49.843750pt;}
.h2_c00325{height:396.000000pt;}
.h0_c00325{height:1122.666667pt;}
.w1_c00325{width:602.828667pt;}
.w0_c00325{width:793.333333pt;}
.x0_c00325{left:0.000000pt;}
.x1_c00325{left:58.204720pt;}
.x2_c00325{left:104.310787pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_db156c7e6e6a1ca43274d7cd.woff2')format("woff");}.ff1_c00326{font-family:ff1_c00326;line-height:1.144531;font-style:normal;font-weight:normal;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_1611c09cbe92345b1a900a28.woff2')format("woff");}.ff2_c00326{font-family:ff2_c00326;line-height:0.933105;font-style:normal;font-weight:normal;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_9939ae5d14edb80c0e530c95.woff2')format("woff");}.ff3_c00326{font-family:ff3_c00326;line-height:1.155762;font-style: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;}
.ls1_c00326{letter-spacing:0.000000px;}
.ls0_c00326{letter-spacing:0.012000px;}
.sc__c00326{text-shadow:none;}
.sc0_c00326{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00326{-webkit-text-stroke:0px transparent;}
.sc0_c00326{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00326{word-spacing:-19.800000px;}
.ws1_c00326{word-spacing:0.000000px;}
._b_c00326{margin-left:-6.926400px;}
._0_c00326{margin-left:-3.945600px;}
._c_c00326{margin-left:-2.628000px;}
._5_c00326{margin-left:-1.605600px;}
._1_c00326{width:1.540800px;}
._7_c00326{width:3.506400px;}
._8_c00326{width:5.090400px;}
._a_c00326{width:6.696000px;}
._9_c00326{width:9.036000px;}
._2_c00326{width:10.663200px;}
._3_c00326{width:12.211200px;}
._6_c00326{width:13.802400px;}
._4_c00326{width:16.142400px;}
.fc0_c00326{color:rgb(0,0,0);}
.fs0_c00326{font-size:54.000000px;}
.fs2_c00326{font-size:60.000000px;}
.fs1_c00326{font-size:72.000000px;}
.y0_c00326{bottom:0.000000px;}
.y2_c00326{bottom:12.000000px;}
.yd_c00326{bottom:67.500000px;}
.yb_c00326{bottom:132.000000px;}
.ya_c00326{bottom:448.500000px;}
.y9_c00326{bottom:475.500000px;}
.y8_c00326{bottom:502.500000px;}
.y7_c00326{bottom:529.500000px;}
.y6_c00326{bottom:556.500000px;}
.y5_c00326{bottom:583.500000px;}
.y4_c00326{bottom:631.500000px;}
.y3_c00326{bottom:658.500000px;}
.y1_c00326{bottom:703.500000px;}
.yc_c00326{bottom:1194.000000px;}
.h2_c00326{height:50.756836px;}
.h3_c00326{height:51.187500px;}
.h5_c00326{height:56.074219px;}
.h4_c00326{height:285.000000px;}
.h1_c00326{height:409.500000px;}
.h0_c00326{height:1263.000000px;}
.w1_c00326{width:678.182250px;}
.w0_c00326{width:892.500000px;}
.x0_c00326{left:0.000000px;}
.x3_c00326{left:82.149420px;}
.x2_c00326{left:122.151765px;}
.x1_c00326{left:148.500000px;}
.x4_c00326{left:416.782800px;}
.x5_c00326{left:801.992850px;}
@media print{
.v0_c00326{vertical-align:0.000000pt;}
.ls1_c00326{letter-spacing:0.000000pt;}
.ls0_c00326{letter-spacing:0.010667pt;}
.ws0_c00326{word-spacing:-17.600000pt;}
.ws1_c00326{word-spacing:0.000000pt;}
._b_c00326{margin-left:-6.156800pt;}
._0_c00326{margin-left:-3.507200pt;}
._c_c00326{margin-left:-2.336000pt;}
._5_c00326{margin-left:-1.427200pt;}
._1_c00326{width:1.369600pt;}
._7_c00326{width:3.116800pt;}
._8_c00326{width:4.524800pt;}
._a_c00326{width:5.952000pt;}
._9_c00326{width:8.032000pt;}
._2_c00326{width:9.478400pt;}
._3_c00326{width:10.854400pt;}
._6_c00326{width:12.268800pt;}
._4_c00326{width:14.348800pt;}
.fs0_c00326{font-size:48.000000pt;}
.fs2_c00326{font-size:53.333333pt;}
.fs1_c00326{font-size:64.000000pt;}
.y0_c00326{bottom:0.000000pt;}
.y2_c00326{bottom:10.666667pt;}
.yd_c00326{bottom:60.000000pt;}
.yb_c00326{bottom:117.333333pt;}
.ya_c00326{bottom:398.666667pt;}
.y9_c00326{bottom:422.666667pt;}
.y8_c00326{bottom:446.666667pt;}
.y7_c00326{bottom:470.666667pt;}
.y6_c00326{bottom:494.666667pt;}
.y5_c00326{bottom:518.666667pt;}
.y4_c00326{bottom:561.333333pt;}
.y3_c00326{bottom:585.333333pt;}
.y1_c00326{bottom:625.333333pt;}
.yc_c00326{bottom:1061.333333pt;}
.h2_c00326{height:45.117188pt;}
.h3_c00326{height:45.500000pt;}
.h5_c00326{height:49.843750pt;}
.h4_c00326{height:253.333333pt;}
.h1_c00326{height:364.000000pt;}
.h0_c00326{height:1122.666667pt;}
.w1_c00326{width:602.828667pt;}
.w0_c00326{width:793.333333pt;}
.x0_c00326{left:0.000000pt;}
.x3_c00326{left:73.021707pt;}
.x2_c00326{left:108.579347pt;}
.x1_c00326{left:132.000000pt;}
.x4_c00326{left:370.473600pt;}
.x5_c00326{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2dbc5d51f3ae29e56531d8e3.woff2')format("woff");}.ff1_c00327{font-family:ff1_c00327;line-height:0.934082;font-style:normal;font-weight:normal;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_e932b09975af359321a5eba8.woff2')format("woff");}.ff2_c00327{font-family:ff2_c00327;line-height:0.975586;font-style:normal;font-weight:normal;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_a017e55ca1c18aacb194b53c.woff2')format("woff");}.ff3_c00327{font-family:ff3_c00327;line-height:0.755859;font-style:normal;font-weight:normal;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_83096d5dec9ac75efa6f1e8b.woff2')format("woff");}.ff4_c00327{font-family:ff4_c00327;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00327{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00327{vertical-align:0.000000px;}
.ls0_c00327{letter-spacing:0.000000px;}
.ls1_c00327{letter-spacing:0.012000px;}
.sc__c00327{text-shadow:none;}
.sc0_c00327{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00327{-webkit-text-stroke:0px transparent;}
.sc0_c00327{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00327{word-spacing:0.000000px;}
._7_c00327{margin-left:-6.580800px;}
._12_c00327{margin-left:-4.075200px;}
._3_c00327{margin-left:-3.024000px;}
._6_c00327{margin-left:-1.425600px;}
._1_c00327{width:1.108800px;}
._5_c00327{width:2.988000px;}
._2_c00327{width:4.010400px;}
._0_c00327{width:5.112000px;}
._e_c00327{width:6.184800px;}
._4_c00327{width:8.186400px;}
._d_c00327{width:9.388800px;}
._a_c00327{width:12.088800px;}
._9_c00327{width:13.910400px;}
._8_c00327{width:15.012000px;}
._c_c00327{width:16.567200px;}
._b_c00327{width:18.000000px;}
._11_c00327{width:23.385600px;}
._10_c00327{width:25.315200px;}
._f_c00327{width:26.488800px;}
._13_c00327{width:30.052800px;}
.fc0_c00327{color:rgb(0,0,0);}
.fs1_c00327{font-size:54.000000px;}
.fs2_c00327{font-size:60.000000px;}
.fs0_c00327{font-size:72.000000px;}
.y0_c00327{bottom:0.000000px;}
.y3_c00327{bottom:12.000000px;}
.yb_c00327{bottom:67.500000px;}
.y9_c00327{bottom:132.000000px;}
.y8_c00327{bottom:621.000000px;}
.y7_c00327{bottom:648.000000px;}
.y6_c00327{bottom:675.000000px;}
.y5_c00327{bottom:702.000000px;}
.y4_c00327{bottom:729.000000px;}
.y2_c00327{bottom:774.000000px;}
.y1_c00327{bottom:1095.000000px;}
.ya_c00327{bottom:1194.000000px;}
.h3_c00327{height:41.633789px;}
.h6_c00327{height:44.208984px;}
.h1_c00327{height:51.257812px;}
.h5_c00327{height:56.074219px;}
.h2_c00327{height:289.500000px;}
.h4_c00327{height:457.500000px;}
.h0_c00327{height:1263.000000px;}
.w1_c00327{width:678.182100px;}
.w0_c00327{width:892.500000px;}
.x0_c00327{left:0.000000px;}
.x1_c00327{left:65.480310px;}
.x2_c00327{left:123.367935px;}
.x3_c00327{left:250.602750px;}
@media print{
.v0_c00327{vertical-align:0.000000pt;}
.ls0_c00327{letter-spacing:0.000000pt;}
.ls1_c00327{letter-spacing:0.010667pt;}
.ws0_c00327{word-spacing:0.000000pt;}
._7_c00327{margin-left:-5.849600pt;}
._12_c00327{margin-left:-3.622400pt;}
._3_c00327{margin-left:-2.688000pt;}
._6_c00327{margin-left:-1.267200pt;}
._1_c00327{width:0.985600pt;}
._5_c00327{width:2.656000pt;}
._2_c00327{width:3.564800pt;}
._0_c00327{width:4.544000pt;}
._e_c00327{width:5.497600pt;}
._4_c00327{width:7.276800pt;}
._d_c00327{width:8.345600pt;}
._a_c00327{width:10.745600pt;}
._9_c00327{width:12.364800pt;}
._8_c00327{width:13.344000pt;}
._c_c00327{width:14.726400pt;}
._b_c00327{width:16.000000pt;}
._11_c00327{width:20.787200pt;}
._10_c00327{width:22.502400pt;}
._f_c00327{width:23.545600pt;}
._13_c00327{width:26.713600pt;}
.fs1_c00327{font-size:48.000000pt;}
.fs2_c00327{font-size:53.333333pt;}
.fs0_c00327{font-size:64.000000pt;}
.y0_c00327{bottom:0.000000pt;}
.y3_c00327{bottom:10.666667pt;}
.yb_c00327{bottom:60.000000pt;}
.y9_c00327{bottom:117.333333pt;}
.y8_c00327{bottom:552.000000pt;}
.y7_c00327{bottom:576.000000pt;}
.y6_c00327{bottom:600.000000pt;}
.y5_c00327{bottom:624.000000pt;}
.y4_c00327{bottom:648.000000pt;}
.y2_c00327{bottom:688.000000pt;}
.y1_c00327{bottom:973.333333pt;}
.ya_c00327{bottom:1061.333333pt;}
.h3_c00327{height:37.007812pt;}
.h6_c00327{height:39.296875pt;}
.h1_c00327{height:45.562500pt;}
.h5_c00327{height:49.843750pt;}
.h2_c00327{height:257.333333pt;}
.h4_c00327{height:406.666667pt;}
.h0_c00327{height:1122.666667pt;}
.w1_c00327{width:602.828533pt;}
.w0_c00327{width:793.333333pt;}
.x0_c00327{left:0.000000pt;}
.x1_c00327{left:58.204720pt;}
.x2_c00327{left:109.660387pt;}
.x3_c00327{left:222.758000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_553a3df6cd2c70e12f8426d0.woff2')format("woff");}.ff1_c00328{font-family:ff1_c00328;line-height:0.934082;font-style:normal;font-weight:normal;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_d75bf5bab7c08d109da5ace4.woff2')format("woff");}.ff2_c00328{font-family:ff2_c00328;line-height:0.936035;font-style:normal;font-weight:normal;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_cc1373bbad53be508815b6d1.woff2')format("woff");}.ff3_c00328{font-family:ff3_c00328;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00328{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00328{vertical-align:0.000000px;}
.ls1_c00328{letter-spacing:0.000000px;}
.ls0_c00328{letter-spacing:0.012000px;}
.sc__c00328{text-shadow:none;}
.sc0_c00328{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00328{-webkit-text-stroke:0px transparent;}
.sc0_c00328{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00328{word-spacing:-19.800000px;}
.ws1_c00328{word-spacing:0.000000px;}
._13_c00328{margin-left:-9.921600px;}
._14_c00328{margin-left:-7.214400px;}
._9_c00328{margin-left:-4.125600px;}
._7_c00328{margin-left:-2.239200px;}
._2_c00328{margin-left:-1.000800px;}
._1_c00328{width:1.447200px;}
._0_c00328{width:2.836800px;}
._3_c00328{width:3.880800px;}
._4_c00328{width:5.292000px;}
._11_c00328{width:6.357600px;}
._10_c00328{width:7.934400px;}
._12_c00328{width:9.410400px;}
._15_c00328{width:10.447200px;}
._f_c00328{width:11.858400px;}
._d_c00328{width:13.716000px;}
._e_c00328{width:14.774400px;}
._c_c00328{width:16.221600px;}
._5_c00328{width:17.287200px;}
._6_c00328{width:18.748800px;}
._8_c00328{width:21.067200px;}
._a_c00328{width:22.917600px;}
._b_c00328{width:24.746400px;}
._16_c00328{width:28.123200px;}
._17_c00328{width:30.276000px;}
.fc0_c00328{color:rgb(0,0,0);}
.fs1_c00328{font-size:60.000000px;}
.fs0_c00328{font-size:72.000000px;}
.y0_c00328{bottom:0.000000px;}
.y1a_c00328{bottom:67.500000px;}
.y18_c00328{bottom:370.500000px;}
.y17_c00328{bottom:397.500000px;}
.y16_c00328{bottom:424.500000px;}
.y15_c00328{bottom:451.500000px;}
.y14_c00328{bottom:478.500000px;}
.y13_c00328{bottom:505.500000px;}
.y12_c00328{bottom:532.500000px;}
.y11_c00328{bottom:559.500000px;}
.y10_c00328{bottom:586.500000px;}
.yf_c00328{bottom:634.500000px;}
.ye_c00328{bottom:661.500000px;}
.yd_c00328{bottom:688.500000px;}
.yc_c00328{bottom:715.500000px;}
.yb_c00328{bottom:742.500000px;}
.ya_c00328{bottom:790.500000px;}
.y9_c00328{bottom:817.500000px;}
.y8_c00328{bottom:844.500000px;}
.y7_c00328{bottom:871.500000px;}
.y6_c00328{bottom:918.000000px;}
.y5_c00328{bottom:987.000000px;}
.y4_c00328{bottom:1014.000000px;}
.y3_c00328{bottom:1041.000000px;}
.y2_c00328{bottom:1068.000000px;}
.y1_c00328{bottom:1095.000000px;}
.y19_c00328{bottom:1194.000000px;}
.h1_c00328{height:51.257812px;}
.h2_c00328{height:51.539062px;}
.h3_c00328{height:56.074219px;}
.h0_c00328{height:1263.000000px;}
.w0_c00328{width:892.500000px;}
.x0_c00328{left:0.000000px;}
.x1_c00328{left:148.837515px;}
.x2_c00328{left:416.782800px;}
.x3_c00328{left:801.992850px;}
@media print{
.v0_c00328{vertical-align:0.000000pt;}
.ls1_c00328{letter-spacing:0.000000pt;}
.ls0_c00328{letter-spacing:0.010667pt;}
.ws0_c00328{word-spacing:-17.600000pt;}
.ws1_c00328{word-spacing:0.000000pt;}
._13_c00328{margin-left:-8.819200pt;}
._14_c00328{margin-left:-6.412800pt;}
._9_c00328{margin-left:-3.667200pt;}
._7_c00328{margin-left:-1.990400pt;}
._2_c00328{margin-left:-0.889600pt;}
._1_c00328{width:1.286400pt;}
._0_c00328{width:2.521600pt;}
._3_c00328{width:3.449600pt;}
._4_c00328{width:4.704000pt;}
._11_c00328{width:5.651200pt;}
._10_c00328{width:7.052800pt;}
._12_c00328{width:8.364800pt;}
._15_c00328{width:9.286400pt;}
._f_c00328{width:10.540800pt;}
._d_c00328{width:12.192000pt;}
._e_c00328{width:13.132800pt;}
._c_c00328{width:14.419200pt;}
._5_c00328{width:15.366400pt;}
._6_c00328{width:16.665600pt;}
._8_c00328{width:18.726400pt;}
._a_c00328{width:20.371200pt;}
._b_c00328{width:21.996800pt;}
._16_c00328{width:24.998400pt;}
._17_c00328{width:26.912000pt;}
.fs1_c00328{font-size:53.333333pt;}
.fs0_c00328{font-size:64.000000pt;}
.y0_c00328{bottom:0.000000pt;}
.y1a_c00328{bottom:60.000000pt;}
.y18_c00328{bottom:329.333333pt;}
.y17_c00328{bottom:353.333333pt;}
.y16_c00328{bottom:377.333333pt;}
.y15_c00328{bottom:401.333333pt;}
.y14_c00328{bottom:425.333333pt;}
.y13_c00328{bottom:449.333333pt;}
.y12_c00328{bottom:473.333333pt;}
.y11_c00328{bottom:497.333333pt;}
.y10_c00328{bottom:521.333333pt;}
.yf_c00328{bottom:564.000000pt;}
.ye_c00328{bottom:588.000000pt;}
.yd_c00328{bottom:612.000000pt;}
.yc_c00328{bottom:636.000000pt;}
.yb_c00328{bottom:660.000000pt;}
.ya_c00328{bottom:702.666667pt;}
.y9_c00328{bottom:726.666667pt;}
.y8_c00328{bottom:750.666667pt;}
.y7_c00328{bottom:774.666667pt;}
.y6_c00328{bottom:816.000000pt;}
.y5_c00328{bottom:877.333333pt;}
.y4_c00328{bottom:901.333333pt;}
.y3_c00328{bottom:925.333333pt;}
.y2_c00328{bottom:949.333333pt;}
.y1_c00328{bottom:973.333333pt;}
.y19_c00328{bottom:1061.333333pt;}
.h1_c00328{height:45.562500pt;}
.h2_c00328{height:45.812500pt;}
.h3_c00328{height:49.843750pt;}
.h0_c00328{height:1122.666667pt;}
.w0_c00328{width:793.333333pt;}
.x0_c00328{left:0.000000pt;}
.x1_c00328{left:132.300013pt;}
.x2_c00328{left:370.473600pt;}
.x3_c00328{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b1f1f8d066dfb758c0d0962e.woff2')format("woff");}.ff1_c00329{font-family:ff1_c00329;line-height:0.783203;font-style:normal;font-weight:normal;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_55f17c1cca125523eb256d4d.woff2')format("woff");}.ff2_c00329{font-family:ff2_c00329;line-height:0.933105;font-style:normal;font-weight:normal;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_e0e8fbe0242b9122d3fd1b6e.woff2')format("woff");}.ff3_c00329{font-family:ff3_c00329;line-height:0.755859;font-style:normal;font-weight:normal;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_841d60c96c6ffad95100c915.woff2')format("woff");}.ff4_c00329{font-family:ff4_c00329;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00329{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00329{vertical-align:0.000000px;}
.ls0_c00329{letter-spacing:0.000000px;}
.ls1_c00329{letter-spacing:0.012000px;}
.sc__c00329{text-shadow:none;}
.sc0_c00329{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00329{-webkit-text-stroke:0px transparent;}
.sc0_c00329{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00329{word-spacing:0.000000px;}
._6_c00329{margin-left:-3.959640px;}
._4_c00329{margin-left:-2.541600px;}
._2_c00329{margin-left:-1.000800px;}
._5_c00329{width:1.008000px;}
._1_c00329{width:3.074400px;}
._0_c00329{width:4.651200px;}
._3_c00329{width:6.501600px;}
.fc0_c00329{color:rgb(0,0,0);}
.fs0_c00329{font-size:54.000000px;}
.fs2_c00329{font-size:60.000000px;}
.fs1_c00329{font-size:72.000000px;}
.y0_c00329{bottom:0.000000px;}
.y2_c00329{bottom:12.000000px;}
.y7_c00329{bottom:67.500000px;}
.y5_c00329{bottom:136.500000px;}
.y4_c00329{bottom:163.500000px;}
.y3_c00329{bottom:190.500000px;}
.y1_c00329{bottom:235.500000px;}
.y6_c00329{bottom:1194.000000px;}
.h2_c00329{height:41.633789px;}
.h5_c00329{height:44.208984px;}
.h3_c00329{height:51.187500px;}
.h4_c00329{height:56.074219px;}
.h1_c00329{height:877.500000px;}
.h0_c00329{height:1263.000000px;}
.w1_c00329{width:678.182100px;}
.w0_c00329{width:892.500000px;}
.x0_c00329{left:0.000000px;}
.x1_c00329{left:66.000000px;}
.x2_c00329{left:267.260250px;}
@media print{
.v0_c00329{vertical-align:0.000000pt;}
.ls0_c00329{letter-spacing:0.000000pt;}
.ls1_c00329{letter-spacing:0.010667pt;}
.ws0_c00329{word-spacing:0.000000pt;}
._6_c00329{margin-left:-3.519680pt;}
._4_c00329{margin-left:-2.259200pt;}
._2_c00329{margin-left:-0.889600pt;}
._5_c00329{width:0.896000pt;}
._1_c00329{width:2.732800pt;}
._0_c00329{width:4.134400pt;}
._3_c00329{width:5.779200pt;}
.fs0_c00329{font-size:48.000000pt;}
.fs2_c00329{font-size:53.333333pt;}
.fs1_c00329{font-size:64.000000pt;}
.y0_c00329{bottom:0.000000pt;}
.y2_c00329{bottom:10.666667pt;}
.y7_c00329{bottom:60.000000pt;}
.y5_c00329{bottom:121.333333pt;}
.y4_c00329{bottom:145.333333pt;}
.y3_c00329{bottom:169.333333pt;}
.y1_c00329{bottom:209.333333pt;}
.y6_c00329{bottom:1061.333333pt;}
.h2_c00329{height:37.007812pt;}
.h5_c00329{height:39.296875pt;}
.h3_c00329{height:45.500000pt;}
.h4_c00329{height:49.843750pt;}
.h1_c00329{height:780.000000pt;}
.h0_c00329{height:1122.666667pt;}
.w1_c00329{width:602.828533pt;}
.w0_c00329{width:793.333333pt;}
.x0_c00329{left:0.000000pt;}
.x1_c00329{left:58.666667pt;}
.x2_c00329{left:237.564667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ca90a16baae8f73416ce64d6.woff2')format("woff");}.ff1_c00330{font-family:ff1_c00330;line-height:0.987793;font-style:normal;font-weight:normal;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_755ecb6a14c2a084c15539a2.woff2')format("woff");}.ff2_c00330{font-family:ff2_c00330;line-height:0.934082;font-style:normal;font-weight:normal;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_3630e51dd6cc28d3ede0b93c.woff2')format("woff");}.ff3_c00330{font-family:ff3_c00330;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00330{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00330{vertical-align:0.000000px;}
.ls2_c00330{letter-spacing:0.000000px;}
.ls1_c00330{letter-spacing:0.012000px;}
.ls0_c00330{letter-spacing:1.660740px;}
.sc__c00330{text-shadow:none;}
.sc0_c00330{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00330{-webkit-text-stroke:0px transparent;}
.sc0_c00330{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00330{word-spacing:0.000000px;}
._9_c00330{margin-left:-4.471200px;}
._4_c00330{margin-left:-3.074400px;}
._1_c00330{margin-left:-1.972800px;}
._0_c00330{width:1.800000px;}
._2_c00330{width:3.780000px;}
._3_c00330{width:5.032800px;}
._8_c00330{width:6.739200px;}
._6_c00330{width:7.819200px;}
._7_c00330{width:9.684000px;}
._5_c00330{width:12.744000px;}
.fc0_c00330{color:rgb(0,0,0);}
.fs0_c00330{font-size:54.000000px;}
.fs3_c00330{font-size:60.000000px;}
.fs1_c00330{font-size:66.000000px;}
.fs2_c00330{font-size:72.000000px;}
.y0_c00330{bottom:0.000000px;}
.y2_c00330{bottom:12.000000px;}
.y9_c00330{bottom:67.500000px;}
.y7_c00330{bottom:141.000000px;}
.y6_c00330{bottom:630.000000px;}
.y5_c00330{bottom:657.000000px;}
.y4_c00330{bottom:684.000000px;}
.y3_c00330{bottom:711.000000px;}
.y1_c00330{bottom:756.000000px;}
.y8_c00330{bottom:1194.000000px;}
.h2_c00330{height:42.292969px;}
.h3_c00330{height:51.257812px;}
.h5_c00330{height:56.074219px;}
.h1_c00330{height:357.000000px;}
.h4_c00330{height:457.500000px;}
.h0_c00330{height:1263.000000px;}
.w1_c00330{width:678.182250px;}
.w0_c00330{width:892.500000px;}
.x0_c00330{left:0.000000px;}
.x2_c00330{left:71.345460px;}
.x1_c00330{left:148.500000px;}
.x3_c00330{left:205.534650px;}
.x4_c00330{left:416.782800px;}
.x5_c00330{left:801.992850px;}
@media print{
.v0_c00330{vertical-align:0.000000pt;}
.ls2_c00330{letter-spacing:0.000000pt;}
.ls1_c00330{letter-spacing:0.010667pt;}
.ls0_c00330{letter-spacing:1.476213pt;}
.ws0_c00330{word-spacing:0.000000pt;}
._9_c00330{margin-left:-3.974400pt;}
._4_c00330{margin-left:-2.732800pt;}
._1_c00330{margin-left:-1.753600pt;}
._0_c00330{width:1.600000pt;}
._2_c00330{width:3.360000pt;}
._3_c00330{width:4.473600pt;}
._8_c00330{width:5.990400pt;}
._6_c00330{width:6.950400pt;}
._7_c00330{width:8.608000pt;}
._5_c00330{width:11.328000pt;}
.fs0_c00330{font-size:48.000000pt;}
.fs3_c00330{font-size:53.333333pt;}
.fs1_c00330{font-size:58.666667pt;}
.fs2_c00330{font-size:64.000000pt;}
.y0_c00330{bottom:0.000000pt;}
.y2_c00330{bottom:10.666667pt;}
.y9_c00330{bottom:60.000000pt;}
.y7_c00330{bottom:125.333333pt;}
.y6_c00330{bottom:560.000000pt;}
.y5_c00330{bottom:584.000000pt;}
.y4_c00330{bottom:608.000000pt;}
.y3_c00330{bottom:632.000000pt;}
.y1_c00330{bottom:672.000000pt;}
.y8_c00330{bottom:1061.333333pt;}
.h2_c00330{height:37.593750pt;}
.h3_c00330{height:45.562500pt;}
.h5_c00330{height:49.843750pt;}
.h1_c00330{height:317.333333pt;}
.h4_c00330{height:406.666667pt;}
.h0_c00330{height:1122.666667pt;}
.w1_c00330{width:602.828667pt;}
.w0_c00330{width:793.333333pt;}
.x0_c00330{left:0.000000pt;}
.x2_c00330{left:63.418187pt;}
.x1_c00330{left:132.000000pt;}
.x3_c00330{left:182.697467pt;}
.x4_c00330{left:370.473600pt;}
.x5_c00330{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_aecb93b7df9e46d7b23d1c7d.woff2')format("woff");}.ff1_c00331{font-family:ff1_c00331;line-height:0.933105;font-style:normal;font-weight:normal;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_134a2008ef36dab0e40c124e.woff2')format("woff");}.ff2_c00331{font-family:ff2_c00331;line-height:0.975586;font-style:normal;font-weight:normal;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_dae98d98ba5f60ac4c1bde7e.woff2')format("woff");}.ff3_c00331{font-family:ff3_c00331;line-height:0.756836;font-style:normal;font-weight:normal;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_cac081ef86bd6b2683f83acc.woff2')format("woff");}.ff4_c00331{font-family:ff4_c00331;line-height:1.155762;font-style: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;}
.ls0_c00331{letter-spacing:0.000000px;}
.ls1_c00331{letter-spacing:0.012000px;}
.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:-17.064000px;}
.ws1_c00331{word-spacing:0.000000px;}
._e_c00331{margin-left:-10.584000px;}
._f_c00331{margin-left:-6.408000px;}
._b_c00331{margin-left:-4.140000px;}
._4_c00331{margin-left:-2.671200px;}
._2_c00331{margin-left:-1.130400px;}
._1_c00331{width:1.108800px;}
._0_c00331{width:2.865600px;}
._3_c00331{width:4.543200px;}
._5_c00331{width:5.997600px;}
._6_c00331{width:9.496800px;}
._9_c00331{width:11.239200px;}
._8_c00331{width:12.931200px;}
._7_c00331{width:14.097600px;}
._d_c00331{width:15.220800px;}
._a_c00331{width:16.725600px;}
._c_c00331{width:18.244800px;}
.fc0_c00331{color:rgb(0,0,0);}
.fs1_c00331{font-size:54.000000px;}
.fs2_c00331{font-size:60.000000px;}
.fs0_c00331{font-size:72.000000px;}
.y0_c00331{bottom:0.000000px;}
.y7_c00331{bottom:10.500000px;}
.y6_c00331{bottom:28.500000px;}
.yb_c00331{bottom:67.500000px;}
.y9_c00331{bottom:147.000000px;}
.y8_c00331{bottom:174.000000px;}
.y5_c00331{bottom:219.000000px;}
.y4_c00331{bottom:1014.000000px;}
.y3_c00331{bottom:1041.000000px;}
.y2_c00331{bottom:1068.000000px;}
.y1_c00331{bottom:1095.000000px;}
.ya_c00331{bottom:1194.000000px;}
.h3_c00331{height:41.633789px;}
.h5_c00331{height:44.208984px;}
.h1_c00331{height:51.187500px;}
.h4_c00331{height:56.074219px;}
.h2_c00331{height:763.500000px;}
.h0_c00331{height:1263.000000px;}
.w1_c00331{width:678.182250px;}
.w0_c00331{width:892.500000px;}
.x0_c00331{left:0.000000px;}
.x2_c00331{left:15.206445px;}
.x1_c00331{left:65.480310px;}
.x3_c00331{left:320.999850px;}
@media print{
.v0_c00331{vertical-align:0.000000pt;}
.ls0_c00331{letter-spacing:0.000000pt;}
.ls1_c00331{letter-spacing:0.010667pt;}
.ws0_c00331{word-spacing:-15.168000pt;}
.ws1_c00331{word-spacing:0.000000pt;}
._e_c00331{margin-left:-9.408000pt;}
._f_c00331{margin-left:-5.696000pt;}
._b_c00331{margin-left:-3.680000pt;}
._4_c00331{margin-left:-2.374400pt;}
._2_c00331{margin-left:-1.004800pt;}
._1_c00331{width:0.985600pt;}
._0_c00331{width:2.547200pt;}
._3_c00331{width:4.038400pt;}
._5_c00331{width:5.331200pt;}
._6_c00331{width:8.441600pt;}
._9_c00331{width:9.990400pt;}
._8_c00331{width:11.494400pt;}
._7_c00331{width:12.531200pt;}
._d_c00331{width:13.529600pt;}
._a_c00331{width:14.867200pt;}
._c_c00331{width:16.217600pt;}
.fs1_c00331{font-size:48.000000pt;}
.fs2_c00331{font-size:53.333333pt;}
.fs0_c00331{font-size:64.000000pt;}
.y0_c00331{bottom:0.000000pt;}
.y7_c00331{bottom:9.333333pt;}
.y6_c00331{bottom:25.333333pt;}
.yb_c00331{bottom:60.000000pt;}
.y9_c00331{bottom:130.666667pt;}
.y8_c00331{bottom:154.666667pt;}
.y5_c00331{bottom:194.666667pt;}
.y4_c00331{bottom:901.333333pt;}
.y3_c00331{bottom:925.333333pt;}
.y2_c00331{bottom:949.333333pt;}
.y1_c00331{bottom:973.333333pt;}
.ya_c00331{bottom:1061.333333pt;}
.h3_c00331{height:37.007812pt;}
.h5_c00331{height:39.296875pt;}
.h1_c00331{height:45.500000pt;}
.h4_c00331{height:49.843750pt;}
.h2_c00331{height:678.666667pt;}
.h0_c00331{height:1122.666667pt;}
.w1_c00331{width:602.828667pt;}
.w0_c00331{width:793.333333pt;}
.x0_c00331{left:0.000000pt;}
.x2_c00331{left:13.516840pt;}
.x1_c00331{left:58.204720pt;}
.x3_c00331{left:285.333200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_92229581ec631d2e10fd1471.woff2')format("woff");}.ff1_c00332{font-family:ff1_c00332;line-height:1.163086;font-style:normal;font-weight:normal;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_135dd7a296d02586d901e2e0.woff2')format("woff");}.ff2_c00332{font-family:ff2_c00332;line-height:0.963867;font-style:normal;font-weight:normal;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_6489a83eaaebffdc9d4f906b.woff2')format("woff");}.ff3_c00332{font-family:ff3_c00332;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00332{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00332{vertical-align:0.000000px;}
.ls1_c00332{letter-spacing:0.000000px;}
.ls0_c00332{letter-spacing:0.012000px;}
.sc__c00332{text-shadow:none;}
.sc0_c00332{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00332{-webkit-text-stroke:0px transparent;}
.sc0_c00332{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00332{word-spacing:0.000000px;}
._12_c00332{margin-left:-7.228800px;}
._c_c00332{margin-left:-3.888000px;}
._5_c00332{margin-left:-2.152800px;}
._b_c00332{margin-left:-1.152000px;}
._3_c00332{width:1.224000px;}
._1_c00332{width:2.599200px;}
._d_c00332{width:3.650400px;}
._2_c00332{width:4.860000px;}
._4_c00332{width:6.458400px;}
._0_c00332{width:7.488000px;}
._6_c00332{width:9.604800px;}
._10_c00332{width:10.872000px;}
._11_c00332{width:12.996000px;}
._f_c00332{width:14.292000px;}
._e_c00332{width:16.430400px;}
._7_c00332{width:18.381600px;}
._9_c00332{width:22.500000px;}
._8_c00332{width:24.062400px;}
._a_c00332{width:26.143200px;}
.fc0_c00332{color:rgb(0,0,0);}
.fs1_c00332{font-size:54.000000px;}
.fs2_c00332{font-size:60.000000px;}
.fs0_c00332{font-size:72.000000px;}
.y0_c00332{bottom:0.000000px;}
.ya_c00332{bottom:12.000000px;}
.yf_c00332{bottom:67.500000px;}
.yd_c00332{bottom:147.000000px;}
.yc_c00332{bottom:174.000000px;}
.yb_c00332{bottom:201.000000px;}
.y9_c00332{bottom:246.000000px;}
.y8_c00332{bottom:885.000000px;}
.y7_c00332{bottom:912.000000px;}
.y6_c00332{bottom:939.000000px;}
.y5_c00332{bottom:966.000000px;}
.y4_c00332{bottom:1014.000000px;}
.y3_c00332{bottom:1041.000000px;}
.y2_c00332{bottom:1068.000000px;}
.y1_c00332{bottom:1095.000000px;}
.ye_c00332{bottom:1194.000000px;}
.h3_c00332{height:41.633789px;}
.h4_c00332{height:56.074219px;}
.h1_c00332{height:67.746094px;}
.h2_c00332{height:607.500000px;}
.h0_c00332{height:1263.000000px;}
.w1_c00332{width:678.182250px;}
.w0_c00332{width:892.500000px;}
.x0_c00332{left:0.000000px;}
.x1_c00332{left:148.837515px;}
.x2_c00332{left:241.802700px;}
.x3_c00332{left:416.782800px;}
.x4_c00332{left:801.992850px;}
@media print{
.v0_c00332{vertical-align:0.000000pt;}
.ls1_c00332{letter-spacing:0.000000pt;}
.ls0_c00332{letter-spacing:0.010667pt;}
.ws0_c00332{word-spacing:0.000000pt;}
._12_c00332{margin-left:-6.425600pt;}
._c_c00332{margin-left:-3.456000pt;}
._5_c00332{margin-left:-1.913600pt;}
._b_c00332{margin-left:-1.024000pt;}
._3_c00332{width:1.088000pt;}
._1_c00332{width:2.310400pt;}
._d_c00332{width:3.244800pt;}
._2_c00332{width:4.320000pt;}
._4_c00332{width:5.740800pt;}
._0_c00332{width:6.656000pt;}
._6_c00332{width:8.537600pt;}
._10_c00332{width:9.664000pt;}
._11_c00332{width:11.552000pt;}
._f_c00332{width:12.704000pt;}
._e_c00332{width:14.604800pt;}
._7_c00332{width:16.339200pt;}
._9_c00332{width:20.000000pt;}
._8_c00332{width:21.388800pt;}
._a_c00332{width:23.238400pt;}
.fs1_c00332{font-size:48.000000pt;}
.fs2_c00332{font-size:53.333333pt;}
.fs0_c00332{font-size:64.000000pt;}
.y0_c00332{bottom:0.000000pt;}
.ya_c00332{bottom:10.666667pt;}
.yf_c00332{bottom:60.000000pt;}
.yd_c00332{bottom:130.666667pt;}
.yc_c00332{bottom:154.666667pt;}
.yb_c00332{bottom:178.666667pt;}
.y9_c00332{bottom:218.666667pt;}
.y8_c00332{bottom:786.666667pt;}
.y7_c00332{bottom:810.666667pt;}
.y6_c00332{bottom:834.666667pt;}
.y5_c00332{bottom:858.666667pt;}
.y4_c00332{bottom:901.333333pt;}
.y3_c00332{bottom:925.333333pt;}
.y2_c00332{bottom:949.333333pt;}
.y1_c00332{bottom:973.333333pt;}
.ye_c00332{bottom:1061.333333pt;}
.h3_c00332{height:37.007812pt;}
.h4_c00332{height:49.843750pt;}
.h1_c00332{height:60.218750pt;}
.h2_c00332{height:540.000000pt;}
.h0_c00332{height:1122.666667pt;}
.w1_c00332{width:602.828667pt;}
.w0_c00332{width:793.333333pt;}
.x0_c00332{left:0.000000pt;}
.x1_c00332{left:132.300013pt;}
.x2_c00332{left:214.935733pt;}
.x3_c00332{left:370.473600pt;}
.x4_c00332{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_87286319be59a6c3f7dfcc2c.woff2')format("woff");}.ff1_c00333{font-family:ff1_c00333;line-height:0.987793;font-style:normal;font-weight:normal;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_2ee24806674f0f37791448d6.woff2')format("woff");}.ff2_c00333{font-family:ff2_c00333;line-height:0.934082;font-style:normal;font-weight:normal;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_23fc0ef12dfdd8a11c8f14ac.woff2')format("woff");}.ff3_c00333{font-family:ff3_c00333;line-height:0.755859;font-style:normal;font-weight:normal;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_034445f8f9053465da4d79d5.woff2')format("woff");}.ff4_c00333{font-family:ff4_c00333;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00333{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00333{vertical-align:0.000000px;}
.ls0_c00333{letter-spacing:0.000000px;}
.ls1_c00333{letter-spacing:0.012000px;}
.sc__c00333{text-shadow:none;}
.sc0_c00333{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00333{-webkit-text-stroke:0px transparent;}
.sc0_c00333{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00333{word-spacing:0.000000px;}
._b_c00333{margin-left:-3.686400px;}
._5_c00333{margin-left:-2.361600px;}
._9_c00333{margin-left:-1.353600px;}
._3_c00333{width:1.051200px;}
._1_c00333{width:3.189600px;}
._7_c00333{width:4.399200px;}
._8_c00333{width:6.285600px;}
._2_c00333{width:7.423200px;}
._4_c00333{width:9.590400px;}
._0_c00333{width:10.634400px;}
._6_c00333{width:12.974400px;}
._e_c00333{width:21.391200px;}
._a_c00333{width:22.528800px;}
._d_c00333{width:24.969600px;}
._c_c00333{width:26.208000px;}
.fc0_c00333{color:rgb(0,0,0);}
.fs0_c00333{font-size:54.000000px;}
.fs2_c00333{font-size:60.000000px;}
.fs1_c00333{font-size:72.000000px;}
.y0_c00333{bottom:0.000000px;}
.y2_c00333{bottom:12.000000px;}
.ya_c00333{bottom:67.500000px;}
.y8_c00333{bottom:135.000000px;}
.y7_c00333{bottom:615.000000px;}
.y6_c00333{bottom:642.000000px;}
.y5_c00333{bottom:669.000000px;}
.y4_c00333{bottom:696.000000px;}
.y3_c00333{bottom:723.000000px;}
.y1_c00333{bottom:768.000000px;}
.y9_c00333{bottom:1194.000000px;}
.h2_c00333{height:42.292969px;}
.h6_c00333{height:44.208984px;}
.h3_c00333{height:51.257812px;}
.h5_c00333{height:56.074219px;}
.h1_c00333{height:345.000000px;}
.h4_c00333{height:448.500000px;}
.h0_c00333{height:1263.000000px;}
.w2_c00333{width:678.182100px;}
.w1_c00333{width:678.182250px;}
.w0_c00333{width:892.500000px;}
.x0_c00333{left:0.000000px;}
.x1_c00333{left:66.000000px;}
.x2_c00333{left:83.593050px;}
.x3_c00333{left:123.542610px;}
@media print{
.v0_c00333{vertical-align:0.000000pt;}
.ls0_c00333{letter-spacing:0.000000pt;}
.ls1_c00333{letter-spacing:0.010667pt;}
.ws0_c00333{word-spacing:0.000000pt;}
._b_c00333{margin-left:-3.276800pt;}
._5_c00333{margin-left:-2.099200pt;}
._9_c00333{margin-left:-1.203200pt;}
._3_c00333{width:0.934400pt;}
._1_c00333{width:2.835200pt;}
._7_c00333{width:3.910400pt;}
._8_c00333{width:5.587200pt;}
._2_c00333{width:6.598400pt;}
._4_c00333{width:8.524800pt;}
._0_c00333{width:9.452800pt;}
._6_c00333{width:11.532800pt;}
._e_c00333{width:19.014400pt;}
._a_c00333{width:20.025600pt;}
._d_c00333{width:22.195200pt;}
._c_c00333{width:23.296000pt;}
.fs0_c00333{font-size:48.000000pt;}
.fs2_c00333{font-size:53.333333pt;}
.fs1_c00333{font-size:64.000000pt;}
.y0_c00333{bottom:0.000000pt;}
.y2_c00333{bottom:10.666667pt;}
.ya_c00333{bottom:60.000000pt;}
.y8_c00333{bottom:120.000000pt;}
.y7_c00333{bottom:546.666667pt;}
.y6_c00333{bottom:570.666667pt;}
.y5_c00333{bottom:594.666667pt;}
.y4_c00333{bottom:618.666667pt;}
.y3_c00333{bottom:642.666667pt;}
.y1_c00333{bottom:682.666667pt;}
.y9_c00333{bottom:1061.333333pt;}
.h2_c00333{height:37.593750pt;}
.h6_c00333{height:39.296875pt;}
.h3_c00333{height:45.562500pt;}
.h5_c00333{height:49.843750pt;}
.h1_c00333{height:306.666667pt;}
.h4_c00333{height:398.666667pt;}
.h0_c00333{height:1122.666667pt;}
.w2_c00333{width:602.828533pt;}
.w1_c00333{width:602.828667pt;}
.w0_c00333{width:793.333333pt;}
.x0_c00333{left:0.000000pt;}
.x1_c00333{left:58.666667pt;}
.x2_c00333{left:74.304933pt;}
.x3_c00333{left:109.815653pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cc8a079097d479a36bb4201e.woff2')format("woff");}.ff1_c00334{font-family:ff1_c00334;line-height:0.933105;font-style:normal;font-weight:normal;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_3863b09a94b9f450ea14b8e3.woff2')format("woff");}.ff2_c00334{font-family:ff2_c00334;line-height:0.795410;font-style:normal;font-weight:normal;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_77d8371ee6f670dd1958c502.woff2')format("woff");}.ff3_c00334{font-family:ff3_c00334;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00334{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00334{vertical-align:0.000000px;}
.ls1_c00334{letter-spacing:0.000000px;}
.ls0_c00334{letter-spacing:0.012000px;}
.sc__c00334{text-shadow:none;}
.sc0_c00334{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00334{-webkit-text-stroke:0px transparent;}
.sc0_c00334{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00334{word-spacing:0.000000px;}
._e_c00334{margin-left:-11.527200px;}
._7_c00334{margin-left:-6.465600px;}
._3_c00334{margin-left:-4.089600px;}
._5_c00334{margin-left:-2.239200px;}
._a_c00334{margin-left:-1.137600px;}
._9_c00334{width:1.000800px;}
._1_c00334{width:2.037600px;}
._8_c00334{width:3.592800px;}
._2_c00334{width:4.701600px;}
._0_c00334{width:6.652800px;}
._6_c00334{width:8.863200px;}
._4_c00334{width:10.713600px;}
._c_c00334{width:11.772000px;}
._b_c00334{width:13.384800px;}
._d_c00334{width:14.400000px;}
.fc0_c00334{color:rgb(0,0,0);}
.fs1_c00334{font-size:54.000000px;}
.fs2_c00334{font-size:60.000000px;}
.fs0_c00334{font-size:72.000000px;}
.y0_c00334{bottom:0.000000px;}
.y6_c00334{bottom:12.000000px;}
.y10_c00334{bottom:67.500000px;}
.ye_c00334{bottom:141.000000px;}
.yd_c00334{bottom:168.000000px;}
.yc_c00334{bottom:216.000000px;}
.yb_c00334{bottom:243.000000px;}
.ya_c00334{bottom:270.000000px;}
.y9_c00334{bottom:318.000000px;}
.y8_c00334{bottom:345.000000px;}
.y7_c00334{bottom:372.000000px;}
.y5_c00334{bottom:417.000000px;}
.y4_c00334{bottom:1014.000000px;}
.y3_c00334{bottom:1041.000000px;}
.y2_c00334{bottom:1068.000000px;}
.y1_c00334{bottom:1095.000000px;}
.yf_c00334{bottom:1194.000000px;}
.h3_c00334{height:42.292969px;}
.h1_c00334{height:51.187500px;}
.h4_c00334{height:56.074219px;}
.h2_c00334{height:565.500000px;}
.h0_c00334{height:1263.000000px;}
.w1_c00334{width:678.182250px;}
.w0_c00334{width:892.500000px;}
.x0_c00334{left:0.000000px;}
.x1_c00334{left:148.837515px;}
.x2_c00334{left:234.723150px;}
.x3_c00334{left:416.782800px;}
.x4_c00334{left:801.992850px;}
@media print{
.v0_c00334{vertical-align:0.000000pt;}
.ls1_c00334{letter-spacing:0.000000pt;}
.ls0_c00334{letter-spacing:0.010667pt;}
.ws0_c00334{word-spacing:0.000000pt;}
._e_c00334{margin-left:-10.246400pt;}
._7_c00334{margin-left:-5.747200pt;}
._3_c00334{margin-left:-3.635200pt;}
._5_c00334{margin-left:-1.990400pt;}
._a_c00334{margin-left:-1.011200pt;}
._9_c00334{width:0.889600pt;}
._1_c00334{width:1.811200pt;}
._8_c00334{width:3.193600pt;}
._2_c00334{width:4.179200pt;}
._0_c00334{width:5.913600pt;}
._6_c00334{width:7.878400pt;}
._4_c00334{width:9.523200pt;}
._c_c00334{width:10.464000pt;}
._b_c00334{width:11.897600pt;}
._d_c00334{width:12.800000pt;}
.fs1_c00334{font-size:48.000000pt;}
.fs2_c00334{font-size:53.333333pt;}
.fs0_c00334{font-size:64.000000pt;}
.y0_c00334{bottom:0.000000pt;}
.y6_c00334{bottom:10.666667pt;}
.y10_c00334{bottom:60.000000pt;}
.ye_c00334{bottom:125.333333pt;}
.yd_c00334{bottom:149.333333pt;}
.yc_c00334{bottom:192.000000pt;}
.yb_c00334{bottom:216.000000pt;}
.ya_c00334{bottom:240.000000pt;}
.y9_c00334{bottom:282.666667pt;}
.y8_c00334{bottom:306.666667pt;}
.y7_c00334{bottom:330.666667pt;}
.y5_c00334{bottom:370.666667pt;}
.y4_c00334{bottom:901.333333pt;}
.y3_c00334{bottom:925.333333pt;}
.y2_c00334{bottom:949.333333pt;}
.y1_c00334{bottom:973.333333pt;}
.yf_c00334{bottom:1061.333333pt;}
.h3_c00334{height:37.593750pt;}
.h1_c00334{height:45.500000pt;}
.h4_c00334{height:49.843750pt;}
.h2_c00334{height:502.666667pt;}
.h0_c00334{height:1122.666667pt;}
.w1_c00334{width:602.828667pt;}
.w0_c00334{width:793.333333pt;}
.x0_c00334{left:0.000000pt;}
.x1_c00334{left:132.300013pt;}
.x2_c00334{left:208.642800pt;}
.x3_c00334{left:370.473600pt;}
.x4_c00334{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c7e1bf256b48827bb6907921.woff2')format("woff");}.ff1_c00335{font-family:ff1_c00335;line-height:0.934082;font-style:normal;font-weight:normal;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_53b77f41c2d5532e8394a518.woff2')format("woff");}.ff2_c00335{font-family:ff2_c00335;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00335;src:url('chunks/assets/font_a904a4cf1cc38c65f8995369.woff2')format("woff");}.ff3_c00335{font-family:ff3_c00335;line-height:0.976074;font-style:normal;font-weight:normal;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_e80d6b79867e65c3cc0f50c7.woff2')format("woff");}.ff4_c00335{font-family:ff4_c00335;line-height:0.755859;font-style:normal;font-weight:normal;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_e48b31ae627246a5c7c59ad4.woff2')format("woff");}.ff5_c00335{font-family:ff5_c00335;line-height:1.155762;font-style:normal;font-weight: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_c00335;src:url('chunks/assets/font_6d386da065c9809fe64d4cff.woff2')format("woff");}.ff6_c00335{font-family:ff6_c00335;line-height:0.670898;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00335;src:url('chunks/assets/font_16c607389a60fc93a3305bf4.woff2')format("woff");}.ff7_c00335{font-family:ff7_c00335;line-height:0.904297;font-style: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);}
.v3_c00335{vertical-align:-33.000000px;}
.v2_c00335{vertical-align:-23.086200px;}
.v4_c00335{vertical-align:-15.400200px;}
.v0_c00335{vertical-align:0.000000px;}
.v1_c00335{vertical-align:23.086200px;}
.ls2_c00335{letter-spacing:-0.009600px;}
.ls1_c00335{letter-spacing:0.000000px;}
.ls0_c00335{letter-spacing:0.005400px;}
.ls4_c00335{letter-spacing:0.008000px;}
.ls3_c00335{letter-spacing:0.012000px;}
.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;}
}
.ws2_c00335{word-spacing:-11.128001px;}
.ws1_c00335{word-spacing:-0.040000px;}
.ws0_c00335{word-spacing:-0.038400px;}
.ws3_c00335{word-spacing:0.000000px;}
._e_c00335{margin-left:-10.584000px;}
._11_c00335{margin-left:-7.640802px;}
._12_c00335{margin-left:-6.125160px;}
._5_c00335{margin-left:-4.838400px;}
._10_c00335{margin-left:-3.750840px;}
._2_c00335{margin-left:-2.750400px;}
._0_c00335{margin-left:-1.677600px;}
._1_c00335{width:1.699200px;}
._3_c00335{width:2.822400px;}
._4_c00335{width:4.845600px;}
._b_c00335{width:6.357600px;}
._c_c00335{width:8.424000px;}
._d_c00335{width:9.475200px;}
._f_c00335{width:12.081600px;}
._7_c00335{width:22.010400px;}
._8_c00335{width:24.048000px;}
._6_c00335{width:25.192800px;}
._9_c00335{width:26.906400px;}
._a_c00335{width:28.569600px;}
.fc0_c00335{color:rgb(0,0,0);}
.fs4_c00335{font-size:40.000002px;}
.fs1_c00335{font-size:48.000000px;}
.fs2_c00335{font-size:54.000000px;}
.fs3_c00335{font-size:60.000000px;}
.fs0_c00335{font-size:72.000000px;}
.y0_c00335{bottom:0.000000px;}
.y7_c00335{bottom:10.500000px;}
.yc_c00335{bottom:67.500000px;}
.y15_c00335{bottom:132.000000px;}
.y14_c00335{bottom:151.500000px;}
.y13_c00335{bottom:171.000000px;}
.y12_c00335{bottom:190.500000px;}
.y11_c00335{bottom:210.000000px;}
.y10_c00335{bottom:229.500000px;}
.yf_c00335{bottom:249.000000px;}
.ye_c00335{bottom:272.350050px;}
.yd_c00335{bottom:321.750000px;}
.ya_c00335{bottom:394.500000px;}
.y9_c00335{bottom:421.500000px;}
.y8_c00335{bottom:448.500000px;}
.y6_c00335{bottom:493.500000px;}
.y5_c00335{bottom:987.000000px;}
.y4_c00335{bottom:1014.000000px;}
.y3_c00335{bottom:1041.000000px;}
.y2_c00335{bottom:1068.000000px;}
.y1_c00335{bottom:1095.000000px;}
.yb_c00335{bottom:1194.000000px;}
.h7_c00335{height:26.835939px;}
.h8_c00335{height:29.472658px;}
.h9_c00335{height:41.132812px;}
.h4_c00335{height:42.292969px;}
.h6_c00335{height:44.208984px;}
.h1_c00335{height:51.257812px;}
.h5_c00335{height:56.074219px;}
.h2_c00335{height:56.929950px;}
.h3_c00335{height:462.000000px;}
.h0_c00335{height:1263.000000px;}
.w1_c00335{width:678.182100px;}
.w0_c00335{width:892.500000px;}
.x0_c00335{left:0.000000px;}
.x1_c00335{left:65.480310px;}
.x2_c00335{left:234.492045px;}
@media print{
.v3_c00335{vertical-align:-29.333333pt;}
.v2_c00335{vertical-align:-20.521067pt;}
.v4_c00335{vertical-align:-13.689067pt;}
.v0_c00335{vertical-align:0.000000pt;}
.v1_c00335{vertical-align:20.521067pt;}
.ls2_c00335{letter-spacing:-0.008533pt;}
.ls1_c00335{letter-spacing:0.000000pt;}
.ls0_c00335{letter-spacing:0.004800pt;}
.ls4_c00335{letter-spacing:0.007111pt;}
.ls3_c00335{letter-spacing:0.010667pt;}
.ws2_c00335{word-spacing:-9.891556pt;}
.ws1_c00335{word-spacing:-0.035556pt;}
.ws0_c00335{word-spacing:-0.034133pt;}
.ws3_c00335{word-spacing:0.000000pt;}
._e_c00335{margin-left:-9.408000pt;}
._11_c00335{margin-left:-6.791824pt;}
._12_c00335{margin-left:-5.444587pt;}
._5_c00335{margin-left:-4.300800pt;}
._10_c00335{margin-left:-3.334080pt;}
._2_c00335{margin-left:-2.444800pt;}
._0_c00335{margin-left:-1.491200pt;}
._1_c00335{width:1.510400pt;}
._3_c00335{width:2.508800pt;}
._4_c00335{width:4.307200pt;}
._b_c00335{width:5.651200pt;}
._c_c00335{width:7.488000pt;}
._d_c00335{width:8.422400pt;}
._f_c00335{width:10.739200pt;}
._7_c00335{width:19.564800pt;}
._8_c00335{width:21.376000pt;}
._6_c00335{width:22.393600pt;}
._9_c00335{width:23.916800pt;}
._a_c00335{width:25.395200pt;}
.fs4_c00335{font-size:35.555557pt;}
.fs1_c00335{font-size:42.666667pt;}
.fs2_c00335{font-size:48.000000pt;}
.fs3_c00335{font-size:53.333333pt;}
.fs0_c00335{font-size:64.000000pt;}
.y0_c00335{bottom:0.000000pt;}
.y7_c00335{bottom:9.333333pt;}
.yc_c00335{bottom:60.000000pt;}
.y15_c00335{bottom:117.333333pt;}
.y14_c00335{bottom:134.666667pt;}
.y13_c00335{bottom:152.000000pt;}
.y12_c00335{bottom:169.333333pt;}
.y11_c00335{bottom:186.666667pt;}
.y10_c00335{bottom:204.000000pt;}
.yf_c00335{bottom:221.333333pt;}
.ye_c00335{bottom:242.088933pt;}
.yd_c00335{bottom:286.000000pt;}
.ya_c00335{bottom:350.666667pt;}
.y9_c00335{bottom:374.666667pt;}
.y8_c00335{bottom:398.666667pt;}
.y6_c00335{bottom:438.666667pt;}
.y5_c00335{bottom:877.333333pt;}
.y4_c00335{bottom:901.333333pt;}
.y3_c00335{bottom:925.333333pt;}
.y2_c00335{bottom:949.333333pt;}
.y1_c00335{bottom:973.333333pt;}
.yb_c00335{bottom:1061.333333pt;}
.h7_c00335{height:23.854168pt;}
.h8_c00335{height:26.197918pt;}
.h9_c00335{height:36.562500pt;}
.h4_c00335{height:37.593750pt;}
.h6_c00335{height:39.296875pt;}
.h1_c00335{height:45.562500pt;}
.h5_c00335{height:49.843750pt;}
.h2_c00335{height:50.604400pt;}
.h3_c00335{height:410.666667pt;}
.h0_c00335{height:1122.666667pt;}
.w1_c00335{width:602.828533pt;}
.w0_c00335{width:793.333333pt;}
.x0_c00335{left:0.000000pt;}
.x1_c00335{left:58.204720pt;}
.x2_c00335{left:208.437373pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d51a3820aabd0250f3c6d684.woff2')format("woff");}.ff1_c00336{font-family:ff1_c00336;line-height:0.987793;font-style:normal;font-weight:normal;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_4e2b3509fe91c62d2fe728ff.woff2')format("woff");}.ff2_c00336{font-family:ff2_c00336;line-height:0.928223;font-style:normal;font-weight:normal;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_e5c8679031261317e2eb6258.woff2')format("woff");}.ff3_c00336{font-family:ff3_c00336;line-height:0.933105;font-style:normal;font-weight:normal;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_59e6d6d7a3adeaf7537d8125.woff2')format("woff");}.ff4_c00336{font-family:ff4_c00336;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00336{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00336{vertical-align:0.000000px;}
.ls2_c00336{letter-spacing:0.000000px;}
.ls0_c00336{letter-spacing:0.007200px;}
.ls1_c00336{letter-spacing:0.012000px;}
.sc__c00336{text-shadow:none;}
.sc0_c00336{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00336{-webkit-text-stroke:0px transparent;}
.sc0_c00336{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00336{word-spacing:0.000000px;}
._1_c00336{margin-left:-3.168000px;}
._3_c00336{margin-left:-1.879200px;}
._0_c00336{width:1.332000px;}
._5_c00336{width:2.995200px;}
._4_c00336{width:4.348800px;}
._2_c00336{width:5.637600px;}
._6_c00336{width:7.300800px;}
._8_c00336{width:9.244800px;}
._7_c00336{width:10.353600px;}
._9_c00336{width:13.658400px;}
.fc0_c00336{color:rgb(0,0,0);}
.fs0_c00336{font-size:54.000000px;}
.fs2_c00336{font-size:60.000000px;}
.fs1_c00336{font-size:72.000000px;}
.y0_c00336{bottom:0.000000px;}
.y3_c00336{bottom:12.000000px;}
.y2_c00336{bottom:28.500000px;}
.ya_c00336{bottom:67.500000px;}
.y8_c00336{bottom:138.000000px;}
.y7_c00336{bottom:165.000000px;}
.y6_c00336{bottom:192.000000px;}
.y5_c00336{bottom:238.500000px;}
.y4_c00336{bottom:342.000000px;}
.y1_c00336{bottom:771.000000px;}
.y9_c00336{bottom:1194.000000px;}
.h2_c00336{height:42.292969px;}
.h4_c00336{height:50.976562px;}
.h5_c00336{height:51.187500px;}
.h6_c00336{height:56.074219px;}
.h1_c00336{height:342.000000px;}
.h3_c00336{height:400.500000px;}
.h0_c00336{height:1263.000000px;}
.w1_c00336{width:678.182250px;}
.w0_c00336{width:892.500000px;}
.x0_c00336{left:0.000000px;}
.x2_c00336{left:32.793360px;}
.x1_c00336{left:148.500000px;}
.x3_c00336{left:200.828100px;}
.x4_c00336{left:220.458450px;}
.x5_c00336{left:416.782800px;}
.x6_c00336{left:801.992850px;}
@media print{
.v0_c00336{vertical-align:0.000000pt;}
.ls2_c00336{letter-spacing:0.000000pt;}
.ls0_c00336{letter-spacing:0.006400pt;}
.ls1_c00336{letter-spacing:0.010667pt;}
.ws0_c00336{word-spacing:0.000000pt;}
._1_c00336{margin-left:-2.816000pt;}
._3_c00336{margin-left:-1.670400pt;}
._0_c00336{width:1.184000pt;}
._5_c00336{width:2.662400pt;}
._4_c00336{width:3.865600pt;}
._2_c00336{width:5.011200pt;}
._6_c00336{width:6.489600pt;}
._8_c00336{width:8.217600pt;}
._7_c00336{width:9.203200pt;}
._9_c00336{width:12.140800pt;}
.fs0_c00336{font-size:48.000000pt;}
.fs2_c00336{font-size:53.333333pt;}
.fs1_c00336{font-size:64.000000pt;}
.y0_c00336{bottom:0.000000pt;}
.y3_c00336{bottom:10.666667pt;}
.y2_c00336{bottom:25.333333pt;}
.ya_c00336{bottom:60.000000pt;}
.y8_c00336{bottom:122.666667pt;}
.y7_c00336{bottom:146.666667pt;}
.y6_c00336{bottom:170.666667pt;}
.y5_c00336{bottom:212.000000pt;}
.y4_c00336{bottom:304.000000pt;}
.y1_c00336{bottom:685.333333pt;}
.y9_c00336{bottom:1061.333333pt;}
.h2_c00336{height:37.593750pt;}
.h4_c00336{height:45.312500pt;}
.h5_c00336{height:45.500000pt;}
.h6_c00336{height:49.843750pt;}
.h1_c00336{height:304.000000pt;}
.h3_c00336{height:356.000000pt;}
.h0_c00336{height:1122.666667pt;}
.w1_c00336{width:602.828667pt;}
.w0_c00336{width:793.333333pt;}
.x0_c00336{left:0.000000pt;}
.x2_c00336{left:29.149653pt;}
.x1_c00336{left:132.000000pt;}
.x3_c00336{left:178.513867pt;}
.x4_c00336{left:195.963067pt;}
.x5_c00336{left:370.473600pt;}
.x6_c00336{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_81f57b322d894e61cf213dd4.woff2')format("woff");}.ff1_c00337{font-family:ff1_c00337;line-height:0.934082;font-style:normal;font-weight:normal;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_b986f21d1d9dd5bc3d26702a.woff2')format("woff");}.ff2_c00337{font-family:ff2_c00337;line-height:0.783203;font-style:normal;font-weight:normal;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_d698939a5caab7770a7a6a18.woff2')format("woff");}.ff3_c00337{font-family:ff3_c00337;line-height:0.755859;font-style:normal;font-weight:normal;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_f03e1ab22e34090cc425f606.woff2')format("woff");}.ff4_c00337{font-family:ff4_c00337;line-height:1.155762;font-style: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;}
.ls0_c00337{letter-spacing:0.000000px;}
.ls1_c00337{letter-spacing:0.012000px;}
.sc__c00337{text-shadow:none;}
.sc0_c00337{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00337{-webkit-text-stroke:0px transparent;}
.sc0_c00337{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00337{word-spacing:0.000000px;}
._e_c00337{margin-left:-7.200000px;}
._a_c00337{margin-left:-4.874400px;}
._7_c00337{margin-left:-3.535200px;}
._10_c00337{margin-left:-2.404800px;}
._3_c00337{margin-left:-1.296000px;}
._1_c00337{width:1.447200px;}
._5_c00337{width:3.240000px;}
._2_c00337{width:4.370400px;}
._0_c00337{width:5.824800px;}
._4_c00337{width:7.106400px;}
._d_c00337{width:8.488800px;}
._f_c00337{width:10.432800px;}
._6_c00337{width:12.319200px;}
._c_c00337{width:13.485600px;}
._9_c00337{width:14.889600px;}
._b_c00337{width:16.740000px;}
._8_c00337{width:18.417600px;}
._11_c00337{width:23.846400px;}
._15_c00337{width:25.581600px;}
._12_c00337{width:27.108000px;}
._14_c00337{width:29.570400px;}
._13_c00337{width:30.672000px;}
.fc0_c00337{color:rgb(0,0,0);}
.fs1_c00337{font-size:54.000000px;}
.fs2_c00337{font-size:60.000000px;}
.fs0_c00337{font-size:72.000000px;}
.y0_c00337{bottom:0.000000px;}
.y8_c00337{bottom:12.000000px;}
.y15_c00337{bottom:67.500000px;}
.y13_c00337{bottom:145.500000px;}
.y12_c00337{bottom:172.500000px;}
.y11_c00337{bottom:199.500000px;}
.y10_c00337{bottom:226.500000px;}
.yf_c00337{bottom:253.500000px;}
.ye_c00337{bottom:280.500000px;}
.yd_c00337{bottom:307.500000px;}
.yc_c00337{bottom:334.500000px;}
.yb_c00337{bottom:382.500000px;}
.ya_c00337{bottom:409.500000px;}
.y9_c00337{bottom:436.500000px;}
.y7_c00337{bottom:481.500000px;}
.y6_c00337{bottom:894.000000px;}
.y5_c00337{bottom:933.000000px;}
.y4_c00337{bottom:972.000000px;}
.y3_c00337{bottom:1020.000000px;}
.y2_c00337{bottom:1068.000000px;}
.y1_c00337{bottom:1095.000000px;}
.y14_c00337{bottom:1194.000000px;}
.h3_c00337{height:41.633789px;}
.h5_c00337{height:44.208984px;}
.h1_c00337{height:51.257812px;}
.h4_c00337{height:56.074219px;}
.h2_c00337{height:390.000000px;}
.h0_c00337{height:1263.000000px;}
.w1_c00337{width:678.182100px;}
.w0_c00337{width:892.500000px;}
.x0_c00337{left:0.000000px;}
.x1_c00337{left:65.480310px;}
.x2_c00337{left:107.480310px;}
.x3_c00337{left:204.631650px;}
@media print{
.v0_c00337{vertical-align:0.000000pt;}
.ls0_c00337{letter-spacing:0.000000pt;}
.ls1_c00337{letter-spacing:0.010667pt;}
.ws0_c00337{word-spacing:0.000000pt;}
._e_c00337{margin-left:-6.400000pt;}
._a_c00337{margin-left:-4.332800pt;}
._7_c00337{margin-left:-3.142400pt;}
._10_c00337{margin-left:-2.137600pt;}
._3_c00337{margin-left:-1.152000pt;}
._1_c00337{width:1.286400pt;}
._5_c00337{width:2.880000pt;}
._2_c00337{width:3.884800pt;}
._0_c00337{width:5.177600pt;}
._4_c00337{width:6.316800pt;}
._d_c00337{width:7.545600pt;}
._f_c00337{width:9.273600pt;}
._6_c00337{width:10.950400pt;}
._c_c00337{width:11.987200pt;}
._9_c00337{width:13.235200pt;}
._b_c00337{width:14.880000pt;}
._8_c00337{width:16.371200pt;}
._11_c00337{width:21.196800pt;}
._15_c00337{width:22.739200pt;}
._12_c00337{width:24.096000pt;}
._14_c00337{width:26.284800pt;}
._13_c00337{width:27.264000pt;}
.fs1_c00337{font-size:48.000000pt;}
.fs2_c00337{font-size:53.333333pt;}
.fs0_c00337{font-size:64.000000pt;}
.y0_c00337{bottom:0.000000pt;}
.y8_c00337{bottom:10.666667pt;}
.y15_c00337{bottom:60.000000pt;}
.y13_c00337{bottom:129.333333pt;}
.y12_c00337{bottom:153.333333pt;}
.y11_c00337{bottom:177.333333pt;}
.y10_c00337{bottom:201.333333pt;}
.yf_c00337{bottom:225.333333pt;}
.ye_c00337{bottom:249.333333pt;}
.yd_c00337{bottom:273.333333pt;}
.yc_c00337{bottom:297.333333pt;}
.yb_c00337{bottom:340.000000pt;}
.ya_c00337{bottom:364.000000pt;}
.y9_c00337{bottom:388.000000pt;}
.y7_c00337{bottom:428.000000pt;}
.y6_c00337{bottom:794.666667pt;}
.y5_c00337{bottom:829.333333pt;}
.y4_c00337{bottom:864.000000pt;}
.y3_c00337{bottom:906.666667pt;}
.y2_c00337{bottom:949.333333pt;}
.y1_c00337{bottom:973.333333pt;}
.y14_c00337{bottom:1061.333333pt;}
.h3_c00337{height:37.007812pt;}
.h5_c00337{height:39.296875pt;}
.h1_c00337{height:45.562500pt;}
.h4_c00337{height:49.843750pt;}
.h2_c00337{height:346.666667pt;}
.h0_c00337{height:1122.666667pt;}
.w1_c00337{width:602.828533pt;}
.w0_c00337{width:793.333333pt;}
.x0_c00337{left:0.000000pt;}
.x1_c00337{left:58.204720pt;}
.x2_c00337{left:95.538053pt;}
.x3_c00337{left:181.894800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9c6518ec348d33910387205c.woff2')format("woff");}.ff1_c00338{font-family:ff1_c00338;line-height:0.975586;font-style:normal;font-weight:normal;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_d545ec88abf5639118718ecc.woff2')format("woff");}.ff2_c00338{font-family:ff2_c00338;line-height:0.934082;font-style:normal;font-weight:normal;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_1c94d2d9f6d3c0d9dde267bd.woff2')format("woff");}.ff3_c00338{font-family:ff3_c00338;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00338{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00338{vertical-align:0.000000px;}
.ls1_c00338{letter-spacing:0.000000px;}
.ls0_c00338{letter-spacing:0.012000px;}
.sc__c00338{text-shadow:none;}
.sc0_c00338{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00338{-webkit-text-stroke:0px transparent;}
.sc0_c00338{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00338{word-spacing:0.000000px;}
._b_c00338{margin-left:-10.562400px;}
._a_c00338{margin-left:-3.924000px;}
._3_c00338{margin-left:-2.246400px;}
._5_c00338{margin-left:-1.216800px;}
._1_c00338{width:1.188000px;}
._0_c00338{width:2.815200px;}
._2_c00338{width:4.593600px;}
._4_c00338{width:5.695200px;}
._7_c00338{width:10.094400px;}
._6_c00338{width:11.757600px;}
._9_c00338{width:12.967200px;}
._8_c00338{width:15.199200px;}
._c_c00338{width:24.141600px;}
._e_c00338{width:25.812000px;}
._f_c00338{width:26.992800px;}
._d_c00338{width:29.260800px;}
._10_c00338{width:30.794400px;}
.fc0_c00338{color:rgb(0,0,0);}
.fs0_c00338{font-size:54.000000px;}
.fs2_c00338{font-size:60.000000px;}
.fs1_c00338{font-size:72.000000px;}
.y0_c00338{bottom:0.000000px;}
.y2_c00338{bottom:12.000000px;}
.yb_c00338{bottom:67.500000px;}
.y9_c00338{bottom:132.000000px;}
.y8_c00338{bottom:159.000000px;}
.y7_c00338{bottom:204.000000px;}
.y6_c00338{bottom:534.000000px;}
.y5_c00338{bottom:561.000000px;}
.y4_c00338{bottom:588.000000px;}
.y3_c00338{bottom:615.000000px;}
.y1_c00338{bottom:660.000000px;}
.ya_c00338{bottom:1194.000000px;}
.h2_c00338{height:41.633789px;}
.h3_c00338{height:51.257812px;}
.h5_c00338{height:56.074219px;}
.h4_c00338{height:298.500000px;}
.h1_c00338{height:453.000000px;}
.h0_c00338{height:1263.000000px;}
.w1_c00338{width:678.182250px;}
.w0_c00338{width:892.500000px;}
.x0_c00338{left:0.000000px;}
.x1_c00338{left:148.500000px;}
.x3_c00338{left:211.457400px;}
.x2_c00338{left:246.571950px;}
.x4_c00338{left:416.782800px;}
.x5_c00338{left:801.992850px;}
@media print{
.v0_c00338{vertical-align:0.000000pt;}
.ls1_c00338{letter-spacing:0.000000pt;}
.ls0_c00338{letter-spacing:0.010667pt;}
.ws0_c00338{word-spacing:0.000000pt;}
._b_c00338{margin-left:-9.388800pt;}
._a_c00338{margin-left:-3.488000pt;}
._3_c00338{margin-left:-1.996800pt;}
._5_c00338{margin-left:-1.081600pt;}
._1_c00338{width:1.056000pt;}
._0_c00338{width:2.502400pt;}
._2_c00338{width:4.083200pt;}
._4_c00338{width:5.062400pt;}
._7_c00338{width:8.972800pt;}
._6_c00338{width:10.451200pt;}
._9_c00338{width:11.526400pt;}
._8_c00338{width:13.510400pt;}
._c_c00338{width:21.459200pt;}
._e_c00338{width:22.944000pt;}
._f_c00338{width:23.993600pt;}
._d_c00338{width:26.009600pt;}
._10_c00338{width:27.372800pt;}
.fs0_c00338{font-size:48.000000pt;}
.fs2_c00338{font-size:53.333333pt;}
.fs1_c00338{font-size:64.000000pt;}
.y0_c00338{bottom:0.000000pt;}
.y2_c00338{bottom:10.666667pt;}
.yb_c00338{bottom:60.000000pt;}
.y9_c00338{bottom:117.333333pt;}
.y8_c00338{bottom:141.333333pt;}
.y7_c00338{bottom:181.333333pt;}
.y6_c00338{bottom:474.666667pt;}
.y5_c00338{bottom:498.666667pt;}
.y4_c00338{bottom:522.666667pt;}
.y3_c00338{bottom:546.666667pt;}
.y1_c00338{bottom:586.666667pt;}
.ya_c00338{bottom:1061.333333pt;}
.h2_c00338{height:37.007812pt;}
.h3_c00338{height:45.562500pt;}
.h5_c00338{height:49.843750pt;}
.h4_c00338{height:265.333333pt;}
.h1_c00338{height:402.666667pt;}
.h0_c00338{height:1122.666667pt;}
.w1_c00338{width:602.828667pt;}
.w0_c00338{width:793.333333pt;}
.x0_c00338{left:0.000000pt;}
.x1_c00338{left:132.000000pt;}
.x3_c00338{left:187.962133pt;}
.x2_c00338{left:219.175067pt;}
.x4_c00338{left:370.473600pt;}
.x5_c00338{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d760fc2449578b9298c5d5bc.woff2')format("woff");}.ff1_c00339{font-family:ff1_c00339;line-height:1.163086;font-style:normal;font-weight:normal;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_9009f8c52edd85f726229665.woff2')format("woff");}.ff2_c00339{font-family:ff2_c00339;line-height:0.987793;font-style:normal;font-weight:normal;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_891db98e7e42341b20bc0fd3.woff2')format("woff");}.ff3_c00339{font-family:ff3_c00339;line-height:0.755859;font-style:normal;font-weight:normal;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_4a3f5771976a1ee940be7ff5.woff2')format("woff");}.ff4_c00339{font-family:ff4_c00339;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00339{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00339{vertical-align:0.000000px;}
.ls1_c00339{letter-spacing:0.000000px;}
.ls0_c00339{letter-spacing:0.005400px;}
.ls2_c00339{letter-spacing:0.012000px;}
.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:0.000000px;}
._f_c00339{margin-left:-7.214400px;}
._b_c00339{margin-left:-3.952800px;}
._3_c00339{margin-left:-2.793600px;}
._9_c00339{margin-left:-1.440000px;}
._5_c00339{width:1.346400px;}
._0_c00339{width:2.541600px;}
._e_c00339{width:3.564000px;}
._7_c00339{width:4.615200px;}
._d_c00339{width:6.768000px;}
._c_c00339{width:8.532000px;}
._8_c00339{width:9.964800px;}
._10_c00339{width:10.972800px;}
._1_c00339{width:12.045600px;}
._6_c00339{width:13.248000px;}
._2_c00339{width:14.572800px;}
._a_c00339{width:16.005600px;}
._4_c00339{width:17.395200px;}
.fc0_c00339{color:rgb(0,0,0);}
.fs1_c00339{font-size:54.000000px;}
.fs2_c00339{font-size:60.000000px;}
.fs0_c00339{font-size:72.000000px;}
.y0_c00339{bottom:0.000000px;}
.y11_c00339{bottom:10.500000px;}
.y10_c00339{bottom:27.000000px;}
.yf_c00339{bottom:45.000000px;}
.y13_c00339{bottom:67.500000px;}
.ye_c00339{bottom:130.500000px;}
.yd_c00339{bottom:750.000000px;}
.yc_c00339{bottom:777.000000px;}
.yb_c00339{bottom:804.000000px;}
.ya_c00339{bottom:852.000000px;}
.y9_c00339{bottom:879.000000px;}
.y8_c00339{bottom:906.000000px;}
.y7_c00339{bottom:933.000000px;}
.y6_c00339{bottom:960.000000px;}
.y5_c00339{bottom:987.000000px;}
.y4_c00339{bottom:1014.000000px;}
.y3_c00339{bottom:1041.000000px;}
.y2_c00339{bottom:1068.000000px;}
.y1_c00339{bottom:1095.000000px;}
.y12_c00339{bottom:1194.000000px;}
.h3_c00339{height:42.292969px;}
.h5_c00339{height:44.208984px;}
.h4_c00339{height:56.074219px;}
.h1_c00339{height:67.746094px;}
.h2_c00339{height:588.000000px;}
.h0_c00339{height:1263.000000px;}
.w1_c00339{width:678.182250px;}
.w0_c00339{width:892.500000px;}
.x0_c00339{left:0.000000px;}
.x2_c00339{left:9.091095px;}
.x3_c00339{left:25.193025px;}
.x1_c00339{left:65.480310px;}
.x4_c00339{left:169.770900px;}
@media print{
.v0_c00339{vertical-align:0.000000pt;}
.ls1_c00339{letter-spacing:0.000000pt;}
.ls0_c00339{letter-spacing:0.004800pt;}
.ls2_c00339{letter-spacing:0.010667pt;}
.ws0_c00339{word-spacing:0.000000pt;}
._f_c00339{margin-left:-6.412800pt;}
._b_c00339{margin-left:-3.513600pt;}
._3_c00339{margin-left:-2.483200pt;}
._9_c00339{margin-left:-1.280000pt;}
._5_c00339{width:1.196800pt;}
._0_c00339{width:2.259200pt;}
._e_c00339{width:3.168000pt;}
._7_c00339{width:4.102400pt;}
._d_c00339{width:6.016000pt;}
._c_c00339{width:7.584000pt;}
._8_c00339{width:8.857600pt;}
._10_c00339{width:9.753600pt;}
._1_c00339{width:10.707200pt;}
._6_c00339{width:11.776000pt;}
._2_c00339{width:12.953600pt;}
._a_c00339{width:14.227200pt;}
._4_c00339{width:15.462400pt;}
.fs1_c00339{font-size:48.000000pt;}
.fs2_c00339{font-size:53.333333pt;}
.fs0_c00339{font-size:64.000000pt;}
.y0_c00339{bottom:0.000000pt;}
.y11_c00339{bottom:9.333333pt;}
.y10_c00339{bottom:24.000000pt;}
.yf_c00339{bottom:40.000000pt;}
.y13_c00339{bottom:60.000000pt;}
.ye_c00339{bottom:116.000000pt;}
.yd_c00339{bottom:666.666667pt;}
.yc_c00339{bottom:690.666667pt;}
.yb_c00339{bottom:714.666667pt;}
.ya_c00339{bottom:757.333333pt;}
.y9_c00339{bottom:781.333333pt;}
.y8_c00339{bottom:805.333333pt;}
.y7_c00339{bottom:829.333333pt;}
.y6_c00339{bottom:853.333333pt;}
.y5_c00339{bottom:877.333333pt;}
.y4_c00339{bottom:901.333333pt;}
.y3_c00339{bottom:925.333333pt;}
.y2_c00339{bottom:949.333333pt;}
.y1_c00339{bottom:973.333333pt;}
.y12_c00339{bottom:1061.333333pt;}
.h3_c00339{height:37.593750pt;}
.h5_c00339{height:39.296875pt;}
.h4_c00339{height:49.843750pt;}
.h1_c00339{height:60.218750pt;}
.h2_c00339{height:522.666667pt;}
.h0_c00339{height:1122.666667pt;}
.w1_c00339{width:602.828667pt;}
.w0_c00339{width:793.333333pt;}
.x0_c00339{left:0.000000pt;}
.x2_c00339{left:8.080973pt;}
.x3_c00339{left:22.393800pt;}
.x1_c00339{left:58.204720pt;}
.x4_c00339{left:150.907467pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5646ac4853caa86c03939a2f.woff2')format("woff");}.ff1_c00340{font-family:ff1_c00340;line-height:1.144531;font-style:normal;font-weight:normal;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_afcad0a0b05ec509562f8e00.woff2')format("woff");}.ff2_c00340{font-family:ff2_c00340;line-height:0.933105;font-style:normal;font-weight:normal;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_ba5a9cd60422dc1ca319963b.woff2')format("woff");}.ff3_c00340{font-family:ff3_c00340;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00340;src:url('chunks/assets/font_c00e2e50aa7ccbff8bd6a261.woff2')format("woff");}.ff4_c00340{font-family:ff4_c00340;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00340;src:url('chunks/assets/font_aa90a588a2ff9311e2863f14.woff2')format("woff");}.ff5_c00340{font-family:ff5_c00340;line-height:1.155762;font-style:normal;font-weight: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_c00340;src:url('chunks/assets/font_d6c08fd75090200b52cbdb72.woff2')format("woff");}.ff6_c00340{font-family:ff6_c00340;line-height:0.694336;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00340;src:url('chunks/assets/font_5e19728c1fb35696c98f0be2.woff2')format("woff");}.ff7_c00340{font-family:ff7_c00340;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00340;src:url('chunks/assets/font_b25335dfc719f1c3576af5fe.woff2')format("woff");}.ff8_c00340{font-family:ff8_c00340;line-height:0.889648;font-style: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);}
.v2_c00340{vertical-align:-33.000000px;}
.v0_c00340{vertical-align:0.000000px;}
.v1_c00340{vertical-align:23.086200px;}
.ls4_c00340{letter-spacing:-0.009600px;}
.ls3_c00340{letter-spacing:0.000000px;}
.ls0_c00340{letter-spacing:0.007200px;}
.ls2_c00340{letter-spacing:0.012000px;}
.ls1_c00340{letter-spacing:21.254400px;}
.sc__c00340{text-shadow:none;}
.sc0_c00340{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00340{-webkit-text-stroke:0px transparent;}
.sc0_c00340{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00340{word-spacing:-0.040000px;}
.ws0_c00340{word-spacing:-0.038400px;}
.ws2_c00340{word-spacing:0.000000px;}
._10_c00340{margin-left:-21.424980px;}
._0_c00340{margin-left:-10.584000px;}
._12_c00340{margin-left:-8.323938px;}
._11_c00340{margin-left:-5.698062px;}
._13_c00340{margin-left:-4.470000px;}
._a_c00340{margin-left:-3.405600px;}
._3_c00340{margin-left:-1.526400px;}
._1_c00340{width:1.418400px;}
._5_c00340{width:3.074400px;}
._8_c00340{width:5.162400px;}
._d_c00340{width:11.217600px;}
._f_c00340{width:13.204800px;}
._b_c00340{width:14.990400px;}
._c_c00340{width:16.335540px;}
._e_c00340{width:17.965260px;}
._9_c00340{width:21.636000px;}
._6_c00340{width:22.809600px;}
._2_c00340{width:24.465600px;}
._7_c00340{width:25.948800px;}
._4_c00340{width:27.417600px;}
.fc0_c00340{color:rgb(0,0,0);}
.fs4_c00340{font-size:40.000002px;}
.fs2_c00340{font-size:48.000000px;}
.fs0_c00340{font-size:54.000000px;}
.fs3_c00340{font-size:60.000000px;}
.fs1_c00340{font-size:72.000000px;}
.y0_c00340{bottom:0.000000px;}
.y5_c00340{bottom:10.500000px;}
.y2_c00340{bottom:12.000000px;}
.y4_c00340{bottom:28.500000px;}
.yb_c00340{bottom:67.500000px;}
.yd_c00340{bottom:132.000000px;}
.yc_c00340{bottom:159.750000px;}
.y9_c00340{bottom:229.500000px;}
.y8_c00340{bottom:256.500000px;}
.y7_c00340{bottom:283.500000px;}
.y6_c00340{bottom:310.500000px;}
.y3_c00340{bottom:355.500000px;}
.y1_c00340{bottom:733.500000px;}
.ya_c00340{bottom:1194.000000px;}
.h7_c00340{height:27.343751px;}
.h8_c00340{height:40.957031px;}
.h2_c00340{height:50.756836px;}
.h4_c00340{height:51.187500px;}
.h6_c00340{height:56.074219px;}
.h5_c00340{height:56.929950px;}
.h3_c00340{height:349.500000px;}
.h1_c00340{height:379.500000px;}
.h0_c00340{height:1263.000000px;}
.w1_c00340{width:678.182250px;}
.w0_c00340{width:892.500000px;}
.x0_c00340{left:0.000000px;}
.x3_c00340{left:17.220240px;}
.x4_c00340{left:117.181545px;}
.x1_c00340{left:148.500000px;}
.x2_c00340{left:220.461750px;}
.x5_c00340{left:416.782800px;}
.x6_c00340{left:801.992850px;}
@media print{
.v2_c00340{vertical-align:-29.333333pt;}
.v0_c00340{vertical-align:0.000000pt;}
.v1_c00340{vertical-align:20.521067pt;}
.ls4_c00340{letter-spacing:-0.008533pt;}
.ls3_c00340{letter-spacing:0.000000pt;}
.ls0_c00340{letter-spacing:0.006400pt;}
.ls2_c00340{letter-spacing:0.010667pt;}
.ls1_c00340{letter-spacing:18.892800pt;}
.ws1_c00340{word-spacing:-0.035556pt;}
.ws0_c00340{word-spacing:-0.034133pt;}
.ws2_c00340{word-spacing:0.000000pt;}
._10_c00340{margin-left:-19.044427pt;}
._0_c00340{margin-left:-9.408000pt;}
._12_c00340{margin-left:-7.399056pt;}
._11_c00340{margin-left:-5.064944pt;}
._13_c00340{margin-left:-3.973333pt;}
._a_c00340{margin-left:-3.027200pt;}
._3_c00340{margin-left:-1.356800pt;}
._1_c00340{width:1.260800pt;}
._5_c00340{width:2.732800pt;}
._8_c00340{width:4.588800pt;}
._d_c00340{width:9.971200pt;}
._f_c00340{width:11.737600pt;}
._b_c00340{width:13.324800pt;}
._c_c00340{width:14.520480pt;}
._e_c00340{width:15.969120pt;}
._9_c00340{width:19.232000pt;}
._6_c00340{width:20.275200pt;}
._2_c00340{width:21.747200pt;}
._7_c00340{width:23.065600pt;}
._4_c00340{width:24.371200pt;}
.fs4_c00340{font-size:35.555557pt;}
.fs2_c00340{font-size:42.666667pt;}
.fs0_c00340{font-size:48.000000pt;}
.fs3_c00340{font-size:53.333333pt;}
.fs1_c00340{font-size:64.000000pt;}
.y0_c00340{bottom:0.000000pt;}
.y5_c00340{bottom:9.333333pt;}
.y2_c00340{bottom:10.666667pt;}
.y4_c00340{bottom:25.333333pt;}
.yb_c00340{bottom:60.000000pt;}
.yd_c00340{bottom:117.333333pt;}
.yc_c00340{bottom:142.000000pt;}
.y9_c00340{bottom:204.000000pt;}
.y8_c00340{bottom:228.000000pt;}
.y7_c00340{bottom:252.000000pt;}
.y6_c00340{bottom:276.000000pt;}
.y3_c00340{bottom:316.000000pt;}
.y1_c00340{bottom:652.000000pt;}
.ya_c00340{bottom:1061.333333pt;}
.h7_c00340{height:24.305557pt;}
.h8_c00340{height:36.406250pt;}
.h2_c00340{height:45.117188pt;}
.h4_c00340{height:45.500000pt;}
.h6_c00340{height:49.843750pt;}
.h5_c00340{height:50.604400pt;}
.h3_c00340{height:310.666667pt;}
.h1_c00340{height:337.333333pt;}
.h0_c00340{height:1122.666667pt;}
.w1_c00340{width:602.828667pt;}
.w0_c00340{width:793.333333pt;}
.x0_c00340{left:0.000000pt;}
.x3_c00340{left:15.306880pt;}
.x4_c00340{left:104.161373pt;}
.x1_c00340{left:132.000000pt;}
.x2_c00340{left:195.966000pt;}
.x5_c00340{left:370.473600pt;}
.x6_c00340{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c5669b827fff7e97089ea29a.woff2')format("woff");}.ff1_c00341{font-family:ff1_c00341;line-height:0.987793;font-style:normal;font-weight:normal;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_743604886901291430543c59.woff2')format("woff");}.ff2_c00341{font-family:ff2_c00341;line-height:0.934082;font-style:normal;font-weight:normal;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_aff57aa6374a69d333740a29.woff2')format("woff");}.ff3_c00341{font-family:ff3_c00341;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00341;src:url('chunks/assets/font_4f763ddfb0b1ea729dc4808f.woff2')format("woff");}.ff4_c00341{font-family:ff4_c00341;line-height:0.756836;font-style:normal;font-weight:normal;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_ec5e3e242a3c8d057207721c.woff2')format("woff");}.ff5_c00341{font-family:ff5_c00341;line-height:1.155762;font-style:normal;font-weight: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_c00341;src:url('chunks/assets/font_01df285fd65147023df56319.woff2')format("woff");}.ff6_c00341{font-family:ff6_c00341;line-height:0.680176;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00341;src:url('chunks/assets/font_43ba4acffb9d9597be0610e7.woff2')format("woff");}.ff7_c00341{font-family:ff7_c00341;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00341;src:url('chunks/assets/font_be6c8b7db551aaec0fafde37.woff2')format("woff");}.ff8_c00341{font-family:ff8_c00341;line-height:0.678223;font-style: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);}
.v3_c00341{vertical-align:-33.000000px;}
.v2_c00341{vertical-align:-23.086200px;}
.v0_c00341{vertical-align:0.000000px;}
.v1_c00341{vertical-align:23.086200px;}
.ls2_c00341{letter-spacing:-0.009600px;}
.ls1_c00341{letter-spacing:0.000000px;}
.ls0_c00341{letter-spacing:0.007200px;}
.ls3_c00341{letter-spacing:0.012000px;}
.sc__c00341{text-shadow:none;}
.sc0_c00341{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00341{-webkit-text-stroke:0px transparent;}
.sc0_c00341{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00341{word-spacing:-19.807200px;}
.ws2_c00341{word-spacing:-0.040000px;}
.ws3_c00341{word-spacing:0.000000px;}
.ws0_c00341{word-spacing:17.223600px;}
._f_c00341{margin-left:-7.740240px;}
._b_c00341{margin-left:-4.557600px;}
._7_c00341{margin-left:-3.535200px;}
._3_c00341{margin-left:-2.412000px;}
._5_c00341{margin-left:-1.353600px;}
._d_c00341{width:1.000800px;}
._1_c00341{width:2.656800px;}
._2_c00341{width:4.039200px;}
._0_c00341{width:6.775200px;}
._6_c00341{width:8.114400px;}
._4_c00341{width:9.324000px;}
._8_c00341{width:11.268000px;}
._e_c00341{width:12.895200px;}
._a_c00341{width:15.357600px;}
._9_c00341{width:17.100000px;}
._c_c00341{width:21.672000px;}
.fc0_c00341{color:rgb(0,0,0);}
.fs4_c00341{font-size:40.000002px;}
.fs2_c00341{font-size:48.000000px;}
.fs0_c00341{font-size:54.000000px;}
.fs3_c00341{font-size:60.000000px;}
.fs1_c00341{font-size:72.000000px;}
.y0_c00341{bottom:0.000000px;}
.y2_c00341{bottom:12.000000px;}
.ya_c00341{bottom:67.500000px;}
.yb_c00341{bottom:140.250000px;}
.y8_c00341{bottom:177.000000px;}
.y7_c00341{bottom:591.000000px;}
.y6_c00341{bottom:618.000000px;}
.y5_c00341{bottom:645.000000px;}
.y4_c00341{bottom:672.000000px;}
.y3_c00341{bottom:699.000000px;}
.y1_c00341{bottom:744.000000px;}
.y9_c00341{bottom:1194.000000px;}
.h8_c00341{height:26.835939px;}
.h2_c00341{height:42.292969px;}
.h7_c00341{height:44.208984px;}
.h3_c00341{height:51.257812px;}
.h6_c00341{height:56.074219px;}
.h4_c00341{height:56.929950px;}
.h1_c00341{height:330.000000px;}
.h5_c00341{height:382.500000px;}
.h0_c00341{height:1263.000000px;}
.w1_c00341{width:678.182100px;}
.w2_c00341{width:678.182250px;}
.w0_c00341{width:892.500000px;}
.x0_c00341{left:0.000000px;}
.x1_c00341{left:66.000000px;}
.x3_c00341{left:196.164450px;}
.x2_c00341{left:295.740150px;}
@media print{
.v3_c00341{vertical-align:-29.333333pt;}
.v2_c00341{vertical-align:-20.521067pt;}
.v0_c00341{vertical-align:0.000000pt;}
.v1_c00341{vertical-align:20.521067pt;}
.ls2_c00341{letter-spacing:-0.008533pt;}
.ls1_c00341{letter-spacing:0.000000pt;}
.ls0_c00341{letter-spacing:0.006400pt;}
.ls3_c00341{letter-spacing:0.010667pt;}
.ws1_c00341{word-spacing:-17.606400pt;}
.ws2_c00341{word-spacing:-0.035556pt;}
.ws3_c00341{word-spacing:0.000000pt;}
.ws0_c00341{word-spacing:15.309867pt;}
._f_c00341{margin-left:-6.880213pt;}
._b_c00341{margin-left:-4.051200pt;}
._7_c00341{margin-left:-3.142400pt;}
._3_c00341{margin-left:-2.144000pt;}
._5_c00341{margin-left:-1.203200pt;}
._d_c00341{width:0.889600pt;}
._1_c00341{width:2.361600pt;}
._2_c00341{width:3.590400pt;}
._0_c00341{width:6.022400pt;}
._6_c00341{width:7.212800pt;}
._4_c00341{width:8.288000pt;}
._8_c00341{width:10.016000pt;}
._e_c00341{width:11.462400pt;}
._a_c00341{width:13.651200pt;}
._9_c00341{width:15.200000pt;}
._c_c00341{width:19.264000pt;}
.fs4_c00341{font-size:35.555557pt;}
.fs2_c00341{font-size:42.666667pt;}
.fs0_c00341{font-size:48.000000pt;}
.fs3_c00341{font-size:53.333333pt;}
.fs1_c00341{font-size:64.000000pt;}
.y0_c00341{bottom:0.000000pt;}
.y2_c00341{bottom:10.666667pt;}
.ya_c00341{bottom:60.000000pt;}
.yb_c00341{bottom:124.666667pt;}
.y8_c00341{bottom:157.333333pt;}
.y7_c00341{bottom:525.333333pt;}
.y6_c00341{bottom:549.333333pt;}
.y5_c00341{bottom:573.333333pt;}
.y4_c00341{bottom:597.333333pt;}
.y3_c00341{bottom:621.333333pt;}
.y1_c00341{bottom:661.333333pt;}
.y9_c00341{bottom:1061.333333pt;}
.h8_c00341{height:23.854168pt;}
.h2_c00341{height:37.593750pt;}
.h7_c00341{height:39.296875pt;}
.h3_c00341{height:45.562500pt;}
.h6_c00341{height:49.843750pt;}
.h4_c00341{height:50.604400pt;}
.h1_c00341{height:293.333333pt;}
.h5_c00341{height:340.000000pt;}
.h0_c00341{height:1122.666667pt;}
.w1_c00341{width:602.828533pt;}
.w2_c00341{width:602.828667pt;}
.w0_c00341{width:793.333333pt;}
.x0_c00341{left:0.000000pt;}
.x1_c00341{left:58.666667pt;}
.x3_c00341{left:174.368400pt;}
.x2_c00341{left:262.880133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c4190f825ed3df5218932f18.woff2')format("woff");}.ff1_c00342{font-family:ff1_c00342;line-height:0.933105;font-style:normal;font-weight:normal;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_81d57da84ff879fa850423bb.woff2')format("woff");}.ff2_c00342{font-family:ff2_c00342;line-height:0.987793;font-style:normal;font-weight:normal;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_89041d42882038f536c9ac77.woff2')format("woff");}.ff3_c00342{font-family:ff3_c00342;line-height:1.155762;font-style: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;}
.ls1_c00342{letter-spacing:0.000000px;}
.ls0_c00342{letter-spacing:0.012000px;}
.sc__c00342{text-shadow:none;}
.sc0_c00342{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00342{-webkit-text-stroke:0px transparent;}
.sc0_c00342{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00342{word-spacing:0.000000px;}
._5_c00342{margin-left:-4.507200px;}
._7_c00342{margin-left:-2.736000px;}
._3_c00342{margin-left:-1.224000px;}
._1_c00342{width:1.692000px;}
._2_c00342{width:3.859200px;}
._0_c00342{width:5.536800px;}
._4_c00342{width:6.789600px;}
._8_c00342{width:8.301600px;}
._6_c00342{width:10.072800px;}
._9_c00342{width:12.060000px;}
._b_c00342{width:15.372000px;}
._c_c00342{width:17.798400px;}
._a_c00342{width:24.400800px;}
.fc0_c00342{color:rgb(0,0,0);}
.fs1_c00342{font-size:54.000000px;}
.fs2_c00342{font-size:60.000000px;}
.fs0_c00342{font-size:72.000000px;}
.y0_c00342{bottom:0.000000px;}
.y5_c00342{bottom:12.000000px;}
.y9_c00342{bottom:67.500000px;}
.y7_c00342{bottom:141.000000px;}
.y6_c00342{bottom:168.000000px;}
.y4_c00342{bottom:213.000000px;}
.y3_c00342{bottom:1041.000000px;}
.y2_c00342{bottom:1068.000000px;}
.y1_c00342{bottom:1095.000000px;}
.y8_c00342{bottom:1194.000000px;}
.h3_c00342{height:42.292969px;}
.h1_c00342{height:51.187500px;}
.h4_c00342{height:56.074219px;}
.h2_c00342{height:796.500000px;}
.h0_c00342{height:1263.000000px;}
.w1_c00342{width:678.182250px;}
.w0_c00342{width:892.500000px;}
.x0_c00342{left:0.000000px;}
.x2_c00342{left:48.765285px;}
.x1_c00342{left:148.837515px;}
.x3_c00342{left:416.782800px;}
.x4_c00342{left:801.992850px;}
@media print{
.v0_c00342{vertical-align:0.000000pt;}
.ls1_c00342{letter-spacing:0.000000pt;}
.ls0_c00342{letter-spacing:0.010667pt;}
.ws0_c00342{word-spacing:0.000000pt;}
._5_c00342{margin-left:-4.006400pt;}
._7_c00342{margin-left:-2.432000pt;}
._3_c00342{margin-left:-1.088000pt;}
._1_c00342{width:1.504000pt;}
._2_c00342{width:3.430400pt;}
._0_c00342{width:4.921600pt;}
._4_c00342{width:6.035200pt;}
._8_c00342{width:7.379200pt;}
._6_c00342{width:8.953600pt;}
._9_c00342{width:10.720000pt;}
._b_c00342{width:13.664000pt;}
._c_c00342{width:15.820800pt;}
._a_c00342{width:21.689600pt;}
.fs1_c00342{font-size:48.000000pt;}
.fs2_c00342{font-size:53.333333pt;}
.fs0_c00342{font-size:64.000000pt;}
.y0_c00342{bottom:0.000000pt;}
.y5_c00342{bottom:10.666667pt;}
.y9_c00342{bottom:60.000000pt;}
.y7_c00342{bottom:125.333333pt;}
.y6_c00342{bottom:149.333333pt;}
.y4_c00342{bottom:189.333333pt;}
.y3_c00342{bottom:925.333333pt;}
.y2_c00342{bottom:949.333333pt;}
.y1_c00342{bottom:973.333333pt;}
.y8_c00342{bottom:1061.333333pt;}
.h3_c00342{height:37.593750pt;}
.h1_c00342{height:45.500000pt;}
.h4_c00342{height:49.843750pt;}
.h2_c00342{height:708.000000pt;}
.h0_c00342{height:1122.666667pt;}
.w1_c00342{width:602.828667pt;}
.w0_c00342{width:793.333333pt;}
.x0_c00342{left:0.000000pt;}
.x2_c00342{left:43.346920pt;}
.x1_c00342{left:132.300013pt;}
.x3_c00342{left:370.473600pt;}
.x4_c00342{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8aaa9c9dcfc043113277f837.woff2')format("woff");}.ff1_c00343{font-family:ff1_c00343;line-height:0.934082;font-style:normal;font-weight:normal;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_576cec890b2563c13963b2be.woff2')format("woff");}.ff2_c00343{font-family:ff2_c00343;line-height:0.963867;font-style:normal;font-weight:normal;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_47b93c3abcdace535894f5c3.woff2')format("woff");}.ff3_c00343{font-family:ff3_c00343;line-height:0.755859;font-style:normal;font-weight:normal;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_659c72207907c59a8ba92b30.woff2')format("woff");}.ff4_c00343{font-family:ff4_c00343;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00343{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00343{vertical-align:0.000000px;}
.ls0_c00343{letter-spacing:0.000000px;}
.ls1_c00343{letter-spacing:0.012000px;}
.sc__c00343{text-shadow:none;}
.sc0_c00343{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00343{-webkit-text-stroke:0px transparent;}
.sc0_c00343{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00343{word-spacing:0.000000px;}
._15_c00343{margin-left:-7.099200px;}
._7_c00343{margin-left:-3.751200px;}
._1_c00343{margin-left:-2.743200px;}
._9_c00343{margin-left:-1.260000px;}
._5_c00343{width:1.080000px;}
._b_c00343{width:2.289600px;}
._3_c00343{width:3.888000px;}
._8_c00343{width:4.996800px;}
._e_c00343{width:6.955200px;}
._a_c00343{width:7.956000px;}
._f_c00343{width:9.525600px;}
._c_c00343{width:10.569600px;}
._d_c00343{width:12.549600px;}
._11_c00343{width:14.407200px;}
._10_c00343{width:15.962400px;}
._13_c00343{width:17.251200px;}
._12_c00343{width:18.741600px;}
._4_c00343{width:20.944800px;}
._14_c00343{width:22.392000px;}
._6_c00343{width:23.803200px;}
._0_c00343{width:24.919200px;}
._2_c00343{width:27.583200px;}
.fc0_c00343{color:rgb(0,0,0);}
.fs1_c00343{font-size:54.000000px;}
.fs2_c00343{font-size:60.000000px;}
.fs0_c00343{font-size:72.000000px;}
.y0_c00343{bottom:0.000000px;}
.y7_c00343{bottom:12.000000px;}
.y12_c00343{bottom:67.500000px;}
.y10_c00343{bottom:157.500000px;}
.yf_c00343{bottom:184.500000px;}
.ye_c00343{bottom:211.500000px;}
.yd_c00343{bottom:238.500000px;}
.yc_c00343{bottom:265.500000px;}
.yb_c00343{bottom:313.500000px;}
.ya_c00343{bottom:340.500000px;}
.y9_c00343{bottom:367.500000px;}
.y8_c00343{bottom:394.500000px;}
.y6_c00343{bottom:439.500000px;}
.y5_c00343{bottom:987.000000px;}
.y4_c00343{bottom:1014.000000px;}
.y3_c00343{bottom:1041.000000px;}
.y2_c00343{bottom:1068.000000px;}
.y1_c00343{bottom:1095.000000px;}
.y11_c00343{bottom:1194.000000px;}
.h3_c00343{height:41.633789px;}
.h5_c00343{height:44.208984px;}
.h1_c00343{height:51.257812px;}
.h4_c00343{height:56.074219px;}
.h2_c00343{height:516.000000px;}
.h0_c00343{height:1263.000000px;}
.w1_c00343{width:678.182250px;}
.w0_c00343{width:892.500000px;}
.x0_c00343{left:0.000000px;}
.x1_c00343{left:65.480310px;}
.x2_c00343{left:165.295050px;}
@media print{
.v0_c00343{vertical-align:0.000000pt;}
.ls0_c00343{letter-spacing:0.000000pt;}
.ls1_c00343{letter-spacing:0.010667pt;}
.ws0_c00343{word-spacing:0.000000pt;}
._15_c00343{margin-left:-6.310400pt;}
._7_c00343{margin-left:-3.334400pt;}
._1_c00343{margin-left:-2.438400pt;}
._9_c00343{margin-left:-1.120000pt;}
._5_c00343{width:0.960000pt;}
._b_c00343{width:2.035200pt;}
._3_c00343{width:3.456000pt;}
._8_c00343{width:4.441600pt;}
._e_c00343{width:6.182400pt;}
._a_c00343{width:7.072000pt;}
._f_c00343{width:8.467200pt;}
._c_c00343{width:9.395200pt;}
._d_c00343{width:11.155200pt;}
._11_c00343{width:12.806400pt;}
._10_c00343{width:14.188800pt;}
._13_c00343{width:15.334400pt;}
._12_c00343{width:16.659200pt;}
._4_c00343{width:18.617600pt;}
._14_c00343{width:19.904000pt;}
._6_c00343{width:21.158400pt;}
._0_c00343{width:22.150400pt;}
._2_c00343{width:24.518400pt;}
.fs1_c00343{font-size:48.000000pt;}
.fs2_c00343{font-size:53.333333pt;}
.fs0_c00343{font-size:64.000000pt;}
.y0_c00343{bottom:0.000000pt;}
.y7_c00343{bottom:10.666667pt;}
.y12_c00343{bottom:60.000000pt;}
.y10_c00343{bottom:140.000000pt;}
.yf_c00343{bottom:164.000000pt;}
.ye_c00343{bottom:188.000000pt;}
.yd_c00343{bottom:212.000000pt;}
.yc_c00343{bottom:236.000000pt;}
.yb_c00343{bottom:278.666667pt;}
.ya_c00343{bottom:302.666667pt;}
.y9_c00343{bottom:326.666667pt;}
.y8_c00343{bottom:350.666667pt;}
.y6_c00343{bottom:390.666667pt;}
.y5_c00343{bottom:877.333333pt;}
.y4_c00343{bottom:901.333333pt;}
.y3_c00343{bottom:925.333333pt;}
.y2_c00343{bottom:949.333333pt;}
.y1_c00343{bottom:973.333333pt;}
.y11_c00343{bottom:1061.333333pt;}
.h3_c00343{height:37.007812pt;}
.h5_c00343{height:39.296875pt;}
.h1_c00343{height:45.562500pt;}
.h4_c00343{height:49.843750pt;}
.h2_c00343{height:458.666667pt;}
.h0_c00343{height:1122.666667pt;}
.w1_c00343{width:602.828667pt;}
.w0_c00343{width:793.333333pt;}
.x0_c00343{left:0.000000pt;}
.x1_c00343{left:58.204720pt;}
.x2_c00343{left:146.928933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ba22ebb21a361ea3bd89b7df.woff2')format("woff");}.ff1_c00344{font-family:ff1_c00344;line-height:0.987793;font-style:normal;font-weight:normal;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_1c04cdff51c9ba4cdabff8ce.woff2')format("woff");}.ff2_c00344{font-family:ff2_c00344;line-height:0.931152;font-style:normal;font-weight:normal;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_4df37d3d6ae81bacc15f47d2.woff2')format("woff");}.ff3_c00344{font-family:ff3_c00344;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00344{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00344{vertical-align:0.000000px;}
.ls1_c00344{letter-spacing:0.000000px;}
.ls0_c00344{letter-spacing:0.012000px;}
.sc__c00344{text-shadow:none;}
.sc0_c00344{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00344{-webkit-text-stroke:0px transparent;}
.sc0_c00344{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00344{word-spacing:0.000000px;}
._7_c00344{margin-left:-3.276000px;}
._2_c00344{margin-left:-1.209600px;}
._1_c00344{width:1.281600px;}
._0_c00344{width:2.325600px;}
._4_c00344{width:4.320000px;}
._3_c00344{width:5.716800px;}
._6_c00344{width:7.394400px;}
._5_c00344{width:8.481600px;}
._8_c00344{width:9.511200px;}
.fc0_c00344{color:rgb(0,0,0);}
.fs0_c00344{font-size:54.000000px;}
.fs2_c00344{font-size:60.000000px;}
.fs1_c00344{font-size:72.000000px;}
.y0_c00344{bottom:0.000000px;}
.y3_c00344{bottom:10.500000px;}
.y2_c00344{bottom:28.500000px;}
.y7_c00344{bottom:67.500000px;}
.y5_c00344{bottom:151.500000px;}
.y4_c00344{bottom:178.500000px;}
.y1_c00344{bottom:223.500000px;}
.y6_c00344{bottom:1194.000000px;}
.h2_c00344{height:42.292969px;}
.h3_c00344{height:51.187500px;}
.h4_c00344{height:56.074219px;}
.h1_c00344{height:889.500000px;}
.h0_c00344{height:1263.000000px;}
.w1_c00344{width:678.182250px;}
.w0_c00344{width:892.500000px;}
.x0_c00344{left:0.000000px;}
.x2_c00344{left:37.658115px;}
.x1_c00344{left:148.500000px;}
.x3_c00344{left:168.844800px;}
.x4_c00344{left:416.782800px;}
.x5_c00344{left:801.992850px;}
@media print{
.v0_c00344{vertical-align:0.000000pt;}
.ls1_c00344{letter-spacing:0.000000pt;}
.ls0_c00344{letter-spacing:0.010667pt;}
.ws0_c00344{word-spacing:0.000000pt;}
._7_c00344{margin-left:-2.912000pt;}
._2_c00344{margin-left:-1.075200pt;}
._1_c00344{width:1.139200pt;}
._0_c00344{width:2.067200pt;}
._4_c00344{width:3.840000pt;}
._3_c00344{width:5.081600pt;}
._6_c00344{width:6.572800pt;}
._5_c00344{width:7.539200pt;}
._8_c00344{width:8.454400pt;}
.fs0_c00344{font-size:48.000000pt;}
.fs2_c00344{font-size:53.333333pt;}
.fs1_c00344{font-size:64.000000pt;}
.y0_c00344{bottom:0.000000pt;}
.y3_c00344{bottom:9.333333pt;}
.y2_c00344{bottom:25.333333pt;}
.y7_c00344{bottom:60.000000pt;}
.y5_c00344{bottom:134.666667pt;}
.y4_c00344{bottom:158.666667pt;}
.y1_c00344{bottom:198.666667pt;}
.y6_c00344{bottom:1061.333333pt;}
.h2_c00344{height:37.593750pt;}
.h3_c00344{height:45.500000pt;}
.h4_c00344{height:49.843750pt;}
.h1_c00344{height:790.666667pt;}
.h0_c00344{height:1122.666667pt;}
.w1_c00344{width:602.828667pt;}
.w0_c00344{width:793.333333pt;}
.x0_c00344{left:0.000000pt;}
.x2_c00344{left:33.473880pt;}
.x1_c00344{left:132.000000pt;}
.x3_c00344{left:150.084267pt;}
.x4_c00344{left:370.473600pt;}
.x5_c00344{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_be06ba824e9a8bc0a8d744a0.woff2')format("woff");}.ff1_c00345{font-family:ff1_c00345;line-height:0.934082;font-style:normal;font-weight:normal;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_d3987d3bb7ce05e2cfe435a0.woff2')format("woff");}.ff2_c00345{font-family:ff2_c00345;line-height:0.987793;font-style:normal;font-weight:normal;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_f4b026bd7cd5a32137b270be.woff2')format("woff");}.ff3_c00345{font-family:ff3_c00345;line-height:0.755859;font-style:normal;font-weight:normal;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_84f8e35388f6aa0060ceaa21.woff2')format("woff");}.ff4_c00345{font-family:ff4_c00345;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00345{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00345{vertical-align:0.000000px;}
.ls0_c00345{letter-spacing:0.000000px;}
.ls1_c00345{letter-spacing:0.012000px;}
.sc__c00345{text-shadow:none;}
.sc0_c00345{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00345{-webkit-text-stroke:0px transparent;}
.sc0_c00345{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00345{word-spacing:0.000000px;}
._6_c00345{margin-left:-7.934400px;}
._f_c00345{margin-left:-6.228000px;}
._3_c00345{margin-left:-4.039200px;}
._1_c00345{margin-left:-2.844000px;}
._4_c00345{margin-left:-1.224000px;}
._5_c00345{width:1.339200px;}
._0_c00345{width:2.980800px;}
._2_c00345{width:4.320000px;}
._7_c00345{width:5.342400px;}
._c_c00345{width:6.415200px;}
._d_c00345{width:8.481600px;}
._e_c00345{width:10.317600px;}
._9_c00345{width:22.492800px;}
._a_c00345{width:25.509600px;}
._8_c00345{width:26.697600px;}
._b_c00345{width:29.476800px;}
.fc0_c00345{color:rgb(0,0,0);}
.fs1_c00345{font-size:54.000000px;}
.fs2_c00345{font-size:60.000000px;}
.fs0_c00345{font-size:72.000000px;}
.y0_c00345{bottom:0.000000px;}
.y5_c00345{bottom:12.000000px;}
.yc_c00345{bottom:67.500000px;}
.ya_c00345{bottom:144.000000px;}
.y9_c00345{bottom:171.000000px;}
.y8_c00345{bottom:198.000000px;}
.y7_c00345{bottom:225.000000px;}
.y6_c00345{bottom:270.000000px;}
.y4_c00345{bottom:633.000000px;}
.y3_c00345{bottom:1041.000000px;}
.y2_c00345{bottom:1068.000000px;}
.y1_c00345{bottom:1095.000000px;}
.yb_c00345{bottom:1194.000000px;}
.h3_c00345{height:42.292969px;}
.h6_c00345{height:44.208984px;}
.h1_c00345{height:51.257812px;}
.h5_c00345{height:56.074219px;}
.h4_c00345{height:334.500000px;}
.h2_c00345{height:376.500000px;}
.h0_c00345{height:1263.000000px;}
.w1_c00345{width:678.182250px;}
.w0_c00345{width:892.500000px;}
.x0_c00345{left:0.000000px;}
.x1_c00345{left:65.480310px;}
.x2_c00345{left:111.664215px;}
.x3_c00345{left:227.805150px;}
@media print{
.v0_c00345{vertical-align:0.000000pt;}
.ls0_c00345{letter-spacing:0.000000pt;}
.ls1_c00345{letter-spacing:0.010667pt;}
.ws0_c00345{word-spacing:0.000000pt;}
._6_c00345{margin-left:-7.052800pt;}
._f_c00345{margin-left:-5.536000pt;}
._3_c00345{margin-left:-3.590400pt;}
._1_c00345{margin-left:-2.528000pt;}
._4_c00345{margin-left:-1.088000pt;}
._5_c00345{width:1.190400pt;}
._0_c00345{width:2.649600pt;}
._2_c00345{width:3.840000pt;}
._7_c00345{width:4.748800pt;}
._c_c00345{width:5.702400pt;}
._d_c00345{width:7.539200pt;}
._e_c00345{width:9.171200pt;}
._9_c00345{width:19.993600pt;}
._a_c00345{width:22.675200pt;}
._8_c00345{width:23.731200pt;}
._b_c00345{width:26.201600pt;}
.fs1_c00345{font-size:48.000000pt;}
.fs2_c00345{font-size:53.333333pt;}
.fs0_c00345{font-size:64.000000pt;}
.y0_c00345{bottom:0.000000pt;}
.y5_c00345{bottom:10.666667pt;}
.yc_c00345{bottom:60.000000pt;}
.ya_c00345{bottom:128.000000pt;}
.y9_c00345{bottom:152.000000pt;}
.y8_c00345{bottom:176.000000pt;}
.y7_c00345{bottom:200.000000pt;}
.y6_c00345{bottom:240.000000pt;}
.y4_c00345{bottom:562.666667pt;}
.y3_c00345{bottom:925.333333pt;}
.y2_c00345{bottom:949.333333pt;}
.y1_c00345{bottom:973.333333pt;}
.yb_c00345{bottom:1061.333333pt;}
.h3_c00345{height:37.593750pt;}
.h6_c00345{height:39.296875pt;}
.h1_c00345{height:45.562500pt;}
.h5_c00345{height:49.843750pt;}
.h4_c00345{height:297.333333pt;}
.h2_c00345{height:334.666667pt;}
.h0_c00345{height:1122.666667pt;}
.w1_c00345{width:602.828667pt;}
.w0_c00345{width:793.333333pt;}
.x0_c00345{left:0.000000pt;}
.x1_c00345{left:58.204720pt;}
.x2_c00345{left:99.257080pt;}
.x3_c00345{left:202.493467pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1da8246ad83b645ee17938ac.woff2')format("woff");}.ff1_c00346{font-family:ff1_c00346;line-height:0.934082;font-style:normal;font-weight:normal;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_9e925b29d40f2f7e269f9c34.woff2')format("woff");}.ff2_c00346{font-family:ff2_c00346;line-height:0.987793;font-style:normal;font-weight:normal;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_838396ce7e48f0f384dacfbe.woff2')format("woff");}.ff3_c00346{font-family:ff3_c00346;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00346{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00346{vertical-align:0.000000px;}
.ls2_c00346{letter-spacing:0.000000px;}
.ls1_c00346{letter-spacing:0.012000px;}
.ls0_c00346{letter-spacing:0.032400px;}
.sc__c00346{text-shadow:none;}
.sc0_c00346{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00346{-webkit-text-stroke:0px transparent;}
.sc0_c00346{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00346{word-spacing:0.000000px;}
._10_c00346{margin-left:-7.221600px;}
._1_c00346{margin-left:-4.435200px;}
._e_c00346{margin-left:-3.276000px;}
._b_c00346{margin-left:-2.145600px;}
._7_c00346{margin-left:-1.101600px;}
._5_c00346{width:1.224000px;}
._3_c00346{width:2.577600px;}
._9_c00346{width:4.550400px;}
._c_c00346{width:5.940000px;}
._a_c00346{width:7.077600px;}
._14_c00346{width:9.079200px;}
._4_c00346{width:11.304000px;}
._6_c00346{width:12.499200px;}
._0_c00346{width:13.831200px;}
._8_c00346{width:14.968800px;}
._d_c00346{width:16.970400px;}
._2_c00346{width:18.252000px;}
._f_c00346{width:21.477600px;}
._13_c00346{width:23.227200px;}
._11_c00346{width:24.652800px;}
._12_c00346{width:26.474400px;}
.fc0_c00346{color:rgb(0,0,0);}
.fs1_c00346{font-size:54.000000px;}
.fs2_c00346{font-size:60.000000px;}
.fs0_c00346{font-size:72.000000px;}
.y0_c00346{bottom:0.000000px;}
.y8_c00346{bottom:12.000000px;}
.y10_c00346{bottom:67.500000px;}
.ye_c00346{bottom:132.000000px;}
.yd_c00346{bottom:477.000000px;}
.yc_c00346{bottom:504.000000px;}
.yb_c00346{bottom:531.000000px;}
.ya_c00346{bottom:558.000000px;}
.y9_c00346{bottom:585.000000px;}
.y7_c00346{bottom:630.000000px;}
.y6_c00346{bottom:960.000000px;}
.y5_c00346{bottom:987.000000px;}
.y4_c00346{bottom:1014.000000px;}
.y3_c00346{bottom:1041.000000px;}
.y2_c00346{bottom:1068.000000px;}
.y1_c00346{bottom:1095.000000px;}
.yf_c00346{bottom:1194.000000px;}
.h3_c00346{height:42.292969px;}
.h1_c00346{height:51.257812px;}
.h5_c00346{height:56.074219px;}
.h2_c00346{height:298.500000px;}
.h4_c00346{height:313.500000px;}
.h0_c00346{height:1263.000000px;}
.w1_c00346{width:678.182250px;}
.w0_c00346{width:892.500000px;}
.x0_c00346{left:0.000000px;}
.x2_c00346{left:126.360600px;}
.x1_c00346{left:148.837515px;}
.x3_c00346{left:224.973900px;}
.x4_c00346{left:416.782800px;}
.x5_c00346{left:801.992850px;}
@media print{
.v0_c00346{vertical-align:0.000000pt;}
.ls2_c00346{letter-spacing:0.000000pt;}
.ls1_c00346{letter-spacing:0.010667pt;}
.ls0_c00346{letter-spacing:0.028800pt;}
.ws0_c00346{word-spacing:0.000000pt;}
._10_c00346{margin-left:-6.419200pt;}
._1_c00346{margin-left:-3.942400pt;}
._e_c00346{margin-left:-2.912000pt;}
._b_c00346{margin-left:-1.907200pt;}
._7_c00346{margin-left:-0.979200pt;}
._5_c00346{width:1.088000pt;}
._3_c00346{width:2.291200pt;}
._9_c00346{width:4.044800pt;}
._c_c00346{width:5.280000pt;}
._a_c00346{width:6.291200pt;}
._14_c00346{width:8.070400pt;}
._4_c00346{width:10.048000pt;}
._6_c00346{width:11.110400pt;}
._0_c00346{width:12.294400pt;}
._8_c00346{width:13.305600pt;}
._d_c00346{width:15.084800pt;}
._2_c00346{width:16.224000pt;}
._f_c00346{width:19.091200pt;}
._13_c00346{width:20.646400pt;}
._11_c00346{width:21.913600pt;}
._12_c00346{width:23.532800pt;}
.fs1_c00346{font-size:48.000000pt;}
.fs2_c00346{font-size:53.333333pt;}
.fs0_c00346{font-size:64.000000pt;}
.y0_c00346{bottom:0.000000pt;}
.y8_c00346{bottom:10.666667pt;}
.y10_c00346{bottom:60.000000pt;}
.ye_c00346{bottom:117.333333pt;}
.yd_c00346{bottom:424.000000pt;}
.yc_c00346{bottom:448.000000pt;}
.yb_c00346{bottom:472.000000pt;}
.ya_c00346{bottom:496.000000pt;}
.y9_c00346{bottom:520.000000pt;}
.y7_c00346{bottom:560.000000pt;}
.y6_c00346{bottom:853.333333pt;}
.y5_c00346{bottom:877.333333pt;}
.y4_c00346{bottom:901.333333pt;}
.y3_c00346{bottom:925.333333pt;}
.y2_c00346{bottom:949.333333pt;}
.y1_c00346{bottom:973.333333pt;}
.yf_c00346{bottom:1061.333333pt;}
.h3_c00346{height:37.593750pt;}
.h1_c00346{height:45.562500pt;}
.h5_c00346{height:49.843750pt;}
.h2_c00346{height:265.333333pt;}
.h4_c00346{height:278.666667pt;}
.h0_c00346{height:1122.666667pt;}
.w1_c00346{width:602.828667pt;}
.w0_c00346{width:793.333333pt;}
.x0_c00346{left:0.000000pt;}
.x2_c00346{left:112.320533pt;}
.x1_c00346{left:132.300013pt;}
.x3_c00346{left:199.976800pt;}
.x4_c00346{left:370.473600pt;}
.x5_c00346{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_75fa26d5727c9106a5f420eb.woff2')format("woff");}.ff1_c00347{font-family:ff1_c00347;line-height:0.975586;font-style:normal;font-weight:normal;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_d78783bf48c217b2f817d56f.woff2')format("woff");}.ff2_c00347{font-family:ff2_c00347;line-height:0.755859;font-style:normal;font-weight:normal;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_7f403f468ba69b06a49d0ccf.woff2')format("woff");}.ff3_c00347{font-family:ff3_c00347;line-height:1.155762;font-style: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;}
.ls1_c00347{letter-spacing:-0.010800px;}
.ls2_c00347{letter-spacing:0.000000px;}
.ls3_c00347{letter-spacing:0.012000px;}
.ls0_c00347{letter-spacing:0.021600px;}
.sc__c00347{text-shadow:none;}
.sc0_c00347{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00347{-webkit-text-stroke:0px transparent;}
.sc0_c00347{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00347{word-spacing:0.000000px;}
._0_c00347{margin-left:-3.216000px;}
.fc0_c00347{color:rgb(0,0,0);}
.fs0_c00347{font-size:54.000000px;}
.fs1_c00347{font-size:60.000000px;}
.y0_c00347{bottom:0.000000px;}
.y2_c00347{bottom:12.000000px;}
.y5_c00347{bottom:67.500000px;}
.y3_c00347{bottom:178.500000px;}
.y1_c00347{bottom:655.500000px;}
.y4_c00347{bottom:1194.000000px;}
.h2_c00347{height:41.633789px;}
.h4_c00347{height:44.208984px;}
.h3_c00347{height:56.074219px;}
.h1_c00347{height:457.500000px;}
.h0_c00347{height:1263.000000px;}
.w1_c00347{width:678.182250px;}
.w0_c00347{width:892.500000px;}
.x0_c00347{left:0.000000px;}
.x1_c00347{left:66.000000px;}
.x3_c00347{left:239.261700px;}
.x2_c00347{left:276.808500px;}
@media print{
.v0_c00347{vertical-align:0.000000pt;}
.ls1_c00347{letter-spacing:-0.009600pt;}
.ls2_c00347{letter-spacing:0.000000pt;}
.ls3_c00347{letter-spacing:0.010667pt;}
.ls0_c00347{letter-spacing:0.019200pt;}
.ws0_c00347{word-spacing:0.000000pt;}
._0_c00347{margin-left:-2.858667pt;}
.fs0_c00347{font-size:48.000000pt;}
.fs1_c00347{font-size:53.333333pt;}
.y0_c00347{bottom:0.000000pt;}
.y2_c00347{bottom:10.666667pt;}
.y5_c00347{bottom:60.000000pt;}
.y3_c00347{bottom:158.666667pt;}
.y1_c00347{bottom:582.666667pt;}
.y4_c00347{bottom:1061.333333pt;}
.h2_c00347{height:37.007812pt;}
.h4_c00347{height:39.296875pt;}
.h3_c00347{height:49.843750pt;}
.h1_c00347{height:406.666667pt;}
.h0_c00347{height:1122.666667pt;}
.w1_c00347{width:602.828667pt;}
.w0_c00347{width:793.333333pt;}
.x0_c00347{left:0.000000pt;}
.x1_c00347{left:58.666667pt;}
.x3_c00347{left:212.677067pt;}
.x2_c00347{left:246.052000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fb902993229b88bf46ac7621.woff2')format("woff");}.ff1_c00348{font-family:ff1_c00348;line-height:0.882812;font-style:normal;font-weight:normal;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_24f0d0b259cb34f117632bb4.woff2')format("woff");}.ff2_c00348{font-family:ff2_c00348;line-height:1.163086;font-style:normal;font-weight:normal;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_9c5002030774832066c0f354.woff2')format("woff");}.ff3_c00348{font-family:ff3_c00348;line-height:0.932129;font-style:normal;font-weight:normal;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_e049f6c4aeb82ce7e73d33cc.woff2')format("woff");}.ff4_c00348{font-family:ff4_c00348;line-height:1.010254;font-style:normal;font-weight:normal;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_c2a99bdd71a569115d120c33.woff2')format("woff");}.ff5_c00348{font-family:ff5_c00348;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00348{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00348{vertical-align:0.000000px;}
.ls2_c00348{letter-spacing:0.000000px;}
.ls0_c00348{letter-spacing:0.007200px;}
.ls1_c00348{letter-spacing:0.012000px;}
.sc__c00348{text-shadow:none;}
.sc0_c00348{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00348{-webkit-text-stroke:0px transparent;}
.sc0_c00348{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00348{word-spacing:0.000000px;}
._10_c00348{margin-left:-7.185600px;}
._16_c00348{margin-left:-6.076800px;}
._13_c00348{margin-left:-5.040060px;}
._d_c00348{margin-left:-3.729600px;}
._9_c00348{margin-left:-2.570400px;}
._7_c00348{margin-left:-1.324800px;}
._0_c00348{width:1.332000px;}
._5_c00348{width:2.484000px;}
._2_c00348{width:4.053600px;}
._11_c00348{width:5.191200px;}
._3_c00348{width:6.343200px;}
._6_c00348{width:7.848000px;}
._4_c00348{width:9.021600px;}
._1_c00348{width:10.353600px;}
._8_c00348{width:11.642400px;}
._a_c00348{width:12.924000px;}
._12_c00348{width:14.736000px;}
._19_c00348{width:16.845600px;}
._15_c00348{width:18.098400px;}
._14_c00348{width:19.536000px;}
._17_c00348{width:20.690400px;}
._c_c00348{width:21.722400px;}
._b_c00348{width:22.989600px;}
._18_c00348{width:24.441600px;}
._f_c00348{width:25.624800px;}
._e_c00348{width:26.726400px;}
._1a_c00348{width:28.605600px;}
._1b_c00348{width:32.301660px;}
.fc0_c00348{color:rgb(0,0,0);}
.fs1_c00348{font-size:60.000000px;}
.fs0_c00348{font-size:72.000000px;}
.y0_c00348{bottom:0.000000px;}
.y1f_c00348{bottom:67.500000px;}
.y1d_c00348{bottom:135.000000px;}
.y1c_c00348{bottom:159.000000px;}
.y1b_c00348{bottom:184.500000px;}
.y1a_c00348{bottom:210.000000px;}
.y19_c00348{bottom:235.500000px;}
.y18_c00348{bottom:261.000000px;}
.y17_c00348{bottom:285.000000px;}
.y16_c00348{bottom:310.500000px;}
.y15_c00348{bottom:336.000000px;}
.y14_c00348{bottom:361.500000px;}
.y13_c00348{bottom:387.000000px;}
.y12_c00348{bottom:430.500000px;}
.y11_c00348{bottom:451.500000px;}
.y10_c00348{bottom:496.500000px;}
.yf_c00348{bottom:544.500000px;}
.ye_c00348{bottom:592.500000px;}
.yd_c00348{bottom:688.500000px;}
.yc_c00348{bottom:715.500000px;}
.yb_c00348{bottom:763.500000px;}
.ya_c00348{bottom:790.500000px;}
.y9_c00348{bottom:817.500000px;}
.y8_c00348{bottom:865.500000px;}
.y7_c00348{bottom:892.500000px;}
.y6_c00348{bottom:919.500000px;}
.y5_c00348{bottom:946.500000px;}
.y4_c00348{bottom:994.500000px;}
.y3_c00348{bottom:1021.500000px;}
.y2_c00348{bottom:1048.500000px;}
.y1_c00348{bottom:1095.000000px;}
.y1e_c00348{bottom:1194.000000px;}
.h1_c00348{height:50.835938px;}
.h3_c00348{height:51.257812px;}
.h5_c00348{height:52.417969px;}
.h6_c00348{height:56.074219px;}
.h4_c00348{height:56.455078px;}
.h2_c00348{height:67.746094px;}
.h0_c00348{height:1263.000000px;}
.w0_c00348{width:892.500000px;}
.x0_c00348{left:0.000000px;}
.x1_c00348{left:148.837515px;}
.x2_c00348{left:416.782800px;}
.x3_c00348{left:801.992850px;}
@media print{
.v0_c00348{vertical-align:0.000000pt;}
.ls2_c00348{letter-spacing:0.000000pt;}
.ls0_c00348{letter-spacing:0.006400pt;}
.ls1_c00348{letter-spacing:0.010667pt;}
.ws0_c00348{word-spacing:0.000000pt;}
._10_c00348{margin-left:-6.387200pt;}
._16_c00348{margin-left:-5.401600pt;}
._13_c00348{margin-left:-4.480053pt;}
._d_c00348{margin-left:-3.315200pt;}
._9_c00348{margin-left:-2.284800pt;}
._7_c00348{margin-left:-1.177600pt;}
._0_c00348{width:1.184000pt;}
._5_c00348{width:2.208000pt;}
._2_c00348{width:3.603200pt;}
._11_c00348{width:4.614400pt;}
._3_c00348{width:5.638400pt;}
._6_c00348{width:6.976000pt;}
._4_c00348{width:8.019200pt;}
._1_c00348{width:9.203200pt;}
._8_c00348{width:10.348800pt;}
._a_c00348{width:11.488000pt;}
._12_c00348{width:13.098667pt;}
._19_c00348{width:14.973867pt;}
._15_c00348{width:16.087467pt;}
._14_c00348{width:17.365333pt;}
._17_c00348{width:18.391467pt;}
._c_c00348{width:19.308800pt;}
._b_c00348{width:20.435200pt;}
._18_c00348{width:21.725867pt;}
._f_c00348{width:22.777600pt;}
._e_c00348{width:23.756800pt;}
._1a_c00348{width:25.427200pt;}
._1b_c00348{width:28.712587pt;}
.fs1_c00348{font-size:53.333333pt;}
.fs0_c00348{font-size:64.000000pt;}
.y0_c00348{bottom:0.000000pt;}
.y1f_c00348{bottom:60.000000pt;}
.y1d_c00348{bottom:120.000000pt;}
.y1c_c00348{bottom:141.333333pt;}
.y1b_c00348{bottom:164.000000pt;}
.y1a_c00348{bottom:186.666667pt;}
.y19_c00348{bottom:209.333333pt;}
.y18_c00348{bottom:232.000000pt;}
.y17_c00348{bottom:253.333333pt;}
.y16_c00348{bottom:276.000000pt;}
.y15_c00348{bottom:298.666667pt;}
.y14_c00348{bottom:321.333333pt;}
.y13_c00348{bottom:344.000000pt;}
.y12_c00348{bottom:382.666667pt;}
.y11_c00348{bottom:401.333333pt;}
.y10_c00348{bottom:441.333333pt;}
.yf_c00348{bottom:484.000000pt;}
.ye_c00348{bottom:526.666667pt;}
.yd_c00348{bottom:612.000000pt;}
.yc_c00348{bottom:636.000000pt;}
.yb_c00348{bottom:678.666667pt;}
.ya_c00348{bottom:702.666667pt;}
.y9_c00348{bottom:726.666667pt;}
.y8_c00348{bottom:769.333333pt;}
.y7_c00348{bottom:793.333333pt;}
.y6_c00348{bottom:817.333333pt;}
.y5_c00348{bottom:841.333333pt;}
.y4_c00348{bottom:884.000000pt;}
.y3_c00348{bottom:908.000000pt;}
.y2_c00348{bottom:932.000000pt;}
.y1_c00348{bottom:973.333333pt;}
.y1e_c00348{bottom:1061.333333pt;}
.h1_c00348{height:45.187500pt;}
.h3_c00348{height:45.562500pt;}
.h5_c00348{height:46.593750pt;}
.h6_c00348{height:49.843750pt;}
.h4_c00348{height:50.182292pt;}
.h2_c00348{height:60.218750pt;}
.h0_c00348{height:1122.666667pt;}
.w0_c00348{width:793.333333pt;}
.x0_c00348{left:0.000000pt;}
.x1_c00348{left:132.300013pt;}
.x2_c00348{left:370.473600pt;}
.x3_c00348{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_88f2ec2be61eafb7426dff98.woff2')format("woff");}.ff1_c00349{font-family:ff1_c00349;line-height:1.010254;font-style:normal;font-weight:normal;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_56ba0aad8813cbfeb6ddb986.woff2')format("woff");}.ff2_c00349{font-family:ff2_c00349;line-height:0.986816;font-style:normal;font-weight:normal;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_849c6f11e41d033919c2ac42.woff2')format("woff");}.ff3_c00349{font-family:ff3_c00349;line-height:0.755859;font-style:normal;font-weight:normal;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_0a65f0065f56685314088714.woff2')format("woff");}.ff4_c00349{font-family:ff4_c00349;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00349{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00349{vertical-align:0.000000px;}
.ls1_c00349{letter-spacing:0.000000px;}
.ls0_c00349{letter-spacing:0.000600px;}
.ls2_c00349{letter-spacing:0.012000px;}
.sc__c00349{text-shadow:none;}
.sc0_c00349{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00349{-webkit-text-stroke:0px transparent;}
.sc0_c00349{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00349{word-spacing:-18.000000px;}
.ws0_c00349{word-spacing:-0.072000px;}
.ws2_c00349{word-spacing:0.000000px;}
._1e_c00349{margin-left:-7.063200px;}
._5_c00349{margin-left:-5.133600px;}
._c_c00349{margin-left:-3.787200px;}
._d_c00349{margin-left:-2.376000px;}
._3_c00349{margin-left:-1.288800px;}
._e_c00349{width:1.036800px;}
._1_c00349{width:2.138400px;}
._8_c00349{width:3.146400px;}
._7_c00349{width:4.514400px;}
._9_c00349{width:6.076800px;}
._2_c00349{width:7.768800px;}
._0_c00349{width:8.776800px;}
._4_c00349{width:10.620000px;}
._a_c00349{width:11.685600px;}
._1d_c00349{width:13.212000px;}
._6_c00349{width:14.479200px;}
._b_c00349{width:15.904800px;}
._15_c00349{width:19.000800px;}
._14_c00349{width:20.563200px;}
._12_c00349{width:21.787200px;}
._11_c00349{width:23.018400px;}
._1c_c00349{width:24.192000px;}
._10_c00349{width:25.243200px;}
._13_c00349{width:26.539200px;}
._f_c00349{width:27.590400px;}
._1b_c00349{width:32.724000px;}
._19_c00349{width:33.804000px;}
._16_c00349{width:34.884000px;}
._17_c00349{width:36.187200px;}
._18_c00349{width:38.656800px;}
._1a_c00349{width:40.003200px;}
.fc0_c00349{color:rgb(0,0,0);}
.fs1_c00349{font-size:60.000000px;}
.fs0_c00349{font-size:72.000000px;}
.y0_c00349{bottom:0.000000px;}
.y21_c00349{bottom:67.500000px;}
.y1f_c00349{bottom:340.500000px;}
.y1e_c00349{bottom:366.000000px;}
.y1d_c00349{bottom:391.500000px;}
.y1c_c00349{bottom:417.000000px;}
.y1b_c00349{bottom:442.500000px;}
.y1a_c00349{bottom:466.500000px;}
.y19_c00349{bottom:492.000000px;}
.y18_c00349{bottom:517.500000px;}
.y17_c00349{bottom:543.000000px;}
.y16_c00349{bottom:568.500000px;}
.y15_c00349{bottom:592.500000px;}
.y14_c00349{bottom:618.000000px;}
.y13_c00349{bottom:643.500000px;}
.y12_c00349{bottom:669.000000px;}
.y11_c00349{bottom:694.500000px;}
.y10_c00349{bottom:718.500000px;}
.yf_c00349{bottom:744.000000px;}
.ye_c00349{bottom:769.500000px;}
.yd_c00349{bottom:795.000000px;}
.yc_c00349{bottom:820.500000px;}
.yb_c00349{bottom:844.500000px;}
.ya_c00349{bottom:870.000000px;}
.y9_c00349{bottom:895.500000px;}
.y8_c00349{bottom:921.000000px;}
.y7_c00349{bottom:946.500000px;}
.y6_c00349{bottom:970.500000px;}
.y5_c00349{bottom:996.000000px;}
.y4_c00349{bottom:1021.500000px;}
.y3_c00349{bottom:1047.000000px;}
.y2_c00349{bottom:1072.500000px;}
.y1_c00349{bottom:1096.500000px;}
.y20_c00349{bottom:1194.000000px;}
.h3_c00349{height:44.208984px;}
.h1_c00349{height:52.417969px;}
.h2_c00349{height:56.074219px;}
.h0_c00349{height:1263.000000px;}
.w0_c00349{width:892.500000px;}
.x0_c00349{left:0.000000px;}
.x1_c00349{left:65.480310px;}
@media print{
.v0_c00349{vertical-align:0.000000pt;}
.ls1_c00349{letter-spacing:0.000000pt;}
.ls0_c00349{letter-spacing:0.000533pt;}
.ls2_c00349{letter-spacing:0.010667pt;}
.ws1_c00349{word-spacing:-16.000000pt;}
.ws0_c00349{word-spacing:-0.064000pt;}
.ws2_c00349{word-spacing:0.000000pt;}
._1e_c00349{margin-left:-6.278400pt;}
._5_c00349{margin-left:-4.563200pt;}
._c_c00349{margin-left:-3.366400pt;}
._d_c00349{margin-left:-2.112000pt;}
._3_c00349{margin-left:-1.145600pt;}
._e_c00349{width:0.921600pt;}
._1_c00349{width:1.900800pt;}
._8_c00349{width:2.796800pt;}
._7_c00349{width:4.012800pt;}
._9_c00349{width:5.401600pt;}
._2_c00349{width:6.905600pt;}
._0_c00349{width:7.801600pt;}
._4_c00349{width:9.440000pt;}
._a_c00349{width:10.387200pt;}
._1d_c00349{width:11.744000pt;}
._6_c00349{width:12.870400pt;}
._b_c00349{width:14.137600pt;}
._15_c00349{width:16.889600pt;}
._14_c00349{width:18.278400pt;}
._12_c00349{width:19.366400pt;}
._11_c00349{width:20.460800pt;}
._1c_c00349{width:21.504000pt;}
._10_c00349{width:22.438400pt;}
._13_c00349{width:23.590400pt;}
._f_c00349{width:24.524800pt;}
._1b_c00349{width:29.088000pt;}
._19_c00349{width:30.048000pt;}
._16_c00349{width:31.008000pt;}
._17_c00349{width:32.166400pt;}
._18_c00349{width:34.361600pt;}
._1a_c00349{width:35.558400pt;}
.fs1_c00349{font-size:53.333333pt;}
.fs0_c00349{font-size:64.000000pt;}
.y0_c00349{bottom:0.000000pt;}
.y21_c00349{bottom:60.000000pt;}
.y1f_c00349{bottom:302.666667pt;}
.y1e_c00349{bottom:325.333333pt;}
.y1d_c00349{bottom:348.000000pt;}
.y1c_c00349{bottom:370.666667pt;}
.y1b_c00349{bottom:393.333333pt;}
.y1a_c00349{bottom:414.666667pt;}
.y19_c00349{bottom:437.333333pt;}
.y18_c00349{bottom:460.000000pt;}
.y17_c00349{bottom:482.666667pt;}
.y16_c00349{bottom:505.333333pt;}
.y15_c00349{bottom:526.666667pt;}
.y14_c00349{bottom:549.333333pt;}
.y13_c00349{bottom:572.000000pt;}
.y12_c00349{bottom:594.666667pt;}
.y11_c00349{bottom:617.333333pt;}
.y10_c00349{bottom:638.666667pt;}
.yf_c00349{bottom:661.333333pt;}
.ye_c00349{bottom:684.000000pt;}
.yd_c00349{bottom:706.666667pt;}
.yc_c00349{bottom:729.333333pt;}
.yb_c00349{bottom:750.666667pt;}
.ya_c00349{bottom:773.333333pt;}
.y9_c00349{bottom:796.000000pt;}
.y8_c00349{bottom:818.666667pt;}
.y7_c00349{bottom:841.333333pt;}
.y6_c00349{bottom:862.666667pt;}
.y5_c00349{bottom:885.333333pt;}
.y4_c00349{bottom:908.000000pt;}
.y3_c00349{bottom:930.666667pt;}
.y2_c00349{bottom:953.333333pt;}
.y1_c00349{bottom:974.666667pt;}
.y20_c00349{bottom:1061.333333pt;}
.h3_c00349{height:39.296875pt;}
.h1_c00349{height:46.593750pt;}
.h2_c00349{height:49.843750pt;}
.h0_c00349{height:1122.666667pt;}
.w0_c00349{width:793.333333pt;}
.x0_c00349{left:0.000000pt;}
.x1_c00349{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bc854b3a2c72a8e05143b7dc.woff2')format("woff");}.ff1_c00350{font-family:ff1_c00350;line-height:0.884766;font-style:normal;font-weight:normal;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_509bf77bd42cb53d09f76a63.woff2')format("woff");}.ff2_c00350{font-family:ff2_c00350;line-height:1.163086;font-style:normal;font-weight:normal;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_fbe2bfa93f03d86f614a3407.woff2')format("woff");}.ff3_c00350{font-family:ff3_c00350;line-height:1.155762;font-style:normal;font-weight:normal;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_ef1b06a6e89474e6ee1dc3cc.woff2')format("woff");}.ff4_c00350{font-family:ff4_c00350;line-height:1.114746;font-style:normal;font-weight:normal;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_9ae16f22d9c82c580bb4bfb3.woff2')format("woff");}.ff5_c00350{font-family:ff5_c00350;line-height:0.889648;font-style: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);}
.v3_c00350{vertical-align:-33.000000px;}
.v2_c00350{vertical-align:-23.086200px;}
.v0_c00350{vertical-align:0.000000px;}
.v1_c00350{vertical-align:23.086200px;}
.ls2_c00350{letter-spacing:0.000000px;}
.ls1_c00350{letter-spacing:0.012000px;}
.ls0_c00350{letter-spacing:3.226800px;}
.sc__c00350{text-shadow:none;}
.sc0_c00350{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00350{-webkit-text-stroke:0px transparent;}
.sc0_c00350{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00350{word-spacing:-19.800000px;}
.ws3_c00350{word-spacing:-15.000000px;}
.ws2_c00350{word-spacing:-10.000001px;}
.ws0_c00350{word-spacing:-0.078000px;}
.ws4_c00350{word-spacing:0.000000px;}
._8_c00350{margin-left:-6.828000px;}
._1b_c00350{margin-left:-5.198400px;}
._7_c00350{margin-left:-4.053600px;}
._2_c00350{margin-left:-2.880000px;}
._4_c00350{margin-left:-1.627200px;}
._9_c00350{width:1.051200px;}
._0_c00350{width:2.325600px;}
._1_c00350{width:3.355200px;}
._6_c00350{width:4.629600px;}
._5_c00350{width:5.680800px;}
._3_c00350{width:6.840000px;}
._a_c00350{width:8.719200px;}
._1a_c00350{width:9.914400px;}
._b_c00350{width:11.232000px;}
._f_c00350{width:12.592800px;}
._e_c00350{width:13.903200px;}
._d_c00350{width:15.206400px;}
._10_c00350{width:16.754400px;}
._c_c00350{width:17.848800px;}
._1c_c00350{width:19.382400px;}
._11_c00350{width:21.722400px;}
._12_c00350{width:22.852800px;}
._13_c00350{width:23.918400px;}
._17_c00350{width:29.671200px;}
._16_c00350{width:31.982400px;}
._15_c00350{width:33.256800px;}
._14_c00350{width:34.322400px;}
._18_c00350{width:35.899200px;}
._19_c00350{width:37.202400px;}
.fc1_c00350{color:rgb(255,255,255);}
.fc0_c00350{color:rgb(0,0,0);}
.fs5_c00350{font-size:40.000002px;}
.fs2_c00350{font-size:48.000000px;}
.fs4_c00350{font-size:60.000000px;}
.fs1_c00350{font-size:72.000000px;}
.fs0_c00350{font-size:78.000000px;}
.fs3_c00350{font-size:96.000000px;}
.y0_c00350{bottom:0.000000px;}
.y1a_c00350{bottom:67.500000px;}
.y20_c00350{bottom:132.000000px;}
.y1f_c00350{bottom:151.500000px;}
.y1e_c00350{bottom:171.000000px;}
.y1d_c00350{bottom:190.500000px;}
.y1c_c00350{bottom:210.000000px;}
.y1b_c00350{bottom:237.750000px;}
.y17_c00350{bottom:318.000000px;}
.y16_c00350{bottom:345.000000px;}
.y15_c00350{bottom:372.000000px;}
.y14_c00350{bottom:420.000000px;}
.y13_c00350{bottom:447.000000px;}
.y12_c00350{bottom:474.000000px;}
.y11_c00350{bottom:501.000000px;}
.y10_c00350{bottom:528.000000px;}
.yf_c00350{bottom:555.000000px;}
.ye_c00350{bottom:603.000000px;}
.yd_c00350{bottom:630.000000px;}
.yc_c00350{bottom:657.000000px;}
.yb_c00350{bottom:684.000000px;}
.ya_c00350{bottom:711.000000px;}
.y9_c00350{bottom:759.000000px;}
.y8_c00350{bottom:786.000000px;}
.y7_c00350{bottom:813.000000px;}
.y6_c00350{bottom:840.000000px;}
.y5_c00350{bottom:867.000000px;}
.y4_c00350{bottom:894.000000px;}
.y3_c00350{bottom:921.000000px;}
.y2_c00350{bottom:948.000000px;}
.y1_c00350{bottom:994.500000px;}
.y18_c00350{bottom:1066.500000px;}
.y19_c00350{bottom:1194.000000px;}
.h6_c00350{height:35.878908px;}
.h7_c00350{height:53.818359px;}
.h1_c00350{height:55.224609px;}
.h5_c00350{height:56.074219px;}
.h2_c00350{height:67.746094px;}
.h3_c00350{height:68.250262px;}
.h4_c00350{height:90.328125px;}
.h0_c00350{height:1263.000000px;}
.w0_c00350{width:892.500000px;}
.x0_c00350{left:0.000000px;}
.x1_c00350{left:150.519750px;}
.x2_c00350{left:180.298875px;}
.x3_c00350{left:416.782800px;}
.x4_c00350{left:801.992850px;}
@media print{
.v3_c00350{vertical-align:-29.333333pt;}
.v2_c00350{vertical-align:-20.521067pt;}
.v0_c00350{vertical-align:0.000000pt;}
.v1_c00350{vertical-align:20.521067pt;}
.ls2_c00350{letter-spacing:0.000000pt;}
.ls1_c00350{letter-spacing:0.010667pt;}
.ls0_c00350{letter-spacing:2.868267pt;}
.ws1_c00350{word-spacing:-17.600000pt;}
.ws3_c00350{word-spacing:-13.333333pt;}
.ws2_c00350{word-spacing:-8.888889pt;}
.ws0_c00350{word-spacing:-0.069333pt;}
.ws4_c00350{word-spacing:0.000000pt;}
._8_c00350{margin-left:-6.069333pt;}
._1b_c00350{margin-left:-4.620800pt;}
._7_c00350{margin-left:-3.603200pt;}
._2_c00350{margin-left:-2.560000pt;}
._4_c00350{margin-left:-1.446400pt;}
._9_c00350{width:0.934400pt;}
._0_c00350{width:2.067200pt;}
._1_c00350{width:2.982400pt;}
._6_c00350{width:4.115200pt;}
._5_c00350{width:5.049600pt;}
._3_c00350{width:6.080000pt;}
._a_c00350{width:7.750400pt;}
._1a_c00350{width:8.812800pt;}
._b_c00350{width:9.984000pt;}
._f_c00350{width:11.193600pt;}
._e_c00350{width:12.358400pt;}
._d_c00350{width:13.516800pt;}
._10_c00350{width:14.892800pt;}
._c_c00350{width:15.865600pt;}
._1c_c00350{width:17.228800pt;}
._11_c00350{width:19.308800pt;}
._12_c00350{width:20.313600pt;}
._13_c00350{width:21.260800pt;}
._17_c00350{width:26.374400pt;}
._16_c00350{width:28.428800pt;}
._15_c00350{width:29.561600pt;}
._14_c00350{width:30.508800pt;}
._18_c00350{width:31.910400pt;}
._19_c00350{width:33.068800pt;}
.fs5_c00350{font-size:35.555557pt;}
.fs2_c00350{font-size:42.666667pt;}
.fs4_c00350{font-size:53.333333pt;}
.fs1_c00350{font-size:64.000000pt;}
.fs0_c00350{font-size:69.333333pt;}
.fs3_c00350{font-size:85.333333pt;}
.y0_c00350{bottom:0.000000pt;}
.y1a_c00350{bottom:60.000000pt;}
.y20_c00350{bottom:117.333333pt;}
.y1f_c00350{bottom:134.666667pt;}
.y1e_c00350{bottom:152.000000pt;}
.y1d_c00350{bottom:169.333333pt;}
.y1c_c00350{bottom:186.666667pt;}
.y1b_c00350{bottom:211.333333pt;}
.y17_c00350{bottom:282.666667pt;}
.y16_c00350{bottom:306.666667pt;}
.y15_c00350{bottom:330.666667pt;}
.y14_c00350{bottom:373.333333pt;}
.y13_c00350{bottom:397.333333pt;}
.y12_c00350{bottom:421.333333pt;}
.y11_c00350{bottom:445.333333pt;}
.y10_c00350{bottom:469.333333pt;}
.yf_c00350{bottom:493.333333pt;}
.ye_c00350{bottom:536.000000pt;}
.yd_c00350{bottom:560.000000pt;}
.yc_c00350{bottom:584.000000pt;}
.yb_c00350{bottom:608.000000pt;}
.ya_c00350{bottom:632.000000pt;}
.y9_c00350{bottom:674.666667pt;}
.y8_c00350{bottom:698.666667pt;}
.y7_c00350{bottom:722.666667pt;}
.y6_c00350{bottom:746.666667pt;}
.y5_c00350{bottom:770.666667pt;}
.y4_c00350{bottom:794.666667pt;}
.y3_c00350{bottom:818.666667pt;}
.y2_c00350{bottom:842.666667pt;}
.y1_c00350{bottom:884.000000pt;}
.y18_c00350{bottom:948.000000pt;}
.y19_c00350{bottom:1061.333333pt;}
.h6_c00350{height:31.892363pt;}
.h7_c00350{height:47.838542pt;}
.h1_c00350{height:49.088542pt;}
.h5_c00350{height:49.843750pt;}
.h2_c00350{height:60.218750pt;}
.h3_c00350{height:60.666900pt;}
.h4_c00350{height:80.291667pt;}
.h0_c00350{height:1122.666667pt;}
.w0_c00350{width:793.333333pt;}
.x0_c00350{left:0.000000pt;}
.x1_c00350{left:133.795333pt;}
.x2_c00350{left:160.265667pt;}
.x3_c00350{left:370.473600pt;}
.x4_c00350{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3f7c92c1e55ac16f990ec887.woff2')format("woff");}.ff1_c00351{font-family:ff1_c00351;line-height:0.934082;font-style:normal;font-weight:normal;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_b6a6a4ce1593d999b235ade4.woff2')format("woff");}.ff2_c00351{font-family:ff2_c00351;line-height:0.756836;font-style:normal;font-weight:normal;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_e5232738fcb3966c39cc82fa.woff2')format("woff");}.ff3_c00351{font-family:ff3_c00351;line-height:1.155762;font-style:normal;font-weight:normal;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_e7c4bf627bab6f3a52998317.woff2')format("woff");}.ff4_c00351{font-family:ff4_c00351;line-height:1.101562;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00351;src:url('chunks/assets/font_2351708516ce491eaae87426.woff2')format("woff");}.ff5_c00351{font-family:ff5_c00351;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00351{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00351{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3_c00351{vertical-align:-33.000000px;}
.v2_c00351{vertical-align:-23.086200px;}
.v0_c00351{vertical-align:0.000000px;}
.v1_c00351{vertical-align:23.086200px;}
.ls7_c00351{letter-spacing:-1.746000px;}
.ls5_c00351{letter-spacing:-1.598400px;}
.ls4_c00351{letter-spacing:0.000000px;}
.ls6_c00351{letter-spacing:0.012000px;}
.ls0_c00351{letter-spacing:0.025800px;}
.ls2_c00351{letter-spacing:0.810000px;}
.ls1_c00351{letter-spacing:1.290000px;}
.ls3_c00351{letter-spacing:3.999999px;}
.sc__c00351{text-shadow:none;}
.sc0_c00351{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00351{-webkit-text-stroke:0px transparent;}
.sc0_c00351{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00351{word-spacing:-13.200000px;}
.ws1_c00351{word-spacing:0.000000px;}
._d_c00351{margin-left:-10.526400px;}
._14_c00351{margin-left:-9.367200px;}
._13_c00351{margin-left:-6.321600px;}
._9_c00351{margin-left:-4.898640px;}
._4_c00351{margin-left:-3.340800px;}
._b_c00351{margin-left:-2.145600px;}
._6_c00351{margin-left:-1.130400px;}
._a_c00351{width:1.000800px;}
._3_c00351{width:2.340000px;}
._1_c00351{width:3.355200px;}
._c_c00351{width:4.593600px;}
._2_c00351{width:6.235200px;}
._8_c00351{width:7.250400px;}
._f_c00351{width:8.539200px;}
._0_c00351{width:9.561600px;}
._7_c00351{width:10.699200px;}
._e_c00351{width:11.800800px;}
._5_c00351{width:13.780800px;}
._10_c00351{width:15.343200px;}
._12_c00351{width:16.387200px;}
._11_c00351{width:18.475200px;}
._1c_c00351{width:21.268800px;}
._1a_c00351{width:22.348800px;}
._17_c00351{width:24.811200px;}
._1b_c00351{width:25.898400px;}
._16_c00351{width:28.116000px;}
._15_c00351{width:30.261600px;}
._18_c00351{width:31.442400px;}
._19_c00351{width:33.014640px;}
.fc0_c00351{color:rgb(0,0,0);}
.fs3_c00351{font-size:40.000002px;}
.fs1_c00351{font-size:48.000000px;}
.fs2_c00351{font-size:60.000000px;}
.fs0_c00351{font-size:72.000000px;}
.y0_c00351{bottom:0.000000px;}
.y19_c00351{bottom:67.500000px;}
.y23_c00351{bottom:132.000000px;}
.y22_c00351{bottom:151.500000px;}
.y21_c00351{bottom:179.250000px;}
.y20_c00351{bottom:220.500000px;}
.y1f_c00351{bottom:248.250000px;}
.y1e_c00351{bottom:289.500000px;}
.y1d_c00351{bottom:317.250000px;}
.y1c_c00351{bottom:358.500000px;}
.y1b_c00351{bottom:378.000000px;}
.y1a_c00351{bottom:405.750000px;}
.y17_c00351{bottom:459.000000px;}
.y16_c00351{bottom:486.000000px;}
.y15_c00351{bottom:513.000000px;}
.y14_c00351{bottom:540.000000px;}
.y13_c00351{bottom:567.000000px;}
.y12_c00351{bottom:594.000000px;}
.y11_c00351{bottom:621.000000px;}
.y10_c00351{bottom:648.000000px;}
.yf_c00351{bottom:696.000000px;}
.ye_c00351{bottom:723.000000px;}
.yd_c00351{bottom:750.000000px;}
.yc_c00351{bottom:777.000000px;}
.yb_c00351{bottom:825.000000px;}
.ya_c00351{bottom:852.000000px;}
.y9_c00351{bottom:879.000000px;}
.y8_c00351{bottom:906.000000px;}
.y7_c00351{bottom:933.000000px;}
.y6_c00351{bottom:960.000000px;}
.y5_c00351{bottom:987.000000px;}
.y4_c00351{bottom:1014.000000px;}
.y3_c00351{bottom:1041.000000px;}
.y2_c00351{bottom:1068.000000px;}
.y1_c00351{bottom:1095.000000px;}
.y18_c00351{bottom:1194.000000px;}
.h5_c00351{height:35.312502px;}
.h4_c00351{height:44.208984px;}
.h2_c00351{height:51.257812px;}
.h6_c00351{height:52.968750px;}
.h3_c00351{height:56.074219px;}
.h1_c00351{height:57.258075px;}
.h0_c00351{height:1263.000000px;}
.w0_c00351{width:892.500000px;}
.x0_c00351{left:0.000000px;}
.x1_c00351{left:65.480310px;}
@media print{
.v3_c00351{vertical-align:-29.333333pt;}
.v2_c00351{vertical-align:-20.521067pt;}
.v0_c00351{vertical-align:0.000000pt;}
.v1_c00351{vertical-align:20.521067pt;}
.ls7_c00351{letter-spacing:-1.552000pt;}
.ls5_c00351{letter-spacing:-1.420800pt;}
.ls4_c00351{letter-spacing:0.000000pt;}
.ls6_c00351{letter-spacing:0.010667pt;}
.ls0_c00351{letter-spacing:0.022933pt;}
.ls2_c00351{letter-spacing:0.720000pt;}
.ls1_c00351{letter-spacing:1.146667pt;}
.ls3_c00351{letter-spacing:3.555555pt;}
.ws0_c00351{word-spacing:-11.733333pt;}
.ws1_c00351{word-spacing:0.000000pt;}
._d_c00351{margin-left:-9.356800pt;}
._14_c00351{margin-left:-8.326400pt;}
._13_c00351{margin-left:-5.619200pt;}
._9_c00351{margin-left:-4.354347pt;}
._4_c00351{margin-left:-2.969600pt;}
._b_c00351{margin-left:-1.907200pt;}
._6_c00351{margin-left:-1.004800pt;}
._a_c00351{width:0.889600pt;}
._3_c00351{width:2.080000pt;}
._1_c00351{width:2.982400pt;}
._c_c00351{width:4.083200pt;}
._2_c00351{width:5.542400pt;}
._8_c00351{width:6.444800pt;}
._f_c00351{width:7.590400pt;}
._0_c00351{width:8.499200pt;}
._7_c00351{width:9.510400pt;}
._e_c00351{width:10.489600pt;}
._5_c00351{width:12.249600pt;}
._10_c00351{width:13.638400pt;}
._12_c00351{width:14.566400pt;}
._11_c00351{width:16.422400pt;}
._1c_c00351{width:18.905600pt;}
._1a_c00351{width:19.865600pt;}
._17_c00351{width:22.054400pt;}
._1b_c00351{width:23.020800pt;}
._16_c00351{width:24.992000pt;}
._15_c00351{width:26.899200pt;}
._18_c00351{width:27.948800pt;}
._19_c00351{width:29.346347pt;}
.fs3_c00351{font-size:35.555557pt;}
.fs1_c00351{font-size:42.666667pt;}
.fs2_c00351{font-size:53.333333pt;}
.fs0_c00351{font-size:64.000000pt;}
.y0_c00351{bottom:0.000000pt;}
.y19_c00351{bottom:60.000000pt;}
.y23_c00351{bottom:117.333333pt;}
.y22_c00351{bottom:134.666667pt;}
.y21_c00351{bottom:159.333333pt;}
.y20_c00351{bottom:196.000000pt;}
.y1f_c00351{bottom:220.666667pt;}
.y1e_c00351{bottom:257.333333pt;}
.y1d_c00351{bottom:282.000000pt;}
.y1c_c00351{bottom:318.666667pt;}
.y1b_c00351{bottom:336.000000pt;}
.y1a_c00351{bottom:360.666667pt;}
.y17_c00351{bottom:408.000000pt;}
.y16_c00351{bottom:432.000000pt;}
.y15_c00351{bottom:456.000000pt;}
.y14_c00351{bottom:480.000000pt;}
.y13_c00351{bottom:504.000000pt;}
.y12_c00351{bottom:528.000000pt;}
.y11_c00351{bottom:552.000000pt;}
.y10_c00351{bottom:576.000000pt;}
.yf_c00351{bottom:618.666667pt;}
.ye_c00351{bottom:642.666667pt;}
.yd_c00351{bottom:666.666667pt;}
.yc_c00351{bottom:690.666667pt;}
.yb_c00351{bottom:733.333333pt;}
.ya_c00351{bottom:757.333333pt;}
.y9_c00351{bottom:781.333333pt;}
.y8_c00351{bottom:805.333333pt;}
.y7_c00351{bottom:829.333333pt;}
.y6_c00351{bottom:853.333333pt;}
.y5_c00351{bottom:877.333333pt;}
.y4_c00351{bottom:901.333333pt;}
.y3_c00351{bottom:925.333333pt;}
.y2_c00351{bottom:949.333333pt;}
.y1_c00351{bottom:973.333333pt;}
.y18_c00351{bottom:1061.333333pt;}
.h5_c00351{height:31.388890pt;}
.h4_c00351{height:39.296875pt;}
.h2_c00351{height:45.562500pt;}
.h6_c00351{height:47.083333pt;}
.h3_c00351{height:49.843750pt;}
.h1_c00351{height:50.896067pt;}
.h0_c00351{height:1122.666667pt;}
.w0_c00351{width:793.333333pt;}
.x0_c00351{left:0.000000pt;}
.x1_c00351{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a7a742251013c486d7747c5e.woff2')format("woff");}.ff1_c00352{font-family:ff1_c00352;line-height:0.934082;font-style:normal;font-weight:normal;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_a1dfd0fa23895477c2178fc6.woff2')format("woff");}.ff2_c00352{font-family:ff2_c00352;line-height:0.939453;font-style:normal;font-weight:normal;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_6061c8b40e9b61e3481ff8d1.woff2')format("woff");}.ff3_c00352{font-family:ff3_c00352;line-height:1.155762;font-style:normal;font-weight:normal;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_19f3f8407e3759363d666ab1.woff2')format("woff");}.ff4_c00352{font-family:ff4_c00352;line-height:1.100098;font-style:normal;font-weight:normal;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_4d15d66a0cfcfb39c139a67e.woff2')format("woff");}.ff5_c00352{font-family:ff5_c00352;line-height:0.891113;font-style: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);}
.v3_c00352{vertical-align:-33.000000px;}
.v2_c00352{vertical-align:-23.086200px;}
.v0_c00352{vertical-align:0.000000px;}
.v1_c00352{vertical-align:23.086200px;}
.ls5_c00352{letter-spacing:0.000000px;}
.ls3_c00352{letter-spacing:0.007800px;}
.ls4_c00352{letter-spacing:0.012000px;}
.ls2_c00352{letter-spacing:1.489200px;}
.ls1_c00352{letter-spacing:1.594800px;}
.ls0_c00352{letter-spacing:5.910000px;}
.sc__c00352{text-shadow:none;}
.sc0_c00352{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00352{-webkit-text-stroke:0px transparent;}
.sc0_c00352{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00352{word-spacing:-10.000001px;}
.ws1_c00352{word-spacing:0.000000px;}
._5_c00352{margin-left:-10.483200px;}
._1a_c00352{margin-left:-7.221801px;}
._19_c00352{margin-left:-4.867200px;}
._7_c00352{margin-left:-3.758400px;}
._0_c00352{margin-left:-2.016000px;}
._9_c00352{margin-left:-1.000800px;}
._3_c00352{width:1.267200px;}
._8_c00352{width:3.103200px;}
._11_c00352{width:4.276800px;}
._6_c00352{width:5.284800px;}
._b_c00352{width:6.386400px;}
._a_c00352{width:8.323200px;}
._4_c00352{width:9.612000px;}
._2_c00352{width:10.980000px;}
._1_c00352{width:12.967200px;}
._13_c00352{width:14.810400px;}
._12_c00352{width:16.077600px;}
._18_c00352{width:17.539200px;}
._17_c00352{width:21.016800px;}
._16_c00352{width:22.629600px;}
._e_c00352{width:31.384800px;}
._14_c00352{width:32.868000px;}
._d_c00352{width:34.243200px;}
._10_c00352{width:36.187200px;}
._c_c00352{width:38.469600px;}
._15_c00352{width:39.866400px;}
._f_c00352{width:40.989600px;}
.fc0_c00352{color:rgb(0,0,0);}
.fs4_c00352{font-size:40.000002px;}
.fs1_c00352{font-size:48.000000px;}
.fs3_c00352{font-size:60.000000px;}
.fs0_c00352{font-size:72.000000px;}
.fs2_c00352{font-size:78.000000px;}
.y0_c00352{bottom:0.000000px;}
.y1b_c00352{bottom:67.500000px;}
.y1e_c00352{bottom:140.250000px;}
.y1d_c00352{bottom:189.750000px;}
.y1c_c00352{bottom:239.250000px;}
.y19_c00352{bottom:321.000000px;}
.y18_c00352{bottom:348.000000px;}
.y17_c00352{bottom:375.000000px;}
.y16_c00352{bottom:402.000000px;}
.y15_c00352{bottom:450.000000px;}
.y14_c00352{bottom:477.000000px;}
.y13_c00352{bottom:504.000000px;}
.y12_c00352{bottom:531.000000px;}
.y11_c00352{bottom:558.000000px;}
.y10_c00352{bottom:585.000000px;}
.yf_c00352{bottom:612.000000px;}
.ye_c00352{bottom:658.500000px;}
.yd_c00352{bottom:729.000000px;}
.yc_c00352{bottom:756.000000px;}
.yb_c00352{bottom:783.000000px;}
.ya_c00352{bottom:810.000000px;}
.y9_c00352{bottom:858.000000px;}
.y8_c00352{bottom:885.000000px;}
.y7_c00352{bottom:912.000000px;}
.y6_c00352{bottom:939.000000px;}
.y5_c00352{bottom:966.000000px;}
.y4_c00352{bottom:993.000000px;}
.y3_c00352{bottom:1020.000000px;}
.y2_c00352{bottom:1068.000000px;}
.y1_c00352{bottom:1095.000000px;}
.y1a_c00352{bottom:1194.000000px;}
.h5_c00352{height:35.292971px;}
.h1_c00352{height:51.257812px;}
.h4_c00352{height:56.074219px;}
.h3_c00352{height:56.100586px;}
.h2_c00352{height:57.258075px;}
.h0_c00352{height:1263.000000px;}
.w0_c00352{width:892.500000px;}
.x0_c00352{left:0.000000px;}
.x1_c00352{left:150.519750px;}
.x2_c00352{left:416.782800px;}
.x3_c00352{left:801.992850px;}
@media print{
.v3_c00352{vertical-align:-29.333333pt;}
.v2_c00352{vertical-align:-20.521067pt;}
.v0_c00352{vertical-align:0.000000pt;}
.v1_c00352{vertical-align:20.521067pt;}
.ls5_c00352{letter-spacing:0.000000pt;}
.ls3_c00352{letter-spacing:0.006933pt;}
.ls4_c00352{letter-spacing:0.010667pt;}
.ls2_c00352{letter-spacing:1.323733pt;}
.ls1_c00352{letter-spacing:1.417600pt;}
.ls0_c00352{letter-spacing:5.253333pt;}
.ws0_c00352{word-spacing:-8.888889pt;}
.ws1_c00352{word-spacing:0.000000pt;}
._5_c00352{margin-left:-9.318400pt;}
._1a_c00352{margin-left:-6.419379pt;}
._19_c00352{margin-left:-4.326400pt;}
._7_c00352{margin-left:-3.340800pt;}
._0_c00352{margin-left:-1.792000pt;}
._9_c00352{margin-left:-0.889600pt;}
._3_c00352{width:1.126400pt;}
._8_c00352{width:2.758400pt;}
._11_c00352{width:3.801600pt;}
._6_c00352{width:4.697600pt;}
._b_c00352{width:5.676800pt;}
._a_c00352{width:7.398400pt;}
._4_c00352{width:8.544000pt;}
._2_c00352{width:9.760000pt;}
._1_c00352{width:11.526400pt;}
._13_c00352{width:13.164800pt;}
._12_c00352{width:14.291200pt;}
._18_c00352{width:15.590400pt;}
._17_c00352{width:18.681600pt;}
._16_c00352{width:20.115200pt;}
._e_c00352{width:27.897600pt;}
._14_c00352{width:29.216000pt;}
._d_c00352{width:30.438400pt;}
._10_c00352{width:32.166400pt;}
._c_c00352{width:34.195200pt;}
._15_c00352{width:35.436800pt;}
._f_c00352{width:36.435200pt;}
.fs4_c00352{font-size:35.555557pt;}
.fs1_c00352{font-size:42.666667pt;}
.fs3_c00352{font-size:53.333333pt;}
.fs0_c00352{font-size:64.000000pt;}
.fs2_c00352{font-size:69.333333pt;}
.y0_c00352{bottom:0.000000pt;}
.y1b_c00352{bottom:60.000000pt;}
.y1e_c00352{bottom:124.666667pt;}
.y1d_c00352{bottom:168.666667pt;}
.y1c_c00352{bottom:212.666667pt;}
.y19_c00352{bottom:285.333333pt;}
.y18_c00352{bottom:309.333333pt;}
.y17_c00352{bottom:333.333333pt;}
.y16_c00352{bottom:357.333333pt;}
.y15_c00352{bottom:400.000000pt;}
.y14_c00352{bottom:424.000000pt;}
.y13_c00352{bottom:448.000000pt;}
.y12_c00352{bottom:472.000000pt;}
.y11_c00352{bottom:496.000000pt;}
.y10_c00352{bottom:520.000000pt;}
.yf_c00352{bottom:544.000000pt;}
.ye_c00352{bottom:585.333333pt;}
.yd_c00352{bottom:648.000000pt;}
.yc_c00352{bottom:672.000000pt;}
.yb_c00352{bottom:696.000000pt;}
.ya_c00352{bottom:720.000000pt;}
.y9_c00352{bottom:762.666667pt;}
.y8_c00352{bottom:786.666667pt;}
.y7_c00352{bottom:810.666667pt;}
.y6_c00352{bottom:834.666667pt;}
.y5_c00352{bottom:858.666667pt;}
.y4_c00352{bottom:882.666667pt;}
.y3_c00352{bottom:906.666667pt;}
.y2_c00352{bottom:949.333333pt;}
.y1_c00352{bottom:973.333333pt;}
.y1a_c00352{bottom:1061.333333pt;}
.h5_c00352{height:31.371529pt;}
.h1_c00352{height:45.562500pt;}
.h4_c00352{height:49.843750pt;}
.h3_c00352{height:49.867188pt;}
.h2_c00352{height:50.896067pt;}
.h0_c00352{height:1122.666667pt;}
.w0_c00352{width:793.333333pt;}
.x0_c00352{left:0.000000pt;}
.x1_c00352{left:133.795333pt;}
.x2_c00352{left:370.473600pt;}
.x3_c00352{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9e402e401d22a059af753d2c.woff2')format("woff");}.ff1_c00353{font-family:ff1_c00353;line-height:0.933105;font-style:normal;font-weight:normal;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_5c2e6ae2b9a7bfd9bef99517.woff2')format("woff");}.ff2_c00353{font-family:ff2_c00353;line-height:0.976074;font-style:normal;font-weight:normal;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_0ff1f8023c4a5ed24fd59b6e.woff2')format("woff");}.ff3_c00353{font-family:ff3_c00353;line-height:0.755859;font-style:normal;font-weight:normal;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_16107c61cd35447155d185ec.woff2')format("woff");}.ff4_c00353{font-family:ff4_c00353;line-height:1.155762;font-style:normal;font-weight:normal;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_01807d5e4f223124b1da8bf2.woff2')format("woff");}.ff5_c00353{font-family:ff5_c00353;line-height:1.100586;font-style:normal;font-weight: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_c00353;src:url('chunks/assets/font_b3677849ac4dafcadcf54bc9.woff2')format("woff");}.ff6_c00353{font-family:ff6_c00353;line-height:0.678223;font-style: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);}
.v3_c00353{vertical-align:-33.000000px;}
.v2_c00353{vertical-align:-23.086200px;}
.v0_c00353{vertical-align:0.000000px;}
.v1_c00353{vertical-align:23.086200px;}
.ls1_c00353{letter-spacing:-0.014400px;}
.ls2_c00353{letter-spacing:0.000000px;}
.ls3_c00353{letter-spacing:0.012000px;}
.ls0_c00353{letter-spacing:27.267600px;}
.sc__c00353{text-shadow:none;}
.sc0_c00353{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00353{-webkit-text-stroke:0px transparent;}
.sc0_c00353{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00353{word-spacing:-10.000001px;}
.ws1_c00353{word-spacing:0.000000px;}
._d_c00353{margin-left:-7.214400px;}
._13_c00353{margin-left:-4.764021px;}
._3_c00353{margin-left:-3.528000px;}
._5_c00353{margin-left:-2.376000px;}
._9_c00353{margin-left:-1.108800px;}
._1_c00353{width:1.080000px;}
._7_c00353{width:2.088000px;}
._e_c00353{width:4.141200px;}
._8_c00353{width:5.154960px;}
._c_c00353{width:6.278160px;}
._f_c00353{width:7.308000px;}
._b_c00353{width:8.359440px;}
._10_c00353{width:9.417360px;}
._12_c00353{width:11.542080px;}
._11_c00353{width:13.240320px;}
._a_c00353{width:17.654640px;}
._2_c00353{width:22.536000px;}
._0_c00353{width:23.616000px;}
._6_c00353{width:25.992000px;}
._4_c00353{width:27.144000px;}
.fc0_c00353{color:rgb(0,0,0);}
.fs4_c00353{font-size:40.000002px;}
.fs1_c00353{font-size:48.000000px;}
.fs2_c00353{font-size:54.000000px;}
.fs3_c00353{font-size:60.000000px;}
.fs0_c00353{font-size:72.000000px;}
.y0_c00353{bottom:0.000000px;}
.y5_c00353{bottom:12.000000px;}
.yd_c00353{bottom:67.500000px;}
.ye_c00353{bottom:140.250000px;}
.yb_c00353{bottom:211.500000px;}
.ya_c00353{bottom:238.500000px;}
.y9_c00353{bottom:265.500000px;}
.y8_c00353{bottom:292.500000px;}
.y7_c00353{bottom:319.500000px;}
.y6_c00353{bottom:346.500000px;}
.y4_c00353{bottom:391.500000px;}
.y3_c00353{bottom:1041.000000px;}
.y2_c00353{bottom:1068.000000px;}
.y1_c00353{bottom:1095.000000px;}
.yc_c00353{bottom:1194.000000px;}
.h7_c00353{height:35.312502px;}
.h4_c00353{height:42.292969px;}
.h6_c00353{height:44.208984px;}
.h2_c00353{height:51.187500px;}
.h5_c00353{height:56.074219px;}
.h1_c00353{height:57.211200px;}
.h3_c00353{height:618.000000px;}
.h0_c00353{height:1263.000000px;}
.w1_c00353{width:676.500000px;}
.w0_c00353{width:892.500000px;}
.x0_c00353{left:0.000000px;}
.x1_c00353{left:65.480310px;}
.x2_c00353{left:158.755350px;}
@media print{
.v3_c00353{vertical-align:-29.333333pt;}
.v2_c00353{vertical-align:-20.521067pt;}
.v0_c00353{vertical-align:0.000000pt;}
.v1_c00353{vertical-align:20.521067pt;}
.ls1_c00353{letter-spacing:-0.012800pt;}
.ls2_c00353{letter-spacing:0.000000pt;}
.ls3_c00353{letter-spacing:0.010667pt;}
.ls0_c00353{letter-spacing:24.237867pt;}
.ws0_c00353{word-spacing:-8.888889pt;}
.ws1_c00353{word-spacing:0.000000pt;}
._d_c00353{margin-left:-6.412800pt;}
._13_c00353{margin-left:-4.234685pt;}
._3_c00353{margin-left:-3.136000pt;}
._5_c00353{margin-left:-2.112000pt;}
._9_c00353{margin-left:-0.985600pt;}
._1_c00353{width:0.960000pt;}
._7_c00353{width:1.856000pt;}
._e_c00353{width:3.681067pt;}
._8_c00353{width:4.582187pt;}
._c_c00353{width:5.580587pt;}
._f_c00353{width:6.496000pt;}
._b_c00353{width:7.430613pt;}
._10_c00353{width:8.370987pt;}
._12_c00353{width:10.259627pt;}
._11_c00353{width:11.769173pt;}
._a_c00353{width:15.693013pt;}
._2_c00353{width:20.032000pt;}
._0_c00353{width:20.992000pt;}
._6_c00353{width:23.104000pt;}
._4_c00353{width:24.128000pt;}
.fs4_c00353{font-size:35.555557pt;}
.fs1_c00353{font-size:42.666667pt;}
.fs2_c00353{font-size:48.000000pt;}
.fs3_c00353{font-size:53.333333pt;}
.fs0_c00353{font-size:64.000000pt;}
.y0_c00353{bottom:0.000000pt;}
.y5_c00353{bottom:10.666667pt;}
.yd_c00353{bottom:60.000000pt;}
.ye_c00353{bottom:124.666667pt;}
.yb_c00353{bottom:188.000000pt;}
.ya_c00353{bottom:212.000000pt;}
.y9_c00353{bottom:236.000000pt;}
.y8_c00353{bottom:260.000000pt;}
.y7_c00353{bottom:284.000000pt;}
.y6_c00353{bottom:308.000000pt;}
.y4_c00353{bottom:348.000000pt;}
.y3_c00353{bottom:925.333333pt;}
.y2_c00353{bottom:949.333333pt;}
.y1_c00353{bottom:973.333333pt;}
.yc_c00353{bottom:1061.333333pt;}
.h7_c00353{height:31.388890pt;}
.h4_c00353{height:37.593750pt;}
.h6_c00353{height:39.296875pt;}
.h2_c00353{height:45.500000pt;}
.h5_c00353{height:49.843750pt;}
.h1_c00353{height:50.854400pt;}
.h3_c00353{height:549.333333pt;}
.h0_c00353{height:1122.666667pt;}
.w1_c00353{width:601.333333pt;}
.w0_c00353{width:793.333333pt;}
.x0_c00353{left:0.000000pt;}
.x1_c00353{left:58.204720pt;}
.x2_c00353{left:141.115867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_49aaabd31d90c09a4fc80b4b.woff2')format("woff");}.ff1_c00354{font-family:ff1_c00354;line-height:0.963867;font-style:normal;font-weight:normal;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_28cd89b9a01dd7092842adff.woff2')format("woff");}.ff2_c00354{font-family:ff2_c00354;line-height:0.934082;font-style:normal;font-weight:normal;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_b8ff85b564645b53e07cde10.woff2')format("woff");}.ff3_c00354{font-family:ff3_c00354;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00354{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00354{vertical-align:0.000000px;}
.ls1_c00354{letter-spacing:0.000000px;}
.ls0_c00354{letter-spacing:0.012000px;}
.sc__c00354{text-shadow:none;}
.sc0_c00354{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00354{-webkit-text-stroke:0px transparent;}
.sc0_c00354{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00354{word-spacing:-17.064000px;}
.ws1_c00354{word-spacing:0.000000px;}
._7_c00354{margin-left:-7.221600px;}
._3_c00354{margin-left:-3.787200px;}
._1_c00354{margin-left:-2.188800px;}
._5_c00354{margin-left:-1.101600px;}
._4_c00354{width:1.159200px;}
._0_c00354{width:2.325600px;}
._2_c00354{width:4.010400px;}
._11_c00354{width:5.104800px;}
._6_c00354{width:6.235200px;}
._10_c00354{width:7.632000px;}
._f_c00354{width:9.439200px;}
._9_c00354{width:10.490400px;}
._a_c00354{width:11.664000px;}
._8_c00354{width:12.801600px;}
._b_c00354{width:13.946400px;}
._c_c00354{width:15.004800px;}
._d_c00354{width:17.236800px;}
._e_c00354{width:18.691200px;}
.fc0_c00354{color:rgb(0,0,0);}
.fs0_c00354{font-size:54.000000px;}
.fs2_c00354{font-size:60.000000px;}
.fs1_c00354{font-size:72.000000px;}
.y0_c00354{bottom:0.000000px;}
.y2_c00354{bottom:12.000000px;}
.y10_c00354{bottom:67.500000px;}
.ye_c00354{bottom:153.000000px;}
.yd_c00354{bottom:180.000000px;}
.yc_c00354{bottom:207.000000px;}
.yb_c00354{bottom:234.000000px;}
.ya_c00354{bottom:261.000000px;}
.y9_c00354{bottom:306.000000px;}
.y8_c00354{bottom:709.500000px;}
.y7_c00354{bottom:736.500000px;}
.y6_c00354{bottom:763.500000px;}
.y5_c00354{bottom:790.500000px;}
.y4_c00354{bottom:817.500000px;}
.y3_c00354{bottom:844.500000px;}
.y1_c00354{bottom:889.500000px;}
.yf_c00354{bottom:1194.000000px;}
.h2_c00354{height:41.633789px;}
.h3_c00354{height:51.257812px;}
.h5_c00354{height:56.074219px;}
.h1_c00354{height:223.500000px;}
.h4_c00354{height:372.000000px;}
.h0_c00354{height:1263.000000px;}
.w1_c00354{width:618.000000px;}
.w2_c00354{width:676.500000px;}
.w0_c00354{width:892.500000px;}
.x0_c00354{left:0.000000px;}
.x3_c00354{left:150.519750px;}
.x1_c00354{left:180.000000px;}
.x4_c00354{left:233.941350px;}
.x2_c00354{left:287.013000px;}
.x5_c00354{left:416.782800px;}
.x6_c00354{left:801.992850px;}
@media print{
.v0_c00354{vertical-align:0.000000pt;}
.ls1_c00354{letter-spacing:0.000000pt;}
.ls0_c00354{letter-spacing:0.010667pt;}
.ws0_c00354{word-spacing:-15.168000pt;}
.ws1_c00354{word-spacing:0.000000pt;}
._7_c00354{margin-left:-6.419200pt;}
._3_c00354{margin-left:-3.366400pt;}
._1_c00354{margin-left:-1.945600pt;}
._5_c00354{margin-left:-0.979200pt;}
._4_c00354{width:1.030400pt;}
._0_c00354{width:2.067200pt;}
._2_c00354{width:3.564800pt;}
._11_c00354{width:4.537600pt;}
._6_c00354{width:5.542400pt;}
._10_c00354{width:6.784000pt;}
._f_c00354{width:8.390400pt;}
._9_c00354{width:9.324800pt;}
._a_c00354{width:10.368000pt;}
._8_c00354{width:11.379200pt;}
._b_c00354{width:12.396800pt;}
._c_c00354{width:13.337600pt;}
._d_c00354{width:15.321600pt;}
._e_c00354{width:16.614400pt;}
.fs0_c00354{font-size:48.000000pt;}
.fs2_c00354{font-size:53.333333pt;}
.fs1_c00354{font-size:64.000000pt;}
.y0_c00354{bottom:0.000000pt;}
.y2_c00354{bottom:10.666667pt;}
.y10_c00354{bottom:60.000000pt;}
.ye_c00354{bottom:136.000000pt;}
.yd_c00354{bottom:160.000000pt;}
.yc_c00354{bottom:184.000000pt;}
.yb_c00354{bottom:208.000000pt;}
.ya_c00354{bottom:232.000000pt;}
.y9_c00354{bottom:272.000000pt;}
.y8_c00354{bottom:630.666667pt;}
.y7_c00354{bottom:654.666667pt;}
.y6_c00354{bottom:678.666667pt;}
.y5_c00354{bottom:702.666667pt;}
.y4_c00354{bottom:726.666667pt;}
.y3_c00354{bottom:750.666667pt;}
.y1_c00354{bottom:790.666667pt;}
.yf_c00354{bottom:1061.333333pt;}
.h2_c00354{height:37.007812pt;}
.h3_c00354{height:45.562500pt;}
.h5_c00354{height:49.843750pt;}
.h1_c00354{height:198.666667pt;}
.h4_c00354{height:330.666667pt;}
.h0_c00354{height:1122.666667pt;}
.w1_c00354{width:549.333333pt;}
.w2_c00354{width:601.333333pt;}
.w0_c00354{width:793.333333pt;}
.x0_c00354{left:0.000000pt;}
.x3_c00354{left:133.795333pt;}
.x1_c00354{left:160.000000pt;}
.x4_c00354{left:207.947867pt;}
.x2_c00354{left:255.122667pt;}
.x5_c00354{left:370.473600pt;}
.x6_c00354{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b07694fbea5b53cd8ef5f12f.woff2')format("woff");}.ff1_c00355{font-family:ff1_c00355;line-height:0.934082;font-style:normal;font-weight:normal;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_2ed58bd1576278809c0b6e91.woff2')format("woff");}.ff2_c00355{font-family:ff2_c00355;line-height:0.987793;font-style:normal;font-weight:normal;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_f81a62a4b7512af02ba0df98.woff2')format("woff");}.ff3_c00355{font-family:ff3_c00355;line-height:0.755859;font-style:normal;font-weight:normal;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_aa00c10adbf73f3517159c23.woff2')format("woff");}.ff4_c00355{font-family:ff4_c00355;line-height:1.155762;font-style:normal;font-weight:normal;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_fd9f0c2ac5e1d563d4c15d10.woff2')format("woff");}.ff5_c00355{font-family:ff5_c00355;line-height:1.100586;font-style:normal;font-weight: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_c00355;src:url('chunks/assets/font_c7191b9c3811a177b2a168e9.woff2')format("woff");}.ff6_c00355{font-family:ff6_c00355;line-height:0.678223;font-style: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);}
.v3_c00355{vertical-align:-33.000000px;}
.v2_c00355{vertical-align:-23.086200px;}
.v0_c00355{vertical-align:0.000000px;}
.v1_c00355{vertical-align:23.086200px;}
.ls1_c00355{letter-spacing:-0.009600px;}
.ls0_c00355{letter-spacing:0.000000px;}
.ls2_c00355{letter-spacing:0.012000px;}
.sc__c00355{text-shadow:none;}
.sc0_c00355{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00355{-webkit-text-stroke:0px transparent;}
.sc0_c00355{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00355{word-spacing:-13.190400px;}
.ws1_c00355{word-spacing:-10.000001px;}
.ws2_c00355{word-spacing:0.000000px;}
._13_c00355{margin-left:-9.482400px;}
._12_c00355{margin-left:-7.329600px;}
._b_c00355{margin-left:-3.945600px;}
._6_c00355{margin-left:-2.779200px;}
._0_c00355{margin-left:-1.173600px;}
._3_c00355{width:1.108800px;}
._5_c00355{width:2.872800px;}
._4_c00355{width:4.392000px;}
._2_c00355{width:5.508000px;}
._1_c00355{width:6.667200px;}
._9_c00355{width:8.215200px;}
._8_c00355{width:9.417600px;}
._a_c00355{width:10.612800px;}
._7_c00355{width:12.268800px;}
._e_c00355{width:15.631200px;}
._d_c00355{width:17.380800px;}
._c_c00355{width:18.453600px;}
._f_c00355{width:21.268800px;}
._10_c00355{width:23.270400px;}
._11_c00355{width:24.552000px;}
.fc0_c00355{color:rgb(0,0,0);}
.fs4_c00355{font-size:40.000002px;}
.fs1_c00355{font-size:48.000000px;}
.fs2_c00355{font-size:54.000000px;}
.fs3_c00355{font-size:60.000000px;}
.fs0_c00355{font-size:72.000000px;}
.y0_c00355{bottom:0.000000px;}
.yb_c00355{bottom:12.000000px;}
.y10_c00355{bottom:67.500000px;}
.y11_c00355{bottom:140.250000px;}
.ye_c00355{bottom:186.000000px;}
.yd_c00355{bottom:213.000000px;}
.yc_c00355{bottom:240.000000px;}
.ya_c00355{bottom:285.000000px;}
.y9_c00355{bottom:858.000000px;}
.y8_c00355{bottom:885.000000px;}
.y7_c00355{bottom:912.000000px;}
.y6_c00355{bottom:939.000000px;}
.y5_c00355{bottom:966.000000px;}
.y4_c00355{bottom:1014.000000px;}
.y3_c00355{bottom:1041.000000px;}
.y2_c00355{bottom:1068.000000px;}
.y1_c00355{bottom:1095.000000px;}
.yf_c00355{bottom:1194.000000px;}
.h7_c00355{height:35.312502px;}
.h4_c00355{height:42.292969px;}
.h6_c00355{height:44.208984px;}
.h1_c00355{height:51.257812px;}
.h5_c00355{height:56.074219px;}
.h2_c00355{height:57.258075px;}
.h3_c00355{height:541.500000px;}
.h0_c00355{height:1263.000000px;}
.w1_c00355{width:676.500000px;}
.w0_c00355{width:892.500000px;}
.x0_c00355{left:0.000000px;}
.x1_c00355{left:65.480310px;}
.x2_c00355{left:163.982700px;}
@media print{
.v3_c00355{vertical-align:-29.333333pt;}
.v2_c00355{vertical-align:-20.521067pt;}
.v0_c00355{vertical-align:0.000000pt;}
.v1_c00355{vertical-align:20.521067pt;}
.ls1_c00355{letter-spacing:-0.008533pt;}
.ls0_c00355{letter-spacing:0.000000pt;}
.ls2_c00355{letter-spacing:0.010667pt;}
.ws0_c00355{word-spacing:-11.724800pt;}
.ws1_c00355{word-spacing:-8.888889pt;}
.ws2_c00355{word-spacing:0.000000pt;}
._13_c00355{margin-left:-8.428800pt;}
._12_c00355{margin-left:-6.515200pt;}
._b_c00355{margin-left:-3.507200pt;}
._6_c00355{margin-left:-2.470400pt;}
._0_c00355{margin-left:-1.043200pt;}
._3_c00355{width:0.985600pt;}
._5_c00355{width:2.553600pt;}
._4_c00355{width:3.904000pt;}
._2_c00355{width:4.896000pt;}
._1_c00355{width:5.926400pt;}
._9_c00355{width:7.302400pt;}
._8_c00355{width:8.371200pt;}
._a_c00355{width:9.433600pt;}
._7_c00355{width:10.905600pt;}
._e_c00355{width:13.894400pt;}
._d_c00355{width:15.449600pt;}
._c_c00355{width:16.403200pt;}
._f_c00355{width:18.905600pt;}
._10_c00355{width:20.684800pt;}
._11_c00355{width:21.824000pt;}
.fs4_c00355{font-size:35.555557pt;}
.fs1_c00355{font-size:42.666667pt;}
.fs2_c00355{font-size:48.000000pt;}
.fs3_c00355{font-size:53.333333pt;}
.fs0_c00355{font-size:64.000000pt;}
.y0_c00355{bottom:0.000000pt;}
.yb_c00355{bottom:10.666667pt;}
.y10_c00355{bottom:60.000000pt;}
.y11_c00355{bottom:124.666667pt;}
.ye_c00355{bottom:165.333333pt;}
.yd_c00355{bottom:189.333333pt;}
.yc_c00355{bottom:213.333333pt;}
.ya_c00355{bottom:253.333333pt;}
.y9_c00355{bottom:762.666667pt;}
.y8_c00355{bottom:786.666667pt;}
.y7_c00355{bottom:810.666667pt;}
.y6_c00355{bottom:834.666667pt;}
.y5_c00355{bottom:858.666667pt;}
.y4_c00355{bottom:901.333333pt;}
.y3_c00355{bottom:925.333333pt;}
.y2_c00355{bottom:949.333333pt;}
.y1_c00355{bottom:973.333333pt;}
.yf_c00355{bottom:1061.333333pt;}
.h7_c00355{height:31.388890pt;}
.h4_c00355{height:37.593750pt;}
.h6_c00355{height:39.296875pt;}
.h1_c00355{height:45.562500pt;}
.h5_c00355{height:49.843750pt;}
.h2_c00355{height:50.896067pt;}
.h3_c00355{height:481.333333pt;}
.h0_c00355{height:1122.666667pt;}
.w1_c00355{width:601.333333pt;}
.w0_c00355{width:793.333333pt;}
.x0_c00355{left:0.000000pt;}
.x1_c00355{left:58.204720pt;}
.x2_c00355{left:145.762400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_10bd6569109071e54fa10e8c.woff2')format("woff");}.ff1_c00356{font-family:ff1_c00356;line-height:0.975586;font-style:normal;font-weight:normal;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_47603c575492b3c598d54672.woff2')format("woff");}.ff2_c00356{font-family:ff2_c00356;line-height:0.933105;font-style:normal;font-weight:normal;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_9c748e5b9ef169a1f4cf1d97.woff2')format("woff");}.ff3_c00356{font-family:ff3_c00356;line-height:1.155762;font-style: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;}
.ls1_c00356{letter-spacing:0.000000px;}
.ls0_c00356{letter-spacing:0.012000px;}
.sc__c00356{text-shadow:none;}
.sc0_c00356{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00356{-webkit-text-stroke:0px transparent;}
.sc0_c00356{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00356{word-spacing:0.000000px;}
._c_c00356{margin-left:-4.180800px;}
._0_c00356{margin-left:-2.887200px;}
._6_c00356{margin-left:-1.670400px;}
._a_c00356{width:1.216800px;}
._2_c00356{width:2.491200px;}
._3_c00356{width:4.514400px;}
._8_c00356{width:5.558400px;}
._4_c00356{width:6.897600px;}
._1_c00356{width:9.784800px;}
._9_c00356{width:12.369600px;}
._b_c00356{width:13.622400px;}
._5_c00356{width:14.918400px;}
._7_c00356{width:16.653600px;}
.fc0_c00356{color:rgb(0,0,0);}
.fs0_c00356{font-size:54.000000px;}
.fs2_c00356{font-size:60.000000px;}
.fs1_c00356{font-size:72.000000px;}
.y0_c00356{bottom:0.000000px;}
.y2_c00356{bottom:12.000000px;}
.y8_c00356{bottom:67.500000px;}
.y6_c00356{bottom:171.000000px;}
.y5_c00356{bottom:625.500000px;}
.y4_c00356{bottom:652.500000px;}
.y3_c00356{bottom:679.500000px;}
.y1_c00356{bottom:724.500000px;}
.y7_c00356{bottom:1194.000000px;}
.h2_c00356{height:41.633789px;}
.h3_c00356{height:51.187500px;}
.h5_c00356{height:56.074219px;}
.h1_c00356{height:388.500000px;}
.h4_c00356{height:444.000000px;}
.h0_c00356{height:1263.000000px;}
.w1_c00356{width:676.500000px;}
.w0_c00356{width:892.500000px;}
.x0_c00356{left:0.000000px;}
.x1_c00356{left:150.000000px;}
.x3_c00356{left:232.122000px;}
.x2_c00356{left:280.149900px;}
.x4_c00356{left:416.782800px;}
.x5_c00356{left:801.992850px;}
@media print{
.v0_c00356{vertical-align:0.000000pt;}
.ls1_c00356{letter-spacing:0.000000pt;}
.ls0_c00356{letter-spacing:0.010667pt;}
.ws0_c00356{word-spacing:0.000000pt;}
._c_c00356{margin-left:-3.716267pt;}
._0_c00356{margin-left:-2.566400pt;}
._6_c00356{margin-left:-1.484800pt;}
._a_c00356{width:1.081600pt;}
._2_c00356{width:2.214400pt;}
._3_c00356{width:4.012800pt;}
._8_c00356{width:4.940800pt;}
._4_c00356{width:6.131200pt;}
._1_c00356{width:8.697600pt;}
._9_c00356{width:10.995200pt;}
._b_c00356{width:12.108800pt;}
._5_c00356{width:13.260800pt;}
._7_c00356{width:14.803200pt;}
.fs0_c00356{font-size:48.000000pt;}
.fs2_c00356{font-size:53.333333pt;}
.fs1_c00356{font-size:64.000000pt;}
.y0_c00356{bottom:0.000000pt;}
.y2_c00356{bottom:10.666667pt;}
.y8_c00356{bottom:60.000000pt;}
.y6_c00356{bottom:152.000000pt;}
.y5_c00356{bottom:556.000000pt;}
.y4_c00356{bottom:580.000000pt;}
.y3_c00356{bottom:604.000000pt;}
.y1_c00356{bottom:644.000000pt;}
.y7_c00356{bottom:1061.333333pt;}
.h2_c00356{height:37.007812pt;}
.h3_c00356{height:45.500000pt;}
.h5_c00356{height:49.843750pt;}
.h1_c00356{height:345.333333pt;}
.h4_c00356{height:394.666667pt;}
.h0_c00356{height:1122.666667pt;}
.w1_c00356{width:601.333333pt;}
.w0_c00356{width:793.333333pt;}
.x0_c00356{left:0.000000pt;}
.x1_c00356{left:133.333333pt;}
.x3_c00356{left:206.330667pt;}
.x2_c00356{left:249.022133pt;}
.x4_c00356{left:370.473600pt;}
.x5_c00356{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d66ee61ef9353d2947f2e4d3.woff2')format("woff");}.ff1_c00357{font-family:ff1_c00357;line-height:0.934082;font-style:normal;font-weight:normal;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_cb677b02d180413d86fb4765.woff2')format("woff");}.ff2_c00357{font-family:ff2_c00357;line-height:0.932129;font-style:normal;font-weight:normal;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_67685ffb08670f841e469873.woff2')format("woff");}.ff3_c00357{font-family:ff3_c00357;line-height:0.997070;font-style:normal;font-weight:normal;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_c9cf4c4c50ebf934eb6eda03.woff2')format("woff");}.ff4_c00357{font-family:ff4_c00357;line-height:0.755859;font-style:normal;font-weight:normal;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_b02979f7e60bc06912f6d218.woff2')format("woff");}.ff5_c00357{font-family:ff5_c00357;line-height:1.155762;font-style:normal;font-weight: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_c00357;src:url('chunks/assets/font_3512b5148a945ad0cbdfbc4b.woff2')format("woff");}.ff6_c00357{font-family:ff6_c00357;line-height:1.100586;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00357;src:url('chunks/assets/font_946eec0a1002d1cc318f78ec.woff2')format("woff");}.ff7_c00357{font-family:ff7_c00357;line-height:0.678223;font-style: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);}
.v3_c00357{vertical-align:-33.000000px;}
.v2_c00357{vertical-align:-23.086200px;}
.v0_c00357{vertical-align:0.000000px;}
.v1_c00357{vertical-align:23.086200px;}
.ls2_c00357{letter-spacing:-0.012000px;}
.ls1_c00357{letter-spacing:-0.009600px;}
.ls3_c00357{letter-spacing:-0.006000px;}
.ls0_c00357{letter-spacing:0.000000px;}
.ls4_c00357{letter-spacing:0.012000px;}
.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;}
}
.ws1_c00357{word-spacing:-19.800000px;}
.ws2_c00357{word-spacing:-16.494000px;}
.ws3_c00357{word-spacing:-10.000001px;}
.ws4_c00357{word-spacing:0.000000px;}
.ws0_c00357{word-spacing:16.326000px;}
._16_c00357{margin-left:-10.512000px;}
._19_c00357{margin-left:-9.014400px;}
._1a_c00357{margin-left:-7.963200px;}
._0_c00357{margin-left:-4.622400px;}
._d_c00357{margin-left:-3.607200px;}
._15_c00357{margin-left:-2.570400px;}
._1_c00357{margin-left:-1.533600px;}
._3_c00357{width:1.044000px;}
._5_c00357{width:2.757600px;}
._18_c00357{width:3.794400px;}
._a_c00357{width:4.802400px;}
._f_c00357{width:6.436800px;}
._10_c00357{width:7.437600px;}
._13_c00357{width:9.028800px;}
._11_c00357{width:11.037600px;}
._12_c00357{width:12.096000px;}
._14_c00357{width:13.464000px;}
._17_c00357{width:14.623200px;}
._6_c00357{width:15.732000px;}
._4_c00357{width:16.840800px;}
._2_c00357{width:18.194400px;}
._c_c00357{width:21.247200px;}
._b_c00357{width:22.334400px;}
._e_c00357{width:23.335200px;}
._9_c00357{width:24.400800px;}
._7_c00357{width:27.165600px;}
._8_c00357{width:28.692000px;}
.fc0_c00357{color:rgb(0,0,0);}
.fs3_c00357{font-size:40.000002px;}
.fs1_c00357{font-size:48.000000px;}
.fs2_c00357{font-size:60.000000px;}
.fs0_c00357{font-size:72.000000px;}
.y0_c00357{bottom:0.000000px;}
.y1e_c00357{bottom:67.500000px;}
.y1f_c00357{bottom:140.250000px;}
.y1c_c00357{bottom:189.000000px;}
.y1b_c00357{bottom:234.000000px;}
.y1a_c00357{bottom:255.000000px;}
.y19_c00357{bottom:276.000000px;}
.y18_c00357{bottom:321.000000px;}
.y17_c00357{bottom:348.000000px;}
.y16_c00357{bottom:396.000000px;}
.y15_c00357{bottom:444.000000px;}
.y14_c00357{bottom:540.000000px;}
.y13_c00357{bottom:567.000000px;}
.y12_c00357{bottom:594.000000px;}
.y11_c00357{bottom:621.000000px;}
.y10_c00357{bottom:648.000000px;}
.yf_c00357{bottom:675.000000px;}
.ye_c00357{bottom:723.000000px;}
.yd_c00357{bottom:750.000000px;}
.yc_c00357{bottom:777.000000px;}
.yb_c00357{bottom:804.000000px;}
.ya_c00357{bottom:831.000000px;}
.y9_c00357{bottom:858.000000px;}
.y8_c00357{bottom:885.000000px;}
.y7_c00357{bottom:933.000000px;}
.y6_c00357{bottom:960.000000px;}
.y5_c00357{bottom:987.000000px;}
.y4_c00357{bottom:1014.000000px;}
.y3_c00357{bottom:1041.000000px;}
.y2_c00357{bottom:1068.000000px;}
.y1_c00357{bottom:1095.000000px;}
.y1d_c00357{bottom:1194.000000px;}
.h7_c00357{height:35.312502px;}
.h3_c00357{height:42.714844px;}
.h6_c00357{height:44.208984px;}
.h1_c00357{height:51.257812px;}
.h4_c00357{height:52.417969px;}
.h5_c00357{height:56.074219px;}
.h2_c00357{height:57.258075px;}
.h0_c00357{height:1263.000000px;}
.w0_c00357{width:892.500000px;}
.x0_c00357{left:0.000000px;}
.x1_c00357{left:65.480310px;}
@media print{
.v3_c00357{vertical-align:-29.333333pt;}
.v2_c00357{vertical-align:-20.521067pt;}
.v0_c00357{vertical-align:0.000000pt;}
.v1_c00357{vertical-align:20.521067pt;}
.ls2_c00357{letter-spacing:-0.010667pt;}
.ls1_c00357{letter-spacing:-0.008533pt;}
.ls3_c00357{letter-spacing:-0.005333pt;}
.ls0_c00357{letter-spacing:0.000000pt;}
.ls4_c00357{letter-spacing:0.010667pt;}
.ws1_c00357{word-spacing:-17.600000pt;}
.ws2_c00357{word-spacing:-14.661333pt;}
.ws3_c00357{word-spacing:-8.888889pt;}
.ws4_c00357{word-spacing:0.000000pt;}
.ws0_c00357{word-spacing:14.512000pt;}
._16_c00357{margin-left:-9.344000pt;}
._19_c00357{margin-left:-8.012800pt;}
._1a_c00357{margin-left:-7.078400pt;}
._0_c00357{margin-left:-4.108800pt;}
._d_c00357{margin-left:-3.206400pt;}
._15_c00357{margin-left:-2.284800pt;}
._1_c00357{margin-left:-1.363200pt;}
._3_c00357{width:0.928000pt;}
._5_c00357{width:2.451200pt;}
._18_c00357{width:3.372800pt;}
._a_c00357{width:4.268800pt;}
._f_c00357{width:5.721600pt;}
._10_c00357{width:6.611200pt;}
._13_c00357{width:8.025600pt;}
._11_c00357{width:9.811200pt;}
._12_c00357{width:10.752000pt;}
._14_c00357{width:11.968000pt;}
._17_c00357{width:12.998400pt;}
._6_c00357{width:13.984000pt;}
._4_c00357{width:14.969600pt;}
._2_c00357{width:16.172800pt;}
._c_c00357{width:18.886400pt;}
._b_c00357{width:19.852800pt;}
._e_c00357{width:20.742400pt;}
._9_c00357{width:21.689600pt;}
._7_c00357{width:24.147200pt;}
._8_c00357{width:25.504000pt;}
.fs3_c00357{font-size:35.555557pt;}
.fs1_c00357{font-size:42.666667pt;}
.fs2_c00357{font-size:53.333333pt;}
.fs0_c00357{font-size:64.000000pt;}
.y0_c00357{bottom:0.000000pt;}
.y1e_c00357{bottom:60.000000pt;}
.y1f_c00357{bottom:124.666667pt;}
.y1c_c00357{bottom:168.000000pt;}
.y1b_c00357{bottom:208.000000pt;}
.y1a_c00357{bottom:226.666667pt;}
.y19_c00357{bottom:245.333333pt;}
.y18_c00357{bottom:285.333333pt;}
.y17_c00357{bottom:309.333333pt;}
.y16_c00357{bottom:352.000000pt;}
.y15_c00357{bottom:394.666667pt;}
.y14_c00357{bottom:480.000000pt;}
.y13_c00357{bottom:504.000000pt;}
.y12_c00357{bottom:528.000000pt;}
.y11_c00357{bottom:552.000000pt;}
.y10_c00357{bottom:576.000000pt;}
.yf_c00357{bottom:600.000000pt;}
.ye_c00357{bottom:642.666667pt;}
.yd_c00357{bottom:666.666667pt;}
.yc_c00357{bottom:690.666667pt;}
.yb_c00357{bottom:714.666667pt;}
.ya_c00357{bottom:738.666667pt;}
.y9_c00357{bottom:762.666667pt;}
.y8_c00357{bottom:786.666667pt;}
.y7_c00357{bottom:829.333333pt;}
.y6_c00357{bottom:853.333333pt;}
.y5_c00357{bottom:877.333333pt;}
.y4_c00357{bottom:901.333333pt;}
.y3_c00357{bottom:925.333333pt;}
.y2_c00357{bottom:949.333333pt;}
.y1_c00357{bottom:973.333333pt;}
.y1d_c00357{bottom:1061.333333pt;}
.h7_c00357{height:31.388890pt;}
.h3_c00357{height:37.968750pt;}
.h6_c00357{height:39.296875pt;}
.h1_c00357{height:45.562500pt;}
.h4_c00357{height:46.593750pt;}
.h5_c00357{height:49.843750pt;}
.h2_c00357{height:50.896067pt;}
.h0_c00357{height:1122.666667pt;}
.w0_c00357{width:793.333333pt;}
.x0_c00357{left:0.000000pt;}
.x1_c00357{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4e68b660bac0cf78d7e7c2b5.woff2')format("woff");}.ff1_c00358{font-family:ff1_c00358;line-height:1.010254;font-style:normal;font-weight:normal;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_ef774e00ce96ea1e71a2aa90.woff2')format("woff");}.ff2_c00358{font-family:ff2_c00358;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00358{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00358{vertical-align:0.000000px;}
.ls4_c00358{letter-spacing:0.000000px;}
.ls3_c00358{letter-spacing:0.012000px;}
.ls1_c00358{letter-spacing:0.540000px;}
.ls2_c00358{letter-spacing:0.900000px;}
.ls0_c00358{letter-spacing:2.160000px;}
.sc__c00358{text-shadow:none;}
.sc0_c00358{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00358{-webkit-text-stroke:0px transparent;}
.sc0_c00358{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00358{word-spacing:-18.000000px;}
.ws1_c00358{word-spacing:0.000000px;}
._12_c00358{margin-left:-7.970400px;}
._c_c00358{margin-left:-6.487200px;}
._9_c00358{margin-left:-4.500000px;}
._5_c00358{margin-left:-2.836800px;}
._3_c00358{margin-left:-1.706400px;}
._2_c00358{width:1.670400px;}
._1_c00358{width:2.743200px;}
._0_c00358{width:4.384800px;}
._4_c00358{width:6.069600px;}
._6_c00358{width:7.747200px;}
._19_c00358{width:8.920800px;}
._18_c00358{width:9.928800px;}
._17_c00358{width:11.131200px;}
._15_c00358{width:12.837600px;}
._16_c00358{width:13.996800px;}
._14_c00358{width:15.508800px;}
._f_c00358{width:16.552800px;}
._1a_c00358{width:19.792800px;}
._e_c00358{width:21.708000px;}
._d_c00358{width:22.946400px;}
._7_c00358{width:24.098400px;}
._1b_c00358{width:25.365600px;}
._b_c00358{width:26.863200px;}
._8_c00358{width:28.663200px;}
._1c_c00358{width:29.671200px;}
._a_c00358{width:30.859200px;}
._11_c00358{width:33.170400px;}
._1d_c00358{width:34.524000px;}
._10_c00358{width:35.596800px;}
._1f_c00358{width:37.015200px;}
._1e_c00358{width:38.448000px;}
._13_c00358{width:40.320000px;}
.fc0_c00358{color:rgb(0,0,0);}
.fs1_c00358{font-size:60.000000px;}
.fs0_c00358{font-size:72.000000px;}
.y0_c00358{bottom:0.000000px;}
.y2e_c00358{bottom:67.500000px;}
.y2c_c00358{bottom:151.500000px;}
.y2b_c00358{bottom:172.500000px;}
.y2a_c00358{bottom:193.500000px;}
.y29_c00358{bottom:214.500000px;}
.y28_c00358{bottom:256.500000px;}
.y27_c00358{bottom:277.500000px;}
.y26_c00358{bottom:298.500000px;}
.y25_c00358{bottom:319.500000px;}
.y24_c00358{bottom:340.500000px;}
.y23_c00358{bottom:382.500000px;}
.y22_c00358{bottom:403.500000px;}
.y21_c00358{bottom:424.500000px;}
.y20_c00358{bottom:445.500000px;}
.y1f_c00358{bottom:466.500000px;}
.y1e_c00358{bottom:487.500000px;}
.y1d_c00358{bottom:508.500000px;}
.y1c_c00358{bottom:529.500000px;}
.y1b_c00358{bottom:550.500000px;}
.y1a_c00358{bottom:571.500000px;}
.y19_c00358{bottom:592.500000px;}
.y18_c00358{bottom:613.500000px;}
.y17_c00358{bottom:634.500000px;}
.y16_c00358{bottom:655.500000px;}
.y15_c00358{bottom:676.500000px;}
.y14_c00358{bottom:697.500000px;}
.y13_c00358{bottom:718.500000px;}
.y12_c00358{bottom:739.500000px;}
.y11_c00358{bottom:760.500000px;}
.y10_c00358{bottom:781.500000px;}
.yf_c00358{bottom:802.500000px;}
.ye_c00358{bottom:823.500000px;}
.yd_c00358{bottom:844.500000px;}
.yc_c00358{bottom:865.500000px;}
.yb_c00358{bottom:886.500000px;}
.ya_c00358{bottom:907.500000px;}
.y9_c00358{bottom:928.500000px;}
.y8_c00358{bottom:949.500000px;}
.y7_c00358{bottom:970.500000px;}
.y6_c00358{bottom:991.500000px;}
.y5_c00358{bottom:1012.500000px;}
.y4_c00358{bottom:1033.500000px;}
.y3_c00358{bottom:1054.500000px;}
.y2_c00358{bottom:1075.500000px;}
.y1_c00358{bottom:1096.500000px;}
.y2d_c00358{bottom:1194.000000px;}
.h1_c00358{height:52.417969px;}
.h2_c00358{height:56.074219px;}
.h0_c00358{height:1263.000000px;}
.w0_c00358{width:892.500000px;}
.x0_c00358{left:0.000000px;}
.x1_c00358{left:150.519750px;}
.x2_c00358{left:416.782800px;}
.x3_c00358{left:801.992850px;}
@media print{
.v0_c00358{vertical-align:0.000000pt;}
.ls4_c00358{letter-spacing:0.000000pt;}
.ls3_c00358{letter-spacing:0.010667pt;}
.ls1_c00358{letter-spacing:0.480000pt;}
.ls2_c00358{letter-spacing:0.800000pt;}
.ls0_c00358{letter-spacing:1.920000pt;}
.ws0_c00358{word-spacing:-16.000000pt;}
.ws1_c00358{word-spacing:0.000000pt;}
._12_c00358{margin-left:-7.084800pt;}
._c_c00358{margin-left:-5.766400pt;}
._9_c00358{margin-left:-4.000000pt;}
._5_c00358{margin-left:-2.521600pt;}
._3_c00358{margin-left:-1.516800pt;}
._2_c00358{width:1.484800pt;}
._1_c00358{width:2.438400pt;}
._0_c00358{width:3.897600pt;}
._4_c00358{width:5.395200pt;}
._6_c00358{width:6.886400pt;}
._19_c00358{width:7.929600pt;}
._18_c00358{width:8.825600pt;}
._17_c00358{width:9.894400pt;}
._15_c00358{width:11.411200pt;}
._16_c00358{width:12.441600pt;}
._14_c00358{width:13.785600pt;}
._f_c00358{width:14.713600pt;}
._1a_c00358{width:17.593600pt;}
._e_c00358{width:19.296000pt;}
._d_c00358{width:20.396800pt;}
._7_c00358{width:21.420800pt;}
._1b_c00358{width:22.547200pt;}
._b_c00358{width:23.878400pt;}
._8_c00358{width:25.478400pt;}
._1c_c00358{width:26.374400pt;}
._a_c00358{width:27.430400pt;}
._11_c00358{width:29.484800pt;}
._1d_c00358{width:30.688000pt;}
._10_c00358{width:31.641600pt;}
._1f_c00358{width:32.902400pt;}
._1e_c00358{width:34.176000pt;}
._13_c00358{width:35.840000pt;}
.fs1_c00358{font-size:53.333333pt;}
.fs0_c00358{font-size:64.000000pt;}
.y0_c00358{bottom:0.000000pt;}
.y2e_c00358{bottom:60.000000pt;}
.y2c_c00358{bottom:134.666667pt;}
.y2b_c00358{bottom:153.333333pt;}
.y2a_c00358{bottom:172.000000pt;}
.y29_c00358{bottom:190.666667pt;}
.y28_c00358{bottom:228.000000pt;}
.y27_c00358{bottom:246.666667pt;}
.y26_c00358{bottom:265.333333pt;}
.y25_c00358{bottom:284.000000pt;}
.y24_c00358{bottom:302.666667pt;}
.y23_c00358{bottom:340.000000pt;}
.y22_c00358{bottom:358.666667pt;}
.y21_c00358{bottom:377.333333pt;}
.y20_c00358{bottom:396.000000pt;}
.y1f_c00358{bottom:414.666667pt;}
.y1e_c00358{bottom:433.333333pt;}
.y1d_c00358{bottom:452.000000pt;}
.y1c_c00358{bottom:470.666667pt;}
.y1b_c00358{bottom:489.333333pt;}
.y1a_c00358{bottom:508.000000pt;}
.y19_c00358{bottom:526.666667pt;}
.y18_c00358{bottom:545.333333pt;}
.y17_c00358{bottom:564.000000pt;}
.y16_c00358{bottom:582.666667pt;}
.y15_c00358{bottom:601.333333pt;}
.y14_c00358{bottom:620.000000pt;}
.y13_c00358{bottom:638.666667pt;}
.y12_c00358{bottom:657.333333pt;}
.y11_c00358{bottom:676.000000pt;}
.y10_c00358{bottom:694.666667pt;}
.yf_c00358{bottom:713.333333pt;}
.ye_c00358{bottom:732.000000pt;}
.yd_c00358{bottom:750.666667pt;}
.yc_c00358{bottom:769.333333pt;}
.yb_c00358{bottom:788.000000pt;}
.ya_c00358{bottom:806.666667pt;}
.y9_c00358{bottom:825.333333pt;}
.y8_c00358{bottom:844.000000pt;}
.y7_c00358{bottom:862.666667pt;}
.y6_c00358{bottom:881.333333pt;}
.y5_c00358{bottom:900.000000pt;}
.y4_c00358{bottom:918.666667pt;}
.y3_c00358{bottom:937.333333pt;}
.y2_c00358{bottom:956.000000pt;}
.y1_c00358{bottom:974.666667pt;}
.y2d_c00358{bottom:1061.333333pt;}
.h1_c00358{height:46.593750pt;}
.h2_c00358{height:49.843750pt;}
.h0_c00358{height:1122.666667pt;}
.w0_c00358{width:793.333333pt;}
.x0_c00358{left:0.000000pt;}
.x1_c00358{left:133.795333pt;}
.x2_c00358{left:370.473600pt;}
.x3_c00358{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_313e2ccdf4310d3872836773.woff2')format("woff");}.ff1_c00359{font-family:ff1_c00359;line-height:1.010254;font-style:normal;font-weight:normal;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_e22ea126e056a886032caade.woff2')format("woff");}.ff2_c00359{font-family:ff2_c00359;line-height:0.986816;font-style:normal;font-weight:normal;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_b2f15ee982f4654047a945a9.woff2')format("woff");}.ff3_c00359{font-family:ff3_c00359;line-height:1.161133;font-style:normal;font-weight:normal;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_86a99382c05b96c6a136f30a.woff2')format("woff");}.ff4_c00359{font-family:ff4_c00359;line-height:0.932129;font-style:normal;font-weight:normal;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_2e70f31e755924da5a330a24.woff2')format("woff");}.ff5_c00359{font-family:ff5_c00359;line-height:0.755859;font-style:normal;font-weight: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_c00359;src:url('chunks/assets/font_ad420c37f258afbde9ce44e2.woff2')format("woff");}.ff6_c00359{font-family:ff6_c00359;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00359{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00359{vertical-align:0.000000px;}
.ls1_c00359{letter-spacing:0.000000px;}
.ls2_c00359{letter-spacing:0.012000px;}
.ls0_c00359{letter-spacing:0.928800px;}
.sc__c00359{text-shadow:none;}
.sc0_c00359{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00359{-webkit-text-stroke:0px transparent;}
.sc0_c00359{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00359{word-spacing:-18.000000px;}
.ws1_c00359{word-spacing:-0.072000px;}
.ws2_c00359{word-spacing:0.000000px;}
._14_c00359{margin-left:-9.280800px;}
._c_c00359{margin-left:-7.984800px;}
._0_c00359{margin-left:-6.681600px;}
._7_c00359{margin-left:-5.536800px;}
._19_c00359{margin-left:-4.341600px;}
._4_c00359{margin-left:-2.944800px;}
._6_c00359{margin-left:-1.101600px;}
._2_c00359{width:1.188000px;}
._e_c00359{width:2.412000px;}
._a_c00359{width:4.068000px;}
._d_c00359{width:5.882400px;}
._b_c00359{width:7.351200px;}
._f_c00359{width:9.079200px;}
._3_c00359{width:10.260000px;}
._1_c00359{width:11.462400px;}
._9_c00359{width:12.520800px;}
._5_c00359{width:14.385600px;}
._1d_c00359{width:15.544800px;}
._8_c00359{width:16.905600px;}
._15_c00359{width:18.170760px;}
._13_c00359{width:19.447200px;}
._1c_c00359{width:20.824440px;}
._10_c00359{width:21.873600px;}
._1f_c00359{width:23.493600px;}
._12_c00359{width:24.825600px;}
._11_c00359{width:26.676000px;}
._17_c00359{width:28.202400px;}
._18_c00359{width:29.289600px;}
._16_c00359{width:30.628800px;}
._1b_c00359{width:33.688800px;}
._1a_c00359{width:34.963200px;}
._1e_c00359{width:36.021600px;}
.fc0_c00359{color:rgb(0,0,0);}
.fs1_c00359{font-size:60.000000px;}
.fs0_c00359{font-size:72.000000px;}
.y0_c00359{bottom:0.000000px;}
.y28_c00359{bottom:67.500000px;}
.y26_c00359{bottom:133.500000px;}
.y25_c00359{bottom:154.500000px;}
.y24_c00359{bottom:196.500000px;}
.y23_c00359{bottom:217.500000px;}
.y22_c00359{bottom:238.500000px;}
.y21_c00359{bottom:259.500000px;}
.y20_c00359{bottom:280.500000px;}
.y1f_c00359{bottom:301.500000px;}
.y1e_c00359{bottom:322.500000px;}
.y1d_c00359{bottom:343.500000px;}
.y1c_c00359{bottom:364.500000px;}
.y1b_c00359{bottom:385.500000px;}
.y1a_c00359{bottom:406.500000px;}
.y19_c00359{bottom:427.500000px;}
.y18_c00359{bottom:448.500000px;}
.y17_c00359{bottom:469.500000px;}
.y16_c00359{bottom:490.500000px;}
.y15_c00359{bottom:511.500000px;}
.y14_c00359{bottom:532.500000px;}
.y13_c00359{bottom:553.500000px;}
.y12_c00359{bottom:574.500000px;}
.y11_c00359{bottom:595.500000px;}
.y10_c00359{bottom:616.500000px;}
.yf_c00359{bottom:637.500000px;}
.ye_c00359{bottom:658.500000px;}
.yd_c00359{bottom:679.500000px;}
.yc_c00359{bottom:723.000000px;}
.yb_c00359{bottom:744.000000px;}
.ya_c00359{bottom:789.000000px;}
.y9_c00359{bottom:816.000000px;}
.y8_c00359{bottom:864.000000px;}
.y7_c00359{bottom:907.500000px;}
.y6_c00359{bottom:949.500000px;}
.y5_c00359{bottom:970.500000px;}
.y4_c00359{bottom:1012.500000px;}
.y3_c00359{bottom:1033.500000px;}
.y2_c00359{bottom:1054.500000px;}
.y1_c00359{bottom:1096.500000px;}
.y27_c00359{bottom:1194.000000px;}
.h6_c00359{height:44.208984px;}
.h3_c00359{height:51.257812px;}
.h1_c00359{height:52.417969px;}
.h5_c00359{height:56.074219px;}
.h4_c00359{height:56.455078px;}
.h2_c00359{height:67.746094px;}
.h0_c00359{height:1263.000000px;}
.w0_c00359{width:892.500000px;}
.x0_c00359{left:0.000000px;}
.x1_c00359{left:65.480310px;}
@media print{
.v0_c00359{vertical-align:0.000000pt;}
.ls1_c00359{letter-spacing:0.000000pt;}
.ls2_c00359{letter-spacing:0.010667pt;}
.ls0_c00359{letter-spacing:0.825600pt;}
.ws0_c00359{word-spacing:-16.000000pt;}
.ws1_c00359{word-spacing:-0.064000pt;}
.ws2_c00359{word-spacing:0.000000pt;}
._14_c00359{margin-left:-8.249600pt;}
._c_c00359{margin-left:-7.097600pt;}
._0_c00359{margin-left:-5.939200pt;}
._7_c00359{margin-left:-4.921600pt;}
._19_c00359{margin-left:-3.859200pt;}
._4_c00359{margin-left:-2.617600pt;}
._6_c00359{margin-left:-0.979200pt;}
._2_c00359{width:1.056000pt;}
._e_c00359{width:2.144000pt;}
._a_c00359{width:3.616000pt;}
._d_c00359{width:5.228800pt;}
._b_c00359{width:6.534400pt;}
._f_c00359{width:8.070400pt;}
._3_c00359{width:9.120000pt;}
._1_c00359{width:10.188800pt;}
._9_c00359{width:11.129600pt;}
._5_c00359{width:12.787200pt;}
._1d_c00359{width:13.817600pt;}
._8_c00359{width:15.027200pt;}
._15_c00359{width:16.151787pt;}
._13_c00359{width:17.286400pt;}
._1c_c00359{width:18.510613pt;}
._10_c00359{width:19.443200pt;}
._1f_c00359{width:20.883200pt;}
._12_c00359{width:22.067200pt;}
._11_c00359{width:23.712000pt;}
._17_c00359{width:25.068800pt;}
._18_c00359{width:26.035200pt;}
._16_c00359{width:27.225600pt;}
._1b_c00359{width:29.945600pt;}
._1a_c00359{width:31.078400pt;}
._1e_c00359{width:32.019200pt;}
.fs1_c00359{font-size:53.333333pt;}
.fs0_c00359{font-size:64.000000pt;}
.y0_c00359{bottom:0.000000pt;}
.y28_c00359{bottom:60.000000pt;}
.y26_c00359{bottom:118.666667pt;}
.y25_c00359{bottom:137.333333pt;}
.y24_c00359{bottom:174.666667pt;}
.y23_c00359{bottom:193.333333pt;}
.y22_c00359{bottom:212.000000pt;}
.y21_c00359{bottom:230.666667pt;}
.y20_c00359{bottom:249.333333pt;}
.y1f_c00359{bottom:268.000000pt;}
.y1e_c00359{bottom:286.666667pt;}
.y1d_c00359{bottom:305.333333pt;}
.y1c_c00359{bottom:324.000000pt;}
.y1b_c00359{bottom:342.666667pt;}
.y1a_c00359{bottom:361.333333pt;}
.y19_c00359{bottom:380.000000pt;}
.y18_c00359{bottom:398.666667pt;}
.y17_c00359{bottom:417.333333pt;}
.y16_c00359{bottom:436.000000pt;}
.y15_c00359{bottom:454.666667pt;}
.y14_c00359{bottom:473.333333pt;}
.y13_c00359{bottom:492.000000pt;}
.y12_c00359{bottom:510.666667pt;}
.y11_c00359{bottom:529.333333pt;}
.y10_c00359{bottom:548.000000pt;}
.yf_c00359{bottom:566.666667pt;}
.ye_c00359{bottom:585.333333pt;}
.yd_c00359{bottom:604.000000pt;}
.yc_c00359{bottom:642.666667pt;}
.yb_c00359{bottom:661.333333pt;}
.ya_c00359{bottom:701.333333pt;}
.y9_c00359{bottom:725.333333pt;}
.y8_c00359{bottom:768.000000pt;}
.y7_c00359{bottom:806.666667pt;}
.y6_c00359{bottom:844.000000pt;}
.y5_c00359{bottom:862.666667pt;}
.y4_c00359{bottom:900.000000pt;}
.y3_c00359{bottom:918.666667pt;}
.y2_c00359{bottom:937.333333pt;}
.y1_c00359{bottom:974.666667pt;}
.y27_c00359{bottom:1061.333333pt;}
.h6_c00359{height:39.296875pt;}
.h3_c00359{height:45.562500pt;}
.h1_c00359{height:46.593750pt;}
.h5_c00359{height:49.843750pt;}
.h4_c00359{height:50.182292pt;}
.h2_c00359{height:60.218750pt;}
.h0_c00359{height:1122.666667pt;}
.w0_c00359{width:793.333333pt;}
.x0_c00359{left:0.000000pt;}
.x1_c00359{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cd986c9c6919068b6dc98c40.woff2')format("woff");}.ff1_c00360{font-family:ff1_c00360;line-height:1.010254;font-style:normal;font-weight:normal;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_1b7033669ffccaa0b2d7c4f3.woff2')format("woff");}.ff2_c00360{font-family:ff2_c00360;line-height:0.986816;font-style:normal;font-weight:normal;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_982453b7b7c95fb4ccad7c16.woff2')format("woff");}.ff3_c00360{font-family:ff3_c00360;line-height:0.932129;font-style:normal;font-weight:normal;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_99e8eafc951ce0b3a19a688e.woff2')format("woff");}.ff4_c00360{font-family:ff4_c00360;line-height:0.932129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00360;src:url('chunks/assets/font_929bf2ad8b38cf866c960f2e.woff2')format("woff");}.ff5_c00360{font-family:ff5_c00360;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00360{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00360{vertical-align:0.000000px;}
.ls2_c00360{letter-spacing:0.000000px;}
.ls1_c00360{letter-spacing:0.012000px;}
.ls0_c00360{letter-spacing:1.800000px;}
.sc__c00360{text-shadow:none;}
.sc0_c00360{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00360{-webkit-text-stroke:0px transparent;}
.sc0_c00360{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00360{word-spacing:-18.000000px;}
.ws1_c00360{word-spacing:-0.072000px;}
.ws2_c00360{word-spacing:0.000000px;}
._15_c00360{margin-left:-9.446400px;}
._16_c00360{margin-left:-7.430400px;}
._14_c00360{margin-left:-5.508000px;}
._7_c00360{margin-left:-4.392000px;}
._3_c00360{margin-left:-2.894400px;}
._5_c00360{margin-left:-1.296000px;}
._1_c00360{width:1.879200px;}
._2_c00360{width:3.816000px;}
._0_c00360{width:5.673600px;}
._9_c00360{width:6.976800px;}
._4_c00360{width:8.582400px;}
._a_c00360{width:10.720800px;}
._6_c00360{width:11.750400px;}
._8_c00360{width:13.219200px;}
._12_c00360{width:14.378400px;}
._11_c00360{width:16.372800px;}
._10_c00360{width:19.152000px;}
._d_c00360{width:20.736000px;}
._f_c00360{width:22.586400px;}
._c_c00360{width:24.552000px;}
._e_c00360{width:26.431200px;}
._b_c00360{width:27.727200px;}
._1a_c00360{width:28.836000px;}
._13_c00360{width:29.894400px;}
._17_c00360{width:31.370400px;}
._18_c00360{width:32.860800px;}
._19_c00360{width:34.063200px;}
._1b_c00360{width:37.656000px;}
.fc0_c00360{color:rgb(0,0,0);}
.fs1_c00360{font-size:60.000000px;}
.fs0_c00360{font-size:72.000000px;}
.y0_c00360{bottom:0.000000px;}
.y26_c00360{bottom:67.500000px;}
.y24_c00360{bottom:142.500000px;}
.y23_c00360{bottom:163.500000px;}
.y22_c00360{bottom:184.500000px;}
.y21_c00360{bottom:205.500000px;}
.y20_c00360{bottom:226.500000px;}
.y1f_c00360{bottom:247.500000px;}
.y1e_c00360{bottom:268.500000px;}
.y1d_c00360{bottom:289.500000px;}
.y1c_c00360{bottom:333.000000px;}
.y1b_c00360{bottom:373.500000px;}
.y1a_c00360{bottom:396.000000px;}
.y19_c00360{bottom:441.000000px;}
.y18_c00360{bottom:486.000000px;}
.y17_c00360{bottom:550.500000px;}
.y16_c00360{bottom:592.500000px;}
.y15_c00360{bottom:613.500000px;}
.y14_c00360{bottom:634.500000px;}
.y13_c00360{bottom:655.500000px;}
.y12_c00360{bottom:676.500000px;}
.y11_c00360{bottom:697.500000px;}
.y10_c00360{bottom:718.500000px;}
.yf_c00360{bottom:739.500000px;}
.ye_c00360{bottom:781.500000px;}
.yd_c00360{bottom:802.500000px;}
.yc_c00360{bottom:844.500000px;}
.yb_c00360{bottom:865.500000px;}
.ya_c00360{bottom:907.500000px;}
.y9_c00360{bottom:928.500000px;}
.y8_c00360{bottom:949.500000px;}
.y7_c00360{bottom:970.500000px;}
.y6_c00360{bottom:991.500000px;}
.y5_c00360{bottom:1012.500000px;}
.y4_c00360{bottom:1033.500000px;}
.y3_c00360{bottom:1054.500000px;}
.y2_c00360{bottom:1075.500000px;}
.y1_c00360{bottom:1096.500000px;}
.y25_c00360{bottom:1194.000000px;}
.h3_c00360{height:43.681641px;}
.h2_c00360{height:51.257812px;}
.h1_c00360{height:52.417969px;}
.h4_c00360{height:56.074219px;}
.h0_c00360{height:1263.000000px;}
.w0_c00360{width:892.500000px;}
.x0_c00360{left:0.000000px;}
.x1_c00360{left:150.519750px;}
.x2_c00360{left:416.782800px;}
.x3_c00360{left:801.992850px;}
@media print{
.v0_c00360{vertical-align:0.000000pt;}
.ls2_c00360{letter-spacing:0.000000pt;}
.ls1_c00360{letter-spacing:0.010667pt;}
.ls0_c00360{letter-spacing:1.600000pt;}
.ws0_c00360{word-spacing:-16.000000pt;}
.ws1_c00360{word-spacing:-0.064000pt;}
.ws2_c00360{word-spacing:0.000000pt;}
._15_c00360{margin-left:-8.396800pt;}
._16_c00360{margin-left:-6.604800pt;}
._14_c00360{margin-left:-4.896000pt;}
._7_c00360{margin-left:-3.904000pt;}
._3_c00360{margin-left:-2.572800pt;}
._5_c00360{margin-left:-1.152000pt;}
._1_c00360{width:1.670400pt;}
._2_c00360{width:3.392000pt;}
._0_c00360{width:5.043200pt;}
._9_c00360{width:6.201600pt;}
._4_c00360{width:7.628800pt;}
._a_c00360{width:9.529600pt;}
._6_c00360{width:10.444800pt;}
._8_c00360{width:11.750400pt;}
._12_c00360{width:12.780800pt;}
._11_c00360{width:14.553600pt;}
._10_c00360{width:17.024000pt;}
._d_c00360{width:18.432000pt;}
._f_c00360{width:20.076800pt;}
._c_c00360{width:21.824000pt;}
._e_c00360{width:23.494400pt;}
._b_c00360{width:24.646400pt;}
._1a_c00360{width:25.632000pt;}
._13_c00360{width:26.572800pt;}
._17_c00360{width:27.884800pt;}
._18_c00360{width:29.209600pt;}
._19_c00360{width:30.278400pt;}
._1b_c00360{width:33.472000pt;}
.fs1_c00360{font-size:53.333333pt;}
.fs0_c00360{font-size:64.000000pt;}
.y0_c00360{bottom:0.000000pt;}
.y26_c00360{bottom:60.000000pt;}
.y24_c00360{bottom:126.666667pt;}
.y23_c00360{bottom:145.333333pt;}
.y22_c00360{bottom:164.000000pt;}
.y21_c00360{bottom:182.666667pt;}
.y20_c00360{bottom:201.333333pt;}
.y1f_c00360{bottom:220.000000pt;}
.y1e_c00360{bottom:238.666667pt;}
.y1d_c00360{bottom:257.333333pt;}
.y1c_c00360{bottom:296.000000pt;}
.y1b_c00360{bottom:332.000000pt;}
.y1a_c00360{bottom:352.000000pt;}
.y19_c00360{bottom:392.000000pt;}
.y18_c00360{bottom:432.000000pt;}
.y17_c00360{bottom:489.333333pt;}
.y16_c00360{bottom:526.666667pt;}
.y15_c00360{bottom:545.333333pt;}
.y14_c00360{bottom:564.000000pt;}
.y13_c00360{bottom:582.666667pt;}
.y12_c00360{bottom:601.333333pt;}
.y11_c00360{bottom:620.000000pt;}
.y10_c00360{bottom:638.666667pt;}
.yf_c00360{bottom:657.333333pt;}
.ye_c00360{bottom:694.666667pt;}
.yd_c00360{bottom:713.333333pt;}
.yc_c00360{bottom:750.666667pt;}
.yb_c00360{bottom:769.333333pt;}
.ya_c00360{bottom:806.666667pt;}
.y9_c00360{bottom:825.333333pt;}
.y8_c00360{bottom:844.000000pt;}
.y7_c00360{bottom:862.666667pt;}
.y6_c00360{bottom:881.333333pt;}
.y5_c00360{bottom:900.000000pt;}
.y4_c00360{bottom:918.666667pt;}
.y3_c00360{bottom:937.333333pt;}
.y2_c00360{bottom:956.000000pt;}
.y1_c00360{bottom:974.666667pt;}
.y25_c00360{bottom:1061.333333pt;}
.h3_c00360{height:38.828125pt;}
.h2_c00360{height:45.562500pt;}
.h1_c00360{height:46.593750pt;}
.h4_c00360{height:49.843750pt;}
.h0_c00360{height:1122.666667pt;}
.w0_c00360{width:793.333333pt;}
.x0_c00360{left:0.000000pt;}
.x1_c00360{left:133.795333pt;}
.x2_c00360{left:370.473600pt;}
.x3_c00360{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c95d4375663380e4722a6a41.woff2')format("woff");}.ff1_c00361{font-family:ff1_c00361;line-height:1.010254;font-style:normal;font-weight:normal;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_80895c1526386a34115166a5.woff2')format("woff");}.ff2_c00361{font-family:ff2_c00361;line-height:0.756836;font-style:normal;font-weight:normal;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_233359c1705732120ee73e75.woff2')format("woff");}.ff3_c00361{font-family:ff3_c00361;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00361{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00361{vertical-align:0.000000px;}
.ls1_c00361{letter-spacing:0.000000px;}
.ls2_c00361{letter-spacing:0.012000px;}
.ls0_c00361{letter-spacing:0.158400px;}
.sc__c00361{text-shadow:none;}
.sc0_c00361{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00361{-webkit-text-stroke:0px transparent;}
.sc0_c00361{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00361{word-spacing:0.000000px;}
._7_c00361{margin-left:-5.508000px;}
._4_c00361{margin-left:-4.464000px;}
._8_c00361{margin-left:-3.117600px;}
._3_c00361{margin-left:-1.296000px;}
._2_c00361{width:1.144800px;}
._5_c00361{width:2.512800px;}
._0_c00361{width:4.370400px;}
._e_c00361{width:5.904000px;}
._6_c00361{width:6.904800px;}
._1_c00361{width:8.748000px;}
._d_c00361{width:9.993600px;}
._c_c00361{width:11.174400px;}
._9_c00361{width:12.420000px;}
._b_c00361{width:14.184000px;}
._a_c00361{width:15.458400px;}
._14_c00361{width:16.660800px;}
._16_c00361{width:19.116000px;}
._17_c00361{width:20.469600px;}
._15_c00361{width:21.837600px;}
._11_c00361{width:28.908000px;}
._f_c00361{width:30.312000px;}
._13_c00361{width:31.471200px;}
._1a_c00361{width:33.249600px;}
._10_c00361{width:34.545600px;}
._18_c00361{width:35.712000px;}
._12_c00361{width:36.921600px;}
._1b_c00361{width:38.829600px;}
._19_c00361{width:40.341600px;}
.fc0_c00361{color:rgb(0,0,0);}
.fs1_c00361{font-size:60.000000px;}
.fs0_c00361{font-size:72.000000px;}
.y0_c00361{bottom:0.000000px;}
.y10_c00361{bottom:67.500000px;}
.ye_c00361{bottom:823.500000px;}
.yd_c00361{bottom:844.500000px;}
.yc_c00361{bottom:865.500000px;}
.yb_c00361{bottom:886.500000px;}
.ya_c00361{bottom:907.500000px;}
.y9_c00361{bottom:928.500000px;}
.y8_c00361{bottom:949.500000px;}
.y7_c00361{bottom:970.500000px;}
.y6_c00361{bottom:991.500000px;}
.y5_c00361{bottom:1012.500000px;}
.y4_c00361{bottom:1033.500000px;}
.y3_c00361{bottom:1054.500000px;}
.y2_c00361{bottom:1075.500000px;}
.y1_c00361{bottom:1096.500000px;}
.yf_c00361{bottom:1194.000000px;}
.h3_c00361{height:44.208984px;}
.h1_c00361{height:52.417969px;}
.h2_c00361{height:56.074219px;}
.h0_c00361{height:1263.000000px;}
.w0_c00361{width:892.500000px;}
.x0_c00361{left:0.000000px;}
.x1_c00361{left:65.480310px;}
@media print{
.v0_c00361{vertical-align:0.000000pt;}
.ls1_c00361{letter-spacing:0.000000pt;}
.ls2_c00361{letter-spacing:0.010667pt;}
.ls0_c00361{letter-spacing:0.140800pt;}
.ws0_c00361{word-spacing:0.000000pt;}
._7_c00361{margin-left:-4.896000pt;}
._4_c00361{margin-left:-3.968000pt;}
._8_c00361{margin-left:-2.771200pt;}
._3_c00361{margin-left:-1.152000pt;}
._2_c00361{width:1.017600pt;}
._5_c00361{width:2.233600pt;}
._0_c00361{width:3.884800pt;}
._e_c00361{width:5.248000pt;}
._6_c00361{width:6.137600pt;}
._1_c00361{width:7.776000pt;}
._d_c00361{width:8.883200pt;}
._c_c00361{width:9.932800pt;}
._9_c00361{width:11.040000pt;}
._b_c00361{width:12.608000pt;}
._a_c00361{width:13.740800pt;}
._14_c00361{width:14.809600pt;}
._16_c00361{width:16.992000pt;}
._17_c00361{width:18.195200pt;}
._15_c00361{width:19.411200pt;}
._11_c00361{width:25.696000pt;}
._f_c00361{width:26.944000pt;}
._13_c00361{width:27.974400pt;}
._1a_c00361{width:29.555200pt;}
._10_c00361{width:30.707200pt;}
._18_c00361{width:31.744000pt;}
._12_c00361{width:32.819200pt;}
._1b_c00361{width:34.515200pt;}
._19_c00361{width:35.859200pt;}
.fs1_c00361{font-size:53.333333pt;}
.fs0_c00361{font-size:64.000000pt;}
.y0_c00361{bottom:0.000000pt;}
.y10_c00361{bottom:60.000000pt;}
.ye_c00361{bottom:732.000000pt;}
.yd_c00361{bottom:750.666667pt;}
.yc_c00361{bottom:769.333333pt;}
.yb_c00361{bottom:788.000000pt;}
.ya_c00361{bottom:806.666667pt;}
.y9_c00361{bottom:825.333333pt;}
.y8_c00361{bottom:844.000000pt;}
.y7_c00361{bottom:862.666667pt;}
.y6_c00361{bottom:881.333333pt;}
.y5_c00361{bottom:900.000000pt;}
.y4_c00361{bottom:918.666667pt;}
.y3_c00361{bottom:937.333333pt;}
.y2_c00361{bottom:956.000000pt;}
.y1_c00361{bottom:974.666667pt;}
.yf_c00361{bottom:1061.333333pt;}
.h3_c00361{height:39.296875pt;}
.h1_c00361{height:46.593750pt;}
.h2_c00361{height:49.843750pt;}
.h0_c00361{height:1122.666667pt;}
.w0_c00361{width:793.333333pt;}
.x0_c00361{left:0.000000pt;}
.x1_c00361{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_80e0987081c4e4b2dc661e61.woff2')format("woff");}.ff1_c00362{font-family:ff1_c00362;line-height:0.884766;font-style:normal;font-weight:normal;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_1cca2618ce1adcdd88aad357.woff2')format("woff");}.ff2_c00362{font-family:ff2_c00362;line-height:1.163086;font-style:normal;font-weight:normal;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_57e1483abe0af211db55a35d.woff2')format("woff");}.ff3_c00362{font-family:ff3_c00362;line-height:1.155762;font-style:normal;font-weight:normal;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_59d366cf2dd60f5eef92a07d.woff2')format("woff");}.ff4_c00362{font-family:ff4_c00362;line-height:0.903320;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00362;src:url('chunks/assets/font_a542a5394ae886f76f6b105d.woff2')format("woff");}.ff5_c00362{font-family:ff5_c00362;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00362{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00362{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3_c00362{vertical-align:-33.000000px;}
.v2_c00362{vertical-align:-23.086200px;}
.v0_c00362{vertical-align:0.000000px;}
.v1_c00362{vertical-align:23.086200px;}
.ls6_c00362{letter-spacing:-0.014400px;}
.ls5_c00362{letter-spacing:0.000000px;}
.ls0_c00362{letter-spacing:0.007800px;}
.ls3_c00362{letter-spacing:0.012000px;}
.ls2_c00362{letter-spacing:2.169000px;}
.ls4_c00362{letter-spacing:3.999999px;}
.ls1_c00362{letter-spacing:21.316800px;}
.sc__c00362{text-shadow:none;}
.sc0_c00362{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00362{-webkit-text-stroke:0px transparent;}
.sc0_c00362{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00362{word-spacing:-19.800000px;}
.ws0_c00362{word-spacing:-13.200000px;}
.ws2_c00362{word-spacing:-10.000001px;}
.ws3_c00362{word-spacing:0.000000px;}
._8_c00362{margin-left:-10.540800px;}
._15_c00362{margin-left:-7.178400px;}
._18_c00362{margin-left:-6.142200px;}
._16_c00362{margin-left:-4.948800px;}
._4_c00362{margin-left:-3.816000px;}
._1_c00362{margin-left:-1.807200px;}
._3_c00362{width:1.483200px;}
._0_c00362{width:3.312000px;}
._2_c00362{width:5.068800px;}
._b_c00362{width:6.300000px;}
._5_c00362{width:7.473600px;}
._c_c00362{width:8.856000px;}
._a_c00362{width:9.864000px;}
._6_c00362{width:11.260800px;}
._9_c00362{width:12.736800px;}
._7_c00362{width:14.536800px;}
._17_c00362{width:16.042800px;}
._14_c00362{width:18.391200px;}
._13_c00362{width:21.074400px;}
._d_c00362{width:22.788000px;}
._e_c00362{width:23.803200px;}
._11_c00362{width:25.200000px;}
._10_c00362{width:27.057600px;}
._12_c00362{width:28.562400px;}
._f_c00362{width:29.757600px;}
.fc1_c00362{color:rgb(255,255,255);}
.fc0_c00362{color:rgb(0,0,0);}
.fs5_c00362{font-size:40.000002px;}
.fs2_c00362{font-size:48.000000px;}
.fs4_c00362{font-size:60.000000px;}
.fs1_c00362{font-size:72.000000px;}
.fs0_c00362{font-size:78.000000px;}
.fs3_c00362{font-size:96.000000px;}
.y0_c00362{bottom:0.000000px;}
.y19_c00362{bottom:67.500000px;}
.y1e_c00362{bottom:132.000000px;}
.y1d_c00362{bottom:159.750000px;}
.y1c_c00362{bottom:209.250000px;}
.y1b_c00362{bottom:250.500000px;}
.y1a_c00362{bottom:278.250000px;}
.y16_c00362{bottom:343.500000px;}
.y15_c00362{bottom:370.500000px;}
.y14_c00362{bottom:397.500000px;}
.y13_c00362{bottom:445.500000px;}
.y12_c00362{bottom:472.500000px;}
.y11_c00362{bottom:499.500000px;}
.y10_c00362{bottom:526.500000px;}
.yf_c00362{bottom:574.500000px;}
.ye_c00362{bottom:601.500000px;}
.yd_c00362{bottom:628.500000px;}
.yc_c00362{bottom:655.500000px;}
.yb_c00362{bottom:682.500000px;}
.ya_c00362{bottom:709.500000px;}
.y9_c00362{bottom:736.500000px;}
.y8_c00362{bottom:763.500000px;}
.y7_c00362{bottom:790.500000px;}
.y6_c00362{bottom:838.500000px;}
.y5_c00362{bottom:865.500000px;}
.y4_c00362{bottom:892.500000px;}
.y3_c00362{bottom:919.500000px;}
.y2_c00362{bottom:946.500000px;}
.y1_c00362{bottom:993.000000px;}
.y17_c00362{bottom:1066.500000px;}
.y18_c00362{bottom:1194.000000px;}
.h6_c00362{height:27.421876px;}
.h7_c00362{height:41.132812px;}
.h1_c00362{height:55.224609px;}
.h5_c00362{height:56.074219px;}
.h2_c00362{height:67.746094px;}
.h3_c00362{height:68.250262px;}
.h4_c00362{height:90.328125px;}
.h0_c00362{height:1263.000000px;}
.w0_c00362{width:892.500000px;}
.x0_c00362{left:0.000000px;}
.x1_c00362{left:150.519750px;}
.x2_c00362{left:180.298875px;}
.x3_c00362{left:416.782800px;}
.x4_c00362{left:801.992850px;}
@media print{
.v3_c00362{vertical-align:-29.333333pt;}
.v2_c00362{vertical-align:-20.521067pt;}
.v0_c00362{vertical-align:0.000000pt;}
.v1_c00362{vertical-align:20.521067pt;}
.ls6_c00362{letter-spacing:-0.012800pt;}
.ls5_c00362{letter-spacing:0.000000pt;}
.ls0_c00362{letter-spacing:0.006933pt;}
.ls3_c00362{letter-spacing:0.010667pt;}
.ls2_c00362{letter-spacing:1.928000pt;}
.ls4_c00362{letter-spacing:3.555555pt;}
.ls1_c00362{letter-spacing:18.948267pt;}
.ws1_c00362{word-spacing:-17.600000pt;}
.ws0_c00362{word-spacing:-11.733333pt;}
.ws2_c00362{word-spacing:-8.888889pt;}
.ws3_c00362{word-spacing:0.000000pt;}
._8_c00362{margin-left:-9.369600pt;}
._15_c00362{margin-left:-6.380800pt;}
._18_c00362{margin-left:-5.459733pt;}
._16_c00362{margin-left:-4.398933pt;}
._4_c00362{margin-left:-3.392000pt;}
._1_c00362{margin-left:-1.606400pt;}
._3_c00362{width:1.318400pt;}
._0_c00362{width:2.944000pt;}
._2_c00362{width:4.505600pt;}
._b_c00362{width:5.600000pt;}
._5_c00362{width:6.643200pt;}
._c_c00362{width:7.872000pt;}
._a_c00362{width:8.768000pt;}
._6_c00362{width:10.009600pt;}
._9_c00362{width:11.321600pt;}
._7_c00362{width:12.921600pt;}
._17_c00362{width:14.260267pt;}
._14_c00362{width:16.347733pt;}
._13_c00362{width:18.732800pt;}
._d_c00362{width:20.256000pt;}
._e_c00362{width:21.158400pt;}
._11_c00362{width:22.400000pt;}
._10_c00362{width:24.051200pt;}
._12_c00362{width:25.388800pt;}
._f_c00362{width:26.451200pt;}
.fs5_c00362{font-size:35.555557pt;}
.fs2_c00362{font-size:42.666667pt;}
.fs4_c00362{font-size:53.333333pt;}
.fs1_c00362{font-size:64.000000pt;}
.fs0_c00362{font-size:69.333333pt;}
.fs3_c00362{font-size:85.333333pt;}
.y0_c00362{bottom:0.000000pt;}
.y19_c00362{bottom:60.000000pt;}
.y1e_c00362{bottom:117.333333pt;}
.y1d_c00362{bottom:142.000000pt;}
.y1c_c00362{bottom:186.000000pt;}
.y1b_c00362{bottom:222.666667pt;}
.y1a_c00362{bottom:247.333333pt;}
.y16_c00362{bottom:305.333333pt;}
.y15_c00362{bottom:329.333333pt;}
.y14_c00362{bottom:353.333333pt;}
.y13_c00362{bottom:396.000000pt;}
.y12_c00362{bottom:420.000000pt;}
.y11_c00362{bottom:444.000000pt;}
.y10_c00362{bottom:468.000000pt;}
.yf_c00362{bottom:510.666667pt;}
.ye_c00362{bottom:534.666667pt;}
.yd_c00362{bottom:558.666667pt;}
.yc_c00362{bottom:582.666667pt;}
.yb_c00362{bottom:606.666667pt;}
.ya_c00362{bottom:630.666667pt;}
.y9_c00362{bottom:654.666667pt;}
.y8_c00362{bottom:678.666667pt;}
.y7_c00362{bottom:702.666667pt;}
.y6_c00362{bottom:745.333333pt;}
.y5_c00362{bottom:769.333333pt;}
.y4_c00362{bottom:793.333333pt;}
.y3_c00362{bottom:817.333333pt;}
.y2_c00362{bottom:841.333333pt;}
.y1_c00362{bottom:882.666667pt;}
.y17_c00362{bottom:948.000000pt;}
.y18_c00362{bottom:1061.333333pt;}
.h6_c00362{height:24.375001pt;}
.h7_c00362{height:36.562500pt;}
.h1_c00362{height:49.088542pt;}
.h5_c00362{height:49.843750pt;}
.h2_c00362{height:60.218750pt;}
.h3_c00362{height:60.666900pt;}
.h4_c00362{height:80.291667pt;}
.h0_c00362{height:1122.666667pt;}
.w0_c00362{width:793.333333pt;}
.x0_c00362{left:0.000000pt;}
.x1_c00362{left:133.795333pt;}
.x2_c00362{left:160.265667pt;}
.x3_c00362{left:370.473600pt;}
.x4_c00362{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4a7a72b1783cfb953dff7d64.woff2')format("woff");}.ff1_c00363{font-family:ff1_c00363;line-height:0.934082;font-style:normal;font-weight:normal;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_fd053d48e2829d4b23169f09.woff2')format("woff");}.ff2_c00363{font-family:ff2_c00363;line-height:0.939453;font-style:normal;font-weight:normal;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_8435287e899b18f2da50ef61.woff2')format("woff");}.ff3_c00363{font-family:ff3_c00363;line-height:0.975586;font-style:normal;font-weight:normal;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_5133ae4762a89f664a5a5ac4.woff2')format("woff");}.ff4_c00363{font-family:ff4_c00363;line-height:0.755859;font-style:normal;font-weight:normal;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_cc2defb7fac4e019d9bc5e58.woff2')format("woff");}.ff5_c00363{font-family:ff5_c00363;line-height:1.155762;font-style:normal;font-weight: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_c00363;src:url('chunks/assets/font_e5bf13d2e940e7f063e38837.woff2')format("woff");}.ff6_c00363{font-family:ff6_c00363;line-height:0.901367;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00363;src:url('chunks/assets/font_a91f8fd40c05705661e87367.woff2')format("woff");}.ff7_c00363{font-family:ff7_c00363;line-height:0.890137;font-style: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);}
.v3_c00363{vertical-align:-33.000000px;}
.v2_c00363{vertical-align:-23.086200px;}
.v0_c00363{vertical-align:0.000000px;}
.v1_c00363{vertical-align:23.086200px;}
.ls5_c00363{letter-spacing:-1.488000px;}
.ls3_c00363{letter-spacing:0.000000px;}
.ls1_c00363{letter-spacing:0.007800px;}
.ls4_c00363{letter-spacing:0.012000px;}
.ls2_c00363{letter-spacing:3.999999px;}
.ls0_c00363{letter-spacing:10.838400px;}
.sc__c00363{text-shadow:none;}
.sc0_c00363{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00363{-webkit-text-stroke:0px transparent;}
.sc0_c00363{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00363{word-spacing:0.000000px;}
._b_c00363{margin-left:-10.094400px;}
._4_c00363{margin-left:-7.178400px;}
._15_c00363{margin-left:-4.990320px;}
._a_c00363{margin-left:-3.715200px;}
._8_c00363{margin-left:-2.419200px;}
._9_c00363{margin-left:-1.353600px;}
._2_c00363{width:1.224000px;}
._6_c00363{width:2.923200px;}
._11_c00363{width:3.981600px;}
._0_c00363{width:5.011200px;}
._f_c00363{width:6.230160px;}
._10_c00363{width:7.682400px;}
._e_c00363{width:8.935200px;}
._d_c00363{width:10.065600px;}
._c_c00363{width:11.628000px;}
._1_c00363{width:13.406400px;}
._13_c00363{width:14.414400px;}
._7_c00363{width:15.451200px;}
._3_c00363{width:17.121600px;}
._5_c00363{width:18.367200px;}
._12_c00363{width:20.836800px;}
._14_c00363{width:22.039200px;}
.fc0_c00363{color:rgb(0,0,0);}
.fs5_c00363{font-size:40.000002px;}
.fs1_c00363{font-size:48.000000px;}
.fs3_c00363{font-size:54.000000px;}
.fs4_c00363{font-size:60.000000px;}
.fs0_c00363{font-size:72.000000px;}
.fs2_c00363{font-size:78.000000px;}
.y0_c00363{bottom:0.000000px;}
.ye_c00363{bottom:12.000000px;}
.y12_c00363{bottom:67.500000px;}
.y14_c00363{bottom:132.000000px;}
.y13_c00363{bottom:159.750000px;}
.y10_c00363{bottom:201.000000px;}
.yf_c00363{bottom:228.000000px;}
.yd_c00363{bottom:273.000000px;}
.yc_c00363{bottom:735.000000px;}
.yb_c00363{bottom:762.000000px;}
.ya_c00363{bottom:789.000000px;}
.y9_c00363{bottom:816.000000px;}
.y8_c00363{bottom:862.500000px;}
.y7_c00363{bottom:933.000000px;}
.y6_c00363{bottom:960.000000px;}
.y5_c00363{bottom:987.000000px;}
.y4_c00363{bottom:1014.000000px;}
.y3_c00363{bottom:1041.000000px;}
.y2_c00363{bottom:1068.000000px;}
.y1_c00363{bottom:1095.000000px;}
.y11_c00363{bottom:1194.000000px;}
.h8_c00363{height:27.343751px;}
.h9_c00363{height:41.015625px;}
.h5_c00363{height:41.633789px;}
.h7_c00363{height:44.208984px;}
.h1_c00363{height:51.257812px;}
.h6_c00363{height:56.074219px;}
.h3_c00363{height:56.100586px;}
.h2_c00363{height:57.258075px;}
.h4_c00363{height:430.500000px;}
.h0_c00363{height:1263.000000px;}
.w1_c00363{width:676.500000px;}
.w0_c00363{width:892.500000px;}
.x0_c00363{left:0.000000px;}
.x1_c00363{left:65.480310px;}
.x2_c00363{left:256.178850px;}
@media print{
.v3_c00363{vertical-align:-29.333333pt;}
.v2_c00363{vertical-align:-20.521067pt;}
.v0_c00363{vertical-align:0.000000pt;}
.v1_c00363{vertical-align:20.521067pt;}
.ls5_c00363{letter-spacing:-1.322667pt;}
.ls3_c00363{letter-spacing:0.000000pt;}
.ls1_c00363{letter-spacing:0.006933pt;}
.ls4_c00363{letter-spacing:0.010667pt;}
.ls2_c00363{letter-spacing:3.555555pt;}
.ls0_c00363{letter-spacing:9.634133pt;}
.ws0_c00363{word-spacing:0.000000pt;}
._b_c00363{margin-left:-8.972800pt;}
._4_c00363{margin-left:-6.380800pt;}
._15_c00363{margin-left:-4.435840pt;}
._a_c00363{margin-left:-3.302400pt;}
._8_c00363{margin-left:-2.150400pt;}
._9_c00363{margin-left:-1.203200pt;}
._2_c00363{width:1.088000pt;}
._6_c00363{width:2.598400pt;}
._11_c00363{width:3.539200pt;}
._0_c00363{width:4.454400pt;}
._f_c00363{width:5.537920pt;}
._10_c00363{width:6.828800pt;}
._e_c00363{width:7.942400pt;}
._d_c00363{width:8.947200pt;}
._c_c00363{width:10.336000pt;}
._1_c00363{width:11.916800pt;}
._13_c00363{width:12.812800pt;}
._7_c00363{width:13.734400pt;}
._3_c00363{width:15.219200pt;}
._5_c00363{width:16.326400pt;}
._12_c00363{width:18.521600pt;}
._14_c00363{width:19.590400pt;}
.fs5_c00363{font-size:35.555557pt;}
.fs1_c00363{font-size:42.666667pt;}
.fs3_c00363{font-size:48.000000pt;}
.fs4_c00363{font-size:53.333333pt;}
.fs0_c00363{font-size:64.000000pt;}
.fs2_c00363{font-size:69.333333pt;}
.y0_c00363{bottom:0.000000pt;}
.ye_c00363{bottom:10.666667pt;}
.y12_c00363{bottom:60.000000pt;}
.y14_c00363{bottom:117.333333pt;}
.y13_c00363{bottom:142.000000pt;}
.y10_c00363{bottom:178.666667pt;}
.yf_c00363{bottom:202.666667pt;}
.yd_c00363{bottom:242.666667pt;}
.yc_c00363{bottom:653.333333pt;}
.yb_c00363{bottom:677.333333pt;}
.ya_c00363{bottom:701.333333pt;}
.y9_c00363{bottom:725.333333pt;}
.y8_c00363{bottom:766.666667pt;}
.y7_c00363{bottom:829.333333pt;}
.y6_c00363{bottom:853.333333pt;}
.y5_c00363{bottom:877.333333pt;}
.y4_c00363{bottom:901.333333pt;}
.y3_c00363{bottom:925.333333pt;}
.y2_c00363{bottom:949.333333pt;}
.y1_c00363{bottom:973.333333pt;}
.y11_c00363{bottom:1061.333333pt;}
.h8_c00363{height:24.305557pt;}
.h9_c00363{height:36.458333pt;}
.h5_c00363{height:37.007812pt;}
.h7_c00363{height:39.296875pt;}
.h1_c00363{height:45.562500pt;}
.h6_c00363{height:49.843750pt;}
.h3_c00363{height:49.867188pt;}
.h2_c00363{height:50.896067pt;}
.h4_c00363{height:382.666667pt;}
.h0_c00363{height:1122.666667pt;}
.w1_c00363{width:601.333333pt;}
.w0_c00363{width:793.333333pt;}
.x0_c00363{left:0.000000pt;}
.x1_c00363{left:58.204720pt;}
.x2_c00363{left:227.714533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b6d53fe147fe51110b85e8d5.woff2')format("woff");}.ff1_c00364{font-family:ff1_c00364;line-height:0.934082;font-style:normal;font-weight:normal;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_b8d0c8e1df80c25a9685b85f.woff2')format("woff");}.ff2_c00364{font-family:ff2_c00364;line-height:0.927734;font-style:normal;font-weight:normal;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_ab714c84aca22522985b0958.woff2')format("woff");}.ff3_c00364{font-family:ff3_c00364;line-height:1.155762;font-style:normal;font-weight:normal;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_b14bc5fb398b1401bb3495e7.woff2')format("woff");}.ff4_c00364{font-family:ff4_c00364;line-height:0.928223;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00364{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00364{vertical-align:0.000000px;}
.ls3_c00364{letter-spacing:-0.014400px;}
.ls1_c00364{letter-spacing:0.000000px;}
.ls2_c00364{letter-spacing:0.007200px;}
.ls5_c00364{letter-spacing:0.007800px;}
.ls4_c00364{letter-spacing:0.010800px;}
.ls0_c00364{letter-spacing:0.012000px;}
.sc__c00364{text-shadow:none;}
.sc0_c00364{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00364{-webkit-text-stroke:0px transparent;}
.sc0_c00364{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00364{word-spacing:-22.549800px;}
.ws1_c00364{word-spacing:0.000000px;}
._0_c00364{margin-left:-7.200000px;}
._3_c00364{margin-left:-4.888800px;}
._9_c00364{margin-left:-3.175200px;}
._1_c00364{margin-left:-1.821600px;}
._5_c00364{width:1.310400px;}
._8_c00364{width:3.247200px;}
._7_c00364{width:5.198400px;}
._6_c00364{width:7.084800px;}
._4_c00364{width:8.402400px;}
._2_c00364{width:10.224000px;}
._b_c00364{width:11.995200px;}
._a_c00364{width:13.341600px;}
._d_c00364{width:17.409600px;}
._c_c00364{width:20.808000px;}
.fc0_c00364{color:rgb(0,0,0);}
.fs1_c00364{font-size:54.000000px;}
.fs3_c00364{font-size:60.000000px;}
.fs0_c00364{font-size:72.000000px;}
.fs2_c00364{font-size:78.000000px;}
.y0_c00364{bottom:0.000000px;}
.y9_c00364{bottom:13.500000px;}
.yf_c00364{bottom:67.500000px;}
.yd_c00364{bottom:162.000000px;}
.yc_c00364{bottom:189.000000px;}
.yb_c00364{bottom:216.000000px;}
.ya_c00364{bottom:262.500000px;}
.y8_c00364{bottom:330.000000px;}
.y7_c00364{bottom:912.000000px;}
.y6_c00364{bottom:939.000000px;}
.y5_c00364{bottom:966.000000px;}
.y4_c00364{bottom:1014.000000px;}
.y3_c00364{bottom:1041.000000px;}
.y2_c00364{bottom:1068.000000px;}
.y1_c00364{bottom:1095.000000px;}
.ye_c00364{bottom:1194.000000px;}
.h1_c00364{height:51.257812px;}
.h4_c00364{height:55.224609px;}
.h5_c00364{height:56.074219px;}
.h3_c00364{height:67.289062px;}
.h2_c00364{height:550.500000px;}
.h0_c00364{height:1263.000000px;}
.w1_c00364{width:676.500000px;}
.w0_c00364{width:892.500000px;}
.x0_c00364{left:0.000000px;}
.x2_c00364{left:27.692850px;}
.x1_c00364{left:150.519750px;}
.x3_c00364{left:416.782800px;}
.x4_c00364{left:801.992850px;}
@media print{
.v0_c00364{vertical-align:0.000000pt;}
.ls3_c00364{letter-spacing:-0.012800pt;}
.ls1_c00364{letter-spacing:0.000000pt;}
.ls2_c00364{letter-spacing:0.006400pt;}
.ls5_c00364{letter-spacing:0.006933pt;}
.ls4_c00364{letter-spacing:0.009600pt;}
.ls0_c00364{letter-spacing:0.010667pt;}
.ws0_c00364{word-spacing:-20.044267pt;}
.ws1_c00364{word-spacing:0.000000pt;}
._0_c00364{margin-left:-6.400000pt;}
._3_c00364{margin-left:-4.345600pt;}
._9_c00364{margin-left:-2.822400pt;}
._1_c00364{margin-left:-1.619200pt;}
._5_c00364{width:1.164800pt;}
._8_c00364{width:2.886400pt;}
._7_c00364{width:4.620800pt;}
._6_c00364{width:6.297600pt;}
._4_c00364{width:7.468800pt;}
._2_c00364{width:9.088000pt;}
._b_c00364{width:10.662400pt;}
._a_c00364{width:11.859200pt;}
._d_c00364{width:15.475200pt;}
._c_c00364{width:18.496000pt;}
.fs1_c00364{font-size:48.000000pt;}
.fs3_c00364{font-size:53.333333pt;}
.fs0_c00364{font-size:64.000000pt;}
.fs2_c00364{font-size:69.333333pt;}
.y0_c00364{bottom:0.000000pt;}
.y9_c00364{bottom:12.000000pt;}
.yf_c00364{bottom:60.000000pt;}
.yd_c00364{bottom:144.000000pt;}
.yc_c00364{bottom:168.000000pt;}
.yb_c00364{bottom:192.000000pt;}
.ya_c00364{bottom:233.333333pt;}
.y8_c00364{bottom:293.333333pt;}
.y7_c00364{bottom:810.666667pt;}
.y6_c00364{bottom:834.666667pt;}
.y5_c00364{bottom:858.666667pt;}
.y4_c00364{bottom:901.333333pt;}
.y3_c00364{bottom:925.333333pt;}
.y2_c00364{bottom:949.333333pt;}
.y1_c00364{bottom:973.333333pt;}
.ye_c00364{bottom:1061.333333pt;}
.h1_c00364{height:45.562500pt;}
.h4_c00364{height:49.088542pt;}
.h5_c00364{height:49.843750pt;}
.h3_c00364{height:59.812500pt;}
.h2_c00364{height:489.333333pt;}
.h0_c00364{height:1122.666667pt;}
.w1_c00364{width:601.333333pt;}
.w0_c00364{width:793.333333pt;}
.x0_c00364{left:0.000000pt;}
.x2_c00364{left:24.615867pt;}
.x1_c00364{left:133.795333pt;}
.x3_c00364{left:370.473600pt;}
.x4_c00364{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a422e5b1c1794dcf94176280.woff2')format("woff");}.ff1_c00365{font-family:ff1_c00365;line-height:0.976074;font-style:normal;font-weight:normal;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_3cbb3cc8c75b4ab4866c9f85.woff2')format("woff");}.ff2_c00365{font-family:ff2_c00365;line-height:0.755859;font-style:normal;font-weight:normal;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_dc48165657fb1250c7098e99.woff2')format("woff");}.ff3_c00365{font-family:ff3_c00365;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00365{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00365{vertical-align:0.000000px;}
.ls0_c00365{letter-spacing:0.000000px;}
.ls1_c00365{letter-spacing:0.012000px;}
.sc__c00365{text-shadow:none;}
.sc0_c00365{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00365{-webkit-text-stroke:0px transparent;}
.sc0_c00365{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00365{word-spacing:0.000000px;}
._0_c00365{margin-left:-3.216000px;}
.fc0_c00365{color:rgb(0,0,0);}
.fs0_c00365{font-size:54.000000px;}
.fs1_c00365{font-size:60.000000px;}
.y0_c00365{bottom:0.000000px;}
.y2_c00365{bottom:12.000000px;}
.y5_c00365{bottom:67.500000px;}
.y3_c00365{bottom:216.000000px;}
.y1_c00365{bottom:673.500000px;}
.y4_c00365{bottom:1194.000000px;}
.h2_c00365{height:42.292969px;}
.h5_c00365{height:44.208984px;}
.h4_c00365{height:56.074219px;}
.h1_c00365{height:439.500000px;}
.h3_c00365{height:450.000000px;}
.h0_c00365{height:1263.000000px;}
.w1_c00365{width:676.500000px;}
.w0_c00365{width:892.500000px;}
.x0_c00365{left:0.000000px;}
.x1_c00365{left:66.000000px;}
.x3_c00365{left:180.633600px;}
.x2_c00365{left:185.564250px;}
@media print{
.v0_c00365{vertical-align:0.000000pt;}
.ls0_c00365{letter-spacing:0.000000pt;}
.ls1_c00365{letter-spacing:0.010667pt;}
.ws0_c00365{word-spacing:0.000000pt;}
._0_c00365{margin-left:-2.858667pt;}
.fs0_c00365{font-size:48.000000pt;}
.fs1_c00365{font-size:53.333333pt;}
.y0_c00365{bottom:0.000000pt;}
.y2_c00365{bottom:10.666667pt;}
.y5_c00365{bottom:60.000000pt;}
.y3_c00365{bottom:192.000000pt;}
.y1_c00365{bottom:598.666667pt;}
.y4_c00365{bottom:1061.333333pt;}
.h2_c00365{height:37.593750pt;}
.h5_c00365{height:39.296875pt;}
.h4_c00365{height:49.843750pt;}
.h1_c00365{height:390.666667pt;}
.h3_c00365{height:400.000000pt;}
.h0_c00365{height:1122.666667pt;}
.w1_c00365{width:601.333333pt;}
.w0_c00365{width:793.333333pt;}
.x0_c00365{left:0.000000pt;}
.x1_c00365{left:58.666667pt;}
.x3_c00365{left:160.563200pt;}
.x2_c00365{left:164.946000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_50db62e30f51850530015318.woff2')format("woff");}.ff1_c00366{font-family:ff1_c00366;line-height:0.963867;font-style:normal;font-weight:normal;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_50a82d32b1f2d768d0cd66e4.woff2')format("woff");}.ff2_c00366{font-family:ff2_c00366;line-height:0.934082;font-style:normal;font-weight:normal;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_8fa3e4a1d87044d222a68a45.woff2')format("woff");}.ff3_c00366{font-family:ff3_c00366;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00366{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00366{vertical-align:0.000000px;}
.ls2_c00366{letter-spacing:0.000000px;}
.ls1_c00366{letter-spacing:0.012000px;}
.ls0_c00366{letter-spacing:0.016200px;}
.sc__c00366{text-shadow:none;}
.sc0_c00366{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00366{-webkit-text-stroke:0px transparent;}
.sc0_c00366{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00366{word-spacing:0.000000px;}
._5_c00366{margin-left:-4.168800px;}
._3_c00366{margin-left:-2.253600px;}
._b_c00366{margin-left:-1.044000px;}
._0_c00366{width:2.088000px;}
._8_c00366{width:3.585600px;}
._a_c00366{width:4.586400px;}
._7_c00366{width:5.904000px;}
._9_c00366{width:7.790400px;}
._1_c00366{width:31.694400px;}
._2_c00366{width:33.825600px;}
._4_c00366{width:36.093600px;}
._6_c00366{width:37.929600px;}
.fc0_c00366{color:rgb(0,0,0);}
.fs0_c00366{font-size:54.000000px;}
.fs2_c00366{font-size:60.000000px;}
.fs1_c00366{font-size:72.000000px;}
.y0_c00366{bottom:0.000000px;}
.y2_c00366{bottom:12.000000px;}
.ya_c00366{bottom:67.500000px;}
.y8_c00366{bottom:202.500000px;}
.y7_c00366{bottom:625.500000px;}
.y6_c00366{bottom:652.500000px;}
.y5_c00366{bottom:679.500000px;}
.y4_c00366{bottom:706.500000px;}
.y3_c00366{bottom:733.500000px;}
.y1_c00366{bottom:769.500000px;}
.y9_c00366{bottom:1194.000000px;}
.h2_c00366{height:41.633789px;}
.h3_c00366{height:51.257812px;}
.h5_c00366{height:56.074219px;}
.h1_c00366{height:343.500000px;}
.h4_c00366{height:400.500000px;}
.h0_c00366{height:1263.000000px;}
.w1_c00366{width:676.500000px;}
.w0_c00366{width:892.500000px;}
.x0_c00366{left:0.000000px;}
.x2_c00366{left:57.396600px;}
.x1_c00366{left:150.000000px;}
.x3_c00366{left:196.928400px;}
.x4_c00366{left:416.782800px;}
.x5_c00366{left:801.992850px;}
@media print{
.v0_c00366{vertical-align:0.000000pt;}
.ls2_c00366{letter-spacing:0.000000pt;}
.ls1_c00366{letter-spacing:0.010667pt;}
.ls0_c00366{letter-spacing:0.014400pt;}
.ws0_c00366{word-spacing:0.000000pt;}
._5_c00366{margin-left:-3.705600pt;}
._3_c00366{margin-left:-2.003200pt;}
._b_c00366{margin-left:-0.928000pt;}
._0_c00366{width:1.856000pt;}
._8_c00366{width:3.187200pt;}
._a_c00366{width:4.076800pt;}
._7_c00366{width:5.248000pt;}
._9_c00366{width:6.924800pt;}
._1_c00366{width:28.172800pt;}
._2_c00366{width:30.067200pt;}
._4_c00366{width:32.083200pt;}
._6_c00366{width:33.715200pt;}
.fs0_c00366{font-size:48.000000pt;}
.fs2_c00366{font-size:53.333333pt;}
.fs1_c00366{font-size:64.000000pt;}
.y0_c00366{bottom:0.000000pt;}
.y2_c00366{bottom:10.666667pt;}
.ya_c00366{bottom:60.000000pt;}
.y8_c00366{bottom:180.000000pt;}
.y7_c00366{bottom:556.000000pt;}
.y6_c00366{bottom:580.000000pt;}
.y5_c00366{bottom:604.000000pt;}
.y4_c00366{bottom:628.000000pt;}
.y3_c00366{bottom:652.000000pt;}
.y1_c00366{bottom:684.000000pt;}
.y9_c00366{bottom:1061.333333pt;}
.h2_c00366{height:37.007812pt;}
.h3_c00366{height:45.562500pt;}
.h5_c00366{height:49.843750pt;}
.h1_c00366{height:305.333333pt;}
.h4_c00366{height:356.000000pt;}
.h0_c00366{height:1122.666667pt;}
.w1_c00366{width:601.333333pt;}
.w0_c00366{width:793.333333pt;}
.x0_c00366{left:0.000000pt;}
.x2_c00366{left:51.019200pt;}
.x1_c00366{left:133.333333pt;}
.x3_c00366{left:175.047467pt;}
.x4_c00366{left:370.473600pt;}
.x5_c00366{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1193b8eca89047b2560007bf.woff2')format("woff");}.ff1_c00367{font-family:ff1_c00367;line-height:0.976074;font-style:normal;font-weight:normal;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_b68ac75708d7569d606c6e25.woff2')format("woff");}.ff2_c00367{font-family:ff2_c00367;line-height:1.163086;font-style:normal;font-weight:normal;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_8cdb8ac4b79fce9dd2950f5a.woff2')format("woff");}.ff3_c00367{font-family:ff3_c00367;line-height:0.928223;font-style:normal;font-weight:normal;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_aa1f743e418f21bbea0d7543.woff2')format("woff");}.ff4_c00367{font-family:ff4_c00367;line-height:0.755859;font-style:normal;font-weight:normal;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_8de903891edc95abb32cb22a.woff2')format("woff");}.ff5_c00367{font-family:ff5_c00367;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00367{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00367{vertical-align:0.000000px;}
.ls0_c00367{letter-spacing:0.000000px;}
.ls1_c00367{letter-spacing:0.012000px;}
.sc__c00367{text-shadow:none;}
.sc0_c00367{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00367{-webkit-text-stroke:0px transparent;}
.sc0_c00367{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00367{word-spacing:0.000000px;}
._0_c00367{margin-left:-10.584000px;}
._10_c00367{margin-left:-7.236000px;}
._d_c00367{margin-left:-4.024800px;}
._c_c00367{margin-left:-2.887200px;}
._5_c00367{margin-left:-1.332000px;}
._3_c00367{width:1.195200px;}
._1_c00367{width:2.923200px;}
._9_c00367{width:4.831200px;}
._a_c00367{width:5.839200px;}
._f_c00367{width:7.279200px;}
._8_c00367{width:8.359200px;}
._b_c00367{width:9.604800px;}
._e_c00367{width:10.641600px;}
._2_c00367{width:11.692800px;}
._4_c00367{width:13.377600px;}
._7_c00367{width:14.544000px;}
._6_c00367{width:15.890400px;}
._1a_c00367{width:25.963200px;}
._13_c00367{width:27.583200px;}
._11_c00367{width:28.670400px;}
._14_c00367{width:30.038400px;}
._15_c00367{width:31.521600px;}
._12_c00367{width:32.724000px;}
._16_c00367{width:34.300800px;}
._18_c00367{width:35.366400px;}
._17_c00367{width:36.720000px;}
._19_c00367{width:38.318400px;}
.fc0_c00367{color:rgb(0,0,0);}
.fs0_c00367{font-size:54.000000px;}
.fs2_c00367{font-size:60.000000px;}
.fs1_c00367{font-size:72.000000px;}
.y0_c00367{bottom:0.000000px;}
.y2_c00367{bottom:12.000000px;}
.y13_c00367{bottom:67.500000px;}
.y11_c00367{bottom:139.500000px;}
.y10_c00367{bottom:166.500000px;}
.yf_c00367{bottom:214.500000px;}
.ye_c00367{bottom:241.500000px;}
.yd_c00367{bottom:268.500000px;}
.yc_c00367{bottom:295.500000px;}
.yb_c00367{bottom:322.500000px;}
.ya_c00367{bottom:369.000000px;}
.y9_c00367{bottom:438.000000px;}
.y8_c00367{bottom:465.000000px;}
.y7_c00367{bottom:492.000000px;}
.y6_c00367{bottom:540.000000px;}
.y5_c00367{bottom:567.000000px;}
.y4_c00367{bottom:594.000000px;}
.y3_c00367{bottom:621.000000px;}
.y1_c00367{bottom:645.000000px;}
.y12_c00367{bottom:1194.000000px;}
.h2_c00367{height:42.292969px;}
.h6_c00367{height:44.208984px;}
.h4_c00367{height:50.976562px;}
.h5_c00367{height:56.074219px;}
.h3_c00367{height:67.746094px;}
.h1_c00367{height:468.000000px;}
.h0_c00367{height:1263.000000px;}
.w1_c00367{width:676.500000px;}
.w0_c00367{width:892.500000px;}
.x0_c00367{left:0.000000px;}
.x1_c00367{left:66.000000px;}
.x2_c00367{left:174.041700px;}
@media print{
.v0_c00367{vertical-align:0.000000pt;}
.ls0_c00367{letter-spacing:0.000000pt;}
.ls1_c00367{letter-spacing:0.010667pt;}
.ws0_c00367{word-spacing:0.000000pt;}
._0_c00367{margin-left:-9.408000pt;}
._10_c00367{margin-left:-6.432000pt;}
._d_c00367{margin-left:-3.577600pt;}
._c_c00367{margin-left:-2.566400pt;}
._5_c00367{margin-left:-1.184000pt;}
._3_c00367{width:1.062400pt;}
._1_c00367{width:2.598400pt;}
._9_c00367{width:4.294400pt;}
._a_c00367{width:5.190400pt;}
._f_c00367{width:6.470400pt;}
._8_c00367{width:7.430400pt;}
._b_c00367{width:8.537600pt;}
._e_c00367{width:9.459200pt;}
._2_c00367{width:10.393600pt;}
._4_c00367{width:11.891200pt;}
._7_c00367{width:12.928000pt;}
._6_c00367{width:14.124800pt;}
._1a_c00367{width:23.078400pt;}
._13_c00367{width:24.518400pt;}
._11_c00367{width:25.484800pt;}
._14_c00367{width:26.700800pt;}
._15_c00367{width:28.019200pt;}
._12_c00367{width:29.088000pt;}
._16_c00367{width:30.489600pt;}
._18_c00367{width:31.436800pt;}
._17_c00367{width:32.640000pt;}
._19_c00367{width:34.060800pt;}
.fs0_c00367{font-size:48.000000pt;}
.fs2_c00367{font-size:53.333333pt;}
.fs1_c00367{font-size:64.000000pt;}
.y0_c00367{bottom:0.000000pt;}
.y2_c00367{bottom:10.666667pt;}
.y13_c00367{bottom:60.000000pt;}
.y11_c00367{bottom:124.000000pt;}
.y10_c00367{bottom:148.000000pt;}
.yf_c00367{bottom:190.666667pt;}
.ye_c00367{bottom:214.666667pt;}
.yd_c00367{bottom:238.666667pt;}
.yc_c00367{bottom:262.666667pt;}
.yb_c00367{bottom:286.666667pt;}
.ya_c00367{bottom:328.000000pt;}
.y9_c00367{bottom:389.333333pt;}
.y8_c00367{bottom:413.333333pt;}
.y7_c00367{bottom:437.333333pt;}
.y6_c00367{bottom:480.000000pt;}
.y5_c00367{bottom:504.000000pt;}
.y4_c00367{bottom:528.000000pt;}
.y3_c00367{bottom:552.000000pt;}
.y1_c00367{bottom:573.333333pt;}
.y12_c00367{bottom:1061.333333pt;}
.h2_c00367{height:37.593750pt;}
.h6_c00367{height:39.296875pt;}
.h4_c00367{height:45.312500pt;}
.h5_c00367{height:49.843750pt;}
.h3_c00367{height:60.218750pt;}
.h1_c00367{height:416.000000pt;}
.h0_c00367{height:1122.666667pt;}
.w1_c00367{width:601.333333pt;}
.w0_c00367{width:793.333333pt;}
.x0_c00367{left:0.000000pt;}
.x1_c00367{left:58.666667pt;}
.x2_c00367{left:154.703733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7d95f7c8df6c2435a40c6da0.woff2')format("woff");}.ff1_c00368{font-family:ff1_c00368;line-height:0.933105;font-style:normal;font-weight:normal;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_77570cef52e78506f0904524.woff2')format("woff");}.ff2_c00368{font-family:ff2_c00368;line-height:0.987793;font-style:normal;font-weight:normal;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_3b48851268fa99309d451423.woff2')format("woff");}.ff3_c00368{font-family:ff3_c00368;line-height:1.155762;font-style: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;}
.ls1_c00368{letter-spacing:0.000000px;}
.ls0_c00368{letter-spacing:0.012000px;}
.sc__c00368{text-shadow:none;}
.sc0_c00368{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00368{-webkit-text-stroke:0px transparent;}
.sc0_c00368{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00368{word-spacing:0.000000px;}
._e_c00368{margin-left:-4.752000px;}
._12_c00368{margin-left:-3.583200px;}
._1_c00368{margin-left:-2.433600px;}
._3_c00368{margin-left:-1.051200px;}
._6_c00368{width:1.015200px;}
._7_c00368{width:2.289600px;}
._5_c00368{width:3.744000px;}
._0_c00368{width:4.766400px;}
._4_c00368{width:5.803200px;}
._2_c00368{width:7.192800px;}
._8_c00368{width:21.916800px;}
._9_c00368{width:24.213600px;}
._a_c00368{width:26.690400px;}
._d_c00368{width:32.644800px;}
._11_c00368{width:33.926400px;}
._c_c00368{width:34.934400px;}
._10_c00368{width:35.985600px;}
._b_c00368{width:37.332000px;}
._f_c00368{width:39.700800px;}
.fc0_c00368{color:rgb(0,0,0);}
.fs1_c00368{font-size:54.000000px;}
.fs2_c00368{font-size:60.000000px;}
.fs0_c00368{font-size:72.000000px;}
.y0_c00368{bottom:0.000000px;}
.y4_c00368{bottom:12.000000px;}
.ya_c00368{bottom:67.500000px;}
.y8_c00368{bottom:157.500000px;}
.y7_c00368{bottom:184.500000px;}
.y6_c00368{bottom:211.500000px;}
.y5_c00368{bottom:256.500000px;}
.y3_c00368{bottom:607.500000px;}
.y2_c00368{bottom:1068.000000px;}
.y1_c00368{bottom:1095.000000px;}
.y9_c00368{bottom:1194.000000px;}
.h3_c00368{height:42.292969px;}
.h1_c00368{height:51.187500px;}
.h5_c00368{height:56.074219px;}
.h4_c00368{height:322.500000px;}
.h2_c00368{height:429.000000px;}
.h0_c00368{height:1263.000000px;}
.w1_c00368{width:676.500000px;}
.w0_c00368{width:892.500000px;}
.x0_c00368{left:0.000000px;}
.x3_c00368{left:78.961650px;}
.x1_c00368{left:150.519750px;}
.x2_c00368{left:173.949450px;}
.x4_c00368{left:416.782800px;}
.x5_c00368{left:801.992850px;}
@media print{
.v0_c00368{vertical-align:0.000000pt;}
.ls1_c00368{letter-spacing:0.000000pt;}
.ls0_c00368{letter-spacing:0.010667pt;}
.ws0_c00368{word-spacing:0.000000pt;}
._e_c00368{margin-left:-4.224000pt;}
._12_c00368{margin-left:-3.185067pt;}
._1_c00368{margin-left:-2.163200pt;}
._3_c00368{margin-left:-0.934400pt;}
._6_c00368{width:0.902400pt;}
._7_c00368{width:2.035200pt;}
._5_c00368{width:3.328000pt;}
._0_c00368{width:4.236800pt;}
._4_c00368{width:5.158400pt;}
._2_c00368{width:6.393600pt;}
._8_c00368{width:19.481600pt;}
._9_c00368{width:21.523200pt;}
._a_c00368{width:23.724800pt;}
._d_c00368{width:29.017600pt;}
._11_c00368{width:30.156800pt;}
._c_c00368{width:31.052800pt;}
._10_c00368{width:31.987200pt;}
._b_c00368{width:33.184000pt;}
._f_c00368{width:35.289600pt;}
.fs1_c00368{font-size:48.000000pt;}
.fs2_c00368{font-size:53.333333pt;}
.fs0_c00368{font-size:64.000000pt;}
.y0_c00368{bottom:0.000000pt;}
.y4_c00368{bottom:10.666667pt;}
.ya_c00368{bottom:60.000000pt;}
.y8_c00368{bottom:140.000000pt;}
.y7_c00368{bottom:164.000000pt;}
.y6_c00368{bottom:188.000000pt;}
.y5_c00368{bottom:228.000000pt;}
.y3_c00368{bottom:540.000000pt;}
.y2_c00368{bottom:949.333333pt;}
.y1_c00368{bottom:973.333333pt;}
.y9_c00368{bottom:1061.333333pt;}
.h3_c00368{height:37.593750pt;}
.h1_c00368{height:45.500000pt;}
.h5_c00368{height:49.843750pt;}
.h4_c00368{height:286.666667pt;}
.h2_c00368{height:381.333333pt;}
.h0_c00368{height:1122.666667pt;}
.w1_c00368{width:601.333333pt;}
.w0_c00368{width:793.333333pt;}
.x0_c00368{left:0.000000pt;}
.x3_c00368{left:70.188133pt;}
.x1_c00368{left:133.795333pt;}
.x2_c00368{left:154.621733pt;}
.x4_c00368{left:370.473600pt;}
.x5_c00368{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6bad27c64a0d23382d675d11.woff2')format("woff");}.ff1_c00369{font-family:ff1_c00369;line-height:0.884766;font-style:normal;font-weight:normal;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_de1aea928e15b0d67f017fb7.woff2')format("woff");}.ff2_c00369{font-family:ff2_c00369;line-height:0.933105;font-style:normal;font-weight:normal;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_6b3b6b3d48e9f73448e237cc.woff2')format("woff");}.ff3_c00369{font-family:ff3_c00369;line-height:0.987793;font-style:normal;font-weight:normal;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_7d4bca6fd771b3e9bf5af87b.woff2')format("woff");}.ff4_c00369{font-family:ff4_c00369;line-height:0.755859;font-style:normal;font-weight:normal;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_23beed0d59f9be586e170b16.woff2')format("woff");}.ff5_c00369{font-family:ff5_c00369;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00369{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00369{vertical-align:0.000000px;}
.ls0_c00369{letter-spacing:0.000000px;}
.ls1_c00369{letter-spacing:0.012000px;}
.sc__c00369{text-shadow:none;}
.sc0_c00369{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00369{-webkit-text-stroke:0px transparent;}
.sc0_c00369{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00369{word-spacing:-19.800000px;}
.ws1_c00369{word-spacing:0.000000px;}
._10_c00369{margin-left:-7.768800px;}
._5_c00369{margin-left:-3.643200px;}
._11_c00369{margin-left:-2.606400px;}
._2_c00369{margin-left:-1.605600px;}
._7_c00369{width:1.296000px;}
._1_c00369{width:2.808000px;}
._0_c00369{width:4.651200px;}
._8_c00369{width:6.192000px;}
._4_c00369{width:7.430400px;}
._3_c00369{width:9.072000px;}
._9_c00369{width:10.404000px;}
._6_c00369{width:11.448000px;}
._d_c00369{width:12.852000px;}
._b_c00369{width:14.011200px;}
._c_c00369{width:15.314400px;}
._a_c00369{width:16.848000px;}
._e_c00369{width:18.043200px;}
._f_c00369{width:21.391200px;}
.fc0_c00369{color:rgb(0,0,0);}
.fs1_c00369{font-size:54.000000px;}
.fs2_c00369{font-size:60.000000px;}
.fs0_c00369{font-size:72.000000px;}
.y0_c00369{bottom:0.000000px;}
.yd_c00369{bottom:10.500000px;}
.yc_c00369{bottom:28.500000px;}
.yf_c00369{bottom:67.500000px;}
.yb_c00369{bottom:258.000000px;}
.ya_c00369{bottom:807.000000px;}
.y9_c00369{bottom:834.000000px;}
.y8_c00369{bottom:882.000000px;}
.y7_c00369{bottom:909.000000px;}
.y6_c00369{bottom:936.000000px;}
.y5_c00369{bottom:963.000000px;}
.y4_c00369{bottom:990.000000px;}
.y3_c00369{bottom:1017.000000px;}
.y2_c00369{bottom:1044.000000px;}
.y1_c00369{bottom:1095.000000px;}
.ye_c00369{bottom:1194.000000px;}
.h4_c00369{height:42.292969px;}
.h6_c00369{height:44.208984px;}
.h1_c00369{height:50.976562px;}
.h2_c00369{height:51.187500px;}
.h5_c00369{height:56.074219px;}
.h3_c00369{height:517.500000px;}
.h0_c00369{height:1263.000000px;}
.w1_c00369{width:676.500000px;}
.w0_c00369{width:892.500000px;}
.x0_c00369{left:0.000000px;}
.x2_c00369{left:16.329705px;}
.x1_c00369{left:65.480310px;}
.x3_c00369{left:283.396350px;}
@media print{
.v0_c00369{vertical-align:0.000000pt;}
.ls0_c00369{letter-spacing:0.000000pt;}
.ls1_c00369{letter-spacing:0.010667pt;}
.ws0_c00369{word-spacing:-17.600000pt;}
.ws1_c00369{word-spacing:0.000000pt;}
._10_c00369{margin-left:-6.905600pt;}
._5_c00369{margin-left:-3.238400pt;}
._11_c00369{margin-left:-2.316800pt;}
._2_c00369{margin-left:-1.427200pt;}
._7_c00369{width:1.152000pt;}
._1_c00369{width:2.496000pt;}
._0_c00369{width:4.134400pt;}
._8_c00369{width:5.504000pt;}
._4_c00369{width:6.604800pt;}
._3_c00369{width:8.064000pt;}
._9_c00369{width:9.248000pt;}
._6_c00369{width:10.176000pt;}
._d_c00369{width:11.424000pt;}
._b_c00369{width:12.454400pt;}
._c_c00369{width:13.612800pt;}
._a_c00369{width:14.976000pt;}
._e_c00369{width:16.038400pt;}
._f_c00369{width:19.014400pt;}
.fs1_c00369{font-size:48.000000pt;}
.fs2_c00369{font-size:53.333333pt;}
.fs0_c00369{font-size:64.000000pt;}
.y0_c00369{bottom:0.000000pt;}
.yd_c00369{bottom:9.333333pt;}
.yc_c00369{bottom:25.333333pt;}
.yf_c00369{bottom:60.000000pt;}
.yb_c00369{bottom:229.333333pt;}
.ya_c00369{bottom:717.333333pt;}
.y9_c00369{bottom:741.333333pt;}
.y8_c00369{bottom:784.000000pt;}
.y7_c00369{bottom:808.000000pt;}
.y6_c00369{bottom:832.000000pt;}
.y5_c00369{bottom:856.000000pt;}
.y4_c00369{bottom:880.000000pt;}
.y3_c00369{bottom:904.000000pt;}
.y2_c00369{bottom:928.000000pt;}
.y1_c00369{bottom:973.333333pt;}
.ye_c00369{bottom:1061.333333pt;}
.h4_c00369{height:37.593750pt;}
.h6_c00369{height:39.296875pt;}
.h1_c00369{height:45.312500pt;}
.h2_c00369{height:45.500000pt;}
.h5_c00369{height:49.843750pt;}
.h3_c00369{height:460.000000pt;}
.h0_c00369{height:1122.666667pt;}
.w1_c00369{width:601.333333pt;}
.w0_c00369{width:793.333333pt;}
.x0_c00369{left:0.000000pt;}
.x2_c00369{left:14.515293pt;}
.x1_c00369{left:58.204720pt;}
.x3_c00369{left:251.907867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bf1bc1101ee7dfaf32c2a4b5.woff2')format("woff");}.ff1_c00370{font-family:ff1_c00370;line-height:0.987793;font-style:normal;font-weight:normal;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_e566a00ec2b5696d10669e76.woff2')format("woff");}.ff2_c00370{font-family:ff2_c00370;line-height:0.933105;font-style:normal;font-weight:normal;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_95b1ba1ec2311703972e543c.woff2')format("woff");}.ff3_c00370{font-family:ff3_c00370;line-height:1.155762;font-style: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;}
.ls2_c00370{letter-spacing:-0.021600px;}
.ls1_c00370{letter-spacing:0.000000px;}
.ls0_c00370{letter-spacing:0.012000px;}
.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:-17.042400px;}
.ws1_c00370{word-spacing:0.000000px;}
._7_c00370{margin-left:-3.787200px;}
._3_c00370{margin-left:-1.987200px;}
._2_c00370{width:1.188000px;}
._0_c00370{width:2.646000px;}
._5_c00370{width:4.212000px;}
._6_c00370{width:16.084800px;}
._1_c00370{width:17.233200px;}
._4_c00370{width:21.038400px;}
._8_c00370{width:23.544000px;}
._b_c00370{width:24.814800px;}
._a_c00370{width:26.683200px;}
._9_c00370{width:28.656000px;}
.fc0_c00370{color:rgb(0,0,0);}
.fs0_c00370{font-size:54.000000px;}
.fs2_c00370{font-size:60.000000px;}
.fs1_c00370{font-size:72.000000px;}
.y0_c00370{bottom:0.000000px;}
.y3_c00370{bottom:10.500000px;}
.y2_c00370{bottom:28.500000px;}
.y9_c00370{bottom:67.500000px;}
.y7_c00370{bottom:169.500000px;}
.y6_c00370{bottom:573.000000px;}
.y5_c00370{bottom:600.000000px;}
.y4_c00370{bottom:627.000000px;}
.y1_c00370{bottom:717.000000px;}
.y8_c00370{bottom:1194.000000px;}
.h2_c00370{height:42.292969px;}
.h3_c00370{height:51.187500px;}
.h5_c00370{height:56.074219px;}
.h4_c00370{height:370.500000px;}
.h1_c00370{height:396.000000px;}
.h0_c00370{height:1263.000000px;}
.w1_c00370{width:676.500000px;}
.w0_c00370{width:892.500000px;}
.x0_c00370{left:0.000000px;}
.x2_c00370{left:8.250000px;}
.x4_c00370{left:11.524269px;}
.x1_c00370{left:150.000000px;}
.x3_c00370{left:251.811750px;}
.x5_c00370{left:318.715200px;}
.x6_c00370{left:416.782800px;}
.x7_c00370{left:801.992850px;}
@media print{
.v0_c00370{vertical-align:0.000000pt;}
.ls2_c00370{letter-spacing:-0.019200pt;}
.ls1_c00370{letter-spacing:0.000000pt;}
.ls0_c00370{letter-spacing:0.010667pt;}
.ws0_c00370{word-spacing:-15.148800pt;}
.ws1_c00370{word-spacing:0.000000pt;}
._7_c00370{margin-left:-3.366400pt;}
._3_c00370{margin-left:-1.766400pt;}
._2_c00370{width:1.056000pt;}
._0_c00370{width:2.352000pt;}
._5_c00370{width:3.744000pt;}
._6_c00370{width:14.297600pt;}
._1_c00370{width:15.318400pt;}
._4_c00370{width:18.700800pt;}
._8_c00370{width:20.928000pt;}
._b_c00370{width:22.057600pt;}
._a_c00370{width:23.718400pt;}
._9_c00370{width:25.472000pt;}
.fs0_c00370{font-size:48.000000pt;}
.fs2_c00370{font-size:53.333333pt;}
.fs1_c00370{font-size:64.000000pt;}
.y0_c00370{bottom:0.000000pt;}
.y3_c00370{bottom:9.333333pt;}
.y2_c00370{bottom:25.333333pt;}
.y9_c00370{bottom:60.000000pt;}
.y7_c00370{bottom:150.666667pt;}
.y6_c00370{bottom:509.333333pt;}
.y5_c00370{bottom:533.333333pt;}
.y4_c00370{bottom:557.333333pt;}
.y1_c00370{bottom:637.333333pt;}
.y8_c00370{bottom:1061.333333pt;}
.h2_c00370{height:37.593750pt;}
.h3_c00370{height:45.500000pt;}
.h5_c00370{height:49.843750pt;}
.h4_c00370{height:329.333333pt;}
.h1_c00370{height:352.000000pt;}
.h0_c00370{height:1122.666667pt;}
.w1_c00370{width:601.333333pt;}
.w0_c00370{width:793.333333pt;}
.x0_c00370{left:0.000000pt;}
.x2_c00370{left:7.333333pt;}
.x4_c00370{left:10.243795pt;}
.x1_c00370{left:133.333333pt;}
.x3_c00370{left:223.832667pt;}
.x5_c00370{left:283.302400pt;}
.x6_c00370{left:370.473600pt;}
.x7_c00370{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d09842c83289f5065b24073e.woff2')format("woff");}.ff1_c00371{font-family:ff1_c00371;line-height:0.932129;font-style:normal;font-weight:normal;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_505e382f02fb3eb1d8c82a5d.woff2')format("woff");}.ff2_c00371{font-family:ff2_c00371;line-height:0.932129;font-style:normal;font-weight:normal;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_506b57f7a293675f01ae4ce6.woff2')format("woff");}.ff3_c00371{font-family:ff3_c00371;line-height:1.010254;font-style:normal;font-weight:normal;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_eca8b315d42fa4784e2dc7b7.woff2')format("woff");}.ff4_c00371{font-family:ff4_c00371;line-height:0.986816;font-style:normal;font-weight:normal;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_194b19453fe927384be14f24.woff2')format("woff");}.ff5_c00371{font-family:ff5_c00371;line-height:0.756836;font-style:normal;font-weight: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_c00371;src:url('chunks/assets/font_582ec9a8a7bc939452efedb8.woff2')format("woff");}.ff6_c00371{font-family:ff6_c00371;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00371{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00371{vertical-align:0.000000px;}
.ls2_c00371{letter-spacing:-0.014400px;}
.ls3_c00371{letter-spacing:-0.012000px;}
.ls1_c00371{letter-spacing:0.000000px;}
.ls0_c00371{letter-spacing:0.012000px;}
.sc__c00371{text-shadow:none;}
.sc0_c00371{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00371{-webkit-text-stroke:0px transparent;}
.sc0_c00371{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00371{word-spacing:-18.000000px;}
.ws1_c00371{word-spacing:-0.072000px;}
.ws2_c00371{word-spacing:0.000000px;}
._4_c00371{margin-left:-9.295200px;}
._9_c00371{margin-left:-6.587040px;}
._d_c00371{margin-left:-4.909440px;}
._6_c00371{margin-left:-3.802560px;}
._2_c00371{margin-left:-2.217600px;}
._c_c00371{margin-left:-1.209600px;}
._b_c00371{width:1.036800px;}
._0_c00371{width:2.088000px;}
._3_c00371{width:3.132000px;}
._1_c00371{width:4.291200px;}
._17_c00371{width:5.434080px;}
._5_c00371{width:6.466560px;}
._8_c00371{width:8.451840px;}
._7_c00371{width:10.065600px;}
._a_c00371{width:11.879040px;}
._e_c00371{width:13.528800px;}
._f_c00371{width:14.837760px;}
._1c_c00371{width:15.926400px;}
._1a_c00371{width:16.977600px;}
._19_c00371{width:20.008800px;}
._1b_c00371{width:21.721440px;}
._1d_c00371{width:25.106400px;}
._1e_c00371{width:26.180160px;}
._16_c00371{width:27.410400px;}
._15_c00371{width:28.584000px;}
._12_c00371{width:29.779200px;}
._11_c00371{width:31.708800px;}
._14_c00371{width:32.990400px;}
._10_c00371{width:35.711040px;}
._13_c00371{width:37.367040px;}
._18_c00371{width:41.033760px;}
.fc0_c00371{color:rgb(0,0,0);}
.fs1_c00371{font-size:60.000000px;}
.fs0_c00371{font-size:72.000000px;}
.y0_c00371{bottom:0.000000px;}
.y1f_c00371{bottom:67.500000px;}
.y1d_c00371{bottom:307.500000px;}
.y1c_c00371{bottom:333.000000px;}
.y1b_c00371{bottom:358.500000px;}
.y1a_c00371{bottom:382.500000px;}
.y19_c00371{bottom:408.000000px;}
.y18_c00371{bottom:433.500000px;}
.y17_c00371{bottom:459.000000px;}
.y16_c00371{bottom:484.500000px;}
.y15_c00371{bottom:508.500000px;}
.y14_c00371{bottom:534.000000px;}
.y13_c00371{bottom:559.500000px;}
.y12_c00371{bottom:585.000000px;}
.y11_c00371{bottom:610.500000px;}
.y10_c00371{bottom:634.500000px;}
.yf_c00371{bottom:660.000000px;}
.ye_c00371{bottom:685.500000px;}
.yd_c00371{bottom:711.000000px;}
.yc_c00371{bottom:736.500000px;}
.yb_c00371{bottom:760.500000px;}
.ya_c00371{bottom:786.000000px;}
.y9_c00371{bottom:811.500000px;}
.y8_c00371{bottom:837.000000px;}
.y7_c00371{bottom:862.500000px;}
.y6_c00371{bottom:906.000000px;}
.y5_c00371{bottom:927.000000px;}
.y4_c00371{bottom:972.000000px;}
.y3_c00371{bottom:999.000000px;}
.y2_c00371{bottom:1047.000000px;}
.y1_c00371{bottom:1095.000000px;}
.y1e_c00371{bottom:1194.000000px;}
.h2_c00371{height:42.714844px;}
.h5_c00371{height:44.208984px;}
.h1_c00371{height:51.257812px;}
.h3_c00371{height:52.417969px;}
.h4_c00371{height:56.074219px;}
.h0_c00371{height:1263.000000px;}
.w0_c00371{width:892.500000px;}
.x0_c00371{left:0.000000px;}
.x1_c00371{left:65.480310px;}
@media print{
.v0_c00371{vertical-align:0.000000pt;}
.ls2_c00371{letter-spacing:-0.012800pt;}
.ls3_c00371{letter-spacing:-0.010667pt;}
.ls1_c00371{letter-spacing:0.000000pt;}
.ls0_c00371{letter-spacing:0.010667pt;}
.ws0_c00371{word-spacing:-16.000000pt;}
.ws1_c00371{word-spacing:-0.064000pt;}
.ws2_c00371{word-spacing:0.000000pt;}
._4_c00371{margin-left:-8.262400pt;}
._9_c00371{margin-left:-5.855147pt;}
._d_c00371{margin-left:-4.363947pt;}
._6_c00371{margin-left:-3.380053pt;}
._2_c00371{margin-left:-1.971200pt;}
._c_c00371{margin-left:-1.075200pt;}
._b_c00371{width:0.921600pt;}
._0_c00371{width:1.856000pt;}
._3_c00371{width:2.784000pt;}
._1_c00371{width:3.814400pt;}
._17_c00371{width:4.830293pt;}
._5_c00371{width:5.748053pt;}
._8_c00371{width:7.512747pt;}
._7_c00371{width:8.947200pt;}
._a_c00371{width:10.559147pt;}
._e_c00371{width:12.025600pt;}
._f_c00371{width:13.189120pt;}
._1c_c00371{width:14.156800pt;}
._1a_c00371{width:15.091200pt;}
._19_c00371{width:17.785600pt;}
._1b_c00371{width:19.307947pt;}
._1d_c00371{width:22.316800pt;}
._1e_c00371{width:23.271253pt;}
._16_c00371{width:24.364800pt;}
._15_c00371{width:25.408000pt;}
._12_c00371{width:26.470400pt;}
._11_c00371{width:28.185600pt;}
._14_c00371{width:29.324800pt;}
._10_c00371{width:31.743147pt;}
._13_c00371{width:33.215147pt;}
._18_c00371{width:36.474453pt;}
.fs1_c00371{font-size:53.333333pt;}
.fs0_c00371{font-size:64.000000pt;}
.y0_c00371{bottom:0.000000pt;}
.y1f_c00371{bottom:60.000000pt;}
.y1d_c00371{bottom:273.333333pt;}
.y1c_c00371{bottom:296.000000pt;}
.y1b_c00371{bottom:318.666667pt;}
.y1a_c00371{bottom:340.000000pt;}
.y19_c00371{bottom:362.666667pt;}
.y18_c00371{bottom:385.333333pt;}
.y17_c00371{bottom:408.000000pt;}
.y16_c00371{bottom:430.666667pt;}
.y15_c00371{bottom:452.000000pt;}
.y14_c00371{bottom:474.666667pt;}
.y13_c00371{bottom:497.333333pt;}
.y12_c00371{bottom:520.000000pt;}
.y11_c00371{bottom:542.666667pt;}
.y10_c00371{bottom:564.000000pt;}
.yf_c00371{bottom:586.666667pt;}
.ye_c00371{bottom:609.333333pt;}
.yd_c00371{bottom:632.000000pt;}
.yc_c00371{bottom:654.666667pt;}
.yb_c00371{bottom:676.000000pt;}
.ya_c00371{bottom:698.666667pt;}
.y9_c00371{bottom:721.333333pt;}
.y8_c00371{bottom:744.000000pt;}
.y7_c00371{bottom:766.666667pt;}
.y6_c00371{bottom:805.333333pt;}
.y5_c00371{bottom:824.000000pt;}
.y4_c00371{bottom:864.000000pt;}
.y3_c00371{bottom:888.000000pt;}
.y2_c00371{bottom:930.666667pt;}
.y1_c00371{bottom:973.333333pt;}
.y1e_c00371{bottom:1061.333333pt;}
.h2_c00371{height:37.968750pt;}
.h5_c00371{height:39.296875pt;}
.h1_c00371{height:45.562500pt;}
.h3_c00371{height:46.593750pt;}
.h4_c00371{height:49.843750pt;}
.h0_c00371{height:1122.666667pt;}
.w0_c00371{width:793.333333pt;}
.x0_c00371{left:0.000000pt;}
.x1_c00371{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_89fe1ff42750029b4fd13a07.woff2')format("woff");}.ff1_c00372{font-family:ff1_c00372;line-height:0.932129;font-style:normal;font-weight:normal;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_1fd870ff0c949d276a8ccd38.woff2')format("woff");}.ff2_c00372{font-family:ff2_c00372;line-height:0.932129;font-style:normal;font-weight:normal;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_c136fa0e0d1b6bd162c79345.woff2')format("woff");}.ff3_c00372{font-family:ff3_c00372;line-height:0.932129;font-style:normal;font-weight:normal;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_a4827a2588a3eb5b496c65ca.woff2')format("woff");}.ff4_c00372{font-family:ff4_c00372;line-height:1.010254;font-style:normal;font-weight:normal;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_1dbd5e22ab13f08ddc59b8f5.woff2')format("woff");}.ff5_c00372{font-family:ff5_c00372;line-height:0.986816;font-style:normal;font-weight: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_c00372;src:url('chunks/assets/font_87506380433c76e1147ab387.woff2')format("woff");}.ff6_c00372{font-family:ff6_c00372;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00372{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00372{vertical-align:0.000000px;}
.ls2_c00372{letter-spacing:-0.012000px;}
.ls1_c00372{letter-spacing:0.000000px;}
.ls0_c00372{letter-spacing:0.012000px;}
.sc__c00372{text-shadow:none;}
.sc0_c00372{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00372{-webkit-text-stroke:0px transparent;}
.sc0_c00372{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00372{word-spacing:-18.000000px;}
.ws1_c00372{word-spacing:-0.072000px;}
.ws2_c00372{word-spacing:0.000000px;}
._9_c00372{margin-left:-6.624000px;}
._12_c00372{margin-left:-5.551200px;}
._1_c00372{margin-left:-4.507200px;}
._6_c00372{margin-left:-2.808000px;}
._3_c00372{margin-left:-1.288800px;}
._8_c00372{width:1.029600px;}
._5_c00372{width:2.692800px;}
._0_c00372{width:3.758400px;}
._4_c00372{width:5.040000px;}
._7_c00372{width:6.688800px;}
._2_c00372{width:8.222400px;}
._1d_c00372{width:9.316800px;}
._a_c00372{width:10.562400px;}
._18_c00372{width:11.743200px;}
._19_c00372{width:12.787200px;}
._10_c00372{width:13.960800px;}
._11_c00372{width:15.559200px;}
._1b_c00372{width:16.927200px;}
._c_c00372{width:19.440000px;}
._1a_c00372{width:20.563200px;}
._f_c00372{width:22.413600px;}
._1c_c00372{width:23.433600px;}
._b_c00372{width:24.436800px;}
._e_c00372{width:26.337600px;}
._d_c00372{width:28.533600px;}
._1e_c00372{width:30.506400px;}
._13_c00372{width:31.953600px;}
._16_c00372{width:33.069600px;}
._15_c00372{width:34.675200px;}
._14_c00372{width:35.719200px;}
._17_c00372{width:36.921600px;}
.fc0_c00372{color:rgb(0,0,0);}
.fs1_c00372{font-size:60.000000px;}
.fs0_c00372{font-size:72.000000px;}
.y0_c00372{bottom:0.000000px;}
.y20_c00372{bottom:70.500000px;}
.y1e_c00372{bottom:268.500000px;}
.y1d_c00372{bottom:294.000000px;}
.y1c_c00372{bottom:319.500000px;}
.y1b_c00372{bottom:345.000000px;}
.y1a_c00372{bottom:370.500000px;}
.y19_c00372{bottom:394.500000px;}
.y18_c00372{bottom:420.000000px;}
.y17_c00372{bottom:445.500000px;}
.y16_c00372{bottom:471.000000px;}
.y15_c00372{bottom:496.500000px;}
.y14_c00372{bottom:520.500000px;}
.y13_c00372{bottom:546.000000px;}
.y12_c00372{bottom:571.500000px;}
.y11_c00372{bottom:597.000000px;}
.y10_c00372{bottom:622.500000px;}
.yf_c00372{bottom:646.500000px;}
.ye_c00372{bottom:672.000000px;}
.yd_c00372{bottom:697.500000px;}
.yc_c00372{bottom:723.000000px;}
.yb_c00372{bottom:748.500000px;}
.ya_c00372{bottom:772.500000px;}
.y9_c00372{bottom:798.000000px;}
.y8_c00372{bottom:823.500000px;}
.y7_c00372{bottom:849.000000px;}
.y6_c00372{bottom:894.000000px;}
.y5_c00372{bottom:915.000000px;}
.y4_c00372{bottom:960.000000px;}
.y3_c00372{bottom:987.000000px;}
.y2_c00372{bottom:1041.000000px;}
.y1_c00372{bottom:1095.000000px;}
.y1f_c00372{bottom:1194.000000px;}
.h2_c00372{height:42.714844px;}
.h1_c00372{height:51.257812px;}
.h3_c00372{height:52.417969px;}
.h4_c00372{height:56.074219px;}
.h0_c00372{height:1263.000000px;}
.w0_c00372{width:892.500000px;}
.x0_c00372{left:0.000000px;}
.x1_c00372{left:150.519750px;}
.x2_c00372{left:416.782800px;}
.x3_c00372{left:801.992850px;}
@media print{
.v0_c00372{vertical-align:0.000000pt;}
.ls2_c00372{letter-spacing:-0.010667pt;}
.ls1_c00372{letter-spacing:0.000000pt;}
.ls0_c00372{letter-spacing:0.010667pt;}
.ws0_c00372{word-spacing:-16.000000pt;}
.ws1_c00372{word-spacing:-0.064000pt;}
.ws2_c00372{word-spacing:0.000000pt;}
._9_c00372{margin-left:-5.888000pt;}
._12_c00372{margin-left:-4.934400pt;}
._1_c00372{margin-left:-4.006400pt;}
._6_c00372{margin-left:-2.496000pt;}
._3_c00372{margin-left:-1.145600pt;}
._8_c00372{width:0.915200pt;}
._5_c00372{width:2.393600pt;}
._0_c00372{width:3.340800pt;}
._4_c00372{width:4.480000pt;}
._7_c00372{width:5.945600pt;}
._2_c00372{width:7.308800pt;}
._1d_c00372{width:8.281600pt;}
._a_c00372{width:9.388800pt;}
._18_c00372{width:10.438400pt;}
._19_c00372{width:11.366400pt;}
._10_c00372{width:12.409600pt;}
._11_c00372{width:13.830400pt;}
._1b_c00372{width:15.046400pt;}
._c_c00372{width:17.280000pt;}
._1a_c00372{width:18.278400pt;}
._f_c00372{width:19.923200pt;}
._1c_c00372{width:20.829867pt;}
._b_c00372{width:21.721600pt;}
._e_c00372{width:23.411200pt;}
._d_c00372{width:25.363200pt;}
._1e_c00372{width:27.116800pt;}
._13_c00372{width:28.403200pt;}
._16_c00372{width:29.395200pt;}
._15_c00372{width:30.822400pt;}
._14_c00372{width:31.750400pt;}
._17_c00372{width:32.819200pt;}
.fs1_c00372{font-size:53.333333pt;}
.fs0_c00372{font-size:64.000000pt;}
.y0_c00372{bottom:0.000000pt;}
.y20_c00372{bottom:62.666667pt;}
.y1e_c00372{bottom:238.666667pt;}
.y1d_c00372{bottom:261.333333pt;}
.y1c_c00372{bottom:284.000000pt;}
.y1b_c00372{bottom:306.666667pt;}
.y1a_c00372{bottom:329.333333pt;}
.y19_c00372{bottom:350.666667pt;}
.y18_c00372{bottom:373.333333pt;}
.y17_c00372{bottom:396.000000pt;}
.y16_c00372{bottom:418.666667pt;}
.y15_c00372{bottom:441.333333pt;}
.y14_c00372{bottom:462.666667pt;}
.y13_c00372{bottom:485.333333pt;}
.y12_c00372{bottom:508.000000pt;}
.y11_c00372{bottom:530.666667pt;}
.y10_c00372{bottom:553.333333pt;}
.yf_c00372{bottom:574.666667pt;}
.ye_c00372{bottom:597.333333pt;}
.yd_c00372{bottom:620.000000pt;}
.yc_c00372{bottom:642.666667pt;}
.yb_c00372{bottom:665.333333pt;}
.ya_c00372{bottom:686.666667pt;}
.y9_c00372{bottom:709.333333pt;}
.y8_c00372{bottom:732.000000pt;}
.y7_c00372{bottom:754.666667pt;}
.y6_c00372{bottom:794.666667pt;}
.y5_c00372{bottom:813.333333pt;}
.y4_c00372{bottom:853.333333pt;}
.y3_c00372{bottom:877.333333pt;}
.y2_c00372{bottom:925.333333pt;}
.y1_c00372{bottom:973.333333pt;}
.y1f_c00372{bottom:1061.333333pt;}
.h2_c00372{height:37.968750pt;}
.h1_c00372{height:45.562500pt;}
.h3_c00372{height:46.593750pt;}
.h4_c00372{height:49.843750pt;}
.h0_c00372{height:1122.666667pt;}
.w0_c00372{width:793.333333pt;}
.x0_c00372{left:0.000000pt;}
.x1_c00372{left:133.795333pt;}
.x2_c00372{left:370.473600pt;}
.x3_c00372{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_db070d01eca021765904ca0a.woff2')format("woff");}.ff1_c00373{font-family:ff1_c00373;line-height:0.884766;font-style:normal;font-weight:normal;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_92fc55983654aeb0f13a2df3.woff2')format("woff");}.ff2_c00373{font-family:ff2_c00373;line-height:1.163086;font-style:normal;font-weight:normal;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_62e2e86c3d5b5c6e7f6e1295.woff2')format("woff");}.ff3_c00373{font-family:ff3_c00373;line-height:1.103027;font-style:normal;font-weight:normal;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_ffabbc01bdc9195cbcf8575f.woff2')format("woff");}.ff4_c00373{font-family:ff4_c00373;line-height:0.755859;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00373;src:url('chunks/assets/font_510b115dba11c08d331ae48f.woff2')format("woff");}.ff5_c00373{font-family:ff5_c00373;line-height:1.155762;font-style:normal;font-weight: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_c00373;src:url('chunks/assets/font_68274749412436f3affdea23.woff2')format("woff");}.ff6_c00373{font-family:ff6_c00373;line-height:1.059082;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00373;src:url('chunks/assets/font_abeedce4843195bcca3b9a6a.woff2')format("woff");}.ff7_c00373{font-family:ff7_c00373;line-height:0.892090;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00373{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00373{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3_c00373{vertical-align:-33.000000px;}
.v2_c00373{vertical-align:-23.086200px;}
.v0_c00373{vertical-align:0.000000px;}
.v1_c00373{vertical-align:23.086200px;}
.ls4_c00373{letter-spacing:-0.007200px;}
.ls3_c00373{letter-spacing:0.000000px;}
.ls2_c00373{letter-spacing:0.007800px;}
.ls5_c00373{letter-spacing:0.012000px;}
.ls1_c00373{letter-spacing:3.999999px;}
.ls0_c00373{letter-spacing:21.552000px;}
.sc__c00373{text-shadow:none;}
.sc0_c00373{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00373{-webkit-text-stroke:0px transparent;}
.sc0_c00373{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00373{word-spacing:-22.549800px;}
.ws1_c00373{word-spacing:-13.200000px;}
.ws2_c00373{word-spacing:-10.000001px;}
.ws3_c00373{word-spacing:0.000000px;}
._14_c00373{margin-left:-10.425600px;}
._12_c00373{margin-left:-9.280800px;}
._10_c00373{margin-left:-7.617600px;}
._15_c00373{margin-left:-4.996800px;}
._5_c00373{margin-left:-3.938400px;}
._7_c00373{margin-left:-2.224800px;}
._3_c00373{margin-left:-1.108800px;}
._d_c00373{width:1.195200px;}
._1_c00373{width:2.692800px;}
._c_c00373{width:4.586400px;}
._b_c00373{width:5.810400px;}
._a_c00373{width:7.488000px;}
._2_c00373{width:8.539200px;}
._9_c00373{width:9.705600px;}
._0_c00373{width:11.138400px;}
._4_c00373{width:12.297600px;}
._8_c00373{width:13.406400px;}
._6_c00373{width:15.134400px;}
._e_c00373{width:17.222400px;}
._13_c00373{width:18.554400px;}
._f_c00373{width:20.959200px;}
._11_c00373{width:25.308000px;}
.fc1_c00373{color:rgb(255,255,255);}
.fc0_c00373{color:rgb(0,0,0);}
.fs5_c00373{font-size:40.000002px;}
.fs2_c00373{font-size:48.000000px;}
.fs4_c00373{font-size:60.000000px;}
.fs1_c00373{font-size:72.000000px;}
.fs0_c00373{font-size:78.000000px;}
.fs3_c00373{font-size:96.000000px;}
.y0_c00373{bottom:0.000000px;}
.y17_c00373{bottom:70.500000px;}
.y1e_c00373{bottom:140.250000px;}
.y1d_c00373{bottom:189.750000px;}
.y1c_c00373{bottom:231.000000px;}
.y1b_c00373{bottom:258.750000px;}
.y1a_c00373{bottom:300.000000px;}
.y19_c00373{bottom:319.500000px;}
.y18_c00373{bottom:347.250000px;}
.y14_c00373{bottom:397.500000px;}
.y13_c00373{bottom:424.500000px;}
.y12_c00373{bottom:472.500000px;}
.y11_c00373{bottom:499.500000px;}
.y10_c00373{bottom:526.500000px;}
.yf_c00373{bottom:553.500000px;}
.ye_c00373{bottom:580.500000px;}
.yd_c00373{bottom:607.500000px;}
.yc_c00373{bottom:634.500000px;}
.yb_c00373{bottom:682.500000px;}
.ya_c00373{bottom:709.500000px;}
.y9_c00373{bottom:736.500000px;}
.y8_c00373{bottom:784.500000px;}
.y7_c00373{bottom:811.500000px;}
.y6_c00373{bottom:838.500000px;}
.y5_c00373{bottom:865.500000px;}
.y4_c00373{bottom:892.500000px;}
.y3_c00373{bottom:919.500000px;}
.y2_c00373{bottom:946.500000px;}
.y1_c00373{bottom:993.000000px;}
.y15_c00373{bottom:1066.500000px;}
.y16_c00373{bottom:1194.000000px;}
.h6_c00373{height:33.652345px;}
.h5_c00373{height:44.208984px;}
.h7_c00373{height:50.478516px;}
.h1_c00373{height:55.224609px;}
.h4_c00373{height:56.074219px;}
.h2_c00373{height:67.746094px;}
.h3_c00373{height:87.656250px;}
.h0_c00373{height:1263.000000px;}
.w0_c00373{width:892.500000px;}
.x0_c00373{left:0.000000px;}
.x1_c00373{left:65.480310px;}
.x2_c00373{left:94.798875px;}
@media print{
.v3_c00373{vertical-align:-29.333333pt;}
.v2_c00373{vertical-align:-20.521067pt;}
.v0_c00373{vertical-align:0.000000pt;}
.v1_c00373{vertical-align:20.521067pt;}
.ls4_c00373{letter-spacing:-0.006400pt;}
.ls3_c00373{letter-spacing:0.000000pt;}
.ls2_c00373{letter-spacing:0.006933pt;}
.ls5_c00373{letter-spacing:0.010667pt;}
.ls1_c00373{letter-spacing:3.555555pt;}
.ls0_c00373{letter-spacing:19.157333pt;}
.ws0_c00373{word-spacing:-20.044267pt;}
.ws1_c00373{word-spacing:-11.733333pt;}
.ws2_c00373{word-spacing:-8.888889pt;}
.ws3_c00373{word-spacing:0.000000pt;}
._14_c00373{margin-left:-9.267200pt;}
._12_c00373{margin-left:-8.249600pt;}
._10_c00373{margin-left:-6.771200pt;}
._15_c00373{margin-left:-4.441600pt;}
._5_c00373{margin-left:-3.500800pt;}
._7_c00373{margin-left:-1.977600pt;}
._3_c00373{margin-left:-0.985600pt;}
._d_c00373{width:1.062400pt;}
._1_c00373{width:2.393600pt;}
._c_c00373{width:4.076800pt;}
._b_c00373{width:5.164800pt;}
._a_c00373{width:6.656000pt;}
._2_c00373{width:7.590400pt;}
._9_c00373{width:8.627200pt;}
._0_c00373{width:9.900800pt;}
._4_c00373{width:10.931200pt;}
._8_c00373{width:11.916800pt;}
._6_c00373{width:13.452800pt;}
._e_c00373{width:15.308800pt;}
._13_c00373{width:16.492800pt;}
._f_c00373{width:18.630400pt;}
._11_c00373{width:22.496000pt;}
.fs5_c00373{font-size:35.555557pt;}
.fs2_c00373{font-size:42.666667pt;}
.fs4_c00373{font-size:53.333333pt;}
.fs1_c00373{font-size:64.000000pt;}
.fs0_c00373{font-size:69.333333pt;}
.fs3_c00373{font-size:85.333333pt;}
.y0_c00373{bottom:0.000000pt;}
.y17_c00373{bottom:62.666667pt;}
.y1e_c00373{bottom:124.666667pt;}
.y1d_c00373{bottom:168.666667pt;}
.y1c_c00373{bottom:205.333333pt;}
.y1b_c00373{bottom:230.000000pt;}
.y1a_c00373{bottom:266.666667pt;}
.y19_c00373{bottom:284.000000pt;}
.y18_c00373{bottom:308.666667pt;}
.y14_c00373{bottom:353.333333pt;}
.y13_c00373{bottom:377.333333pt;}
.y12_c00373{bottom:420.000000pt;}
.y11_c00373{bottom:444.000000pt;}
.y10_c00373{bottom:468.000000pt;}
.yf_c00373{bottom:492.000000pt;}
.ye_c00373{bottom:516.000000pt;}
.yd_c00373{bottom:540.000000pt;}
.yc_c00373{bottom:564.000000pt;}
.yb_c00373{bottom:606.666667pt;}
.ya_c00373{bottom:630.666667pt;}
.y9_c00373{bottom:654.666667pt;}
.y8_c00373{bottom:697.333333pt;}
.y7_c00373{bottom:721.333333pt;}
.y6_c00373{bottom:745.333333pt;}
.y5_c00373{bottom:769.333333pt;}
.y4_c00373{bottom:793.333333pt;}
.y3_c00373{bottom:817.333333pt;}
.y2_c00373{bottom:841.333333pt;}
.y1_c00373{bottom:882.666667pt;}
.y15_c00373{bottom:948.000000pt;}
.y16_c00373{bottom:1061.333333pt;}
.h6_c00373{height:29.913196pt;}
.h5_c00373{height:39.296875pt;}
.h7_c00373{height:44.869792pt;}
.h1_c00373{height:49.088542pt;}
.h4_c00373{height:49.843750pt;}
.h2_c00373{height:60.218750pt;}
.h3_c00373{height:77.916667pt;}
.h0_c00373{height:1122.666667pt;}
.w0_c00373{width:793.333333pt;}
.x0_c00373{left:0.000000pt;}
.x1_c00373{left:58.204720pt;}
.x2_c00373{left:84.265667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fa3fead6f3f0c4cb504dda28.woff2')format("woff");}.ff1_c00374{font-family:ff1_c00374;line-height:0.934082;font-style:normal;font-weight:normal;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_5cbf8a3c2cef9ad3f7566bfd.woff2')format("woff");}.ff2_c00374{font-family:ff2_c00374;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00374;src:url('chunks/assets/font_755479c358e87589a88ea38a.woff2')format("woff");}.ff3_c00374{font-family:ff3_c00374;line-height:1.155762;font-style:normal;font-weight:normal;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_4aba7cf93d2cebb2024d8c65.woff2')format("woff");}.ff4_c00374{font-family:ff4_c00374;line-height:0.904785;font-style:normal;font-weight:normal;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_b3a3905c0fad31a19002581e.woff2')format("woff");}.ff5_c00374{font-family:ff5_c00374;line-height:0.890137;font-style: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);}
.v2_c00374{vertical-align:-33.000000px;}
.v0_c00374{vertical-align:0.000000px;}
.v1_c00374{vertical-align:23.086200px;}
.ls6_c00374{letter-spacing:-4.560000px;}
.ls7_c00374{letter-spacing:-0.258000px;}
.ls5_c00374{letter-spacing:0.000000px;}
.ls3_c00374{letter-spacing:0.012000px;}
.ls2_c00374{letter-spacing:1.447200px;}
.ls0_c00374{letter-spacing:1.531800px;}
.ls1_c00374{letter-spacing:1.620000px;}
.ls4_c00374{letter-spacing:3.999999px;}
.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;}
}
.ws2_c00374{word-spacing:-15.000000px;}
.ws1_c00374{word-spacing:-10.000001px;}
.ws0_c00374{word-spacing:-0.048000px;}
.ws3_c00374{word-spacing:0.000000px;}
._8_c00374{margin-left:-6.732000px;}
._15_c00374{margin-left:-5.496000px;}
._c_c00374{margin-left:-4.298400px;}
._0_c00374{margin-left:-2.426400px;}
._7_c00374{margin-left:-1.152000px;}
._f_c00374{width:1.080000px;}
._3_c00374{width:2.138400px;}
._5_c00374{width:3.916800px;}
._b_c00374{width:5.443200px;}
._6_c00374{width:6.818400px;}
._4_c00374{width:8.683200px;}
._a_c00374{width:9.792000px;}
._2_c00374{width:10.800000px;}
._9_c00374{width:12.211200px;}
._1_c00374{width:13.219200px;}
._10_c00374{width:14.666400px;}
._e_c00374{width:15.868800px;}
._d_c00374{width:17.726400px;}
._14_c00374{width:32.220000px;}
._11_c00374{width:33.696000px;}
._12_c00374{width:37.598400px;}
._13_c00374{width:40.644000px;}
.fc0_c00374{color:rgb(0,0,0);}
.fs3_c00374{font-size:40.000002px;}
.fs1_c00374{font-size:48.000000px;}
.fs2_c00374{font-size:60.000000px;}
.fs0_c00374{font-size:72.000000px;}
.y0_c00374{bottom:0.000000px;}
.y19_c00374{bottom:70.500000px;}
.y21_c00374{bottom:132.000000px;}
.y20_c00374{bottom:151.500000px;}
.y1f_c00374{bottom:179.250000px;}
.y1e_c00374{bottom:220.500000px;}
.y1d_c00374{bottom:240.000000px;}
.y1c_c00374{bottom:259.500000px;}
.y1b_c00374{bottom:287.250000px;}
.y1a_c00374{bottom:336.750000px;}
.y17_c00374{bottom:438.000000px;}
.y16_c00374{bottom:465.000000px;}
.y15_c00374{bottom:492.000000px;}
.y14_c00374{bottom:519.000000px;}
.y13_c00374{bottom:567.000000px;}
.y12_c00374{bottom:594.000000px;}
.y11_c00374{bottom:621.000000px;}
.y10_c00374{bottom:648.000000px;}
.yf_c00374{bottom:675.000000px;}
.ye_c00374{bottom:702.000000px;}
.yd_c00374{bottom:729.000000px;}
.yc_c00374{bottom:756.000000px;}
.yb_c00374{bottom:783.000000px;}
.ya_c00374{bottom:831.000000px;}
.y9_c00374{bottom:858.000000px;}
.y8_c00374{bottom:885.000000px;}
.y7_c00374{bottom:912.000000px;}
.y6_c00374{bottom:939.000000px;}
.y5_c00374{bottom:987.000000px;}
.y4_c00374{bottom:1014.000000px;}
.y3_c00374{bottom:1041.000000px;}
.y2_c00374{bottom:1068.000000px;}
.y1_c00374{bottom:1095.000000px;}
.y18_c00374{bottom:1194.000000px;}
.h4_c00374{height:27.480470px;}
.h5_c00374{height:41.220703px;}
.h1_c00374{height:51.257812px;}
.h3_c00374{height:56.074219px;}
.h2_c00374{height:56.929950px;}
.h0_c00374{height:1263.000000px;}
.w0_c00374{width:892.500000px;}
.x0_c00374{left:0.000000px;}
.x1_c00374{left:150.519750px;}
.x2_c00374{left:416.782800px;}
.x3_c00374{left:801.992850px;}
@media print{
.v2_c00374{vertical-align:-29.333333pt;}
.v0_c00374{vertical-align:0.000000pt;}
.v1_c00374{vertical-align:20.521067pt;}
.ls6_c00374{letter-spacing:-4.053333pt;}
.ls7_c00374{letter-spacing:-0.229333pt;}
.ls5_c00374{letter-spacing:0.000000pt;}
.ls3_c00374{letter-spacing:0.010667pt;}
.ls2_c00374{letter-spacing:1.286400pt;}
.ls0_c00374{letter-spacing:1.361600pt;}
.ls1_c00374{letter-spacing:1.440000pt;}
.ls4_c00374{letter-spacing:3.555555pt;}
.ws2_c00374{word-spacing:-13.333333pt;}
.ws1_c00374{word-spacing:-8.888889pt;}
.ws0_c00374{word-spacing:-0.042667pt;}
.ws3_c00374{word-spacing:0.000000pt;}
._8_c00374{margin-left:-5.984000pt;}
._15_c00374{margin-left:-4.885333pt;}
._c_c00374{margin-left:-3.820800pt;}
._0_c00374{margin-left:-2.156800pt;}
._7_c00374{margin-left:-1.024000pt;}
._f_c00374{width:0.960000pt;}
._3_c00374{width:1.900800pt;}
._5_c00374{width:3.481600pt;}
._b_c00374{width:4.838400pt;}
._6_c00374{width:6.060800pt;}
._4_c00374{width:7.718400pt;}
._a_c00374{width:8.704000pt;}
._2_c00374{width:9.600000pt;}
._9_c00374{width:10.854400pt;}
._1_c00374{width:11.750400pt;}
._10_c00374{width:13.036800pt;}
._e_c00374{width:14.105600pt;}
._d_c00374{width:15.756800pt;}
._14_c00374{width:28.640000pt;}
._11_c00374{width:29.952000pt;}
._12_c00374{width:33.420800pt;}
._13_c00374{width:36.128000pt;}
.fs3_c00374{font-size:35.555557pt;}
.fs1_c00374{font-size:42.666667pt;}
.fs2_c00374{font-size:53.333333pt;}
.fs0_c00374{font-size:64.000000pt;}
.y0_c00374{bottom:0.000000pt;}
.y19_c00374{bottom:62.666667pt;}
.y21_c00374{bottom:117.333333pt;}
.y20_c00374{bottom:134.666667pt;}
.y1f_c00374{bottom:159.333333pt;}
.y1e_c00374{bottom:196.000000pt;}
.y1d_c00374{bottom:213.333333pt;}
.y1c_c00374{bottom:230.666667pt;}
.y1b_c00374{bottom:255.333333pt;}
.y1a_c00374{bottom:299.333333pt;}
.y17_c00374{bottom:389.333333pt;}
.y16_c00374{bottom:413.333333pt;}
.y15_c00374{bottom:437.333333pt;}
.y14_c00374{bottom:461.333333pt;}
.y13_c00374{bottom:504.000000pt;}
.y12_c00374{bottom:528.000000pt;}
.y11_c00374{bottom:552.000000pt;}
.y10_c00374{bottom:576.000000pt;}
.yf_c00374{bottom:600.000000pt;}
.ye_c00374{bottom:624.000000pt;}
.yd_c00374{bottom:648.000000pt;}
.yc_c00374{bottom:672.000000pt;}
.yb_c00374{bottom:696.000000pt;}
.ya_c00374{bottom:738.666667pt;}
.y9_c00374{bottom:762.666667pt;}
.y8_c00374{bottom:786.666667pt;}
.y7_c00374{bottom:810.666667pt;}
.y6_c00374{bottom:834.666667pt;}
.y5_c00374{bottom:877.333333pt;}
.y4_c00374{bottom:901.333333pt;}
.y3_c00374{bottom:925.333333pt;}
.y2_c00374{bottom:949.333333pt;}
.y1_c00374{bottom:973.333333pt;}
.y18_c00374{bottom:1061.333333pt;}
.h4_c00374{height:24.427085pt;}
.h5_c00374{height:36.640625pt;}
.h1_c00374{height:45.562500pt;}
.h3_c00374{height:49.843750pt;}
.h2_c00374{height:50.604400pt;}
.h0_c00374{height:1122.666667pt;}
.w0_c00374{width:793.333333pt;}
.x0_c00374{left:0.000000pt;}
.x1_c00374{left:133.795333pt;}
.x2_c00374{left:370.473600pt;}
.x3_c00374{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2d0eec83e45f70d92ec7c6d1.woff2')format("woff");}.ff1_c00375{font-family:ff1_c00375;line-height:0.934082;font-style:normal;font-weight:normal;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_d0301426de0cfe6ec8249958.woff2')format("woff");}.ff2_c00375{font-family:ff2_c00375;line-height:0.882812;font-style:normal;font-weight:normal;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_204ea08084f2f512701419fe.woff2')format("woff");}.ff3_c00375{font-family:ff3_c00375;line-height:0.755859;font-style:normal;font-weight:normal;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_0272998072c26d347d43c043.woff2')format("woff");}.ff4_c00375{font-family:ff4_c00375;line-height:1.155762;font-style:normal;font-weight:normal;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_0a1e4b637103b081fed3f3ee.woff2')format("woff");}.ff5_c00375{font-family:ff5_c00375;line-height:1.059082;font-style:normal;font-weight: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_c00375;src:url('chunks/assets/font_6f8580be57ad2fceb0c67fa7.woff2')format("woff");}.ff6_c00375{font-family:ff6_c00375;line-height:0.891113;font-style: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);}
.v3_c00375{vertical-align:-33.000000px;}
.v2_c00375{vertical-align:-23.086200px;}
.v0_c00375{vertical-align:0.000000px;}
.v1_c00375{vertical-align:23.086200px;}
.ls5_c00375{letter-spacing:-4.374000px;}
.ls3_c00375{letter-spacing:-0.009600px;}
.ls2_c00375{letter-spacing:0.000000px;}
.ls4_c00375{letter-spacing:0.012000px;}
.ls0_c00375{letter-spacing:1.572000px;}
.ls1_c00375{letter-spacing:3.999999px;}
.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:-19.800000px;}
.ws3_c00375{word-spacing:-10.000001px;}
.ws0_c00375{word-spacing:-0.048000px;}
.ws1_c00375{word-spacing:-0.038400px;}
.ws4_c00375{word-spacing:0.000000px;}
._10_c00375{margin-left:-10.500360px;}
._8_c00375{margin-left:-6.357600px;}
._a_c00375{margin-left:-5.032800px;}
._1_c00375{margin-left:-3.484800px;}
._b_c00375{margin-left:-2.092440px;}
._5_c00375{margin-left:-1.072800px;}
._4_c00375{width:1.008000px;}
._3_c00375{width:2.080800px;}
._0_c00375{width:3.319200px;}
._7_c00375{width:4.867200px;}
._2_c00375{width:6.292800px;}
._6_c00375{width:7.516800px;}
._9_c00375{width:8.546400px;}
._f_c00375{width:9.626400px;}
._d_c00375{width:10.951200px;}
._c_c00375{width:11.988000px;}
._e_c00375{width:14.087640px;}
._17_c00375{width:16.900800px;}
._16_c00375{width:18.316800px;}
._18_c00375{width:19.319520px;}
._14_c00375{width:22.161600px;}
._12_c00375{width:23.212800px;}
._13_c00375{width:24.297240px;}
._11_c00375{width:25.305240px;}
._15_c00375{width:26.798400px;}
.fc0_c00375{color:rgb(0,0,0);}
.fs3_c00375{font-size:40.000002px;}
.fs1_c00375{font-size:48.000000px;}
.fs2_c00375{font-size:60.000000px;}
.fs0_c00375{font-size:72.000000px;}
.y0_c00375{bottom:0.000000px;}
.y1c_c00375{bottom:70.500000px;}
.y21_c00375{bottom:140.250000px;}
.y20_c00375{bottom:181.500000px;}
.y1f_c00375{bottom:201.000000px;}
.y1e_c00375{bottom:228.750000px;}
.y1d_c00375{bottom:278.250000px;}
.y1a_c00375{bottom:336.000000px;}
.y19_c00375{bottom:363.000000px;}
.y18_c00375{bottom:411.000000px;}
.y17_c00375{bottom:438.000000px;}
.y16_c00375{bottom:465.000000px;}
.y15_c00375{bottom:492.000000px;}
.y14_c00375{bottom:519.000000px;}
.y13_c00375{bottom:546.000000px;}
.y12_c00375{bottom:573.000000px;}
.y11_c00375{bottom:600.000000px;}
.y10_c00375{bottom:648.000000px;}
.yf_c00375{bottom:675.000000px;}
.ye_c00375{bottom:702.000000px;}
.yd_c00375{bottom:729.000000px;}
.yc_c00375{bottom:756.000000px;}
.yb_c00375{bottom:804.000000px;}
.ya_c00375{bottom:831.000000px;}
.y9_c00375{bottom:858.000000px;}
.y8_c00375{bottom:885.000000px;}
.y7_c00375{bottom:912.000000px;}
.y6_c00375{bottom:939.000000px;}
.y5_c00375{bottom:966.000000px;}
.y4_c00375{bottom:993.000000px;}
.y3_c00375{bottom:1020.000000px;}
.y2_c00375{bottom:1068.000000px;}
.y1_c00375{bottom:1095.000000px;}
.y1b_c00375{bottom:1194.000000px;}
.h5_c00375{height:33.652345px;}
.h4_c00375{height:44.208984px;}
.h6_c00375{height:50.478516px;}
.h1_c00375{height:51.257812px;}
.h3_c00375{height:56.074219px;}
.h2_c00375{height:56.976825px;}
.h0_c00375{height:1263.000000px;}
.w0_c00375{width:892.500000px;}
.x0_c00375{left:0.000000px;}
.x1_c00375{left:65.480310px;}
@media print{
.v3_c00375{vertical-align:-29.333333pt;}
.v2_c00375{vertical-align:-20.521067pt;}
.v0_c00375{vertical-align:0.000000pt;}
.v1_c00375{vertical-align:20.521067pt;}
.ls5_c00375{letter-spacing:-3.888000pt;}
.ls3_c00375{letter-spacing:-0.008533pt;}
.ls2_c00375{letter-spacing:0.000000pt;}
.ls4_c00375{letter-spacing:0.010667pt;}
.ls0_c00375{letter-spacing:1.397333pt;}
.ls1_c00375{letter-spacing:3.555555pt;}
.ws2_c00375{word-spacing:-17.600000pt;}
.ws3_c00375{word-spacing:-8.888889pt;}
.ws0_c00375{word-spacing:-0.042667pt;}
.ws1_c00375{word-spacing:-0.034133pt;}
.ws4_c00375{word-spacing:0.000000pt;}
._10_c00375{margin-left:-9.333653pt;}
._8_c00375{margin-left:-5.651200pt;}
._a_c00375{margin-left:-4.473600pt;}
._1_c00375{margin-left:-3.097600pt;}
._b_c00375{margin-left:-1.859947pt;}
._5_c00375{margin-left:-0.953600pt;}
._4_c00375{width:0.896000pt;}
._3_c00375{width:1.849600pt;}
._0_c00375{width:2.950400pt;}
._7_c00375{width:4.326400pt;}
._2_c00375{width:5.593600pt;}
._6_c00375{width:6.681600pt;}
._9_c00375{width:7.596800pt;}
._f_c00375{width:8.556800pt;}
._d_c00375{width:9.734400pt;}
._c_c00375{width:10.656000pt;}
._e_c00375{width:12.522347pt;}
._17_c00375{width:15.022933pt;}
._16_c00375{width:16.281600pt;}
._18_c00375{width:17.172907pt;}
._14_c00375{width:19.699200pt;}
._12_c00375{width:20.633600pt;}
._13_c00375{width:21.597547pt;}
._11_c00375{width:22.493547pt;}
._15_c00375{width:23.820800pt;}
.fs3_c00375{font-size:35.555557pt;}
.fs1_c00375{font-size:42.666667pt;}
.fs2_c00375{font-size:53.333333pt;}
.fs0_c00375{font-size:64.000000pt;}
.y0_c00375{bottom:0.000000pt;}
.y1c_c00375{bottom:62.666667pt;}
.y21_c00375{bottom:124.666667pt;}
.y20_c00375{bottom:161.333333pt;}
.y1f_c00375{bottom:178.666667pt;}
.y1e_c00375{bottom:203.333333pt;}
.y1d_c00375{bottom:247.333333pt;}
.y1a_c00375{bottom:298.666667pt;}
.y19_c00375{bottom:322.666667pt;}
.y18_c00375{bottom:365.333333pt;}
.y17_c00375{bottom:389.333333pt;}
.y16_c00375{bottom:413.333333pt;}
.y15_c00375{bottom:437.333333pt;}
.y14_c00375{bottom:461.333333pt;}
.y13_c00375{bottom:485.333333pt;}
.y12_c00375{bottom:509.333333pt;}
.y11_c00375{bottom:533.333333pt;}
.y10_c00375{bottom:576.000000pt;}
.yf_c00375{bottom:600.000000pt;}
.ye_c00375{bottom:624.000000pt;}
.yd_c00375{bottom:648.000000pt;}
.yc_c00375{bottom:672.000000pt;}
.yb_c00375{bottom:714.666667pt;}
.ya_c00375{bottom:738.666667pt;}
.y9_c00375{bottom:762.666667pt;}
.y8_c00375{bottom:786.666667pt;}
.y7_c00375{bottom:810.666667pt;}
.y6_c00375{bottom:834.666667pt;}
.y5_c00375{bottom:858.666667pt;}
.y4_c00375{bottom:882.666667pt;}
.y3_c00375{bottom:906.666667pt;}
.y2_c00375{bottom:949.333333pt;}
.y1_c00375{bottom:973.333333pt;}
.y1b_c00375{bottom:1061.333333pt;}
.h5_c00375{height:29.913196pt;}
.h4_c00375{height:39.296875pt;}
.h6_c00375{height:44.869792pt;}
.h1_c00375{height:45.562500pt;}
.h3_c00375{height:49.843750pt;}
.h2_c00375{height:50.646067pt;}
.h0_c00375{height:1122.666667pt;}
.w0_c00375{width:793.333333pt;}
.x0_c00375{left:0.000000pt;}
.x1_c00375{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8d475e8754283b2767508b06.woff2')format("woff");}.ff1_c00376{font-family:ff1_c00376;line-height:0.939453;font-style:normal;font-weight:normal;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_0ebbc19b79c0e0eb677230ff.woff2')format("woff");}.ff2_c00376{font-family:ff2_c00376;line-height:0.932129;font-style:normal;font-weight:normal;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_d8adb357b9220e52b7509d08.woff2')format("woff");}.ff3_c00376{font-family:ff3_c00376;line-height:1.144531;font-style:normal;font-weight:normal;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_013544cff675ba0e8701df99.woff2')format("woff");}.ff4_c00376{font-family:ff4_c00376;line-height:1.155762;font-style: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;}
.ls2_c00376{letter-spacing:0.000000px;}
.ls0_c00376{letter-spacing:0.007800px;}
.ls1_c00376{letter-spacing:0.012000px;}
.sc__c00376{text-shadow:none;}
.sc0_c00376{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00376{-webkit-text-stroke:0px transparent;}
.sc0_c00376{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00376{word-spacing:0.000000px;}
._0_c00376{margin-left:-4.888800px;}
._a_c00376{margin-left:-3.585600px;}
._2_c00376{margin-left:-2.484000px;}
._4_c00376{margin-left:-1.468800px;}
._6_c00376{width:1.591200px;}
._9_c00376{width:3.585600px;}
._8_c00376{width:4.636800px;}
._7_c00376{width:7.178400px;}
._1_c00376{width:8.719200px;}
._5_c00376{width:10.152000px;}
._3_c00376{width:11.217600px;}
.fc0_c00376{color:rgb(0,0,0);}
.fs2_c00376{font-size:54.000000px;}
.fs3_c00376{font-size:60.000000px;}
.fs1_c00376{font-size:72.000000px;}
.fs0_c00376{font-size:78.000000px;}
.y0_c00376{bottom:0.000000px;}
.y7_c00376{bottom:12.000000px;}
.ya_c00376{bottom:70.500000px;}
.y8_c00376{bottom:153.000000px;}
.y6_c00376{bottom:510.000000px;}
.y5_c00376{bottom:928.500000px;}
.y4_c00376{bottom:955.500000px;}
.y3_c00376{bottom:982.500000px;}
.y2_c00376{bottom:1029.000000px;}
.y1_c00376{bottom:1093.500000px;}
.y9_c00376{bottom:1194.000000px;}
.h5_c00376{height:50.756836px;}
.h3_c00376{height:51.257812px;}
.h2_c00376{height:51.785156px;}
.h7_c00376{height:56.074219px;}
.h1_c00376{height:56.100586px;}
.h6_c00376{height:349.500000px;}
.h4_c00376{height:387.000000px;}
.h0_c00376{height:1263.000000px;}
.w1_c00376{width:676.500000px;}
.w0_c00376{width:892.500000px;}
.x0_c00376{left:0.000000px;}
.x2_c00376{left:18.425880px;}
.x3_c00376{left:121.195290px;}
.x1_c00376{left:150.519750px;}
.x4_c00376{left:416.782800px;}
.x5_c00376{left:801.992850px;}
@media print{
.v0_c00376{vertical-align:0.000000pt;}
.ls2_c00376{letter-spacing:0.000000pt;}
.ls0_c00376{letter-spacing:0.006933pt;}
.ls1_c00376{letter-spacing:0.010667pt;}
.ws0_c00376{word-spacing:0.000000pt;}
._0_c00376{margin-left:-4.345600pt;}
._a_c00376{margin-left:-3.187200pt;}
._2_c00376{margin-left:-2.208000pt;}
._4_c00376{margin-left:-1.305600pt;}
._6_c00376{width:1.414400pt;}
._9_c00376{width:3.187200pt;}
._8_c00376{width:4.121600pt;}
._7_c00376{width:6.380800pt;}
._1_c00376{width:7.750400pt;}
._5_c00376{width:9.024000pt;}
._3_c00376{width:9.971200pt;}
.fs2_c00376{font-size:48.000000pt;}
.fs3_c00376{font-size:53.333333pt;}
.fs1_c00376{font-size:64.000000pt;}
.fs0_c00376{font-size:69.333333pt;}
.y0_c00376{bottom:0.000000pt;}
.y7_c00376{bottom:10.666667pt;}
.ya_c00376{bottom:62.666667pt;}
.y8_c00376{bottom:136.000000pt;}
.y6_c00376{bottom:453.333333pt;}
.y5_c00376{bottom:825.333333pt;}
.y4_c00376{bottom:849.333333pt;}
.y3_c00376{bottom:873.333333pt;}
.y2_c00376{bottom:914.666667pt;}
.y1_c00376{bottom:972.000000pt;}
.y9_c00376{bottom:1061.333333pt;}
.h5_c00376{height:45.117188pt;}
.h3_c00376{height:45.562500pt;}
.h2_c00376{height:46.031250pt;}
.h7_c00376{height:49.843750pt;}
.h1_c00376{height:49.867188pt;}
.h6_c00376{height:310.666667pt;}
.h4_c00376{height:344.000000pt;}
.h0_c00376{height:1122.666667pt;}
.w1_c00376{width:601.333333pt;}
.w0_c00376{width:793.333333pt;}
.x0_c00376{left:0.000000pt;}
.x2_c00376{left:16.378560pt;}
.x3_c00376{left:107.729147pt;}
.x1_c00376{left:133.795333pt;}
.x4_c00376{left:370.473600pt;}
.x5_c00376{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_03eb30666ba1fa27b0b84245.woff2')format("woff");}.ff1_c00377{font-family:ff1_c00377;line-height:0.934082;font-style:normal;font-weight:normal;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_32e50df55f093875472032cf.woff2')format("woff");}.ff2_c00377{font-family:ff2_c00377;line-height:0.795410;font-style:normal;font-weight:normal;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_18d47e3462bc606653293f2f.woff2')format("woff");}.ff3_c00377{font-family:ff3_c00377;line-height:0.755859;font-style:normal;font-weight:normal;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_2fb3fc7b9608db9f6d9ad58d.woff2')format("woff");}.ff4_c00377{font-family:ff4_c00377;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00377{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00377{vertical-align:0.000000px;}
.ls0_c00377{letter-spacing:0.000000px;}
.ls1_c00377{letter-spacing:0.012000px;}
.sc__c00377{text-shadow:none;}
.sc0_c00377{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00377{-webkit-text-stroke:0px transparent;}
.sc0_c00377{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00377{word-spacing:-19.800000px;}
.ws1_c00377{word-spacing:0.000000px;}
._b_c00377{margin-left:-6.969600px;}
._5_c00377{margin-left:-4.384800px;}
._3_c00377{margin-left:-2.779200px;}
._2_c00377{margin-left:-1.130400px;}
._0_c00377{width:1.771200px;}
._1_c00377{width:2.995200px;}
._4_c00377{width:4.716000px;}
._a_c00377{width:6.184800px;}
._6_c00377{width:8.049600px;}
._7_c00377{width:9.784800px;}
._9_c00377{width:11.332800px;}
._17_c00377{width:13.262400px;}
._8_c00377{width:14.623200px;}
._16_c00377{width:16.351200px;}
._15_c00377{width:18.057600px;}
._c_c00377{width:22.147200px;}
._10_c00377{width:23.846400px;}
._e_c00377{width:25.113600px;}
._f_c00377{width:26.848800px;}
._11_c00377{width:29.606400px;}
._d_c00377{width:31.284000px;}
._12_c00377{width:34.012800px;}
._13_c00377{width:35.532000px;}
._14_c00377{width:37.123200px;}
.fc1_c00377{color:transparent;}
.fc0_c00377{color:rgb(0,0,0);}
.fs1_c00377{font-size:54.000000px;}
.fs2_c00377{font-size:60.000000px;}
.fs0_c00377{font-size:72.000000px;}
.y0_c00377{bottom:0.000000px;}
.ya_c00377{bottom:12.000000px;}
.y19_c00377{bottom:70.500000px;}
.y17_c00377{bottom:136.500000px;}
.y16_c00377{bottom:163.500000px;}
.y15_c00377{bottom:190.500000px;}
.y14_c00377{bottom:217.500000px;}
.y13_c00377{bottom:244.500000px;}
.y12_c00377{bottom:271.500000px;}
.y11_c00377{bottom:319.500000px;}
.y10_c00377{bottom:346.500000px;}
.yf_c00377{bottom:373.500000px;}
.ye_c00377{bottom:421.500000px;}
.yd_c00377{bottom:448.500000px;}
.yc_c00377{bottom:475.500000px;}
.yb_c00377{bottom:502.500000px;}
.y9_c00377{bottom:547.500000px;}
.y8_c00377{bottom:906.000000px;}
.y7_c00377{bottom:933.000000px;}
.y6_c00377{bottom:960.000000px;}
.y5_c00377{bottom:987.000000px;}
.y4_c00377{bottom:1014.000000px;}
.y3_c00377{bottom:1041.000000px;}
.y2_c00377{bottom:1068.000000px;}
.y1_c00377{bottom:1095.000000px;}
.y18_c00377{bottom:1194.000000px;}
.h3_c00377{height:42.292969px;}
.h5_c00377{height:44.208984px;}
.h1_c00377{height:51.257812px;}
.h4_c00377{height:56.074219px;}
.h2_c00377{height:327.000000px;}
.h0_c00377{height:1263.000000px;}
.w1_c00377{width:676.500000px;}
.w0_c00377{width:892.500000px;}
.x0_c00377{left:0.000000px;}
.x1_c00377{left:65.480310px;}
.x2_c00377{left:222.616650px;}
@media print{
.v0_c00377{vertical-align:0.000000pt;}
.ls0_c00377{letter-spacing:0.000000pt;}
.ls1_c00377{letter-spacing:0.010667pt;}
.ws0_c00377{word-spacing:-17.600000pt;}
.ws1_c00377{word-spacing:0.000000pt;}
._b_c00377{margin-left:-6.195200pt;}
._5_c00377{margin-left:-3.897600pt;}
._3_c00377{margin-left:-2.470400pt;}
._2_c00377{margin-left:-1.004800pt;}
._0_c00377{width:1.574400pt;}
._1_c00377{width:2.662400pt;}
._4_c00377{width:4.192000pt;}
._a_c00377{width:5.497600pt;}
._6_c00377{width:7.155200pt;}
._7_c00377{width:8.697600pt;}
._9_c00377{width:10.073600pt;}
._17_c00377{width:11.788800pt;}
._8_c00377{width:12.998400pt;}
._16_c00377{width:14.534400pt;}
._15_c00377{width:16.051200pt;}
._c_c00377{width:19.686400pt;}
._10_c00377{width:21.196800pt;}
._e_c00377{width:22.323200pt;}
._f_c00377{width:23.865600pt;}
._11_c00377{width:26.316800pt;}
._d_c00377{width:27.808000pt;}
._12_c00377{width:30.233600pt;}
._13_c00377{width:31.584000pt;}
._14_c00377{width:32.998400pt;}
.fs1_c00377{font-size:48.000000pt;}
.fs2_c00377{font-size:53.333333pt;}
.fs0_c00377{font-size:64.000000pt;}
.y0_c00377{bottom:0.000000pt;}
.ya_c00377{bottom:10.666667pt;}
.y19_c00377{bottom:62.666667pt;}
.y17_c00377{bottom:121.333333pt;}
.y16_c00377{bottom:145.333333pt;}
.y15_c00377{bottom:169.333333pt;}
.y14_c00377{bottom:193.333333pt;}
.y13_c00377{bottom:217.333333pt;}
.y12_c00377{bottom:241.333333pt;}
.y11_c00377{bottom:284.000000pt;}
.y10_c00377{bottom:308.000000pt;}
.yf_c00377{bottom:332.000000pt;}
.ye_c00377{bottom:374.666667pt;}
.yd_c00377{bottom:398.666667pt;}
.yc_c00377{bottom:422.666667pt;}
.yb_c00377{bottom:446.666667pt;}
.y9_c00377{bottom:486.666667pt;}
.y8_c00377{bottom:805.333333pt;}
.y7_c00377{bottom:829.333333pt;}
.y6_c00377{bottom:853.333333pt;}
.y5_c00377{bottom:877.333333pt;}
.y4_c00377{bottom:901.333333pt;}
.y3_c00377{bottom:925.333333pt;}
.y2_c00377{bottom:949.333333pt;}
.y1_c00377{bottom:973.333333pt;}
.y18_c00377{bottom:1061.333333pt;}
.h3_c00377{height:37.593750pt;}
.h5_c00377{height:39.296875pt;}
.h1_c00377{height:45.562500pt;}
.h4_c00377{height:49.843750pt;}
.h2_c00377{height:290.666667pt;}
.h0_c00377{height:1122.666667pt;}
.w1_c00377{width:601.333333pt;}
.w0_c00377{width:793.333333pt;}
.x0_c00377{left:0.000000pt;}
.x1_c00377{left:58.204720pt;}
.x2_c00377{left:197.881467pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d3768ce745f7af9d660f1726.woff2')format("woff");}.ff1_c00378{font-family:ff1_c00378;line-height:0.987793;font-style:normal;font-weight:normal;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_d6b8f0403440b5c3f5174de8.woff2')format("woff");}.ff2_c00378{font-family:ff2_c00378;line-height:0.934082;font-style:normal;font-weight:normal;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_e5b1d719829b8e96af33dd1d.woff2')format("woff");}.ff3_c00378{font-family:ff3_c00378;line-height:1.155762;font-style: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;}
.ls2_c00378{letter-spacing:0.000000px;}
.ls1_c00378{letter-spacing:0.012000px;}
.ls0_c00378{letter-spacing:0.021600px;}
.sc__c00378{text-shadow:none;}
.sc0_c00378{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00378{-webkit-text-stroke:0px transparent;}
.sc0_c00378{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00378{word-spacing:0.000000px;}
._e_c00378{margin-left:-9.842400px;}
._12_c00378{margin-left:-4.485600px;}
._2_c00378{margin-left:-2.808000px;}
._4_c00378{margin-left:-1.288800px;}
._11_c00378{width:1.000800px;}
._1_c00378{width:2.080800px;}
._0_c00378{width:3.283200px;}
._5_c00378{width:4.514400px;}
._13_c00378{width:5.623200px;}
._3_c00378{width:6.717600px;}
._f_c00378{width:8.172000px;}
._10_c00378{width:9.496800px;}
._b_c00378{width:10.728000px;}
._c_c00378{width:12.801600px;}
._d_c00378{width:14.961600px;}
._6_c00378{width:16.322400px;}
._9_c00378{width:18.662400px;}
._7_c00378{width:20.894400px;}
._a_c00378{width:22.687200px;}
._8_c00378{width:23.695200px;}
.fc0_c00378{color:rgb(0,0,0);}
.fs0_c00378{font-size:54.000000px;}
.fs2_c00378{font-size:60.000000px;}
.fs1_c00378{font-size:72.000000px;}
.y0_c00378{bottom:0.000000px;}
.y2_c00378{bottom:12.000000px;}
.yc_c00378{bottom:70.500000px;}
.ya_c00378{bottom:166.500000px;}
.y9_c00378{bottom:556.500000px;}
.y8_c00378{bottom:583.500000px;}
.y7_c00378{bottom:610.500000px;}
.y6_c00378{bottom:637.500000px;}
.y5_c00378{bottom:664.500000px;}
.y4_c00378{bottom:691.500000px;}
.y3_c00378{bottom:718.500000px;}
.y1_c00378{bottom:763.500000px;}
.yb_c00378{bottom:1194.000000px;}
.h2_c00378{height:42.292969px;}
.h3_c00378{height:51.257812px;}
.h5_c00378{height:56.074219px;}
.h1_c00378{height:349.500000px;}
.h4_c00378{height:358.500000px;}
.h0_c00378{height:1263.000000px;}
.w1_c00378{width:676.500000px;}
.w0_c00378{width:892.500000px;}
.x0_c00378{left:0.000000px;}
.x2_c00378{left:11.619851px;}
.x1_c00378{left:150.000000px;}
.x3_c00378{left:416.782800px;}
.x4_c00378{left:801.992850px;}
@media print{
.v0_c00378{vertical-align:0.000000pt;}
.ls2_c00378{letter-spacing:0.000000pt;}
.ls1_c00378{letter-spacing:0.010667pt;}
.ls0_c00378{letter-spacing:0.019200pt;}
.ws0_c00378{word-spacing:0.000000pt;}
._e_c00378{margin-left:-8.748800pt;}
._12_c00378{margin-left:-3.987200pt;}
._2_c00378{margin-left:-2.496000pt;}
._4_c00378{margin-left:-1.145600pt;}
._11_c00378{width:0.889600pt;}
._1_c00378{width:1.849600pt;}
._0_c00378{width:2.918400pt;}
._5_c00378{width:4.012800pt;}
._13_c00378{width:4.998400pt;}
._3_c00378{width:5.971200pt;}
._f_c00378{width:7.264000pt;}
._10_c00378{width:8.441600pt;}
._b_c00378{width:9.536000pt;}
._c_c00378{width:11.379200pt;}
._d_c00378{width:13.299200pt;}
._6_c00378{width:14.508800pt;}
._9_c00378{width:16.588800pt;}
._7_c00378{width:18.572800pt;}
._a_c00378{width:20.166400pt;}
._8_c00378{width:21.062400pt;}
.fs0_c00378{font-size:48.000000pt;}
.fs2_c00378{font-size:53.333333pt;}
.fs1_c00378{font-size:64.000000pt;}
.y0_c00378{bottom:0.000000pt;}
.y2_c00378{bottom:10.666667pt;}
.yc_c00378{bottom:62.666667pt;}
.ya_c00378{bottom:148.000000pt;}
.y9_c00378{bottom:494.666667pt;}
.y8_c00378{bottom:518.666667pt;}
.y7_c00378{bottom:542.666667pt;}
.y6_c00378{bottom:566.666667pt;}
.y5_c00378{bottom:590.666667pt;}
.y4_c00378{bottom:614.666667pt;}
.y3_c00378{bottom:638.666667pt;}
.y1_c00378{bottom:678.666667pt;}
.yb_c00378{bottom:1061.333333pt;}
.h2_c00378{height:37.593750pt;}
.h3_c00378{height:45.562500pt;}
.h5_c00378{height:49.843750pt;}
.h1_c00378{height:310.666667pt;}
.h4_c00378{height:318.666667pt;}
.h0_c00378{height:1122.666667pt;}
.w1_c00378{width:601.333333pt;}
.w0_c00378{width:793.333333pt;}
.x0_c00378{left:0.000000pt;}
.x2_c00378{left:10.328756pt;}
.x1_c00378{left:133.333333pt;}
.x3_c00378{left:370.473600pt;}
.x4_c00378{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_412178c0d80c6b32829bcef6.woff2')format("woff");}.ff1_c00379{font-family:ff1_c00379;line-height:0.934082;font-style:normal;font-weight:normal;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_2b3c577bf8a52f5bc7fbab75.woff2')format("woff");}.ff2_c00379{font-family:ff2_c00379;line-height:0.976074;font-style:normal;font-weight:normal;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_66293131e103443d5d510610.woff2')format("woff");}.ff3_c00379{font-family:ff3_c00379;line-height:0.755859;font-style:normal;font-weight:normal;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_1828c5b194a3248792b4a917.woff2')format("woff");}.ff4_c00379{font-family:ff4_c00379;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00379{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00379{vertical-align:0.000000px;}
.ls1_c00379{letter-spacing:-0.010800px;}
.ls0_c00379{letter-spacing:0.000000px;}
.ls2_c00379{letter-spacing:0.012000px;}
.sc__c00379{text-shadow:none;}
.sc0_c00379{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00379{-webkit-text-stroke:0px transparent;}
.sc0_c00379{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00379{word-spacing:-19.800000px;}
.ws1_c00379{word-spacing:-17.053200px;}
.ws2_c00379{word-spacing:0.000000px;}
._10_c00379{margin-left:-10.584000px;}
._12_c00379{margin-left:-7.315200px;}
._15_c00379{margin-left:-6.264000px;}
._5_c00379{margin-left:-4.291200px;}
._2_c00379{margin-left:-2.548800px;}
._0_c00379{margin-left:-1.490400px;}
._1_c00379{width:1.972800px;}
._3_c00379{width:3.024000px;}
._6_c00379{width:4.384800px;}
._4_c00379{width:5.400000px;}
._e_c00379{width:7.286400px;}
._c_c00379{width:8.776800px;}
._b_c00379{width:9.820800px;}
._17_c00379{width:10.843200px;}
._d_c00379{width:11.872800px;}
._14_c00379{width:13.053600px;}
._11_c00379{width:14.450400px;}
._f_c00379{width:16.394400px;}
._16_c00379{width:17.488800px;}
._13_c00379{width:20.865600px;}
._8_c00379{width:21.996000px;}
._7_c00379{width:23.896800px;}
._9_c00379{width:26.460000px;}
._a_c00379{width:28.245600px;}
.fc0_c00379{color:rgb(0,0,0);}
.fs1_c00379{font-size:54.000000px;}
.fs2_c00379{font-size:60.000000px;}
.fs0_c00379{font-size:72.000000px;}
.y0_c00379{bottom:0.000000px;}
.y15_c00379{bottom:10.500000px;}
.y14_c00379{bottom:28.500000px;}
.y17_c00379{bottom:70.500000px;}
.y13_c00379{bottom:138.000000px;}
.y12_c00379{bottom:594.000000px;}
.y11_c00379{bottom:621.000000px;}
.y10_c00379{bottom:648.000000px;}
.yf_c00379{bottom:675.000000px;}
.ye_c00379{bottom:723.000000px;}
.yd_c00379{bottom:750.000000px;}
.yc_c00379{bottom:777.000000px;}
.yb_c00379{bottom:804.000000px;}
.ya_c00379{bottom:831.000000px;}
.y9_c00379{bottom:858.000000px;}
.y8_c00379{bottom:906.000000px;}
.y7_c00379{bottom:933.000000px;}
.y6_c00379{bottom:960.000000px;}
.y5_c00379{bottom:987.000000px;}
.y4_c00379{bottom:1014.000000px;}
.y3_c00379{bottom:1041.000000px;}
.y2_c00379{bottom:1068.000000px;}
.y1_c00379{bottom:1095.000000px;}
.y16_c00379{bottom:1194.000000px;}
.h3_c00379{height:42.292969px;}
.h5_c00379{height:44.208984px;}
.h1_c00379{height:51.257812px;}
.h4_c00379{height:56.074219px;}
.h2_c00379{height:424.500000px;}
.h0_c00379{height:1263.000000px;}
.w1_c00379{width:676.500000px;}
.w0_c00379{width:892.500000px;}
.x0_c00379{left:0.000000px;}
.x2_c00379{left:17.582160px;}
.x1_c00379{left:65.480310px;}
.x3_c00379{left:312.453000px;}
@media print{
.v0_c00379{vertical-align:0.000000pt;}
.ls1_c00379{letter-spacing:-0.009600pt;}
.ls0_c00379{letter-spacing:0.000000pt;}
.ls2_c00379{letter-spacing:0.010667pt;}
.ws0_c00379{word-spacing:-17.600000pt;}
.ws1_c00379{word-spacing:-15.158400pt;}
.ws2_c00379{word-spacing:0.000000pt;}
._10_c00379{margin-left:-9.408000pt;}
._12_c00379{margin-left:-6.502400pt;}
._15_c00379{margin-left:-5.568000pt;}
._5_c00379{margin-left:-3.814400pt;}
._2_c00379{margin-left:-2.265600pt;}
._0_c00379{margin-left:-1.324800pt;}
._1_c00379{width:1.753600pt;}
._3_c00379{width:2.688000pt;}
._6_c00379{width:3.897600pt;}
._4_c00379{width:4.800000pt;}
._e_c00379{width:6.476800pt;}
._c_c00379{width:7.801600pt;}
._b_c00379{width:8.729600pt;}
._17_c00379{width:9.638400pt;}
._d_c00379{width:10.553600pt;}
._14_c00379{width:11.603200pt;}
._11_c00379{width:12.844800pt;}
._f_c00379{width:14.572800pt;}
._16_c00379{width:15.545600pt;}
._13_c00379{width:18.547200pt;}
._8_c00379{width:19.552000pt;}
._7_c00379{width:21.241600pt;}
._9_c00379{width:23.520000pt;}
._a_c00379{width:25.107200pt;}
.fs1_c00379{font-size:48.000000pt;}
.fs2_c00379{font-size:53.333333pt;}
.fs0_c00379{font-size:64.000000pt;}
.y0_c00379{bottom:0.000000pt;}
.y15_c00379{bottom:9.333333pt;}
.y14_c00379{bottom:25.333333pt;}
.y17_c00379{bottom:62.666667pt;}
.y13_c00379{bottom:122.666667pt;}
.y12_c00379{bottom:528.000000pt;}
.y11_c00379{bottom:552.000000pt;}
.y10_c00379{bottom:576.000000pt;}
.yf_c00379{bottom:600.000000pt;}
.ye_c00379{bottom:642.666667pt;}
.yd_c00379{bottom:666.666667pt;}
.yc_c00379{bottom:690.666667pt;}
.yb_c00379{bottom:714.666667pt;}
.ya_c00379{bottom:738.666667pt;}
.y9_c00379{bottom:762.666667pt;}
.y8_c00379{bottom:805.333333pt;}
.y7_c00379{bottom:829.333333pt;}
.y6_c00379{bottom:853.333333pt;}
.y5_c00379{bottom:877.333333pt;}
.y4_c00379{bottom:901.333333pt;}
.y3_c00379{bottom:925.333333pt;}
.y2_c00379{bottom:949.333333pt;}
.y1_c00379{bottom:973.333333pt;}
.y16_c00379{bottom:1061.333333pt;}
.h3_c00379{height:37.593750pt;}
.h5_c00379{height:39.296875pt;}
.h1_c00379{height:45.562500pt;}
.h4_c00379{height:49.843750pt;}
.h2_c00379{height:377.333333pt;}
.h0_c00379{height:1122.666667pt;}
.w1_c00379{width:601.333333pt;}
.w0_c00379{width:793.333333pt;}
.x0_c00379{left:0.000000pt;}
.x2_c00379{left:15.628587pt;}
.x1_c00379{left:58.204720pt;}
.x3_c00379{left:277.736000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_1ee695ec4c1186fd6e88be25.woff2')format("woff");}.ff1_c00380{font-family:ff1_c00380;line-height:0.934082;font-style:normal;font-weight:normal;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_86a163176686062a3a3ea6ce.woff2')format("woff");}.ff2_c00380{font-family:ff2_c00380;line-height:0.976074;font-style:normal;font-weight:normal;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_68e779ac252291f4348909a5.woff2')format("woff");}.ff3_c00380{font-family:ff3_c00380;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00380{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00380{vertical-align:0.000000px;}
.ls2_c00380{letter-spacing:-0.005400px;}
.ls1_c00380{letter-spacing:0.000000px;}
.ls0_c00380{letter-spacing:0.012000px;}
.sc__c00380{text-shadow:none;}
.sc0_c00380{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00380{-webkit-text-stroke:0px transparent;}
.sc0_c00380{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00380{word-spacing:0.000000px;}
._6_c00380{margin-left:-7.149600px;}
._4_c00380{margin-left:-4.226400px;}
._1_c00380{margin-left:-3.168000px;}
._3_c00380{margin-left:-1.238400px;}
._0_c00380{width:1.260000px;}
._2_c00380{width:3.276000px;}
._5_c00380{width:4.831200px;}
._e_c00380{width:6.148800px;}
._d_c00380{width:8.654400px;}
._7_c00380{width:10.641600px;}
._c_c00380{width:12.261600px;}
._8_c00380{width:14.198400px;}
._9_c00380{width:15.480000px;}
._b_c00380{width:16.682400px;}
._a_c00380{width:18.597600px;}
.fc0_c00380{color:rgb(0,0,0);}
.fs1_c00380{font-size:54.000000px;}
.fs2_c00380{font-size:60.000000px;}
.fs0_c00380{font-size:72.000000px;}
.y0_c00380{bottom:0.000000px;}
.y4_c00380{bottom:12.000000px;}
.yd_c00380{bottom:70.500000px;}
.yb_c00380{bottom:177.000000px;}
.ya_c00380{bottom:204.000000px;}
.y9_c00380{bottom:231.000000px;}
.y8_c00380{bottom:258.000000px;}
.y7_c00380{bottom:285.000000px;}
.y6_c00380{bottom:312.000000px;}
.y5_c00380{bottom:339.000000px;}
.y3_c00380{bottom:384.000000px;}
.y2_c00380{bottom:1068.000000px;}
.y1_c00380{bottom:1095.000000px;}
.yc_c00380{bottom:1194.000000px;}
.h3_c00380{height:42.292969px;}
.h1_c00380{height:51.257812px;}
.h4_c00380{height:56.074219px;}
.h2_c00380{height:652.500000px;}
.h0_c00380{height:1263.000000px;}
.w1_c00380{width:676.500000px;}
.w0_c00380{width:892.500000px;}
.x0_c00380{left:0.000000px;}
.x2_c00380{left:104.023665px;}
.x1_c00380{left:150.519750px;}
.x3_c00380{left:416.782800px;}
.x4_c00380{left:801.992850px;}
@media print{
.v0_c00380{vertical-align:0.000000pt;}
.ls2_c00380{letter-spacing:-0.004800pt;}
.ls1_c00380{letter-spacing:0.000000pt;}
.ls0_c00380{letter-spacing:0.010667pt;}
.ws0_c00380{word-spacing:0.000000pt;}
._6_c00380{margin-left:-6.355200pt;}
._4_c00380{margin-left:-3.756800pt;}
._1_c00380{margin-left:-2.816000pt;}
._3_c00380{margin-left:-1.100800pt;}
._0_c00380{width:1.120000pt;}
._2_c00380{width:2.912000pt;}
._5_c00380{width:4.294400pt;}
._e_c00380{width:5.465600pt;}
._d_c00380{width:7.692800pt;}
._7_c00380{width:9.459200pt;}
._c_c00380{width:10.899200pt;}
._8_c00380{width:12.620800pt;}
._9_c00380{width:13.760000pt;}
._b_c00380{width:14.828800pt;}
._a_c00380{width:16.531200pt;}
.fs1_c00380{font-size:48.000000pt;}
.fs2_c00380{font-size:53.333333pt;}
.fs0_c00380{font-size:64.000000pt;}
.y0_c00380{bottom:0.000000pt;}
.y4_c00380{bottom:10.666667pt;}
.yd_c00380{bottom:62.666667pt;}
.yb_c00380{bottom:157.333333pt;}
.ya_c00380{bottom:181.333333pt;}
.y9_c00380{bottom:205.333333pt;}
.y8_c00380{bottom:229.333333pt;}
.y7_c00380{bottom:253.333333pt;}
.y6_c00380{bottom:277.333333pt;}
.y5_c00380{bottom:301.333333pt;}
.y3_c00380{bottom:341.333333pt;}
.y2_c00380{bottom:949.333333pt;}
.y1_c00380{bottom:973.333333pt;}
.yc_c00380{bottom:1061.333333pt;}
.h3_c00380{height:37.593750pt;}
.h1_c00380{height:45.562500pt;}
.h4_c00380{height:49.843750pt;}
.h2_c00380{height:580.000000pt;}
.h0_c00380{height:1122.666667pt;}
.w1_c00380{width:601.333333pt;}
.w0_c00380{width:793.333333pt;}
.x0_c00380{left:0.000000pt;}
.x2_c00380{left:92.465480pt;}
.x1_c00380{left:133.795333pt;}
.x3_c00380{left:370.473600pt;}
.x4_c00380{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e77dee8cdc3d2047a3c9a099.woff2')format("woff");}.ff1_c00381{font-family:ff1_c00381;line-height:0.987793;font-style:normal;font-weight:normal;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_49d2c58e617e8a185a3b7f1d.woff2')format("woff");}.ff2_c00381{font-family:ff2_c00381;line-height:0.934082;font-style:normal;font-weight:normal;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_e4059b028230d471b7df6ee0.woff2')format("woff");}.ff3_c00381{font-family:ff3_c00381;line-height:0.756836;font-style:normal;font-weight:normal;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_c8d8fd2fc1444d744b848f9d.woff2')format("woff");}.ff4_c00381{font-family:ff4_c00381;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00381{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00381{vertical-align:0.000000px;}
.ls0_c00381{letter-spacing:0.000000px;}
.ls2_c00381{letter-spacing:0.012000px;}
.ls1_c00381{letter-spacing:0.016200px;}
.sc__c00381{text-shadow:none;}
.sc0_c00381{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00381{-webkit-text-stroke:0px transparent;}
.sc0_c00381{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00381{word-spacing:0.000000px;}
._0_c00381{margin-left:-10.584000px;}
._a_c00381{margin-left:-7.884000px;}
._7_c00381{margin-left:-4.089600px;}
._4_c00381{margin-left:-2.829600px;}
._9_c00381{margin-left:-1.598400px;}
._1_c00381{width:1.418400px;}
._2_c00381{width:2.736000px;}
._6_c00381{width:3.823200px;}
._3_c00381{width:5.018400px;}
._5_c00381{width:6.775200px;}
._8_c00381{width:7.776000px;}
.fc0_c00381{color:rgb(0,0,0);}
.fs0_c00381{font-size:54.000000px;}
.fs2_c00381{font-size:60.000000px;}
.fs1_c00381{font-size:72.000000px;}
.y0_c00381{bottom:0.000000px;}
.y3_c00381{bottom:10.500000px;}
.y2_c00381{bottom:28.500000px;}
.ya_c00381{bottom:70.500000px;}
.y8_c00381{bottom:151.500000px;}
.y7_c00381{bottom:502.500000px;}
.y6_c00381{bottom:529.500000px;}
.y5_c00381{bottom:556.500000px;}
.y4_c00381{bottom:583.500000px;}
.y1_c00381{bottom:628.500000px;}
.y9_c00381{bottom:1194.000000px;}
.h2_c00381{height:42.292969px;}
.h6_c00381{height:44.208984px;}
.h3_c00381{height:51.257812px;}
.h5_c00381{height:56.074219px;}
.h4_c00381{height:319.500000px;}
.h1_c00381{height:484.500000px;}
.h0_c00381{height:1263.000000px;}
.w1_c00381{width:676.500000px;}
.w0_c00381{width:892.500000px;}
.x0_c00381{left:0.000000px;}
.x4_c00381{left:12.631715px;}
.x2_c00381{left:21.695430px;}
.x1_c00381{left:66.000000px;}
.x3_c00381{left:241.601100px;}
.x5_c00381{left:309.348300px;}
@media print{
.v0_c00381{vertical-align:0.000000pt;}
.ls0_c00381{letter-spacing:0.000000pt;}
.ls2_c00381{letter-spacing:0.010667pt;}
.ls1_c00381{letter-spacing:0.014400pt;}
.ws0_c00381{word-spacing:0.000000pt;}
._0_c00381{margin-left:-9.408000pt;}
._a_c00381{margin-left:-7.008000pt;}
._7_c00381{margin-left:-3.635200pt;}
._4_c00381{margin-left:-2.515200pt;}
._9_c00381{margin-left:-1.420800pt;}
._1_c00381{width:1.260800pt;}
._2_c00381{width:2.432000pt;}
._6_c00381{width:3.398400pt;}
._3_c00381{width:4.460800pt;}
._5_c00381{width:6.022400pt;}
._8_c00381{width:6.912000pt;}
.fs0_c00381{font-size:48.000000pt;}
.fs2_c00381{font-size:53.333333pt;}
.fs1_c00381{font-size:64.000000pt;}
.y0_c00381{bottom:0.000000pt;}
.y3_c00381{bottom:9.333333pt;}
.y2_c00381{bottom:25.333333pt;}
.ya_c00381{bottom:62.666667pt;}
.y8_c00381{bottom:134.666667pt;}
.y7_c00381{bottom:446.666667pt;}
.y6_c00381{bottom:470.666667pt;}
.y5_c00381{bottom:494.666667pt;}
.y4_c00381{bottom:518.666667pt;}
.y1_c00381{bottom:558.666667pt;}
.y9_c00381{bottom:1061.333333pt;}
.h2_c00381{height:37.593750pt;}
.h6_c00381{height:39.296875pt;}
.h3_c00381{height:45.562500pt;}
.h5_c00381{height:49.843750pt;}
.h4_c00381{height:284.000000pt;}
.h1_c00381{height:430.666667pt;}
.h0_c00381{height:1122.666667pt;}
.w1_c00381{width:601.333333pt;}
.w0_c00381{width:793.333333pt;}
.x0_c00381{left:0.000000pt;}
.x4_c00381{left:11.228191pt;}
.x2_c00381{left:19.284827pt;}
.x1_c00381{left:58.666667pt;}
.x3_c00381{left:214.756533pt;}
.x5_c00381{left:274.976267pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_05a4c58ef64fff6e47528290.woff2')format("woff");}.ff1_c00382{font-family:ff1_c00382;line-height:0.934082;font-style:normal;font-weight:normal;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_3d2cd37270df016222fff8f3.woff2')format("woff");}.ff2_c00382{font-family:ff2_c00382;line-height:0.987793;font-style:normal;font-weight:normal;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_d19ba3cdda2384ffcc0f4f22.woff2')format("woff");}.ff3_c00382{font-family:ff3_c00382;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00382{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00382{vertical-align:0.000000px;}
.ls1_c00382{letter-spacing:0.000000px;}
.ls0_c00382{letter-spacing:0.012000px;}
.sc__c00382{text-shadow:none;}
.sc0_c00382{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00382{-webkit-text-stroke:0px transparent;}
.sc0_c00382{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00382{word-spacing:0.000000px;}
._2_c00382{margin-left:-3.441600px;}
._5_c00382{margin-left:-2.390400px;}
._3_c00382{margin-left:-1.202400px;}
._0_c00382{width:1.000800px;}
._4_c00382{width:2.224800px;}
._6_c00382{width:3.506400px;}
._1_c00382{width:4.536000px;}
._d_c00382{width:7.855200px;}
._b_c00382{width:9.813600px;}
._c_c00382{width:11.073600px;}
._8_c00382{width:13.312800px;}
._9_c00382{width:14.529600px;}
._a_c00382{width:15.660000px;}
._7_c00382{width:16.783200px;}
._11_c00382{width:18.057600px;}
._f_c00382{width:20.995200px;}
._e_c00382{width:23.270400px;}
._10_c00382{width:24.314400px;}
.fc0_c00382{color:rgb(0,0,0);}
.fs1_c00382{font-size:54.000000px;}
.fs2_c00382{font-size:60.000000px;}
.fs0_c00382{font-size:72.000000px;}
.y0_c00382{bottom:0.000000px;}
.y8_c00382{bottom:12.000000px;}
.yb_c00382{bottom:70.500000px;}
.y9_c00382{bottom:130.500000px;}
.y7_c00382{bottom:537.000000px;}
.y6_c00382{bottom:960.000000px;}
.y5_c00382{bottom:987.000000px;}
.y4_c00382{bottom:1014.000000px;}
.y3_c00382{bottom:1041.000000px;}
.y2_c00382{bottom:1068.000000px;}
.y1_c00382{bottom:1095.000000px;}
.ya_c00382{bottom:1194.000000px;}
.h3_c00382{height:42.292969px;}
.h1_c00382{height:51.257812px;}
.h5_c00382{height:56.074219px;}
.h4_c00382{height:378.000000px;}
.h2_c00382{height:391.500000px;}
.h0_c00382{height:1263.000000px;}
.w1_c00382{width:676.500000px;}
.w0_c00382{width:892.500000px;}
.x0_c00382{left:0.000000px;}
.x2_c00382{left:129.329565px;}
.x1_c00382{left:150.519750px;}
.x3_c00382{left:172.696950px;}
.x4_c00382{left:416.782800px;}
.x5_c00382{left:801.992850px;}
@media print{
.v0_c00382{vertical-align:0.000000pt;}
.ls1_c00382{letter-spacing:0.000000pt;}
.ls0_c00382{letter-spacing:0.010667pt;}
.ws0_c00382{word-spacing:0.000000pt;}
._2_c00382{margin-left:-3.059200pt;}
._5_c00382{margin-left:-2.124800pt;}
._3_c00382{margin-left:-1.068800pt;}
._0_c00382{width:0.889600pt;}
._4_c00382{width:1.977600pt;}
._6_c00382{width:3.116800pt;}
._1_c00382{width:4.032000pt;}
._d_c00382{width:6.982400pt;}
._b_c00382{width:8.723200pt;}
._c_c00382{width:9.843200pt;}
._8_c00382{width:11.833600pt;}
._9_c00382{width:12.915200pt;}
._a_c00382{width:13.920000pt;}
._7_c00382{width:14.918400pt;}
._11_c00382{width:16.051200pt;}
._f_c00382{width:18.662400pt;}
._e_c00382{width:20.684800pt;}
._10_c00382{width:21.612800pt;}
.fs1_c00382{font-size:48.000000pt;}
.fs2_c00382{font-size:53.333333pt;}
.fs0_c00382{font-size:64.000000pt;}
.y0_c00382{bottom:0.000000pt;}
.y8_c00382{bottom:10.666667pt;}
.yb_c00382{bottom:62.666667pt;}
.y9_c00382{bottom:116.000000pt;}
.y7_c00382{bottom:477.333333pt;}
.y6_c00382{bottom:853.333333pt;}
.y5_c00382{bottom:877.333333pt;}
.y4_c00382{bottom:901.333333pt;}
.y3_c00382{bottom:925.333333pt;}
.y2_c00382{bottom:949.333333pt;}
.y1_c00382{bottom:973.333333pt;}
.ya_c00382{bottom:1061.333333pt;}
.h3_c00382{height:37.593750pt;}
.h1_c00382{height:45.562500pt;}
.h5_c00382{height:49.843750pt;}
.h4_c00382{height:336.000000pt;}
.h2_c00382{height:348.000000pt;}
.h0_c00382{height:1122.666667pt;}
.w1_c00382{width:601.333333pt;}
.w0_c00382{width:793.333333pt;}
.x0_c00382{left:0.000000pt;}
.x2_c00382{left:114.959613pt;}
.x1_c00382{left:133.795333pt;}
.x3_c00382{left:153.508400pt;}
.x4_c00382{left:370.473600pt;}
.x5_c00382{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5d78049d591f0614efd3bcbb.woff2')format("woff");}.ff1_c00383{font-family:ff1_c00383;line-height:0.931152;font-style:normal;font-weight:normal;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_faedc96a4f29e0012bff16dd.woff2')format("woff");}.ff2_c00383{font-family:ff2_c00383;line-height:0.987793;font-style:normal;font-weight:normal;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_81a21692dceb677893519271.woff2')format("woff");}.ff3_c00383{font-family:ff3_c00383;line-height:0.756836;font-style:normal;font-weight:normal;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_28506634df44648ff5732e14.woff2')format("woff");}.ff4_c00383{font-family:ff4_c00383;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00383{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00383{vertical-align:0.000000px;}
.ls1_c00383{letter-spacing:-0.005400px;}
.ls0_c00383{letter-spacing:0.000000px;}
.ls2_c00383{letter-spacing:0.012000px;}
.sc__c00383{text-shadow:none;}
.sc0_c00383{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00383{-webkit-text-stroke:0px transparent;}
.sc0_c00383{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00383{word-spacing:0.000000px;}
._f_c00383{margin-left:-7.293600px;}
._d_c00383{margin-left:-4.413600px;}
._4_c00383{margin-left:-3.189600px;}
._2_c00383{margin-left:-1.303200px;}
._1_c00383{width:1.202400px;}
._0_c00383{width:2.419200px;}
._3_c00383{width:3.729600px;}
._5_c00383{width:4.730400px;}
._6_c00383{width:7.545600px;}
._9_c00383{width:9.180000px;}
._8_c00383{width:11.160000px;}
._e_c00383{width:12.319200px;}
._7_c00383{width:13.586400px;}
._a_c00383{width:15.184800px;}
._c_c00383{width:17.661600px;}
._b_c00383{width:18.712800px;}
.fc0_c00383{color:rgb(0,0,0);}
.fs1_c00383{font-size:54.000000px;}
.fs2_c00383{font-size:60.000000px;}
.fs0_c00383{font-size:72.000000px;}
.y0_c00383{bottom:0.000000px;}
.y9_c00383{bottom:12.000000px;}
.yb_c00383{bottom:70.500000px;}
.y8_c00383{bottom:132.000000px;}
.y7_c00383{bottom:891.000000px;}
.y6_c00383{bottom:918.000000px;}
.y5_c00383{bottom:966.000000px;}
.y4_c00383{bottom:993.000000px;}
.y3_c00383{bottom:1041.000000px;}
.y2_c00383{bottom:1068.000000px;}
.y1_c00383{bottom:1095.000000px;}
.ya_c00383{bottom:1194.000000px;}
.h3_c00383{height:42.292969px;}
.h5_c00383{height:44.208984px;}
.h1_c00383{height:51.187500px;}
.h4_c00383{height:56.074219px;}
.h2_c00383{height:748.500000px;}
.h0_c00383{height:1263.000000px;}
.w1_c00383{width:676.500000px;}
.w0_c00383{width:892.500000px;}
.x0_c00383{left:0.000000px;}
.x1_c00383{left:65.480310px;}
.x2_c00383{left:291.210900px;}
@media print{
.v0_c00383{vertical-align:0.000000pt;}
.ls1_c00383{letter-spacing:-0.004800pt;}
.ls0_c00383{letter-spacing:0.000000pt;}
.ls2_c00383{letter-spacing:0.010667pt;}
.ws0_c00383{word-spacing:0.000000pt;}
._f_c00383{margin-left:-6.483200pt;}
._d_c00383{margin-left:-3.923200pt;}
._4_c00383{margin-left:-2.835200pt;}
._2_c00383{margin-left:-1.158400pt;}
._1_c00383{width:1.068800pt;}
._0_c00383{width:2.150400pt;}
._3_c00383{width:3.315200pt;}
._5_c00383{width:4.204800pt;}
._6_c00383{width:6.707200pt;}
._9_c00383{width:8.160000pt;}
._8_c00383{width:9.920000pt;}
._e_c00383{width:10.950400pt;}
._7_c00383{width:12.076800pt;}
._a_c00383{width:13.497600pt;}
._c_c00383{width:15.699200pt;}
._b_c00383{width:16.633600pt;}
.fs1_c00383{font-size:48.000000pt;}
.fs2_c00383{font-size:53.333333pt;}
.fs0_c00383{font-size:64.000000pt;}
.y0_c00383{bottom:0.000000pt;}
.y9_c00383{bottom:10.666667pt;}
.yb_c00383{bottom:62.666667pt;}
.y8_c00383{bottom:117.333333pt;}
.y7_c00383{bottom:792.000000pt;}
.y6_c00383{bottom:816.000000pt;}
.y5_c00383{bottom:858.666667pt;}
.y4_c00383{bottom:882.666667pt;}
.y3_c00383{bottom:925.333333pt;}
.y2_c00383{bottom:949.333333pt;}
.y1_c00383{bottom:973.333333pt;}
.ya_c00383{bottom:1061.333333pt;}
.h3_c00383{height:37.593750pt;}
.h5_c00383{height:39.296875pt;}
.h1_c00383{height:45.500000pt;}
.h4_c00383{height:49.843750pt;}
.h2_c00383{height:665.333333pt;}
.h0_c00383{height:1122.666667pt;}
.w1_c00383{width:601.333333pt;}
.w0_c00383{width:793.333333pt;}
.x0_c00383{left:0.000000pt;}
.x1_c00383{left:58.204720pt;}
.x2_c00383{left:258.854133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_825336276463e176c706dc7b.woff2')format("woff");}.ff1_c00384{font-family:ff1_c00384;line-height:0.931152;font-style:normal;font-weight:normal;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_cc636e46fd1986356752a2eb.woff2')format("woff");}.ff2_c00384{font-family:ff2_c00384;line-height:0.987793;font-style:normal;font-weight:normal;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_ab538d498f7f5e5f09d53f53.woff2')format("woff");}.ff3_c00384{font-family:ff3_c00384;line-height:1.155762;font-style: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;}
.ls1_c00384{letter-spacing:0.000000px;}
.ls0_c00384{letter-spacing:0.012000px;}
.sc__c00384{text-shadow:none;}
.sc0_c00384{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00384{-webkit-text-stroke:0px transparent;}
.sc0_c00384{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00384{word-spacing:0.000000px;}
._1_c00384{margin-left:-3.801600px;}
._5_c00384{margin-left:-2.743200px;}
._b_c00384{margin-left:-1.339200px;}
._7_c00384{width:1.432800px;}
._3_c00384{width:2.944800px;}
._9_c00384{width:4.154400px;}
._c_c00384{width:6.393600px;}
._d_c00384{width:7.653600px;}
._a_c00384{width:22.118400px;}
._4_c00384{width:23.356800px;}
._8_c00384{width:24.912000px;}
._0_c00384{width:26.272800px;}
._6_c00384{width:29.066400px;}
._2_c00384{width:30.124800px;}
.fc0_c00384{color:rgb(0,0,0);}
.fs1_c00384{font-size:54.000000px;}
.fs2_c00384{font-size:60.000000px;}
.fs0_c00384{font-size:72.000000px;}
.y0_c00384{bottom:0.000000px;}
.y4_c00384{bottom:12.000000px;}
.y9_c00384{bottom:70.500000px;}
.y7_c00384{bottom:132.000000px;}
.y6_c00384{bottom:685.500000px;}
.y5_c00384{bottom:712.500000px;}
.y3_c00384{bottom:757.500000px;}
.y2_c00384{bottom:1068.000000px;}
.y1_c00384{bottom:1095.000000px;}
.y8_c00384{bottom:1194.000000px;}
.h3_c00384{height:42.292969px;}
.h1_c00384{height:51.187500px;}
.h5_c00384{height:56.074219px;}
.h2_c00384{height:279.000000px;}
.h4_c00384{height:522.000000px;}
.h0_c00384{height:1263.000000px;}
.w1_c00384{width:676.500000px;}
.w0_c00384{width:892.500000px;}
.x0_c00384{left:0.000000px;}
.x1_c00384{left:150.519750px;}
.x2_c00384{left:201.180150px;}
.x3_c00384{left:249.748500px;}
.x4_c00384{left:416.782800px;}
.x5_c00384{left:801.992850px;}
@media print{
.v0_c00384{vertical-align:0.000000pt;}
.ls1_c00384{letter-spacing:0.000000pt;}
.ls0_c00384{letter-spacing:0.010667pt;}
.ws0_c00384{word-spacing:0.000000pt;}
._1_c00384{margin-left:-3.379200pt;}
._5_c00384{margin-left:-2.438400pt;}
._b_c00384{margin-left:-1.190400pt;}
._7_c00384{width:1.273600pt;}
._3_c00384{width:2.617600pt;}
._9_c00384{width:3.692800pt;}
._c_c00384{width:5.683200pt;}
._d_c00384{width:6.803200pt;}
._a_c00384{width:19.660800pt;}
._4_c00384{width:20.761600pt;}
._8_c00384{width:22.144000pt;}
._0_c00384{width:23.353600pt;}
._6_c00384{width:25.836800pt;}
._2_c00384{width:26.777600pt;}
.fs1_c00384{font-size:48.000000pt;}
.fs2_c00384{font-size:53.333333pt;}
.fs0_c00384{font-size:64.000000pt;}
.y0_c00384{bottom:0.000000pt;}
.y4_c00384{bottom:10.666667pt;}
.y9_c00384{bottom:62.666667pt;}
.y7_c00384{bottom:117.333333pt;}
.y6_c00384{bottom:609.333333pt;}
.y5_c00384{bottom:633.333333pt;}
.y3_c00384{bottom:673.333333pt;}
.y2_c00384{bottom:949.333333pt;}
.y1_c00384{bottom:973.333333pt;}
.y8_c00384{bottom:1061.333333pt;}
.h3_c00384{height:37.593750pt;}
.h1_c00384{height:45.500000pt;}
.h5_c00384{height:49.843750pt;}
.h2_c00384{height:248.000000pt;}
.h4_c00384{height:464.000000pt;}
.h0_c00384{height:1122.666667pt;}
.w1_c00384{width:601.333333pt;}
.w0_c00384{width:793.333333pt;}
.x0_c00384{left:0.000000pt;}
.x1_c00384{left:133.795333pt;}
.x2_c00384{left:178.826800pt;}
.x3_c00384{left:221.998667pt;}
.x4_c00384{left:370.473600pt;}
.x5_c00384{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8c9e460bf81f5b5d016d3c8f.woff2')format("woff");}.ff1_c00385{font-family:ff1_c00385;line-height:0.934082;font-style:normal;font-weight:normal;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_709ff7a647b0cafefa5caa26.woff2')format("woff");}.ff2_c00385{font-family:ff2_c00385;line-height:0.975586;font-style:normal;font-weight:normal;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_e345e120ed04ffbc866f97d2.woff2')format("woff");}.ff3_c00385{font-family:ff3_c00385;line-height:0.892578;font-style:normal;font-weight:normal;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_f4a567dd72fa74e8c6c70704.woff2')format("woff");}.ff4_c00385{font-family:ff4_c00385;line-height:0.756836;font-style:normal;font-weight:normal;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_0cd6cdfae585ec608333abd2.woff2')format("woff");}.ff5_c00385{font-family:ff5_c00385;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00385{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00385{vertical-align:0.000000px;}
.ls1_c00385{letter-spacing:0.000000px;}
.ls0_c00385{letter-spacing:0.007200px;}
.ls2_c00385{letter-spacing:0.012000px;}
.sc__c00385{text-shadow:none;}
.sc0_c00385{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00385{-webkit-text-stroke:0px transparent;}
.sc0_c00385{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00385{word-spacing:-19.800000px;}
.ws1_c00385{word-spacing:0.000000px;}
._3_c00385{margin-left:-7.250400px;}
._4_c00385{margin-left:-4.183200px;}
._1_c00385{margin-left:-2.311200px;}
._6_c00385{margin-left:-1.015200px;}
._2_c00385{width:1.980000px;}
._0_c00385{width:3.146400px;}
._5_c00385{width:4.586400px;}
._8_c00385{width:5.630400px;}
._7_c00385{width:7.466400px;}
._9_c00385{width:9.266400px;}
._a_c00385{width:10.800000px;}
._b_c00385{width:11.916000px;}
._c_c00385{width:13.356000px;}
._12_c00385{width:14.644800px;}
._13_c00385{width:16.192800px;}
._f_c00385{width:17.222400px;}
._d_c00385{width:18.705600px;}
._e_c00385{width:21.873600px;}
._10_c00385{width:24.105600px;}
._11_c00385{width:25.884000px;}
.fc0_c00385{color:rgb(0,0,0);}
.fs1_c00385{font-size:54.000000px;}
.fs2_c00385{font-size:60.000000px;}
.fs0_c00385{font-size:72.000000px;}
.y0_c00385{bottom:0.000000px;}
.y9_c00385{bottom:12.000000px;}
.y15_c00385{bottom:70.500000px;}
.y13_c00385{bottom:133.500000px;}
.y12_c00385{bottom:160.500000px;}
.y11_c00385{bottom:187.500000px;}
.y10_c00385{bottom:214.500000px;}
.yf_c00385{bottom:279.000000px;}
.ye_c00385{bottom:330.000000px;}
.yd_c00385{bottom:357.000000px;}
.yc_c00385{bottom:405.000000px;}
.yb_c00385{bottom:432.000000px;}
.ya_c00385{bottom:459.000000px;}
.y8_c00385{bottom:504.000000px;}
.y7_c00385{bottom:933.000000px;}
.y6_c00385{bottom:960.000000px;}
.y5_c00385{bottom:987.000000px;}
.y4_c00385{bottom:1014.000000px;}
.y3_c00385{bottom:1041.000000px;}
.y2_c00385{bottom:1068.000000px;}
.y1_c00385{bottom:1095.000000px;}
.y14_c00385{bottom:1194.000000px;}
.h3_c00385{height:41.633789px;}
.h6_c00385{height:44.208984px;}
.h1_c00385{height:51.257812px;}
.h4_c00385{height:51.539062px;}
.h5_c00385{height:56.074219px;}
.h2_c00385{height:397.500000px;}
.h0_c00385{height:1263.000000px;}
.w1_c00385{width:676.500000px;}
.w0_c00385{width:892.500000px;}
.x0_c00385{left:0.000000px;}
.x1_c00385{left:65.480310px;}
.x2_c00385{left:222.531000px;}
@media print{
.v0_c00385{vertical-align:0.000000pt;}
.ls1_c00385{letter-spacing:0.000000pt;}
.ls0_c00385{letter-spacing:0.006400pt;}
.ls2_c00385{letter-spacing:0.010667pt;}
.ws0_c00385{word-spacing:-17.600000pt;}
.ws1_c00385{word-spacing:0.000000pt;}
._3_c00385{margin-left:-6.444800pt;}
._4_c00385{margin-left:-3.718400pt;}
._1_c00385{margin-left:-2.054400pt;}
._6_c00385{margin-left:-0.902400pt;}
._2_c00385{width:1.760000pt;}
._0_c00385{width:2.796800pt;}
._5_c00385{width:4.076800pt;}
._8_c00385{width:5.004800pt;}
._7_c00385{width:6.636800pt;}
._9_c00385{width:8.236800pt;}
._a_c00385{width:9.600000pt;}
._b_c00385{width:10.592000pt;}
._c_c00385{width:11.872000pt;}
._12_c00385{width:13.017600pt;}
._13_c00385{width:14.393600pt;}
._f_c00385{width:15.308800pt;}
._d_c00385{width:16.627200pt;}
._e_c00385{width:19.443200pt;}
._10_c00385{width:21.427200pt;}
._11_c00385{width:23.008000pt;}
.fs1_c00385{font-size:48.000000pt;}
.fs2_c00385{font-size:53.333333pt;}
.fs0_c00385{font-size:64.000000pt;}
.y0_c00385{bottom:0.000000pt;}
.y9_c00385{bottom:10.666667pt;}
.y15_c00385{bottom:62.666667pt;}
.y13_c00385{bottom:118.666667pt;}
.y12_c00385{bottom:142.666667pt;}
.y11_c00385{bottom:166.666667pt;}
.y10_c00385{bottom:190.666667pt;}
.yf_c00385{bottom:248.000000pt;}
.ye_c00385{bottom:293.333333pt;}
.yd_c00385{bottom:317.333333pt;}
.yc_c00385{bottom:360.000000pt;}
.yb_c00385{bottom:384.000000pt;}
.ya_c00385{bottom:408.000000pt;}
.y8_c00385{bottom:448.000000pt;}
.y7_c00385{bottom:829.333333pt;}
.y6_c00385{bottom:853.333333pt;}
.y5_c00385{bottom:877.333333pt;}
.y4_c00385{bottom:901.333333pt;}
.y3_c00385{bottom:925.333333pt;}
.y2_c00385{bottom:949.333333pt;}
.y1_c00385{bottom:973.333333pt;}
.y14_c00385{bottom:1061.333333pt;}
.h3_c00385{height:37.007812pt;}
.h6_c00385{height:39.296875pt;}
.h1_c00385{height:45.562500pt;}
.h4_c00385{height:45.812500pt;}
.h5_c00385{height:49.843750pt;}
.h2_c00385{height:353.333333pt;}
.h0_c00385{height:1122.666667pt;}
.w1_c00385{width:601.333333pt;}
.w0_c00385{width:793.333333pt;}
.x0_c00385{left:0.000000pt;}
.x1_c00385{left:58.204720pt;}
.x2_c00385{left:197.805333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7d9c55d9147116c6d20d79d3.woff2')format("woff");}.ff1_c00386{font-family:ff1_c00386;line-height:0.934082;font-style:normal;font-weight:normal;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_9ac752046f20ea39f4eb7df4.woff2')format("woff");}.ff2_c00386{font-family:ff2_c00386;line-height:1.124023;font-style:normal;font-weight:normal;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_2032567cbed0479568c9db9f.woff2')format("woff");}.ff3_c00386{font-family:ff3_c00386;line-height:1.155762;font-style: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;}
.ls1_c00386{letter-spacing:0.000000px;}
.ls0_c00386{letter-spacing:0.012000px;}
.sc__c00386{text-shadow:none;}
.sc0_c00386{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00386{-webkit-text-stroke:0px transparent;}
.sc0_c00386{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00386{word-spacing:0.000000px;}
._10_c00386{margin-left:-11.023200px;}
._14_c00386{margin-left:-6.501600px;}
._1_c00386{margin-left:-4.154400px;}
._8_c00386{margin-left:-2.649600px;}
._3_c00386{margin-left:-1.180800px;}
._5_c00386{width:1.324800px;}
._7_c00386{width:2.822400px;}
._9_c00386{width:3.931200px;}
._6_c00386{width:4.960800px;}
._0_c00386{width:6.278400px;}
._4_c00386{width:7.502400px;}
._d_c00386{width:9.028800px;}
._2_c00386{width:10.440000px;}
._e_c00386{width:11.937600px;}
._f_c00386{width:13.896000px;}
._11_c00386{width:15.170400px;}
._13_c00386{width:16.416000px;}
._12_c00386{width:18.360000px;}
._c_c00386{width:21.376800px;}
._a_c00386{width:23.018400px;}
._b_c00386{width:24.890400px;}
.fc0_c00386{color:rgb(0,0,0);}
.fs2_c00386{font-size:60.000000px;}
.fs1_c00386{font-size:66.000000px;}
.fs0_c00386{font-size:72.000000px;}
.y0_c00386{bottom:0.000000px;}
.y1e_c00386{bottom:70.500000px;}
.y1c_c00386{bottom:139.500000px;}
.y1b_c00386{bottom:166.500000px;}
.y1a_c00386{bottom:231.000000px;}
.y19_c00386{bottom:282.000000px;}
.y18_c00386{bottom:309.000000px;}
.y17_c00386{bottom:357.000000px;}
.y16_c00386{bottom:405.000000px;}
.y15_c00386{bottom:432.000000px;}
.y14_c00386{bottom:459.000000px;}
.y13_c00386{bottom:486.000000px;}
.y12_c00386{bottom:534.000000px;}
.y11_c00386{bottom:580.500000px;}
.y10_c00386{bottom:607.500000px;}
.yf_c00386{bottom:655.500000px;}
.ye_c00386{bottom:682.500000px;}
.yd_c00386{bottom:709.500000px;}
.yc_c00386{bottom:736.500000px;}
.yb_c00386{bottom:763.500000px;}
.ya_c00386{bottom:790.500000px;}
.y9_c00386{bottom:817.500000px;}
.y8_c00386{bottom:844.500000px;}
.y7_c00386{bottom:892.500000px;}
.y6_c00386{bottom:939.000000px;}
.y5_c00386{bottom:966.000000px;}
.y4_c00386{bottom:1014.000000px;}
.y3_c00386{bottom:1041.000000px;}
.y2_c00386{bottom:1068.000000px;}
.y1_c00386{bottom:1095.000000px;}
.y1d_c00386{bottom:1194.000000px;}
.h1_c00386{height:51.257812px;}
.h4_c00386{height:56.074219px;}
.h2_c00386{height:62.519531px;}
.h3_c00386{height:68.203125px;}
.h0_c00386{height:1263.000000px;}
.w0_c00386{width:892.500000px;}
.x0_c00386{left:0.000000px;}
.x1_c00386{left:150.519750px;}
.x2_c00386{left:416.782800px;}
.x3_c00386{left:801.992850px;}
@media print{
.v0_c00386{vertical-align:0.000000pt;}
.ls1_c00386{letter-spacing:0.000000pt;}
.ls0_c00386{letter-spacing:0.010667pt;}
.ws0_c00386{word-spacing:0.000000pt;}
._10_c00386{margin-left:-9.798400pt;}
._14_c00386{margin-left:-5.779200pt;}
._1_c00386{margin-left:-3.692800pt;}
._8_c00386{margin-left:-2.355200pt;}
._3_c00386{margin-left:-1.049600pt;}
._5_c00386{width:1.177600pt;}
._7_c00386{width:2.508800pt;}
._9_c00386{width:3.494400pt;}
._6_c00386{width:4.409600pt;}
._0_c00386{width:5.580800pt;}
._4_c00386{width:6.668800pt;}
._d_c00386{width:8.025600pt;}
._2_c00386{width:9.280000pt;}
._e_c00386{width:10.611200pt;}
._f_c00386{width:12.352000pt;}
._11_c00386{width:13.484800pt;}
._13_c00386{width:14.592000pt;}
._12_c00386{width:16.320000pt;}
._c_c00386{width:19.001600pt;}
._a_c00386{width:20.460800pt;}
._b_c00386{width:22.124800pt;}
.fs2_c00386{font-size:53.333333pt;}
.fs1_c00386{font-size:58.666667pt;}
.fs0_c00386{font-size:64.000000pt;}
.y0_c00386{bottom:0.000000pt;}
.y1e_c00386{bottom:62.666667pt;}
.y1c_c00386{bottom:124.000000pt;}
.y1b_c00386{bottom:148.000000pt;}
.y1a_c00386{bottom:205.333333pt;}
.y19_c00386{bottom:250.666667pt;}
.y18_c00386{bottom:274.666667pt;}
.y17_c00386{bottom:317.333333pt;}
.y16_c00386{bottom:360.000000pt;}
.y15_c00386{bottom:384.000000pt;}
.y14_c00386{bottom:408.000000pt;}
.y13_c00386{bottom:432.000000pt;}
.y12_c00386{bottom:474.666667pt;}
.y11_c00386{bottom:516.000000pt;}
.y10_c00386{bottom:540.000000pt;}
.yf_c00386{bottom:582.666667pt;}
.ye_c00386{bottom:606.666667pt;}
.yd_c00386{bottom:630.666667pt;}
.yc_c00386{bottom:654.666667pt;}
.yb_c00386{bottom:678.666667pt;}
.ya_c00386{bottom:702.666667pt;}
.y9_c00386{bottom:726.666667pt;}
.y8_c00386{bottom:750.666667pt;}
.y7_c00386{bottom:793.333333pt;}
.y6_c00386{bottom:834.666667pt;}
.y5_c00386{bottom:858.666667pt;}
.y4_c00386{bottom:901.333333pt;}
.y3_c00386{bottom:925.333333pt;}
.y2_c00386{bottom:949.333333pt;}
.y1_c00386{bottom:973.333333pt;}
.y1d_c00386{bottom:1061.333333pt;}
.h1_c00386{height:45.562500pt;}
.h4_c00386{height:49.843750pt;}
.h2_c00386{height:55.572917pt;}
.h3_c00386{height:60.625000pt;}
.h0_c00386{height:1122.666667pt;}
.w0_c00386{width:793.333333pt;}
.x0_c00386{left:0.000000pt;}
.x1_c00386{left:133.795333pt;}
.x2_c00386{left:370.473600pt;}
.x3_c00386{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6ac9e6a7856e804ffe28d2b9.woff2')format("woff");}.ff1_c00387{font-family:ff1_c00387;line-height:1.124023;font-style:normal;font-weight:normal;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_685313282937902c4c001438.woff2')format("woff");}.ff2_c00387{font-family:ff2_c00387;line-height:0.934082;font-style:normal;font-weight:normal;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_b142a1be93c62a3d3fbc88ea.woff2')format("woff");}.ff3_c00387{font-family:ff3_c00387;line-height:0.975586;font-style:normal;font-weight:normal;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_69f1f20c50652d7dfb5b0573.woff2')format("woff");}.ff4_c00387{font-family:ff4_c00387;line-height:0.756836;font-style:normal;font-weight:normal;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_6fe62581edf62720b7b8f962.woff2')format("woff");}.ff5_c00387{font-family:ff5_c00387;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00387{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00387{vertical-align:0.000000px;}
.ls1_c00387{letter-spacing:0.000000px;}
.ls2_c00387{letter-spacing:0.012000px;}
.ls0_c00387{letter-spacing:10.202400px;}
.sc__c00387{text-shadow:none;}
.sc0_c00387{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00387{-webkit-text-stroke:0px transparent;}
.sc0_c00387{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00387{word-spacing:-19.800000px;}
.ws1_c00387{word-spacing:0.000000px;}
._6_c00387{margin-left:-10.205220px;}
._5_c00387{margin-left:-6.264000px;}
._9_c00387{margin-left:-4.118400px;}
._4_c00387{margin-left:-2.973600px;}
._0_c00387{margin-left:-1.130400px;}
._2_c00387{width:1.814400px;}
._1_c00387{width:2.959200px;}
._3_c00387{width:4.701600px;}
._13_c00387{width:5.961600px;}
._8_c00387{width:7.268820px;}
._7_c00387{width:8.484780px;}
._c_c00387{width:9.532800px;}
._a_c00387{width:11.289600px;}
._f_c00387{width:12.434400px;}
._b_c00387{width:14.212800px;}
._e_c00387{width:15.314400px;}
._d_c00387{width:17.215200px;}
._10_c00387{width:18.799200px;}
._12_c00387{width:21.369600px;}
._11_c00387{width:25.538400px;}
.fc1_c00387{color:transparent;}
.fc0_c00387{color:rgb(0,0,0);}
.fs2_c00387{font-size:54.000000px;}
.fs3_c00387{font-size:60.000000px;}
.fs0_c00387{font-size:66.000000px;}
.fs1_c00387{font-size:72.000000px;}
.y0_c00387{bottom:0.000000px;}
.y13_c00387{bottom:10.500000px;}
.y15_c00387{bottom:70.500000px;}
.y12_c00387{bottom:135.000000px;}
.y11_c00387{bottom:580.500000px;}
.y10_c00387{bottom:607.500000px;}
.yf_c00387{bottom:655.500000px;}
.ye_c00387{bottom:682.500000px;}
.yd_c00387{bottom:709.500000px;}
.yc_c00387{bottom:736.500000px;}
.yb_c00387{bottom:763.500000px;}
.ya_c00387{bottom:790.500000px;}
.y9_c00387{bottom:817.500000px;}
.y8_c00387{bottom:844.500000px;}
.y7_c00387{bottom:892.500000px;}
.y6_c00387{bottom:919.500000px;}
.y5_c00387{bottom:946.500000px;}
.y4_c00387{bottom:973.500000px;}
.y3_c00387{bottom:1021.500000px;}
.y2_c00387{bottom:1048.500000px;}
.y1_c00387{bottom:1096.500000px;}
.y14_c00387{bottom:1194.000000px;}
.h4_c00387{height:41.633789px;}
.h6_c00387{height:44.208984px;}
.h2_c00387{height:51.257812px;}
.h5_c00387{height:56.074219px;}
.h1_c00387{height:62.519531px;}
.h3_c00387{height:435.000000px;}
.h0_c00387{height:1263.000000px;}
.w1_c00387{width:676.500000px;}
.w0_c00387{width:892.500000px;}
.x0_c00387{left:0.000000px;}
.x1_c00387{left:65.480310px;}
.x2_c00387{left:272.793450px;}
@media print{
.v0_c00387{vertical-align:0.000000pt;}
.ls1_c00387{letter-spacing:0.000000pt;}
.ls2_c00387{letter-spacing:0.010667pt;}
.ls0_c00387{letter-spacing:9.068800pt;}
.ws0_c00387{word-spacing:-17.600000pt;}
.ws1_c00387{word-spacing:0.000000pt;}
._6_c00387{margin-left:-9.071307pt;}
._5_c00387{margin-left:-5.568000pt;}
._9_c00387{margin-left:-3.660800pt;}
._4_c00387{margin-left:-2.643200pt;}
._0_c00387{margin-left:-1.004800pt;}
._2_c00387{width:1.612800pt;}
._1_c00387{width:2.630400pt;}
._3_c00387{width:4.179200pt;}
._13_c00387{width:5.299200pt;}
._8_c00387{width:6.461173pt;}
._7_c00387{width:7.542027pt;}
._c_c00387{width:8.473600pt;}
._a_c00387{width:10.035200pt;}
._f_c00387{width:11.052800pt;}
._b_c00387{width:12.633600pt;}
._e_c00387{width:13.612800pt;}
._d_c00387{width:15.302400pt;}
._10_c00387{width:16.710400pt;}
._12_c00387{width:18.995200pt;}
._11_c00387{width:22.700800pt;}
.fs2_c00387{font-size:48.000000pt;}
.fs3_c00387{font-size:53.333333pt;}
.fs0_c00387{font-size:58.666667pt;}
.fs1_c00387{font-size:64.000000pt;}
.y0_c00387{bottom:0.000000pt;}
.y13_c00387{bottom:9.333333pt;}
.y15_c00387{bottom:62.666667pt;}
.y12_c00387{bottom:120.000000pt;}
.y11_c00387{bottom:516.000000pt;}
.y10_c00387{bottom:540.000000pt;}
.yf_c00387{bottom:582.666667pt;}
.ye_c00387{bottom:606.666667pt;}
.yd_c00387{bottom:630.666667pt;}
.yc_c00387{bottom:654.666667pt;}
.yb_c00387{bottom:678.666667pt;}
.ya_c00387{bottom:702.666667pt;}
.y9_c00387{bottom:726.666667pt;}
.y8_c00387{bottom:750.666667pt;}
.y7_c00387{bottom:793.333333pt;}
.y6_c00387{bottom:817.333333pt;}
.y5_c00387{bottom:841.333333pt;}
.y4_c00387{bottom:865.333333pt;}
.y3_c00387{bottom:908.000000pt;}
.y2_c00387{bottom:932.000000pt;}
.y1_c00387{bottom:974.666667pt;}
.y14_c00387{bottom:1061.333333pt;}
.h4_c00387{height:37.007812pt;}
.h6_c00387{height:39.296875pt;}
.h2_c00387{height:45.562500pt;}
.h5_c00387{height:49.843750pt;}
.h1_c00387{height:55.572917pt;}
.h3_c00387{height:386.666667pt;}
.h0_c00387{height:1122.666667pt;}
.w1_c00387{width:601.333333pt;}
.w0_c00387{width:793.333333pt;}
.x0_c00387{left:0.000000pt;}
.x1_c00387{left:58.204720pt;}
.x2_c00387{left:242.483067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9cc0aa874d83ba21afc2212b.woff2')format("woff");}.ff1_c00388{font-family:ff1_c00388;line-height:1.163086;font-style:normal;font-weight:normal;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_c632ff3aa19ad2de7c7b86b9.woff2')format("woff");}.ff2_c00388{font-family:ff2_c00388;line-height:0.976074;font-style:normal;font-weight:normal;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_854a149f9a852fb3c2776754.woff2')format("woff");}.ff3_c00388{font-family:ff3_c00388;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00388{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00388{vertical-align:0.000000px;}
.ls1_c00388{letter-spacing:0.000000px;}
.ls0_c00388{letter-spacing:0.012000px;}
.ls2_c00388{letter-spacing:4.197600px;}
.sc__c00388{text-shadow:none;}
.sc0_c00388{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00388{-webkit-text-stroke:0px transparent;}
.sc0_c00388{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00388{word-spacing:-19.800000px;}
.ws1_c00388{word-spacing:0.000000px;}
._17_c00388{margin-left:-6.487200px;}
._5_c00388{margin-left:-4.197600px;}
._0_c00388{margin-left:-2.887200px;}
._7_c00388{margin-left:-1.785600px;}
._3_c00388{width:1.382400px;}
._4_c00388{width:2.908800px;}
._2_c00388{width:4.327200px;}
._8_c00388{width:6.120000px;}
._1_c00388{width:7.200000px;}
._6_c00388{width:8.532000px;}
._10_c00388{width:9.727200px;}
._16_c00388{width:11.066400px;}
._12_c00388{width:12.657600px;}
._15_c00388{width:13.996800px;}
._11_c00388{width:15.775200px;}
._13_c00388{width:16.876800px;}
._14_c00388{width:18.216000px;}
._18_c00388{width:21.232800px;}
._e_c00388{width:22.291200px;}
._f_c00388{width:23.839200px;}
._9_c00388{width:25.689600px;}
._d_c00388{width:27.158400px;}
._a_c00388{width:28.591200px;}
._c_c00388{width:30.412800px;}
._b_c00388{width:32.788800px;}
.fc1_c00388{color:transparent;}
.fc0_c00388{color:rgb(0,0,0);}
.fs1_c00388{font-size:54.000000px;}
.fs2_c00388{font-size:60.000000px;}
.fs0_c00388{font-size:72.000000px;}
.y0_c00388{bottom:0.000000px;}
.y8_c00388{bottom:10.500000px;}
.y17_c00388{bottom:70.500000px;}
.y15_c00388{bottom:157.500000px;}
.y14_c00388{bottom:184.500000px;}
.y13_c00388{bottom:211.500000px;}
.y12_c00388{bottom:238.500000px;}
.y11_c00388{bottom:265.500000px;}
.y10_c00388{bottom:313.500000px;}
.yf_c00388{bottom:340.500000px;}
.ye_c00388{bottom:367.500000px;}
.yd_c00388{bottom:394.500000px;}
.yc_c00388{bottom:442.500000px;}
.yb_c00388{bottom:469.500000px;}
.ya_c00388{bottom:496.500000px;}
.y9_c00388{bottom:523.500000px;}
.y7_c00388{bottom:568.500000px;}
.y6_c00388{bottom:960.000000px;}
.y5_c00388{bottom:987.000000px;}
.y4_c00388{bottom:1014.000000px;}
.y3_c00388{bottom:1041.000000px;}
.y2_c00388{bottom:1068.000000px;}
.y1_c00388{bottom:1095.000000px;}
.y16_c00388{bottom:1194.000000px;}
.h3_c00388{height:42.292969px;}
.h4_c00388{height:56.074219px;}
.h1_c00388{height:67.746094px;}
.h2_c00388{height:360.000000px;}
.h0_c00388{height:1263.000000px;}
.w1_c00388{width:676.500000px;}
.w0_c00388{width:892.500000px;}
.x0_c00388{left:0.000000px;}
.x2_c00388{left:118.495965px;}
.x1_c00388{left:150.519750px;}
.x3_c00388{left:416.782800px;}
.x4_c00388{left:801.992850px;}
@media print{
.v0_c00388{vertical-align:0.000000pt;}
.ls1_c00388{letter-spacing:0.000000pt;}
.ls0_c00388{letter-spacing:0.010667pt;}
.ls2_c00388{letter-spacing:3.731200pt;}
.ws0_c00388{word-spacing:-17.600000pt;}
.ws1_c00388{word-spacing:0.000000pt;}
._17_c00388{margin-left:-5.766400pt;}
._5_c00388{margin-left:-3.731200pt;}
._0_c00388{margin-left:-2.566400pt;}
._7_c00388{margin-left:-1.587200pt;}
._3_c00388{width:1.228800pt;}
._4_c00388{width:2.585600pt;}
._2_c00388{width:3.846400pt;}
._8_c00388{width:5.440000pt;}
._1_c00388{width:6.400000pt;}
._6_c00388{width:7.584000pt;}
._10_c00388{width:8.646400pt;}
._16_c00388{width:9.836800pt;}
._12_c00388{width:11.251200pt;}
._15_c00388{width:12.441600pt;}
._11_c00388{width:14.022400pt;}
._13_c00388{width:15.001600pt;}
._14_c00388{width:16.192000pt;}
._18_c00388{width:18.873600pt;}
._e_c00388{width:19.814400pt;}
._f_c00388{width:21.190400pt;}
._9_c00388{width:22.835200pt;}
._d_c00388{width:24.140800pt;}
._a_c00388{width:25.414400pt;}
._c_c00388{width:27.033600pt;}
._b_c00388{width:29.145600pt;}
.fs1_c00388{font-size:48.000000pt;}
.fs2_c00388{font-size:53.333333pt;}
.fs0_c00388{font-size:64.000000pt;}
.y0_c00388{bottom:0.000000pt;}
.y8_c00388{bottom:9.333333pt;}
.y17_c00388{bottom:62.666667pt;}
.y15_c00388{bottom:140.000000pt;}
.y14_c00388{bottom:164.000000pt;}
.y13_c00388{bottom:188.000000pt;}
.y12_c00388{bottom:212.000000pt;}
.y11_c00388{bottom:236.000000pt;}
.y10_c00388{bottom:278.666667pt;}
.yf_c00388{bottom:302.666667pt;}
.ye_c00388{bottom:326.666667pt;}
.yd_c00388{bottom:350.666667pt;}
.yc_c00388{bottom:393.333333pt;}
.yb_c00388{bottom:417.333333pt;}
.ya_c00388{bottom:441.333333pt;}
.y9_c00388{bottom:465.333333pt;}
.y7_c00388{bottom:505.333333pt;}
.y6_c00388{bottom:853.333333pt;}
.y5_c00388{bottom:877.333333pt;}
.y4_c00388{bottom:901.333333pt;}
.y3_c00388{bottom:925.333333pt;}
.y2_c00388{bottom:949.333333pt;}
.y1_c00388{bottom:973.333333pt;}
.y16_c00388{bottom:1061.333333pt;}
.h3_c00388{height:37.593750pt;}
.h4_c00388{height:49.843750pt;}
.h1_c00388{height:60.218750pt;}
.h2_c00388{height:320.000000pt;}
.h0_c00388{height:1122.666667pt;}
.w1_c00388{width:601.333333pt;}
.w0_c00388{width:793.333333pt;}
.x0_c00388{left:0.000000pt;}
.x2_c00388{left:105.329747pt;}
.x1_c00388{left:133.795333pt;}
.x3_c00388{left:370.473600pt;}
.x4_c00388{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f24b329c29e0ef1003e4a20f.woff2')format("woff");}.ff1_c00389{font-family:ff1_c00389;line-height:0.987793;font-style:normal;font-weight:normal;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_f9d0ba82bd7a78362cf9134c.woff2')format("woff");}.ff2_c00389{font-family:ff2_c00389;line-height:1.163086;font-style:normal;font-weight:normal;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_2f9c539603b68a1305513d74.woff2')format("woff");}.ff3_c00389{font-family:ff3_c00389;line-height:0.756836;font-style:normal;font-weight:normal;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_9140aea5e8dcc4c9122b38d8.woff2')format("woff");}.ff4_c00389{font-family:ff4_c00389;line-height:1.155762;font-style: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;}
.ls0_c00389{letter-spacing:0.000000px;}
.ls1_c00389{letter-spacing:0.012000px;}
.sc__c00389{text-shadow:none;}
.sc0_c00389{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00389{-webkit-text-stroke:0px transparent;}
.sc0_c00389{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00389{word-spacing:0.000000px;}
._5_c00389{margin-left:-7.185600px;}
._d_c00389{margin-left:-4.953600px;}
._f_c00389{margin-left:-3.736800px;}
._0_c00389{margin-left:-2.376000px;}
._3_c00389{margin-left:-1.195200px;}
._8_c00389{width:1.209600px;}
._6_c00389{width:2.599200px;}
._e_c00389{width:3.996000px;}
._7_c00389{width:5.068800px;}
._2_c00389{width:6.228000px;}
._4_c00389{width:7.437600px;}
._1_c00389{width:8.611200px;}
._11_c00389{width:12.679200px;}
._a_c00389{width:14.932800px;}
._10_c00389{width:16.372800px;}
._b_c00389{width:18.079200px;}
._9_c00389{width:21.182400px;}
._c_c00389{width:22.888800px;}
.fc1_c00389{color:transparent;}
.fc0_c00389{color:rgb(0,0,0);}
.fs0_c00389{font-size:54.000000px;}
.fs2_c00389{font-size:60.000000px;}
.fs1_c00389{font-size:72.000000px;}
.y0_c00389{bottom:0.000000px;}
.y2_c00389{bottom:10.500000px;}
.yd_c00389{bottom:70.500000px;}
.yb_c00389{bottom:132.000000px;}
.ya_c00389{bottom:508.500000px;}
.y9_c00389{bottom:535.500000px;}
.y8_c00389{bottom:562.500000px;}
.y7_c00389{bottom:589.500000px;}
.y6_c00389{bottom:616.500000px;}
.y5_c00389{bottom:643.500000px;}
.y4_c00389{bottom:670.500000px;}
.y3_c00389{bottom:697.500000px;}
.y1_c00389{bottom:742.500000px;}
.yc_c00389{bottom:1194.000000px;}
.h2_c00389{height:42.292969px;}
.h6_c00389{height:44.208984px;}
.h5_c00389{height:56.074219px;}
.h3_c00389{height:67.746094px;}
.h4_c00389{height:345.000000px;}
.h1_c00389{height:370.500000px;}
.h0_c00389{height:1263.000000px;}
.w1_c00389{width:676.500000px;}
.w0_c00389{width:892.500000px;}
.x0_c00389{left:0.000000px;}
.x3_c00389{left:35.989725px;}
.x2_c00389{left:40.337040px;}
.x1_c00389{left:66.000000px;}
@media print{
.v0_c00389{vertical-align:0.000000pt;}
.ls0_c00389{letter-spacing:0.000000pt;}
.ls1_c00389{letter-spacing:0.010667pt;}
.ws0_c00389{word-spacing:0.000000pt;}
._5_c00389{margin-left:-6.387200pt;}
._d_c00389{margin-left:-4.403200pt;}
._f_c00389{margin-left:-3.321600pt;}
._0_c00389{margin-left:-2.112000pt;}
._3_c00389{margin-left:-1.062400pt;}
._8_c00389{width:1.075200pt;}
._6_c00389{width:2.310400pt;}
._e_c00389{width:3.552000pt;}
._7_c00389{width:4.505600pt;}
._2_c00389{width:5.536000pt;}
._4_c00389{width:6.611200pt;}
._1_c00389{width:7.654400pt;}
._11_c00389{width:11.270400pt;}
._a_c00389{width:13.273600pt;}
._10_c00389{width:14.553600pt;}
._b_c00389{width:16.070400pt;}
._9_c00389{width:18.828800pt;}
._c_c00389{width:20.345600pt;}
.fs0_c00389{font-size:48.000000pt;}
.fs2_c00389{font-size:53.333333pt;}
.fs1_c00389{font-size:64.000000pt;}
.y0_c00389{bottom:0.000000pt;}
.y2_c00389{bottom:9.333333pt;}
.yd_c00389{bottom:62.666667pt;}
.yb_c00389{bottom:117.333333pt;}
.ya_c00389{bottom:452.000000pt;}
.y9_c00389{bottom:476.000000pt;}
.y8_c00389{bottom:500.000000pt;}
.y7_c00389{bottom:524.000000pt;}
.y6_c00389{bottom:548.000000pt;}
.y5_c00389{bottom:572.000000pt;}
.y4_c00389{bottom:596.000000pt;}
.y3_c00389{bottom:620.000000pt;}
.y1_c00389{bottom:660.000000pt;}
.yc_c00389{bottom:1061.333333pt;}
.h2_c00389{height:37.593750pt;}
.h6_c00389{height:39.296875pt;}
.h5_c00389{height:49.843750pt;}
.h3_c00389{height:60.218750pt;}
.h4_c00389{height:306.666667pt;}
.h1_c00389{height:329.333333pt;}
.h0_c00389{height:1122.666667pt;}
.w1_c00389{width:601.333333pt;}
.w0_c00389{width:793.333333pt;}
.x0_c00389{left:0.000000pt;}
.x3_c00389{left:31.990867pt;}
.x2_c00389{left:35.855147pt;}
.x1_c00389{left:58.666667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_cd40ff90f8db111b11116f89.woff2')format("woff");}.ff1_c00390{font-family:ff1_c00390;line-height:0.934082;font-style:normal;font-weight:normal;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_1bc4467ac5f974fb29d231fb.woff2')format("woff");}.ff2_c00390{font-family:ff2_c00390;line-height:0.975586;font-style:normal;font-weight:normal;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_c6d0b65b9dbba34a1928dafe.woff2')format("woff");}.ff3_c00390{font-family:ff3_c00390;line-height:1.155762;font-style: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);}
.v0_c00390{vertical-align:0.000000px;}
.ls1_c00390{letter-spacing:0.000000px;}
.ls0_c00390{letter-spacing:0.012000px;}
.ls2_c00390{letter-spacing:16.200000px;}
.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;}
}
.ws0_c00390{word-spacing:-19.800000px;}
.ws1_c00390{word-spacing:0.000000px;}
._7_c00390{margin-left:-15.124200px;}
._12_c00390{margin-left:-4.638600px;}
._3_c00390{margin-left:-3.621600px;}
._1_c00390{margin-left:-1.598400px;}
._6_c00390{width:1.389600px;}
._5_c00390{width:2.685600px;}
._a_c00390{width:3.772800px;}
._0_c00390{width:5.184000px;}
._2_c00390{width:6.811200px;}
._11_c00390{width:7.840800px;}
._4_c00390{width:8.884800px;}
._b_c00390{width:10.375200px;}
._8_c00390{width:11.772000px;}
._9_c00390{width:13.728600px;}
._14_c00390{width:20.919600px;}
._13_c00390{width:22.219200px;}
._e_c00390{width:24.566400px;}
._10_c00390{width:25.790400px;}
._d_c00390{width:27.244800px;}
._f_c00390{width:28.843200px;}
._c_c00390{width:30.880800px;}
.fc1_c00390{color:transparent;}
.fc0_c00390{color:rgb(0,0,0);}
.fs1_c00390{font-size:54.000000px;}
.fs2_c00390{font-size:60.000000px;}
.fs0_c00390{font-size:72.000000px;}
.y0_c00390{bottom:0.000000px;}
.yf_c00390{bottom:10.500000px;}
.y11_c00390{bottom:70.500000px;}
.ye_c00390{bottom:135.000000px;}
.yd_c00390{bottom:708.000000px;}
.yc_c00390{bottom:735.000000px;}
.yb_c00390{bottom:762.000000px;}
.ya_c00390{bottom:789.000000px;}
.y9_c00390{bottom:816.000000px;}
.y8_c00390{bottom:843.000000px;}
.y7_c00390{bottom:870.000000px;}
.y6_c00390{bottom:897.000000px;}
.y5_c00390{bottom:924.000000px;}
.y4_c00390{bottom:972.000000px;}
.y3_c00390{bottom:1020.000000px;}
.y2_c00390{bottom:1068.000000px;}
.y1_c00390{bottom:1095.000000px;}
.y10_c00390{bottom:1194.000000px;}
.h3_c00390{height:41.633789px;}
.h1_c00390{height:51.257812px;}
.h4_c00390{height:56.074219px;}
.h2_c00390{height:541.500000px;}
.h0_c00390{height:1263.000000px;}
.w1_c00390{width:676.500000px;}
.w0_c00390{width:892.500000px;}
.x0_c00390{left:0.000000px;}
.x1_c00390{left:150.519750px;}
.x2_c00390{left:177.584850px;}
.x3_c00390{left:416.782800px;}
.x4_c00390{left:801.992850px;}
@media print{
.v0_c00390{vertical-align:0.000000pt;}
.ls1_c00390{letter-spacing:0.000000pt;}
.ls0_c00390{letter-spacing:0.010667pt;}
.ls2_c00390{letter-spacing:14.400000pt;}
.ws0_c00390{word-spacing:-17.600000pt;}
.ws1_c00390{word-spacing:0.000000pt;}
._7_c00390{margin-left:-13.443733pt;}
._12_c00390{margin-left:-4.123200pt;}
._3_c00390{margin-left:-3.219200pt;}
._1_c00390{margin-left:-1.420800pt;}
._6_c00390{width:1.235200pt;}
._5_c00390{width:2.387200pt;}
._a_c00390{width:3.353600pt;}
._0_c00390{width:4.608000pt;}
._2_c00390{width:6.054400pt;}
._11_c00390{width:6.969600pt;}
._4_c00390{width:7.897600pt;}
._b_c00390{width:9.222400pt;}
._8_c00390{width:10.464000pt;}
._9_c00390{width:12.203200pt;}
._14_c00390{width:18.595200pt;}
._13_c00390{width:19.750400pt;}
._e_c00390{width:21.836800pt;}
._10_c00390{width:22.924800pt;}
._d_c00390{width:24.217600pt;}
._f_c00390{width:25.638400pt;}
._c_c00390{width:27.449600pt;}
.fs1_c00390{font-size:48.000000pt;}
.fs2_c00390{font-size:53.333333pt;}
.fs0_c00390{font-size:64.000000pt;}
.y0_c00390{bottom:0.000000pt;}
.yf_c00390{bottom:9.333333pt;}
.y11_c00390{bottom:62.666667pt;}
.ye_c00390{bottom:120.000000pt;}
.yd_c00390{bottom:629.333333pt;}
.yc_c00390{bottom:653.333333pt;}
.yb_c00390{bottom:677.333333pt;}
.ya_c00390{bottom:701.333333pt;}
.y9_c00390{bottom:725.333333pt;}
.y8_c00390{bottom:749.333333pt;}
.y7_c00390{bottom:773.333333pt;}
.y6_c00390{bottom:797.333333pt;}
.y5_c00390{bottom:821.333333pt;}
.y4_c00390{bottom:864.000000pt;}
.y3_c00390{bottom:906.666667pt;}
.y2_c00390{bottom:949.333333pt;}
.y1_c00390{bottom:973.333333pt;}
.y10_c00390{bottom:1061.333333pt;}
.h3_c00390{height:37.007812pt;}
.h1_c00390{height:45.562500pt;}
.h4_c00390{height:49.843750pt;}
.h2_c00390{height:481.333333pt;}
.h0_c00390{height:1122.666667pt;}
.w1_c00390{width:601.333333pt;}
.w0_c00390{width:793.333333pt;}
.x0_c00390{left:0.000000pt;}
.x1_c00390{left:133.795333pt;}
.x2_c00390{left:157.853200pt;}
.x3_c00390{left:370.473600pt;}
.x4_c00390{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_08b32486f6002b6a2f2ce830.woff2')format("woff");}.ff1_c00391{font-family:ff1_c00391;line-height:0.934082;font-style:normal;font-weight:normal;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_bd2fc7e884c8ccfeb7fed11c.woff2')format("woff");}.ff2_c00391{font-family:ff2_c00391;line-height:0.963867;font-style:normal;font-weight:normal;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_50f50e75a14d1af5a2f8c74e.woff2')format("woff");}.ff3_c00391{font-family:ff3_c00391;line-height:0.756836;font-style:normal;font-weight:normal;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_cfe29e3a4886f212758f5d35.woff2')format("woff");}.ff4_c00391{font-family:ff4_c00391;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00391{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00391{vertical-align:0.000000px;}
.ls0_c00391{letter-spacing:0.000000px;}
.ls1_c00391{letter-spacing:0.012000px;}
.sc__c00391{text-shadow:none;}
.sc0_c00391{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00391{-webkit-text-stroke:0px transparent;}
.sc0_c00391{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00391{word-spacing:-19.800000px;}
.ws1_c00391{word-spacing:0.000000px;}
._6_c00391{margin-left:-7.171200px;}
._d_c00391{margin-left:-4.744800px;}
._4_c00391{margin-left:-2.779200px;}
._2_c00391{margin-left:-1.670400px;}
._3_c00391{width:1.483200px;}
._0_c00391{width:3.391200px;}
._1_c00391{width:5.068800px;}
._5_c00391{width:7.048800px;}
._9_c00391{width:8.265600px;}
._8_c00391{width:9.950400px;}
._7_c00391{width:11.030400px;}
._b_c00391{width:12.679200px;}
._a_c00391{width:14.637600px;}
._c_c00391{width:15.703200px;}
._e_c00391{width:17.949600px;}
._12_c00391{width:21.045600px;}
._f_c00391{width:22.471200px;}
._10_c00391{width:24.084000px;}
._11_c00391{width:26.481600px;}
._13_c00391{width:27.705600px;}
.fc1_c00391{color:transparent;}
.fc0_c00391{color:rgb(0,0,0);}
.fs1_c00391{font-size:54.000000px;}
.fs2_c00391{font-size:60.000000px;}
.fs0_c00391{font-size:72.000000px;}
.y0_c00391{bottom:0.000000px;}
.y10_c00391{bottom:10.500000px;}
.y14_c00391{bottom:70.500000px;}
.y12_c00391{bottom:133.500000px;}
.y11_c00391{bottom:160.500000px;}
.yf_c00391{bottom:205.500000px;}
.ye_c00391{bottom:723.000000px;}
.yd_c00391{bottom:750.000000px;}
.yc_c00391{bottom:777.000000px;}
.yb_c00391{bottom:804.000000px;}
.ya_c00391{bottom:831.000000px;}
.y9_c00391{bottom:858.000000px;}
.y8_c00391{bottom:885.000000px;}
.y7_c00391{bottom:912.000000px;}
.y6_c00391{bottom:960.000000px;}
.y5_c00391{bottom:987.000000px;}
.y4_c00391{bottom:1014.000000px;}
.y3_c00391{bottom:1041.000000px;}
.y2_c00391{bottom:1068.000000px;}
.y1_c00391{bottom:1095.000000px;}
.y13_c00391{bottom:1194.000000px;}
.h3_c00391{height:41.633789px;}
.h5_c00391{height:44.208984px;}
.h1_c00391{height:51.257812px;}
.h4_c00391{height:56.074219px;}
.h2_c00391{height:486.000000px;}
.h0_c00391{height:1263.000000px;}
.w1_c00391{width:676.500000px;}
.w0_c00391{width:892.500000px;}
.x0_c00391{left:0.000000px;}
.x1_c00391{left:65.480310px;}
.x2_c00391{left:184.911600px;}
@media print{
.v0_c00391{vertical-align:0.000000pt;}
.ls0_c00391{letter-spacing:0.000000pt;}
.ls1_c00391{letter-spacing:0.010667pt;}
.ws0_c00391{word-spacing:-17.600000pt;}
.ws1_c00391{word-spacing:0.000000pt;}
._6_c00391{margin-left:-6.374400pt;}
._d_c00391{margin-left:-4.217600pt;}
._4_c00391{margin-left:-2.470400pt;}
._2_c00391{margin-left:-1.484800pt;}
._3_c00391{width:1.318400pt;}
._0_c00391{width:3.014400pt;}
._1_c00391{width:4.505600pt;}
._5_c00391{width:6.265600pt;}
._9_c00391{width:7.347200pt;}
._8_c00391{width:8.844800pt;}
._7_c00391{width:9.804800pt;}
._b_c00391{width:11.270400pt;}
._a_c00391{width:13.011200pt;}
._c_c00391{width:13.958400pt;}
._e_c00391{width:15.955200pt;}
._12_c00391{width:18.707200pt;}
._f_c00391{width:19.974400pt;}
._10_c00391{width:21.408000pt;}
._11_c00391{width:23.539200pt;}
._13_c00391{width:24.627200pt;}
.fs1_c00391{font-size:48.000000pt;}
.fs2_c00391{font-size:53.333333pt;}
.fs0_c00391{font-size:64.000000pt;}
.y0_c00391{bottom:0.000000pt;}
.y10_c00391{bottom:9.333333pt;}
.y14_c00391{bottom:62.666667pt;}
.y12_c00391{bottom:118.666667pt;}
.y11_c00391{bottom:142.666667pt;}
.yf_c00391{bottom:182.666667pt;}
.ye_c00391{bottom:642.666667pt;}
.yd_c00391{bottom:666.666667pt;}
.yc_c00391{bottom:690.666667pt;}
.yb_c00391{bottom:714.666667pt;}
.ya_c00391{bottom:738.666667pt;}
.y9_c00391{bottom:762.666667pt;}
.y8_c00391{bottom:786.666667pt;}
.y7_c00391{bottom:810.666667pt;}
.y6_c00391{bottom:853.333333pt;}
.y5_c00391{bottom:877.333333pt;}
.y4_c00391{bottom:901.333333pt;}
.y3_c00391{bottom:925.333333pt;}
.y2_c00391{bottom:949.333333pt;}
.y1_c00391{bottom:973.333333pt;}
.y13_c00391{bottom:1061.333333pt;}
.h3_c00391{height:37.007812pt;}
.h5_c00391{height:39.296875pt;}
.h1_c00391{height:45.562500pt;}
.h4_c00391{height:49.843750pt;}
.h2_c00391{height:432.000000pt;}
.h0_c00391{height:1122.666667pt;}
.w1_c00391{width:601.333333pt;}
.w0_c00391{width:793.333333pt;}
.x0_c00391{left:0.000000pt;}
.x1_c00391{left:58.204720pt;}
.x2_c00391{left:164.365867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_edee6c55bd6d8e9a1d563971.woff2')format("woff");}.ff1_c00392{font-family:ff1_c00392;line-height:0.934082;font-style:normal;font-weight:normal;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_0af745c3b3afdaa91bcf5bff.woff2')format("woff");}.ff2_c00392{font-family:ff2_c00392;line-height:0.783203;font-style:normal;font-weight:normal;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_7631eeb693925ccd0669a0ea.woff2')format("woff");}.ff3_c00392{font-family:ff3_c00392;line-height:1.155762;font-style: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;}
.ls1_c00392{letter-spacing:0.000000px;}
.ls0_c00392{letter-spacing:0.012000px;}
.sc__c00392{text-shadow:none;}
.sc0_c00392{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00392{-webkit-text-stroke:0px transparent;}
.sc0_c00392{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00392{word-spacing:0.000000px;}
._10_c00392{margin-left:-7.200000px;}
._17_c00392{margin-left:-5.061600px;}
._2_c00392{margin-left:-3.945600px;}
._9_c00392{margin-left:-2.174400px;}
._0_c00392{margin-left:-1.166400px;}
._7_c00392{width:1.224000px;}
._4_c00392{width:2.880000px;}
._3_c00392{width:4.039200px;}
._8_c00392{width:5.695200px;}
._5_c00392{width:6.861600px;}
._1_c00392{width:8.071200px;}
._e_c00392{width:9.187200px;}
._6_c00392{width:10.922400px;}
._d_c00392{width:12.074400px;}
._b_c00392{width:13.190400px;}
._18_c00392{width:14.284800px;}
._c_c00392{width:15.328800px;}
._a_c00392{width:16.552800px;}
._f_c00392{width:17.762400px;}
._12_c00392{width:21.067200px;}
._11_c00392{width:22.226400px;}
._14_c00392{width:24.091200px;}
._15_c00392{width:25.718400px;}
._16_c00392{width:26.964000px;}
._13_c00392{width:29.102400px;}
.fc1_c00392{color:transparent;}
.fc0_c00392{color:rgb(0,0,0);}
.fs1_c00392{font-size:54.000000px;}
.fs2_c00392{font-size:60.000000px;}
.fs0_c00392{font-size:72.000000px;}
.y0_c00392{bottom:0.000000px;}
.ye_c00392{bottom:10.500000px;}
.y18_c00392{bottom:70.500000px;}
.y16_c00392{bottom:138.000000px;}
.y15_c00392{bottom:165.000000px;}
.y14_c00392{bottom:192.000000px;}
.y13_c00392{bottom:219.000000px;}
.y12_c00392{bottom:246.000000px;}
.y11_c00392{bottom:273.000000px;}
.y10_c00392{bottom:300.000000px;}
.yf_c00392{bottom:327.000000px;}
.yd_c00392{bottom:372.000000px;}
.yc_c00392{bottom:777.000000px;}
.yb_c00392{bottom:804.000000px;}
.ya_c00392{bottom:831.000000px;}
.y9_c00392{bottom:858.000000px;}
.y8_c00392{bottom:885.000000px;}
.y7_c00392{bottom:912.000000px;}
.y6_c00392{bottom:939.000000px;}
.y5_c00392{bottom:966.000000px;}
.y4_c00392{bottom:993.000000px;}
.y3_c00392{bottom:1041.000000px;}
.y2_c00392{bottom:1068.000000px;}
.y1_c00392{bottom:1095.000000px;}
.y17_c00392{bottom:1194.000000px;}
.h3_c00392{height:41.633789px;}
.h1_c00392{height:51.257812px;}
.h4_c00392{height:56.074219px;}
.h2_c00392{height:373.500000px;}
.h0_c00392{height:1263.000000px;}
.w1_c00392{width:676.500000px;}
.w0_c00392{width:892.500000px;}
.x0_c00392{left:0.000000px;}
.x1_c00392{left:150.519750px;}
.x2_c00392{left:218.885700px;}
.x3_c00392{left:416.782800px;}
.x4_c00392{left:801.992850px;}
@media print{
.v0_c00392{vertical-align:0.000000pt;}
.ls1_c00392{letter-spacing:0.000000pt;}
.ls0_c00392{letter-spacing:0.010667pt;}
.ws0_c00392{word-spacing:0.000000pt;}
._10_c00392{margin-left:-6.400000pt;}
._17_c00392{margin-left:-4.499200pt;}
._2_c00392{margin-left:-3.507200pt;}
._9_c00392{margin-left:-1.932800pt;}
._0_c00392{margin-left:-1.036800pt;}
._7_c00392{width:1.088000pt;}
._4_c00392{width:2.560000pt;}
._3_c00392{width:3.590400pt;}
._8_c00392{width:5.062400pt;}
._5_c00392{width:6.099200pt;}
._1_c00392{width:7.174400pt;}
._e_c00392{width:8.166400pt;}
._6_c00392{width:9.708800pt;}
._d_c00392{width:10.732800pt;}
._b_c00392{width:11.724800pt;}
._18_c00392{width:12.697600pt;}
._c_c00392{width:13.625600pt;}
._a_c00392{width:14.713600pt;}
._f_c00392{width:15.788800pt;}
._12_c00392{width:18.726400pt;}
._11_c00392{width:19.756800pt;}
._14_c00392{width:21.414400pt;}
._15_c00392{width:22.860800pt;}
._16_c00392{width:23.968000pt;}
._13_c00392{width:25.868800pt;}
.fs1_c00392{font-size:48.000000pt;}
.fs2_c00392{font-size:53.333333pt;}
.fs0_c00392{font-size:64.000000pt;}
.y0_c00392{bottom:0.000000pt;}
.ye_c00392{bottom:9.333333pt;}
.y18_c00392{bottom:62.666667pt;}
.y16_c00392{bottom:122.666667pt;}
.y15_c00392{bottom:146.666667pt;}
.y14_c00392{bottom:170.666667pt;}
.y13_c00392{bottom:194.666667pt;}
.y12_c00392{bottom:218.666667pt;}
.y11_c00392{bottom:242.666667pt;}
.y10_c00392{bottom:266.666667pt;}
.yf_c00392{bottom:290.666667pt;}
.yd_c00392{bottom:330.666667pt;}
.yc_c00392{bottom:690.666667pt;}
.yb_c00392{bottom:714.666667pt;}
.ya_c00392{bottom:738.666667pt;}
.y9_c00392{bottom:762.666667pt;}
.y8_c00392{bottom:786.666667pt;}
.y7_c00392{bottom:810.666667pt;}
.y6_c00392{bottom:834.666667pt;}
.y5_c00392{bottom:858.666667pt;}
.y4_c00392{bottom:882.666667pt;}
.y3_c00392{bottom:925.333333pt;}
.y2_c00392{bottom:949.333333pt;}
.y1_c00392{bottom:973.333333pt;}
.y17_c00392{bottom:1061.333333pt;}
.h3_c00392{height:37.007812pt;}
.h1_c00392{height:45.562500pt;}
.h4_c00392{height:49.843750pt;}
.h2_c00392{height:332.000000pt;}
.h0_c00392{height:1122.666667pt;}
.w1_c00392{width:601.333333pt;}
.w0_c00392{width:793.333333pt;}
.x0_c00392{left:0.000000pt;}
.x1_c00392{left:133.795333pt;}
.x2_c00392{left:194.565067pt;}
.x3_c00392{left:370.473600pt;}
.x4_c00392{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a2ebf5269e308af296f4c8f9.woff2')format("woff");}.ff1_c00393{font-family:ff1_c00393;line-height:0.934082;font-style:normal;font-weight:normal;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_9848220b1300e3f0948dee1e.woff2')format("woff");}.ff2_c00393{font-family:ff2_c00393;line-height:0.783203;font-style:normal;font-weight:normal;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_f8b0e1992a18981cd1183a5b.woff2')format("woff");}.ff3_c00393{font-family:ff3_c00393;line-height:0.756348;font-style:normal;font-weight:normal;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_9ed8163dd18b3484ba7167bb.woff2')format("woff");}.ff4_c00393{font-family:ff4_c00393;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00393{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00393{vertical-align:0.000000px;}
.ls0_c00393{letter-spacing:0.000000px;}
.ls1_c00393{letter-spacing:0.012000px;}
.sc__c00393{text-shadow:none;}
.sc0_c00393{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00393{-webkit-text-stroke:0px transparent;}
.sc0_c00393{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00393{word-spacing:-19.800000px;}
.ws1_c00393{word-spacing:0.000000px;}
._9_c00393{margin-left:-3.535200px;}
._0_c00393{margin-left:-2.419200px;}
._3_c00393{margin-left:-1.072800px;}
._8_c00393{width:1.296000px;}
._5_c00393{width:2.448000px;}
._a_c00393{width:3.744000px;}
._7_c00393{width:4.766400px;}
._6_c00393{width:6.184800px;}
._b_c00393{width:7.185600px;}
._2_c00393{width:8.676000px;}
._4_c00393{width:9.698400px;}
._1_c00393{width:11.066400px;}
._d_c00393{width:12.153600px;}
._c_c00393{width:13.968000px;}
._e_c00393{width:16.610400px;}
._f_c00393{width:18.511200px;}
.fc1_c00393{color:transparent;}
.fc0_c00393{color:rgb(0,0,0);}
.fs1_c00393{font-size:54.000000px;}
.fs2_c00393{font-size:60.000000px;}
.fs0_c00393{font-size:72.000000px;}
.y0_c00393{bottom:0.000000px;}
.y5_c00393{bottom:10.500000px;}
.ye_c00393{bottom:70.500000px;}
.yc_c00393{bottom:135.000000px;}
.yb_c00393{bottom:162.000000px;}
.ya_c00393{bottom:189.000000px;}
.y9_c00393{bottom:216.000000px;}
.y8_c00393{bottom:264.000000px;}
.y7_c00393{bottom:291.000000px;}
.y6_c00393{bottom:318.000000px;}
.y4_c00393{bottom:363.000000px;}
.y3_c00393{bottom:1041.000000px;}
.y2_c00393{bottom:1068.000000px;}
.y1_c00393{bottom:1095.000000px;}
.yd_c00393{bottom:1194.000000px;}
.h3_c00393{height:41.633789px;}
.h5_c00393{height:44.208984px;}
.h1_c00393{height:51.257812px;}
.h4_c00393{height:56.074219px;}
.h2_c00393{height:646.500000px;}
.h0_c00393{height:1263.000000px;}
.w1_c00393{width:676.500000px;}
.w0_c00393{width:892.500000px;}
.x0_c00393{left:0.000000px;}
.x1_c00393{left:65.480310px;}
.x2_c00393{left:281.306700px;}
@media print{
.v0_c00393{vertical-align:0.000000pt;}
.ls0_c00393{letter-spacing:0.000000pt;}
.ls1_c00393{letter-spacing:0.010667pt;}
.ws0_c00393{word-spacing:-17.600000pt;}
.ws1_c00393{word-spacing:0.000000pt;}
._9_c00393{margin-left:-3.142400pt;}
._0_c00393{margin-left:-2.150400pt;}
._3_c00393{margin-left:-0.953600pt;}
._8_c00393{width:1.152000pt;}
._5_c00393{width:2.176000pt;}
._a_c00393{width:3.328000pt;}
._7_c00393{width:4.236800pt;}
._6_c00393{width:5.497600pt;}
._b_c00393{width:6.387200pt;}
._2_c00393{width:7.712000pt;}
._4_c00393{width:8.620800pt;}
._1_c00393{width:9.836800pt;}
._d_c00393{width:10.803200pt;}
._c_c00393{width:12.416000pt;}
._e_c00393{width:14.764800pt;}
._f_c00393{width:16.454400pt;}
.fs1_c00393{font-size:48.000000pt;}
.fs2_c00393{font-size:53.333333pt;}
.fs0_c00393{font-size:64.000000pt;}
.y0_c00393{bottom:0.000000pt;}
.y5_c00393{bottom:9.333333pt;}
.ye_c00393{bottom:62.666667pt;}
.yc_c00393{bottom:120.000000pt;}
.yb_c00393{bottom:144.000000pt;}
.ya_c00393{bottom:168.000000pt;}
.y9_c00393{bottom:192.000000pt;}
.y8_c00393{bottom:234.666667pt;}
.y7_c00393{bottom:258.666667pt;}
.y6_c00393{bottom:282.666667pt;}
.y4_c00393{bottom:322.666667pt;}
.y3_c00393{bottom:925.333333pt;}
.y2_c00393{bottom:949.333333pt;}
.y1_c00393{bottom:973.333333pt;}
.yd_c00393{bottom:1061.333333pt;}
.h3_c00393{height:37.007812pt;}
.h5_c00393{height:39.296875pt;}
.h1_c00393{height:45.562500pt;}
.h4_c00393{height:49.843750pt;}
.h2_c00393{height:574.666667pt;}
.h0_c00393{height:1122.666667pt;}
.w1_c00393{width:601.333333pt;}
.w0_c00393{width:793.333333pt;}
.x0_c00393{left:0.000000pt;}
.x1_c00393{left:58.204720pt;}
.x2_c00393{left:250.050400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_664a77c533fb124a564bcc54.woff2')format("woff");}.ff1_c00394{font-family:ff1_c00394;line-height:0.933105;font-style:normal;font-weight:normal;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_2db8fdd8e100a177cc46e859.woff2')format("woff");}.ff2_c00394{font-family:ff2_c00394;line-height:0.963867;font-style:normal;font-weight:normal;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_276225a1a914b7fb533b0643.woff2')format("woff");}.ff3_c00394{font-family:ff3_c00394;line-height:1.155762;font-style: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;}
.ls1_c00394{letter-spacing:0.000000px;}
.ls0_c00394{letter-spacing:0.012000px;}
.sc__c00394{text-shadow:none;}
.sc0_c00394{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00394{-webkit-text-stroke:0px transparent;}
.sc0_c00394{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00394{word-spacing:0.000000px;}
._a_c00394{margin-left:-4.514400px;}
._0_c00394{margin-left:-3.261600px;}
._3_c00394{margin-left:-1.555200px;}
._2_c00394{width:1.224000px;}
._4_c00394{width:2.433600px;}
._1_c00394{width:4.420800px;}
._5_c00394{width:6.084000px;}
._7_c00394{width:7.272000px;}
._8_c00394{width:8.517600px;}
._6_c00394{width:10.080000px;}
._9_c00394{width:11.145600px;}
._b_c00394{width:12.614400px;}
.fc1_c00394{color:transparent;}
.fc0_c00394{color:rgb(0,0,0);}
.fs1_c00394{font-size:54.000000px;}
.fs2_c00394{font-size:60.000000px;}
.fs0_c00394{font-size:72.000000px;}
.y0_c00394{bottom:0.000000px;}
.yb_c00394{bottom:10.500000px;}
.y5_c00394{bottom:12.000000px;}
.yd_c00394{bottom:70.500000px;}
.ya_c00394{bottom:151.500000px;}
.y9_c00394{bottom:517.500000px;}
.y8_c00394{bottom:544.500000px;}
.y7_c00394{bottom:571.500000px;}
.y6_c00394{bottom:598.500000px;}
.y4_c00394{bottom:643.500000px;}
.y3_c00394{bottom:1041.000000px;}
.y2_c00394{bottom:1068.000000px;}
.y1_c00394{bottom:1095.000000px;}
.yc_c00394{bottom:1194.000000px;}
.h3_c00394{height:41.633789px;}
.h1_c00394{height:51.187500px;}
.h5_c00394{height:56.074219px;}
.h4_c00394{height:334.500000px;}
.h2_c00394{height:366.000000px;}
.h0_c00394{height:1263.000000px;}
.w1_c00394{width:676.500000px;}
.w0_c00394{width:892.500000px;}
.x0_c00394{left:0.000000px;}
.x2_c00394{left:131.125830px;}
.x1_c00394{left:150.519750px;}
.x3_c00394{left:274.991850px;}
.x4_c00394{left:416.782800px;}
.x5_c00394{left:801.992850px;}
@media print{
.v0_c00394{vertical-align:0.000000pt;}
.ls1_c00394{letter-spacing:0.000000pt;}
.ls0_c00394{letter-spacing:0.010667pt;}
.ws0_c00394{word-spacing:0.000000pt;}
._a_c00394{margin-left:-4.012800pt;}
._0_c00394{margin-left:-2.899200pt;}
._3_c00394{margin-left:-1.382400pt;}
._2_c00394{width:1.088000pt;}
._4_c00394{width:2.163200pt;}
._1_c00394{width:3.929600pt;}
._5_c00394{width:5.408000pt;}
._7_c00394{width:6.464000pt;}
._8_c00394{width:7.571200pt;}
._6_c00394{width:8.960000pt;}
._9_c00394{width:9.907200pt;}
._b_c00394{width:11.212800pt;}
.fs1_c00394{font-size:48.000000pt;}
.fs2_c00394{font-size:53.333333pt;}
.fs0_c00394{font-size:64.000000pt;}
.y0_c00394{bottom:0.000000pt;}
.yb_c00394{bottom:9.333333pt;}
.y5_c00394{bottom:10.666667pt;}
.yd_c00394{bottom:62.666667pt;}
.ya_c00394{bottom:134.666667pt;}
.y9_c00394{bottom:460.000000pt;}
.y8_c00394{bottom:484.000000pt;}
.y7_c00394{bottom:508.000000pt;}
.y6_c00394{bottom:532.000000pt;}
.y4_c00394{bottom:572.000000pt;}
.y3_c00394{bottom:925.333333pt;}
.y2_c00394{bottom:949.333333pt;}
.y1_c00394{bottom:973.333333pt;}
.yc_c00394{bottom:1061.333333pt;}
.h3_c00394{height:37.007812pt;}
.h1_c00394{height:45.500000pt;}
.h5_c00394{height:49.843750pt;}
.h4_c00394{height:297.333333pt;}
.h2_c00394{height:325.333333pt;}
.h0_c00394{height:1122.666667pt;}
.w1_c00394{width:601.333333pt;}
.w0_c00394{width:793.333333pt;}
.x0_c00394{left:0.000000pt;}
.x2_c00394{left:116.556293pt;}
.x1_c00394{left:133.795333pt;}
.x3_c00394{left:244.437200pt;}
.x4_c00394{left:370.473600pt;}
.x5_c00394{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_79ba8c9b82629a74ad42c87a.woff2')format("woff");}.ff1_c00395{font-family:ff1_c00395;line-height:0.934082;font-style:normal;font-weight:normal;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_bcf9eaac7c7352325eb2c5aa.woff2')format("woff");}.ff2_c00395{font-family:ff2_c00395;line-height:0.976074;font-style:normal;font-weight:normal;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_1f9d5f3cb378e227b0984ef3.woff2')format("woff");}.ff3_c00395{font-family:ff3_c00395;line-height:1.124023;font-style:normal;font-weight:normal;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_74b9ccf006b69c7d37f6f064.woff2')format("woff");}.ff4_c00395{font-family:ff4_c00395;line-height:0.756348;font-style:normal;font-weight:normal;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_683ce7d49871707b213e61cb.woff2')format("woff");}.ff5_c00395{font-family:ff5_c00395;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00395{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00395{vertical-align:0.000000px;}
.ls0_c00395{letter-spacing:0.000000px;}
.ls1_c00395{letter-spacing:0.012000px;}
.sc__c00395{text-shadow:none;}
.sc0_c00395{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00395{-webkit-text-stroke:0px transparent;}
.sc0_c00395{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00395{word-spacing:-19.800000px;}
.ws1_c00395{word-spacing:0.000000px;}
._b_c00395{margin-left:-10.584000px;}
._f_c00395{margin-left:-7.171200px;}
._4_c00395{margin-left:-4.946400px;}
._1_c00395{margin-left:-2.944800px;}
._3_c00395{margin-left:-1.648800px;}
._2_c00395{width:1.562400px;}
._0_c00395{width:3.333600px;}
._5_c00395{width:4.816800px;}
._6_c00395{width:6.184800px;}
._7_c00395{width:7.495200px;}
._8_c00395{width:9.064800px;}
._9_c00395{width:10.713600px;}
._a_c00395{width:12.448800px;}
._d_c00395{width:13.507200px;}
._c_c00395{width:14.594400px;}
._e_c00395{width:17.481600px;}
.fc1_c00395{color:transparent;}
.fc0_c00395{color:rgb(0,0,0);}
.fs1_c00395{font-size:54.000000px;}
.fs3_c00395{font-size:60.000000px;}
.fs2_c00395{font-size:66.000000px;}
.fs0_c00395{font-size:72.000000px;}
.y0_c00395{bottom:0.000000px;}
.y6_c00395{bottom:10.500000px;}
.y15_c00395{bottom:70.500000px;}
.y13_c00395{bottom:174.000000px;}
.y12_c00395{bottom:201.000000px;}
.y11_c00395{bottom:228.000000px;}
.y10_c00395{bottom:255.000000px;}
.yf_c00395{bottom:282.000000px;}
.ye_c00395{bottom:309.000000px;}
.yd_c00395{bottom:357.000000px;}
.yc_c00395{bottom:403.500000px;}
.yb_c00395{bottom:430.500000px;}
.ya_c00395{bottom:457.500000px;}
.y9_c00395{bottom:505.500000px;}
.y8_c00395{bottom:532.500000px;}
.y7_c00395{bottom:559.500000px;}
.y5_c00395{bottom:604.500000px;}
.y4_c00395{bottom:1014.000000px;}
.y3_c00395{bottom:1041.000000px;}
.y2_c00395{bottom:1068.000000px;}
.y1_c00395{bottom:1095.000000px;}
.y14_c00395{bottom:1194.000000px;}
.h3_c00395{height:42.292969px;}
.h6_c00395{height:44.208984px;}
.h1_c00395{height:51.257812px;}
.h5_c00395{height:56.074219px;}
.h4_c00395{height:62.519531px;}
.h2_c00395{height:378.000000px;}
.h0_c00395{height:1263.000000px;}
.w1_c00395{width:676.500000px;}
.w0_c00395{width:892.500000px;}
.x0_c00395{left:0.000000px;}
.x1_c00395{left:65.480310px;}
.x2_c00395{left:108.918090px;}
@media print{
.v0_c00395{vertical-align:0.000000pt;}
.ls0_c00395{letter-spacing:0.000000pt;}
.ls1_c00395{letter-spacing:0.010667pt;}
.ws0_c00395{word-spacing:-17.600000pt;}
.ws1_c00395{word-spacing:0.000000pt;}
._b_c00395{margin-left:-9.408000pt;}
._f_c00395{margin-left:-6.374400pt;}
._4_c00395{margin-left:-4.396800pt;}
._1_c00395{margin-left:-2.617600pt;}
._3_c00395{margin-left:-1.465600pt;}
._2_c00395{width:1.388800pt;}
._0_c00395{width:2.963200pt;}
._5_c00395{width:4.281600pt;}
._6_c00395{width:5.497600pt;}
._7_c00395{width:6.662400pt;}
._8_c00395{width:8.057600pt;}
._9_c00395{width:9.523200pt;}
._a_c00395{width:11.065600pt;}
._d_c00395{width:12.006400pt;}
._c_c00395{width:12.972800pt;}
._e_c00395{width:15.539200pt;}
.fs1_c00395{font-size:48.000000pt;}
.fs3_c00395{font-size:53.333333pt;}
.fs2_c00395{font-size:58.666667pt;}
.fs0_c00395{font-size:64.000000pt;}
.y0_c00395{bottom:0.000000pt;}
.y6_c00395{bottom:9.333333pt;}
.y15_c00395{bottom:62.666667pt;}
.y13_c00395{bottom:154.666667pt;}
.y12_c00395{bottom:178.666667pt;}
.y11_c00395{bottom:202.666667pt;}
.y10_c00395{bottom:226.666667pt;}
.yf_c00395{bottom:250.666667pt;}
.ye_c00395{bottom:274.666667pt;}
.yd_c00395{bottom:317.333333pt;}
.yc_c00395{bottom:358.666667pt;}
.yb_c00395{bottom:382.666667pt;}
.ya_c00395{bottom:406.666667pt;}
.y9_c00395{bottom:449.333333pt;}
.y8_c00395{bottom:473.333333pt;}
.y7_c00395{bottom:497.333333pt;}
.y5_c00395{bottom:537.333333pt;}
.y4_c00395{bottom:901.333333pt;}
.y3_c00395{bottom:925.333333pt;}
.y2_c00395{bottom:949.333333pt;}
.y1_c00395{bottom:973.333333pt;}
.y14_c00395{bottom:1061.333333pt;}
.h3_c00395{height:37.593750pt;}
.h6_c00395{height:39.296875pt;}
.h1_c00395{height:45.562500pt;}
.h5_c00395{height:49.843750pt;}
.h4_c00395{height:55.572917pt;}
.h2_c00395{height:336.000000pt;}
.h0_c00395{height:1122.666667pt;}
.w1_c00395{width:601.333333pt;}
.w0_c00395{width:793.333333pt;}
.x0_c00395{left:0.000000pt;}
.x1_c00395{left:58.204720pt;}
.x2_c00395{left:96.816080pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2ccd0db222872f7174b549bd.woff2')format("woff");}.ff1_c00396{font-family:ff1_c00396;line-height:1.163086;font-style:normal;font-weight:normal;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_5fdc57bca7d7f3a92ee81450.woff2')format("woff");}.ff2_c00396{font-family:ff2_c00396;line-height:0.801270;font-style:normal;font-weight:normal;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_44a926e7ca495ab561020a34.woff2')format("woff");}.ff3_c00396{font-family:ff3_c00396;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00396{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00396{vertical-align:0.000000px;}
.ls1_c00396{letter-spacing:0.000000px;}
.ls0_c00396{letter-spacing:0.012000px;}
.sc__c00396{text-shadow:none;}
.sc0_c00396{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00396{-webkit-text-stroke:0px transparent;}
.sc0_c00396{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00396{word-spacing:-19.800000px;}
.ws1_c00396{word-spacing:0.000000px;}
._7_c00396{margin-left:-7.070400px;}
._1_c00396{margin-left:-3.859200px;}
._3_c00396{margin-left:-1.864800px;}
._4_c00396{width:1.188000px;}
._0_c00396{width:2.325600px;}
._6_c00396{width:3.376800px;}
._2_c00396{width:4.557600px;}
._5_c00396{width:6.292800px;}
._e_c00396{width:8.244000px;}
._f_c00396{width:10.296000px;}
._11_c00396{width:11.620800px;}
._10_c00396{width:12.650400px;}
._d_c00396{width:14.004000px;}
._a_c00396{width:15.040800px;}
._b_c00396{width:16.149600px;}
._8_c00396{width:17.323200px;}
._c_c00396{width:18.691200px;}
._9_c00396{width:21.204000px;}
._13_c00396{width:22.435200px;}
._12_c00396{width:24.588000px;}
.fc1_c00396{color:transparent;}
.fc0_c00396{color:rgb(0,0,0);}
.fs1_c00396{font-size:54.000000px;}
.fs2_c00396{font-size:60.000000px;}
.fs0_c00396{font-size:72.000000px;}
.y0_c00396{bottom:0.000000px;}
.yb_c00396{bottom:10.500000px;}
.y11_c00396{bottom:70.500000px;}
.yf_c00396{bottom:163.500000px;}
.ye_c00396{bottom:486.000000px;}
.yd_c00396{bottom:513.000000px;}
.yc_c00396{bottom:540.000000px;}
.ya_c00396{bottom:585.000000px;}
.y9_c00396{bottom:879.000000px;}
.y8_c00396{bottom:906.000000px;}
.y7_c00396{bottom:933.000000px;}
.y6_c00396{bottom:960.000000px;}
.y5_c00396{bottom:987.000000px;}
.y4_c00396{bottom:1014.000000px;}
.y3_c00396{bottom:1041.000000px;}
.y2_c00396{bottom:1068.000000px;}
.y1_c00396{bottom:1095.000000px;}
.y10_c00396{bottom:1194.000000px;}
.h3_c00396{height:42.292969px;}
.h5_c00396{height:56.074219px;}
.h1_c00396{height:67.746094px;}
.h2_c00396{height:262.500000px;}
.h4_c00396{height:291.000000px;}
.h0_c00396{height:1263.000000px;}
.w1_c00396{width:676.500000px;}
.w0_c00396{width:892.500000px;}
.x0_c00396{left:0.000000px;}
.x1_c00396{left:150.519750px;}
.x3_c00396{left:182.446200px;}
.x2_c00396{left:210.207600px;}
.x4_c00396{left:416.782800px;}
.x5_c00396{left:801.992850px;}
@media print{
.v0_c00396{vertical-align:0.000000pt;}
.ls1_c00396{letter-spacing:0.000000pt;}
.ls0_c00396{letter-spacing:0.010667pt;}
.ws0_c00396{word-spacing:-17.600000pt;}
.ws1_c00396{word-spacing:0.000000pt;}
._7_c00396{margin-left:-6.284800pt;}
._1_c00396{margin-left:-3.430400pt;}
._3_c00396{margin-left:-1.657600pt;}
._4_c00396{width:1.056000pt;}
._0_c00396{width:2.067200pt;}
._6_c00396{width:3.001600pt;}
._2_c00396{width:4.051200pt;}
._5_c00396{width:5.593600pt;}
._e_c00396{width:7.328000pt;}
._f_c00396{width:9.152000pt;}
._11_c00396{width:10.329600pt;}
._10_c00396{width:11.244800pt;}
._d_c00396{width:12.448000pt;}
._a_c00396{width:13.369600pt;}
._b_c00396{width:14.355200pt;}
._8_c00396{width:15.398400pt;}
._c_c00396{width:16.614400pt;}
._9_c00396{width:18.848000pt;}
._13_c00396{width:19.942400pt;}
._12_c00396{width:21.856000pt;}
.fs1_c00396{font-size:48.000000pt;}
.fs2_c00396{font-size:53.333333pt;}
.fs0_c00396{font-size:64.000000pt;}
.y0_c00396{bottom:0.000000pt;}
.yb_c00396{bottom:9.333333pt;}
.y11_c00396{bottom:62.666667pt;}
.yf_c00396{bottom:145.333333pt;}
.ye_c00396{bottom:432.000000pt;}
.yd_c00396{bottom:456.000000pt;}
.yc_c00396{bottom:480.000000pt;}
.ya_c00396{bottom:520.000000pt;}
.y9_c00396{bottom:781.333333pt;}
.y8_c00396{bottom:805.333333pt;}
.y7_c00396{bottom:829.333333pt;}
.y6_c00396{bottom:853.333333pt;}
.y5_c00396{bottom:877.333333pt;}
.y4_c00396{bottom:901.333333pt;}
.y3_c00396{bottom:925.333333pt;}
.y2_c00396{bottom:949.333333pt;}
.y1_c00396{bottom:973.333333pt;}
.y10_c00396{bottom:1061.333333pt;}
.h3_c00396{height:37.593750pt;}
.h5_c00396{height:49.843750pt;}
.h1_c00396{height:60.218750pt;}
.h2_c00396{height:233.333333pt;}
.h4_c00396{height:258.666667pt;}
.h0_c00396{height:1122.666667pt;}
.w1_c00396{width:601.333333pt;}
.w0_c00396{width:793.333333pt;}
.x0_c00396{left:0.000000pt;}
.x1_c00396{left:133.795333pt;}
.x3_c00396{left:162.174400pt;}
.x2_c00396{left:186.851200pt;}
.x4_c00396{left:370.473600pt;}
.x5_c00396{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8efb4b4b9fc220597747dd64.woff2')format("woff");}.ff1_c00397{font-family:ff1_c00397;line-height:0.934082;font-style:normal;font-weight:normal;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_89c40f107a8784086f79424f.woff2')format("woff");}.ff2_c00397{font-family:ff2_c00397;line-height:0.963867;font-style:normal;font-weight:normal;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_8aa43667ee25a48f8058ba2e.woff2')format("woff");}.ff3_c00397{font-family:ff3_c00397;line-height:0.756348;font-style:normal;font-weight:normal;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_71674595990f4e3b4b639920.woff2')format("woff");}.ff4_c00397{font-family:ff4_c00397;line-height:1.155762;font-style: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;}
.ls0_c00397{letter-spacing:0.000000px;}
.ls1_c00397{letter-spacing:0.012000px;}
.sc__c00397{text-shadow:none;}
.sc0_c00397{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00397{-webkit-text-stroke:0px transparent;}
.sc0_c00397{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00397{word-spacing:0.000000px;}
._10_c00397{margin-left:-6.487200px;}
._b_c00397{margin-left:-4.204800px;}
._12_c00397{margin-left:-3.168000px;}
._5_c00397{margin-left:-2.073600px;}
._15_c00397{margin-left:-1.008000px;}
._7_c00397{width:1.238400px;}
._3_c00397{width:2.829600px;}
._1_c00397{width:4.219200px;}
._d_c00397{width:5.868000px;}
._a_c00397{width:7.178400px;}
._11_c00397{width:8.179200px;}
._9_c00397{width:9.194400px;}
._c_c00397{width:11.160000px;}
._13_c00397{width:12.621600px;}
._14_c00397{width:14.227200px;}
._16_c00397{width:16.588800px;}
._f_c00397{width:17.683200px;}
._e_c00397{width:18.741600px;}
._2_c00397{width:21.528000px;}
._4_c00397{width:22.860000px;}
._8_c00397{width:24.487200px;}
._0_c00397{width:25.725600px;}
._6_c00397{width:27.748800px;}
.fc1_c00397{color:transparent;}
.fc0_c00397{color:rgb(0,0,0);}
.fs1_c00397{font-size:54.000000px;}
.fs2_c00397{font-size:60.000000px;}
.fs0_c00397{font-size:72.000000px;}
.y0_c00397{bottom:0.000000px;}
.yc_c00397{bottom:10.500000px;}
.y1c_c00397{bottom:70.500000px;}
.y1a_c00397{bottom:136.500000px;}
.y19_c00397{bottom:163.500000px;}
.y18_c00397{bottom:211.500000px;}
.y17_c00397{bottom:238.500000px;}
.y16_c00397{bottom:265.500000px;}
.y15_c00397{bottom:292.500000px;}
.y14_c00397{bottom:319.500000px;}
.y13_c00397{bottom:346.500000px;}
.y12_c00397{bottom:373.500000px;}
.y11_c00397{bottom:400.500000px;}
.y10_c00397{bottom:427.500000px;}
.yf_c00397{bottom:454.500000px;}
.ye_c00397{bottom:481.500000px;}
.yd_c00397{bottom:508.500000px;}
.yb_c00397{bottom:553.500000px;}
.ya_c00397{bottom:852.000000px;}
.y9_c00397{bottom:879.000000px;}
.y8_c00397{bottom:906.000000px;}
.y7_c00397{bottom:933.000000px;}
.y6_c00397{bottom:960.000000px;}
.y5_c00397{bottom:987.000000px;}
.y4_c00397{bottom:1014.000000px;}
.y3_c00397{bottom:1041.000000px;}
.y2_c00397{bottom:1068.000000px;}
.y1_c00397{bottom:1095.000000px;}
.y1b_c00397{bottom:1194.000000px;}
.h3_c00397{height:41.633789px;}
.h5_c00397{height:44.208984px;}
.h1_c00397{height:51.257812px;}
.h4_c00397{height:56.074219px;}
.h2_c00397{height:267.000000px;}
.h0_c00397{height:1263.000000px;}
.w1_c00397{width:676.500000px;}
.w0_c00397{width:892.500000px;}
.x0_c00397{left:0.000000px;}
.x1_c00397{left:65.480310px;}
.x2_c00397{left:210.491100px;}
@media print{
.v0_c00397{vertical-align:0.000000pt;}
.ls0_c00397{letter-spacing:0.000000pt;}
.ls1_c00397{letter-spacing:0.010667pt;}
.ws0_c00397{word-spacing:0.000000pt;}
._10_c00397{margin-left:-5.766400pt;}
._b_c00397{margin-left:-3.737600pt;}
._12_c00397{margin-left:-2.816000pt;}
._5_c00397{margin-left:-1.843200pt;}
._15_c00397{margin-left:-0.896000pt;}
._7_c00397{width:1.100800pt;}
._3_c00397{width:2.515200pt;}
._1_c00397{width:3.750400pt;}
._d_c00397{width:5.216000pt;}
._a_c00397{width:6.380800pt;}
._11_c00397{width:7.270400pt;}
._9_c00397{width:8.172800pt;}
._c_c00397{width:9.920000pt;}
._13_c00397{width:11.219200pt;}
._14_c00397{width:12.646400pt;}
._16_c00397{width:14.745600pt;}
._f_c00397{width:15.718400pt;}
._e_c00397{width:16.659200pt;}
._2_c00397{width:19.136000pt;}
._4_c00397{width:20.320000pt;}
._8_c00397{width:21.766400pt;}
._0_c00397{width:22.867200pt;}
._6_c00397{width:24.665600pt;}
.fs1_c00397{font-size:48.000000pt;}
.fs2_c00397{font-size:53.333333pt;}
.fs0_c00397{font-size:64.000000pt;}
.y0_c00397{bottom:0.000000pt;}
.yc_c00397{bottom:9.333333pt;}
.y1c_c00397{bottom:62.666667pt;}
.y1a_c00397{bottom:121.333333pt;}
.y19_c00397{bottom:145.333333pt;}
.y18_c00397{bottom:188.000000pt;}
.y17_c00397{bottom:212.000000pt;}
.y16_c00397{bottom:236.000000pt;}
.y15_c00397{bottom:260.000000pt;}
.y14_c00397{bottom:284.000000pt;}
.y13_c00397{bottom:308.000000pt;}
.y12_c00397{bottom:332.000000pt;}
.y11_c00397{bottom:356.000000pt;}
.y10_c00397{bottom:380.000000pt;}
.yf_c00397{bottom:404.000000pt;}
.ye_c00397{bottom:428.000000pt;}
.yd_c00397{bottom:452.000000pt;}
.yb_c00397{bottom:492.000000pt;}
.ya_c00397{bottom:757.333333pt;}
.y9_c00397{bottom:781.333333pt;}
.y8_c00397{bottom:805.333333pt;}
.y7_c00397{bottom:829.333333pt;}
.y6_c00397{bottom:853.333333pt;}
.y5_c00397{bottom:877.333333pt;}
.y4_c00397{bottom:901.333333pt;}
.y3_c00397{bottom:925.333333pt;}
.y2_c00397{bottom:949.333333pt;}
.y1_c00397{bottom:973.333333pt;}
.y1b_c00397{bottom:1061.333333pt;}
.h3_c00397{height:37.007812pt;}
.h5_c00397{height:39.296875pt;}
.h1_c00397{height:45.562500pt;}
.h4_c00397{height:49.843750pt;}
.h2_c00397{height:237.333333pt;}
.h0_c00397{height:1122.666667pt;}
.w1_c00397{width:601.333333pt;}
.w0_c00397{width:793.333333pt;}
.x0_c00397{left:0.000000pt;}
.x1_c00397{left:58.204720pt;}
.x2_c00397{left:187.103200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_61950e91196dfd036528a067.woff2')format("woff");}.ff1_c00398{font-family:ff1_c00398;line-height:1.163086;font-style:normal;font-weight:normal;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_09e946f041637ab193302852.woff2')format("woff");}.ff2_c00398{font-family:ff2_c00398;line-height:0.987793;font-style:normal;font-weight:normal;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_9492a9a3db2da20e1b3c4331.woff2')format("woff");}.ff3_c00398{font-family:ff3_c00398;line-height:1.124023;font-style:normal;font-weight:normal;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_60f409f063ba4258cb861be2.woff2')format("woff");}.ff4_c00398{font-family:ff4_c00398;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00398{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00398{vertical-align:0.000000px;}
.ls2_c00398{letter-spacing:-0.005400px;}
.ls1_c00398{letter-spacing:0.000000px;}
.ls3_c00398{letter-spacing:0.006600px;}
.ls0_c00398{letter-spacing:0.012000px;}
.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;}
}
.ws1_c00398{word-spacing:-19.080600px;}
.ws0_c00398{word-spacing:-17.058600px;}
.ws2_c00398{word-spacing:0.000000px;}
._e_c00398{margin-left:-7.106400px;}
._2_c00398{margin-left:-4.435200px;}
._1_c00398{margin-left:-2.764800px;}
._6_c00398{margin-left:-1.699200px;}
._4_c00398{width:1.058400px;}
._5_c00398{width:2.167200px;}
._0_c00398{width:3.283200px;}
._3_c00398{width:4.924800px;}
._7_c00398{width:6.314400px;}
._12_c00398{width:7.365600px;}
._11_c00398{width:9.223200px;}
._13_c00398{width:10.267200px;}
._a_c00398{width:11.404800px;}
._8_c00398{width:12.477600px;}
._9_c00398{width:13.557600px;}
._b_c00398{width:15.249600px;}
._c_c00398{width:16.351200px;}
._d_c00398{width:18.000000px;}
._f_c00398{width:21.448800px;}
._10_c00398{width:22.917600px;}
.fc1_c00398{color:transparent;}
.fc0_c00398{color:rgb(0,0,0);}
.fs1_c00398{font-size:54.000000px;}
.fs3_c00398{font-size:60.000000px;}
.fs2_c00398{font-size:66.000000px;}
.fs0_c00398{font-size:72.000000px;}
.y0_c00398{bottom:0.000000px;}
.y6_c00398{bottom:10.500000px;}
.y5_c00398{bottom:27.000000px;}
.y16_c00398{bottom:70.500000px;}
.y14_c00398{bottom:157.500000px;}
.y13_c00398{bottom:184.500000px;}
.y12_c00398{bottom:211.500000px;}
.y11_c00398{bottom:238.500000px;}
.y10_c00398{bottom:265.500000px;}
.yf_c00398{bottom:292.500000px;}
.ye_c00398{bottom:319.500000px;}
.yd_c00398{bottom:346.500000px;}
.yc_c00398{bottom:373.500000px;}
.yb_c00398{bottom:421.500000px;}
.ya_c00398{bottom:448.500000px;}
.y9_c00398{bottom:496.500000px;}
.y8_c00398{bottom:523.500000px;}
.y7_c00398{bottom:571.500000px;}
.y4_c00398{bottom:615.000000px;}
.y3_c00398{bottom:1041.000000px;}
.y2_c00398{bottom:1068.000000px;}
.y1_c00398{bottom:1095.000000px;}
.y15_c00398{bottom:1194.000000px;}
.h3_c00398{height:42.292969px;}
.h5_c00398{height:56.074219px;}
.h4_c00398{height:62.519531px;}
.h1_c00398{height:67.746094px;}
.h2_c00398{height:394.500000px;}
.h0_c00398{height:1263.000000px;}
.w1_c00398{width:676.500000px;}
.w0_c00398{width:892.500000px;}
.x0_c00398{left:0.000000px;}
.x2_c00398{left:37.954095px;}
.x1_c00398{left:150.519750px;}
.x3_c00398{left:303.086100px;}
.x4_c00398{left:416.782800px;}
.x5_c00398{left:801.992850px;}
@media print{
.v0_c00398{vertical-align:0.000000pt;}
.ls2_c00398{letter-spacing:-0.004800pt;}
.ls1_c00398{letter-spacing:0.000000pt;}
.ls3_c00398{letter-spacing:0.005867pt;}
.ls0_c00398{letter-spacing:0.010667pt;}
.ws1_c00398{word-spacing:-16.960533pt;}
.ws0_c00398{word-spacing:-15.163200pt;}
.ws2_c00398{word-spacing:0.000000pt;}
._e_c00398{margin-left:-6.316800pt;}
._2_c00398{margin-left:-3.942400pt;}
._1_c00398{margin-left:-2.457600pt;}
._6_c00398{margin-left:-1.510400pt;}
._4_c00398{width:0.940800pt;}
._5_c00398{width:1.926400pt;}
._0_c00398{width:2.918400pt;}
._3_c00398{width:4.377600pt;}
._7_c00398{width:5.612800pt;}
._12_c00398{width:6.547200pt;}
._11_c00398{width:8.198400pt;}
._13_c00398{width:9.126400pt;}
._a_c00398{width:10.137600pt;}
._8_c00398{width:11.091200pt;}
._9_c00398{width:12.051200pt;}
._b_c00398{width:13.555200pt;}
._c_c00398{width:14.534400pt;}
._d_c00398{width:16.000000pt;}
._f_c00398{width:19.065600pt;}
._10_c00398{width:20.371200pt;}
.fs1_c00398{font-size:48.000000pt;}
.fs3_c00398{font-size:53.333333pt;}
.fs2_c00398{font-size:58.666667pt;}
.fs0_c00398{font-size:64.000000pt;}
.y0_c00398{bottom:0.000000pt;}
.y6_c00398{bottom:9.333333pt;}
.y5_c00398{bottom:24.000000pt;}
.y16_c00398{bottom:62.666667pt;}
.y14_c00398{bottom:140.000000pt;}
.y13_c00398{bottom:164.000000pt;}
.y12_c00398{bottom:188.000000pt;}
.y11_c00398{bottom:212.000000pt;}
.y10_c00398{bottom:236.000000pt;}
.yf_c00398{bottom:260.000000pt;}
.ye_c00398{bottom:284.000000pt;}
.yd_c00398{bottom:308.000000pt;}
.yc_c00398{bottom:332.000000pt;}
.yb_c00398{bottom:374.666667pt;}
.ya_c00398{bottom:398.666667pt;}
.y9_c00398{bottom:441.333333pt;}
.y8_c00398{bottom:465.333333pt;}
.y7_c00398{bottom:508.000000pt;}
.y4_c00398{bottom:546.666667pt;}
.y3_c00398{bottom:925.333333pt;}
.y2_c00398{bottom:949.333333pt;}
.y1_c00398{bottom:973.333333pt;}
.y15_c00398{bottom:1061.333333pt;}
.h3_c00398{height:37.593750pt;}
.h5_c00398{height:49.843750pt;}
.h4_c00398{height:55.572917pt;}
.h1_c00398{height:60.218750pt;}
.h2_c00398{height:350.666667pt;}
.h0_c00398{height:1122.666667pt;}
.w1_c00398{width:601.333333pt;}
.w0_c00398{width:793.333333pt;}
.x0_c00398{left:0.000000pt;}
.x2_c00398{left:33.736973pt;}
.x1_c00398{left:133.795333pt;}
.x3_c00398{left:269.409867pt;}
.x4_c00398{left:370.473600pt;}
.x5_c00398{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63d5895135dc16b053511c56.woff2')format("woff");}.ff1_c00399{font-family:ff1_c00399;line-height:1.132812;font-style:normal;font-weight:normal;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_426cd74353ff3fc08047b07e.woff2')format("woff");}.ff2_c00399{font-family:ff2_c00399;line-height:0.934082;font-style:normal;font-weight:normal;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_a8804f20399803c6353c8a51.woff2')format("woff");}.ff3_c00399{font-family:ff3_c00399;line-height:0.756348;font-style:normal;font-weight:normal;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_535487e487f137c327e41d9a.woff2')format("woff");}.ff4_c00399{font-family:ff4_c00399;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00399{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00399{vertical-align:0.000000px;}
.ls0_c00399{letter-spacing:0.000000px;}
.ls1_c00399{letter-spacing:0.012000px;}
.sc__c00399{text-shadow:none;}
.sc0_c00399{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00399{-webkit-text-stroke:0px transparent;}
.sc0_c00399{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00399{word-spacing:0.000000px;}
._5_c00399{margin-left:-3.960000px;}
._9_c00399{margin-left:-2.952000px;}
._3_c00399{margin-left:-1.224000px;}
._1_c00399{width:1.152000px;}
._0_c00399{width:2.829600px;}
._2_c00399{width:4.716000px;}
._4_c00399{width:6.386400px;}
._7_c00399{width:8.114400px;}
._6_c00399{width:9.669600px;}
._b_c00399{width:10.958400px;}
._8_c00399{width:12.189600px;}
._a_c00399{width:13.910400px;}
._11_c00399{width:15.919200px;}
._10_c00399{width:17.359200px;}
._f_c00399{width:18.720000px;}
._d_c00399{width:21.801600px;}
._e_c00399{width:23.248800px;}
._c_c00399{width:24.314400px;}
.fc1_c00399{color:transparent;}
.fc0_c00399{color:rgb(0,0,0);}
.fs0_c00399{font-size:54.000000px;}
.fs2_c00399{font-size:60.000000px;}
.fs1_c00399{font-size:72.000000px;}
.y0_c00399{bottom:0.000000px;}
.y2_c00399{bottom:10.500000px;}
.ya_c00399{bottom:70.500000px;}
.y8_c00399{bottom:199.500000px;}
.y7_c00399{bottom:226.500000px;}
.y6_c00399{bottom:253.500000px;}
.y5_c00399{bottom:280.500000px;}
.y4_c00399{bottom:307.500000px;}
.y3_c00399{bottom:352.500000px;}
.y1_c00399{bottom:679.500000px;}
.y9_c00399{bottom:1194.000000px;}
.h6_c00399{height:44.208984px;}
.h2_c00399{height:50.756836px;}
.h4_c00399{height:51.257812px;}
.h5_c00399{height:56.074219px;}
.h3_c00399{height:298.500000px;}
.h1_c00399{height:433.500000px;}
.h0_c00399{height:1263.000000px;}
.w1_c00399{width:676.500000px;}
.w0_c00399{width:892.500000px;}
.x0_c00399{left:0.000000px;}
.x1_c00399{left:66.000000px;}
.x3_c00399{left:227.923050px;}
.x2_c00399{left:283.683150px;}
@media print{
.v0_c00399{vertical-align:0.000000pt;}
.ls0_c00399{letter-spacing:0.000000pt;}
.ls1_c00399{letter-spacing:0.010667pt;}
.ws0_c00399{word-spacing:0.000000pt;}
._5_c00399{margin-left:-3.520000pt;}
._9_c00399{margin-left:-2.624000pt;}
._3_c00399{margin-left:-1.088000pt;}
._1_c00399{width:1.024000pt;}
._0_c00399{width:2.515200pt;}
._2_c00399{width:4.192000pt;}
._4_c00399{width:5.676800pt;}
._7_c00399{width:7.212800pt;}
._6_c00399{width:8.595200pt;}
._b_c00399{width:9.740800pt;}
._8_c00399{width:10.835200pt;}
._a_c00399{width:12.364800pt;}
._11_c00399{width:14.150400pt;}
._10_c00399{width:15.430400pt;}
._f_c00399{width:16.640000pt;}
._d_c00399{width:19.379200pt;}
._e_c00399{width:20.665600pt;}
._c_c00399{width:21.612800pt;}
.fs0_c00399{font-size:48.000000pt;}
.fs2_c00399{font-size:53.333333pt;}
.fs1_c00399{font-size:64.000000pt;}
.y0_c00399{bottom:0.000000pt;}
.y2_c00399{bottom:9.333333pt;}
.ya_c00399{bottom:62.666667pt;}
.y8_c00399{bottom:177.333333pt;}
.y7_c00399{bottom:201.333333pt;}
.y6_c00399{bottom:225.333333pt;}
.y5_c00399{bottom:249.333333pt;}
.y4_c00399{bottom:273.333333pt;}
.y3_c00399{bottom:313.333333pt;}
.y1_c00399{bottom:604.000000pt;}
.y9_c00399{bottom:1061.333333pt;}
.h6_c00399{height:39.296875pt;}
.h2_c00399{height:45.117188pt;}
.h4_c00399{height:45.562500pt;}
.h5_c00399{height:49.843750pt;}
.h3_c00399{height:265.333333pt;}
.h1_c00399{height:385.333333pt;}
.h0_c00399{height:1122.666667pt;}
.w1_c00399{width:601.333333pt;}
.w0_c00399{width:793.333333pt;}
.x0_c00399{left:0.000000pt;}
.x1_c00399{left:58.666667pt;}
.x3_c00399{left:202.598267pt;}
.x2_c00399{left:252.162800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ff2714b2fb24c0da194dd4ff.woff2')format("woff");}.ff1_c00400{font-family:ff1_c00400;line-height:0.987793;font-style:normal;font-weight:normal;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_bd1a2ef254338f1120101a27.woff2')format("woff");}.ff2_c00400{font-family:ff2_c00400;line-height:0.934082;font-style:normal;font-weight:normal;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_5f88d47dbd82379e4ac6063e.woff2')format("woff");}.ff3_c00400{font-family:ff3_c00400;line-height:1.155762;font-style: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;}
.ls2_c00400{letter-spacing:-0.005400px;}
.ls1_c00400{letter-spacing:0.000000px;}
.ls0_c00400{letter-spacing:0.012000px;}
.sc__c00400{text-shadow:none;}
.sc0_c00400{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00400{-webkit-text-stroke:0px transparent;}
.sc0_c00400{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00400{word-spacing:0.000000px;}
._5_c00400{margin-left:-3.477600px;}
._1_c00400{margin-left:-1.828800px;}
._3_c00400{width:1.173600px;}
._0_c00400{width:2.671200px;}
._2_c00400{width:4.528800px;}
._4_c00400{width:5.774400px;}
._6_c00400{width:6.811200px;}
.fc1_c00400{color:transparent;}
.fc0_c00400{color:rgb(0,0,0);}
.fs0_c00400{font-size:54.000000px;}
.fs2_c00400{font-size:60.000000px;}
.fs1_c00400{font-size:72.000000px;}
.y0_c00400{bottom:0.000000px;}
.y4_c00400{bottom:12.000000px;}
.y3_c00400{bottom:37.500000px;}
.y2_c00400{bottom:64.500000px;}
.yc_c00400{bottom:70.500000px;}
.ya_c00400{bottom:145.500000px;}
.y9_c00400{bottom:538.500000px;}
.y8_c00400{bottom:565.500000px;}
.y7_c00400{bottom:592.500000px;}
.y6_c00400{bottom:619.500000px;}
.y5_c00400{bottom:646.500000px;}
.y1_c00400{bottom:691.500000px;}
.yb_c00400{bottom:1194.000000px;}
.h2_c00400{height:42.292969px;}
.h3_c00400{height:51.257812px;}
.h5_c00400{height:56.074219px;}
.h4_c00400{height:361.500000px;}
.h1_c00400{height:421.500000px;}
.h0_c00400{height:1263.000000px;}
.w1_c00400{width:676.500000px;}
.w0_c00400{width:892.500000px;}
.x0_c00400{left:0.000000px;}
.x2_c00400{left:10.528931px;}
.x3_c00400{left:21.168090px;}
.x1_c00400{left:150.000000px;}
.x4_c00400{left:211.664400px;}
.x5_c00400{left:300.307650px;}
.x6_c00400{left:416.782800px;}
.x7_c00400{left:801.992850px;}
@media print{
.v0_c00400{vertical-align:0.000000pt;}
.ls2_c00400{letter-spacing:-0.004800pt;}
.ls1_c00400{letter-spacing:0.000000pt;}
.ls0_c00400{letter-spacing:0.010667pt;}
.ws0_c00400{word-spacing:0.000000pt;}
._5_c00400{margin-left:-3.091200pt;}
._1_c00400{margin-left:-1.625600pt;}
._3_c00400{width:1.043200pt;}
._0_c00400{width:2.374400pt;}
._2_c00400{width:4.025600pt;}
._4_c00400{width:5.132800pt;}
._6_c00400{width:6.054400pt;}
.fs0_c00400{font-size:48.000000pt;}
.fs2_c00400{font-size:53.333333pt;}
.fs1_c00400{font-size:64.000000pt;}
.y0_c00400{bottom:0.000000pt;}
.y4_c00400{bottom:10.666667pt;}
.y3_c00400{bottom:33.333333pt;}
.y2_c00400{bottom:57.333333pt;}
.yc_c00400{bottom:62.666667pt;}
.ya_c00400{bottom:129.333333pt;}
.y9_c00400{bottom:478.666667pt;}
.y8_c00400{bottom:502.666667pt;}
.y7_c00400{bottom:526.666667pt;}
.y6_c00400{bottom:550.666667pt;}
.y5_c00400{bottom:574.666667pt;}
.y1_c00400{bottom:614.666667pt;}
.yb_c00400{bottom:1061.333333pt;}
.h2_c00400{height:37.593750pt;}
.h3_c00400{height:45.562500pt;}
.h5_c00400{height:49.843750pt;}
.h4_c00400{height:321.333333pt;}
.h1_c00400{height:374.666667pt;}
.h0_c00400{height:1122.666667pt;}
.w1_c00400{width:601.333333pt;}
.w0_c00400{width:793.333333pt;}
.x0_c00400{left:0.000000pt;}
.x2_c00400{left:9.359049pt;}
.x3_c00400{left:18.816080pt;}
.x1_c00400{left:133.333333pt;}
.x4_c00400{left:188.146133pt;}
.x5_c00400{left:266.940133pt;}
.x6_c00400{left:370.473600pt;}
.x7_c00400{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7c464832d053f94373578a13.woff2')format("woff");}.ff1_c00401{font-family:ff1_c00401;line-height:0.934082;font-style:normal;font-weight:normal;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_37067a1577c14195fa92d464.woff2')format("woff");}.ff2_c00401{font-family:ff2_c00401;line-height:0.987793;font-style:normal;font-weight:normal;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_9fa952bc36e2b406672f64b2.woff2')format("woff");}.ff3_c00401{font-family:ff3_c00401;line-height:0.756836;font-style:normal;font-weight:normal;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_a30e73e4ed9eabc6745990c0.woff2')format("woff");}.ff4_c00401{font-family:ff4_c00401;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00401{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00401{vertical-align:0.000000px;}
.ls0_c00401{letter-spacing:0.000000px;}
.ls1_c00401{letter-spacing:0.012000px;}
.sc__c00401{text-shadow:none;}
.sc0_c00401{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00401{-webkit-text-stroke:0px transparent;}
.sc0_c00401{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00401{word-spacing:0.000000px;}
._7_c00401{margin-left:-6.289440px;}
._5_c00401{margin-left:-3.758400px;}
._10_c00401{margin-left:-2.753040px;}
._3_c00401{margin-left:-1.720800px;}
._4_c00401{width:1.245600px;}
._0_c00401{width:2.289600px;}
._1_c00401{width:4.003200px;}
._2_c00401{width:5.270400px;}
._e_c00401{width:6.336000px;}
._f_c00401{width:7.524000px;}
._6_c00401{width:8.834400px;}
._a_c00401{width:10.749600px;}
._9_c00401{width:12.492000px;}
._b_c00401{width:13.550400px;}
._d_c00401{width:14.781600px;}
._8_c00401{width:16.473600px;}
._c_c00401{width:18.532800px;}
.fc0_c00401{color:rgb(0,0,0);}
.fs1_c00401{font-size:54.000000px;}
.fs2_c00401{font-size:60.000000px;}
.fs0_c00401{font-size:72.000000px;}
.y0_c00401{bottom:0.000000px;}
.y5_c00401{bottom:12.000000px;}
.y10_c00401{bottom:70.500000px;}
.ye_c00401{bottom:133.500000px;}
.yd_c00401{bottom:160.500000px;}
.yc_c00401{bottom:187.500000px;}
.yb_c00401{bottom:214.500000px;}
.ya_c00401{bottom:241.500000px;}
.y9_c00401{bottom:286.500000px;}
.y8_c00401{bottom:603.000000px;}
.y7_c00401{bottom:630.000000px;}
.y6_c00401{bottom:657.000000px;}
.y4_c00401{bottom:702.000000px;}
.y3_c00401{bottom:1041.000000px;}
.y2_c00401{bottom:1068.000000px;}
.y1_c00401{bottom:1095.000000px;}
.yf_c00401{bottom:1194.000000px;}
.h3_c00401{height:42.292969px;}
.h6_c00401{height:44.208984px;}
.h1_c00401{height:51.257812px;}
.h5_c00401{height:56.074219px;}
.h4_c00401{height:285.000000px;}
.h2_c00401{height:307.500000px;}
.h0_c00401{height:1263.000000px;}
.w1_c00401{width:676.500000px;}
.w0_c00401{width:892.500000px;}
.x0_c00401{left:0.000000px;}
.x1_c00401{left:65.480310px;}
.x3_c00401{left:195.323400px;}
.x2_c00401{left:249.722100px;}
@media print{
.v0_c00401{vertical-align:0.000000pt;}
.ls0_c00401{letter-spacing:0.000000pt;}
.ls1_c00401{letter-spacing:0.010667pt;}
.ws0_c00401{word-spacing:0.000000pt;}
._7_c00401{margin-left:-5.590613pt;}
._5_c00401{margin-left:-3.340800pt;}
._10_c00401{margin-left:-2.447147pt;}
._3_c00401{margin-left:-1.529600pt;}
._4_c00401{width:1.107200pt;}
._0_c00401{width:2.035200pt;}
._1_c00401{width:3.558400pt;}
._2_c00401{width:4.684800pt;}
._e_c00401{width:5.632000pt;}
._f_c00401{width:6.688000pt;}
._6_c00401{width:7.852800pt;}
._a_c00401{width:9.555200pt;}
._9_c00401{width:11.104000pt;}
._b_c00401{width:12.044800pt;}
._d_c00401{width:13.139200pt;}
._8_c00401{width:14.643200pt;}
._c_c00401{width:16.473600pt;}
.fs1_c00401{font-size:48.000000pt;}
.fs2_c00401{font-size:53.333333pt;}
.fs0_c00401{font-size:64.000000pt;}
.y0_c00401{bottom:0.000000pt;}
.y5_c00401{bottom:10.666667pt;}
.y10_c00401{bottom:62.666667pt;}
.ye_c00401{bottom:118.666667pt;}
.yd_c00401{bottom:142.666667pt;}
.yc_c00401{bottom:166.666667pt;}
.yb_c00401{bottom:190.666667pt;}
.ya_c00401{bottom:214.666667pt;}
.y9_c00401{bottom:254.666667pt;}
.y8_c00401{bottom:536.000000pt;}
.y7_c00401{bottom:560.000000pt;}
.y6_c00401{bottom:584.000000pt;}
.y4_c00401{bottom:624.000000pt;}
.y3_c00401{bottom:925.333333pt;}
.y2_c00401{bottom:949.333333pt;}
.y1_c00401{bottom:973.333333pt;}
.yf_c00401{bottom:1061.333333pt;}
.h3_c00401{height:37.593750pt;}
.h6_c00401{height:39.296875pt;}
.h1_c00401{height:45.562500pt;}
.h5_c00401{height:49.843750pt;}
.h4_c00401{height:253.333333pt;}
.h2_c00401{height:273.333333pt;}
.h0_c00401{height:1122.666667pt;}
.w1_c00401{width:601.333333pt;}
.w0_c00401{width:793.333333pt;}
.x0_c00401{left:0.000000pt;}
.x1_c00401{left:58.204720pt;}
.x3_c00401{left:173.620800pt;}
.x2_c00401{left:221.975200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_88c63c900f8f5f544b389d3a.woff2')format("woff");}.ff1_c00402{font-family:ff1_c00402;line-height:0.987793;font-style:normal;font-weight:normal;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_fe8a2be1304842946b2b7fac.woff2')format("woff");}.ff2_c00402{font-family:ff2_c00402;line-height:0.934082;font-style:normal;font-weight:normal;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_ff75d620732f58d54a26424c.woff2')format("woff");}.ff3_c00402{font-family:ff3_c00402;line-height:1.124023;font-style:normal;font-weight:normal;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_fc3e6ad16b1b53b38ace3580.woff2')format("woff");}.ff4_c00402{font-family:ff4_c00402;line-height:1.155762;font-style: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;}
.ls2_c00402{letter-spacing:0.000000px;}
.ls0_c00402{letter-spacing:0.006600px;}
.ls1_c00402{letter-spacing:0.012000px;}
.sc__c00402{text-shadow:none;}
.sc0_c00402{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00402{-webkit-text-stroke:0px transparent;}
.sc0_c00402{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00402{word-spacing:0.000000px;}
._1_c00402{margin-left:-3.708000px;}
._4_c00402{margin-left:-2.476800px;}
._5_c00402{margin-left:-1.008000px;}
._0_c00402{width:1.274400px;}
._6_c00402{width:2.296800px;}
._3_c00402{width:3.412800px;}
._2_c00402{width:5.040000px;}
._c_c00402{width:6.429600px;}
._8_c00402{width:8.726400px;}
._9_c00402{width:9.763200px;}
._7_c00402{width:12.052800px;}
._b_c00402{width:13.514400px;}
._a_c00402{width:14.760000px;}
.fc1_c00402{color:transparent;}
.fc0_c00402{color:rgb(0,0,0);}
.fs0_c00402{font-size:54.000000px;}
.fs3_c00402{font-size:60.000000px;}
.fs2_c00402{font-size:66.000000px;}
.fs1_c00402{font-size:72.000000px;}
.y0_c00402{bottom:0.000000px;}
.yd_c00402{bottom:10.500000px;}
.y2_c00402{bottom:12.000000px;}
.yf_c00402{bottom:70.500000px;}
.yc_c00402{bottom:133.500000px;}
.yb_c00402{bottom:537.000000px;}
.ya_c00402{bottom:564.000000px;}
.y9_c00402{bottom:591.000000px;}
.y8_c00402{bottom:639.000000px;}
.y7_c00402{bottom:666.000000px;}
.y6_c00402{bottom:693.000000px;}
.y5_c00402{bottom:739.500000px;}
.y4_c00402{bottom:786.000000px;}
.y3_c00402{bottom:813.000000px;}
.y1_c00402{bottom:858.000000px;}
.ye_c00402{bottom:1194.000000px;}
.h2_c00402{height:42.292969px;}
.h3_c00402{height:51.257812px;}
.h6_c00402{height:56.074219px;}
.h4_c00402{height:62.519531px;}
.h1_c00402{height:255.000000px;}
.h5_c00402{height:370.500000px;}
.h0_c00402{height:1263.000000px;}
.w1_c00402{width:676.500000px;}
.w0_c00402{width:892.500000px;}
.x0_c00402{left:0.000000px;}
.x1_c00402{left:150.000000px;}
.x2_c00402{left:230.991600px;}
.x3_c00402{left:270.370950px;}
.x4_c00402{left:416.782800px;}
.x5_c00402{left:801.992850px;}
@media print{
.v0_c00402{vertical-align:0.000000pt;}
.ls2_c00402{letter-spacing:0.000000pt;}
.ls0_c00402{letter-spacing:0.005867pt;}
.ls1_c00402{letter-spacing:0.010667pt;}
.ws0_c00402{word-spacing:0.000000pt;}
._1_c00402{margin-left:-3.296000pt;}
._4_c00402{margin-left:-2.201600pt;}
._5_c00402{margin-left:-0.896000pt;}
._0_c00402{width:1.132800pt;}
._6_c00402{width:2.041600pt;}
._3_c00402{width:3.033600pt;}
._2_c00402{width:4.480000pt;}
._c_c00402{width:5.715200pt;}
._8_c00402{width:7.756800pt;}
._9_c00402{width:8.678400pt;}
._7_c00402{width:10.713600pt;}
._b_c00402{width:12.012800pt;}
._a_c00402{width:13.120000pt;}
.fs0_c00402{font-size:48.000000pt;}
.fs3_c00402{font-size:53.333333pt;}
.fs2_c00402{font-size:58.666667pt;}
.fs1_c00402{font-size:64.000000pt;}
.y0_c00402{bottom:0.000000pt;}
.yd_c00402{bottom:9.333333pt;}
.y2_c00402{bottom:10.666667pt;}
.yf_c00402{bottom:62.666667pt;}
.yc_c00402{bottom:118.666667pt;}
.yb_c00402{bottom:477.333333pt;}
.ya_c00402{bottom:501.333333pt;}
.y9_c00402{bottom:525.333333pt;}
.y8_c00402{bottom:568.000000pt;}
.y7_c00402{bottom:592.000000pt;}
.y6_c00402{bottom:616.000000pt;}
.y5_c00402{bottom:657.333333pt;}
.y4_c00402{bottom:698.666667pt;}
.y3_c00402{bottom:722.666667pt;}
.y1_c00402{bottom:762.666667pt;}
.ye_c00402{bottom:1061.333333pt;}
.h2_c00402{height:37.593750pt;}
.h3_c00402{height:45.562500pt;}
.h6_c00402{height:49.843750pt;}
.h4_c00402{height:55.572917pt;}
.h1_c00402{height:226.666667pt;}
.h5_c00402{height:329.333333pt;}
.h0_c00402{height:1122.666667pt;}
.w1_c00402{width:601.333333pt;}
.w0_c00402{width:793.333333pt;}
.x0_c00402{left:0.000000pt;}
.x1_c00402{left:133.333333pt;}
.x2_c00402{left:205.325867pt;}
.x3_c00402{left:240.329733pt;}
.x4_c00402{left:370.473600pt;}
.x5_c00402{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a1d99e567acd1c7fdf455dec.woff2')format("woff");}.ff1_c00403{font-family:ff1_c00403;line-height:0.934082;font-style:normal;font-weight:normal;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_86c069676b1d666692fe835d.woff2')format("woff");}.ff2_c00403{font-family:ff2_c00403;line-height:0.892578;font-style:normal;font-weight:normal;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_a87c1f438ad431c32d71dc6d.woff2')format("woff");}.ff3_c00403{font-family:ff3_c00403;line-height:0.789062;font-style:normal;font-weight:normal;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_8fd9db4063a75359bd0dd9b8.woff2')format("woff");}.ff4_c00403{font-family:ff4_c00403;line-height:0.755859;font-style:normal;font-weight:normal;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_0d3dc9b331bf0feb9ab0364a.woff2')format("woff");}.ff5_c00403{font-family:ff5_c00403;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00403{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00403{vertical-align:0.000000px;}
.ls2_c00403{letter-spacing:0.000000px;}
.ls0_c00403{letter-spacing:0.006600px;}
.ls3_c00403{letter-spacing:0.012000px;}
.ls1_c00403{letter-spacing:0.032400px;}
.sc__c00403{text-shadow:none;}
.sc0_c00403{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00403{-webkit-text-stroke:0px transparent;}
.sc0_c00403{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00403{word-spacing:-19.080600px;}
.ws1_c00403{word-spacing:0.000000px;}
._9_c00403{margin-left:-10.584000px;}
._14_c00403{margin-left:-7.336800px;}
._0_c00403{margin-left:-3.945600px;}
._3_c00403{margin-left:-2.786400px;}
._5_c00403{margin-left:-1.224000px;}
._1_c00403{width:1.540800px;}
._4_c00403{width:2.649600px;}
._7_c00403{width:3.672000px;}
._2_c00403{width:5.068800px;}
._8_c00403{width:6.415200px;}
._6_c00403{width:7.545600px;}
._11_c00403{width:8.647200px;}
._12_c00403{width:9.792000px;}
._f_c00403{width:11.340000px;}
._13_c00403{width:12.520800px;}
._10_c00403{width:15.292800px;}
._16_c00403{width:16.776000px;}
._15_c00403{width:21.787200px;}
._e_c00403{width:24.696000px;}
._b_c00403{width:25.804800px;}
._d_c00403{width:27.352800px;}
._a_c00403{width:28.562400px;}
._c_c00403{width:30.110400px;}
.fc1_c00403{color:transparent;}
.fc0_c00403{color:rgb(0,0,0);}
.fs2_c00403{font-size:54.000000px;}
.fs3_c00403{font-size:60.000000px;}
.fs1_c00403{font-size:66.000000px;}
.fs0_c00403{font-size:72.000000px;}
.y0_c00403{bottom:0.000000px;}
.yf_c00403{bottom:10.500000px;}
.y11_c00403{bottom:70.500000px;}
.ye_c00403{bottom:153.000000px;}
.yd_c00403{bottom:709.500000px;}
.yc_c00403{bottom:736.500000px;}
.yb_c00403{bottom:763.500000px;}
.ya_c00403{bottom:790.500000px;}
.y9_c00403{bottom:838.500000px;}
.y8_c00403{bottom:865.500000px;}
.y7_c00403{bottom:892.500000px;}
.y6_c00403{bottom:940.500000px;}
.y5_c00403{bottom:987.000000px;}
.y4_c00403{bottom:1014.000000px;}
.y3_c00403{bottom:1041.000000px;}
.y2_c00403{bottom:1068.000000px;}
.y1_c00403{bottom:1095.000000px;}
.y10_c00403{bottom:1194.000000px;}
.h4_c00403{height:41.633789px;}
.h6_c00403{height:44.208984px;}
.h2_c00403{height:47.244141px;}
.h1_c00403{height:51.257812px;}
.h5_c00403{height:56.074219px;}
.h3_c00403{height:525.000000px;}
.h0_c00403{height:1263.000000px;}
.w1_c00403{width:676.500000px;}
.w0_c00403{width:892.500000px;}
.x0_c00403{left:0.000000px;}
.x1_c00403{left:65.480310px;}
.x2_c00403{left:303.778200px;}
@media print{
.v0_c00403{vertical-align:0.000000pt;}
.ls2_c00403{letter-spacing:0.000000pt;}
.ls0_c00403{letter-spacing:0.005867pt;}
.ls3_c00403{letter-spacing:0.010667pt;}
.ls1_c00403{letter-spacing:0.028800pt;}
.ws0_c00403{word-spacing:-16.960533pt;}
.ws1_c00403{word-spacing:0.000000pt;}
._9_c00403{margin-left:-9.408000pt;}
._14_c00403{margin-left:-6.521600pt;}
._0_c00403{margin-left:-3.507200pt;}
._3_c00403{margin-left:-2.476800pt;}
._5_c00403{margin-left:-1.088000pt;}
._1_c00403{width:1.369600pt;}
._4_c00403{width:2.355200pt;}
._7_c00403{width:3.264000pt;}
._2_c00403{width:4.505600pt;}
._8_c00403{width:5.702400pt;}
._6_c00403{width:6.707200pt;}
._11_c00403{width:7.686400pt;}
._12_c00403{width:8.704000pt;}
._f_c00403{width:10.080000pt;}
._13_c00403{width:11.129600pt;}
._10_c00403{width:13.593600pt;}
._16_c00403{width:14.912000pt;}
._15_c00403{width:19.366400pt;}
._e_c00403{width:21.952000pt;}
._b_c00403{width:22.937600pt;}
._d_c00403{width:24.313600pt;}
._a_c00403{width:25.388800pt;}
._c_c00403{width:26.764800pt;}
.fs2_c00403{font-size:48.000000pt;}
.fs3_c00403{font-size:53.333333pt;}
.fs1_c00403{font-size:58.666667pt;}
.fs0_c00403{font-size:64.000000pt;}
.y0_c00403{bottom:0.000000pt;}
.yf_c00403{bottom:9.333333pt;}
.y11_c00403{bottom:62.666667pt;}
.ye_c00403{bottom:136.000000pt;}
.yd_c00403{bottom:630.666667pt;}
.yc_c00403{bottom:654.666667pt;}
.yb_c00403{bottom:678.666667pt;}
.ya_c00403{bottom:702.666667pt;}
.y9_c00403{bottom:745.333333pt;}
.y8_c00403{bottom:769.333333pt;}
.y7_c00403{bottom:793.333333pt;}
.y6_c00403{bottom:836.000000pt;}
.y5_c00403{bottom:877.333333pt;}
.y4_c00403{bottom:901.333333pt;}
.y3_c00403{bottom:925.333333pt;}
.y2_c00403{bottom:949.333333pt;}
.y1_c00403{bottom:973.333333pt;}
.y10_c00403{bottom:1061.333333pt;}
.h4_c00403{height:37.007812pt;}
.h6_c00403{height:39.296875pt;}
.h2_c00403{height:41.994792pt;}
.h1_c00403{height:45.562500pt;}
.h5_c00403{height:49.843750pt;}
.h3_c00403{height:466.666667pt;}
.h0_c00403{height:1122.666667pt;}
.w1_c00403{width:601.333333pt;}
.w0_c00403{width:793.333333pt;}
.x0_c00403{left:0.000000pt;}
.x1_c00403{left:58.204720pt;}
.x2_c00403{left:270.025067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_48cb08849acb00a80920657c.woff2')format("woff");}.ff1_c00404{font-family:ff1_c00404;line-height:0.934082;font-style:normal;font-weight:normal;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_b0e8ccd1bc27ed48c07dacf5.woff2')format("woff");}.ff2_c00404{font-family:ff2_c00404;line-height:0.789062;font-style:normal;font-weight:normal;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_bf31c5aa436fa8e84cc748ac.woff2')format("woff");}.ff3_c00404{font-family:ff3_c00404;line-height:1.101562;font-style:normal;font-weight:normal;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_fba99be5297baaa26125e6d0.woff2')format("woff");}.ff4_c00404{font-family:ff4_c00404;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00404{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00404{vertical-align:0.000000px;}
.ls3_c00404{letter-spacing:0.000000px;}
.ls4_c00404{letter-spacing:0.006600px;}
.ls2_c00404{letter-spacing:0.012000px;}
.ls0_c00404{letter-spacing:0.021600px;}
.ls1_c00404{letter-spacing:0.032400px;}
.sc__c00404{text-shadow:none;}
.sc0_c00404{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00404{-webkit-text-stroke:0px transparent;}
.sc0_c00404{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00404{word-spacing:-19.080600px;}
.ws1_c00404{word-spacing:0.000000px;}
._d_c00404{margin-left:-6.753600px;}
._2_c00404{margin-left:-4.485600px;}
._1_c00404{margin-left:-2.577600px;}
._9_c00404{margin-left:-1.252800px;}
._b_c00404{width:1.418400px;}
._4_c00404{width:2.851200px;}
._7_c00404{width:4.860000px;}
._8_c00404{width:6.976800px;}
._5_c00404{width:8.949600px;}
._c_c00404{width:10.418400px;}
._0_c00404{width:11.793600px;}
._a_c00404{width:13.053600px;}
._6_c00404{width:14.385600px;}
._3_c00404{width:16.300800px;}
._f_c00404{width:18.079200px;}
._10_c00404{width:20.901600px;}
._e_c00404{width:22.536000px;}
.fc1_c00404{color:transparent;}
.fc0_c00404{color:rgb(0,0,0);}
.fs1_c00404{font-size:54.000000px;}
.fs3_c00404{font-size:60.000000px;}
.fs2_c00404{font-size:66.000000px;}
.fs0_c00404{font-size:72.000000px;}
.y0_c00404{bottom:0.000000px;}
.y9_c00404{bottom:10.500000px;}
.yf_c00404{bottom:70.500000px;}
.yd_c00404{bottom:171.000000px;}
.yc_c00404{bottom:198.000000px;}
.yb_c00404{bottom:225.000000px;}
.ya_c00404{bottom:271.500000px;}
.y8_c00404{bottom:315.000000px;}
.y7_c00404{bottom:933.000000px;}
.y6_c00404{bottom:960.000000px;}
.y5_c00404{bottom:987.000000px;}
.y4_c00404{bottom:1014.000000px;}
.y3_c00404{bottom:1041.000000px;}
.y2_c00404{bottom:1068.000000px;}
.y1_c00404{bottom:1095.000000px;}
.ye_c00404{bottom:1194.000000px;}
.h3_c00404{height:41.633789px;}
.h1_c00404{height:51.257812px;}
.h5_c00404{height:56.074219px;}
.h4_c00404{height:61.037109px;}
.h2_c00404{height:586.500000px;}
.h0_c00404{height:1263.000000px;}
.w1_c00404{width:676.500000px;}
.w0_c00404{width:892.500000px;}
.x0_c00404{left:0.000000px;}
.x1_c00404{left:150.519750px;}
.x2_c00404{left:289.671750px;}
.x3_c00404{left:416.782800px;}
.x4_c00404{left:801.992850px;}
@media print{
.v0_c00404{vertical-align:0.000000pt;}
.ls3_c00404{letter-spacing:0.000000pt;}
.ls4_c00404{letter-spacing:0.005867pt;}
.ls2_c00404{letter-spacing:0.010667pt;}
.ls0_c00404{letter-spacing:0.019200pt;}
.ls1_c00404{letter-spacing:0.028800pt;}
.ws0_c00404{word-spacing:-16.960533pt;}
.ws1_c00404{word-spacing:0.000000pt;}
._d_c00404{margin-left:-6.003200pt;}
._2_c00404{margin-left:-3.987200pt;}
._1_c00404{margin-left:-2.291200pt;}
._9_c00404{margin-left:-1.113600pt;}
._b_c00404{width:1.260800pt;}
._4_c00404{width:2.534400pt;}
._7_c00404{width:4.320000pt;}
._8_c00404{width:6.201600pt;}
._5_c00404{width:7.955200pt;}
._c_c00404{width:9.260800pt;}
._0_c00404{width:10.483200pt;}
._a_c00404{width:11.603200pt;}
._6_c00404{width:12.787200pt;}
._3_c00404{width:14.489600pt;}
._f_c00404{width:16.070400pt;}
._10_c00404{width:18.579200pt;}
._e_c00404{width:20.032000pt;}
.fs1_c00404{font-size:48.000000pt;}
.fs3_c00404{font-size:53.333333pt;}
.fs2_c00404{font-size:58.666667pt;}
.fs0_c00404{font-size:64.000000pt;}
.y0_c00404{bottom:0.000000pt;}
.y9_c00404{bottom:9.333333pt;}
.yf_c00404{bottom:62.666667pt;}
.yd_c00404{bottom:152.000000pt;}
.yc_c00404{bottom:176.000000pt;}
.yb_c00404{bottom:200.000000pt;}
.ya_c00404{bottom:241.333333pt;}
.y8_c00404{bottom:280.000000pt;}
.y7_c00404{bottom:829.333333pt;}
.y6_c00404{bottom:853.333333pt;}
.y5_c00404{bottom:877.333333pt;}
.y4_c00404{bottom:901.333333pt;}
.y3_c00404{bottom:925.333333pt;}
.y2_c00404{bottom:949.333333pt;}
.y1_c00404{bottom:973.333333pt;}
.ye_c00404{bottom:1061.333333pt;}
.h3_c00404{height:37.007812pt;}
.h1_c00404{height:45.562500pt;}
.h5_c00404{height:49.843750pt;}
.h4_c00404{height:54.255208pt;}
.h2_c00404{height:521.333333pt;}
.h0_c00404{height:1122.666667pt;}
.w1_c00404{width:601.333333pt;}
.w0_c00404{width:793.333333pt;}
.x0_c00404{left:0.000000pt;}
.x1_c00404{left:133.795333pt;}
.x2_c00404{left:257.486000pt;}
.x3_c00404{left:370.473600pt;}
.x4_c00404{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_38591cd13cf163fc9fbd3a82.woff2')format("woff");}.ff1_c00405{font-family:ff1_c00405;line-height:0.934082;font-style:normal;font-weight:normal;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_fbf7c236fc1fcd4ae66a3a13.woff2')format("woff");}.ff2_c00405{font-family:ff2_c00405;line-height:0.783203;font-style:normal;font-weight:normal;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_6c50aab04a1dae8d64961f12.woff2')format("woff");}.ff3_c00405{font-family:ff3_c00405;line-height:0.755859;font-style:normal;font-weight:normal;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_a75cf0917a17d3c1102303ad.woff2')format("woff");}.ff4_c00405{font-family:ff4_c00405;line-height:1.155762;font-style: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;}
.ls0_c00405{letter-spacing:0.000000px;}
.ls1_c00405{letter-spacing:0.012000px;}
.sc__c00405{text-shadow:none;}
.sc0_c00405{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00405{-webkit-text-stroke:0px transparent;}
.sc0_c00405{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00405{word-spacing:-19.800000px;}
.ws1_c00405{word-spacing:0.000000px;}
._f_c00405{margin-left:-10.922400px;}
._8_c00405{margin-left:-7.250400px;}
._1_c00405{margin-left:-3.823200px;}
._5_c00405{margin-left:-2.620800px;}
._9_c00405{margin-left:-1.562400px;}
._4_c00405{width:1.821600px;}
._3_c00405{width:3.211200px;}
._0_c00405{width:5.119200px;}
._7_c00405{width:6.847200px;}
._2_c00405{width:8.928000px;}
._6_c00405{width:10.656000px;}
._e_c00405{width:11.916000px;}
._10_c00405{width:13.701600px;}
._11_c00405{width:15.062400px;}
._12_c00405{width:16.336800px;}
._13_c00405{width:17.395200px;}
._a_c00405{width:18.475200px;}
._b_c00405{width:21.700800px;}
._d_c00405{width:23.040000px;}
._c_c00405{width:24.069600px;}
._16_c00405{width:29.584800px;}
._18_c00405{width:31.485600px;}
._17_c00405{width:32.954400px;}
._15_c00405{width:34.711200px;}
._14_c00405{width:36.295200px;}
._19_c00405{width:37.332000px;}
.fc1_c00405{color:transparent;}
.fc0_c00405{color:rgb(0,0,0);}
.fs1_c00405{font-size:54.000000px;}
.fs2_c00405{font-size:60.000000px;}
.fs0_c00405{font-size:72.000000px;}
.y0_c00405{bottom:0.000000px;}
.y6_c00405{bottom:10.500000px;}
.y10_c00405{bottom:70.500000px;}
.ye_c00405{bottom:145.500000px;}
.yd_c00405{bottom:172.500000px;}
.yc_c00405{bottom:199.500000px;}
.yb_c00405{bottom:226.500000px;}
.ya_c00405{bottom:253.500000px;}
.y9_c00405{bottom:280.500000px;}
.y8_c00405{bottom:307.500000px;}
.y7_c00405{bottom:334.500000px;}
.y5_c00405{bottom:379.500000px;}
.y4_c00405{bottom:1014.000000px;}
.y3_c00405{bottom:1041.000000px;}
.y2_c00405{bottom:1068.000000px;}
.y1_c00405{bottom:1095.000000px;}
.yf_c00405{bottom:1194.000000px;}
.h3_c00405{height:41.633789px;}
.h5_c00405{height:44.208984px;}
.h1_c00405{height:51.257812px;}
.h4_c00405{height:56.074219px;}
.h2_c00405{height:603.000000px;}
.h0_c00405{height:1263.000000px;}
.w1_c00405{width:676.500000px;}
.w0_c00405{width:892.500000px;}
.x0_c00405{left:0.000000px;}
.x1_c00405{left:65.480310px;}
.x2_c00405{left:256.336950px;}
@media print{
.v0_c00405{vertical-align:0.000000pt;}
.ls0_c00405{letter-spacing:0.000000pt;}
.ls1_c00405{letter-spacing:0.010667pt;}
.ws0_c00405{word-spacing:-17.600000pt;}
.ws1_c00405{word-spacing:0.000000pt;}
._f_c00405{margin-left:-9.708800pt;}
._8_c00405{margin-left:-6.444800pt;}
._1_c00405{margin-left:-3.398400pt;}
._5_c00405{margin-left:-2.329600pt;}
._9_c00405{margin-left:-1.388800pt;}
._4_c00405{width:1.619200pt;}
._3_c00405{width:2.854400pt;}
._0_c00405{width:4.550400pt;}
._7_c00405{width:6.086400pt;}
._2_c00405{width:7.936000pt;}
._6_c00405{width:9.472000pt;}
._e_c00405{width:10.592000pt;}
._10_c00405{width:12.179200pt;}
._11_c00405{width:13.388800pt;}
._12_c00405{width:14.521600pt;}
._13_c00405{width:15.462400pt;}
._a_c00405{width:16.422400pt;}
._b_c00405{width:19.289600pt;}
._d_c00405{width:20.480000pt;}
._c_c00405{width:21.395200pt;}
._16_c00405{width:26.297600pt;}
._18_c00405{width:27.987200pt;}
._17_c00405{width:29.292800pt;}
._15_c00405{width:30.854400pt;}
._14_c00405{width:32.262400pt;}
._19_c00405{width:33.184000pt;}
.fs1_c00405{font-size:48.000000pt;}
.fs2_c00405{font-size:53.333333pt;}
.fs0_c00405{font-size:64.000000pt;}
.y0_c00405{bottom:0.000000pt;}
.y6_c00405{bottom:9.333333pt;}
.y10_c00405{bottom:62.666667pt;}
.ye_c00405{bottom:129.333333pt;}
.yd_c00405{bottom:153.333333pt;}
.yc_c00405{bottom:177.333333pt;}
.yb_c00405{bottom:201.333333pt;}
.ya_c00405{bottom:225.333333pt;}
.y9_c00405{bottom:249.333333pt;}
.y8_c00405{bottom:273.333333pt;}
.y7_c00405{bottom:297.333333pt;}
.y5_c00405{bottom:337.333333pt;}
.y4_c00405{bottom:901.333333pt;}
.y3_c00405{bottom:925.333333pt;}
.y2_c00405{bottom:949.333333pt;}
.y1_c00405{bottom:973.333333pt;}
.yf_c00405{bottom:1061.333333pt;}
.h3_c00405{height:37.007812pt;}
.h5_c00405{height:39.296875pt;}
.h1_c00405{height:45.562500pt;}
.h4_c00405{height:49.843750pt;}
.h2_c00405{height:536.000000pt;}
.h0_c00405{height:1122.666667pt;}
.w1_c00405{width:601.333333pt;}
.w0_c00405{width:793.333333pt;}
.x0_c00405{left:0.000000pt;}
.x1_c00405{left:58.204720pt;}
.x2_c00405{left:227.855067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b020cee254772f359bda12b1.woff2')format("woff");}.ff1_c00406{font-family:ff1_c00406;line-height:0.801270;font-style:normal;font-weight:normal;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_6a8d624f80186685fceb5d68.woff2')format("woff");}.ff2_c00406{font-family:ff2_c00406;line-height:0.933105;font-style:normal;font-weight:normal;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_033f57fc10c835e8f5c0cce0.woff2')format("woff");}.ff3_c00406{font-family:ff3_c00406;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00406{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00406{vertical-align:0.000000px;}
.ls1_c00406{letter-spacing:0.000000px;}
.ls0_c00406{letter-spacing:0.012000px;}
.sc__c00406{text-shadow:none;}
.sc0_c00406{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00406{-webkit-text-stroke:0px transparent;}
.sc0_c00406{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00406{word-spacing:0.000000px;}
._0_c00406{margin-left:-3.945600px;}
._e_c00406{margin-left:-2.592000px;}
._8_c00406{margin-left:-1.584000px;}
._1_c00406{width:1.540800px;}
._4_c00406{width:2.750400px;}
._6_c00406{width:4.687200px;}
._10_c00406{width:5.731200px;}
._f_c00406{width:7.135200px;}
._7_c00406{width:8.834400px;}
._5_c00406{width:10.677600px;}
._2_c00406{width:11.944800px;}
._3_c00406{width:13.500000px;}
._9_c00406{width:15.026400px;}
._d_c00406{width:16.149600px;}
._a_c00406{width:17.409600px;}
._c_c00406{width:18.720000px;}
._b_c00406{width:21.801600px;}
.fc0_c00406{color:rgb(0,0,0);}
.fs0_c00406{font-size:54.000000px;}
.fs2_c00406{font-size:60.000000px;}
.fs1_c00406{font-size:72.000000px;}
.y0_c00406{bottom:0.000000px;}
.y2_c00406{bottom:12.000000px;}
.yf_c00406{bottom:70.500000px;}
.yd_c00406{bottom:144.000000px;}
.yc_c00406{bottom:171.000000px;}
.yb_c00406{bottom:198.000000px;}
.ya_c00406{bottom:225.000000px;}
.y9_c00406{bottom:252.000000px;}
.y8_c00406{bottom:297.000000px;}
.y7_c00406{bottom:639.000000px;}
.y6_c00406{bottom:666.000000px;}
.y5_c00406{bottom:693.000000px;}
.y4_c00406{bottom:720.000000px;}
.y3_c00406{bottom:747.000000px;}
.y1_c00406{bottom:792.000000px;}
.ye_c00406{bottom:1194.000000px;}
.h2_c00406{height:42.292969px;}
.h3_c00406{height:51.187500px;}
.h5_c00406{height:56.074219px;}
.h4_c00406{height:310.500000px;}
.h1_c00406{height:321.000000px;}
.h0_c00406{height:1263.000000px;}
.w1_c00406{width:676.500000px;}
.w0_c00406{width:892.500000px;}
.x0_c00406{left:0.000000px;}
.x1_c00406{left:150.000000px;}
.x3_c00406{left:224.343750px;}
.x2_c00406{left:286.477950px;}
.x4_c00406{left:416.782800px;}
.x5_c00406{left:801.992850px;}
@media print{
.v0_c00406{vertical-align:0.000000pt;}
.ls1_c00406{letter-spacing:0.000000pt;}
.ls0_c00406{letter-spacing:0.010667pt;}
.ws0_c00406{word-spacing:0.000000pt;}
._0_c00406{margin-left:-3.507200pt;}
._e_c00406{margin-left:-2.304000pt;}
._8_c00406{margin-left:-1.408000pt;}
._1_c00406{width:1.369600pt;}
._4_c00406{width:2.444800pt;}
._6_c00406{width:4.166400pt;}
._10_c00406{width:5.094400pt;}
._f_c00406{width:6.342400pt;}
._7_c00406{width:7.852800pt;}
._5_c00406{width:9.491200pt;}
._2_c00406{width:10.617600pt;}
._3_c00406{width:12.000000pt;}
._9_c00406{width:13.356800pt;}
._d_c00406{width:14.355200pt;}
._a_c00406{width:15.475200pt;}
._c_c00406{width:16.640000pt;}
._b_c00406{width:19.379200pt;}
.fs0_c00406{font-size:48.000000pt;}
.fs2_c00406{font-size:53.333333pt;}
.fs1_c00406{font-size:64.000000pt;}
.y0_c00406{bottom:0.000000pt;}
.y2_c00406{bottom:10.666667pt;}
.yf_c00406{bottom:62.666667pt;}
.yd_c00406{bottom:128.000000pt;}
.yc_c00406{bottom:152.000000pt;}
.yb_c00406{bottom:176.000000pt;}
.ya_c00406{bottom:200.000000pt;}
.y9_c00406{bottom:224.000000pt;}
.y8_c00406{bottom:264.000000pt;}
.y7_c00406{bottom:568.000000pt;}
.y6_c00406{bottom:592.000000pt;}
.y5_c00406{bottom:616.000000pt;}
.y4_c00406{bottom:640.000000pt;}
.y3_c00406{bottom:664.000000pt;}
.y1_c00406{bottom:704.000000pt;}
.ye_c00406{bottom:1061.333333pt;}
.h2_c00406{height:37.593750pt;}
.h3_c00406{height:45.500000pt;}
.h5_c00406{height:49.843750pt;}
.h4_c00406{height:276.000000pt;}
.h1_c00406{height:285.333333pt;}
.h0_c00406{height:1122.666667pt;}
.w1_c00406{width:601.333333pt;}
.w0_c00406{width:793.333333pt;}
.x0_c00406{left:0.000000pt;}
.x1_c00406{left:133.333333pt;}
.x3_c00406{left:199.416667pt;}
.x2_c00406{left:254.647067pt;}
.x4_c00406{left:370.473600pt;}
.x5_c00406{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e9abc6d9fabe7d321abd191e.woff2')format("woff");}.ff1_c00407{font-family:ff1_c00407;line-height:0.987793;font-style:normal;font-weight:normal;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_857bbaf5da0503584797e9ec.woff2')format("woff");}.ff2_c00407{font-family:ff2_c00407;line-height:0.934082;font-style:normal;font-weight:normal;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_3970952df2709380761af913.woff2')format("woff");}.ff3_c00407{font-family:ff3_c00407;line-height:0.755859;font-style:normal;font-weight:normal;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_bc3a482ed9c9cffbf24aa4de.woff2')format("woff");}.ff4_c00407{font-family:ff4_c00407;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00407{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00407{vertical-align:0.000000px;}
.ls1_c00407{letter-spacing:0.000000px;}
.ls2_c00407{letter-spacing:0.012000px;}
.ls0_c00407{letter-spacing:0.021600px;}
.sc__c00407{text-shadow:none;}
.sc0_c00407{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00407{-webkit-text-stroke:0px transparent;}
.sc0_c00407{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00407{word-spacing:0.000000px;}
._2_c00407{margin-left:-4.723200px;}
._4_c00407{margin-left:-2.592000px;}
._6_c00407{margin-left:-1.173600px;}
._1_c00407{width:1.742400px;}
._0_c00407{width:3.117600px;}
._5_c00407{width:5.090400px;}
._3_c00407{width:7.581600px;}
._8_c00407{width:9.446400px;}
._b_c00407{width:10.778400px;}
._9_c00407{width:12.650400px;}
._7_c00407{width:13.773600px;}
._a_c00407{width:17.287200px;}
.fc1_c00407{color:transparent;}
.fc0_c00407{color:rgb(0,0,0);}
.fs0_c00407{font-size:54.000000px;}
.fs2_c00407{font-size:60.000000px;}
.fs1_c00407{font-size:72.000000px;}
.y0_c00407{bottom:0.000000px;}
.y2_c00407{bottom:10.500000px;}
.yd_c00407{bottom:70.500000px;}
.yb_c00407{bottom:127.500000px;}
.ya_c00407{bottom:420.000000px;}
.y9_c00407{bottom:447.000000px;}
.y8_c00407{bottom:474.000000px;}
.y7_c00407{bottom:501.000000px;}
.y6_c00407{bottom:528.000000px;}
.y5_c00407{bottom:576.000000px;}
.y4_c00407{bottom:603.000000px;}
.y3_c00407{bottom:630.000000px;}
.y1_c00407{bottom:675.000000px;}
.yc_c00407{bottom:1194.000000px;}
.h2_c00407{height:42.292969px;}
.h6_c00407{height:44.208984px;}
.h3_c00407{height:51.257812px;}
.h5_c00407{height:56.074219px;}
.h4_c00407{height:261.000000px;}
.h1_c00407{height:438.000000px;}
.h0_c00407{height:1263.000000px;}
.w1_c00407{width:676.500000px;}
.w0_c00407{width:892.500000px;}
.x0_c00407{left:0.000000px;}
.x1_c00407{left:66.000000px;}
.x3_c00407{left:252.520350px;}
.x2_c00407{left:263.007900px;}
@media print{
.v0_c00407{vertical-align:0.000000pt;}
.ls1_c00407{letter-spacing:0.000000pt;}
.ls2_c00407{letter-spacing:0.010667pt;}
.ls0_c00407{letter-spacing:0.019200pt;}
.ws0_c00407{word-spacing:0.000000pt;}
._2_c00407{margin-left:-4.198400pt;}
._4_c00407{margin-left:-2.304000pt;}
._6_c00407{margin-left:-1.043200pt;}
._1_c00407{width:1.548800pt;}
._0_c00407{width:2.771200pt;}
._5_c00407{width:4.524800pt;}
._3_c00407{width:6.739200pt;}
._8_c00407{width:8.396800pt;}
._b_c00407{width:9.580800pt;}
._9_c00407{width:11.244800pt;}
._7_c00407{width:12.243200pt;}
._a_c00407{width:15.366400pt;}
.fs0_c00407{font-size:48.000000pt;}
.fs2_c00407{font-size:53.333333pt;}
.fs1_c00407{font-size:64.000000pt;}
.y0_c00407{bottom:0.000000pt;}
.y2_c00407{bottom:9.333333pt;}
.yd_c00407{bottom:62.666667pt;}
.yb_c00407{bottom:113.333333pt;}
.ya_c00407{bottom:373.333333pt;}
.y9_c00407{bottom:397.333333pt;}
.y8_c00407{bottom:421.333333pt;}
.y7_c00407{bottom:445.333333pt;}
.y6_c00407{bottom:469.333333pt;}
.y5_c00407{bottom:512.000000pt;}
.y4_c00407{bottom:536.000000pt;}
.y3_c00407{bottom:560.000000pt;}
.y1_c00407{bottom:600.000000pt;}
.yc_c00407{bottom:1061.333333pt;}
.h2_c00407{height:37.593750pt;}
.h6_c00407{height:39.296875pt;}
.h3_c00407{height:45.562500pt;}
.h5_c00407{height:49.843750pt;}
.h4_c00407{height:232.000000pt;}
.h1_c00407{height:389.333333pt;}
.h0_c00407{height:1122.666667pt;}
.w1_c00407{width:601.333333pt;}
.w0_c00407{width:793.333333pt;}
.x0_c00407{left:0.000000pt;}
.x1_c00407{left:58.666667pt;}
.x3_c00407{left:224.462533pt;}
.x2_c00407{left:233.784800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9c792b5bc11f0075eb8c9c0d.woff2')format("woff");}.ff1_c00408{font-family:ff1_c00408;line-height:0.892578;font-style:normal;font-weight:normal;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_dcad806c64f9e820b0e6c0a1.woff2')format("woff");}.ff2_c00408{font-family:ff2_c00408;line-height:0.934082;font-style:normal;font-weight:normal;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_005fb89eecd7d2ca6dda0f25.woff2')format("woff");}.ff3_c00408{font-family:ff3_c00408;line-height:0.976074;font-style:normal;font-weight:normal;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_b537219c4ac9a81f41544371.woff2')format("woff");}.ff4_c00408{font-family:ff4_c00408;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00408{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00408{vertical-align:0.000000px;}
.ls3_c00408{letter-spacing:0.000000px;}
.ls0_c00408{letter-spacing:0.005400px;}
.ls2_c00408{letter-spacing:0.006600px;}
.ls1_c00408{letter-spacing:0.012000px;}
.sc__c00408{text-shadow:none;}
.sc0_c00408{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00408{-webkit-text-stroke:0px transparent;}
.sc0_c00408{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00408{word-spacing:-19.080600px;}
.ws1_c00408{word-spacing:-17.069400px;}
.ws2_c00408{word-spacing:0.000000px;}
._a_c00408{margin-left:-6.991200px;}
._0_c00408{margin-left:-3.168000px;}
._4_c00408{margin-left:-1.238400px;}
._5_c00408{width:1.353600px;}
._2_c00408{width:2.865600px;}
._7_c00408{width:4.060800px;}
._6_c00408{width:5.356800px;}
._3_c00408{width:6.458400px;}
._1_c00408{width:9.280800px;}
._b_c00408{width:11.145600px;}
._8_c00408{width:18.165600px;}
._9_c00408{width:22.996800px;}
.fc1_c00408{color:transparent;}
.fc0_c00408{color:rgb(0,0,0);}
.fs2_c00408{font-size:54.000000px;}
.fs3_c00408{font-size:60.000000px;}
.fs0_c00408{font-size:66.000000px;}
.fs1_c00408{font-size:72.000000px;}
.y0_c00408{bottom:0.000000px;}
.y5_c00408{bottom:10.500000px;}
.yb_c00408{bottom:70.500000px;}
.y9_c00408{bottom:129.000000px;}
.y8_c00408{bottom:603.000000px;}
.y7_c00408{bottom:630.000000px;}
.y6_c00408{bottom:657.000000px;}
.y4_c00408{bottom:702.000000px;}
.y3_c00408{bottom:1021.500000px;}
.y2_c00408{bottom:1048.500000px;}
.y1_c00408{bottom:1096.500000px;}
.ya_c00408{bottom:1194.000000px;}
.h4_c00408{height:42.292969px;}
.h1_c00408{height:47.244141px;}
.h2_c00408{height:51.257812px;}
.h6_c00408{height:56.074219px;}
.h3_c00408{height:288.000000px;}
.h5_c00408{height:442.500000px;}
.h0_c00408{height:1263.000000px;}
.w1_c00408{width:676.500000px;}
.w0_c00408{width:892.500000px;}
.x0_c00408{left:0.000000px;}
.x1_c00408{left:150.519750px;}
.x3_c00408{left:256.337100px;}
.x2_c00408{left:300.376800px;}
.x4_c00408{left:416.782800px;}
.x5_c00408{left:801.992850px;}
@media print{
.v0_c00408{vertical-align:0.000000pt;}
.ls3_c00408{letter-spacing:0.000000pt;}
.ls0_c00408{letter-spacing:0.004800pt;}
.ls2_c00408{letter-spacing:0.005867pt;}
.ls1_c00408{letter-spacing:0.010667pt;}
.ws0_c00408{word-spacing:-16.960533pt;}
.ws1_c00408{word-spacing:-15.172800pt;}
.ws2_c00408{word-spacing:0.000000pt;}
._a_c00408{margin-left:-6.214400pt;}
._0_c00408{margin-left:-2.816000pt;}
._4_c00408{margin-left:-1.100800pt;}
._5_c00408{width:1.203200pt;}
._2_c00408{width:2.547200pt;}
._7_c00408{width:3.609600pt;}
._6_c00408{width:4.761600pt;}
._3_c00408{width:5.740800pt;}
._1_c00408{width:8.249600pt;}
._b_c00408{width:9.907200pt;}
._8_c00408{width:16.147200pt;}
._9_c00408{width:20.441600pt;}
.fs2_c00408{font-size:48.000000pt;}
.fs3_c00408{font-size:53.333333pt;}
.fs0_c00408{font-size:58.666667pt;}
.fs1_c00408{font-size:64.000000pt;}
.y0_c00408{bottom:0.000000pt;}
.y5_c00408{bottom:9.333333pt;}
.yb_c00408{bottom:62.666667pt;}
.y9_c00408{bottom:114.666667pt;}
.y8_c00408{bottom:536.000000pt;}
.y7_c00408{bottom:560.000000pt;}
.y6_c00408{bottom:584.000000pt;}
.y4_c00408{bottom:624.000000pt;}
.y3_c00408{bottom:908.000000pt;}
.y2_c00408{bottom:932.000000pt;}
.y1_c00408{bottom:974.666667pt;}
.ya_c00408{bottom:1061.333333pt;}
.h4_c00408{height:37.593750pt;}
.h1_c00408{height:41.994792pt;}
.h2_c00408{height:45.562500pt;}
.h6_c00408{height:49.843750pt;}
.h3_c00408{height:256.000000pt;}
.h5_c00408{height:393.333333pt;}
.h0_c00408{height:1122.666667pt;}
.w1_c00408{width:601.333333pt;}
.w0_c00408{width:793.333333pt;}
.x0_c00408{left:0.000000pt;}
.x1_c00408{left:133.795333pt;}
.x3_c00408{left:227.855200pt;}
.x2_c00408{left:267.001600pt;}
.x4_c00408{left:370.473600pt;}
.x5_c00408{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ecf274c48c890bcd3a0ca2e9.woff2')format("woff");}.ff1_c00409{font-family:ff1_c00409;line-height:0.934082;font-style:normal;font-weight:normal;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_48da1293ffe358d3465a48d2.woff2')format("woff");}.ff2_c00409{font-family:ff2_c00409;line-height:0.795410;font-style:normal;font-weight:normal;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_283b2787ed764109f7856a2b.woff2')format("woff");}.ff3_c00409{font-family:ff3_c00409;line-height:0.755859;font-style:normal;font-weight:normal;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_23cce763cf190988c979da16.woff2')format("woff");}.ff4_c00409{font-family:ff4_c00409;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00409{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00409{vertical-align:0.000000px;}
.ls0_c00409{letter-spacing:0.000000px;}
.ls1_c00409{letter-spacing:0.012000px;}
.sc__c00409{text-shadow:none;}
.sc0_c00409{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00409{-webkit-text-stroke:0px transparent;}
.sc0_c00409{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00409{word-spacing:0.000000px;}
._0_c00409{margin-left:-10.584000px;}
._6_c00409{margin-left:-7.185600px;}
._7_c00409{margin-left:-3.564000px;}
._5_c00409{margin-left:-2.527200px;}
._2_c00409{margin-left:-1.123200px;}
._3_c00409{width:1.267200px;}
._4_c00409{width:2.930400px;}
._1_c00409{width:3.945600px;}
._8_c00409{width:5.565600px;}
._f_c00409{width:7.236000px;}
._d_c00409{width:8.568000px;}
._b_c00409{width:10.288800px;}
._a_c00409{width:11.469600px;}
._e_c00409{width:12.470400px;}
._c_c00409{width:14.004000px;}
._9_c00409{width:15.048000px;}
.fc1_c00409{color:transparent;}
.fc0_c00409{color:rgb(0,0,0);}
.fs1_c00409{font-size:54.000000px;}
.fs2_c00409{font-size:60.000000px;}
.fs0_c00409{font-size:72.000000px;}
.y0_c00409{bottom:0.000000px;}
.yd_c00409{bottom:10.500000px;}
.y13_c00409{bottom:70.500000px;}
.y11_c00409{bottom:136.500000px;}
.y10_c00409{bottom:163.500000px;}
.yf_c00409{bottom:190.500000px;}
.ye_c00409{bottom:217.500000px;}
.yc_c00409{bottom:262.500000px;}
.yb_c00409{bottom:783.000000px;}
.ya_c00409{bottom:810.000000px;}
.y9_c00409{bottom:837.000000px;}
.y8_c00409{bottom:864.000000px;}
.y7_c00409{bottom:891.000000px;}
.y6_c00409{bottom:918.000000px;}
.y5_c00409{bottom:966.000000px;}
.y4_c00409{bottom:993.000000px;}
.y3_c00409{bottom:1020.000000px;}
.y2_c00409{bottom:1068.000000px;}
.y1_c00409{bottom:1095.000000px;}
.y12_c00409{bottom:1194.000000px;}
.h3_c00409{height:42.292969px;}
.h5_c00409{height:44.208984px;}
.h1_c00409{height:51.257812px;}
.h4_c00409{height:56.074219px;}
.h2_c00409{height:489.000000px;}
.h0_c00409{height:1263.000000px;}
.w1_c00409{width:676.500000px;}
.w0_c00409{width:892.500000px;}
.x0_c00409{left:0.000000px;}
.x1_c00409{left:65.480310px;}
.x2_c00409{left:270.456600px;}
@media print{
.v0_c00409{vertical-align:0.000000pt;}
.ls0_c00409{letter-spacing:0.000000pt;}
.ls1_c00409{letter-spacing:0.010667pt;}
.ws0_c00409{word-spacing:0.000000pt;}
._0_c00409{margin-left:-9.408000pt;}
._6_c00409{margin-left:-6.387200pt;}
._7_c00409{margin-left:-3.168000pt;}
._5_c00409{margin-left:-2.246400pt;}
._2_c00409{margin-left:-0.998400pt;}
._3_c00409{width:1.126400pt;}
._4_c00409{width:2.604800pt;}
._1_c00409{width:3.507200pt;}
._8_c00409{width:4.947200pt;}
._f_c00409{width:6.432000pt;}
._d_c00409{width:7.616000pt;}
._b_c00409{width:9.145600pt;}
._a_c00409{width:10.195200pt;}
._e_c00409{width:11.084800pt;}
._c_c00409{width:12.448000pt;}
._9_c00409{width:13.376000pt;}
.fs1_c00409{font-size:48.000000pt;}
.fs2_c00409{font-size:53.333333pt;}
.fs0_c00409{font-size:64.000000pt;}
.y0_c00409{bottom:0.000000pt;}
.yd_c00409{bottom:9.333333pt;}
.y13_c00409{bottom:62.666667pt;}
.y11_c00409{bottom:121.333333pt;}
.y10_c00409{bottom:145.333333pt;}
.yf_c00409{bottom:169.333333pt;}
.ye_c00409{bottom:193.333333pt;}
.yc_c00409{bottom:233.333333pt;}
.yb_c00409{bottom:696.000000pt;}
.ya_c00409{bottom:720.000000pt;}
.y9_c00409{bottom:744.000000pt;}
.y8_c00409{bottom:768.000000pt;}
.y7_c00409{bottom:792.000000pt;}
.y6_c00409{bottom:816.000000pt;}
.y5_c00409{bottom:858.666667pt;}
.y4_c00409{bottom:882.666667pt;}
.y3_c00409{bottom:906.666667pt;}
.y2_c00409{bottom:949.333333pt;}
.y1_c00409{bottom:973.333333pt;}
.y12_c00409{bottom:1061.333333pt;}
.h3_c00409{height:37.593750pt;}
.h5_c00409{height:39.296875pt;}
.h1_c00409{height:45.562500pt;}
.h4_c00409{height:49.843750pt;}
.h2_c00409{height:434.666667pt;}
.h0_c00409{height:1122.666667pt;}
.w1_c00409{width:601.333333pt;}
.w0_c00409{width:793.333333pt;}
.x0_c00409{left:0.000000pt;}
.x1_c00409{left:58.204720pt;}
.x2_c00409{left:240.405867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_51033d1214987d461aed49ee.woff2')format("woff");}.ff1_c00410{font-family:ff1_c00410;line-height:1.144531;font-style:normal;font-weight:normal;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_d015390a306480032dbe3b97.woff2')format("woff");}.ff2_c00410{font-family:ff2_c00410;line-height:0.934082;font-style:normal;font-weight:normal;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_2cac5e7f68718872534268cf.woff2')format("woff");}.ff3_c00410{font-family:ff3_c00410;line-height:1.155762;font-style: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;}
.ls2_c00410{letter-spacing:0.000000px;}
.ls1_c00410{letter-spacing:0.012000px;}
.ls0_c00410{letter-spacing:0.021600px;}
.sc__c00410{text-shadow:none;}
.sc0_c00410{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00410{-webkit-text-stroke:0px transparent;}
.sc0_c00410{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00410{word-spacing:0.000000px;}
._6_c00410{margin-left:-4.140000px;}
._0_c00410{margin-left:-2.376000px;}
._4_c00410{margin-left:-1.123200px;}
._3_c00410{width:1.476000px;}
._c_c00410{width:2.613600px;}
._9_c00410{width:3.643200px;}
._2_c00410{width:4.766400px;}
._5_c00410{width:5.904000px;}
._1_c00410{width:7.884000px;}
._7_c00410{width:9.561600px;}
._a_c00410{width:10.972800px;}
._8_c00410{width:12.412800px;}
._d_c00410{width:13.939200px;}
._b_c00410{width:15.660000px;}
.fc1_c00410{color:transparent;}
.fc0_c00410{color:rgb(0,0,0);}
.fs0_c00410{font-size:54.000000px;}
.fs2_c00410{font-size:60.000000px;}
.fs1_c00410{font-size:72.000000px;}
.y0_c00410{bottom:0.000000px;}
.y2_c00410{bottom:10.500000px;}
.yb_c00410{bottom:70.500000px;}
.y9_c00410{bottom:159.000000px;}
.y8_c00410{bottom:186.000000px;}
.y7_c00410{bottom:213.000000px;}
.y6_c00410{bottom:240.000000px;}
.y5_c00410{bottom:285.000000px;}
.y4_c00410{bottom:697.500000px;}
.y3_c00410{bottom:724.500000px;}
.y1_c00410{bottom:769.500000px;}
.ya_c00410{bottom:1194.000000px;}
.h2_c00410{height:50.756836px;}
.h3_c00410{height:51.257812px;}
.h5_c00410{height:56.074219px;}
.h1_c00410{height:343.500000px;}
.h4_c00410{height:381.000000px;}
.h0_c00410{height:1263.000000px;}
.w1_c00410{width:676.500000px;}
.w0_c00410{width:892.500000px;}
.x0_c00410{left:0.000000px;}
.x1_c00410{left:150.000000px;}
.x2_c00410{left:218.618700px;}
.x3_c00410{left:248.443350px;}
.x4_c00410{left:416.782800px;}
.x5_c00410{left:801.992850px;}
@media print{
.v0_c00410{vertical-align:0.000000pt;}
.ls2_c00410{letter-spacing:0.000000pt;}
.ls1_c00410{letter-spacing:0.010667pt;}
.ls0_c00410{letter-spacing:0.019200pt;}
.ws0_c00410{word-spacing:0.000000pt;}
._6_c00410{margin-left:-3.680000pt;}
._0_c00410{margin-left:-2.112000pt;}
._4_c00410{margin-left:-0.998400pt;}
._3_c00410{width:1.312000pt;}
._c_c00410{width:2.323200pt;}
._9_c00410{width:3.238400pt;}
._2_c00410{width:4.236800pt;}
._5_c00410{width:5.248000pt;}
._1_c00410{width:7.008000pt;}
._7_c00410{width:8.499200pt;}
._a_c00410{width:9.753600pt;}
._8_c00410{width:11.033600pt;}
._d_c00410{width:12.390400pt;}
._b_c00410{width:13.920000pt;}
.fs0_c00410{font-size:48.000000pt;}
.fs2_c00410{font-size:53.333333pt;}
.fs1_c00410{font-size:64.000000pt;}
.y0_c00410{bottom:0.000000pt;}
.y2_c00410{bottom:9.333333pt;}
.yb_c00410{bottom:62.666667pt;}
.y9_c00410{bottom:141.333333pt;}
.y8_c00410{bottom:165.333333pt;}
.y7_c00410{bottom:189.333333pt;}
.y6_c00410{bottom:213.333333pt;}
.y5_c00410{bottom:253.333333pt;}
.y4_c00410{bottom:620.000000pt;}
.y3_c00410{bottom:644.000000pt;}
.y1_c00410{bottom:684.000000pt;}
.ya_c00410{bottom:1061.333333pt;}
.h2_c00410{height:45.117188pt;}
.h3_c00410{height:45.562500pt;}
.h5_c00410{height:49.843750pt;}
.h1_c00410{height:305.333333pt;}
.h4_c00410{height:338.666667pt;}
.h0_c00410{height:1122.666667pt;}
.w1_c00410{width:601.333333pt;}
.w0_c00410{width:793.333333pt;}
.x0_c00410{left:0.000000pt;}
.x1_c00410{left:133.333333pt;}
.x2_c00410{left:194.327733pt;}
.x3_c00410{left:220.838533pt;}
.x4_c00410{left:370.473600pt;}
.x5_c00410{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_04dbe856e6ec2c89fd512ef1.woff2')format("woff");}.ff1_c00411{font-family:ff1_c00411;line-height:0.934082;font-style:normal;font-weight:normal;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_8483586417fd5414d0500396.woff2')format("woff");}.ff2_c00411{font-family:ff2_c00411;line-height:0.987793;font-style:normal;font-weight:normal;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_9af1c9c04c594a7b5148b966.woff2')format("woff");}.ff3_c00411{font-family:ff3_c00411;line-height:0.892578;font-style:normal;font-weight:normal;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_77f1f9290cf54107de696cef.woff2')format("woff");}.ff4_c00411{font-family:ff4_c00411;line-height:0.756836;font-style:normal;font-weight:normal;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_54f6347072f247c40764a836.woff2')format("woff");}.ff5_c00411{font-family:ff5_c00411;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00411{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00411{vertical-align:0.000000px;}
.ls1_c00411{letter-spacing:0.000000px;}
.ls0_c00411{letter-spacing:0.006600px;}
.ls2_c00411{letter-spacing:0.012000px;}
.sc__c00411{text-shadow:none;}
.sc0_c00411{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00411{-webkit-text-stroke:0px transparent;}
.sc0_c00411{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00411{word-spacing:0.000000px;}
._b_c00411{margin-left:-6.487200px;}
._d_c00411{margin-left:-5.392800px;}
._7_c00411{margin-left:-3.081600px;}
._9_c00411{margin-left:-1.872000px;}
._5_c00411{width:1.008000px;}
._3_c00411{width:2.174400px;}
._1_c00411{width:3.902400px;}
._c_c00411{width:5.176800px;}
._2_c00411{width:6.652800px;}
._4_c00411{width:8.395200px;}
._6_c00411{width:9.547200px;}
._0_c00411{width:10.555200px;}
._a_c00411{width:12.427200px;}
._8_c00411{width:14.608800px;}
._12_c00411{width:15.847200px;}
._11_c00411{width:18.338400px;}
._10_c00411{width:20.872800px;}
._e_c00411{width:21.924000px;}
._f_c00411{width:25.056000px;}
.fc1_c00411{color:transparent;}
.fc0_c00411{color:rgb(0,0,0);}
.fs1_c00411{font-size:54.000000px;}
.fs3_c00411{font-size:60.000000px;}
.fs2_c00411{font-size:66.000000px;}
.fs0_c00411{font-size:72.000000px;}
.y0_c00411{bottom:0.000000px;}
.y4_c00411{bottom:10.500000px;}
.yf_c00411{bottom:70.500000px;}
.yd_c00411{bottom:150.000000px;}
.yc_c00411{bottom:177.000000px;}
.yb_c00411{bottom:204.000000px;}
.ya_c00411{bottom:231.000000px;}
.y9_c00411{bottom:279.000000px;}
.y8_c00411{bottom:306.000000px;}
.y7_c00411{bottom:333.000000px;}
.y6_c00411{bottom:360.000000px;}
.y5_c00411{bottom:406.500000px;}
.y3_c00411{bottom:450.000000px;}
.y2_c00411{bottom:1068.000000px;}
.y1_c00411{bottom:1095.000000px;}
.ye_c00411{bottom:1194.000000px;}
.h3_c00411{height:42.292969px;}
.h6_c00411{height:44.208984px;}
.h4_c00411{height:47.244141px;}
.h1_c00411{height:51.257812px;}
.h5_c00411{height:56.074219px;}
.h2_c00411{height:549.000000px;}
.h0_c00411{height:1263.000000px;}
.w1_c00411{width:676.500000px;}
.w0_c00411{width:892.500000px;}
.x0_c00411{left:0.000000px;}
.x1_c00411{left:65.480310px;}
.x2_c00411{left:224.478900px;}
@media print{
.v0_c00411{vertical-align:0.000000pt;}
.ls1_c00411{letter-spacing:0.000000pt;}
.ls0_c00411{letter-spacing:0.005867pt;}
.ls2_c00411{letter-spacing:0.010667pt;}
.ws0_c00411{word-spacing:0.000000pt;}
._b_c00411{margin-left:-5.766400pt;}
._d_c00411{margin-left:-4.793600pt;}
._7_c00411{margin-left:-2.739200pt;}
._9_c00411{margin-left:-1.664000pt;}
._5_c00411{width:0.896000pt;}
._3_c00411{width:1.932800pt;}
._1_c00411{width:3.468800pt;}
._c_c00411{width:4.601600pt;}
._2_c00411{width:5.913600pt;}
._4_c00411{width:7.462400pt;}
._6_c00411{width:8.486400pt;}
._0_c00411{width:9.382400pt;}
._a_c00411{width:11.046400pt;}
._8_c00411{width:12.985600pt;}
._12_c00411{width:14.086400pt;}
._11_c00411{width:16.300800pt;}
._10_c00411{width:18.553600pt;}
._e_c00411{width:19.488000pt;}
._f_c00411{width:22.272000pt;}
.fs1_c00411{font-size:48.000000pt;}
.fs3_c00411{font-size:53.333333pt;}
.fs2_c00411{font-size:58.666667pt;}
.fs0_c00411{font-size:64.000000pt;}
.y0_c00411{bottom:0.000000pt;}
.y4_c00411{bottom:9.333333pt;}
.yf_c00411{bottom:62.666667pt;}
.yd_c00411{bottom:133.333333pt;}
.yc_c00411{bottom:157.333333pt;}
.yb_c00411{bottom:181.333333pt;}
.ya_c00411{bottom:205.333333pt;}
.y9_c00411{bottom:248.000000pt;}
.y8_c00411{bottom:272.000000pt;}
.y7_c00411{bottom:296.000000pt;}
.y6_c00411{bottom:320.000000pt;}
.y5_c00411{bottom:361.333333pt;}
.y3_c00411{bottom:400.000000pt;}
.y2_c00411{bottom:949.333333pt;}
.y1_c00411{bottom:973.333333pt;}
.ye_c00411{bottom:1061.333333pt;}
.h3_c00411{height:37.593750pt;}
.h6_c00411{height:39.296875pt;}
.h4_c00411{height:41.994792pt;}
.h1_c00411{height:45.562500pt;}
.h5_c00411{height:49.843750pt;}
.h2_c00411{height:488.000000pt;}
.h0_c00411{height:1122.666667pt;}
.w1_c00411{width:601.333333pt;}
.w0_c00411{width:793.333333pt;}
.x0_c00411{left:0.000000pt;}
.x1_c00411{left:58.204720pt;}
.x2_c00411{left:199.536800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d0dc76748b776cc161d83f32.woff2')format("woff");}.ff1_c00412{font-family:ff1_c00412;line-height:0.934082;font-style:normal;font-weight:normal;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_39fc792c85a6c107ffcab57f.woff2')format("woff");}.ff2_c00412{font-family:ff2_c00412;line-height:0.927734;font-style:normal;font-weight:normal;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_d8f9cb64df84df2331e023fb.woff2')format("woff");}.ff3_c00412{font-family:ff3_c00412;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00412{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00412{vertical-align:0.000000px;}
.ls1_c00412{letter-spacing:0.000000px;}
.ls0_c00412{letter-spacing:0.012000px;}
.sc__c00412{text-shadow:none;}
.sc0_c00412{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00412{-webkit-text-stroke:0px transparent;}
.sc0_c00412{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00412{word-spacing:0.000000px;}
._13_c00412{margin-left:-7.624800px;}
._16_c00412{margin-left:-4.788000px;}
._1_c00412{margin-left:-2.980800px;}
._4_c00412{margin-left:-1.749600px;}
._3_c00412{width:1.792800px;}
._0_c00412{width:3.434400px;}
._5_c00412{width:5.320800px;}
._2_c00412{width:6.458400px;}
._7_c00412{width:7.596000px;}
._6_c00412{width:8.971200px;}
._8_c00412{width:10.303200px;}
._14_c00412{width:11.361600px;}
._9_c00412{width:13.262400px;}
._15_c00412{width:14.284800px;}
._17_c00412{width:16.632000px;}
._11_c00412{width:17.834400px;}
._f_c00412{width:22.377600px;}
._10_c00412{width:24.134400px;}
._12_c00412{width:25.351200px;}
._d_c00412{width:27.820800px;}
._c_c00412{width:29.412000px;}
._a_c00412{width:32.932800px;}
._b_c00412{width:34.639200px;}
._e_c00412{width:35.870400px;}
.fc0_c00412{color:rgb(0,0,0);}
.fs1_c00412{font-size:54.000000px;}
.fs2_c00412{font-size:60.000000px;}
.fs0_c00412{font-size:72.000000px;}
.y0_c00412{bottom:0.000000px;}
.yc_c00412{bottom:12.000000px;}
.ye_c00412{bottom:70.500000px;}
.yb_c00412{bottom:225.000000px;}
.ya_c00412{bottom:810.000000px;}
.y9_c00412{bottom:837.000000px;}
.y8_c00412{bottom:864.000000px;}
.y7_c00412{bottom:891.000000px;}
.y6_c00412{bottom:939.000000px;}
.y5_c00412{bottom:966.000000px;}
.y4_c00412{bottom:993.000000px;}
.y3_c00412{bottom:1020.000000px;}
.y2_c00412{bottom:1068.000000px;}
.y1_c00412{bottom:1095.000000px;}
.yd_c00412{bottom:1194.000000px;}
.h3_c00412{height:41.633789px;}
.h1_c00412{height:51.257812px;}
.h4_c00412{height:56.074219px;}
.h2_c00412{height:553.500000px;}
.h0_c00412{height:1263.000000px;}
.w1_c00412{width:676.500000px;}
.w0_c00412{width:892.500000px;}
.x0_c00412{left:0.000000px;}
.x1_c00412{left:150.519750px;}
.x2_c00412{left:203.006100px;}
.x3_c00412{left:416.782800px;}
.x4_c00412{left:801.992850px;}
@media print{
.v0_c00412{vertical-align:0.000000pt;}
.ls1_c00412{letter-spacing:0.000000pt;}
.ls0_c00412{letter-spacing:0.010667pt;}
.ws0_c00412{word-spacing:0.000000pt;}
._13_c00412{margin-left:-6.777600pt;}
._16_c00412{margin-left:-4.256000pt;}
._1_c00412{margin-left:-2.649600pt;}
._4_c00412{margin-left:-1.555200pt;}
._3_c00412{width:1.593600pt;}
._0_c00412{width:3.052800pt;}
._5_c00412{width:4.729600pt;}
._2_c00412{width:5.740800pt;}
._7_c00412{width:6.752000pt;}
._6_c00412{width:7.974400pt;}
._8_c00412{width:9.158400pt;}
._14_c00412{width:10.099200pt;}
._9_c00412{width:11.788800pt;}
._15_c00412{width:12.697600pt;}
._17_c00412{width:14.784000pt;}
._11_c00412{width:15.852800pt;}
._f_c00412{width:19.891200pt;}
._10_c00412{width:21.452800pt;}
._12_c00412{width:22.534400pt;}
._d_c00412{width:24.729600pt;}
._c_c00412{width:26.144000pt;}
._a_c00412{width:29.273600pt;}
._b_c00412{width:30.790400pt;}
._e_c00412{width:31.884800pt;}
.fs1_c00412{font-size:48.000000pt;}
.fs2_c00412{font-size:53.333333pt;}
.fs0_c00412{font-size:64.000000pt;}
.y0_c00412{bottom:0.000000pt;}
.yc_c00412{bottom:10.666667pt;}
.ye_c00412{bottom:62.666667pt;}
.yb_c00412{bottom:200.000000pt;}
.ya_c00412{bottom:720.000000pt;}
.y9_c00412{bottom:744.000000pt;}
.y8_c00412{bottom:768.000000pt;}
.y7_c00412{bottom:792.000000pt;}
.y6_c00412{bottom:834.666667pt;}
.y5_c00412{bottom:858.666667pt;}
.y4_c00412{bottom:882.666667pt;}
.y3_c00412{bottom:906.666667pt;}
.y2_c00412{bottom:949.333333pt;}
.y1_c00412{bottom:973.333333pt;}
.yd_c00412{bottom:1061.333333pt;}
.h3_c00412{height:37.007812pt;}
.h1_c00412{height:45.562500pt;}
.h4_c00412{height:49.843750pt;}
.h2_c00412{height:492.000000pt;}
.h0_c00412{height:1122.666667pt;}
.w1_c00412{width:601.333333pt;}
.w0_c00412{width:793.333333pt;}
.x0_c00412{left:0.000000pt;}
.x1_c00412{left:133.795333pt;}
.x2_c00412{left:180.449867pt;}
.x3_c00412{left:370.473600pt;}
.x4_c00412{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_41cc3155c3e32436cceb4f8e.woff2')format("woff");}.ff1_c00413{font-family:ff1_c00413;line-height:1.144531;font-style:normal;font-weight:normal;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_d2e7361146c0e8b6a687e941.woff2')format("woff");}.ff2_c00413{font-family:ff2_c00413;line-height:0.933105;font-style:normal;font-weight:normal;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_eb7762a58ae58632e3d4176f.woff2')format("woff");}.ff3_c00413{font-family:ff3_c00413;line-height:0.755859;font-style:normal;font-weight:normal;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_b08e3f58c2ae2812b9334101.woff2')format("woff");}.ff4_c00413{font-family:ff4_c00413;line-height:1.155762;font-style: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;}
.ls1_c00413{letter-spacing:0.000000px;}
.ls2_c00413{letter-spacing:0.012000px;}
.ls0_c00413{letter-spacing:0.021600px;}
.sc__c00413{text-shadow:none;}
.sc0_c00413{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00413{-webkit-text-stroke:0px transparent;}
.sc0_c00413{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00413{word-spacing:0.000000px;}
._8_c00413{margin-left:-7.192800px;}
._3_c00413{margin-left:-4.154400px;}
._a_c00413{margin-left:-2.599200px;}
._7_c00413{margin-left:-1.260000px;}
._5_c00413{width:1.792800px;}
._2_c00413{width:3.196800px;}
._1_c00413{width:5.090400px;}
._6_c00413{width:6.494400px;}
._0_c00413{width:8.251200px;}
._9_c00413{width:9.576000px;}
._4_c00413{width:12.448800px;}
.fc0_c00413{color:rgb(0,0,0);}
.fs0_c00413{font-size:54.000000px;}
.fs2_c00413{font-size:60.000000px;}
.fs1_c00413{font-size:72.000000px;}
.y0_c00413{bottom:0.000000px;}
.y2_c00413{bottom:12.000000px;}
.yd_c00413{bottom:70.500000px;}
.yb_c00413{bottom:129.000000px;}
.ya_c00413{bottom:501.000000px;}
.y9_c00413{bottom:528.000000px;}
.y8_c00413{bottom:555.000000px;}
.y7_c00413{bottom:582.000000px;}
.y6_c00413{bottom:609.000000px;}
.y5_c00413{bottom:636.000000px;}
.y4_c00413{bottom:684.000000px;}
.y3_c00413{bottom:711.000000px;}
.y1_c00413{bottom:756.000000px;}
.yc_c00413{bottom:1194.000000px;}
.h6_c00413{height:44.208984px;}
.h2_c00413{height:50.756836px;}
.h3_c00413{height:51.187500px;}
.h5_c00413{height:56.074219px;}
.h4_c00413{height:340.500000px;}
.h1_c00413{height:357.000000px;}
.h0_c00413{height:1263.000000px;}
.w1_c00413{width:676.500000px;}
.w0_c00413{width:892.500000px;}
.x0_c00413{left:0.000000px;}
.x1_c00413{left:66.000000px;}
.x3_c00413{left:169.918500px;}
.x2_c00413{left:226.647600px;}
@media print{
.v0_c00413{vertical-align:0.000000pt;}
.ls1_c00413{letter-spacing:0.000000pt;}
.ls2_c00413{letter-spacing:0.010667pt;}
.ls0_c00413{letter-spacing:0.019200pt;}
.ws0_c00413{word-spacing:0.000000pt;}
._8_c00413{margin-left:-6.393600pt;}
._3_c00413{margin-left:-3.692800pt;}
._a_c00413{margin-left:-2.310400pt;}
._7_c00413{margin-left:-1.120000pt;}
._5_c00413{width:1.593600pt;}
._2_c00413{width:2.841600pt;}
._1_c00413{width:4.524800pt;}
._6_c00413{width:5.772800pt;}
._0_c00413{width:7.334400pt;}
._9_c00413{width:8.512000pt;}
._4_c00413{width:11.065600pt;}
.fs0_c00413{font-size:48.000000pt;}
.fs2_c00413{font-size:53.333333pt;}
.fs1_c00413{font-size:64.000000pt;}
.y0_c00413{bottom:0.000000pt;}
.y2_c00413{bottom:10.666667pt;}
.yd_c00413{bottom:62.666667pt;}
.yb_c00413{bottom:114.666667pt;}
.ya_c00413{bottom:445.333333pt;}
.y9_c00413{bottom:469.333333pt;}
.y8_c00413{bottom:493.333333pt;}
.y7_c00413{bottom:517.333333pt;}
.y6_c00413{bottom:541.333333pt;}
.y5_c00413{bottom:565.333333pt;}
.y4_c00413{bottom:608.000000pt;}
.y3_c00413{bottom:632.000000pt;}
.y1_c00413{bottom:672.000000pt;}
.yc_c00413{bottom:1061.333333pt;}
.h6_c00413{height:39.296875pt;}
.h2_c00413{height:45.117188pt;}
.h3_c00413{height:45.500000pt;}
.h5_c00413{height:49.843750pt;}
.h4_c00413{height:302.666667pt;}
.h1_c00413{height:317.333333pt;}
.h0_c00413{height:1122.666667pt;}
.w1_c00413{width:601.333333pt;}
.w0_c00413{width:793.333333pt;}
.x0_c00413{left:0.000000pt;}
.x1_c00413{left:58.666667pt;}
.x3_c00413{left:151.038667pt;}
.x2_c00413{left:201.464533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_41b23facfa530eb37e527b17.woff2')format("woff");}.ff1_c00414{font-family:ff1_c00414;line-height:1.124023;font-style:normal;font-weight:normal;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_fec010a8a0c880d2f7b7763d.woff2')format("woff");}.ff2_c00414{font-family:ff2_c00414;line-height:0.934082;font-style:normal;font-weight:normal;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_3a8237cf0488d4f041c2ad26.woff2')format("woff");}.ff3_c00414{font-family:ff3_c00414;line-height:0.987793;font-style:normal;font-weight:normal;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_32e54958102a8750f9b494f4.woff2')format("woff");}.ff4_c00414{font-family:ff4_c00414;line-height:1.089844;font-style:normal;font-weight:normal;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_73d85c4fd863804371fe1008.woff2')format("woff");}.ff5_c00414{font-family:ff5_c00414;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00414{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00414{vertical-align:0.000000px;}
.ls1_c00414{letter-spacing:0.000000px;}
.ls0_c00414{letter-spacing:0.012000px;}
.sc__c00414{text-shadow:none;}
.sc0_c00414{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00414{-webkit-text-stroke:0px transparent;}
.sc0_c00414{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00414{word-spacing:0.000000px;}
._e_c00414{margin-left:-6.818400px;}
._9_c00414{margin-left:-3.672000px;}
._b_c00414{margin-left:-2.397600px;}
._7_c00414{margin-left:-1.188000px;}
._2_c00414{width:1.231200px;}
._d_c00414{width:2.275200px;}
._0_c00414{width:3.751200px;}
._5_c00414{width:5.083200px;}
._10_c00414{width:6.127200px;}
._c_c00414{width:7.833600px;}
._6_c00414{width:9.813600px;}
._1_c00414{width:11.116800px;}
._f_c00414{width:12.268800px;}
._3_c00414{width:13.672800px;}
._4_c00414{width:14.896800px;}
._8_c00414{width:16.027200px;}
._a_c00414{width:18.655200px;}
.fc0_c00414{color:rgb(0,0,0);}
.fs2_c00414{font-size:54.000000px;}
.fs3_c00414{font-size:60.000000px;}
.fs0_c00414{font-size:66.000000px;}
.fs1_c00414{font-size:72.000000px;}
.y0_c00414{bottom:0.000000px;}
.y7_c00414{bottom:12.000000px;}
.y11_c00414{bottom:70.500000px;}
.yf_c00414{bottom:178.500000px;}
.ye_c00414{bottom:205.500000px;}
.yd_c00414{bottom:232.500000px;}
.yc_c00414{bottom:259.500000px;}
.yb_c00414{bottom:307.500000px;}
.ya_c00414{bottom:354.000000px;}
.y9_c00414{bottom:381.000000px;}
.y8_c00414{bottom:408.000000px;}
.y6_c00414{bottom:453.000000px;}
.y5_c00414{bottom:967.500000px;}
.y4_c00414{bottom:994.500000px;}
.y3_c00414{bottom:1021.500000px;}
.y2_c00414{bottom:1048.500000px;}
.y1_c00414{bottom:1096.500000px;}
.y10_c00414{bottom:1194.000000px;}
.h4_c00414{height:42.292969px;}
.h2_c00414{height:51.257812px;}
.h6_c00414{height:56.074219px;}
.h5_c00414{height:60.263672px;}
.h1_c00414{height:62.519531px;}
.h3_c00414{height:483.000000px;}
.h0_c00414{height:1263.000000px;}
.w1_c00414{width:676.500000px;}
.w0_c00414{width:892.500000px;}
.x0_c00414{left:0.000000px;}
.x2_c00414{left:63.938970px;}
.x1_c00414{left:150.519750px;}
.x3_c00414{left:192.519750px;}
.x4_c00414{left:416.782800px;}
.x5_c00414{left:801.992850px;}
@media print{
.v0_c00414{vertical-align:0.000000pt;}
.ls1_c00414{letter-spacing:0.000000pt;}
.ls0_c00414{letter-spacing:0.010667pt;}
.ws0_c00414{word-spacing:0.000000pt;}
._e_c00414{margin-left:-6.060800pt;}
._9_c00414{margin-left:-3.264000pt;}
._b_c00414{margin-left:-2.131200pt;}
._7_c00414{margin-left:-1.056000pt;}
._2_c00414{width:1.094400pt;}
._d_c00414{width:2.022400pt;}
._0_c00414{width:3.334400pt;}
._5_c00414{width:4.518400pt;}
._10_c00414{width:5.446400pt;}
._c_c00414{width:6.963200pt;}
._6_c00414{width:8.723200pt;}
._1_c00414{width:9.881600pt;}
._f_c00414{width:10.905600pt;}
._3_c00414{width:12.153600pt;}
._4_c00414{width:13.241600pt;}
._8_c00414{width:14.246400pt;}
._a_c00414{width:16.582400pt;}
.fs2_c00414{font-size:48.000000pt;}
.fs3_c00414{font-size:53.333333pt;}
.fs0_c00414{font-size:58.666667pt;}
.fs1_c00414{font-size:64.000000pt;}
.y0_c00414{bottom:0.000000pt;}
.y7_c00414{bottom:10.666667pt;}
.y11_c00414{bottom:62.666667pt;}
.yf_c00414{bottom:158.666667pt;}
.ye_c00414{bottom:182.666667pt;}
.yd_c00414{bottom:206.666667pt;}
.yc_c00414{bottom:230.666667pt;}
.yb_c00414{bottom:273.333333pt;}
.ya_c00414{bottom:314.666667pt;}
.y9_c00414{bottom:338.666667pt;}
.y8_c00414{bottom:362.666667pt;}
.y6_c00414{bottom:402.666667pt;}
.y5_c00414{bottom:860.000000pt;}
.y4_c00414{bottom:884.000000pt;}
.y3_c00414{bottom:908.000000pt;}
.y2_c00414{bottom:932.000000pt;}
.y1_c00414{bottom:974.666667pt;}
.y10_c00414{bottom:1061.333333pt;}
.h4_c00414{height:37.593750pt;}
.h2_c00414{height:45.562500pt;}
.h6_c00414{height:49.843750pt;}
.h5_c00414{height:53.567708pt;}
.h1_c00414{height:55.572917pt;}
.h3_c00414{height:429.333333pt;}
.h0_c00414{height:1122.666667pt;}
.w1_c00414{width:601.333333pt;}
.w0_c00414{width:793.333333pt;}
.x0_c00414{left:0.000000pt;}
.x2_c00414{left:56.834640pt;}
.x1_c00414{left:133.795333pt;}
.x3_c00414{left:171.128667pt;}
.x4_c00414{left:370.473600pt;}
.x5_c00414{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_193ea9dbe4337e5616e27b67.woff2')format("woff");}.ff1_c00415{font-family:ff1_c00415;line-height:0.934082;font-style:normal;font-weight:normal;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_681c0e0c42f2e8b8c13ec4e0.woff2')format("woff");}.ff2_c00415{font-family:ff2_c00415;line-height:0.987793;font-style:normal;font-weight:normal;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_06c7cb4cee60a59e36e6f33d.woff2')format("woff");}.ff3_c00415{font-family:ff3_c00415;line-height:0.755859;font-style:normal;font-weight:normal;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_1f11020c79ebb695570bccff.woff2')format("woff");}.ff4_c00415{font-family:ff4_c00415;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00415{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00415{vertical-align:0.000000px;}
.ls0_c00415{letter-spacing:0.000000px;}
.ls1_c00415{letter-spacing:0.012000px;}
.sc__c00415{text-shadow:none;}
.sc0_c00415{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00415{-webkit-text-stroke:0px transparent;}
.sc0_c00415{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00415{word-spacing:-19.800000px;}
.ws1_c00415{word-spacing:0.000000px;}
._14_c00415{margin-left:-10.584000px;}
._8_c00415{margin-left:-4.629600px;}
._3_c00415{margin-left:-3.434400px;}
._13_c00415{margin-left:-2.239200px;}
._7_c00415{margin-left:-1.058400px;}
._0_c00415{width:1.519200px;}
._4_c00415{width:2.858400px;}
._6_c00415{width:4.485600px;}
._17_c00415{width:5.486400px;}
._9_c00415{width:6.487200px;}
._a_c00415{width:8.496000px;}
._b_c00415{width:10.713600px;}
._5_c00415{width:12.376800px;}
._1_c00415{width:14.277600px;}
._2_c00415{width:15.804000px;}
._15_c00415{width:17.632800px;}
._16_c00415{width:18.712800px;}
._12_c00415{width:20.822400px;}
._f_c00415{width:22.255200px;}
._10_c00415{width:23.889600px;}
._11_c00415{width:25.300800px;}
._d_c00415{width:26.755200px;}
._c_c00415{width:27.828000px;}
._e_c00415{width:30.196800px;}
.fc0_c00415{color:rgb(0,0,0);}
.fs1_c00415{font-size:54.000000px;}
.fs2_c00415{font-size:60.000000px;}
.fs0_c00415{font-size:72.000000px;}
.y0_c00415{bottom:0.000000px;}
.y9_c00415{bottom:12.000000px;}
.y13_c00415{bottom:70.500000px;}
.y11_c00415{bottom:165.000000px;}
.y10_c00415{bottom:192.000000px;}
.yf_c00415{bottom:219.000000px;}
.ye_c00415{bottom:246.000000px;}
.yd_c00415{bottom:273.000000px;}
.yc_c00415{bottom:321.000000px;}
.yb_c00415{bottom:348.000000px;}
.ya_c00415{bottom:375.000000px;}
.y8_c00415{bottom:420.000000px;}
.y7_c00415{bottom:912.000000px;}
.y6_c00415{bottom:939.000000px;}
.y5_c00415{bottom:966.000000px;}
.y4_c00415{bottom:993.000000px;}
.y3_c00415{bottom:1020.000000px;}
.y2_c00415{bottom:1068.000000px;}
.y1_c00415{bottom:1095.000000px;}
.y12_c00415{bottom:1194.000000px;}
.h3_c00415{height:42.292969px;}
.h5_c00415{height:44.208984px;}
.h1_c00415{height:51.257812px;}
.h4_c00415{height:56.074219px;}
.h2_c00415{height:460.500000px;}
.h0_c00415{height:1263.000000px;}
.w1_c00415{width:676.500000px;}
.w0_c00415{width:892.500000px;}
.x0_c00415{left:0.000000px;}
.x2_c00415{left:30.327390px;}
.x1_c00415{left:65.480310px;}
@media print{
.v0_c00415{vertical-align:0.000000pt;}
.ls0_c00415{letter-spacing:0.000000pt;}
.ls1_c00415{letter-spacing:0.010667pt;}
.ws0_c00415{word-spacing:-17.600000pt;}
.ws1_c00415{word-spacing:0.000000pt;}
._14_c00415{margin-left:-9.408000pt;}
._8_c00415{margin-left:-4.115200pt;}
._3_c00415{margin-left:-3.052800pt;}
._13_c00415{margin-left:-1.990400pt;}
._7_c00415{margin-left:-0.940800pt;}
._0_c00415{width:1.350400pt;}
._4_c00415{width:2.540800pt;}
._6_c00415{width:3.987200pt;}
._17_c00415{width:4.876800pt;}
._9_c00415{width:5.766400pt;}
._a_c00415{width:7.552000pt;}
._b_c00415{width:9.523200pt;}
._5_c00415{width:11.001600pt;}
._1_c00415{width:12.691200pt;}
._2_c00415{width:14.048000pt;}
._15_c00415{width:15.673600pt;}
._16_c00415{width:16.633600pt;}
._12_c00415{width:18.508800pt;}
._f_c00415{width:19.782400pt;}
._10_c00415{width:21.235200pt;}
._11_c00415{width:22.489600pt;}
._d_c00415{width:23.782400pt;}
._c_c00415{width:24.736000pt;}
._e_c00415{width:26.841600pt;}
.fs1_c00415{font-size:48.000000pt;}
.fs2_c00415{font-size:53.333333pt;}
.fs0_c00415{font-size:64.000000pt;}
.y0_c00415{bottom:0.000000pt;}
.y9_c00415{bottom:10.666667pt;}
.y13_c00415{bottom:62.666667pt;}
.y11_c00415{bottom:146.666667pt;}
.y10_c00415{bottom:170.666667pt;}
.yf_c00415{bottom:194.666667pt;}
.ye_c00415{bottom:218.666667pt;}
.yd_c00415{bottom:242.666667pt;}
.yc_c00415{bottom:285.333333pt;}
.yb_c00415{bottom:309.333333pt;}
.ya_c00415{bottom:333.333333pt;}
.y8_c00415{bottom:373.333333pt;}
.y7_c00415{bottom:810.666667pt;}
.y6_c00415{bottom:834.666667pt;}
.y5_c00415{bottom:858.666667pt;}
.y4_c00415{bottom:882.666667pt;}
.y3_c00415{bottom:906.666667pt;}
.y2_c00415{bottom:949.333333pt;}
.y1_c00415{bottom:973.333333pt;}
.y12_c00415{bottom:1061.333333pt;}
.h3_c00415{height:37.593750pt;}
.h5_c00415{height:39.296875pt;}
.h1_c00415{height:45.562500pt;}
.h4_c00415{height:49.843750pt;}
.h2_c00415{height:409.333333pt;}
.h0_c00415{height:1122.666667pt;}
.w1_c00415{width:601.333333pt;}
.w0_c00415{width:793.333333pt;}
.x0_c00415{left:0.000000pt;}
.x2_c00415{left:26.957680pt;}
.x1_c00415{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4c8c1166732a3391001031a9.woff2')format("woff");}.ff1_c00416{font-family:ff1_c00416;line-height:0.934082;font-style:normal;font-weight:normal;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_987941746f40f844417d71aa.woff2')format("woff");}.ff2_c00416{font-family:ff2_c00416;line-height:0.987793;font-style:normal;font-weight:normal;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_67f6b421e4b2ffdfa7a1c410.woff2')format("woff");}.ff3_c00416{font-family:ff3_c00416;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00416;src:url('chunks/assets/font_f2a8bfa4ee66301eb942a542.woff2')format("woff");}.ff4_c00416{font-family:ff4_c00416;line-height:1.124023;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00416;src:url('chunks/assets/font_d60d6ac052f102da798cfc31.woff2')format("woff");}.ff5_c00416{font-family:ff5_c00416;line-height:1.155762;font-style:normal;font-weight: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_c00416;src:url('chunks/assets/font_a9e2df8dee518c51c5bdf626.woff2')format("woff");}.ff6_c00416{font-family:ff6_c00416;line-height:1.059082;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00416;src:url('chunks/assets/font_9972e37a4f7b3828fbeeb0b1.woff2')format("woff");}.ff7_c00416{font-family:ff7_c00416;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00416{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00416{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3_c00416{vertical-align:-33.000000px;}
.v2_c00416{vertical-align:-23.086200px;}
.v0_c00416{vertical-align:0.000000px;}
.v1_c00416{vertical-align:23.086200px;}
.ls3_c00416{letter-spacing:-0.009600px;}
.ls2_c00416{letter-spacing:0.000000px;}
.ls0_c00416{letter-spacing:0.006600px;}
.ls1_c00416{letter-spacing:0.012000px;}
.sc__c00416{text-shadow:none;}
.sc0_c00416{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00416{-webkit-text-stroke:0px transparent;}
.sc0_c00416{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00416{word-spacing:-19.800000px;}
.ws2_c00416{word-spacing:-10.000001px;}
.ws1_c00416{word-spacing:-0.038400px;}
.ws3_c00416{word-spacing:0.000000px;}
._a_c00416{margin-left:-8.013600px;}
._9_c00416{margin-left:-3.780000px;}
._8_c00416{margin-left:-2.383200px;}
._5_c00416{margin-left:-1.058400px;}
._3_c00416{width:1.353600px;}
._e_c00416{width:2.361600px;}
._1_c00416{width:3.369600px;}
._7_c00416{width:4.788000px;}
._2_c00416{width:6.667200px;}
._4_c00416{width:8.712000px;}
._0_c00416{width:10.101600px;}
._6_c00416{width:11.160000px;}
._d_c00416{width:12.506400px;}
._c_c00416{width:13.514400px;}
._b_c00416{width:15.372000px;}
.fc0_c00416{color:rgb(0,0,0);}
.fs5_c00416{font-size:40.000002px;}
.fs2_c00416{font-size:48.000000px;}
.fs1_c00416{font-size:54.000000px;}
.fs4_c00416{font-size:60.000000px;}
.fs3_c00416{font-size:66.000000px;}
.fs0_c00416{font-size:72.000000px;}
.y0_c00416{bottom:0.000000px;}
.y4_c00416{bottom:12.000000px;}
.y13_c00416{bottom:70.500000px;}
.y14_c00416{bottom:140.250000px;}
.y11_c00416{bottom:210.000000px;}
.y10_c00416{bottom:237.000000px;}
.yf_c00416{bottom:264.000000px;}
.ye_c00416{bottom:291.000000px;}
.yd_c00416{bottom:318.000000px;}
.yc_c00416{bottom:345.000000px;}
.yb_c00416{bottom:372.000000px;}
.ya_c00416{bottom:420.000000px;}
.y9_c00416{bottom:466.500000px;}
.y8_c00416{bottom:493.500000px;}
.y7_c00416{bottom:520.500000px;}
.y6_c00416{bottom:568.500000px;}
.y5_c00416{bottom:595.500000px;}
.y3_c00416{bottom:640.500000px;}
.y2_c00416{bottom:1068.000000px;}
.y1_c00416{bottom:1095.000000px;}
.y12_c00416{bottom:1194.000000px;}
.h7_c00416{height:33.652345px;}
.h3_c00416{height:42.292969px;}
.h1_c00416{height:51.257812px;}
.h6_c00416{height:56.074219px;}
.h4_c00416{height:56.929950px;}
.h5_c00416{height:62.519531px;}
.h2_c00416{height:396.000000px;}
.h0_c00416{height:1263.000000px;}
.w1_c00416{width:676.500000px;}
.w0_c00416{width:892.500000px;}
.x0_c00416{left:0.000000px;}
.x1_c00416{left:150.519750px;}
.x2_c00416{left:237.639450px;}
.x3_c00416{left:416.782800px;}
.x4_c00416{left:801.992850px;}
@media print{
.v3_c00416{vertical-align:-29.333333pt;}
.v2_c00416{vertical-align:-20.521067pt;}
.v0_c00416{vertical-align:0.000000pt;}
.v1_c00416{vertical-align:20.521067pt;}
.ls3_c00416{letter-spacing:-0.008533pt;}
.ls2_c00416{letter-spacing:0.000000pt;}
.ls0_c00416{letter-spacing:0.005867pt;}
.ls1_c00416{letter-spacing:0.010667pt;}
.ws0_c00416{word-spacing:-17.600000pt;}
.ws2_c00416{word-spacing:-8.888889pt;}
.ws1_c00416{word-spacing:-0.034133pt;}
.ws3_c00416{word-spacing:0.000000pt;}
._a_c00416{margin-left:-7.123200pt;}
._9_c00416{margin-left:-3.360000pt;}
._8_c00416{margin-left:-2.118400pt;}
._5_c00416{margin-left:-0.940800pt;}
._3_c00416{width:1.203200pt;}
._e_c00416{width:2.099200pt;}
._1_c00416{width:2.995200pt;}
._7_c00416{width:4.256000pt;}
._2_c00416{width:5.926400pt;}
._4_c00416{width:7.744000pt;}
._0_c00416{width:8.979200pt;}
._6_c00416{width:9.920000pt;}
._d_c00416{width:11.116800pt;}
._c_c00416{width:12.012800pt;}
._b_c00416{width:13.664000pt;}
.fs5_c00416{font-size:35.555557pt;}
.fs2_c00416{font-size:42.666667pt;}
.fs1_c00416{font-size:48.000000pt;}
.fs4_c00416{font-size:53.333333pt;}
.fs3_c00416{font-size:58.666667pt;}
.fs0_c00416{font-size:64.000000pt;}
.y0_c00416{bottom:0.000000pt;}
.y4_c00416{bottom:10.666667pt;}
.y13_c00416{bottom:62.666667pt;}
.y14_c00416{bottom:124.666667pt;}
.y11_c00416{bottom:186.666667pt;}
.y10_c00416{bottom:210.666667pt;}
.yf_c00416{bottom:234.666667pt;}
.ye_c00416{bottom:258.666667pt;}
.yd_c00416{bottom:282.666667pt;}
.yc_c00416{bottom:306.666667pt;}
.yb_c00416{bottom:330.666667pt;}
.ya_c00416{bottom:373.333333pt;}
.y9_c00416{bottom:414.666667pt;}
.y8_c00416{bottom:438.666667pt;}
.y7_c00416{bottom:462.666667pt;}
.y6_c00416{bottom:505.333333pt;}
.y5_c00416{bottom:529.333333pt;}
.y3_c00416{bottom:569.333333pt;}
.y2_c00416{bottom:949.333333pt;}
.y1_c00416{bottom:973.333333pt;}
.y12_c00416{bottom:1061.333333pt;}
.h7_c00416{height:29.913196pt;}
.h3_c00416{height:37.593750pt;}
.h1_c00416{height:45.562500pt;}
.h6_c00416{height:49.843750pt;}
.h4_c00416{height:50.604400pt;}
.h5_c00416{height:55.572917pt;}
.h2_c00416{height:352.000000pt;}
.h0_c00416{height:1122.666667pt;}
.w1_c00416{width:601.333333pt;}
.w0_c00416{width:793.333333pt;}
.x0_c00416{left:0.000000pt;}
.x1_c00416{left:133.795333pt;}
.x2_c00416{left:211.235067pt;}
.x3_c00416{left:370.473600pt;}
.x4_c00416{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0d9ab052f44329ea5193afa6.woff2')format("woff");}.ff1_c00417{font-family:ff1_c00417;line-height:0.934082;font-style:normal;font-weight:normal;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_e7ee8547187f4e98ab1694b4.woff2')format("woff");}.ff2_c00417{font-family:ff2_c00417;line-height:1.089844;font-style:normal;font-weight:normal;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_3f7b1314dfd4a2ca5c566645.woff2')format("woff");}.ff3_c00417{font-family:ff3_c00417;line-height:0.987793;font-style:normal;font-weight:normal;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_2393cac07b19bd8e9bcfe961.woff2')format("woff");}.ff4_c00417{font-family:ff4_c00417;line-height:0.755859;font-style:normal;font-weight:normal;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_579b51fd2aaa1d716377b5ba.woff2')format("woff");}.ff5_c00417{font-family:ff5_c00417;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00417{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00417{vertical-align:0.000000px;}
.ls0_c00417{letter-spacing:0.000000px;}
.ls1_c00417{letter-spacing:0.012000px;}
.sc__c00417{text-shadow:none;}
.sc0_c00417{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00417{-webkit-text-stroke:0px transparent;}
.sc0_c00417{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00417{word-spacing:0.000000px;}
._9_c00417{margin-left:-4.322400px;}
._7_c00417{margin-left:-3.052800px;}
._0_c00417{margin-left:-1.161600px;}
._4_c00417{width:1.339200px;}
._2_c00417{width:3.096000px;}
._3_c00417{width:12.996000px;}
._5_c00417{width:14.752800px;}
._1_c00417{width:16.077600px;}
._6_c00417{width:17.232000px;}
._8_c00417{width:18.432000px;}
._a_c00417{width:22.212000px;}
.fc0_c00417{color:rgb(0,0,0);}
.fs2_c00417{font-size:54.000000px;}
.fs3_c00417{font-size:60.000000px;}
.fs1_c00417{font-size:66.000000px;}
.fs0_c00417{font-size:72.000000px;}
.y0_c00417{bottom:0.000000px;}
.y7_c00417{bottom:12.000000px;}
.ya_c00417{bottom:70.500000px;}
.y8_c00417{bottom:129.000000px;}
.y6_c00417{bottom:459.000000px;}
.y5_c00417{bottom:946.500000px;}
.y4_c00417{bottom:973.500000px;}
.y3_c00417{bottom:1000.500000px;}
.y2_c00417{bottom:1048.500000px;}
.y1_c00417{bottom:1095.000000px;}
.y9_c00417{bottom:1194.000000px;}
.h4_c00417{height:42.292969px;}
.h7_c00417{height:44.208984px;}
.h1_c00417{height:51.257812px;}
.h6_c00417{height:56.074219px;}
.h2_c00417{height:60.263672px;}
.h5_c00417{height:322.500000px;}
.h3_c00417{height:456.000000px;}
.h0_c00417{height:1263.000000px;}
.w1_c00417{width:676.500000px;}
.w0_c00417{width:892.500000px;}
.x0_c00417{left:0.000000px;}
.x1_c00417{left:65.480310px;}
.x2_c00417{left:107.480310px;}
.x3_c00417{left:243.193050px;}
.x4_c00417{left:265.842450px;}
@media print{
.v0_c00417{vertical-align:0.000000pt;}
.ls0_c00417{letter-spacing:0.000000pt;}
.ls1_c00417{letter-spacing:0.010667pt;}
.ws0_c00417{word-spacing:0.000000pt;}
._9_c00417{margin-left:-3.842133pt;}
._7_c00417{margin-left:-2.713600pt;}
._0_c00417{margin-left:-1.032533pt;}
._4_c00417{width:1.190400pt;}
._2_c00417{width:2.752000pt;}
._3_c00417{width:11.552000pt;}
._5_c00417{width:13.113600pt;}
._1_c00417{width:14.291200pt;}
._6_c00417{width:15.317333pt;}
._8_c00417{width:16.384000pt;}
._a_c00417{width:19.744000pt;}
.fs2_c00417{font-size:48.000000pt;}
.fs3_c00417{font-size:53.333333pt;}
.fs1_c00417{font-size:58.666667pt;}
.fs0_c00417{font-size:64.000000pt;}
.y0_c00417{bottom:0.000000pt;}
.y7_c00417{bottom:10.666667pt;}
.ya_c00417{bottom:62.666667pt;}
.y8_c00417{bottom:114.666667pt;}
.y6_c00417{bottom:408.000000pt;}
.y5_c00417{bottom:841.333333pt;}
.y4_c00417{bottom:865.333333pt;}
.y3_c00417{bottom:889.333333pt;}
.y2_c00417{bottom:932.000000pt;}
.y1_c00417{bottom:973.333333pt;}
.y9_c00417{bottom:1061.333333pt;}
.h4_c00417{height:37.593750pt;}
.h7_c00417{height:39.296875pt;}
.h1_c00417{height:45.562500pt;}
.h6_c00417{height:49.843750pt;}
.h2_c00417{height:53.567708pt;}
.h5_c00417{height:286.666667pt;}
.h3_c00417{height:405.333333pt;}
.h0_c00417{height:1122.666667pt;}
.w1_c00417{width:601.333333pt;}
.w0_c00417{width:793.333333pt;}
.x0_c00417{left:0.000000pt;}
.x1_c00417{left:58.204720pt;}
.x2_c00417{left:95.538053pt;}
.x3_c00417{left:216.171600pt;}
.x4_c00417{left:236.304400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ba66b19f2bb5ac5619207060.woff2')format("woff");}.ff1_c00418{font-family:ff1_c00418;line-height:0.934082;font-style:normal;font-weight:normal;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_aa5ec0803f30654ac6b95199.woff2')format("woff");}.ff2_c00418{font-family:ff2_c00418;line-height:0.975586;font-style:normal;font-weight:normal;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_42c864d7e39951b495a37c6b.woff2')format("woff");}.ff3_c00418{font-family:ff3_c00418;line-height:0.882812;font-style:normal;font-weight:normal;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_9efbb103e87da98a1aedd74f.woff2')format("woff");}.ff4_c00418{font-family:ff4_c00418;line-height:1.124023;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00418;src:url('chunks/assets/font_dde48c8b1c577d430092b223.woff2')format("woff");}.ff5_c00418{font-family:ff5_c00418;line-height:1.155762;font-style:normal;font-weight: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_c00418;src:url('chunks/assets/font_1910ab6b9dde64d89270124f.woff2')format("woff");}.ff6_c00418{font-family:ff6_c00418;line-height:1.059082;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00418;src:url('chunks/assets/font_5c900f5ed6f9b2c6075b9db0.woff2')format("woff");}.ff7_c00418{font-family:ff7_c00418;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00418{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00418{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00418{vertical-align:-33.000000px;}
.v0_c00418{vertical-align:0.000000px;}
.v1_c00418{vertical-align:23.086200px;}
.ls2_c00418{letter-spacing:-0.009600px;}
.ls1_c00418{letter-spacing:0.000000px;}
.ls0_c00418{letter-spacing:0.012000px;}
.ls3_c00418{letter-spacing:0.014400px;}
.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:-10.000001px;}
.ws0_c00418{word-spacing:-0.038400px;}
.ws2_c00418{word-spacing:0.000000px;}
._7_c00418{margin-left:-3.916800px;}
._5_c00418{margin-left:-2.714400px;}
._9_c00418{margin-left:-1.512000px;}
._0_c00418{width:1.778400px;}
._11_c00418{width:3.002400px;}
._2_c00418{width:4.010400px;}
._12_c00418{width:5.342400px;}
._3_c00418{width:6.422400px;}
._1_c00418{width:8.640000px;}
._4_c00418{width:10.440000px;}
._a_c00418{width:11.952000px;}
._6_c00418{width:13.154400px;}
._8_c00418{width:14.349600px;}
._10_c00418{width:15.782400px;}
._c_c00418{width:28.540800px;}
._f_c00418{width:30.340800px;}
._b_c00418{width:31.809600px;}
._d_c00418{width:33.055200px;}
._e_c00418{width:34.149600px;}
.fc0_c00418{color:rgb(0,0,0);}
.fs5_c00418{font-size:40.000002px;}
.fs2_c00418{font-size:48.000000px;}
.fs1_c00418{font-size:54.000000px;}
.fs4_c00418{font-size:60.000000px;}
.fs3_c00418{font-size:66.000000px;}
.fs0_c00418{font-size:72.000000px;}
.y0_c00418{bottom:0.000000px;}
.y5_c00418{bottom:12.000000px;}
.yf_c00418{bottom:70.500000px;}
.y10_c00418{bottom:140.250000px;}
.yd_c00418{bottom:213.000000px;}
.yc_c00418{bottom:240.000000px;}
.yb_c00418{bottom:267.000000px;}
.ya_c00418{bottom:294.000000px;}
.y9_c00418{bottom:342.000000px;}
.y8_c00418{bottom:388.500000px;}
.y7_c00418{bottom:415.500000px;}
.y6_c00418{bottom:442.500000px;}
.y4_c00418{bottom:487.500000px;}
.y3_c00418{bottom:1041.000000px;}
.y2_c00418{bottom:1068.000000px;}
.y1_c00418{bottom:1095.000000px;}
.ye_c00418{bottom:1194.000000px;}
.h7_c00418{height:33.652345px;}
.h3_c00418{height:41.633789px;}
.h1_c00418{height:51.257812px;}
.h6_c00418{height:56.074219px;}
.h4_c00418{height:56.976825px;}
.h5_c00418{height:62.519531px;}
.h2_c00418{height:522.000000px;}
.h0_c00418{height:1263.000000px;}
.w1_c00418{width:676.500000px;}
.w0_c00418{width:892.500000px;}
.x0_c00418{left:0.000000px;}
.x1_c00418{left:150.519750px;}
.x2_c00418{left:216.954300px;}
.x3_c00418{left:416.782800px;}
.x4_c00418{left:801.992850px;}
@media print{
.v2_c00418{vertical-align:-29.333333pt;}
.v0_c00418{vertical-align:0.000000pt;}
.v1_c00418{vertical-align:20.521067pt;}
.ls2_c00418{letter-spacing:-0.008533pt;}
.ls1_c00418{letter-spacing:0.000000pt;}
.ls0_c00418{letter-spacing:0.010667pt;}
.ls3_c00418{letter-spacing:0.012800pt;}
.ws1_c00418{word-spacing:-8.888889pt;}
.ws0_c00418{word-spacing:-0.034133pt;}
.ws2_c00418{word-spacing:0.000000pt;}
._7_c00418{margin-left:-3.481600pt;}
._5_c00418{margin-left:-2.412800pt;}
._9_c00418{margin-left:-1.344000pt;}
._0_c00418{width:1.580800pt;}
._11_c00418{width:2.668800pt;}
._2_c00418{width:3.564800pt;}
._12_c00418{width:4.748800pt;}
._3_c00418{width:5.708800pt;}
._1_c00418{width:7.680000pt;}
._4_c00418{width:9.280000pt;}
._a_c00418{width:10.624000pt;}
._6_c00418{width:11.692800pt;}
._8_c00418{width:12.755200pt;}
._10_c00418{width:14.028800pt;}
._c_c00418{width:25.369600pt;}
._f_c00418{width:26.969600pt;}
._b_c00418{width:28.275200pt;}
._d_c00418{width:29.382400pt;}
._e_c00418{width:30.355200pt;}
.fs5_c00418{font-size:35.555557pt;}
.fs2_c00418{font-size:42.666667pt;}
.fs1_c00418{font-size:48.000000pt;}
.fs4_c00418{font-size:53.333333pt;}
.fs3_c00418{font-size:58.666667pt;}
.fs0_c00418{font-size:64.000000pt;}
.y0_c00418{bottom:0.000000pt;}
.y5_c00418{bottom:10.666667pt;}
.yf_c00418{bottom:62.666667pt;}
.y10_c00418{bottom:124.666667pt;}
.yd_c00418{bottom:189.333333pt;}
.yc_c00418{bottom:213.333333pt;}
.yb_c00418{bottom:237.333333pt;}
.ya_c00418{bottom:261.333333pt;}
.y9_c00418{bottom:304.000000pt;}
.y8_c00418{bottom:345.333333pt;}
.y7_c00418{bottom:369.333333pt;}
.y6_c00418{bottom:393.333333pt;}
.y4_c00418{bottom:433.333333pt;}
.y3_c00418{bottom:925.333333pt;}
.y2_c00418{bottom:949.333333pt;}
.y1_c00418{bottom:973.333333pt;}
.ye_c00418{bottom:1061.333333pt;}
.h7_c00418{height:29.913196pt;}
.h3_c00418{height:37.007812pt;}
.h1_c00418{height:45.562500pt;}
.h6_c00418{height:49.843750pt;}
.h4_c00418{height:50.646067pt;}
.h5_c00418{height:55.572917pt;}
.h2_c00418{height:464.000000pt;}
.h0_c00418{height:1122.666667pt;}
.w1_c00418{width:601.333333pt;}
.w0_c00418{width:793.333333pt;}
.x0_c00418{left:0.000000pt;}
.x1_c00418{left:133.795333pt;}
.x2_c00418{left:192.848267pt;}
.x3_c00418{left:370.473600pt;}
.x4_c00418{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7b8e1f18333ad53be14bb9fb.woff2')format("woff");}.ff1_c00419{font-family:ff1_c00419;line-height:0.987793;font-style:normal;font-weight:normal;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_a4cecf3910ff94d7d9c59263.woff2')format("woff");}.ff2_c00419{font-family:ff2_c00419;line-height:0.933105;font-style:normal;font-weight:normal;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_fc9f23b4c0a0a4fbc8a4ed74.woff2')format("woff");}.ff3_c00419{font-family:ff3_c00419;line-height:0.755859;font-style:normal;font-weight:normal;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_c77b865680ec432dcb27aeb4.woff2')format("woff");}.ff4_c00419{font-family:ff4_c00419;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00419{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00419{vertical-align:0.000000px;}
.ls0_c00419{letter-spacing:0.000000px;}
.ls1_c00419{letter-spacing:0.012000px;}
.sc__c00419{text-shadow:none;}
.sc0_c00419{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00419{-webkit-text-stroke:0px transparent;}
.sc0_c00419{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00419{word-spacing:0.000000px;}
._6_c00419{margin-left:-5.040000px;}
._0_c00419{margin-left:-3.168000px;}
._4_c00419{margin-left:-1.447200px;}
._3_c00419{width:1.972800px;}
._2_c00419{width:3.333600px;}
._5_c00419{width:5.356800px;}
._1_c00419{width:6.652800px;}
._9_c00419{width:8.280000px;}
._7_c00419{width:10.612800px;}
._8_c00419{width:13.341600px;}
._b_c00419{width:15.681600px;}
._a_c00419{width:18.583200px;}
.fc0_c00419{color:rgb(0,0,0);}
.fs0_c00419{font-size:54.000000px;}
.fs2_c00419{font-size:60.000000px;}
.fs1_c00419{font-size:72.000000px;}
.y0_c00419{bottom:0.000000px;}
.y2_c00419{bottom:12.000000px;}
.yc_c00419{bottom:70.500000px;}
.ya_c00419{bottom:153.000000px;}
.y9_c00419{bottom:180.000000px;}
.y8_c00419{bottom:225.000000px;}
.y7_c00419{bottom:628.500000px;}
.y6_c00419{bottom:655.500000px;}
.y5_c00419{bottom:682.500000px;}
.y4_c00419{bottom:709.500000px;}
.y3_c00419{bottom:736.500000px;}
.y1_c00419{bottom:781.500000px;}
.yb_c00419{bottom:1194.000000px;}
.h2_c00419{height:42.292969px;}
.h6_c00419{height:44.208984px;}
.h3_c00419{height:51.187500px;}
.h5_c00419{height:56.074219px;}
.h1_c00419{height:331.500000px;}
.h4_c00419{height:372.000000px;}
.h0_c00419{height:1263.000000px;}
.w1_c00419{width:676.500000px;}
.w0_c00419{width:892.500000px;}
.x0_c00419{left:0.000000px;}
.x1_c00419{left:66.000000px;}
.x2_c00419{left:116.452515px;}
.x3_c00419{left:194.074200px;}
@media print{
.v0_c00419{vertical-align:0.000000pt;}
.ls0_c00419{letter-spacing:0.000000pt;}
.ls1_c00419{letter-spacing:0.010667pt;}
.ws0_c00419{word-spacing:0.000000pt;}
._6_c00419{margin-left:-4.480000pt;}
._0_c00419{margin-left:-2.816000pt;}
._4_c00419{margin-left:-1.286400pt;}
._3_c00419{width:1.753600pt;}
._2_c00419{width:2.963200pt;}
._5_c00419{width:4.761600pt;}
._1_c00419{width:5.913600pt;}
._9_c00419{width:7.360000pt;}
._7_c00419{width:9.433600pt;}
._8_c00419{width:11.859200pt;}
._b_c00419{width:13.939200pt;}
._a_c00419{width:16.518400pt;}
.fs0_c00419{font-size:48.000000pt;}
.fs2_c00419{font-size:53.333333pt;}
.fs1_c00419{font-size:64.000000pt;}
.y0_c00419{bottom:0.000000pt;}
.y2_c00419{bottom:10.666667pt;}
.yc_c00419{bottom:62.666667pt;}
.ya_c00419{bottom:136.000000pt;}
.y9_c00419{bottom:160.000000pt;}
.y8_c00419{bottom:200.000000pt;}
.y7_c00419{bottom:558.666667pt;}
.y6_c00419{bottom:582.666667pt;}
.y5_c00419{bottom:606.666667pt;}
.y4_c00419{bottom:630.666667pt;}
.y3_c00419{bottom:654.666667pt;}
.y1_c00419{bottom:694.666667pt;}
.yb_c00419{bottom:1061.333333pt;}
.h2_c00419{height:37.593750pt;}
.h6_c00419{height:39.296875pt;}
.h3_c00419{height:45.500000pt;}
.h5_c00419{height:49.843750pt;}
.h1_c00419{height:294.666667pt;}
.h4_c00419{height:330.666667pt;}
.h0_c00419{height:1122.666667pt;}
.w1_c00419{width:601.333333pt;}
.w0_c00419{width:793.333333pt;}
.x0_c00419{left:0.000000pt;}
.x1_c00419{left:58.666667pt;}
.x2_c00419{left:103.513347pt;}
.x3_c00419{left:172.510400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_68e4a19248c5f7ec479d9be5.woff2')format("woff");}.ff1_c00420{font-family:ff1_c00420;line-height:0.934082;font-style:normal;font-weight:normal;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_b5245f4187811eff9d40d34d.woff2')format("woff");}.ff2_c00420{font-family:ff2_c00420;line-height:0.975586;font-style:normal;font-weight:normal;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_413033a17543028de040e680.woff2')format("woff");}.ff3_c00420{font-family:ff3_c00420;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00420{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00420{vertical-align:0.000000px;}
.ls1_c00420{letter-spacing:0.000000px;}
.ls0_c00420{letter-spacing:0.012000px;}
.sc__c00420{text-shadow:none;}
.sc0_c00420{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00420{-webkit-text-stroke:0px transparent;}
.sc0_c00420{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00420{word-spacing:0.000000px;}
._6_c00420{margin-left:-4.125600px;}
._3_c00420{margin-left:-3.088800px;}
._5_c00420{margin-left:-1.764000px;}
._1_c00420{width:1.346400px;}
._9_c00420{width:2.800800px;}
._2_c00420{width:4.370400px;}
._0_c00420{width:5.731200px;}
._7_c00420{width:7.718400px;}
._4_c00420{width:8.834400px;}
._8_c00420{width:9.878400px;}
.fc0_c00420{color:rgb(0,0,0);}
.fs1_c00420{font-size:54.000000px;}
.fs2_c00420{font-size:60.000000px;}
.fs0_c00420{font-size:72.000000px;}
.y0_c00420{bottom:0.000000px;}
.y5_c00420{bottom:12.000000px;}
.yb_c00420{bottom:70.500000px;}
.y9_c00420{bottom:153.000000px;}
.y8_c00420{bottom:180.000000px;}
.y7_c00420{bottom:228.000000px;}
.y6_c00420{bottom:255.000000px;}
.y4_c00420{bottom:300.000000px;}
.y3_c00420{bottom:1041.000000px;}
.y2_c00420{bottom:1068.000000px;}
.y1_c00420{bottom:1095.000000px;}
.ya_c00420{bottom:1194.000000px;}
.h3_c00420{height:41.633789px;}
.h1_c00420{height:51.257812px;}
.h4_c00420{height:56.074219px;}
.h2_c00420{height:709.500000px;}
.h0_c00420{height:1263.000000px;}
.w1_c00420{width:676.500000px;}
.w0_c00420{width:892.500000px;}
.x0_c00420{left:0.000000px;}
.x1_c00420{left:150.519750px;}
.x2_c00420{left:267.190350px;}
.x3_c00420{left:416.782800px;}
.x4_c00420{left:801.992850px;}
@media print{
.v0_c00420{vertical-align:0.000000pt;}
.ls1_c00420{letter-spacing:0.000000pt;}
.ls0_c00420{letter-spacing:0.010667pt;}
.ws0_c00420{word-spacing:0.000000pt;}
._6_c00420{margin-left:-3.667200pt;}
._3_c00420{margin-left:-2.745600pt;}
._5_c00420{margin-left:-1.568000pt;}
._1_c00420{width:1.196800pt;}
._9_c00420{width:2.489600pt;}
._2_c00420{width:3.884800pt;}
._0_c00420{width:5.094400pt;}
._7_c00420{width:6.860800pt;}
._4_c00420{width:7.852800pt;}
._8_c00420{width:8.780800pt;}
.fs1_c00420{font-size:48.000000pt;}
.fs2_c00420{font-size:53.333333pt;}
.fs0_c00420{font-size:64.000000pt;}
.y0_c00420{bottom:0.000000pt;}
.y5_c00420{bottom:10.666667pt;}
.yb_c00420{bottom:62.666667pt;}
.y9_c00420{bottom:136.000000pt;}
.y8_c00420{bottom:160.000000pt;}
.y7_c00420{bottom:202.666667pt;}
.y6_c00420{bottom:226.666667pt;}
.y4_c00420{bottom:266.666667pt;}
.y3_c00420{bottom:925.333333pt;}
.y2_c00420{bottom:949.333333pt;}
.y1_c00420{bottom:973.333333pt;}
.ya_c00420{bottom:1061.333333pt;}
.h3_c00420{height:37.007812pt;}
.h1_c00420{height:45.562500pt;}
.h4_c00420{height:49.843750pt;}
.h2_c00420{height:630.666667pt;}
.h0_c00420{height:1122.666667pt;}
.w1_c00420{width:601.333333pt;}
.w0_c00420{width:793.333333pt;}
.x0_c00420{left:0.000000pt;}
.x1_c00420{left:133.795333pt;}
.x2_c00420{left:237.502533pt;}
.x3_c00420{left:370.473600pt;}
.x4_c00420{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c205ea6c261372824afe74fa.woff2')format("woff");}.ff1_c00421{font-family:ff1_c00421;line-height:0.963867;font-style:normal;font-weight:normal;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_0ca2eb3ef63aa6b68252dc76.woff2')format("woff");}.ff2_c00421{font-family:ff2_c00421;line-height:0.934082;font-style:normal;font-weight:normal;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_e80db7be557e494b9415f835.woff2')format("woff");}.ff3_c00421{font-family:ff3_c00421;line-height:0.756836;font-style:normal;font-weight:normal;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_2d9c5a80e19d38a0419839d9.woff2')format("woff");}.ff4_c00421{font-family:ff4_c00421;line-height:1.155762;font-style: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;}
.ls0_c00421{letter-spacing:0.000000px;}
.ls1_c00421{letter-spacing:0.012000px;}
.sc__c00421{text-shadow:none;}
.sc0_c00421{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00421{-webkit-text-stroke:0px transparent;}
.sc0_c00421{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00421{word-spacing:-19.800000px;}
.ws1_c00421{word-spacing:0.000000px;}
._15_c00421{margin-left:-6.631200px;}
._d_c00421{margin-left:-4.392000px;}
._5_c00421{margin-left:-2.577600px;}
._0_c00421{margin-left:-1.058400px;}
._3_c00421{width:1.548000px;}
._9_c00421{width:2.728800px;}
._6_c00421{width:3.844800px;}
._b_c00421{width:4.953600px;}
._c_c00421{width:6.465600px;}
._7_c00421{width:7.624800px;}
._a_c00421{width:8.791200px;}
._4_c00421{width:9.871200px;}
._2_c00421{width:11.491200px;}
._1_c00421{width:12.571200px;}
._8_c00421{width:14.119200px;}
._14_c00421{width:15.739200px;}
._13_c00421{width:17.949600px;}
._e_c00421{width:21.614400px;}
._12_c00421{width:22.644000px;}
._10_c00421{width:24.213600px;}
._f_c00421{width:25.740000px;}
._11_c00421{width:26.863200px;}
.fc0_c00421{color:rgb(0,0,0);}
.fs0_c00421{font-size:54.000000px;}
.fs2_c00421{font-size:60.000000px;}
.fs1_c00421{font-size:72.000000px;}
.y0_c00421{bottom:0.000000px;}
.y2_c00421{bottom:12.000000px;}
.yf_c00421{bottom:70.500000px;}
.yd_c00421{bottom:244.500000px;}
.yc_c00421{bottom:271.500000px;}
.yb_c00421{bottom:298.500000px;}
.ya_c00421{bottom:325.500000px;}
.y9_c00421{bottom:352.500000px;}
.y8_c00421{bottom:379.500000px;}
.y7_c00421{bottom:406.500000px;}
.y6_c00421{bottom:433.500000px;}
.y5_c00421{bottom:460.500000px;}
.y4_c00421{bottom:487.500000px;}
.y3_c00421{bottom:514.500000px;}
.y1_c00421{bottom:559.500000px;}
.ye_c00421{bottom:1194.000000px;}
.h2_c00421{height:41.633789px;}
.h5_c00421{height:44.208984px;}
.h3_c00421{height:51.257812px;}
.h4_c00421{height:56.074219px;}
.h1_c00421{height:553.500000px;}
.h0_c00421{height:1263.000000px;}
.w1_c00421{width:676.500000px;}
.w0_c00421{width:892.500000px;}
.x0_c00421{left:0.000000px;}
.x1_c00421{left:66.000000px;}
.x2_c00421{left:256.435950px;}
@media print{
.v0_c00421{vertical-align:0.000000pt;}
.ls0_c00421{letter-spacing:0.000000pt;}
.ls1_c00421{letter-spacing:0.010667pt;}
.ws0_c00421{word-spacing:-17.600000pt;}
.ws1_c00421{word-spacing:0.000000pt;}
._15_c00421{margin-left:-5.894400pt;}
._d_c00421{margin-left:-3.904000pt;}
._5_c00421{margin-left:-2.291200pt;}
._0_c00421{margin-left:-0.940800pt;}
._3_c00421{width:1.376000pt;}
._9_c00421{width:2.425600pt;}
._6_c00421{width:3.417600pt;}
._b_c00421{width:4.403200pt;}
._c_c00421{width:5.747200pt;}
._7_c00421{width:6.777600pt;}
._a_c00421{width:7.814400pt;}
._4_c00421{width:8.774400pt;}
._2_c00421{width:10.214400pt;}
._1_c00421{width:11.174400pt;}
._8_c00421{width:12.550400pt;}
._14_c00421{width:13.990400pt;}
._13_c00421{width:15.955200pt;}
._e_c00421{width:19.212800pt;}
._12_c00421{width:20.128000pt;}
._10_c00421{width:21.523200pt;}
._f_c00421{width:22.880000pt;}
._11_c00421{width:23.878400pt;}
.fs0_c00421{font-size:48.000000pt;}
.fs2_c00421{font-size:53.333333pt;}
.fs1_c00421{font-size:64.000000pt;}
.y0_c00421{bottom:0.000000pt;}
.y2_c00421{bottom:10.666667pt;}
.yf_c00421{bottom:62.666667pt;}
.yd_c00421{bottom:217.333333pt;}
.yc_c00421{bottom:241.333333pt;}
.yb_c00421{bottom:265.333333pt;}
.ya_c00421{bottom:289.333333pt;}
.y9_c00421{bottom:313.333333pt;}
.y8_c00421{bottom:337.333333pt;}
.y7_c00421{bottom:361.333333pt;}
.y6_c00421{bottom:385.333333pt;}
.y5_c00421{bottom:409.333333pt;}
.y4_c00421{bottom:433.333333pt;}
.y3_c00421{bottom:457.333333pt;}
.y1_c00421{bottom:497.333333pt;}
.ye_c00421{bottom:1061.333333pt;}
.h2_c00421{height:37.007812pt;}
.h5_c00421{height:39.296875pt;}
.h3_c00421{height:45.562500pt;}
.h4_c00421{height:49.843750pt;}
.h1_c00421{height:492.000000pt;}
.h0_c00421{height:1122.666667pt;}
.w1_c00421{width:601.333333pt;}
.w0_c00421{width:793.333333pt;}
.x0_c00421{left:0.000000pt;}
.x1_c00421{left:58.666667pt;}
.x2_c00421{left:227.943067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_001e28240cd84db9e99620b7.woff2')format("woff");}.ff1_c00422{font-family:ff1_c00422;line-height:0.987793;font-style:normal;font-weight:normal;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_dae764376f5c32fdad1b6124.woff2')format("woff");}.ff2_c00422{font-family:ff2_c00422;line-height:0.934082;font-style:normal;font-weight:normal;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_52e1dacd946dd3d87a222f2f.woff2')format("woff");}.ff3_c00422{font-family:ff3_c00422;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00422{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00422{vertical-align:0.000000px;}
.ls1_c00422{letter-spacing:0.000000px;}
.ls0_c00422{letter-spacing:0.012000px;}
.sc__c00422{text-shadow:none;}
.sc0_c00422{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00422{-webkit-text-stroke:0px transparent;}
.sc0_c00422{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00422{word-spacing:0.000000px;}
._8_c00422{margin-left:-4.636800px;}
._9_c00422{margin-left:-3.426000px;}
._3_c00422{margin-left:-2.080800px;}
._7_c00422{width:1.108800px;}
._0_c00422{width:2.325600px;}
._5_c00422{width:4.233600px;}
._6_c00422{width:5.594400px;}
._1_c00422{width:6.825600px;}
._2_c00422{width:9.230400px;}
._4_c00422{width:11.268000px;}
.fc0_c00422{color:rgb(0,0,0);}
.fs0_c00422{font-size:54.000000px;}
.fs2_c00422{font-size:60.000000px;}
.fs1_c00422{font-size:72.000000px;}
.y0_c00422{bottom:0.000000px;}
.y2_c00422{bottom:12.000000px;}
.y8_c00422{bottom:70.500000px;}
.y6_c00422{bottom:174.000000px;}
.y5_c00422{bottom:564.000000px;}
.y4_c00422{bottom:591.000000px;}
.y3_c00422{bottom:618.000000px;}
.y1_c00422{bottom:663.000000px;}
.y7_c00422{bottom:1194.000000px;}
.h2_c00422{height:42.292969px;}
.h3_c00422{height:51.257812px;}
.h5_c00422{height:56.074219px;}
.h4_c00422{height:358.500000px;}
.h1_c00422{height:450.000000px;}
.h0_c00422{height:1263.000000px;}
.w1_c00422{width:676.500000px;}
.w0_c00422{width:892.500000px;}
.x0_c00422{left:0.000000px;}
.x1_c00422{left:150.000000px;}
.x2_c00422{left:184.476600px;}
.x3_c00422{left:258.828750px;}
.x4_c00422{left:416.782800px;}
.x5_c00422{left:801.992850px;}
@media print{
.v0_c00422{vertical-align:0.000000pt;}
.ls1_c00422{letter-spacing:0.000000pt;}
.ls0_c00422{letter-spacing:0.010667pt;}
.ws0_c00422{word-spacing:0.000000pt;}
._8_c00422{margin-left:-4.121600pt;}
._9_c00422{margin-left:-3.045333pt;}
._3_c00422{margin-left:-1.849600pt;}
._7_c00422{width:0.985600pt;}
._0_c00422{width:2.067200pt;}
._5_c00422{width:3.763200pt;}
._6_c00422{width:4.972800pt;}
._1_c00422{width:6.067200pt;}
._2_c00422{width:8.204800pt;}
._4_c00422{width:10.016000pt;}
.fs0_c00422{font-size:48.000000pt;}
.fs2_c00422{font-size:53.333333pt;}
.fs1_c00422{font-size:64.000000pt;}
.y0_c00422{bottom:0.000000pt;}
.y2_c00422{bottom:10.666667pt;}
.y8_c00422{bottom:62.666667pt;}
.y6_c00422{bottom:154.666667pt;}
.y5_c00422{bottom:501.333333pt;}
.y4_c00422{bottom:525.333333pt;}
.y3_c00422{bottom:549.333333pt;}
.y1_c00422{bottom:589.333333pt;}
.y7_c00422{bottom:1061.333333pt;}
.h2_c00422{height:37.593750pt;}
.h3_c00422{height:45.562500pt;}
.h5_c00422{height:49.843750pt;}
.h4_c00422{height:318.666667pt;}
.h1_c00422{height:400.000000pt;}
.h0_c00422{height:1122.666667pt;}
.w1_c00422{width:601.333333pt;}
.w0_c00422{width:793.333333pt;}
.x0_c00422{left:0.000000pt;}
.x1_c00422{left:133.333333pt;}
.x2_c00422{left:163.979200pt;}
.x3_c00422{left:230.070000pt;}
.x4_c00422{left:370.473600pt;}
.x5_c00422{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_85a8c3fc7abe680ca98f5450.woff2')format("woff");}.ff1_c00423{font-family:ff1_c00423;line-height:0.933105;font-style:normal;font-weight:normal;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_14882a1e83ddf345f7a01f98.woff2')format("woff");}.ff2_c00423{font-family:ff2_c00423;line-height:0.801270;font-style:normal;font-weight:normal;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_dd23c7fe94d6403f3ee2e3a6.woff2')format("woff");}.ff3_c00423{font-family:ff3_c00423;line-height:0.937988;font-style:normal;font-weight:normal;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_4a249634ebac624441898cad.woff2')format("woff");}.ff4_c00423{font-family:ff4_c00423;line-height:0.755859;font-style:normal;font-weight:normal;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_985558da1f0cdf8fd8f9ba60.woff2')format("woff");}.ff5_c00423{font-family:ff5_c00423;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00423{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00423{vertical-align:0.000000px;}
.ls0_c00423{letter-spacing:0.000000px;}
.ls1_c00423{letter-spacing:0.012000px;}
.sc__c00423{text-shadow:none;}
.sc0_c00423{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00423{-webkit-text-stroke:0px transparent;}
.sc0_c00423{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00423{word-spacing:0.000000px;}
._b_c00423{margin-left:-4.017600px;}
._3_c00423{margin-left:-2.692800px;}
._5_c00423{margin-left:-1.339200px;}
._0_c00423{width:1.519200px;}
._7_c00423{width:3.283200px;}
._a_c00423{width:4.881600px;}
._9_c00423{width:6.069600px;}
._c_c00423{width:7.322400px;}
._e_c00423{width:8.373600px;}
._d_c00423{width:9.756000px;}
._8_c00423{width:11.671200px;}
._1_c00423{width:13.262400px;}
._2_c00423{width:14.752800px;}
._6_c00423{width:16.084800px;}
._4_c00423{width:17.474400px;}
._f_c00423{width:18.532800px;}
.fc0_c00423{color:rgb(0,0,0);}
.fs1_c00423{font-size:54.000000px;}
.fs2_c00423{font-size:60.000000px;}
.fs0_c00423{font-size:72.000000px;}
.y0_c00423{bottom:0.000000px;}
.y3_c00423{bottom:12.000000px;}
.y11_c00423{bottom:70.500000px;}
.yf_c00423{bottom:186.000000px;}
.ye_c00423{bottom:213.000000px;}
.yd_c00423{bottom:240.000000px;}
.yc_c00423{bottom:267.000000px;}
.yb_c00423{bottom:313.500000px;}
.ya_c00423{bottom:382.500000px;}
.y9_c00423{bottom:409.500000px;}
.y8_c00423{bottom:436.500000px;}
.y7_c00423{bottom:463.500000px;}
.y6_c00423{bottom:511.500000px;}
.y5_c00423{bottom:538.500000px;}
.y4_c00423{bottom:565.500000px;}
.y2_c00423{bottom:610.500000px;}
.y1_c00423{bottom:1095.000000px;}
.y10_c00423{bottom:1194.000000px;}
.h3_c00423{height:42.292969px;}
.h6_c00423{height:44.208984px;}
.h1_c00423{height:51.187500px;}
.h4_c00423{height:51.539062px;}
.h5_c00423{height:56.074219px;}
.h2_c00423{height:453.000000px;}
.h0_c00423{height:1263.000000px;}
.w1_c00423{width:676.500000px;}
.w0_c00423{width:892.500000px;}
.x0_c00423{left:0.000000px;}
.x1_c00423{left:65.480310px;}
.x2_c00423{left:211.433700px;}
@media print{
.v0_c00423{vertical-align:0.000000pt;}
.ls0_c00423{letter-spacing:0.000000pt;}
.ls1_c00423{letter-spacing:0.010667pt;}
.ws0_c00423{word-spacing:0.000000pt;}
._b_c00423{margin-left:-3.571200pt;}
._3_c00423{margin-left:-2.393600pt;}
._5_c00423{margin-left:-1.190400pt;}
._0_c00423{width:1.350400pt;}
._7_c00423{width:2.918400pt;}
._a_c00423{width:4.339200pt;}
._9_c00423{width:5.395200pt;}
._c_c00423{width:6.508800pt;}
._e_c00423{width:7.443200pt;}
._d_c00423{width:8.672000pt;}
._8_c00423{width:10.374400pt;}
._1_c00423{width:11.788800pt;}
._2_c00423{width:13.113600pt;}
._6_c00423{width:14.297600pt;}
._4_c00423{width:15.532800pt;}
._f_c00423{width:16.473600pt;}
.fs1_c00423{font-size:48.000000pt;}
.fs2_c00423{font-size:53.333333pt;}
.fs0_c00423{font-size:64.000000pt;}
.y0_c00423{bottom:0.000000pt;}
.y3_c00423{bottom:10.666667pt;}
.y11_c00423{bottom:62.666667pt;}
.yf_c00423{bottom:165.333333pt;}
.ye_c00423{bottom:189.333333pt;}
.yd_c00423{bottom:213.333333pt;}
.yc_c00423{bottom:237.333333pt;}
.yb_c00423{bottom:278.666667pt;}
.ya_c00423{bottom:340.000000pt;}
.y9_c00423{bottom:364.000000pt;}
.y8_c00423{bottom:388.000000pt;}
.y7_c00423{bottom:412.000000pt;}
.y6_c00423{bottom:454.666667pt;}
.y5_c00423{bottom:478.666667pt;}
.y4_c00423{bottom:502.666667pt;}
.y2_c00423{bottom:542.666667pt;}
.y1_c00423{bottom:973.333333pt;}
.y10_c00423{bottom:1061.333333pt;}
.h3_c00423{height:37.593750pt;}
.h6_c00423{height:39.296875pt;}
.h1_c00423{height:45.500000pt;}
.h4_c00423{height:45.812500pt;}
.h5_c00423{height:49.843750pt;}
.h2_c00423{height:402.666667pt;}
.h0_c00423{height:1122.666667pt;}
.w1_c00423{width:601.333333pt;}
.w0_c00423{width:793.333333pt;}
.x0_c00423{left:0.000000pt;}
.x1_c00423{left:58.204720pt;}
.x2_c00423{left:187.941067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b59341d0374d8d7f7ab23eaa.woff2')format("woff");}.ff1_c00424{font-family:ff1_c00424;line-height:0.963867;font-style:normal;font-weight:normal;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_faf562ccbb925a05dce2c659.woff2')format("woff");}.ff2_c00424{font-family:ff2_c00424;line-height:1.163086;font-style:normal;font-weight:normal;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_9501041eb1adfb9e8ede7ef1.woff2')format("woff");}.ff3_c00424{font-family:ff3_c00424;line-height:1.155762;font-style: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;}
.ls1_c00424{letter-spacing:0.000000px;}
.ls0_c00424{letter-spacing:0.012000px;}
.sc__c00424{text-shadow:none;}
.sc0_c00424{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00424{-webkit-text-stroke:0px transparent;}
.sc0_c00424{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00424{word-spacing:0.000000px;}
._11_c00424{margin-left:-10.584000px;}
._9_c00424{margin-left:-6.343200px;}
._7_c00424{margin-left:-4.248000px;}
._3_c00424{margin-left:-3.211200px;}
._1_c00424{margin-left:-1.483200px;}
._6_c00424{width:1.828800px;}
._5_c00424{width:3.888000px;}
._0_c00424{width:5.702400px;}
._2_c00424{width:7.221600px;}
._4_c00424{width:9.000000px;}
._8_c00424{width:10.029600px;}
._14_c00424{width:11.707200px;}
._12_c00424{width:13.168800px;}
._13_c00424{width:14.968800px;}
._10_c00424{width:16.646400px;}
._f_c00424{width:18.309600px;}
._a_c00424{width:21.182400px;}
._e_c00424{width:22.989600px;}
._c_c00424{width:24.472800px;}
._b_c00424{width:25.516800px;}
._d_c00424{width:27.244800px;}
.fc0_c00424{color:rgb(0,0,0);}
.fs0_c00424{font-size:54.000000px;}
.fs2_c00424{font-size:60.000000px;}
.fs1_c00424{font-size:72.000000px;}
.y0_c00424{bottom:0.000000px;}
.y3_c00424{bottom:10.500000px;}
.y2_c00424{bottom:28.500000px;}
.y12_c00424{bottom:70.500000px;}
.y10_c00424{bottom:201.000000px;}
.yf_c00424{bottom:228.000000px;}
.ye_c00424{bottom:276.000000px;}
.yd_c00424{bottom:303.000000px;}
.yc_c00424{bottom:330.000000px;}
.yb_c00424{bottom:378.000000px;}
.ya_c00424{bottom:405.000000px;}
.y9_c00424{bottom:432.000000px;}
.y8_c00424{bottom:459.000000px;}
.y7_c00424{bottom:486.000000px;}
.y6_c00424{bottom:513.000000px;}
.y5_c00424{bottom:540.000000px;}
.y4_c00424{bottom:567.000000px;}
.y1_c00424{bottom:612.000000px;}
.y11_c00424{bottom:1194.000000px;}
.h2_c00424{height:41.633789px;}
.h4_c00424{height:56.074219px;}
.h3_c00424{height:67.746094px;}
.h1_c00424{height:501.000000px;}
.h0_c00424{height:1263.000000px;}
.w1_c00424{width:676.500000px;}
.w0_c00424{width:892.500000px;}
.x0_c00424{left:0.000000px;}
.x2_c00424{left:17.713965px;}
.x1_c00424{left:150.000000px;}
.x3_c00424{left:233.067900px;}
.x4_c00424{left:416.782800px;}
.x5_c00424{left:801.992850px;}
@media print{
.v0_c00424{vertical-align:0.000000pt;}
.ls1_c00424{letter-spacing:0.000000pt;}
.ls0_c00424{letter-spacing:0.010667pt;}
.ws0_c00424{word-spacing:0.000000pt;}
._11_c00424{margin-left:-9.408000pt;}
._9_c00424{margin-left:-5.638400pt;}
._7_c00424{margin-left:-3.776000pt;}
._3_c00424{margin-left:-2.854400pt;}
._1_c00424{margin-left:-1.318400pt;}
._6_c00424{width:1.625600pt;}
._5_c00424{width:3.456000pt;}
._0_c00424{width:5.068800pt;}
._2_c00424{width:6.419200pt;}
._4_c00424{width:8.000000pt;}
._8_c00424{width:8.915200pt;}
._14_c00424{width:10.406400pt;}
._12_c00424{width:11.705600pt;}
._13_c00424{width:13.305600pt;}
._10_c00424{width:14.796800pt;}
._f_c00424{width:16.275200pt;}
._a_c00424{width:18.828800pt;}
._e_c00424{width:20.435200pt;}
._c_c00424{width:21.753600pt;}
._b_c00424{width:22.681600pt;}
._d_c00424{width:24.217600pt;}
.fs0_c00424{font-size:48.000000pt;}
.fs2_c00424{font-size:53.333333pt;}
.fs1_c00424{font-size:64.000000pt;}
.y0_c00424{bottom:0.000000pt;}
.y3_c00424{bottom:9.333333pt;}
.y2_c00424{bottom:25.333333pt;}
.y12_c00424{bottom:62.666667pt;}
.y10_c00424{bottom:178.666667pt;}
.yf_c00424{bottom:202.666667pt;}
.ye_c00424{bottom:245.333333pt;}
.yd_c00424{bottom:269.333333pt;}
.yc_c00424{bottom:293.333333pt;}
.yb_c00424{bottom:336.000000pt;}
.ya_c00424{bottom:360.000000pt;}
.y9_c00424{bottom:384.000000pt;}
.y8_c00424{bottom:408.000000pt;}
.y7_c00424{bottom:432.000000pt;}
.y6_c00424{bottom:456.000000pt;}
.y5_c00424{bottom:480.000000pt;}
.y4_c00424{bottom:504.000000pt;}
.y1_c00424{bottom:544.000000pt;}
.y11_c00424{bottom:1061.333333pt;}
.h2_c00424{height:37.007812pt;}
.h4_c00424{height:49.843750pt;}
.h3_c00424{height:60.218750pt;}
.h1_c00424{height:445.333333pt;}
.h0_c00424{height:1122.666667pt;}
.w1_c00424{width:601.333333pt;}
.w0_c00424{width:793.333333pt;}
.x0_c00424{left:0.000000pt;}
.x2_c00424{left:15.745747pt;}
.x1_c00424{left:133.333333pt;}
.x3_c00424{left:207.171467pt;}
.x4_c00424{left:370.473600pt;}
.x5_c00424{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d9804276a0a9219cc9f0c694.woff2')format("woff");}.ff1_c00425{font-family:ff1_c00425;line-height:0.987793;font-style:normal;font-weight:normal;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_e20450c12d13acdd72d8a237.woff2')format("woff");}.ff2_c00425{font-family:ff2_c00425;line-height:0.933105;font-style:normal;font-weight:normal;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_360a9bbd885a39741c09c57c.woff2')format("woff");}.ff3_c00425{font-family:ff3_c00425;line-height:0.755859;font-style:normal;font-weight:normal;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_7dccc02d1a8bd7d9dc2cfe24.woff2')format("woff");}.ff4_c00425{font-family:ff4_c00425;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00425{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00425{vertical-align:0.000000px;}
.ls0_c00425{letter-spacing:0.000000px;}
.ls1_c00425{letter-spacing:0.012000px;}
.sc__c00425{text-shadow:none;}
.sc0_c00425{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00425{-webkit-text-stroke:0px transparent;}
.sc0_c00425{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00425{word-spacing:0.000000px;}
._7_c00425{margin-left:-3.909600px;}
._4_c00425{margin-left:-2.527200px;}
._2_c00425{margin-left:-1.332000px;}
._9_c00425{width:1.310400px;}
._0_c00425{width:2.325600px;}
._1_c00425{width:3.859200px;}
._6_c00425{width:6.192000px;}
._3_c00425{width:7.646400px;}
._5_c00425{width:8.740800px;}
._8_c00425{width:10.188000px;}
._10_c00425{width:12.045600px;}
._d_c00425{width:13.377600px;}
._b_c00425{width:14.947200px;}
._a_c00425{width:15.984000px;}
._c_c00425{width:17.272800px;}
._e_c00425{width:18.619200px;}
._f_c00425{width:21.240000px;}
.fc0_c00425{color:rgb(0,0,0);}
.fs0_c00425{font-size:54.000000px;}
.fs2_c00425{font-size:60.000000px;}
.fs1_c00425{font-size:72.000000px;}
.y0_c00425{bottom:0.000000px;}
.y2_c00425{bottom:12.000000px;}
.y9_c00425{bottom:70.500000px;}
.y7_c00425{bottom:154.500000px;}
.y6_c00425{bottom:531.000000px;}
.y5_c00425{bottom:558.000000px;}
.y4_c00425{bottom:585.000000px;}
.y3_c00425{bottom:612.000000px;}
.y1_c00425{bottom:657.000000px;}
.y8_c00425{bottom:1194.000000px;}
.h2_c00425{height:42.292969px;}
.h6_c00425{height:44.208984px;}
.h3_c00425{height:51.187500px;}
.h5_c00425{height:56.074219px;}
.h4_c00425{height:345.000000px;}
.h1_c00425{height:456.000000px;}
.h0_c00425{height:1263.000000px;}
.w1_c00425{width:676.500000px;}
.w0_c00425{width:892.500000px;}
.x0_c00425{left:0.000000px;}
.x1_c00425{left:66.000000px;}
.x3_c00425{left:154.207050px;}
.x2_c00425{left:255.905250px;}
@media print{
.v0_c00425{vertical-align:0.000000pt;}
.ls0_c00425{letter-spacing:0.000000pt;}
.ls1_c00425{letter-spacing:0.010667pt;}
.ws0_c00425{word-spacing:0.000000pt;}
._7_c00425{margin-left:-3.475200pt;}
._4_c00425{margin-left:-2.246400pt;}
._2_c00425{margin-left:-1.184000pt;}
._9_c00425{width:1.164800pt;}
._0_c00425{width:2.067200pt;}
._1_c00425{width:3.430400pt;}
._6_c00425{width:5.504000pt;}
._3_c00425{width:6.796800pt;}
._5_c00425{width:7.769600pt;}
._8_c00425{width:9.056000pt;}
._10_c00425{width:10.707200pt;}
._d_c00425{width:11.891200pt;}
._b_c00425{width:13.286400pt;}
._a_c00425{width:14.208000pt;}
._c_c00425{width:15.353600pt;}
._e_c00425{width:16.550400pt;}
._f_c00425{width:18.880000pt;}
.fs0_c00425{font-size:48.000000pt;}
.fs2_c00425{font-size:53.333333pt;}
.fs1_c00425{font-size:64.000000pt;}
.y0_c00425{bottom:0.000000pt;}
.y2_c00425{bottom:10.666667pt;}
.y9_c00425{bottom:62.666667pt;}
.y7_c00425{bottom:137.333333pt;}
.y6_c00425{bottom:472.000000pt;}
.y5_c00425{bottom:496.000000pt;}
.y4_c00425{bottom:520.000000pt;}
.y3_c00425{bottom:544.000000pt;}
.y1_c00425{bottom:584.000000pt;}
.y8_c00425{bottom:1061.333333pt;}
.h2_c00425{height:37.593750pt;}
.h6_c00425{height:39.296875pt;}
.h3_c00425{height:45.500000pt;}
.h5_c00425{height:49.843750pt;}
.h4_c00425{height:306.666667pt;}
.h1_c00425{height:405.333333pt;}
.h0_c00425{height:1122.666667pt;}
.w1_c00425{width:601.333333pt;}
.w0_c00425{width:793.333333pt;}
.x0_c00425{left:0.000000pt;}
.x1_c00425{left:58.666667pt;}
.x3_c00425{left:137.072933pt;}
.x2_c00425{left:227.471333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1e499c63694f609f8677a9a8.woff2')format("woff");}.ff1_c00426{font-family:ff1_c00426;line-height:0.987793;font-style:normal;font-weight:normal;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_32e7e4e785499051be481ea2.woff2')format("woff");}.ff2_c00426{font-family:ff2_c00426;line-height:0.933105;font-style:normal;font-weight:normal;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_1d4a11715fe019459d6d459a.woff2')format("woff");}.ff3_c00426{font-family:ff3_c00426;line-height:1.155762;font-style: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;}
.ls1_c00426{letter-spacing:0.000000px;}
.ls0_c00426{letter-spacing:0.012000px;}
.sc__c00426{text-shadow:none;}
.sc0_c00426{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00426{-webkit-text-stroke:0px transparent;}
.sc0_c00426{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00426{word-spacing:0.000000px;}
._8_c00426{margin-left:-4.046400px;}
._6_c00426{margin-left:-2.844000px;}
._a_c00426{margin-left:-1.476000px;}
._5_c00426{width:1.231200px;}
._0_c00426{width:2.325600px;}
._2_c00426{width:4.204800px;}
._c_c00426{width:5.947200px;}
._b_c00426{width:7.164000px;}
._3_c00426{width:9.180000px;}
._1_c00426{width:10.944000px;}
._4_c00426{width:13.147200px;}
._7_c00426{width:15.307200px;}
._9_c00426{width:17.150400px;}
.fc0_c00426{color:rgb(0,0,0);}
.fs0_c00426{font-size:54.000000px;}
.fs2_c00426{font-size:60.000000px;}
.fs1_c00426{font-size:72.000000px;}
.y0_c00426{bottom:0.000000px;}
.y2_c00426{bottom:12.000000px;}
.ya_c00426{bottom:70.500000px;}
.y8_c00426{bottom:142.500000px;}
.y7_c00426{bottom:169.500000px;}
.y6_c00426{bottom:196.500000px;}
.y5_c00426{bottom:241.500000px;}
.y4_c00426{bottom:645.000000px;}
.y3_c00426{bottom:672.000000px;}
.y1_c00426{bottom:717.000000px;}
.y9_c00426{bottom:1194.000000px;}
.h2_c00426{height:42.292969px;}
.h3_c00426{height:51.187500px;}
.h5_c00426{height:56.074219px;}
.h4_c00426{height:372.000000px;}
.h1_c00426{height:396.000000px;}
.h0_c00426{height:1263.000000px;}
.w1_c00426{width:676.500000px;}
.w0_c00426{width:892.500000px;}
.x0_c00426{left:0.000000px;}
.x1_c00426{left:150.000000px;}
.x2_c00426{left:161.148150px;}
.x3_c00426{left:416.782800px;}
.x4_c00426{left:801.992850px;}
@media print{
.v0_c00426{vertical-align:0.000000pt;}
.ls1_c00426{letter-spacing:0.000000pt;}
.ls0_c00426{letter-spacing:0.010667pt;}
.ws0_c00426{word-spacing:0.000000pt;}
._8_c00426{margin-left:-3.596800pt;}
._6_c00426{margin-left:-2.528000pt;}
._a_c00426{margin-left:-1.312000pt;}
._5_c00426{width:1.094400pt;}
._0_c00426{width:2.067200pt;}
._2_c00426{width:3.737600pt;}
._c_c00426{width:5.286400pt;}
._b_c00426{width:6.368000pt;}
._3_c00426{width:8.160000pt;}
._1_c00426{width:9.728000pt;}
._4_c00426{width:11.686400pt;}
._7_c00426{width:13.606400pt;}
._9_c00426{width:15.244800pt;}
.fs0_c00426{font-size:48.000000pt;}
.fs2_c00426{font-size:53.333333pt;}
.fs1_c00426{font-size:64.000000pt;}
.y0_c00426{bottom:0.000000pt;}
.y2_c00426{bottom:10.666667pt;}
.ya_c00426{bottom:62.666667pt;}
.y8_c00426{bottom:126.666667pt;}
.y7_c00426{bottom:150.666667pt;}
.y6_c00426{bottom:174.666667pt;}
.y5_c00426{bottom:214.666667pt;}
.y4_c00426{bottom:573.333333pt;}
.y3_c00426{bottom:597.333333pt;}
.y1_c00426{bottom:637.333333pt;}
.y9_c00426{bottom:1061.333333pt;}
.h2_c00426{height:37.593750pt;}
.h3_c00426{height:45.500000pt;}
.h5_c00426{height:49.843750pt;}
.h4_c00426{height:330.666667pt;}
.h1_c00426{height:352.000000pt;}
.h0_c00426{height:1122.666667pt;}
.w1_c00426{width:601.333333pt;}
.w0_c00426{width:793.333333pt;}
.x0_c00426{left:0.000000pt;}
.x1_c00426{left:133.333333pt;}
.x2_c00426{left:143.242800pt;}
.x3_c00426{left:370.473600pt;}
.x4_c00426{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4e82077cf86c699a60dccd5e.woff2')format("woff");}.ff1_c00427{font-family:ff1_c00427;line-height:0.963867;font-style:normal;font-weight:normal;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_fbe9a853f07ed885d6d4dbd8.woff2')format("woff");}.ff2_c00427{font-family:ff2_c00427;line-height:0.933105;font-style:normal;font-weight:normal;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_2b8643c77f61453be2f1e2e3.woff2')format("woff");}.ff3_c00427{font-family:ff3_c00427;line-height:0.755859;font-style:normal;font-weight:normal;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_a393ae8c1d4785b5235c37b6.woff2')format("woff");}.ff4_c00427{font-family:ff4_c00427;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00427{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00427{vertical-align:0.000000px;}
.ls1_c00427{letter-spacing:0.000000px;}
.ls2_c00427{letter-spacing:0.012000px;}
.ls0_c00427{letter-spacing:0.032400px;}
.sc__c00427{text-shadow:none;}
.sc0_c00427{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00427{-webkit-text-stroke:0px transparent;}
.sc0_c00427{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00427{word-spacing:0.000000px;}
._9_c00427{margin-left:-7.718400px;}
._6_c00427{margin-left:-4.960800px;}
._2_c00427{margin-left:-3.204000px;}
._4_c00427{margin-left:-1.346400px;}
._7_c00427{width:1.000800px;}
._0_c00427{width:2.469600px;}
._8_c00427{width:4.248000px;}
._1_c00427{width:5.839200px;}
._a_c00427{width:7.027200px;}
._3_c00427{width:8.143200px;}
._5_c00427{width:9.345600px;}
.fc0_c00427{color:rgb(0,0,0);}
.fs0_c00427{font-size:54.000000px;}
.fs2_c00427{font-size:60.000000px;}
.fs1_c00427{font-size:72.000000px;}
.y0_c00427{bottom:0.000000px;}
.y2_c00427{bottom:12.000000px;}
.yd_c00427{bottom:70.500000px;}
.yb_c00427{bottom:172.500000px;}
.ya_c00427{bottom:199.500000px;}
.y9_c00427{bottom:244.500000px;}
.y8_c00427{bottom:582.000000px;}
.y7_c00427{bottom:609.000000px;}
.y6_c00427{bottom:636.000000px;}
.y5_c00427{bottom:663.000000px;}
.y4_c00427{bottom:690.000000px;}
.y3_c00427{bottom:717.000000px;}
.y1_c00427{bottom:762.000000px;}
.yc_c00427{bottom:1194.000000px;}
.h2_c00427{height:41.633789px;}
.h6_c00427{height:44.208984px;}
.h3_c00427{height:51.187500px;}
.h5_c00427{height:56.074219px;}
.h4_c00427{height:306.000000px;}
.h1_c00427{height:351.000000px;}
.h0_c00427{height:1263.000000px;}
.w1_c00427{width:676.500000px;}
.w0_c00427{width:892.500000px;}
.x0_c00427{left:0.000000px;}
.x1_c00427{left:66.000000px;}
.x3_c00427{left:189.783000px;}
.x2_c00427{left:292.450200px;}
@media print{
.v0_c00427{vertical-align:0.000000pt;}
.ls1_c00427{letter-spacing:0.000000pt;}
.ls2_c00427{letter-spacing:0.010667pt;}
.ls0_c00427{letter-spacing:0.028800pt;}
.ws0_c00427{word-spacing:0.000000pt;}
._9_c00427{margin-left:-6.860800pt;}
._6_c00427{margin-left:-4.409600pt;}
._2_c00427{margin-left:-2.848000pt;}
._4_c00427{margin-left:-1.196800pt;}
._7_c00427{width:0.889600pt;}
._0_c00427{width:2.195200pt;}
._8_c00427{width:3.776000pt;}
._1_c00427{width:5.190400pt;}
._a_c00427{width:6.246400pt;}
._3_c00427{width:7.238400pt;}
._5_c00427{width:8.307200pt;}
.fs0_c00427{font-size:48.000000pt;}
.fs2_c00427{font-size:53.333333pt;}
.fs1_c00427{font-size:64.000000pt;}
.y0_c00427{bottom:0.000000pt;}
.y2_c00427{bottom:10.666667pt;}
.yd_c00427{bottom:62.666667pt;}
.yb_c00427{bottom:153.333333pt;}
.ya_c00427{bottom:177.333333pt;}
.y9_c00427{bottom:217.333333pt;}
.y8_c00427{bottom:517.333333pt;}
.y7_c00427{bottom:541.333333pt;}
.y6_c00427{bottom:565.333333pt;}
.y5_c00427{bottom:589.333333pt;}
.y4_c00427{bottom:613.333333pt;}
.y3_c00427{bottom:637.333333pt;}
.y1_c00427{bottom:677.333333pt;}
.yc_c00427{bottom:1061.333333pt;}
.h2_c00427{height:37.007812pt;}
.h6_c00427{height:39.296875pt;}
.h3_c00427{height:45.500000pt;}
.h5_c00427{height:49.843750pt;}
.h4_c00427{height:272.000000pt;}
.h1_c00427{height:312.000000pt;}
.h0_c00427{height:1122.666667pt;}
.w1_c00427{width:601.333333pt;}
.w0_c00427{width:793.333333pt;}
.x0_c00427{left:0.000000pt;}
.x1_c00427{left:58.666667pt;}
.x3_c00427{left:168.696000pt;}
.x2_c00427{left:259.955733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_285a415d0d3af9686e36c93e.woff2')format("woff");}.ff1_c00428{font-family:ff1_c00428;line-height:0.987793;font-style:normal;font-weight:normal;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_e1555cec98654c8bb5f4ca8e.woff2')format("woff");}.ff2_c00428{font-family:ff2_c00428;line-height:0.934082;font-style:normal;font-weight:normal;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_53f283fad66c9186f04bb0bb.woff2')format("woff");}.ff3_c00428{font-family:ff3_c00428;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00428{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00428{vertical-align:0.000000px;}
.ls1_c00428{letter-spacing:0.000000px;}
.ls0_c00428{letter-spacing:0.012000px;}
.sc__c00428{text-shadow:none;}
.sc0_c00428{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00428{-webkit-text-stroke:0px transparent;}
.sc0_c00428{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00428{word-spacing:0.000000px;}
._9_c00428{margin-left:-3.736800px;}
._2_c00428{margin-left:-2.570400px;}
._0_c00428{margin-left:-1.130400px;}
._4_c00428{width:1.245600px;}
._1_c00428{width:2.952000px;}
._3_c00428{width:4.363200px;}
._5_c00428{width:6.048000px;}
._6_c00428{width:7.509600px;}
._7_c00428{width:8.935200px;}
._8_c00428{width:11.008800px;}
._a_c00428{width:13.766400px;}
.fc0_c00428{color:rgb(0,0,0);}
.fs0_c00428{font-size:54.000000px;}
.fs2_c00428{font-size:60.000000px;}
.fs1_c00428{font-size:72.000000px;}
.y0_c00428{bottom:0.000000px;}
.y2_c00428{bottom:12.000000px;}
.y10_c00428{bottom:70.500000px;}
.ye_c00428{bottom:144.000000px;}
.yd_c00428{bottom:493.500000px;}
.yc_c00428{bottom:520.500000px;}
.yb_c00428{bottom:547.500000px;}
.ya_c00428{bottom:574.500000px;}
.y9_c00428{bottom:601.500000px;}
.y8_c00428{bottom:628.500000px;}
.y7_c00428{bottom:655.500000px;}
.y6_c00428{bottom:682.500000px;}
.y5_c00428{bottom:709.500000px;}
.y4_c00428{bottom:736.500000px;}
.y3_c00428{bottom:763.500000px;}
.y1_c00428{bottom:808.500000px;}
.yf_c00428{bottom:1194.000000px;}
.h2_c00428{height:42.292969px;}
.h3_c00428{height:51.257812px;}
.h5_c00428{height:56.074219px;}
.h1_c00428{height:304.500000px;}
.h4_c00428{height:318.000000px;}
.h0_c00428{height:1263.000000px;}
.w1_c00428{width:676.500000px;}
.w0_c00428{width:892.500000px;}
.x0_c00428{left:0.000000px;}
.x2_c00428{left:134.052585px;}
.x1_c00428{left:150.000000px;}
.x3_c00428{left:231.238800px;}
.x4_c00428{left:416.782800px;}
.x5_c00428{left:801.992850px;}
@media print{
.v0_c00428{vertical-align:0.000000pt;}
.ls1_c00428{letter-spacing:0.000000pt;}
.ls0_c00428{letter-spacing:0.010667pt;}
.ws0_c00428{word-spacing:0.000000pt;}
._9_c00428{margin-left:-3.321600pt;}
._2_c00428{margin-left:-2.284800pt;}
._0_c00428{margin-left:-1.004800pt;}
._4_c00428{width:1.107200pt;}
._1_c00428{width:2.624000pt;}
._3_c00428{width:3.878400pt;}
._5_c00428{width:5.376000pt;}
._6_c00428{width:6.675200pt;}
._7_c00428{width:7.942400pt;}
._8_c00428{width:9.785600pt;}
._a_c00428{width:12.236800pt;}
.fs0_c00428{font-size:48.000000pt;}
.fs2_c00428{font-size:53.333333pt;}
.fs1_c00428{font-size:64.000000pt;}
.y0_c00428{bottom:0.000000pt;}
.y2_c00428{bottom:10.666667pt;}
.y10_c00428{bottom:62.666667pt;}
.ye_c00428{bottom:128.000000pt;}
.yd_c00428{bottom:438.666667pt;}
.yc_c00428{bottom:462.666667pt;}
.yb_c00428{bottom:486.666667pt;}
.ya_c00428{bottom:510.666667pt;}
.y9_c00428{bottom:534.666667pt;}
.y8_c00428{bottom:558.666667pt;}
.y7_c00428{bottom:582.666667pt;}
.y6_c00428{bottom:606.666667pt;}
.y5_c00428{bottom:630.666667pt;}
.y4_c00428{bottom:654.666667pt;}
.y3_c00428{bottom:678.666667pt;}
.y1_c00428{bottom:718.666667pt;}
.yf_c00428{bottom:1061.333333pt;}
.h2_c00428{height:37.593750pt;}
.h3_c00428{height:45.562500pt;}
.h5_c00428{height:49.843750pt;}
.h1_c00428{height:270.666667pt;}
.h4_c00428{height:282.666667pt;}
.h0_c00428{height:1122.666667pt;}
.w1_c00428{width:601.333333pt;}
.w0_c00428{width:793.333333pt;}
.x0_c00428{left:0.000000pt;}
.x2_c00428{left:119.157853pt;}
.x1_c00428{left:133.333333pt;}
.x3_c00428{left:205.545600pt;}
.x4_c00428{left:370.473600pt;}
.x5_c00428{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_15ccd0e0615368f425f130ea.woff2')format("woff");}.ff1_c00429{font-family:ff1_c00429;line-height:0.934082;font-style:normal;font-weight:normal;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_744b4a6d7222f3c76b3266a0.woff2')format("woff");}.ff2_c00429{font-family:ff2_c00429;line-height:0.987793;font-style:normal;font-weight:normal;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_283907a44d9023fc9ef49aee.woff2')format("woff");}.ff3_c00429{font-family:ff3_c00429;line-height:0.936035;font-style:normal;font-weight:normal;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_ddd4c7fe9a3f61b68929fca5.woff2')format("woff");}.ff4_c00429{font-family:ff4_c00429;line-height:0.755859;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00429;src:url('chunks/assets/font_fdf0c8a8115642ec0e9eec3b.woff2')format("woff");}.ff5_c00429{font-family:ff5_c00429;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00429{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00429{vertical-align:0.000000px;}
.ls0_c00429{letter-spacing:0.000000px;}
.ls1_c00429{letter-spacing:0.012000px;}
.sc__c00429{text-shadow:none;}
.sc0_c00429{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00429{-webkit-text-stroke:0px transparent;}
.sc0_c00429{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00429{word-spacing:0.000000px;}
._0_c00429{margin-left:-3.945600px;}
._4_c00429{margin-left:-2.347200px;}
._2_c00429{margin-left:-1.296000px;}
._1_c00429{width:1.540800px;}
._3_c00429{width:2.844000px;}
._5_c00429{width:4.824000px;}
._7_c00429{width:6.321600px;}
._6_c00429{width:7.848000px;}
._8_c00429{width:9.532800px;}
._c_c00429{width:10.764000px;}
._9_c00429{width:11.793600px;}
._a_c00429{width:13.572000px;}
._b_c00429{width:15.552000px;}
.fc0_c00429{color:rgb(0,0,0);}
.fs1_c00429{font-size:54.000000px;}
.fs2_c00429{font-size:60.000000px;}
.fs0_c00429{font-size:72.000000px;}
.y0_c00429{bottom:0.000000px;}
.y6_c00429{bottom:12.000000px;}
.y11_c00429{bottom:70.500000px;}
.yf_c00429{bottom:187.500000px;}
.ye_c00429{bottom:214.500000px;}
.yd_c00429{bottom:262.500000px;}
.yc_c00429{bottom:289.500000px;}
.yb_c00429{bottom:316.500000px;}
.ya_c00429{bottom:363.000000px;}
.y9_c00429{bottom:432.000000px;}
.y8_c00429{bottom:459.000000px;}
.y7_c00429{bottom:486.000000px;}
.y5_c00429{bottom:531.000000px;}
.y4_c00429{bottom:1014.000000px;}
.y3_c00429{bottom:1041.000000px;}
.y2_c00429{bottom:1068.000000px;}
.y1_c00429{bottom:1095.000000px;}
.y10_c00429{bottom:1194.000000px;}
.h3_c00429{height:42.292969px;}
.h6_c00429{height:44.208984px;}
.h1_c00429{height:51.257812px;}
.h4_c00429{height:51.539062px;}
.h5_c00429{height:56.074219px;}
.h2_c00429{height:451.500000px;}
.h0_c00429{height:1263.000000px;}
.w1_c00429{width:676.500000px;}
.w0_c00429{width:892.500000px;}
.x0_c00429{left:0.000000px;}
.x2_c00429{left:29.648430px;}
.x1_c00429{left:65.480310px;}
@media print{
.v0_c00429{vertical-align:0.000000pt;}
.ls0_c00429{letter-spacing:0.000000pt;}
.ls1_c00429{letter-spacing:0.010667pt;}
.ws0_c00429{word-spacing:0.000000pt;}
._0_c00429{margin-left:-3.507200pt;}
._4_c00429{margin-left:-2.086400pt;}
._2_c00429{margin-left:-1.152000pt;}
._1_c00429{width:1.369600pt;}
._3_c00429{width:2.528000pt;}
._5_c00429{width:4.288000pt;}
._7_c00429{width:5.619200pt;}
._6_c00429{width:6.976000pt;}
._8_c00429{width:8.473600pt;}
._c_c00429{width:9.568000pt;}
._9_c00429{width:10.483200pt;}
._a_c00429{width:12.064000pt;}
._b_c00429{width:13.824000pt;}
.fs1_c00429{font-size:48.000000pt;}
.fs2_c00429{font-size:53.333333pt;}
.fs0_c00429{font-size:64.000000pt;}
.y0_c00429{bottom:0.000000pt;}
.y6_c00429{bottom:10.666667pt;}
.y11_c00429{bottom:62.666667pt;}
.yf_c00429{bottom:166.666667pt;}
.ye_c00429{bottom:190.666667pt;}
.yd_c00429{bottom:233.333333pt;}
.yc_c00429{bottom:257.333333pt;}
.yb_c00429{bottom:281.333333pt;}
.ya_c00429{bottom:322.666667pt;}
.y9_c00429{bottom:384.000000pt;}
.y8_c00429{bottom:408.000000pt;}
.y7_c00429{bottom:432.000000pt;}
.y5_c00429{bottom:472.000000pt;}
.y4_c00429{bottom:901.333333pt;}
.y3_c00429{bottom:925.333333pt;}
.y2_c00429{bottom:949.333333pt;}
.y1_c00429{bottom:973.333333pt;}
.y10_c00429{bottom:1061.333333pt;}
.h3_c00429{height:37.593750pt;}
.h6_c00429{height:39.296875pt;}
.h1_c00429{height:45.562500pt;}
.h4_c00429{height:45.812500pt;}
.h5_c00429{height:49.843750pt;}
.h2_c00429{height:401.333333pt;}
.h0_c00429{height:1122.666667pt;}
.w1_c00429{width:601.333333pt;}
.w0_c00429{width:793.333333pt;}
.x0_c00429{left:0.000000pt;}
.x2_c00429{left:26.354160pt;}
.x1_c00429{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_64de81550194df6e839f8bcb.woff2')format("woff");}.ff1_c00430{font-family:ff1_c00430;line-height:0.932129;font-style:normal;font-weight:normal;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_a3e6a8ff94a23580b8b4aaa3.woff2')format("woff");}.ff2_c00430{font-family:ff2_c00430;line-height:0.934082;font-style:normal;font-weight:normal;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_1b332d1e82ee6b3955666bb5.woff2')format("woff");}.ff3_c00430{font-family:ff3_c00430;line-height:0.932129;font-style:normal;font-weight:normal;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_08e60e521d65d5424c42adba.woff2')format("woff");}.ff4_c00430{font-family:ff4_c00430;line-height:1.010254;font-style:normal;font-weight:normal;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_98de1c4f32686c6cd3f9cc4f.woff2')format("woff");}.ff5_c00430{font-family:ff5_c00430;line-height:0.986816;font-style:normal;font-weight: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_c00430;src:url('chunks/assets/font_accf7a7c38a45241653bac8f.woff2')format("woff");}.ff6_c00430{font-family:ff6_c00430;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00430{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00430{vertical-align:0.000000px;}
.ls4_c00430{letter-spacing:-0.984000px;}
.ls2_c00430{letter-spacing:-0.014400px;}
.ls5_c00430{letter-spacing:-0.012000px;}
.ls3_c00430{letter-spacing:-0.006000px;}
.ls1_c00430{letter-spacing:0.000000px;}
.ls0_c00430{letter-spacing:0.012000px;}
.sc__c00430{text-shadow:none;}
.sc0_c00430{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00430{-webkit-text-stroke:0px transparent;}
.sc0_c00430{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00430{word-spacing:-16.488000px;}
.ws0_c00430{word-spacing:-0.072000px;}
.ws2_c00430{word-spacing:0.000000px;}
._13_c00430{margin-left:-6.624000px;}
._c_c00430{margin-left:-4.014000px;}
._6_c00430{margin-left:-2.397600px;}
._d_c00430{margin-left:-1.051200px;}
._a_c00430{width:1.854000px;}
._0_c00430{width:2.858400px;}
._e_c00430{width:3.992400px;}
._2_c00430{width:5.227200px;}
._5_c00430{width:6.696000px;}
._1_c00430{width:8.359200px;}
._4_c00430{width:10.447200px;}
._3_c00430{width:11.959200px;}
._11_c00430{width:13.244400px;}
._7_c00430{width:14.407200px;}
._f_c00430{width:15.872400px;}
._10_c00430{width:16.982400px;}
._9_c00430{width:18.667200px;}
._12_c00430{width:19.864800px;}
._8_c00430{width:20.868000px;}
._15_c00430{width:22.384800px;}
._b_c00430{width:23.588400px;}
._14_c00430{width:24.759600px;}
._16_c00430{width:26.272800px;}
.fc0_c00430{color:rgb(0,0,0);}
.fs1_c00430{font-size:60.000000px;}
.fs0_c00430{font-size:72.000000px;}
.y0_c00430{bottom:0.000000px;}
.y23_c00430{bottom:70.500000px;}
.y21_c00430{bottom:138.000000px;}
.y20_c00430{bottom:181.500000px;}
.y1f_c00430{bottom:204.000000px;}
.y1e_c00430{bottom:247.500000px;}
.y1d_c00430{bottom:274.500000px;}
.y1c_c00430{bottom:322.500000px;}
.y1b_c00430{bottom:370.500000px;}
.y1a_c00430{bottom:415.500000px;}
.y19_c00430{bottom:436.500000px;}
.y18_c00430{bottom:457.500000px;}
.y17_c00430{bottom:478.500000px;}
.y16_c00430{bottom:499.500000px;}
.y15_c00430{bottom:520.500000px;}
.y14_c00430{bottom:541.500000px;}
.y13_c00430{bottom:562.500000px;}
.y12_c00430{bottom:583.500000px;}
.y11_c00430{bottom:604.500000px;}
.y10_c00430{bottom:625.500000px;}
.yf_c00430{bottom:646.500000px;}
.ye_c00430{bottom:667.500000px;}
.yd_c00430{bottom:688.500000px;}
.yc_c00430{bottom:709.500000px;}
.yb_c00430{bottom:730.500000px;}
.ya_c00430{bottom:751.500000px;}
.y9_c00430{bottom:772.500000px;}
.y8_c00430{bottom:793.500000px;}
.y7_c00430{bottom:814.500000px;}
.y6_c00430{bottom:858.000000px;}
.y5_c00430{bottom:879.000000px;}
.y4_c00430{bottom:924.000000px;}
.y3_c00430{bottom:951.000000px;}
.y2_c00430{bottom:999.000000px;}
.y1_c00430{bottom:1047.000000px;}
.y22_c00430{bottom:1194.000000px;}
.h4_c00430{height:42.714844px;}
.h3_c00430{height:42.832031px;}
.h1_c00430{height:51.257812px;}
.h2_c00430{height:51.398438px;}
.h5_c00430{height:52.417969px;}
.h6_c00430{height:56.074219px;}
.h0_c00430{height:1263.000000px;}
.w0_c00430{width:892.500000px;}
.x0_c00430{left:0.000000px;}
.x1_c00430{left:150.519750px;}
.x2_c00430{left:416.782800px;}
.x3_c00430{left:801.992850px;}
@media print{
.v0_c00430{vertical-align:0.000000pt;}
.ls4_c00430{letter-spacing:-0.874667pt;}
.ls2_c00430{letter-spacing:-0.012800pt;}
.ls5_c00430{letter-spacing:-0.010667pt;}
.ls3_c00430{letter-spacing:-0.005333pt;}
.ls1_c00430{letter-spacing:0.000000pt;}
.ls0_c00430{letter-spacing:0.010667pt;}
.ws1_c00430{word-spacing:-14.656000pt;}
.ws0_c00430{word-spacing:-0.064000pt;}
.ws2_c00430{word-spacing:0.000000pt;}
._13_c00430{margin-left:-5.888000pt;}
._c_c00430{margin-left:-3.568000pt;}
._6_c00430{margin-left:-2.131200pt;}
._d_c00430{margin-left:-0.934400pt;}
._a_c00430{width:1.648000pt;}
._0_c00430{width:2.540800pt;}
._e_c00430{width:3.548800pt;}
._2_c00430{width:4.646400pt;}
._5_c00430{width:5.952000pt;}
._1_c00430{width:7.430400pt;}
._4_c00430{width:9.286400pt;}
._3_c00430{width:10.630400pt;}
._11_c00430{width:11.772800pt;}
._7_c00430{width:12.806400pt;}
._f_c00430{width:14.108800pt;}
._10_c00430{width:15.095467pt;}
._9_c00430{width:16.593067pt;}
._12_c00430{width:17.657600pt;}
._8_c00430{width:18.549333pt;}
._15_c00430{width:19.897600pt;}
._b_c00430{width:20.967467pt;}
._14_c00430{width:22.008533pt;}
._16_c00430{width:23.353600pt;}
.fs1_c00430{font-size:53.333333pt;}
.fs0_c00430{font-size:64.000000pt;}
.y0_c00430{bottom:0.000000pt;}
.y23_c00430{bottom:62.666667pt;}
.y21_c00430{bottom:122.666667pt;}
.y20_c00430{bottom:161.333333pt;}
.y1f_c00430{bottom:181.333333pt;}
.y1e_c00430{bottom:220.000000pt;}
.y1d_c00430{bottom:244.000000pt;}
.y1c_c00430{bottom:286.666667pt;}
.y1b_c00430{bottom:329.333333pt;}
.y1a_c00430{bottom:369.333333pt;}
.y19_c00430{bottom:388.000000pt;}
.y18_c00430{bottom:406.666667pt;}
.y17_c00430{bottom:425.333333pt;}
.y16_c00430{bottom:444.000000pt;}
.y15_c00430{bottom:462.666667pt;}
.y14_c00430{bottom:481.333333pt;}
.y13_c00430{bottom:500.000000pt;}
.y12_c00430{bottom:518.666667pt;}
.y11_c00430{bottom:537.333333pt;}
.y10_c00430{bottom:556.000000pt;}
.yf_c00430{bottom:574.666667pt;}
.ye_c00430{bottom:593.333333pt;}
.yd_c00430{bottom:612.000000pt;}
.yc_c00430{bottom:630.666667pt;}
.yb_c00430{bottom:649.333333pt;}
.ya_c00430{bottom:668.000000pt;}
.y9_c00430{bottom:686.666667pt;}
.y8_c00430{bottom:705.333333pt;}
.y7_c00430{bottom:724.000000pt;}
.y6_c00430{bottom:762.666667pt;}
.y5_c00430{bottom:781.333333pt;}
.y4_c00430{bottom:821.333333pt;}
.y3_c00430{bottom:845.333333pt;}
.y2_c00430{bottom:888.000000pt;}
.y1_c00430{bottom:930.666667pt;}
.y22_c00430{bottom:1061.333333pt;}
.h4_c00430{height:37.968750pt;}
.h3_c00430{height:38.072917pt;}
.h1_c00430{height:45.562500pt;}
.h2_c00430{height:45.687500pt;}
.h5_c00430{height:46.593750pt;}
.h6_c00430{height:49.843750pt;}
.h0_c00430{height:1122.666667pt;}
.w0_c00430{width:793.333333pt;}
.x0_c00430{left:0.000000pt;}
.x1_c00430{left:133.795333pt;}
.x2_c00430{left:370.473600pt;}
.x3_c00430{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1d4729a62c866b07f4584a70.woff2')format("woff");}.ff1_c00431{font-family:ff1_c00431;line-height:1.010254;font-style:normal;font-weight:normal;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_3b903f2a9a55661861a11d9d.woff2')format("woff");}.ff2_c00431{font-family:ff2_c00431;line-height:1.005371;font-style:normal;font-weight:normal;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_b4dcd2ea5941853a7f46e317.woff2')format("woff");}.ff3_c00431{font-family:ff3_c00431;line-height:0.933105;font-style:normal;font-weight:normal;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_8446cbd3797f305b10766ca8.woff2')format("woff");}.ff4_c00431{font-family:ff4_c00431;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00431;src:url('chunks/assets/font_c7e399e8c56b3fdd14c88fb1.woff2')format("woff");}.ff5_c00431{font-family:ff5_c00431;line-height:0.756836;font-style:normal;font-weight: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_c00431;src:url('chunks/assets/font_e9e2b57a186fc694a8176fac.woff2')format("woff");}.ff6_c00431{font-family:ff6_c00431;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00431{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00431{vertical-align:0.000000px;}
.ls3_c00431{letter-spacing:0.000000px;}
.ls1_c00431{letter-spacing:0.012000px;}
.ls0_c00431{letter-spacing:0.158400px;}
.ls2_c00431{letter-spacing:0.914400px;}
.sc__c00431{text-shadow:none;}
.sc0_c00431{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00431{-webkit-text-stroke:0px transparent;}
.sc0_c00431{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00431{word-spacing:-18.000000px;}
.ws1_c00431{word-spacing:0.000000px;}
._1e_c00431{margin-left:-7.084800px;}
._13_c00431{margin-left:-4.960800px;}
._8_c00431{margin-left:-3.420000px;}
._3_c00431{margin-left:-2.232000px;}
._6_c00431{margin-left:-1.152000px;}
._1_c00431{width:1.296000px;}
._a_c00431{width:2.476800px;}
._9_c00431{width:4.327200px;}
._b_c00431{width:5.860800px;}
._e_c00431{width:7.300800px;}
._d_c00431{width:8.301600px;}
._c_c00431{width:10.166400px;}
._12_c00431{width:12.045600px;}
._14_c00431{width:13.075200px;}
._f_c00431{width:14.263200px;}
._10_c00431{width:15.616800px;}
._15_c00431{width:16.790400px;}
._11_c00431{width:19.015200px;}
._17_c00431{width:20.743200px;}
._18_c00431{width:22.255200px;}
._19_c00431{width:23.306400px;}
._16_c00431{width:24.343200px;}
._1a_c00431{width:26.265600px;}
._1d_c00431{width:27.316800px;}
._1b_c00431{width:28.526400px;}
._1c_c00431{width:30.024000px;}
._1f_c00431{width:31.276800px;}
._5_c00431{width:32.760000px;}
._2_c00431{width:34.488000px;}
._0_c00431{width:35.784000px;}
._7_c00431{width:36.864000px;}
._4_c00431{width:38.016000px;}
.fc0_c00431{color:rgb(0,0,0);}
.fs1_c00431{font-size:60.000000px;}
.fs0_c00431{font-size:72.000000px;}
.y0_c00431{bottom:0.000000px;}
.y2a_c00431{bottom:70.500000px;}
.y28_c00431{bottom:133.500000px;}
.y27_c00431{bottom:154.500000px;}
.y26_c00431{bottom:175.500000px;}
.y25_c00431{bottom:220.500000px;}
.y24_c00431{bottom:241.500000px;}
.y23_c00431{bottom:286.500000px;}
.y22_c00431{bottom:312.000000px;}
.y21_c00431{bottom:358.500000px;}
.y20_c00431{bottom:403.500000px;}
.y1f_c00431{bottom:466.500000px;}
.y1e_c00431{bottom:487.500000px;}
.y1d_c00431{bottom:508.500000px;}
.y1c_c00431{bottom:529.500000px;}
.y1b_c00431{bottom:550.500000px;}
.y1a_c00431{bottom:571.500000px;}
.y19_c00431{bottom:592.500000px;}
.y18_c00431{bottom:613.500000px;}
.y17_c00431{bottom:634.500000px;}
.y16_c00431{bottom:655.500000px;}
.y15_c00431{bottom:676.500000px;}
.y14_c00431{bottom:697.500000px;}
.y13_c00431{bottom:718.500000px;}
.y12_c00431{bottom:739.500000px;}
.y11_c00431{bottom:760.500000px;}
.y10_c00431{bottom:781.500000px;}
.yf_c00431{bottom:802.500000px;}
.ye_c00431{bottom:823.500000px;}
.yd_c00431{bottom:844.500000px;}
.yc_c00431{bottom:865.500000px;}
.yb_c00431{bottom:886.500000px;}
.ya_c00431{bottom:907.500000px;}
.y9_c00431{bottom:928.500000px;}
.y8_c00431{bottom:949.500000px;}
.y7_c00431{bottom:970.500000px;}
.y6_c00431{bottom:991.500000px;}
.y5_c00431{bottom:1012.500000px;}
.y4_c00431{bottom:1033.500000px;}
.y3_c00431{bottom:1054.500000px;}
.y2_c00431{bottom:1075.500000px;}
.y1_c00431{bottom:1096.500000px;}
.y29_c00431{bottom:1194.000000px;}
.h3_c00431{height:42.832031px;}
.h5_c00431{height:44.208984px;}
.h2_c00431{height:52.242188px;}
.h1_c00431{height:52.417969px;}
.h4_c00431{height:56.074219px;}
.h0_c00431{height:1263.000000px;}
.w0_c00431{width:892.500000px;}
.x0_c00431{left:0.000000px;}
.x1_c00431{left:65.480310px;}
@media print{
.v0_c00431{vertical-align:0.000000pt;}
.ls3_c00431{letter-spacing:0.000000pt;}
.ls1_c00431{letter-spacing:0.010667pt;}
.ls0_c00431{letter-spacing:0.140800pt;}
.ls2_c00431{letter-spacing:0.812800pt;}
.ws0_c00431{word-spacing:-16.000000pt;}
.ws1_c00431{word-spacing:0.000000pt;}
._1e_c00431{margin-left:-6.297600pt;}
._13_c00431{margin-left:-4.409600pt;}
._8_c00431{margin-left:-3.040000pt;}
._3_c00431{margin-left:-1.984000pt;}
._6_c00431{margin-left:-1.024000pt;}
._1_c00431{width:1.152000pt;}
._a_c00431{width:2.201600pt;}
._9_c00431{width:3.846400pt;}
._b_c00431{width:5.209600pt;}
._e_c00431{width:6.489600pt;}
._d_c00431{width:7.379200pt;}
._c_c00431{width:9.036800pt;}
._12_c00431{width:10.707200pt;}
._14_c00431{width:11.622400pt;}
._f_c00431{width:12.678400pt;}
._10_c00431{width:13.881600pt;}
._15_c00431{width:14.924800pt;}
._11_c00431{width:16.902400pt;}
._17_c00431{width:18.438400pt;}
._18_c00431{width:19.782400pt;}
._19_c00431{width:20.716800pt;}
._16_c00431{width:21.638400pt;}
._1a_c00431{width:23.347200pt;}
._1d_c00431{width:24.281600pt;}
._1b_c00431{width:25.356800pt;}
._1c_c00431{width:26.688000pt;}
._1f_c00431{width:27.801600pt;}
._5_c00431{width:29.120000pt;}
._2_c00431{width:30.656000pt;}
._0_c00431{width:31.808000pt;}
._7_c00431{width:32.768000pt;}
._4_c00431{width:33.792000pt;}
.fs1_c00431{font-size:53.333333pt;}
.fs0_c00431{font-size:64.000000pt;}
.y0_c00431{bottom:0.000000pt;}
.y2a_c00431{bottom:62.666667pt;}
.y28_c00431{bottom:118.666667pt;}
.y27_c00431{bottom:137.333333pt;}
.y26_c00431{bottom:156.000000pt;}
.y25_c00431{bottom:196.000000pt;}
.y24_c00431{bottom:214.666667pt;}
.y23_c00431{bottom:254.666667pt;}
.y22_c00431{bottom:277.333333pt;}
.y21_c00431{bottom:318.666667pt;}
.y20_c00431{bottom:358.666667pt;}
.y1f_c00431{bottom:414.666667pt;}
.y1e_c00431{bottom:433.333333pt;}
.y1d_c00431{bottom:452.000000pt;}
.y1c_c00431{bottom:470.666667pt;}
.y1b_c00431{bottom:489.333333pt;}
.y1a_c00431{bottom:508.000000pt;}
.y19_c00431{bottom:526.666667pt;}
.y18_c00431{bottom:545.333333pt;}
.y17_c00431{bottom:564.000000pt;}
.y16_c00431{bottom:582.666667pt;}
.y15_c00431{bottom:601.333333pt;}
.y14_c00431{bottom:620.000000pt;}
.y13_c00431{bottom:638.666667pt;}
.y12_c00431{bottom:657.333333pt;}
.y11_c00431{bottom:676.000000pt;}
.y10_c00431{bottom:694.666667pt;}
.yf_c00431{bottom:713.333333pt;}
.ye_c00431{bottom:732.000000pt;}
.yd_c00431{bottom:750.666667pt;}
.yc_c00431{bottom:769.333333pt;}
.yb_c00431{bottom:788.000000pt;}
.ya_c00431{bottom:806.666667pt;}
.y9_c00431{bottom:825.333333pt;}
.y8_c00431{bottom:844.000000pt;}
.y7_c00431{bottom:862.666667pt;}
.y6_c00431{bottom:881.333333pt;}
.y5_c00431{bottom:900.000000pt;}
.y4_c00431{bottom:918.666667pt;}
.y3_c00431{bottom:937.333333pt;}
.y2_c00431{bottom:956.000000pt;}
.y1_c00431{bottom:974.666667pt;}
.y29_c00431{bottom:1061.333333pt;}
.h3_c00431{height:38.072917pt;}
.h5_c00431{height:39.296875pt;}
.h2_c00431{height:46.437500pt;}
.h1_c00431{height:46.593750pt;}
.h4_c00431{height:49.843750pt;}
.h0_c00431{height:1122.666667pt;}
.w0_c00431{width:793.333333pt;}
.x0_c00431{left:0.000000pt;}
.x1_c00431{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2990514c3079d909f2cc4712.woff2')format("woff");}.ff1_c00432{font-family:ff1_c00432;line-height:1.010254;font-style:normal;font-weight:normal;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_dd4d3f8ea47ce72052c62c9e.woff2')format("woff");}.ff2_c00432{font-family:ff2_c00432;line-height:0.986816;font-style:normal;font-weight:normal;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_ff58bf49b0cb9ffd7393da86.woff2')format("woff");}.ff3_c00432{font-family:ff3_c00432;line-height:0.932129;font-style:normal;font-weight:normal;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_fc68fd3f57ae2ce8ebb9a799.woff2')format("woff");}.ff4_c00432{font-family:ff4_c00432;line-height:0.925293;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00432;src:url('chunks/assets/font_da10cce9ebbc5a223a50723c.woff2')format("woff");}.ff5_c00432{font-family:ff5_c00432;line-height:1.155762;font-style: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;}
.ls6_c00432{letter-spacing:-0.014400px;}
.ls5_c00432{letter-spacing:0.000000px;}
.ls4_c00432{letter-spacing:0.012000px;}
.ls3_c00432{letter-spacing:0.446400px;}
.ls2_c00432{letter-spacing:0.460800px;}
.ls1_c00432{letter-spacing:0.475200px;}
.ls0_c00432{letter-spacing:2.188800px;}
.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;}
}
.ws2_c00432{word-spacing:-20.275200px;}
.ws4_c00432{word-spacing:-20.260800px;}
.ws1_c00432{word-spacing:-19.800000px;}
.ws3_c00432{word-spacing:-0.547200px;}
.ws5_c00432{word-spacing:-0.532800px;}
.ws0_c00432{word-spacing:-0.072000px;}
.ws6_c00432{word-spacing:0.000000px;}
._1f_c00432{margin-left:-14.932800px;}
._22_c00432{margin-left:-11.892000px;}
._23_c00432{margin-left:-6.256800px;}
._1b_c00432{margin-left:-4.960800px;}
._7_c00432{margin-left:-3.909600px;}
._5_c00432{margin-left:-2.635200px;}
._0_c00432{margin-left:-1.296000px;}
._2_c00432{width:1.382400px;}
._a_c00432{width:2.973600px;}
._4_c00432{width:4.003200px;}
._b_c00432{width:5.140800px;}
._3_c00432{width:6.746400px;}
._9_c00432{width:8.143200px;}
._1_c00432{width:9.381600px;}
._6_c00432{width:10.893600px;}
._8_c00432{width:12.038400px;}
._13_c00432{width:13.276800px;}
._f_c00432{width:14.299200px;}
._e_c00432{width:15.458400px;}
._14_c00432{width:16.977600px;}
._1c_c00432{width:19.000800px;}
._c_c00432{width:20.469600px;}
._d_c00432{width:21.708000px;}
._10_c00432{width:22.939200px;}
._16_c00432{width:24.048000px;}
._11_c00432{width:25.488000px;}
._12_c00432{width:26.863200px;}
._15_c00432{width:28.000800px;}
._18_c00432{width:29.484000px;}
._1e_c00432{width:30.499200px;}
._17_c00432{width:31.744800px;}
._1a_c00432{width:32.990400px;}
._21_c00432{width:34.250400px;}
._19_c00432{width:35.280000px;}
._1d_c00432{width:37.540800px;}
._20_c00432{width:40.195800px;}
.fc0_c00432{color:rgb(0,0,0);}
.fs1_c00432{font-size:60.000000px;}
.fs0_c00432{font-size:72.000000px;}
.y0_c00432{bottom:0.000000px;}
.y2d_c00432{bottom:70.500000px;}
.y2b_c00432{bottom:193.500000px;}
.y2a_c00432{bottom:216.000000px;}
.y29_c00432{bottom:238.500000px;}
.y28_c00432{bottom:261.000000px;}
.y27_c00432{bottom:283.500000px;}
.y26_c00432{bottom:306.000000px;}
.y25_c00432{bottom:328.500000px;}
.y24_c00432{bottom:351.000000px;}
.y23_c00432{bottom:373.500000px;}
.y22_c00432{bottom:396.000000px;}
.y21_c00432{bottom:418.500000px;}
.y20_c00432{bottom:441.000000px;}
.y1f_c00432{bottom:465.000000px;}
.y1e_c00432{bottom:487.500000px;}
.y1d_c00432{bottom:508.500000px;}
.y1c_c00432{bottom:529.500000px;}
.y1b_c00432{bottom:550.500000px;}
.y1a_c00432{bottom:571.500000px;}
.y19_c00432{bottom:592.500000px;}
.y18_c00432{bottom:613.500000px;}
.y17_c00432{bottom:634.500000px;}
.y16_c00432{bottom:655.500000px;}
.y15_c00432{bottom:676.500000px;}
.y14_c00432{bottom:697.500000px;}
.y13_c00432{bottom:718.500000px;}
.y12_c00432{bottom:739.500000px;}
.y11_c00432{bottom:760.500000px;}
.y10_c00432{bottom:781.500000px;}
.yf_c00432{bottom:802.500000px;}
.ye_c00432{bottom:823.500000px;}
.yd_c00432{bottom:844.500000px;}
.yc_c00432{bottom:865.500000px;}
.yb_c00432{bottom:886.500000px;}
.ya_c00432{bottom:907.500000px;}
.y9_c00432{bottom:928.500000px;}
.y8_c00432{bottom:949.500000px;}
.y7_c00432{bottom:970.500000px;}
.y6_c00432{bottom:991.500000px;}
.y5_c00432{bottom:1012.500000px;}
.y4_c00432{bottom:1033.500000px;}
.y3_c00432{bottom:1054.500000px;}
.y2_c00432{bottom:1075.500000px;}
.y1_c00432{bottom:1096.500000px;}
.y2c_c00432{bottom:1194.000000px;}
.h2_c00432{height:51.257812px;}
.h1_c00432{height:52.417969px;}
.h3_c00432{height:56.074219px;}
.h0_c00432{height:1263.000000px;}
.w0_c00432{width:892.500000px;}
.x0_c00432{left:0.000000px;}
.x1_c00432{left:150.519750px;}
.x2_c00432{left:416.782800px;}
.x3_c00432{left:801.992850px;}
@media print{
.v0_c00432{vertical-align:0.000000pt;}
.ls6_c00432{letter-spacing:-0.012800pt;}
.ls5_c00432{letter-spacing:0.000000pt;}
.ls4_c00432{letter-spacing:0.010667pt;}
.ls3_c00432{letter-spacing:0.396800pt;}
.ls2_c00432{letter-spacing:0.409600pt;}
.ls1_c00432{letter-spacing:0.422400pt;}
.ls0_c00432{letter-spacing:1.945600pt;}
.ws2_c00432{word-spacing:-18.022400pt;}
.ws4_c00432{word-spacing:-18.009600pt;}
.ws1_c00432{word-spacing:-17.600000pt;}
.ws3_c00432{word-spacing:-0.486400pt;}
.ws5_c00432{word-spacing:-0.473600pt;}
.ws0_c00432{word-spacing:-0.064000pt;}
.ws6_c00432{word-spacing:0.000000pt;}
._1f_c00432{margin-left:-13.273600pt;}
._22_c00432{margin-left:-10.570667pt;}
._23_c00432{margin-left:-5.561600pt;}
._1b_c00432{margin-left:-4.409600pt;}
._7_c00432{margin-left:-3.475200pt;}
._5_c00432{margin-left:-2.342400pt;}
._0_c00432{margin-left:-1.152000pt;}
._2_c00432{width:1.228800pt;}
._a_c00432{width:2.643200pt;}
._4_c00432{width:3.558400pt;}
._b_c00432{width:4.569600pt;}
._3_c00432{width:5.996800pt;}
._9_c00432{width:7.238400pt;}
._1_c00432{width:8.339200pt;}
._6_c00432{width:9.683200pt;}
._8_c00432{width:10.700800pt;}
._13_c00432{width:11.801600pt;}
._f_c00432{width:12.710400pt;}
._e_c00432{width:13.740800pt;}
._14_c00432{width:15.091200pt;}
._1c_c00432{width:16.889600pt;}
._c_c00432{width:18.195200pt;}
._d_c00432{width:19.296000pt;}
._10_c00432{width:20.390400pt;}
._16_c00432{width:21.376000pt;}
._11_c00432{width:22.656000pt;}
._12_c00432{width:23.878400pt;}
._15_c00432{width:24.889600pt;}
._18_c00432{width:26.208000pt;}
._1e_c00432{width:27.110400pt;}
._17_c00432{width:28.217600pt;}
._1a_c00432{width:29.324800pt;}
._21_c00432{width:30.444800pt;}
._19_c00432{width:31.360000pt;}
._1d_c00432{width:33.369600pt;}
._20_c00432{width:35.729600pt;}
.fs1_c00432{font-size:53.333333pt;}
.fs0_c00432{font-size:64.000000pt;}
.y0_c00432{bottom:0.000000pt;}
.y2d_c00432{bottom:62.666667pt;}
.y2b_c00432{bottom:172.000000pt;}
.y2a_c00432{bottom:192.000000pt;}
.y29_c00432{bottom:212.000000pt;}
.y28_c00432{bottom:232.000000pt;}
.y27_c00432{bottom:252.000000pt;}
.y26_c00432{bottom:272.000000pt;}
.y25_c00432{bottom:292.000000pt;}
.y24_c00432{bottom:312.000000pt;}
.y23_c00432{bottom:332.000000pt;}
.y22_c00432{bottom:352.000000pt;}
.y21_c00432{bottom:372.000000pt;}
.y20_c00432{bottom:392.000000pt;}
.y1f_c00432{bottom:413.333333pt;}
.y1e_c00432{bottom:433.333333pt;}
.y1d_c00432{bottom:452.000000pt;}
.y1c_c00432{bottom:470.666667pt;}
.y1b_c00432{bottom:489.333333pt;}
.y1a_c00432{bottom:508.000000pt;}
.y19_c00432{bottom:526.666667pt;}
.y18_c00432{bottom:545.333333pt;}
.y17_c00432{bottom:564.000000pt;}
.y16_c00432{bottom:582.666667pt;}
.y15_c00432{bottom:601.333333pt;}
.y14_c00432{bottom:620.000000pt;}
.y13_c00432{bottom:638.666667pt;}
.y12_c00432{bottom:657.333333pt;}
.y11_c00432{bottom:676.000000pt;}
.y10_c00432{bottom:694.666667pt;}
.yf_c00432{bottom:713.333333pt;}
.ye_c00432{bottom:732.000000pt;}
.yd_c00432{bottom:750.666667pt;}
.yc_c00432{bottom:769.333333pt;}
.yb_c00432{bottom:788.000000pt;}
.ya_c00432{bottom:806.666667pt;}
.y9_c00432{bottom:825.333333pt;}
.y8_c00432{bottom:844.000000pt;}
.y7_c00432{bottom:862.666667pt;}
.y6_c00432{bottom:881.333333pt;}
.y5_c00432{bottom:900.000000pt;}
.y4_c00432{bottom:918.666667pt;}
.y3_c00432{bottom:937.333333pt;}
.y2_c00432{bottom:956.000000pt;}
.y1_c00432{bottom:974.666667pt;}
.y2c_c00432{bottom:1061.333333pt;}
.h2_c00432{height:45.562500pt;}
.h1_c00432{height:46.593750pt;}
.h3_c00432{height:49.843750pt;}
.h0_c00432{height:1122.666667pt;}
.w0_c00432{width:793.333333pt;}
.x0_c00432{left:0.000000pt;}
.x1_c00432{left:133.795333pt;}
.x2_c00432{left:370.473600pt;}
.x3_c00432{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c957fb99fdfd2bc63f719439.woff2')format("woff");}.ff1_c00433{font-family:ff1_c00433;line-height:0.932129;font-style:normal;font-weight:normal;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_350088009c9aa666f5ec782f.woff2')format("woff");}.ff2_c00433{font-family:ff2_c00433;line-height:0.934082;font-style:normal;font-weight:normal;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_0269a8c70bdc5e03f7af5c1f.woff2')format("woff");}.ff3_c00433{font-family:ff3_c00433;line-height:0.882812;font-style:normal;font-weight:normal;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_78979eef986199f88e1d1639.woff2')format("woff");}.ff4_c00433{font-family:ff4_c00433;line-height:1.010254;font-style:normal;font-weight:normal;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_71097d5cf2f3dccd84beb53a.woff2')format("woff");}.ff5_c00433{font-family:ff5_c00433;line-height:0.755859;font-style:normal;font-weight: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_c00433;src:url('chunks/assets/font_059aaf7432477207d55a8b39.woff2')format("woff");}.ff6_c00433{font-family:ff6_c00433;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00433{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00433{vertical-align:0.000000px;}
.ls3_c00433{letter-spacing:0.000000px;}
.ls0_c00433{letter-spacing:0.012000px;}
.ls2_c00433{letter-spacing:1.533600px;}
.ls1_c00433{letter-spacing:1.929600px;}
.sc__c00433{text-shadow:none;}
.sc0_c00433{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00433{-webkit-text-stroke:0px transparent;}
.sc0_c00433{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00433{word-spacing:-19.800000px;}
.ws1_c00433{word-spacing:0.000000px;}
._0_c00433{margin-left:-10.584000px;}
._5_c00433{margin-left:-5.097600px;}
._1_c00433{margin-left:-3.938400px;}
._a_c00433{margin-left:-2.275200px;}
._2_c00433{margin-left:-1.267200px;}
._3_c00433{width:1.440000px;}
._7_c00433{width:3.045600px;}
._12_c00433{width:4.118400px;}
._b_c00433{width:5.248800px;}
._f_c00433{width:6.804000px;}
._1b_c00433{width:8.071200px;}
._d_c00433{width:9.316800px;}
._10_c00433{width:10.569600px;}
._e_c00433{width:12.297600px;}
._c_c00433{width:14.018400px;}
._8_c00433{width:15.393600px;}
._4_c00433{width:16.977600px;}
._9_c00433{width:18.432000px;}
._11_c00433{width:20.282400px;}
._16_c00433{width:22.204800px;}
._6_c00433{width:23.500800px;}
._17_c00433{width:24.832800px;}
._1a_c00433{width:26.107200px;}
._1c_c00433{width:27.640800px;}
._18_c00433{width:29.044800px;}
._1d_c00433{width:30.650400px;}
._14_c00433{width:33.163200px;}
._19_c00433{width:35.100000px;}
._15_c00433{width:36.129600px;}
._13_c00433{width:38.145600px;}
.fc0_c00433{color:rgb(0,0,0);}
.fs1_c00433{font-size:60.000000px;}
.fs0_c00433{font-size:72.000000px;}
.y0_c00433{bottom:0.000000px;}
.y2b_c00433{bottom:70.500000px;}
.y29_c00433{bottom:145.500000px;}
.y28_c00433{bottom:166.500000px;}
.y27_c00433{bottom:187.500000px;}
.y26_c00433{bottom:208.500000px;}
.y25_c00433{bottom:229.500000px;}
.y24_c00433{bottom:250.500000px;}
.y23_c00433{bottom:271.500000px;}
.y22_c00433{bottom:292.500000px;}
.y21_c00433{bottom:313.500000px;}
.y20_c00433{bottom:334.500000px;}
.y1f_c00433{bottom:355.500000px;}
.y1e_c00433{bottom:376.500000px;}
.y1d_c00433{bottom:397.500000px;}
.y1c_c00433{bottom:418.500000px;}
.y1b_c00433{bottom:439.500000px;}
.y1a_c00433{bottom:460.500000px;}
.y19_c00433{bottom:481.500000px;}
.y18_c00433{bottom:502.500000px;}
.y17_c00433{bottom:523.500000px;}
.y16_c00433{bottom:544.500000px;}
.y15_c00433{bottom:565.500000px;}
.y14_c00433{bottom:586.500000px;}
.y13_c00433{bottom:607.500000px;}
.y12_c00433{bottom:628.500000px;}
.y11_c00433{bottom:649.500000px;}
.y10_c00433{bottom:670.500000px;}
.yf_c00433{bottom:691.500000px;}
.ye_c00433{bottom:712.500000px;}
.yd_c00433{bottom:733.500000px;}
.yc_c00433{bottom:754.500000px;}
.yb_c00433{bottom:775.500000px;}
.ya_c00433{bottom:796.500000px;}
.y9_c00433{bottom:817.500000px;}
.y8_c00433{bottom:838.500000px;}
.y7_c00433{bottom:859.500000px;}
.y6_c00433{bottom:903.000000px;}
.y5_c00433{bottom:924.000000px;}
.y4_c00433{bottom:964.500000px;}
.y3_c00433{bottom:987.000000px;}
.y2_c00433{bottom:1032.000000px;}
.y1_c00433{bottom:1077.000000px;}
.y2a_c00433{bottom:1194.000000px;}
.h3_c00433{height:42.832031px;}
.h6_c00433{height:44.208984px;}
.h1_c00433{height:51.257812px;}
.h2_c00433{height:51.398438px;}
.h4_c00433{height:52.417969px;}
.h5_c00433{height:56.074219px;}
.h0_c00433{height:1263.000000px;}
.w0_c00433{width:892.500000px;}
.x0_c00433{left:0.000000px;}
.x1_c00433{left:65.480310px;}
@media print{
.v0_c00433{vertical-align:0.000000pt;}
.ls3_c00433{letter-spacing:0.000000pt;}
.ls0_c00433{letter-spacing:0.010667pt;}
.ls2_c00433{letter-spacing:1.363200pt;}
.ls1_c00433{letter-spacing:1.715200pt;}
.ws0_c00433{word-spacing:-17.600000pt;}
.ws1_c00433{word-spacing:0.000000pt;}
._0_c00433{margin-left:-9.408000pt;}
._5_c00433{margin-left:-4.531200pt;}
._1_c00433{margin-left:-3.500800pt;}
._a_c00433{margin-left:-2.022400pt;}
._2_c00433{margin-left:-1.126400pt;}
._3_c00433{width:1.280000pt;}
._7_c00433{width:2.707200pt;}
._12_c00433{width:3.660800pt;}
._b_c00433{width:4.665600pt;}
._f_c00433{width:6.048000pt;}
._1b_c00433{width:7.174400pt;}
._d_c00433{width:8.281600pt;}
._10_c00433{width:9.395200pt;}
._e_c00433{width:10.931200pt;}
._c_c00433{width:12.460800pt;}
._8_c00433{width:13.683200pt;}
._4_c00433{width:15.091200pt;}
._9_c00433{width:16.384000pt;}
._11_c00433{width:18.028800pt;}
._16_c00433{width:19.737600pt;}
._6_c00433{width:20.889600pt;}
._17_c00433{width:22.073600pt;}
._1a_c00433{width:23.206400pt;}
._1c_c00433{width:24.569600pt;}
._18_c00433{width:25.817600pt;}
._1d_c00433{width:27.244800pt;}
._14_c00433{width:29.478400pt;}
._19_c00433{width:31.200000pt;}
._15_c00433{width:32.115200pt;}
._13_c00433{width:33.907200pt;}
.fs1_c00433{font-size:53.333333pt;}
.fs0_c00433{font-size:64.000000pt;}
.y0_c00433{bottom:0.000000pt;}
.y2b_c00433{bottom:62.666667pt;}
.y29_c00433{bottom:129.333333pt;}
.y28_c00433{bottom:148.000000pt;}
.y27_c00433{bottom:166.666667pt;}
.y26_c00433{bottom:185.333333pt;}
.y25_c00433{bottom:204.000000pt;}
.y24_c00433{bottom:222.666667pt;}
.y23_c00433{bottom:241.333333pt;}
.y22_c00433{bottom:260.000000pt;}
.y21_c00433{bottom:278.666667pt;}
.y20_c00433{bottom:297.333333pt;}
.y1f_c00433{bottom:316.000000pt;}
.y1e_c00433{bottom:334.666667pt;}
.y1d_c00433{bottom:353.333333pt;}
.y1c_c00433{bottom:372.000000pt;}
.y1b_c00433{bottom:390.666667pt;}
.y1a_c00433{bottom:409.333333pt;}
.y19_c00433{bottom:428.000000pt;}
.y18_c00433{bottom:446.666667pt;}
.y17_c00433{bottom:465.333333pt;}
.y16_c00433{bottom:484.000000pt;}
.y15_c00433{bottom:502.666667pt;}
.y14_c00433{bottom:521.333333pt;}
.y13_c00433{bottom:540.000000pt;}
.y12_c00433{bottom:558.666667pt;}
.y11_c00433{bottom:577.333333pt;}
.y10_c00433{bottom:596.000000pt;}
.yf_c00433{bottom:614.666667pt;}
.ye_c00433{bottom:633.333333pt;}
.yd_c00433{bottom:652.000000pt;}
.yc_c00433{bottom:670.666667pt;}
.yb_c00433{bottom:689.333333pt;}
.ya_c00433{bottom:708.000000pt;}
.y9_c00433{bottom:726.666667pt;}
.y8_c00433{bottom:745.333333pt;}
.y7_c00433{bottom:764.000000pt;}
.y6_c00433{bottom:802.666667pt;}
.y5_c00433{bottom:821.333333pt;}
.y4_c00433{bottom:857.333333pt;}
.y3_c00433{bottom:877.333333pt;}
.y2_c00433{bottom:917.333333pt;}
.y1_c00433{bottom:957.333333pt;}
.y2a_c00433{bottom:1061.333333pt;}
.h3_c00433{height:38.072917pt;}
.h6_c00433{height:39.296875pt;}
.h1_c00433{height:45.562500pt;}
.h2_c00433{height:45.687500pt;}
.h4_c00433{height:46.593750pt;}
.h5_c00433{height:49.843750pt;}
.h0_c00433{height:1122.666667pt;}
.w0_c00433{width:793.333333pt;}
.x0_c00433{left:0.000000pt;}
.x1_c00433{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fa4e21a6b1ccef1ac1baff8c.woff2')format("woff");}.ff1_c00434{font-family:ff1_c00434;line-height:1.010254;font-style:normal;font-weight:normal;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_91d4a1d549fa87785bb5cbd0.woff2')format("woff");}.ff2_c00434{font-family:ff2_c00434;line-height:0.986816;font-style:normal;font-weight:normal;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_ac02c5bb7a5995c1b0a3abf0.woff2')format("woff");}.ff3_c00434{font-family:ff3_c00434;line-height:1.155762;font-style: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;}
.ls3_c00434{letter-spacing:0.012000px;}
.ls0_c00434{letter-spacing:0.345600px;}
.ls2_c00434{letter-spacing:0.612000px;}
.ls1_c00434{letter-spacing:1.267200px;}
.sc__c00434{text-shadow:none;}
.sc0_c00434{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00434{-webkit-text-stroke:0px transparent;}
.sc0_c00434{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00434{word-spacing:-18.000000px;}
.ws1_c00434{word-spacing:-0.072000px;}
.ws2_c00434{word-spacing:0.000000px;}
._1f_c00434{margin-left:-9.360000px;}
._1e_c00434{margin-left:-7.408800px;}
._a_c00434{margin-left:-5.176800px;}
._1c_c00434{margin-left:-4.032000px;}
._2_c00434{margin-left:-2.995200px;}
._4_c00434{margin-left:-1.065600px;}
._9_c00434{width:1.260000px;}
._1_c00434{width:2.685600px;}
._0_c00434{width:4.600800px;}
._5_c00434{width:5.702400px;}
._3_c00434{width:6.912000px;}
._f_c00434{width:8.359200px;}
._b_c00434{width:9.943200px;}
._d_c00434{width:11.124000px;}
._e_c00434{width:12.398400px;}
._c_c00434{width:14.256000px;}
._16_c00434{width:16.178400px;}
._1b_c00434{width:19.396800px;}
._7_c00434{width:20.570400px;}
._17_c00434{width:22.233600px;}
._6_c00434{width:23.248800px;}
._1d_c00434{width:25.012800px;}
._8_c00434{width:26.949600px;}
._19_c00434{width:28.281600px;}
._1a_c00434{width:29.527200px;}
._18_c00434{width:30.945600px;}
._10_c00434{width:32.032800px;}
._11_c00434{width:33.379200px;}
._13_c00434{width:35.150400px;}
._14_c00434{width:36.489600px;}
._12_c00434{width:37.720800px;}
._15_c00434{width:39.765600px;}
.fc0_c00434{color:rgb(0,0,0);}
.fs1_c00434{font-size:60.000000px;}
.fs0_c00434{font-size:72.000000px;}
.y0_c00434{bottom:0.000000px;}
.y2e_c00434{bottom:70.500000px;}
.y2c_c00434{bottom:171.000000px;}
.y2b_c00434{bottom:192.000000px;}
.y2a_c00434{bottom:213.000000px;}
.y29_c00434{bottom:234.000000px;}
.y28_c00434{bottom:255.000000px;}
.y27_c00434{bottom:276.000000px;}
.y26_c00434{bottom:297.000000px;}
.y25_c00434{bottom:340.500000px;}
.y24_c00434{bottom:361.500000px;}
.y23_c00434{bottom:382.500000px;}
.y22_c00434{bottom:403.500000px;}
.y21_c00434{bottom:424.500000px;}
.y20_c00434{bottom:445.500000px;}
.y1f_c00434{bottom:466.500000px;}
.y1e_c00434{bottom:487.500000px;}
.y1d_c00434{bottom:508.500000px;}
.y1c_c00434{bottom:529.500000px;}
.y1b_c00434{bottom:550.500000px;}
.y1a_c00434{bottom:571.500000px;}
.y19_c00434{bottom:592.500000px;}
.y18_c00434{bottom:613.500000px;}
.y17_c00434{bottom:634.500000px;}
.y16_c00434{bottom:655.500000px;}
.y15_c00434{bottom:676.500000px;}
.y14_c00434{bottom:697.500000px;}
.y13_c00434{bottom:718.500000px;}
.y12_c00434{bottom:739.500000px;}
.y11_c00434{bottom:760.500000px;}
.y10_c00434{bottom:781.500000px;}
.yf_c00434{bottom:802.500000px;}
.ye_c00434{bottom:823.500000px;}
.yd_c00434{bottom:844.500000px;}
.yc_c00434{bottom:865.500000px;}
.yb_c00434{bottom:886.500000px;}
.ya_c00434{bottom:907.500000px;}
.y9_c00434{bottom:928.500000px;}
.y8_c00434{bottom:949.500000px;}
.y7_c00434{bottom:970.500000px;}
.y6_c00434{bottom:991.500000px;}
.y5_c00434{bottom:1012.500000px;}
.y4_c00434{bottom:1033.500000px;}
.y3_c00434{bottom:1054.500000px;}
.y2_c00434{bottom:1075.500000px;}
.y1_c00434{bottom:1096.500000px;}
.y2d_c00434{bottom:1194.000000px;}
.h1_c00434{height:52.417969px;}
.h2_c00434{height:56.074219px;}
.h0_c00434{height:1263.000000px;}
.w0_c00434{width:892.500000px;}
.x0_c00434{left:0.000000px;}
.x1_c00434{left:150.519750px;}
.x2_c00434{left:416.782800px;}
.x3_c00434{left:801.992850px;}
@media print{
.v0_c00434{vertical-align:0.000000pt;}
.ls4_c00434{letter-spacing:0.000000pt;}
.ls3_c00434{letter-spacing:0.010667pt;}
.ls0_c00434{letter-spacing:0.307200pt;}
.ls2_c00434{letter-spacing:0.544000pt;}
.ls1_c00434{letter-spacing:1.126400pt;}
.ws0_c00434{word-spacing:-16.000000pt;}
.ws1_c00434{word-spacing:-0.064000pt;}
.ws2_c00434{word-spacing:0.000000pt;}
._1f_c00434{margin-left:-8.320000pt;}
._1e_c00434{margin-left:-6.585600pt;}
._a_c00434{margin-left:-4.601600pt;}
._1c_c00434{margin-left:-3.584000pt;}
._2_c00434{margin-left:-2.662400pt;}
._4_c00434{margin-left:-0.947200pt;}
._9_c00434{width:1.120000pt;}
._1_c00434{width:2.387200pt;}
._0_c00434{width:4.089600pt;}
._5_c00434{width:5.068800pt;}
._3_c00434{width:6.144000pt;}
._f_c00434{width:7.430400pt;}
._b_c00434{width:8.838400pt;}
._d_c00434{width:9.888000pt;}
._e_c00434{width:11.020800pt;}
._c_c00434{width:12.672000pt;}
._16_c00434{width:14.380800pt;}
._1b_c00434{width:17.241600pt;}
._7_c00434{width:18.284800pt;}
._17_c00434{width:19.763200pt;}
._6_c00434{width:20.665600pt;}
._1d_c00434{width:22.233600pt;}
._8_c00434{width:23.955200pt;}
._19_c00434{width:25.139200pt;}
._1a_c00434{width:26.246400pt;}
._18_c00434{width:27.507200pt;}
._10_c00434{width:28.473600pt;}
._11_c00434{width:29.670400pt;}
._13_c00434{width:31.244800pt;}
._14_c00434{width:32.435200pt;}
._12_c00434{width:33.529600pt;}
._15_c00434{width:35.347200pt;}
.fs1_c00434{font-size:53.333333pt;}
.fs0_c00434{font-size:64.000000pt;}
.y0_c00434{bottom:0.000000pt;}
.y2e_c00434{bottom:62.666667pt;}
.y2c_c00434{bottom:152.000000pt;}
.y2b_c00434{bottom:170.666667pt;}
.y2a_c00434{bottom:189.333333pt;}
.y29_c00434{bottom:208.000000pt;}
.y28_c00434{bottom:226.666667pt;}
.y27_c00434{bottom:245.333333pt;}
.y26_c00434{bottom:264.000000pt;}
.y25_c00434{bottom:302.666667pt;}
.y24_c00434{bottom:321.333333pt;}
.y23_c00434{bottom:340.000000pt;}
.y22_c00434{bottom:358.666667pt;}
.y21_c00434{bottom:377.333333pt;}
.y20_c00434{bottom:396.000000pt;}
.y1f_c00434{bottom:414.666667pt;}
.y1e_c00434{bottom:433.333333pt;}
.y1d_c00434{bottom:452.000000pt;}
.y1c_c00434{bottom:470.666667pt;}
.y1b_c00434{bottom:489.333333pt;}
.y1a_c00434{bottom:508.000000pt;}
.y19_c00434{bottom:526.666667pt;}
.y18_c00434{bottom:545.333333pt;}
.y17_c00434{bottom:564.000000pt;}
.y16_c00434{bottom:582.666667pt;}
.y15_c00434{bottom:601.333333pt;}
.y14_c00434{bottom:620.000000pt;}
.y13_c00434{bottom:638.666667pt;}
.y12_c00434{bottom:657.333333pt;}
.y11_c00434{bottom:676.000000pt;}
.y10_c00434{bottom:694.666667pt;}
.yf_c00434{bottom:713.333333pt;}
.ye_c00434{bottom:732.000000pt;}
.yd_c00434{bottom:750.666667pt;}
.yc_c00434{bottom:769.333333pt;}
.yb_c00434{bottom:788.000000pt;}
.ya_c00434{bottom:806.666667pt;}
.y9_c00434{bottom:825.333333pt;}
.y8_c00434{bottom:844.000000pt;}
.y7_c00434{bottom:862.666667pt;}
.y6_c00434{bottom:881.333333pt;}
.y5_c00434{bottom:900.000000pt;}
.y4_c00434{bottom:918.666667pt;}
.y3_c00434{bottom:937.333333pt;}
.y2_c00434{bottom:956.000000pt;}
.y1_c00434{bottom:974.666667pt;}
.y2d_c00434{bottom:1061.333333pt;}
.h1_c00434{height:46.593750pt;}
.h2_c00434{height:49.843750pt;}
.h0_c00434{height:1122.666667pt;}
.w0_c00434{width:793.333333pt;}
.x0_c00434{left:0.000000pt;}
.x1_c00434{left:133.795333pt;}
.x2_c00434{left:370.473600pt;}
.x3_c00434{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e020e2b34ccdafce950de91e.woff2')format("woff");}.ff1_c00435{font-family:ff1_c00435;line-height:0.888672;font-style:normal;font-weight:normal;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_27f561d05c42c294063e0804.woff2')format("woff");}.ff2_c00435{font-family:ff2_c00435;line-height:0.934082;font-style:normal;font-weight:normal;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_3310273ee9cc487b1563a090.woff2')format("woff");}.ff3_c00435{font-family:ff3_c00435;line-height:0.882812;font-style:normal;font-weight:normal;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_80fa8121f9dcf636a624da9f.woff2')format("woff");}.ff4_c00435{font-family:ff4_c00435;line-height:1.010254;font-style:normal;font-weight:normal;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_dbe0a9920e161b7cea81b940.woff2')format("woff");}.ff5_c00435{font-family:ff5_c00435;line-height:0.755859;font-style:normal;font-weight: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_7fef725e1a7d4a457683e2fe.woff2')format("woff");}.ff6_c00435{font-family:ff6_c00435;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00435{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00435{vertical-align:0.000000px;}
.ls2_c00435{letter-spacing:-0.014400px;}
.ls1_c00435{letter-spacing:0.000000px;}
.ls0_c00435{letter-spacing:0.012000px;}
.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;}
}
.ws0_c00435{word-spacing:0.000000px;}
._10_c00435{margin-left:-9.727200px;}
._18_c00435{margin-left:-7.300800px;}
._0_c00435{margin-left:-6.264000px;}
._8_c00435{margin-left:-4.435200px;}
._f_c00435{margin-left:-2.908800px;}
._3_c00435{margin-left:-1.483200px;}
._1_c00435{width:1.944000px;}
._6_c00435{width:3.096000px;}
._c_c00435{width:4.140000px;}
._d_c00435{width:6.235200px;}
._7_c00435{width:7.236000px;}
._2_c00435{width:8.445600px;}
._5_c00435{width:10.353600px;}
._4_c00435{width:11.858400px;}
._e_c00435{width:13.788000px;}
._9_c00435{width:14.796000px;}
._a_c00435{width:16.135200px;}
._b_c00435{width:18.093600px;}
._15_c00435{width:19.144800px;}
._16_c00435{width:20.188800px;}
._17_c00435{width:21.499200px;}
._19_c00435{width:23.522400px;}
._11_c00435{width:24.710400px;}
._14_c00435{width:26.625600px;}
._12_c00435{width:27.626400px;}
._13_c00435{width:30.909600px;}
.fc0_c00435{color:rgb(0,0,0);}
.fs1_c00435{font-size:60.000000px;}
.fs0_c00435{font-size:72.000000px;}
.y0_c00435{bottom:0.000000px;}
.y1b_c00435{bottom:70.500000px;}
.y19_c00435{bottom:453.000000px;}
.y18_c00435{bottom:474.000000px;}
.y17_c00435{bottom:495.000000px;}
.y16_c00435{bottom:516.000000px;}
.y15_c00435{bottom:537.000000px;}
.y14_c00435{bottom:558.000000px;}
.y13_c00435{bottom:579.000000px;}
.y12_c00435{bottom:600.000000px;}
.y11_c00435{bottom:621.000000px;}
.y10_c00435{bottom:642.000000px;}
.yf_c00435{bottom:663.000000px;}
.ye_c00435{bottom:684.000000px;}
.yd_c00435{bottom:705.000000px;}
.yc_c00435{bottom:726.000000px;}
.yb_c00435{bottom:747.000000px;}
.ya_c00435{bottom:768.000000px;}
.y9_c00435{bottom:789.000000px;}
.y8_c00435{bottom:810.000000px;}
.y7_c00435{bottom:853.500000px;}
.y6_c00435{bottom:874.500000px;}
.y5_c00435{bottom:915.000000px;}
.y4_c00435{bottom:937.500000px;}
.y3_c00435{bottom:960.000000px;}
.y2_c00435{bottom:1005.000000px;}
.y1_c00435{bottom:1050.000000px;}
.y1a_c00435{bottom:1194.000000px;}
.h3_c00435{height:42.832031px;}
.h6_c00435{height:44.208984px;}
.h1_c00435{height:51.257812px;}
.h2_c00435{height:51.398438px;}
.h4_c00435{height:52.417969px;}
.h5_c00435{height:56.074219px;}
.h0_c00435{height:1263.000000px;}
.w0_c00435{width:892.500000px;}
.x0_c00435{left:0.000000px;}
.x1_c00435{left:65.480310px;}
@media print{
.v0_c00435{vertical-align:0.000000pt;}
.ls2_c00435{letter-spacing:-0.012800pt;}
.ls1_c00435{letter-spacing:0.000000pt;}
.ls0_c00435{letter-spacing:0.010667pt;}
.ws0_c00435{word-spacing:0.000000pt;}
._10_c00435{margin-left:-8.646400pt;}
._18_c00435{margin-left:-6.489600pt;}
._0_c00435{margin-left:-5.568000pt;}
._8_c00435{margin-left:-3.942400pt;}
._f_c00435{margin-left:-2.585600pt;}
._3_c00435{margin-left:-1.318400pt;}
._1_c00435{width:1.728000pt;}
._6_c00435{width:2.752000pt;}
._c_c00435{width:3.680000pt;}
._d_c00435{width:5.542400pt;}
._7_c00435{width:6.432000pt;}
._2_c00435{width:7.507200pt;}
._5_c00435{width:9.203200pt;}
._4_c00435{width:10.540800pt;}
._e_c00435{width:12.256000pt;}
._9_c00435{width:13.152000pt;}
._a_c00435{width:14.342400pt;}
._b_c00435{width:16.083200pt;}
._15_c00435{width:17.017600pt;}
._16_c00435{width:17.945600pt;}
._17_c00435{width:19.110400pt;}
._19_c00435{width:20.908800pt;}
._11_c00435{width:21.964800pt;}
._14_c00435{width:23.667200pt;}
._12_c00435{width:24.556800pt;}
._13_c00435{width:27.475200pt;}
.fs1_c00435{font-size:53.333333pt;}
.fs0_c00435{font-size:64.000000pt;}
.y0_c00435{bottom:0.000000pt;}
.y1b_c00435{bottom:62.666667pt;}
.y19_c00435{bottom:402.666667pt;}
.y18_c00435{bottom:421.333333pt;}
.y17_c00435{bottom:440.000000pt;}
.y16_c00435{bottom:458.666667pt;}
.y15_c00435{bottom:477.333333pt;}
.y14_c00435{bottom:496.000000pt;}
.y13_c00435{bottom:514.666667pt;}
.y12_c00435{bottom:533.333333pt;}
.y11_c00435{bottom:552.000000pt;}
.y10_c00435{bottom:570.666667pt;}
.yf_c00435{bottom:589.333333pt;}
.ye_c00435{bottom:608.000000pt;}
.yd_c00435{bottom:626.666667pt;}
.yc_c00435{bottom:645.333333pt;}
.yb_c00435{bottom:664.000000pt;}
.ya_c00435{bottom:682.666667pt;}
.y9_c00435{bottom:701.333333pt;}
.y8_c00435{bottom:720.000000pt;}
.y7_c00435{bottom:758.666667pt;}
.y6_c00435{bottom:777.333333pt;}
.y5_c00435{bottom:813.333333pt;}
.y4_c00435{bottom:833.333333pt;}
.y3_c00435{bottom:853.333333pt;}
.y2_c00435{bottom:893.333333pt;}
.y1_c00435{bottom:933.333333pt;}
.y1a_c00435{bottom:1061.333333pt;}
.h3_c00435{height:38.072917pt;}
.h6_c00435{height:39.296875pt;}
.h1_c00435{height:45.562500pt;}
.h2_c00435{height:45.687500pt;}
.h4_c00435{height:46.593750pt;}
.h5_c00435{height:49.843750pt;}
.h0_c00435{height:1122.666667pt;}
.w0_c00435{width:793.333333pt;}
.x0_c00435{left:0.000000pt;}
.x1_c00435{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_59ead3ab2cdb3a3a10a2f56e.woff2')format("woff");}.ff1_c00436{font-family:ff1_c00436;line-height:0.939453;font-style:normal;font-weight:normal;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_d2e071902e18b95ae984e88d.woff2')format("woff");}.ff2_c00436{font-family:ff2_c00436;line-height:1.163086;font-style:normal;font-weight:normal;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_2f993383ee265befcb65b42c.woff2')format("woff");}.ff3_c00436{font-family:ff3_c00436;line-height:0.888672;font-style:normal;font-weight:normal;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_c073d0566f5b33b05f821a58.woff2')format("woff");}.ff4_c00436{font-family:ff4_c00436;line-height:0.882812;font-style:normal;font-weight:normal;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_e23b220c9a73cf02d258689c.woff2')format("woff");}.ff5_c00436{font-family:ff5_c00436;line-height:1.155762;font-style:normal;font-weight: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_c00436;src:url('chunks/assets/font_d4c484a5e8a67126b2bfbc83.woff2')format("woff");}.ff6_c00436{font-family:ff6_c00436;line-height:0.673828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00436;src:url('chunks/assets/font_3ecac428e9c6c7018be0d55e.woff2')format("woff");}.ff7_c00436{font-family:ff7_c00436;line-height:0.901367;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00436;src:url('chunks/assets/font_6602cca26178bb1b92ce0df2.woff2')format("woff");}.ff8_c00436{font-family:ff8_c00436;line-height:0.812500;font-style: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);}
.v3_c00436{vertical-align:-33.000000px;}
.v2_c00436{vertical-align:-23.086200px;}
.v0_c00436{vertical-align:0.000000px;}
.v1_c00436{vertical-align:23.086200px;}
.ls5_c00436{letter-spacing:0.000000px;}
.ls1_c00436{letter-spacing:0.007200px;}
.ls0_c00436{letter-spacing:0.007800px;}
.ls4_c00436{letter-spacing:0.012000px;}
.ls2_c00436{letter-spacing:0.598800px;}
.ls3_c00436{letter-spacing:3.493200px;}
.sc__c00436{text-shadow:none;}
.sc0_c00436{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00436{-webkit-text-stroke:0px transparent;}
.sc0_c00436{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00436{word-spacing:-0.040000px;}
.ws1_c00436{word-spacing:0.000000px;}
._a_c00436{margin-left:-9.655200px;}
._13_c00436{margin-left:-7.164000px;}
._b_c00436{margin-left:-4.665600px;}
._9_c00436{margin-left:-3.456000px;}
._1_c00436{margin-left:-2.361600px;}
._0_c00436{margin-left:-1.130400px;}
._8_c00436{width:1.375200px;}
._3_c00436{width:2.505600px;}
._12_c00436{width:3.829200px;}
._6_c00436{width:5.306400px;}
._e_c00436{width:6.618000px;}
._c_c00436{width:7.761600px;}
._d_c00436{width:9.708000px;}
._10_c00436{width:11.044800px;}
._f_c00436{width:12.398400px;}
._7_c00436{width:14.169600px;}
._11_c00436{width:15.249600px;}
._4_c00436{width:16.797600px;}
._5_c00436{width:18.662400px;}
._2_c00436{width:22.233600px;}
.fc1_c00436{color:rgb(255,255,255);}
.fc0_c00436{color:rgb(0,0,0);}
.fs5_c00436{font-size:40.000002px;}
.fs2_c00436{font-size:48.000000px;}
.fs4_c00436{font-size:60.000000px;}
.fs1_c00436{font-size:72.000000px;}
.fs0_c00436{font-size:78.000000px;}
.fs3_c00436{font-size:96.000000px;}
.y0_c00436{bottom:0.000000px;}
.y18_c00436{bottom:67.500000px;}
.y1a_c00436{bottom:140.250000px;}
.y19_c00436{bottom:189.750000px;}
.y15_c00436{bottom:327.000000px;}
.y14_c00436{bottom:354.000000px;}
.y13_c00436{bottom:381.000000px;}
.y12_c00436{bottom:408.000000px;}
.y11_c00436{bottom:456.000000px;}
.y10_c00436{bottom:483.000000px;}
.yf_c00436{bottom:510.000000px;}
.ye_c00436{bottom:556.500000px;}
.yd_c00436{bottom:627.000000px;}
.yc_c00436{bottom:654.000000px;}
.yb_c00436{bottom:681.000000px;}
.ya_c00436{bottom:708.000000px;}
.y9_c00436{bottom:735.000000px;}
.y8_c00436{bottom:762.000000px;}
.y7_c00436{bottom:789.000000px;}
.y6_c00436{bottom:837.000000px;}
.y5_c00436{bottom:864.000000px;}
.y4_c00436{bottom:891.000000px;}
.y3_c00436{bottom:918.000000px;}
.y2_c00436{bottom:945.000000px;}
.y1_c00436{bottom:991.500000px;}
.y16_c00436{bottom:1066.500000px;}
.y17_c00436{bottom:1194.000000px;}
.h5_c00436{height:26.953126px;}
.h4_c00436{height:56.074219px;}
.h1_c00436{height:56.100586px;}
.h2_c00436{height:67.746094px;}
.h3_c00436{height:90.328125px;}
.h0_c00436{height:1263.000000px;}
.w0_c00436{width:892.500000px;}
.x0_c00436{left:0.000000px;}
.x1_c00436{left:150.519750px;}
.x2_c00436{left:180.298875px;}
.x3_c00436{left:416.782800px;}
.x4_c00436{left:801.992850px;}
@media print{
.v3_c00436{vertical-align:-29.333333pt;}
.v2_c00436{vertical-align:-20.521067pt;}
.v0_c00436{vertical-align:0.000000pt;}
.v1_c00436{vertical-align:20.521067pt;}
.ls5_c00436{letter-spacing:0.000000pt;}
.ls1_c00436{letter-spacing:0.006400pt;}
.ls0_c00436{letter-spacing:0.006933pt;}
.ls4_c00436{letter-spacing:0.010667pt;}
.ls2_c00436{letter-spacing:0.532267pt;}
.ls3_c00436{letter-spacing:3.105067pt;}
.ws0_c00436{word-spacing:-0.035556pt;}
.ws1_c00436{word-spacing:0.000000pt;}
._a_c00436{margin-left:-8.582400pt;}
._13_c00436{margin-left:-6.368000pt;}
._b_c00436{margin-left:-4.147200pt;}
._9_c00436{margin-left:-3.072000pt;}
._1_c00436{margin-left:-2.099200pt;}
._0_c00436{margin-left:-1.004800pt;}
._8_c00436{width:1.222400pt;}
._3_c00436{width:2.227200pt;}
._12_c00436{width:3.403733pt;}
._6_c00436{width:4.716800pt;}
._e_c00436{width:5.882667pt;}
._c_c00436{width:6.899200pt;}
._d_c00436{width:8.629333pt;}
._10_c00436{width:9.817600pt;}
._f_c00436{width:11.020800pt;}
._7_c00436{width:12.595200pt;}
._11_c00436{width:13.555200pt;}
._4_c00436{width:14.931200pt;}
._5_c00436{width:16.588800pt;}
._2_c00436{width:19.763200pt;}
.fs5_c00436{font-size:35.555557pt;}
.fs2_c00436{font-size:42.666667pt;}
.fs4_c00436{font-size:53.333333pt;}
.fs1_c00436{font-size:64.000000pt;}
.fs0_c00436{font-size:69.333333pt;}
.fs3_c00436{font-size:85.333333pt;}
.y0_c00436{bottom:0.000000pt;}
.y18_c00436{bottom:60.000000pt;}
.y1a_c00436{bottom:124.666667pt;}
.y19_c00436{bottom:168.666667pt;}
.y15_c00436{bottom:290.666667pt;}
.y14_c00436{bottom:314.666667pt;}
.y13_c00436{bottom:338.666667pt;}
.y12_c00436{bottom:362.666667pt;}
.y11_c00436{bottom:405.333333pt;}
.y10_c00436{bottom:429.333333pt;}
.yf_c00436{bottom:453.333333pt;}
.ye_c00436{bottom:494.666667pt;}
.yd_c00436{bottom:557.333333pt;}
.yc_c00436{bottom:581.333333pt;}
.yb_c00436{bottom:605.333333pt;}
.ya_c00436{bottom:629.333333pt;}
.y9_c00436{bottom:653.333333pt;}
.y8_c00436{bottom:677.333333pt;}
.y7_c00436{bottom:701.333333pt;}
.y6_c00436{bottom:744.000000pt;}
.y5_c00436{bottom:768.000000pt;}
.y4_c00436{bottom:792.000000pt;}
.y3_c00436{bottom:816.000000pt;}
.y2_c00436{bottom:840.000000pt;}
.y1_c00436{bottom:881.333333pt;}
.y16_c00436{bottom:948.000000pt;}
.y17_c00436{bottom:1061.333333pt;}
.h5_c00436{height:23.958335pt;}
.h4_c00436{height:49.843750pt;}
.h1_c00436{height:49.867188pt;}
.h2_c00436{height:60.218750pt;}
.h3_c00436{height:80.291667pt;}
.h0_c00436{height:1122.666667pt;}
.w0_c00436{width:793.333333pt;}
.x0_c00436{left:0.000000pt;}
.x1_c00436{left:133.795333pt;}
.x2_c00436{left:160.265667pt;}
.x3_c00436{left:370.473600pt;}
.x4_c00436{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_901d70e5294d4482ca8846ec.woff2')format("woff");}.ff1_c00437{font-family:ff1_c00437;line-height:1.144531;font-style:normal;font-weight:normal;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_0f8d0b5cfac29462d2717728.woff2')format("woff");}.ff2_c00437{font-family:ff2_c00437;line-height:0.755859;font-style:normal;font-weight:normal;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_4626332930790df1afbe5604.woff2')format("woff");}.ff3_c00437{font-family:ff3_c00437;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00437{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00437{vertical-align:0.000000px;}
.ls0_c00437{letter-spacing:-0.005400px;}
.ls1_c00437{letter-spacing:0.000000px;}
.ls2_c00437{letter-spacing:0.012000px;}
.sc__c00437{text-shadow:none;}
.sc0_c00437{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00437{-webkit-text-stroke:0px transparent;}
.sc0_c00437{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00437{word-spacing:0.000000px;}
._1_c00437{margin-left:-17.605440px;}
._0_c00437{margin-left:-3.216000px;}
.fc0_c00437{color:rgb(0,0,0);}
.fs0_c00437{font-size:54.000000px;}
.fs1_c00437{font-size:60.000000px;}
.y0_c00437{bottom:0.000000px;}
.y2_c00437{bottom:10.500000px;}
.y4_c00437{bottom:12.000000px;}
.y6_c00437{bottom:67.500000px;}
.y3_c00437{bottom:142.500000px;}
.y1_c00437{bottom:688.500000px;}
.y5_c00437{bottom:1194.000000px;}
.h5_c00437{height:44.208984px;}
.h2_c00437{height:50.756836px;}
.h4_c00437{height:56.074219px;}
.h1_c00437{height:424.500000px;}
.h3_c00437{height:471.000000px;}
.h0_c00437{height:1263.000000px;}
.w1_c00437{width:676.500000px;}
.w0_c00437{width:892.500000px;}
.x0_c00437{left:0.000000px;}
.x1_c00437{left:66.000000px;}
.x3_c00437{left:202.066800px;}
.x2_c00437{left:272.721000px;}
@media print{
.v0_c00437{vertical-align:0.000000pt;}
.ls0_c00437{letter-spacing:-0.004800pt;}
.ls1_c00437{letter-spacing:0.000000pt;}
.ls2_c00437{letter-spacing:0.010667pt;}
.ws0_c00437{word-spacing:0.000000pt;}
._1_c00437{margin-left:-15.649280pt;}
._0_c00437{margin-left:-2.858667pt;}
.fs0_c00437{font-size:48.000000pt;}
.fs1_c00437{font-size:53.333333pt;}
.y0_c00437{bottom:0.000000pt;}
.y2_c00437{bottom:9.333333pt;}
.y4_c00437{bottom:10.666667pt;}
.y6_c00437{bottom:60.000000pt;}
.y3_c00437{bottom:126.666667pt;}
.y1_c00437{bottom:612.000000pt;}
.y5_c00437{bottom:1061.333333pt;}
.h5_c00437{height:39.296875pt;}
.h2_c00437{height:45.117188pt;}
.h4_c00437{height:49.843750pt;}
.h1_c00437{height:377.333333pt;}
.h3_c00437{height:418.666667pt;}
.h0_c00437{height:1122.666667pt;}
.w1_c00437{width:601.333333pt;}
.w0_c00437{width:793.333333pt;}
.x0_c00437{left:0.000000pt;}
.x1_c00437{left:58.666667pt;}
.x3_c00437{left:179.614933pt;}
.x2_c00437{left:242.418667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9c2c336936d5c983182a9cc2.woff2')format("woff");}.ff1_c00438{font-family:ff1_c00438;line-height:0.939453;font-style:normal;font-weight:normal;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_b9b53743191f662a58a02faf.woff2')format("woff");}.ff2_c00438{font-family:ff2_c00438;line-height:1.161133;font-style:normal;font-weight:normal;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_8a2d3b5cbfc273b993773fa0.woff2')format("woff");}.ff3_c00438{font-family:ff3_c00438;line-height:0.915527;font-style:normal;font-weight:normal;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_fd3504128b4dcab7aac273e2.woff2')format("woff");}.ff4_c00438{font-family:ff4_c00438;line-height:1.155762;font-style:normal;font-weight:normal;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_17b08f525ca2ed22362b0841.woff2')format("woff");}.ff5_c00438{font-family:ff5_c00438;line-height:0.901367;font-style:normal;font-weight: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_7dc45458b49bed76c6105303.woff2')format("woff");}.ff6_c00438{font-family:ff6_c00438;line-height:0.892578;font-style: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);}
.v2_c00438{vertical-align:-33.000000px;}
.v0_c00438{vertical-align:0.000000px;}
.v1_c00438{vertical-align:23.086200px;}
.ls3_c00438{letter-spacing:0.000000px;}
.ls0_c00438{letter-spacing:0.007800px;}
.ls2_c00438{letter-spacing:0.012000px;}
.ls1_c00438{letter-spacing:0.223800px;}
.sc__c00438{text-shadow:none;}
.sc0_c00438{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00438{-webkit-text-stroke:0px transparent;}
.sc0_c00438{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00438{word-spacing:-13.200000px;}
.ws1_c00438{word-spacing:-10.000001px;}
.ws2_c00438{word-spacing:0.000000px;}
._10_c00438{margin-left:-7.242201px;}
._f_c00438{margin-left:-5.047200px;}
._7_c00438{margin-left:-3.952800px;}
._8_c00438{margin-left:-2.880000px;}
._5_c00438{margin-left:-1.670400px;}
._d_c00438{width:1.173600px;}
._0_c00438{width:2.325600px;}
._3_c00438{width:4.384800px;}
._c_c00438{width:5.774400px;}
._e_c00438{width:6.904800px;}
._a_c00438{width:8.136000px;}
._b_c00438{width:9.763200px;}
._4_c00438{width:11.397600px;}
._1_c00438{width:13.413600px;}
._2_c00438{width:15.854400px;}
._6_c00438{width:17.431200px;}
._9_c00438{width:18.691200px;}
.fc1_c00438{color:rgb(255,255,255);}
.fc0_c00438{color:rgb(0,0,0);}
.fs6_c00438{font-size:40.000002px;}
.fs2_c00438{font-size:48.000000px;}
.fs3_c00438{font-size:54.000000px;}
.fs5_c00438{font-size:60.000000px;}
.fs1_c00438{font-size:72.000000px;}
.fs0_c00438{font-size:78.000000px;}
.fs4_c00438{font-size:96.000000px;}
.y0_c00438{bottom:0.000000px;}
.yb_c00438{bottom:12.000000px;}
.ye_c00438{bottom:67.500000px;}
.y10_c00438{bottom:140.250000px;}
.yf_c00438{bottom:189.750000px;}
.ya_c00438{bottom:232.500000px;}
.y9_c00438{bottom:709.500000px;}
.y8_c00438{bottom:736.500000px;}
.y7_c00438{bottom:783.000000px;}
.y6_c00438{bottom:838.500000px;}
.y5_c00438{bottom:865.500000px;}
.y4_c00438{bottom:892.500000px;}
.y3_c00438{bottom:919.500000px;}
.y2_c00438{bottom:946.500000px;}
.y1_c00438{bottom:993.000000px;}
.yc_c00438{bottom:1066.500000px;}
.yd_c00438{bottom:1194.000000px;}
.h8_c00438{height:27.343751px;}
.h5_c00438{height:41.633789px;}
.h7_c00438{height:56.074219px;}
.h1_c00438{height:56.100586px;}
.h2_c00438{height:67.746094px;}
.h3_c00438{height:68.250262px;}
.h6_c00438{height:90.328125px;}
.h4_c00438{height:445.500000px;}
.h0_c00438{height:1263.000000px;}
.w1_c00438{width:676.500000px;}
.w0_c00438{width:892.500000px;}
.x0_c00438{left:0.000000px;}
.x1_c00438{left:150.519750px;}
.x3_c00438{left:180.298875px;}
.x2_c00438{left:260.061450px;}
.x4_c00438{left:416.782800px;}
.x5_c00438{left:801.992850px;}
@media print{
.v2_c00438{vertical-align:-29.333333pt;}
.v0_c00438{vertical-align:0.000000pt;}
.v1_c00438{vertical-align:20.521067pt;}
.ls3_c00438{letter-spacing:0.000000pt;}
.ls0_c00438{letter-spacing:0.006933pt;}
.ls2_c00438{letter-spacing:0.010667pt;}
.ls1_c00438{letter-spacing:0.198933pt;}
.ws0_c00438{word-spacing:-11.733333pt;}
.ws1_c00438{word-spacing:-8.888889pt;}
.ws2_c00438{word-spacing:0.000000pt;}
._10_c00438{margin-left:-6.437512pt;}
._f_c00438{margin-left:-4.486400pt;}
._7_c00438{margin-left:-3.513600pt;}
._8_c00438{margin-left:-2.560000pt;}
._5_c00438{margin-left:-1.484800pt;}
._d_c00438{width:1.043200pt;}
._0_c00438{width:2.067200pt;}
._3_c00438{width:3.897600pt;}
._c_c00438{width:5.132800pt;}
._e_c00438{width:6.137600pt;}
._a_c00438{width:7.232000pt;}
._b_c00438{width:8.678400pt;}
._4_c00438{width:10.131200pt;}
._1_c00438{width:11.923200pt;}
._2_c00438{width:14.092800pt;}
._6_c00438{width:15.494400pt;}
._9_c00438{width:16.614400pt;}
.fs6_c00438{font-size:35.555557pt;}
.fs2_c00438{font-size:42.666667pt;}
.fs3_c00438{font-size:48.000000pt;}
.fs5_c00438{font-size:53.333333pt;}
.fs1_c00438{font-size:64.000000pt;}
.fs0_c00438{font-size:69.333333pt;}
.fs4_c00438{font-size:85.333333pt;}
.y0_c00438{bottom:0.000000pt;}
.yb_c00438{bottom:10.666667pt;}
.ye_c00438{bottom:60.000000pt;}
.y10_c00438{bottom:124.666667pt;}
.yf_c00438{bottom:168.666667pt;}
.ya_c00438{bottom:206.666667pt;}
.y9_c00438{bottom:630.666667pt;}
.y8_c00438{bottom:654.666667pt;}
.y7_c00438{bottom:696.000000pt;}
.y6_c00438{bottom:745.333333pt;}
.y5_c00438{bottom:769.333333pt;}
.y4_c00438{bottom:793.333333pt;}
.y3_c00438{bottom:817.333333pt;}
.y2_c00438{bottom:841.333333pt;}
.y1_c00438{bottom:882.666667pt;}
.yc_c00438{bottom:948.000000pt;}
.yd_c00438{bottom:1061.333333pt;}
.h8_c00438{height:24.305557pt;}
.h5_c00438{height:37.007812pt;}
.h7_c00438{height:49.843750pt;}
.h1_c00438{height:49.867188pt;}
.h2_c00438{height:60.218750pt;}
.h3_c00438{height:60.666900pt;}
.h6_c00438{height:80.291667pt;}
.h4_c00438{height:396.000000pt;}
.h0_c00438{height:1122.666667pt;}
.w1_c00438{width:601.333333pt;}
.w0_c00438{width:793.333333pt;}
.x0_c00438{left:0.000000pt;}
.x1_c00438{left:133.795333pt;}
.x3_c00438{left:160.265667pt;}
.x2_c00438{left:231.165733pt;}
.x4_c00438{left:370.473600pt;}
.x5_c00438{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bc95622d8812354ef7df4b13.woff2')format("woff");}.ff1_c00439{font-family:ff1_c00439;line-height:0.934082;font-style:normal;font-weight:normal;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_a9e5139f10386fc936fe967e.woff2')format("woff");}.ff2_c00439{font-family:ff2_c00439;line-height:0.795410;font-style:normal;font-weight:normal;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_00cc3f7e43dc006b9024c296.woff2')format("woff");}.ff3_c00439{font-family:ff3_c00439;line-height:0.755859;font-style:normal;font-weight:normal;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_fed44c6df2cb7951cdc64a60.woff2')format("woff");}.ff4_c00439{font-family:ff4_c00439;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00439{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00439{vertical-align:0.000000px;}
.ls1_c00439{letter-spacing:0.000000px;}
.ls3_c00439{letter-spacing:0.012000px;}
.ls0_c00439{letter-spacing:0.016200px;}
.ls2_c00439{letter-spacing:0.021600px;}
.sc__c00439{text-shadow:none;}
.sc0_c00439{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00439{-webkit-text-stroke:0px transparent;}
.sc0_c00439{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00439{word-spacing:-19.800000px;}
.ws1_c00439{word-spacing:0.000000px;}
._7_c00439{margin-left:-4.010400px;}
._b_c00439{margin-left:-2.901600px;}
._3_c00439{margin-left:-1.274400px;}
._5_c00439{width:1.389600px;}
._1_c00439{width:2.750400px;}
._d_c00439{width:3.859200px;}
._9_c00439{width:5.155200px;}
._a_c00439{width:7.286400px;}
._e_c00439{width:8.323200px;}
._2_c00439{width:9.633600px;}
._6_c00439{width:10.965600px;}
._0_c00439{width:12.398400px;}
._4_c00439{width:13.636800px;}
._c_c00439{width:15.350400px;}
._8_c00439{width:16.423200px;}
._12_c00439{width:18.216000px;}
._11_c00439{width:22.060800px;}
._f_c00439{width:23.364000px;}
._10_c00439{width:24.472800px;}
.fc0_c00439{color:rgb(0,0,0);}
.fs1_c00439{font-size:54.000000px;}
.fs2_c00439{font-size:60.000000px;}
.fs0_c00439{font-size:72.000000px;}
.y0_c00439{bottom:0.000000px;}
.ye_c00439{bottom:12.000000px;}
.y10_c00439{bottom:67.500000px;}
.yd_c00439{bottom:235.500000px;}
.yc_c00439{bottom:756.000000px;}
.yb_c00439{bottom:783.000000px;}
.ya_c00439{bottom:831.000000px;}
.y9_c00439{bottom:858.000000px;}
.y8_c00439{bottom:885.000000px;}
.y7_c00439{bottom:912.000000px;}
.y6_c00439{bottom:939.000000px;}
.y5_c00439{bottom:966.000000px;}
.y4_c00439{bottom:1014.000000px;}
.y3_c00439{bottom:1041.000000px;}
.y2_c00439{bottom:1068.000000px;}
.y1_c00439{bottom:1095.000000px;}
.yf_c00439{bottom:1194.000000px;}
.h3_c00439{height:42.292969px;}
.h5_c00439{height:44.208984px;}
.h1_c00439{height:51.257812px;}
.h4_c00439{height:56.074219px;}
.h2_c00439{height:489.000000px;}
.h0_c00439{height:1263.000000px;}
.w1_c00439{width:676.500000px;}
.w0_c00439{width:892.500000px;}
.x0_c00439{left:0.000000px;}
.x1_c00439{left:65.480310px;}
.x2_c00439{left:281.155200px;}
@media print{
.v0_c00439{vertical-align:0.000000pt;}
.ls1_c00439{letter-spacing:0.000000pt;}
.ls3_c00439{letter-spacing:0.010667pt;}
.ls0_c00439{letter-spacing:0.014400pt;}
.ls2_c00439{letter-spacing:0.019200pt;}
.ws0_c00439{word-spacing:-17.600000pt;}
.ws1_c00439{word-spacing:0.000000pt;}
._7_c00439{margin-left:-3.564800pt;}
._b_c00439{margin-left:-2.579200pt;}
._3_c00439{margin-left:-1.132800pt;}
._5_c00439{width:1.235200pt;}
._1_c00439{width:2.444800pt;}
._d_c00439{width:3.430400pt;}
._9_c00439{width:4.582400pt;}
._a_c00439{width:6.476800pt;}
._e_c00439{width:7.398400pt;}
._2_c00439{width:8.563200pt;}
._6_c00439{width:9.747200pt;}
._0_c00439{width:11.020800pt;}
._4_c00439{width:12.121600pt;}
._c_c00439{width:13.644800pt;}
._8_c00439{width:14.598400pt;}
._12_c00439{width:16.192000pt;}
._11_c00439{width:19.609600pt;}
._f_c00439{width:20.768000pt;}
._10_c00439{width:21.753600pt;}
.fs1_c00439{font-size:48.000000pt;}
.fs2_c00439{font-size:53.333333pt;}
.fs0_c00439{font-size:64.000000pt;}
.y0_c00439{bottom:0.000000pt;}
.ye_c00439{bottom:10.666667pt;}
.y10_c00439{bottom:60.000000pt;}
.yd_c00439{bottom:209.333333pt;}
.yc_c00439{bottom:672.000000pt;}
.yb_c00439{bottom:696.000000pt;}
.ya_c00439{bottom:738.666667pt;}
.y9_c00439{bottom:762.666667pt;}
.y8_c00439{bottom:786.666667pt;}
.y7_c00439{bottom:810.666667pt;}
.y6_c00439{bottom:834.666667pt;}
.y5_c00439{bottom:858.666667pt;}
.y4_c00439{bottom:901.333333pt;}
.y3_c00439{bottom:925.333333pt;}
.y2_c00439{bottom:949.333333pt;}
.y1_c00439{bottom:973.333333pt;}
.yf_c00439{bottom:1061.333333pt;}
.h3_c00439{height:37.593750pt;}
.h5_c00439{height:39.296875pt;}
.h1_c00439{height:45.562500pt;}
.h4_c00439{height:49.843750pt;}
.h2_c00439{height:434.666667pt;}
.h0_c00439{height:1122.666667pt;}
.w1_c00439{width:601.333333pt;}
.w0_c00439{width:793.333333pt;}
.x0_c00439{left:0.000000pt;}
.x1_c00439{left:58.204720pt;}
.x2_c00439{left:249.915733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9a345f3fc9ac927f90fe5fac.woff2')format("woff");}.ff1_c00440{font-family:ff1_c00440;line-height:0.933105;font-style:normal;font-weight:normal;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_7cd6d9cda789d091c5266a4c.woff2')format("woff");}.ff2_c00440{font-family:ff2_c00440;line-height:0.976074;font-style:normal;font-weight:normal;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_caa673f54b8108a984003d7d.woff2')format("woff");}.ff3_c00440{font-family:ff3_c00440;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00440{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00440{vertical-align:0.000000px;}
.ls1_c00440{letter-spacing:0.000000px;}
.ls0_c00440{letter-spacing:0.012000px;}
.sc__c00440{text-shadow:none;}
.sc0_c00440{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00440{-webkit-text-stroke:0px transparent;}
.sc0_c00440{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00440{word-spacing:-19.800000px;}
.ws1_c00440{word-spacing:0.000000px;}
._5_c00440{margin-left:-4.356000px;}
._3_c00440{margin-left:-2.570400px;}
._7_c00440{margin-left:-1.094400px;}
._1_c00440{width:1.051200px;}
._0_c00440{width:2.325600px;}
._2_c00440{width:3.405600px;}
._4_c00440{width:5.990400px;}
._6_c00440{width:7.747200px;}
._8_c00440{width:8.834400px;}
._a_c00440{width:9.986400px;}
._b_c00440{width:11.268000px;}
._9_c00440{width:12.398400px;}
.fc0_c00440{color:rgb(0,0,0);}
.fs1_c00440{font-size:54.000000px;}
.fs2_c00440{font-size:60.000000px;}
.fs0_c00440{font-size:72.000000px;}
.y0_c00440{bottom:0.000000px;}
.y3_c00440{bottom:12.000000px;}
.ya_c00440{bottom:67.500000px;}
.y8_c00440{bottom:129.000000px;}
.y7_c00440{bottom:577.500000px;}
.y6_c00440{bottom:604.500000px;}
.y5_c00440{bottom:631.500000px;}
.y4_c00440{bottom:658.500000px;}
.y2_c00440{bottom:703.500000px;}
.y1_c00440{bottom:1095.000000px;}
.y9_c00440{bottom:1194.000000px;}
.h3_c00440{height:42.292969px;}
.h1_c00440{height:51.187500px;}
.h5_c00440{height:56.074219px;}
.h2_c00440{height:360.000000px;}
.h4_c00440{height:417.000000px;}
.h0_c00440{height:1263.000000px;}
.w2_c00440{width:684.000000px;}
.w1_c00440{width:684.449850px;}
.w0_c00440{width:892.500000px;}
.x0_c00440{left:0.000000px;}
.x4_c00440{left:19.291995px;}
.x1_c00440{left:134.787405px;}
.x2_c00440{left:147.000000px;}
.x3_c00440{left:269.922750px;}
.x5_c00440{left:432.515100px;}
.x6_c00440{left:817.725150px;}
@media print{
.v0_c00440{vertical-align:0.000000pt;}
.ls1_c00440{letter-spacing:0.000000pt;}
.ls0_c00440{letter-spacing:0.010667pt;}
.ws0_c00440{word-spacing:-17.600000pt;}
.ws1_c00440{word-spacing:0.000000pt;}
._5_c00440{margin-left:-3.872000pt;}
._3_c00440{margin-left:-2.284800pt;}
._7_c00440{margin-left:-0.972800pt;}
._1_c00440{width:0.934400pt;}
._0_c00440{width:2.067200pt;}
._2_c00440{width:3.027200pt;}
._4_c00440{width:5.324800pt;}
._6_c00440{width:6.886400pt;}
._8_c00440{width:7.852800pt;}
._a_c00440{width:8.876800pt;}
._b_c00440{width:10.016000pt;}
._9_c00440{width:11.020800pt;}
.fs1_c00440{font-size:48.000000pt;}
.fs2_c00440{font-size:53.333333pt;}
.fs0_c00440{font-size:64.000000pt;}
.y0_c00440{bottom:0.000000pt;}
.y3_c00440{bottom:10.666667pt;}
.ya_c00440{bottom:60.000000pt;}
.y8_c00440{bottom:114.666667pt;}
.y7_c00440{bottom:513.333333pt;}
.y6_c00440{bottom:537.333333pt;}
.y5_c00440{bottom:561.333333pt;}
.y4_c00440{bottom:585.333333pt;}
.y2_c00440{bottom:625.333333pt;}
.y1_c00440{bottom:973.333333pt;}
.y9_c00440{bottom:1061.333333pt;}
.h3_c00440{height:37.593750pt;}
.h1_c00440{height:45.500000pt;}
.h5_c00440{height:49.843750pt;}
.h2_c00440{height:320.000000pt;}
.h4_c00440{height:370.666667pt;}
.h0_c00440{height:1122.666667pt;}
.w2_c00440{width:608.000000pt;}
.w1_c00440{width:608.399867pt;}
.w0_c00440{width:793.333333pt;}
.x0_c00440{left:0.000000pt;}
.x4_c00440{left:17.148440pt;}
.x1_c00440{left:119.811027pt;}
.x2_c00440{left:130.666667pt;}
.x3_c00440{left:239.931333pt;}
.x5_c00440{left:384.457867pt;}
.x6_c00440{left:726.866800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f49ab06f4d3913dba77207a6.woff2')format("woff");}.ff1_c00441{font-family:ff1_c00441;line-height:0.884766;font-style:normal;font-weight:normal;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_554a2a69d7b9c2d69322017a.woff2')format("woff");}.ff2_c00441{font-family:ff2_c00441;line-height:1.163086;font-style:normal;font-weight:normal;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_43ed79327c18d6a63fd8e674.woff2')format("woff");}.ff3_c00441{font-family:ff3_c00441;line-height:0.756836;font-style:normal;font-weight:normal;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_4a3e35aced6a8f9ff8830237.woff2')format("woff");}.ff4_c00441{font-family:ff4_c00441;line-height:1.155762;font-style:normal;font-weight:normal;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_8ed89bd121e6e823608e7f9c.woff2')format("woff");}.ff5_c00441{font-family:ff5_c00441;line-height:0.904297;font-style:normal;font-weight: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_c00441;src:url('chunks/assets/font_caa8d7ebcae815a63655c0e7.woff2')format("woff");}.ff6_c00441{font-family:ff6_c00441;line-height:0.892578;font-style: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);}
.v3_c00441{vertical-align:-33.000000px;}
.v2_c00441{vertical-align:-23.086200px;}
.v0_c00441{vertical-align:0.000000px;}
.v1_c00441{vertical-align:23.086200px;}
.ls4_c00441{letter-spacing:0.000000px;}
.ls0_c00441{letter-spacing:0.007800px;}
.ls5_c00441{letter-spacing:0.012000px;}
.ls3_c00441{letter-spacing:0.014400px;}
.ls1_c00441{letter-spacing:1.384200px;}
.ls2_c00441{letter-spacing:9.552000px;}
.sc__c00441{text-shadow:none;}
.sc0_c00441{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00441{-webkit-text-stroke:0px transparent;}
.sc0_c00441{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00441{word-spacing:-19.814400px;}
.ws1_c00441{word-spacing:-13.200000px;}
.ws2_c00441{word-spacing:-10.000001px;}
.ws3_c00441{word-spacing:0.000000px;}
._6_c00441{margin-left:-10.605600px;}
._9_c00441{margin-left:-7.221600px;}
._15_c00441{margin-left:-5.104800px;}
._4_c00441{margin-left:-3.578400px;}
._e_c00441{margin-left:-2.080800px;}
._2_c00441{margin-left:-1.000800px;}
._f_c00441{width:1.000800px;}
._0_c00441{width:2.210400px;}
._8_c00441{width:4.010400px;}
._1_c00441{width:5.968800px;}
._7_c00441{width:7.113600px;}
._3_c00441{width:9.108000px;}
._a_c00441{width:10.699200px;}
._5_c00441{width:11.779200px;}
._16_c00441{width:12.808800px;}
._d_c00441{width:13.917600px;}
._b_c00441{width:15.170400px;}
._12_c00441{width:16.372800px;}
._c_c00441{width:18.532800px;}
._11_c00441{width:20.858400px;}
._10_c00441{width:22.377600px;}
._13_c00441{width:24.386400px;}
._14_c00441{width:25.408800px;}
._17_c00441{width:27.568800px;}
.fc1_c00441{color:rgb(255,255,255);}
.fc0_c00441{color:rgb(0,0,0);}
.fs5_c00441{font-size:40.000002px;}
.fs2_c00441{font-size:48.000000px;}
.fs4_c00441{font-size:60.000000px;}
.fs1_c00441{font-size:72.000000px;}
.fs0_c00441{font-size:78.000000px;}
.fs3_c00441{font-size:96.000000px;}
.y0_c00441{bottom:0.000000px;}
.y1b_c00441{bottom:67.500000px;}
.y1e_c00441{bottom:140.250000px;}
.y1d_c00441{bottom:189.750000px;}
.y1c_c00441{bottom:239.250000px;}
.y18_c00441{bottom:289.500000px;}
.y17_c00441{bottom:316.500000px;}
.y16_c00441{bottom:343.500000px;}
.y15_c00441{bottom:370.500000px;}
.y14_c00441{bottom:397.500000px;}
.y13_c00441{bottom:424.500000px;}
.y12_c00441{bottom:451.500000px;}
.y11_c00441{bottom:499.500000px;}
.y10_c00441{bottom:526.500000px;}
.yf_c00441{bottom:553.500000px;}
.ye_c00441{bottom:580.500000px;}
.yd_c00441{bottom:607.500000px;}
.yc_c00441{bottom:634.500000px;}
.yb_c00441{bottom:661.500000px;}
.ya_c00441{bottom:688.500000px;}
.y9_c00441{bottom:715.500000px;}
.y8_c00441{bottom:763.500000px;}
.y7_c00441{bottom:790.500000px;}
.y6_c00441{bottom:817.500000px;}
.y5_c00441{bottom:865.500000px;}
.y4_c00441{bottom:892.500000px;}
.y3_c00441{bottom:919.500000px;}
.y2_c00441{bottom:946.500000px;}
.y1_c00441{bottom:993.000000px;}
.y19_c00441{bottom:1066.500000px;}
.y1a_c00441{bottom:1194.000000px;}
.h7_c00441{height:27.421876px;}
.h6_c00441{height:44.208984px;}
.h1_c00441{height:55.224609px;}
.h5_c00441{height:56.074219px;}
.h2_c00441{height:67.746094px;}
.h3_c00441{height:68.250262px;}
.h4_c00441{height:90.328125px;}
.h0_c00441{height:1263.000000px;}
.w0_c00441{width:892.500000px;}
.x0_c00441{left:0.000000px;}
.x1_c00441{left:49.748025px;}
.x2_c00441{left:79.798875px;}
@media print{
.v3_c00441{vertical-align:-29.333333pt;}
.v2_c00441{vertical-align:-20.521067pt;}
.v0_c00441{vertical-align:0.000000pt;}
.v1_c00441{vertical-align:20.521067pt;}
.ls4_c00441{letter-spacing:0.000000pt;}
.ls0_c00441{letter-spacing:0.006933pt;}
.ls5_c00441{letter-spacing:0.010667pt;}
.ls3_c00441{letter-spacing:0.012800pt;}
.ls1_c00441{letter-spacing:1.230400pt;}
.ls2_c00441{letter-spacing:8.490667pt;}
.ws0_c00441{word-spacing:-17.612800pt;}
.ws1_c00441{word-spacing:-11.733333pt;}
.ws2_c00441{word-spacing:-8.888889pt;}
.ws3_c00441{word-spacing:0.000000pt;}
._6_c00441{margin-left:-9.427200pt;}
._9_c00441{margin-left:-6.419200pt;}
._15_c00441{margin-left:-4.537600pt;}
._4_c00441{margin-left:-3.180800pt;}
._e_c00441{margin-left:-1.849600pt;}
._2_c00441{margin-left:-0.889600pt;}
._f_c00441{width:0.889600pt;}
._0_c00441{width:1.964800pt;}
._8_c00441{width:3.564800pt;}
._1_c00441{width:5.305600pt;}
._7_c00441{width:6.323200pt;}
._3_c00441{width:8.096000pt;}
._a_c00441{width:9.510400pt;}
._5_c00441{width:10.470400pt;}
._16_c00441{width:11.385600pt;}
._d_c00441{width:12.371200pt;}
._b_c00441{width:13.484800pt;}
._12_c00441{width:14.553600pt;}
._c_c00441{width:16.473600pt;}
._11_c00441{width:18.540800pt;}
._10_c00441{width:19.891200pt;}
._13_c00441{width:21.676800pt;}
._14_c00441{width:22.585600pt;}
._17_c00441{width:24.505600pt;}
.fs5_c00441{font-size:35.555557pt;}
.fs2_c00441{font-size:42.666667pt;}
.fs4_c00441{font-size:53.333333pt;}
.fs1_c00441{font-size:64.000000pt;}
.fs0_c00441{font-size:69.333333pt;}
.fs3_c00441{font-size:85.333333pt;}
.y0_c00441{bottom:0.000000pt;}
.y1b_c00441{bottom:60.000000pt;}
.y1e_c00441{bottom:124.666667pt;}
.y1d_c00441{bottom:168.666667pt;}
.y1c_c00441{bottom:212.666667pt;}
.y18_c00441{bottom:257.333333pt;}
.y17_c00441{bottom:281.333333pt;}
.y16_c00441{bottom:305.333333pt;}
.y15_c00441{bottom:329.333333pt;}
.y14_c00441{bottom:353.333333pt;}
.y13_c00441{bottom:377.333333pt;}
.y12_c00441{bottom:401.333333pt;}
.y11_c00441{bottom:444.000000pt;}
.y10_c00441{bottom:468.000000pt;}
.yf_c00441{bottom:492.000000pt;}
.ye_c00441{bottom:516.000000pt;}
.yd_c00441{bottom:540.000000pt;}
.yc_c00441{bottom:564.000000pt;}
.yb_c00441{bottom:588.000000pt;}
.ya_c00441{bottom:612.000000pt;}
.y9_c00441{bottom:636.000000pt;}
.y8_c00441{bottom:678.666667pt;}
.y7_c00441{bottom:702.666667pt;}
.y6_c00441{bottom:726.666667pt;}
.y5_c00441{bottom:769.333333pt;}
.y4_c00441{bottom:793.333333pt;}
.y3_c00441{bottom:817.333333pt;}
.y2_c00441{bottom:841.333333pt;}
.y1_c00441{bottom:882.666667pt;}
.y19_c00441{bottom:948.000000pt;}
.y1a_c00441{bottom:1061.333333pt;}
.h7_c00441{height:24.375001pt;}
.h6_c00441{height:39.296875pt;}
.h1_c00441{height:49.088542pt;}
.h5_c00441{height:49.843750pt;}
.h2_c00441{height:60.218750pt;}
.h3_c00441{height:60.666900pt;}
.h4_c00441{height:80.291667pt;}
.h0_c00441{height:1122.666667pt;}
.w0_c00441{width:793.333333pt;}
.x0_c00441{left:0.000000pt;}
.x1_c00441{left:44.220467pt;}
.x2_c00441{left:70.932333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f5d89bd460a81b946acadd07.woff2')format("woff");}.ff1_c00442{font-family:ff1_c00442;line-height:0.934082;font-style:normal;font-weight:normal;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_333344b127319dcf4a9812b3.woff2')format("woff");}.ff2_c00442{font-family:ff2_c00442;line-height:0.939453;font-style:normal;font-weight:normal;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_54b99ebf5571921774e895f5.woff2')format("woff");}.ff3_c00442{font-family:ff3_c00442;line-height:1.155762;font-style:normal;font-weight:normal;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_ce06030aa33fcd70aed7b031.woff2')format("woff");}.ff4_c00442{font-family:ff4_c00442;line-height:0.891602;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00442;src:url('chunks/assets/font_f341da170d2512abe7d3f83f.woff2')format("woff");}.ff5_c00442{font-family:ff5_c00442;line-height:0.888672;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00442{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00442{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3_c00442{vertical-align:-33.000000px;}
.v2_c00442{vertical-align:-23.086200px;}
.v0_c00442{vertical-align:0.000000px;}
.v1_c00442{vertical-align:23.086200px;}
.ls3_c00442{letter-spacing:0.000000px;}
.ls0_c00442{letter-spacing:0.007800px;}
.ls2_c00442{letter-spacing:0.012000px;}
.ls4_c00442{letter-spacing:0.014400px;}
.ls1_c00442{letter-spacing:19.799400px;}
.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:-10.000001px;}
.ws1_c00442{word-spacing:0.000000px;}
._6_c00442{margin-left:-9.648000px;}
._11_c00442{margin-left:-7.257600px;}
._13_c00442{margin-left:-4.320000px;}
._12_c00442{margin-left:-3.304800px;}
._5_c00442{margin-left:-2.260800px;}
._1_c00442{margin-left:-1.015200px;}
._3_c00442{width:1.396800px;}
._0_c00442{width:2.448000px;}
._2_c00442{width:3.636000px;}
._4_c00442{width:4.960800px;}
._10_c00442{width:6.206400px;}
._f_c00442{width:8.200800px;}
._14_c00442{width:9.266400px;}
._8_c00442{width:10.346400px;}
._7_c00442{width:11.707200px;}
._b_c00442{width:12.873600px;}
._9_c00442{width:14.011200px;}
._a_c00442{width:15.170400px;}
._d_c00442{width:16.869600px;}
._c_c00442{width:18.007200px;}
._e_c00442{width:21.477600px;}
.fc0_c00442{color:rgb(0,0,0);}
.fs4_c00442{font-size:40.000002px;}
.fs2_c00442{font-size:48.000000px;}
.fs3_c00442{font-size:60.000000px;}
.fs0_c00442{font-size:72.000000px;}
.fs1_c00442{font-size:78.000000px;}
.y0_c00442{bottom:0.000000px;}
.y17_c00442{bottom:67.500000px;}
.y18_c00442{bottom:140.250000px;}
.y15_c00442{bottom:408.000000px;}
.y14_c00442{bottom:435.000000px;}
.y13_c00442{bottom:462.000000px;}
.y12_c00442{bottom:510.000000px;}
.y11_c00442{bottom:537.000000px;}
.y10_c00442{bottom:564.000000px;}
.yf_c00442{bottom:591.000000px;}
.ye_c00442{bottom:618.000000px;}
.yd_c00442{bottom:666.000000px;}
.yc_c00442{bottom:693.000000px;}
.yb_c00442{bottom:720.000000px;}
.ya_c00442{bottom:747.000000px;}
.y9_c00442{bottom:793.500000px;}
.y8_c00442{bottom:864.000000px;}
.y7_c00442{bottom:912.000000px;}
.y6_c00442{bottom:939.000000px;}
.y5_c00442{bottom:966.000000px;}
.y4_c00442{bottom:993.000000px;}
.y3_c00442{bottom:1020.000000px;}
.y2_c00442{bottom:1068.000000px;}
.y1_c00442{bottom:1095.000000px;}
.y16_c00442{bottom:1194.000000px;}
.h5_c00442{height:26.953126px;}
.h1_c00442{height:51.257812px;}
.h4_c00442{height:56.074219px;}
.h2_c00442{height:56.100586px;}
.h3_c00442{height:57.258075px;}
.h0_c00442{height:1263.000000px;}
.w0_c00442{width:892.500000px;}
.x0_c00442{left:0.000000px;}
.x1_c00442{left:134.787405px;}
.x2_c00442{left:432.515100px;}
.x3_c00442{left:817.725150px;}
@media print{
.v3_c00442{vertical-align:-29.333333pt;}
.v2_c00442{vertical-align:-20.521067pt;}
.v0_c00442{vertical-align:0.000000pt;}
.v1_c00442{vertical-align:20.521067pt;}
.ls3_c00442{letter-spacing:0.000000pt;}
.ls0_c00442{letter-spacing:0.006933pt;}
.ls2_c00442{letter-spacing:0.010667pt;}
.ls4_c00442{letter-spacing:0.012800pt;}
.ls1_c00442{letter-spacing:17.599467pt;}
.ws0_c00442{word-spacing:-8.888889pt;}
.ws1_c00442{word-spacing:0.000000pt;}
._6_c00442{margin-left:-8.576000pt;}
._11_c00442{margin-left:-6.451200pt;}
._13_c00442{margin-left:-3.840000pt;}
._12_c00442{margin-left:-2.937600pt;}
._5_c00442{margin-left:-2.009600pt;}
._1_c00442{margin-left:-0.902400pt;}
._3_c00442{width:1.241600pt;}
._0_c00442{width:2.176000pt;}
._2_c00442{width:3.232000pt;}
._4_c00442{width:4.409600pt;}
._10_c00442{width:5.516800pt;}
._f_c00442{width:7.289600pt;}
._14_c00442{width:8.236800pt;}
._8_c00442{width:9.196800pt;}
._7_c00442{width:10.406400pt;}
._b_c00442{width:11.443200pt;}
._9_c00442{width:12.454400pt;}
._a_c00442{width:13.484800pt;}
._d_c00442{width:14.995200pt;}
._c_c00442{width:16.006400pt;}
._e_c00442{width:19.091200pt;}
.fs4_c00442{font-size:35.555557pt;}
.fs2_c00442{font-size:42.666667pt;}
.fs3_c00442{font-size:53.333333pt;}
.fs0_c00442{font-size:64.000000pt;}
.fs1_c00442{font-size:69.333333pt;}
.y0_c00442{bottom:0.000000pt;}
.y17_c00442{bottom:60.000000pt;}
.y18_c00442{bottom:124.666667pt;}
.y15_c00442{bottom:362.666667pt;}
.y14_c00442{bottom:386.666667pt;}
.y13_c00442{bottom:410.666667pt;}
.y12_c00442{bottom:453.333333pt;}
.y11_c00442{bottom:477.333333pt;}
.y10_c00442{bottom:501.333333pt;}
.yf_c00442{bottom:525.333333pt;}
.ye_c00442{bottom:549.333333pt;}
.yd_c00442{bottom:592.000000pt;}
.yc_c00442{bottom:616.000000pt;}
.yb_c00442{bottom:640.000000pt;}
.ya_c00442{bottom:664.000000pt;}
.y9_c00442{bottom:705.333333pt;}
.y8_c00442{bottom:768.000000pt;}
.y7_c00442{bottom:810.666667pt;}
.y6_c00442{bottom:834.666667pt;}
.y5_c00442{bottom:858.666667pt;}
.y4_c00442{bottom:882.666667pt;}
.y3_c00442{bottom:906.666667pt;}
.y2_c00442{bottom:949.333333pt;}
.y1_c00442{bottom:973.333333pt;}
.y16_c00442{bottom:1061.333333pt;}
.h5_c00442{height:23.958335pt;}
.h1_c00442{height:45.562500pt;}
.h4_c00442{height:49.843750pt;}
.h2_c00442{height:49.867188pt;}
.h3_c00442{height:50.896067pt;}
.h0_c00442{height:1122.666667pt;}
.w0_c00442{width:793.333333pt;}
.x0_c00442{left:0.000000pt;}
.x1_c00442{left:119.811027pt;}
.x2_c00442{left:384.457867pt;}
.x3_c00442{left:726.866800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9070ff4abff4c6303c08486f.woff2')format("woff");}.ff1_c00443{font-family:ff1_c00443;line-height:0.789062;font-style:normal;font-weight:normal;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_3988935919dd9bc4b261d368.woff2')format("woff");}.ff2_c00443{font-family:ff2_c00443;line-height:0.931152;font-style:normal;font-weight:normal;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_163c07ab1a652d9648355bc3.woff2')format("woff");}.ff3_c00443{font-family:ff3_c00443;line-height:0.755859;font-style:normal;font-weight:normal;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_f8951bbc9435a1108a8de7f7.woff2')format("woff");}.ff4_c00443{font-family:ff4_c00443;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00443{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00443{vertical-align:0.000000px;}
.ls1_c00443{letter-spacing:-0.005400px;}
.ls2_c00443{letter-spacing:0.000000px;}
.ls3_c00443{letter-spacing:0.012000px;}
.ls0_c00443{letter-spacing:0.021600px;}
.sc__c00443{text-shadow:none;}
.sc0_c00443{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00443{-webkit-text-stroke:0px transparent;}
.sc0_c00443{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00443{word-spacing:0.000000px;}
._1_c00443{margin-left:-3.216000px;}
._0_c00443{margin-left:-1.252800px;}
.fc0_c00443{color:rgb(0,0,0);}
.fs0_c00443{font-size:54.000000px;}
.fs2_c00443{font-size:60.000000px;}
.fs1_c00443{font-size:72.000000px;}
.y0_c00443{bottom:0.000000px;}
.y2_c00443{bottom:12.000000px;}
.y6_c00443{bottom:67.500000px;}
.y4_c00443{bottom:187.500000px;}
.y3_c00443{bottom:232.500000px;}
.y1_c00443{bottom:748.500000px;}
.y5_c00443{bottom:1194.000000px;}
.h2_c00443{height:41.633789px;}
.h6_c00443{height:44.208984px;}
.h4_c00443{height:51.187500px;}
.h5_c00443{height:56.074219px;}
.h1_c00443{height:364.500000px;}
.h3_c00443{height:487.500000px;}
.h0_c00443{height:1263.000000px;}
.w1_c00443{width:684.449850px;}
.w0_c00443{width:892.500000px;}
.x0_c00443{left:0.000000px;}
.x1_c00443{left:49.500000px;}
.x3_c00443{left:268.426500px;}
.x2_c00443{left:302.571900px;}
@media print{
.v0_c00443{vertical-align:0.000000pt;}
.ls1_c00443{letter-spacing:-0.004800pt;}
.ls2_c00443{letter-spacing:0.000000pt;}
.ls3_c00443{letter-spacing:0.010667pt;}
.ls0_c00443{letter-spacing:0.019200pt;}
.ws0_c00443{word-spacing:0.000000pt;}
._1_c00443{margin-left:-2.858667pt;}
._0_c00443{margin-left:-1.113600pt;}
.fs0_c00443{font-size:48.000000pt;}
.fs2_c00443{font-size:53.333333pt;}
.fs1_c00443{font-size:64.000000pt;}
.y0_c00443{bottom:0.000000pt;}
.y2_c00443{bottom:10.666667pt;}
.y6_c00443{bottom:60.000000pt;}
.y4_c00443{bottom:166.666667pt;}
.y3_c00443{bottom:206.666667pt;}
.y1_c00443{bottom:665.333333pt;}
.y5_c00443{bottom:1061.333333pt;}
.h2_c00443{height:37.007812pt;}
.h6_c00443{height:39.296875pt;}
.h4_c00443{height:45.500000pt;}
.h5_c00443{height:49.843750pt;}
.h1_c00443{height:324.000000pt;}
.h3_c00443{height:433.333333pt;}
.h0_c00443{height:1122.666667pt;}
.w1_c00443{width:608.399867pt;}
.w0_c00443{width:793.333333pt;}
.x0_c00443{left:0.000000pt;}
.x1_c00443{left:44.000000pt;}
.x3_c00443{left:238.601333pt;}
.x2_c00443{left:268.952800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c9f61a407443511a24e18808.woff2')format("woff");}.ff1_c00444{font-family:ff1_c00444;line-height:0.963867;font-style:normal;font-weight:normal;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_fafd0ffc333df15ee6cb395e.woff2')format("woff");}.ff2_c00444{font-family:ff2_c00444;line-height:0.933105;font-style:normal;font-weight:normal;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_853a8df54d602fc5f159d603.woff2')format("woff");}.ff3_c00444{font-family:ff3_c00444;line-height:1.155762;font-style:normal;font-weight:normal;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_bed7f5c810df3912a1b2b24c.woff2')format("woff");}.ff4_c00444{font-family:ff4_c00444;line-height:0.904785;font-style:normal;font-weight:normal;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_98f95953c8f85c2f024f17e9.woff2')format("woff");}.ff5_c00444{font-family:ff5_c00444;line-height:0.888672;font-style: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);}
.v2_c00444{vertical-align:-33.000000px;}
.v1_c00444{vertical-align:-23.086200px;}
.v0_c00444{vertical-align:0.000000px;}
.ls2_c00444{letter-spacing:-0.005400px;}
.ls3_c00444{letter-spacing:0.000000px;}
.ls0_c00444{letter-spacing:0.012000px;}
.ls4_c00444{letter-spacing:0.014400px;}
.ls1_c00444{letter-spacing:0.021600px;}
.sc__c00444{text-shadow:none;}
.sc0_c00444{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00444{-webkit-text-stroke:0px transparent;}
.sc0_c00444{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00444{word-spacing:-13.200000px;}
.ws1_c00444{word-spacing:-10.000001px;}
.ws2_c00444{word-spacing:0.000000px;}
._1_c00444{margin-left:-7.840800px;}
._7_c00444{margin-left:-4.226400px;}
._3_c00444{margin-left:-2.721600px;}
._2_c00444{margin-left:-1.540800px;}
._0_c00444{width:1.346400px;}
._5_c00444{width:2.397600px;}
._4_c00444{width:3.751200px;}
._6_c00444{width:5.018400px;}
._a_c00444{width:6.271200px;}
._8_c00444{width:8.517600px;}
._9_c00444{width:10.188000px;}
._f_c00444{width:11.239200px;}
._d_c00444{width:12.290400px;}
._c_c00444{width:14.436000px;}
._b_c00444{width:16.012800px;}
._e_c00444{width:18.187200px;}
._11_c00444{width:23.169600px;}
._10_c00444{width:25.459200px;}
._12_c00444{width:27.936000px;}
._15_c00444{width:29.347200px;}
._13_c00444{width:30.650400px;}
._14_c00444{width:31.953600px;}
.fc0_c00444{color:rgb(0,0,0);}
.fs4_c00444{font-size:40.000002px;}
.fs2_c00444{font-size:48.000000px;}
.fs0_c00444{font-size:54.000000px;}
.fs3_c00444{font-size:60.000000px;}
.fs1_c00444{font-size:72.000000px;}
.y0_c00444{bottom:0.000000px;}
.y2_c00444{bottom:12.000000px;}
.yd_c00444{bottom:67.500000px;}
.ye_c00444{bottom:140.250000px;}
.yb_c00444{bottom:216.000000px;}
.ya_c00444{bottom:243.000000px;}
.y9_c00444{bottom:291.000000px;}
.y8_c00444{bottom:318.000000px;}
.y7_c00444{bottom:345.000000px;}
.y6_c00444{bottom:372.000000px;}
.y5_c00444{bottom:425.771550px;}
.y4_c00444{bottom:447.000000px;}
.y3_c00444{bottom:474.000000px;}
.y1_c00444{bottom:519.000000px;}
.yc_c00444{bottom:1194.000000px;}
.h6_c00444{height:27.480470px;}
.h4_c00444{height:34.125000px;}
.h2_c00444{height:41.633789px;}
.h3_c00444{height:51.187500px;}
.h5_c00444{height:56.074219px;}
.h1_c00444{height:594.000000px;}
.h0_c00444{height:1263.000000px;}
.w1_c00444{width:684.449850px;}
.w0_c00444{width:892.500000px;}
.x0_c00444{left:0.000000px;}
.x3_c00444{left:134.787405px;}
.x1_c00444{left:147.000000px;}
.x2_c00444{left:237.211050px;}
.x4_c00444{left:432.515100px;}
.x5_c00444{left:817.725150px;}
@media print{
.v2_c00444{vertical-align:-29.333333pt;}
.v1_c00444{vertical-align:-20.521067pt;}
.v0_c00444{vertical-align:0.000000pt;}
.ls2_c00444{letter-spacing:-0.004800pt;}
.ls3_c00444{letter-spacing:0.000000pt;}
.ls0_c00444{letter-spacing:0.010667pt;}
.ls4_c00444{letter-spacing:0.012800pt;}
.ls1_c00444{letter-spacing:0.019200pt;}
.ws0_c00444{word-spacing:-11.733333pt;}
.ws1_c00444{word-spacing:-8.888889pt;}
.ws2_c00444{word-spacing:0.000000pt;}
._1_c00444{margin-left:-6.969600pt;}
._7_c00444{margin-left:-3.756800pt;}
._3_c00444{margin-left:-2.419200pt;}
._2_c00444{margin-left:-1.369600pt;}
._0_c00444{width:1.196800pt;}
._5_c00444{width:2.131200pt;}
._4_c00444{width:3.334400pt;}
._6_c00444{width:4.460800pt;}
._a_c00444{width:5.574400pt;}
._8_c00444{width:7.571200pt;}
._9_c00444{width:9.056000pt;}
._f_c00444{width:9.990400pt;}
._d_c00444{width:10.924800pt;}
._c_c00444{width:12.832000pt;}
._b_c00444{width:14.233600pt;}
._e_c00444{width:16.166400pt;}
._11_c00444{width:20.595200pt;}
._10_c00444{width:22.630400pt;}
._12_c00444{width:24.832000pt;}
._15_c00444{width:26.086400pt;}
._13_c00444{width:27.244800pt;}
._14_c00444{width:28.403200pt;}
.fs4_c00444{font-size:35.555557pt;}
.fs2_c00444{font-size:42.666667pt;}
.fs0_c00444{font-size:48.000000pt;}
.fs3_c00444{font-size:53.333333pt;}
.fs1_c00444{font-size:64.000000pt;}
.y0_c00444{bottom:0.000000pt;}
.y2_c00444{bottom:10.666667pt;}
.yd_c00444{bottom:60.000000pt;}
.ye_c00444{bottom:124.666667pt;}
.yb_c00444{bottom:192.000000pt;}
.ya_c00444{bottom:216.000000pt;}
.y9_c00444{bottom:258.666667pt;}
.y8_c00444{bottom:282.666667pt;}
.y7_c00444{bottom:306.666667pt;}
.y6_c00444{bottom:330.666667pt;}
.y5_c00444{bottom:378.463600pt;}
.y4_c00444{bottom:397.333333pt;}
.y3_c00444{bottom:421.333333pt;}
.y1_c00444{bottom:461.333333pt;}
.yc_c00444{bottom:1061.333333pt;}
.h6_c00444{height:24.427085pt;}
.h4_c00444{height:30.333333pt;}
.h2_c00444{height:37.007812pt;}
.h3_c00444{height:45.500000pt;}
.h5_c00444{height:49.843750pt;}
.h1_c00444{height:528.000000pt;}
.h0_c00444{height:1122.666667pt;}
.w1_c00444{width:608.399867pt;}
.w0_c00444{width:793.333333pt;}
.x0_c00444{left:0.000000pt;}
.x3_c00444{left:119.811027pt;}
.x1_c00444{left:130.666667pt;}
.x2_c00444{left:210.854267pt;}
.x4_c00444{left:384.457867pt;}
.x5_c00444{left:726.866800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2b3ad894dcdd6e0cc5f9ce95.woff2')format("woff");}.ff1_c00445{font-family:ff1_c00445;line-height:1.144531;font-style:normal;font-weight:normal;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_a0faf44f51e0aebbd31703f2.woff2')format("woff");}.ff2_c00445{font-family:ff2_c00445;line-height:0.901855;font-style:normal;font-weight:normal;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_f6cdb4241032f58a1df3991e.woff2')format("woff");}.ff3_c00445{font-family:ff3_c00445;line-height:0.934082;font-style:normal;font-weight:normal;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_6bd883045647d758eed361e3.woff2')format("woff");}.ff4_c00445{font-family:ff4_c00445;line-height:1.010254;font-style:normal;font-weight:normal;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_008a4476a2e1da8569d286c6.woff2')format("woff");}.ff5_c00445{font-family:ff5_c00445;line-height:0.755859;font-style:normal;font-weight: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_c00445;src:url('chunks/assets/font_0aa94c75f4debe19e4d4518f.woff2')format("woff");}.ff6_c00445{font-family:ff6_c00445;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00445{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00445{vertical-align:0.000000px;}
.ls4_c00445{letter-spacing:-0.014400px;}
.ls2_c00445{letter-spacing:-0.005400px;}
.ls1_c00445{letter-spacing:0.000000px;}
.ls3_c00445{letter-spacing:0.007200px;}
.ls5_c00445{letter-spacing:0.012000px;}
.ls0_c00445{letter-spacing:0.021600px;}
.sc__c00445{text-shadow:none;}
.sc0_c00445{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00445{-webkit-text-stroke:0px transparent;}
.sc0_c00445{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00445{word-spacing:-16.500000px;}
.ws1_c00445{word-spacing:0.000000px;}
._6_c00445{margin-left:-9.288000px;}
._9_c00445{margin-left:-7.973100px;}
._b_c00445{margin-left:-5.302200px;}
._c_c00445{margin-left:-3.603000px;}
._4_c00445{margin-left:-2.282400px;}
._3_c00445{margin-left:-1.260000px;}
._7_c00445{width:1.358400px;}
._2_c00445{width:2.872800px;}
._1_c00445{width:4.586400px;}
._a_c00445{width:6.084600px;}
._0_c00445{width:7.509600px;}
._5_c00445{width:9.727200px;}
._8_c00445{width:11.430300px;}
._e_c00445{width:12.895200px;}
._d_c00445{width:14.162400px;}
.fc0_c00445{color:rgb(0,0,0);}
.fs0_c00445{font-size:54.000000px;}
.fs2_c00445{font-size:60.000000px;}
.fs1_c00445{font-size:72.000000px;}
.y0_c00445{bottom:0.000000px;}
.y3_c00445{bottom:10.500000px;}
.y2_c00445{bottom:28.500000px;}
.yd_c00445{bottom:67.500000px;}
.yb_c00445{bottom:151.500000px;}
.ya_c00445{bottom:172.500000px;}
.y9_c00445{bottom:216.000000px;}
.y8_c00445{bottom:238.500000px;}
.y7_c00445{bottom:282.000000px;}
.y6_c00445{bottom:309.000000px;}
.y5_c00445{bottom:357.000000px;}
.y4_c00445{bottom:405.000000px;}
.y1_c00445{bottom:498.000000px;}
.yc_c00445{bottom:1194.000000px;}
.h6_c00445{height:42.714844px;}
.h5_c00445{height:42.832031px;}
.h9_c00445{height:44.208984px;}
.h2_c00445{height:50.756836px;}
.h3_c00445{height:51.257812px;}
.h4_c00445{height:51.398438px;}
.h7_c00445{height:52.417969px;}
.h8_c00445{height:56.074219px;}
.h1_c00445{height:615.000000px;}
.h0_c00445{height:1263.000000px;}
.w1_c00445{width:684.449850px;}
.w0_c00445{width:892.500000px;}
.x0_c00445{left:0.000000px;}
.x2_c00445{left:40.472235px;}
.x1_c00445{left:49.500000px;}
.x3_c00445{left:284.299500px;}
@media print{
.v0_c00445{vertical-align:0.000000pt;}
.ls4_c00445{letter-spacing:-0.012800pt;}
.ls2_c00445{letter-spacing:-0.004800pt;}
.ls1_c00445{letter-spacing:0.000000pt;}
.ls3_c00445{letter-spacing:0.006400pt;}
.ls5_c00445{letter-spacing:0.010667pt;}
.ls0_c00445{letter-spacing:0.019200pt;}
.ws0_c00445{word-spacing:-14.666667pt;}
.ws1_c00445{word-spacing:0.000000pt;}
._6_c00445{margin-left:-8.256000pt;}
._9_c00445{margin-left:-7.087200pt;}
._b_c00445{margin-left:-4.713067pt;}
._c_c00445{margin-left:-3.202667pt;}
._4_c00445{margin-left:-2.028800pt;}
._3_c00445{margin-left:-1.120000pt;}
._7_c00445{width:1.207467pt;}
._2_c00445{width:2.553600pt;}
._1_c00445{width:4.076800pt;}
._a_c00445{width:5.408533pt;}
._0_c00445{width:6.675200pt;}
._5_c00445{width:8.646400pt;}
._8_c00445{width:10.160267pt;}
._e_c00445{width:11.462400pt;}
._d_c00445{width:12.588800pt;}
.fs0_c00445{font-size:48.000000pt;}
.fs2_c00445{font-size:53.333333pt;}
.fs1_c00445{font-size:64.000000pt;}
.y0_c00445{bottom:0.000000pt;}
.y3_c00445{bottom:9.333333pt;}
.y2_c00445{bottom:25.333333pt;}
.yd_c00445{bottom:60.000000pt;}
.yb_c00445{bottom:134.666667pt;}
.ya_c00445{bottom:153.333333pt;}
.y9_c00445{bottom:192.000000pt;}
.y8_c00445{bottom:212.000000pt;}
.y7_c00445{bottom:250.666667pt;}
.y6_c00445{bottom:274.666667pt;}
.y5_c00445{bottom:317.333333pt;}
.y4_c00445{bottom:360.000000pt;}
.y1_c00445{bottom:442.666667pt;}
.yc_c00445{bottom:1061.333333pt;}
.h6_c00445{height:37.968750pt;}
.h5_c00445{height:38.072917pt;}
.h9_c00445{height:39.296875pt;}
.h2_c00445{height:45.117188pt;}
.h3_c00445{height:45.562500pt;}
.h4_c00445{height:45.687500pt;}
.h7_c00445{height:46.593750pt;}
.h8_c00445{height:49.843750pt;}
.h1_c00445{height:546.666667pt;}
.h0_c00445{height:1122.666667pt;}
.w1_c00445{width:608.399867pt;}
.w0_c00445{width:793.333333pt;}
.x0_c00445{left:0.000000pt;}
.x2_c00445{left:35.975320pt;}
.x1_c00445{left:44.000000pt;}
.x3_c00445{left:252.710667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f1e7e023bf36cc6a4587803b.woff2')format("woff");}.ff1_c00446{font-family:ff1_c00446;line-height:1.010254;font-style:normal;font-weight:normal;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_87cc1b9d26222dad9798fa26.woff2')format("woff");}.ff2_c00446{font-family:ff2_c00446;line-height:0.986816;font-style:normal;font-weight:normal;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_87086f9357dde6574d7ca87a.woff2')format("woff");}.ff3_c00446{font-family:ff3_c00446;line-height:0.932129;font-style:normal;font-weight:normal;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_eb04a2b440aa003979681ef5.woff2')format("woff");}.ff4_c00446{font-family:ff4_c00446;line-height:0.932129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00446;src:url('chunks/assets/font_7d3862dd54a84bbf8f04285e.woff2')format("woff");}.ff5_c00446{font-family:ff5_c00446;line-height:1.155762;font-style: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;}
.ls3_c00446{letter-spacing:-0.014400px;}
.ls4_c00446{letter-spacing:-0.006000px;}
.ls2_c00446{letter-spacing:0.000000px;}
.ls1_c00446{letter-spacing:0.012000px;}
.ls0_c00446{letter-spacing:0.864000px;}
.sc__c00446{text-shadow:none;}
.sc0_c00446{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00446{-webkit-text-stroke:0px transparent;}
.sc0_c00446{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00446{word-spacing:-18.000000px;}
.ws1_c00446{word-spacing:-0.072000px;}
.ws2_c00446{word-spacing:0.000000px;}
._1e_c00446{margin-left:-9.403200px;}
._f_c00446{margin-left:-7.308000px;}
._1_c00446{margin-left:-5.356800px;}
._3_c00446{margin-left:-3.700800px;}
._7_c00446{margin-left:-2.613600px;}
._6_c00446{margin-left:-1.418400px;}
._0_c00446{width:1.742400px;}
._5_c00446{width:2.959200px;}
._8_c00446{width:3.967200px;}
._4_c00446{width:5.292000px;}
._2_c00446{width:6.717600px;}
._a_c00446{width:8.323200px;}
._9_c00446{width:9.698400px;}
._d_c00446{width:11.512800px;}
._e_c00446{width:12.708000px;}
._b_c00446{width:13.924800px;}
._c_c00446{width:15.012000px;}
._17_c00446{width:16.812000px;}
._16_c00446{width:19.324800px;}
._12_c00446{width:20.930400px;}
._10_c00446{width:22.442400px;}
._13_c00446{width:23.702400px;}
._11_c00446{width:25.106400px;}
._15_c00446{width:27.703380px;}
._14_c00446{width:28.951200px;}
._18_c00446{width:32.961600px;}
._19_c00446{width:34.776000px;}
._1a_c00446{width:36.122400px;}
._1c_c00446{width:37.317600px;}
._1b_c00446{width:38.404800px;}
._1d_c00446{width:40.060800px;}
.fc0_c00446{color:rgb(0,0,0);}
.fs1_c00446{font-size:60.000000px;}
.fs0_c00446{font-size:72.000000px;}
.y0_c00446{bottom:0.000000px;}
.y26_c00446{bottom:67.500000px;}
.y24_c00446{bottom:201.000000px;}
.y23_c00446{bottom:222.000000px;}
.y22_c00446{bottom:243.000000px;}
.y21_c00446{bottom:264.000000px;}
.y20_c00446{bottom:285.000000px;}
.y1f_c00446{bottom:306.000000px;}
.y1e_c00446{bottom:327.000000px;}
.y1d_c00446{bottom:348.000000px;}
.y1c_c00446{bottom:369.000000px;}
.y1b_c00446{bottom:390.000000px;}
.y1a_c00446{bottom:411.000000px;}
.y19_c00446{bottom:432.000000px;}
.y18_c00446{bottom:453.000000px;}
.y17_c00446{bottom:474.000000px;}
.y16_c00446{bottom:517.500000px;}
.y15_c00446{bottom:538.500000px;}
.y14_c00446{bottom:583.500000px;}
.y13_c00446{bottom:631.500000px;}
.y12_c00446{bottom:675.000000px;}
.y11_c00446{bottom:718.500000px;}
.y10_c00446{bottom:739.500000px;}
.yf_c00446{bottom:760.500000px;}
.ye_c00446{bottom:781.500000px;}
.yd_c00446{bottom:823.500000px;}
.yc_c00446{bottom:844.500000px;}
.yb_c00446{bottom:865.500000px;}
.ya_c00446{bottom:886.500000px;}
.y9_c00446{bottom:928.500000px;}
.y8_c00446{bottom:949.500000px;}
.y7_c00446{bottom:970.500000px;}
.y6_c00446{bottom:991.500000px;}
.y5_c00446{bottom:1012.500000px;}
.y4_c00446{bottom:1033.500000px;}
.y3_c00446{bottom:1054.500000px;}
.y2_c00446{bottom:1075.500000px;}
.y1_c00446{bottom:1096.500000px;}
.y25_c00446{bottom:1194.000000px;}
.h3_c00446{height:42.714844px;}
.h2_c00446{height:51.257812px;}
.h1_c00446{height:52.417969px;}
.h4_c00446{height:56.074219px;}
.h0_c00446{height:1263.000000px;}
.w0_c00446{width:892.500000px;}
.x0_c00446{left:0.000000px;}
.x1_c00446{left:134.787405px;}
.x2_c00446{left:432.515100px;}
.x3_c00446{left:817.725150px;}
@media print{
.v0_c00446{vertical-align:0.000000pt;}
.ls3_c00446{letter-spacing:-0.012800pt;}
.ls4_c00446{letter-spacing:-0.005333pt;}
.ls2_c00446{letter-spacing:0.000000pt;}
.ls1_c00446{letter-spacing:0.010667pt;}
.ls0_c00446{letter-spacing:0.768000pt;}
.ws0_c00446{word-spacing:-16.000000pt;}
.ws1_c00446{word-spacing:-0.064000pt;}
.ws2_c00446{word-spacing:0.000000pt;}
._1e_c00446{margin-left:-8.358400pt;}
._f_c00446{margin-left:-6.496000pt;}
._1_c00446{margin-left:-4.761600pt;}
._3_c00446{margin-left:-3.289600pt;}
._7_c00446{margin-left:-2.323200pt;}
._6_c00446{margin-left:-1.260800pt;}
._0_c00446{width:1.548800pt;}
._5_c00446{width:2.630400pt;}
._8_c00446{width:3.526400pt;}
._4_c00446{width:4.704000pt;}
._2_c00446{width:5.971200pt;}
._a_c00446{width:7.398400pt;}
._9_c00446{width:8.620800pt;}
._d_c00446{width:10.233600pt;}
._e_c00446{width:11.296000pt;}
._b_c00446{width:12.377600pt;}
._c_c00446{width:13.344000pt;}
._17_c00446{width:14.944000pt;}
._16_c00446{width:17.177600pt;}
._12_c00446{width:18.604800pt;}
._10_c00446{width:19.948800pt;}
._13_c00446{width:21.068800pt;}
._11_c00446{width:22.316800pt;}
._15_c00446{width:24.625227pt;}
._14_c00446{width:25.734400pt;}
._18_c00446{width:29.299200pt;}
._19_c00446{width:30.912000pt;}
._1a_c00446{width:32.108800pt;}
._1c_c00446{width:33.171200pt;}
._1b_c00446{width:34.137600pt;}
._1d_c00446{width:35.609600pt;}
.fs1_c00446{font-size:53.333333pt;}
.fs0_c00446{font-size:64.000000pt;}
.y0_c00446{bottom:0.000000pt;}
.y26_c00446{bottom:60.000000pt;}
.y24_c00446{bottom:178.666667pt;}
.y23_c00446{bottom:197.333333pt;}
.y22_c00446{bottom:216.000000pt;}
.y21_c00446{bottom:234.666667pt;}
.y20_c00446{bottom:253.333333pt;}
.y1f_c00446{bottom:272.000000pt;}
.y1e_c00446{bottom:290.666667pt;}
.y1d_c00446{bottom:309.333333pt;}
.y1c_c00446{bottom:328.000000pt;}
.y1b_c00446{bottom:346.666667pt;}
.y1a_c00446{bottom:365.333333pt;}
.y19_c00446{bottom:384.000000pt;}
.y18_c00446{bottom:402.666667pt;}
.y17_c00446{bottom:421.333333pt;}
.y16_c00446{bottom:460.000000pt;}
.y15_c00446{bottom:478.666667pt;}
.y14_c00446{bottom:518.666667pt;}
.y13_c00446{bottom:561.333333pt;}
.y12_c00446{bottom:600.000000pt;}
.y11_c00446{bottom:638.666667pt;}
.y10_c00446{bottom:657.333333pt;}
.yf_c00446{bottom:676.000000pt;}
.ye_c00446{bottom:694.666667pt;}
.yd_c00446{bottom:732.000000pt;}
.yc_c00446{bottom:750.666667pt;}
.yb_c00446{bottom:769.333333pt;}
.ya_c00446{bottom:788.000000pt;}
.y9_c00446{bottom:825.333333pt;}
.y8_c00446{bottom:844.000000pt;}
.y7_c00446{bottom:862.666667pt;}
.y6_c00446{bottom:881.333333pt;}
.y5_c00446{bottom:900.000000pt;}
.y4_c00446{bottom:918.666667pt;}
.y3_c00446{bottom:937.333333pt;}
.y2_c00446{bottom:956.000000pt;}
.y1_c00446{bottom:974.666667pt;}
.y25_c00446{bottom:1061.333333pt;}
.h3_c00446{height:37.968750pt;}
.h2_c00446{height:45.562500pt;}
.h1_c00446{height:46.593750pt;}
.h4_c00446{height:49.843750pt;}
.h0_c00446{height:1122.666667pt;}
.w0_c00446{width:793.333333pt;}
.x0_c00446{left:0.000000pt;}
.x1_c00446{left:119.811027pt;}
.x2_c00446{left:384.457867pt;}
.x3_c00446{left:726.866800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bcccad41d326939fc07cd8e6.woff2')format("woff");}.ff1_c00447{font-family:ff1_c00447;line-height:0.932129;font-style:normal;font-weight:normal;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_a841ab23aa3ac5bde1d8ec0e.woff2')format("woff");}.ff2_c00447{font-family:ff2_c00447;line-height:0.932129;font-style:normal;font-weight:normal;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_da4d2e391542b703cf3afcd9.woff2')format("woff");}.ff3_c00447{font-family:ff3_c00447;line-height:1.005371;font-style:normal;font-weight:normal;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_fb1bbe22ed494b825f573023.woff2')format("woff");}.ff4_c00447{font-family:ff4_c00447;line-height:1.010254;font-style:normal;font-weight:normal;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_06a9e41b47e3e1897ab603e2.woff2')format("woff");}.ff5_c00447{font-family:ff5_c00447;line-height:0.755859;font-style:normal;font-weight: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_c00447;src:url('chunks/assets/font_44c401a52501ac938532de08.woff2')format("woff");}.ff6_c00447{font-family:ff6_c00447;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00447{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00447{vertical-align:0.000000px;}
.ls1_c00447{letter-spacing:-0.006000px;}
.ls0_c00447{letter-spacing:0.000000px;}
.ls2_c00447{letter-spacing:0.012000px;}
.sc__c00447{text-shadow:none;}
.sc0_c00447{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00447{-webkit-text-stroke:0px transparent;}
.sc0_c00447{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00447{word-spacing:-18.000000px;}
.ws1_c00447{word-spacing:0.000000px;}
._0_c00447{margin-left:-9.482400px;}
._f_c00447{margin-left:-6.624000px;}
._c_c00447{margin-left:-4.836000px;}
._11_c00447{margin-left:-3.548400px;}
._6_c00447{margin-left:-2.436000px;}
._4_c00447{margin-left:-1.182000px;}
._a_c00447{width:1.272000px;}
._2_c00447{width:2.322000px;}
._7_c00447{width:3.468000px;}
._e_c00447{width:4.700100px;}
._8_c00447{width:6.071700px;}
._3_c00447{width:7.242000px;}
._b_c00447{width:8.376000px;}
._1_c00447{width:9.558000px;}
._5_c00447{width:10.716000px;}
._9_c00447{width:11.880000px;}
._10_c00447{width:12.928800px;}
._d_c00447{width:14.364000px;}
._15_c00447{width:15.549600px;}
._12_c00447{width:16.581600px;}
._14_c00447{width:20.001600px;}
._13_c00447{width:22.209600px;}
.fc0_c00447{color:rgb(0,0,0);}
.fs1_c00447{font-size:60.000000px;}
.fs0_c00447{font-size:72.000000px;}
.y0_c00447{bottom:0.000000px;}
.y18_c00447{bottom:67.500000px;}
.y16_c00447{bottom:553.500000px;}
.y15_c00447{bottom:574.500000px;}
.y14_c00447{bottom:595.500000px;}
.y13_c00447{bottom:616.500000px;}
.y12_c00447{bottom:637.500000px;}
.y11_c00447{bottom:658.500000px;}
.y10_c00447{bottom:679.500000px;}
.yf_c00447{bottom:700.500000px;}
.ye_c00447{bottom:721.500000px;}
.yd_c00447{bottom:742.500000px;}
.yc_c00447{bottom:763.500000px;}
.yb_c00447{bottom:784.500000px;}
.ya_c00447{bottom:805.500000px;}
.y9_c00447{bottom:826.500000px;}
.y8_c00447{bottom:847.500000px;}
.y7_c00447{bottom:868.500000px;}
.y6_c00447{bottom:889.500000px;}
.y5_c00447{bottom:933.000000px;}
.y4_c00447{bottom:954.000000px;}
.y3_c00447{bottom:999.000000px;}
.y2_c00447{bottom:1047.000000px;}
.y1_c00447{bottom:1095.000000px;}
.y17_c00447{bottom:1194.000000px;}
.h2_c00447{height:42.714844px;}
.h6_c00447{height:44.208984px;}
.h1_c00447{height:51.257812px;}
.h3_c00447{height:52.242188px;}
.h4_c00447{height:52.417969px;}
.h5_c00447{height:56.074219px;}
.h0_c00447{height:1263.000000px;}
.w0_c00447{width:892.500000px;}
.x0_c00447{left:0.000000px;}
.x1_c00447{left:49.748025px;}
@media print{
.v0_c00447{vertical-align:0.000000pt;}
.ls1_c00447{letter-spacing:-0.005333pt;}
.ls0_c00447{letter-spacing:0.000000pt;}
.ls2_c00447{letter-spacing:0.010667pt;}
.ws0_c00447{word-spacing:-16.000000pt;}
.ws1_c00447{word-spacing:0.000000pt;}
._0_c00447{margin-left:-8.428800pt;}
._f_c00447{margin-left:-5.888000pt;}
._c_c00447{margin-left:-4.298667pt;}
._11_c00447{margin-left:-3.154133pt;}
._6_c00447{margin-left:-2.165333pt;}
._4_c00447{margin-left:-1.050667pt;}
._a_c00447{width:1.130667pt;}
._2_c00447{width:2.064000pt;}
._7_c00447{width:3.082667pt;}
._e_c00447{width:4.177867pt;}
._8_c00447{width:5.397067pt;}
._3_c00447{width:6.437333pt;}
._b_c00447{width:7.445333pt;}
._1_c00447{width:8.496000pt;}
._5_c00447{width:9.525333pt;}
._9_c00447{width:10.560000pt;}
._10_c00447{width:11.492267pt;}
._d_c00447{width:12.768000pt;}
._15_c00447{width:13.821867pt;}
._12_c00447{width:14.739200pt;}
._14_c00447{width:17.779200pt;}
._13_c00447{width:19.741867pt;}
.fs1_c00447{font-size:53.333333pt;}
.fs0_c00447{font-size:64.000000pt;}
.y0_c00447{bottom:0.000000pt;}
.y18_c00447{bottom:60.000000pt;}
.y16_c00447{bottom:492.000000pt;}
.y15_c00447{bottom:510.666667pt;}
.y14_c00447{bottom:529.333333pt;}
.y13_c00447{bottom:548.000000pt;}
.y12_c00447{bottom:566.666667pt;}
.y11_c00447{bottom:585.333333pt;}
.y10_c00447{bottom:604.000000pt;}
.yf_c00447{bottom:622.666667pt;}
.ye_c00447{bottom:641.333333pt;}
.yd_c00447{bottom:660.000000pt;}
.yc_c00447{bottom:678.666667pt;}
.yb_c00447{bottom:697.333333pt;}
.ya_c00447{bottom:716.000000pt;}
.y9_c00447{bottom:734.666667pt;}
.y8_c00447{bottom:753.333333pt;}
.y7_c00447{bottom:772.000000pt;}
.y6_c00447{bottom:790.666667pt;}
.y5_c00447{bottom:829.333333pt;}
.y4_c00447{bottom:848.000000pt;}
.y3_c00447{bottom:888.000000pt;}
.y2_c00447{bottom:930.666667pt;}
.y1_c00447{bottom:973.333333pt;}
.y17_c00447{bottom:1061.333333pt;}
.h2_c00447{height:37.968750pt;}
.h6_c00447{height:39.296875pt;}
.h1_c00447{height:45.562500pt;}
.h3_c00447{height:46.437500pt;}
.h4_c00447{height:46.593750pt;}
.h5_c00447{height:49.843750pt;}
.h0_c00447{height:1122.666667pt;}
.w0_c00447{width:793.333333pt;}
.x0_c00447{left:0.000000pt;}
.x1_c00447{left:44.220467pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_81d51989be65b275da20cd3f.woff2')format("woff");}.ff1_c00448{font-family:ff1_c00448;line-height:0.939453;font-style:normal;font-weight:normal;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_a900b9eb33554e9d506a320e.woff2')format("woff");}.ff2_c00448{font-family:ff2_c00448;line-height:1.163086;font-style:normal;font-weight:normal;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_ef8e3608d38b87efb61da509.woff2')format("woff");}.ff3_c00448{font-family:ff3_c00448;line-height:1.155762;font-style:normal;font-weight:normal;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_22176d1db305d39f4ae17b3f.woff2')format("woff");}.ff4_c00448{font-family:ff4_c00448;line-height:0.902344;font-style:normal;font-weight:normal;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_b6638ec496825a5e38958f6e.woff2')format("woff");}.ff5_c00448{font-family:ff5_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;}
.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);}
.v2_c00448{vertical-align:-33.000000px;}
.v0_c00448{vertical-align:0.000000px;}
.v1_c00448{vertical-align:23.086200px;}
.ls4_c00448{letter-spacing:0.000000px;}
.ls1_c00448{letter-spacing:0.007200px;}
.ls0_c00448{letter-spacing:0.007800px;}
.ls3_c00448{letter-spacing:0.012000px;}
.ls2_c00448{letter-spacing:1.995000px;}
.sc__c00448{text-shadow:none;}
.sc0_c00448{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00448{-webkit-text-stroke:0px transparent;}
.sc0_c00448{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00448{word-spacing:-13.200000px;}
.ws1_c00448{word-spacing:-10.000001px;}
.ws2_c00448{word-spacing:0.000000px;}
._d_c00448{margin-left:-10.554600px;}
._1c_c00448{margin-left:-7.889001px;}
._f_c00448{margin-left:-6.717600px;}
._0_c00448{margin-left:-4.075200px;}
._2_c00448{margin-left:-2.908800px;}
._7_c00448{margin-left:-1.144800px;}
._4_c00448{width:1.346400px;}
._5_c00448{width:2.541600px;}
._3_c00448{width:3.571200px;}
._1_c00448{width:4.708800px;}
._e_c00448{width:6.271200px;}
._8_c00448{width:7.272000px;}
._6_c00448{width:9.165600px;}
._16_c00448{width:10.411200px;}
._1a_c00448{width:11.412000px;}
._1b_c00448{width:12.456000px;}
._9_c00448{width:14.306400px;}
._a_c00448{width:16.164000px;}
._c_c00448{width:17.690400px;}
._19_c00448{width:18.748800px;}
._b_c00448{width:20.959200px;}
._17_c00448{width:22.219200px;}
._18_c00448{width:23.378400px;}
._10_c00448{width:25.617600px;}
._12_c00448{width:26.848800px;}
._11_c00448{width:29.008800px;}
._15_c00448{width:31.291200px;}
._13_c00448{width:33.285600px;}
._14_c00448{width:34.444800px;}
.fc1_c00448{color:rgb(255,255,255);}
.fc0_c00448{color:rgb(0,0,0);}
.fs5_c00448{font-size:40.000002px;}
.fs2_c00448{font-size:48.000000px;}
.fs4_c00448{font-size:60.000000px;}
.fs1_c00448{font-size:72.000000px;}
.fs0_c00448{font-size:78.000000px;}
.fs3_c00448{font-size:96.000000px;}
.y0_c00448{bottom:0.000000px;}
.y19_c00448{bottom:67.500000px;}
.y1d_c00448{bottom:140.250000px;}
.y1c_c00448{bottom:189.750000px;}
.y1b_c00448{bottom:231.000000px;}
.y1a_c00448{bottom:258.750000px;}
.y16_c00448{bottom:304.500000px;}
.y15_c00448{bottom:331.500000px;}
.y14_c00448{bottom:358.500000px;}
.y13_c00448{bottom:406.500000px;}
.y12_c00448{bottom:433.500000px;}
.y11_c00448{bottom:460.500000px;}
.y10_c00448{bottom:487.500000px;}
.yf_c00448{bottom:514.500000px;}
.ye_c00448{bottom:541.500000px;}
.yd_c00448{bottom:568.500000px;}
.yc_c00448{bottom:615.000000px;}
.yb_c00448{bottom:685.500000px;}
.ya_c00448{bottom:712.500000px;}
.y9_c00448{bottom:739.500000px;}
.y8_c00448{bottom:766.500000px;}
.y7_c00448{bottom:793.500000px;}
.y6_c00448{bottom:820.500000px;}
.y5_c00448{bottom:868.500000px;}
.y4_c00448{bottom:895.500000px;}
.y3_c00448{bottom:922.500000px;}
.y2_c00448{bottom:949.500000px;}
.y1_c00448{bottom:996.000000px;}
.y17_c00448{bottom:1066.500000px;}
.y18_c00448{bottom:1194.000000px;}
.h6_c00448{height:27.343751px;}
.h7_c00448{height:41.015625px;}
.h5_c00448{height:56.074219px;}
.h1_c00448{height:56.100586px;}
.h2_c00448{height:67.746094px;}
.h3_c00448{height:68.250262px;}
.h4_c00448{height:90.328125px;}
.h0_c00448{height:1263.000000px;}
.w0_c00448{width:892.500000px;}
.x0_c00448{left:0.000000px;}
.x1_c00448{left:150.519750px;}
.x2_c00448{left:180.298860px;}
.x3_c00448{left:416.782800px;}
.x4_c00448{left:801.992850px;}
@media print{
.v2_c00448{vertical-align:-29.333333pt;}
.v0_c00448{vertical-align:0.000000pt;}
.v1_c00448{vertical-align:20.521067pt;}
.ls4_c00448{letter-spacing:0.000000pt;}
.ls1_c00448{letter-spacing:0.006400pt;}
.ls0_c00448{letter-spacing:0.006933pt;}
.ls3_c00448{letter-spacing:0.010667pt;}
.ls2_c00448{letter-spacing:1.773333pt;}
.ws0_c00448{word-spacing:-11.733333pt;}
.ws1_c00448{word-spacing:-8.888889pt;}
.ws2_c00448{word-spacing:0.000000pt;}
._d_c00448{margin-left:-9.381867pt;}
._1c_c00448{margin-left:-7.012445pt;}
._f_c00448{margin-left:-5.971200pt;}
._0_c00448{margin-left:-3.622400pt;}
._2_c00448{margin-left:-2.585600pt;}
._7_c00448{margin-left:-1.017600pt;}
._4_c00448{width:1.196800pt;}
._5_c00448{width:2.259200pt;}
._3_c00448{width:3.174400pt;}
._1_c00448{width:4.185600pt;}
._e_c00448{width:5.574400pt;}
._8_c00448{width:6.464000pt;}
._6_c00448{width:8.147200pt;}
._16_c00448{width:9.254400pt;}
._1a_c00448{width:10.144000pt;}
._1b_c00448{width:11.072000pt;}
._9_c00448{width:12.716800pt;}
._a_c00448{width:14.368000pt;}
._c_c00448{width:15.724800pt;}
._19_c00448{width:16.665600pt;}
._b_c00448{width:18.630400pt;}
._17_c00448{width:19.750400pt;}
._18_c00448{width:20.780800pt;}
._10_c00448{width:22.771200pt;}
._12_c00448{width:23.865600pt;}
._11_c00448{width:25.785600pt;}
._15_c00448{width:27.814400pt;}
._13_c00448{width:29.587200pt;}
._14_c00448{width:30.617600pt;}
.fs5_c00448{font-size:35.555557pt;}
.fs2_c00448{font-size:42.666667pt;}
.fs4_c00448{font-size:53.333333pt;}
.fs1_c00448{font-size:64.000000pt;}
.fs0_c00448{font-size:69.333333pt;}
.fs3_c00448{font-size:85.333333pt;}
.y0_c00448{bottom:0.000000pt;}
.y19_c00448{bottom:60.000000pt;}
.y1d_c00448{bottom:124.666667pt;}
.y1c_c00448{bottom:168.666667pt;}
.y1b_c00448{bottom:205.333333pt;}
.y1a_c00448{bottom:230.000000pt;}
.y16_c00448{bottom:270.666667pt;}
.y15_c00448{bottom:294.666667pt;}
.y14_c00448{bottom:318.666667pt;}
.y13_c00448{bottom:361.333333pt;}
.y12_c00448{bottom:385.333333pt;}
.y11_c00448{bottom:409.333333pt;}
.y10_c00448{bottom:433.333333pt;}
.yf_c00448{bottom:457.333333pt;}
.ye_c00448{bottom:481.333333pt;}
.yd_c00448{bottom:505.333333pt;}
.yc_c00448{bottom:546.666667pt;}
.yb_c00448{bottom:609.333333pt;}
.ya_c00448{bottom:633.333333pt;}
.y9_c00448{bottom:657.333333pt;}
.y8_c00448{bottom:681.333333pt;}
.y7_c00448{bottom:705.333333pt;}
.y6_c00448{bottom:729.333333pt;}
.y5_c00448{bottom:772.000000pt;}
.y4_c00448{bottom:796.000000pt;}
.y3_c00448{bottom:820.000000pt;}
.y2_c00448{bottom:844.000000pt;}
.y1_c00448{bottom:885.333333pt;}
.y17_c00448{bottom:948.000000pt;}
.y18_c00448{bottom:1061.333333pt;}
.h6_c00448{height:24.305557pt;}
.h7_c00448{height:36.458333pt;}
.h5_c00448{height:49.843750pt;}
.h1_c00448{height:49.867188pt;}
.h2_c00448{height:60.218750pt;}
.h3_c00448{height:60.666900pt;}
.h4_c00448{height:80.291667pt;}
.h0_c00448{height:1122.666667pt;}
.w0_c00448{width:793.333333pt;}
.x0_c00448{left:0.000000pt;}
.x1_c00448{left:133.795333pt;}
.x2_c00448{left:160.265653pt;}
.x3_c00448{left:370.473600pt;}
.x4_c00448{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1f5db4702a46f0944ecfd208.woff2')format("woff");}.ff1_c00449{font-family:ff1_c00449;line-height:0.892578;font-style:normal;font-weight:normal;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_35a715ecc49159f6a967f9cf.woff2')format("woff");}.ff2_c00449{font-family:ff2_c00449;line-height:0.933105;font-style:normal;font-weight:normal;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_aea19eb53127fa9be1e07701.woff2')format("woff");}.ff3_c00449{font-family:ff3_c00449;line-height:0.963867;font-style:normal;font-weight:normal;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_0520b135c7a3ee86fada988d.woff2')format("woff");}.ff4_c00449{font-family:ff4_c00449;line-height:0.755859;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00449;src:url('chunks/assets/font_3ee763ea5d7b1b8ce1a62ca6.woff2')format("woff");}.ff5_c00449{font-family:ff5_c00449;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00449{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00449{vertical-align:0.000000px;}
.ls1_c00449{letter-spacing:0.000000px;}
.ls0_c00449{letter-spacing:0.007200px;}
.ls3_c00449{letter-spacing:0.012000px;}
.ls2_c00449{letter-spacing:0.021600px;}
.sc__c00449{text-shadow:none;}
.sc0_c00449{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00449{-webkit-text-stroke:0px transparent;}
.sc0_c00449{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00449{word-spacing:0.000000px;}
._8_c00449{margin-left:-4.572000px;}
._0_c00449{margin-left:-2.570400px;}
._9_c00449{margin-left:-1.116000px;}
._7_c00449{width:1.036800px;}
._1_c00449{width:2.527200px;}
._3_c00449{width:3.909600px;}
._2_c00449{width:5.011200px;}
._6_c00449{width:6.660000px;}
._4_c00449{width:8.265600px;}
._5_c00449{width:10.346400px;}
._c_c00449{width:32.623200px;}
._e_c00449{width:33.645600px;}
._d_c00449{width:35.776800px;}
._a_c00449{width:36.878400px;}
._b_c00449{width:39.441600px;}
.fc0_c00449{color:rgb(0,0,0);}
.fs1_c00449{font-size:54.000000px;}
.fs2_c00449{font-size:60.000000px;}
.fs0_c00449{font-size:72.000000px;}
.y0_c00449{bottom:0.000000px;}
.y8_c00449{bottom:12.000000px;}
.yb_c00449{bottom:67.500000px;}
.y9_c00449{bottom:132.000000px;}
.y7_c00449{bottom:475.500000px;}
.y6_c00449{bottom:940.500000px;}
.y5_c00449{bottom:967.500000px;}
.y4_c00449{bottom:994.500000px;}
.y3_c00449{bottom:1021.500000px;}
.y2_c00449{bottom:1048.500000px;}
.y1_c00449{bottom:1095.000000px;}
.ya_c00449{bottom:1194.000000px;}
.h4_c00449{height:41.633789px;}
.h7_c00449{height:44.208984px;}
.h2_c00449{height:51.187500px;}
.h1_c00449{height:51.539062px;}
.h6_c00449{height:56.074219px;}
.h5_c00449{height:315.000000px;}
.h3_c00449{height:433.500000px;}
.h0_c00449{height:1263.000000px;}
.w1_c00449{width:676.500000px;}
.w0_c00449{width:892.500000px;}
.x0_c00449{left:0.000000px;}
.x1_c00449{left:65.480310px;}
.x2_c00449{left:221.084100px;}
.x3_c00449{left:279.873000px;}
@media print{
.v0_c00449{vertical-align:0.000000pt;}
.ls1_c00449{letter-spacing:0.000000pt;}
.ls0_c00449{letter-spacing:0.006400pt;}
.ls3_c00449{letter-spacing:0.010667pt;}
.ls2_c00449{letter-spacing:0.019200pt;}
.ws0_c00449{word-spacing:0.000000pt;}
._8_c00449{margin-left:-4.064000pt;}
._0_c00449{margin-left:-2.284800pt;}
._9_c00449{margin-left:-0.992000pt;}
._7_c00449{width:0.921600pt;}
._1_c00449{width:2.246400pt;}
._3_c00449{width:3.475200pt;}
._2_c00449{width:4.454400pt;}
._6_c00449{width:5.920000pt;}
._4_c00449{width:7.347200pt;}
._5_c00449{width:9.196800pt;}
._c_c00449{width:28.998400pt;}
._e_c00449{width:29.907200pt;}
._d_c00449{width:31.801600pt;}
._a_c00449{width:32.780800pt;}
._b_c00449{width:35.059200pt;}
.fs1_c00449{font-size:48.000000pt;}
.fs2_c00449{font-size:53.333333pt;}
.fs0_c00449{font-size:64.000000pt;}
.y0_c00449{bottom:0.000000pt;}
.y8_c00449{bottom:10.666667pt;}
.yb_c00449{bottom:60.000000pt;}
.y9_c00449{bottom:117.333333pt;}
.y7_c00449{bottom:422.666667pt;}
.y6_c00449{bottom:836.000000pt;}
.y5_c00449{bottom:860.000000pt;}
.y4_c00449{bottom:884.000000pt;}
.y3_c00449{bottom:908.000000pt;}
.y2_c00449{bottom:932.000000pt;}
.y1_c00449{bottom:973.333333pt;}
.ya_c00449{bottom:1061.333333pt;}
.h4_c00449{height:37.007812pt;}
.h7_c00449{height:39.296875pt;}
.h2_c00449{height:45.500000pt;}
.h1_c00449{height:45.812500pt;}
.h6_c00449{height:49.843750pt;}
.h5_c00449{height:280.000000pt;}
.h3_c00449{height:385.333333pt;}
.h0_c00449{height:1122.666667pt;}
.w1_c00449{width:601.333333pt;}
.w0_c00449{width:793.333333pt;}
.x0_c00449{left:0.000000pt;}
.x1_c00449{left:58.204720pt;}
.x2_c00449{left:196.519200pt;}
.x3_c00449{left:248.776000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ecd53eea67c3b0d085d993fc.woff2')format("woff");}.ff1_c00450{font-family:ff1_c00450;line-height:0.933105;font-style:normal;font-weight:normal;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_3a5feddd760c4f9afc9d2ce7.woff2')format("woff");}.ff2_c00450{font-family:ff2_c00450;line-height:0.987793;font-style:normal;font-weight:normal;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_77931431b4cb681b00bfd513.woff2')format("woff");}.ff3_c00450{font-family:ff3_c00450;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00450{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00450{vertical-align:0.000000px;}
.ls1_c00450{letter-spacing:0.000000px;}
.ls0_c00450{letter-spacing:0.012000px;}
.sc__c00450{text-shadow:none;}
.sc0_c00450{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00450{-webkit-text-stroke:0px transparent;}
.sc0_c00450{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00450{word-spacing:0.000000px;}
._2_c00450{margin-left:-4.500000px;}
._6_c00450{margin-left:-3.038400px;}
._4_c00450{margin-left:-1.540800px;}
._9_c00450{width:1.022400px;}
._1_c00450{width:2.109600px;}
._0_c00450{width:3.340800px;}
._5_c00450{width:4.766400px;}
._c_c00450{width:6.235200px;}
._3_c00450{width:7.315200px;}
._8_c00450{width:8.359200px;}
._b_c00450{width:9.849600px;}
._7_c00450{width:11.361600px;}
._a_c00450{width:12.376800px;}
._d_c00450{width:15.544800px;}
._e_c00450{width:17.769600px;}
.fc0_c00450{color:rgb(0,0,0);}
.fs1_c00450{font-size:54.000000px;}
.fs2_c00450{font-size:60.000000px;}
.fs0_c00450{font-size:72.000000px;}
.y0_c00450{bottom:0.000000px;}
.y5_c00450{bottom:10.500000px;}
.y4_c00450{bottom:28.500000px;}
.yc_c00450{bottom:67.500000px;}
.ya_c00450{bottom:139.500000px;}
.y9_c00450{bottom:514.500000px;}
.y8_c00450{bottom:541.500000px;}
.y7_c00450{bottom:568.500000px;}
.y6_c00450{bottom:595.500000px;}
.y3_c00450{bottom:640.500000px;}
.y2_c00450{bottom:1068.000000px;}
.y1_c00450{bottom:1095.000000px;}
.yb_c00450{bottom:1194.000000px;}
.h3_c00450{height:42.292969px;}
.h1_c00450{height:51.187500px;}
.h5_c00450{height:56.074219px;}
.h4_c00450{height:343.500000px;}
.h2_c00450{height:396.000000px;}
.h0_c00450{height:1263.000000px;}
.w1_c00450{width:676.500000px;}
.w0_c00450{width:892.500000px;}
.x0_c00450{left:0.000000px;}
.x4_c00450{left:8.249977px;}
.x2_c00450{left:34.200045px;}
.x1_c00450{left:150.519750px;}
.x5_c00450{left:195.883650px;}
.x3_c00450{left:230.579550px;}
.x6_c00450{left:416.782800px;}
.x7_c00450{left:801.992850px;}
@media print{
.v0_c00450{vertical-align:0.000000pt;}
.ls1_c00450{letter-spacing:0.000000pt;}
.ls0_c00450{letter-spacing:0.010667pt;}
.ws0_c00450{word-spacing:0.000000pt;}
._2_c00450{margin-left:-4.000000pt;}
._6_c00450{margin-left:-2.700800pt;}
._4_c00450{margin-left:-1.369600pt;}
._9_c00450{width:0.908800pt;}
._1_c00450{width:1.875200pt;}
._0_c00450{width:2.969600pt;}
._5_c00450{width:4.236800pt;}
._c_c00450{width:5.542400pt;}
._3_c00450{width:6.502400pt;}
._8_c00450{width:7.430400pt;}
._b_c00450{width:8.755200pt;}
._7_c00450{width:10.099200pt;}
._a_c00450{width:11.001600pt;}
._d_c00450{width:13.817600pt;}
._e_c00450{width:15.795200pt;}
.fs1_c00450{font-size:48.000000pt;}
.fs2_c00450{font-size:53.333333pt;}
.fs0_c00450{font-size:64.000000pt;}
.y0_c00450{bottom:0.000000pt;}
.y5_c00450{bottom:9.333333pt;}
.y4_c00450{bottom:25.333333pt;}
.yc_c00450{bottom:60.000000pt;}
.ya_c00450{bottom:124.000000pt;}
.y9_c00450{bottom:457.333333pt;}
.y8_c00450{bottom:481.333333pt;}
.y7_c00450{bottom:505.333333pt;}
.y6_c00450{bottom:529.333333pt;}
.y3_c00450{bottom:569.333333pt;}
.y2_c00450{bottom:949.333333pt;}
.y1_c00450{bottom:973.333333pt;}
.yb_c00450{bottom:1061.333333pt;}
.h3_c00450{height:37.593750pt;}
.h1_c00450{height:45.500000pt;}
.h5_c00450{height:49.843750pt;}
.h4_c00450{height:305.333333pt;}
.h2_c00450{height:352.000000pt;}
.h0_c00450{height:1122.666667pt;}
.w1_c00450{width:601.333333pt;}
.w0_c00450{width:793.333333pt;}
.x0_c00450{left:0.000000pt;}
.x4_c00450{left:7.333313pt;}
.x2_c00450{left:30.400040pt;}
.x1_c00450{left:133.795333pt;}
.x5_c00450{left:174.118800pt;}
.x3_c00450{left:204.959600pt;}
.x6_c00450{left:370.473600pt;}
.x7_c00450{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3151c6f30d18aabc6dd770a8.woff2')format("woff");}.ff1_c00451{font-family:ff1_c00451;line-height:0.934082;font-style:normal;font-weight:normal;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_8fcdbfb280edcce6f5223697.woff2')format("woff");}.ff2_c00451{font-family:ff2_c00451;line-height:0.976074;font-style:normal;font-weight:normal;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_02769c82bf033be40c6b1ad0.woff2')format("woff");}.ff3_c00451{font-family:ff3_c00451;line-height:0.756836;font-style:normal;font-weight:normal;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_a35ceaa465786435548efbae.woff2')format("woff");}.ff4_c00451{font-family:ff4_c00451;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00451{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00451{vertical-align:0.000000px;}
.ls0_c00451{letter-spacing:0.000000px;}
.ls2_c00451{letter-spacing:0.012000px;}
.ls1_c00451{letter-spacing:0.021600px;}
.sc__c00451{text-shadow:none;}
.sc0_c00451{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00451{-webkit-text-stroke:0px transparent;}
.sc0_c00451{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00451{word-spacing:0.000000px;}
._8_c00451{margin-left:-7.329600px;}
._0_c00451{margin-left:-2.887200px;}
._4_c00451{margin-left:-1.152000px;}
._2_c00451{width:1.216800px;}
._7_c00451{width:2.217600px;}
._6_c00451{width:3.240000px;}
._9_c00451{width:6.134400px;}
._3_c00451{width:15.688800px;}
._1_c00451{width:16.833600px;}
._5_c00451{width:18.136800px;}
.fc0_c00451{color:rgb(0,0,0);}
.fs1_c00451{font-size:54.000000px;}
.fs2_c00451{font-size:60.000000px;}
.fs0_c00451{font-size:72.000000px;}
.y0_c00451{bottom:0.000000px;}
.y4_c00451{bottom:12.000000px;}
.y9_c00451{bottom:67.500000px;}
.y7_c00451{bottom:160.500000px;}
.y6_c00451{bottom:615.000000px;}
.y5_c00451{bottom:642.000000px;}
.y3_c00451{bottom:687.000000px;}
.y2_c00451{bottom:1068.000000px;}
.y1_c00451{bottom:1095.000000px;}
.y8_c00451{bottom:1194.000000px;}
.h3_c00451{height:42.292969px;}
.h6_c00451{height:44.208984px;}
.h1_c00451{height:51.257812px;}
.h5_c00451{height:56.074219px;}
.h2_c00451{height:349.500000px;}
.h4_c00451{height:423.000000px;}
.h0_c00451{height:1263.000000px;}
.w1_c00451{width:676.500000px;}
.w0_c00451{width:892.500000px;}
.x0_c00451{left:0.000000px;}
.x3_c00451{left:62.248170px;}
.x1_c00451{left:65.480310px;}
.x2_c00451{left:185.560950px;}
@media print{
.v0_c00451{vertical-align:0.000000pt;}
.ls0_c00451{letter-spacing:0.000000pt;}
.ls2_c00451{letter-spacing:0.010667pt;}
.ls1_c00451{letter-spacing:0.019200pt;}
.ws0_c00451{word-spacing:0.000000pt;}
._8_c00451{margin-left:-6.515200pt;}
._0_c00451{margin-left:-2.566400pt;}
._4_c00451{margin-left:-1.024000pt;}
._2_c00451{width:1.081600pt;}
._7_c00451{width:1.971200pt;}
._6_c00451{width:2.880000pt;}
._9_c00451{width:5.452800pt;}
._3_c00451{width:13.945600pt;}
._1_c00451{width:14.963200pt;}
._5_c00451{width:16.121600pt;}
.fs1_c00451{font-size:48.000000pt;}
.fs2_c00451{font-size:53.333333pt;}
.fs0_c00451{font-size:64.000000pt;}
.y0_c00451{bottom:0.000000pt;}
.y4_c00451{bottom:10.666667pt;}
.y9_c00451{bottom:60.000000pt;}
.y7_c00451{bottom:142.666667pt;}
.y6_c00451{bottom:546.666667pt;}
.y5_c00451{bottom:570.666667pt;}
.y3_c00451{bottom:610.666667pt;}
.y2_c00451{bottom:949.333333pt;}
.y1_c00451{bottom:973.333333pt;}
.y8_c00451{bottom:1061.333333pt;}
.h3_c00451{height:37.593750pt;}
.h6_c00451{height:39.296875pt;}
.h1_c00451{height:45.562500pt;}
.h5_c00451{height:49.843750pt;}
.h2_c00451{height:310.666667pt;}
.h4_c00451{height:376.000000pt;}
.h0_c00451{height:1122.666667pt;}
.w1_c00451{width:601.333333pt;}
.w0_c00451{width:793.333333pt;}
.x0_c00451{left:0.000000pt;}
.x3_c00451{left:55.331707pt;}
.x1_c00451{left:58.204720pt;}
.x2_c00451{left:164.943067pt;}
}





    body { margin: 0; background: #f3f4f6; }
    #page-container { margin: 0 auto; }
    .pf_c00452 {
      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_c00452 {
      padding: 42px;
      color: #374151;
      font-size: 14px;
      line-height: 1.45;
    }
    .scieee-page-failed_c00452 b {
      display: block;
      margin-bottom: 8px;
      font-size: 18px;
      color: #111827;
    }
    .scieee-page-failed_c00452 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_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_cdbe61a8d96aa83991ae2a1c.woff2')format("woff");}.ff1_c00453{font-family:ff1_c00453;line-height:1.163086;font-style:normal;font-weight:normal;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_717976b636685523fb10dd6b.woff2')format("woff");}.ff2_c00453{font-family:ff2_c00453;line-height:0.928223;font-style:normal;font-weight:normal;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_0cbd330cc0b0e0e239a9abbc.woff2')format("woff");}.ff3_c00453{font-family:ff3_c00453;line-height:0.975586;font-style:normal;font-weight:normal;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_cffc9163425bc8d286d99de8.woff2')format("woff");}.ff4_c00453{font-family:ff4_c00453;line-height:0.755859;font-style:normal;font-weight:normal;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_67e881f1be6d241dde1037c3.woff2')format("woff");}.ff5_c00453{font-family:ff5_c00453;line-height:1.155762;font-style:normal;font-weight: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_c00453;src:url('chunks/assets/font_ace669f41d9dbc6e24cbf9e4.woff2')format("woff");}.ff6_c00453{font-family:ff6_c00453;line-height:0.896973;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00453;src:url('chunks/assets/font_fface598ca229d034f52c897.woff2')format("woff");}.ff7_c00453{font-family:ff7_c00453;line-height:0.889648;font-style: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);}
.v3_c00453{vertical-align:-33.000000px;}
.v2_c00453{vertical-align:-23.086200px;}
.v0_c00453{vertical-align:0.000000px;}
.v1_c00453{vertical-align:23.086200px;}
.ls1_c00453{letter-spacing:0.000000px;}
.ls2_c00453{letter-spacing:0.007200px;}
.ls4_c00453{letter-spacing:0.012000px;}
.ls3_c00453{letter-spacing:0.021600px;}
.ls0_c00453{letter-spacing:20.254200px;}
.sc__c00453{text-shadow:none;}
.sc0_c00453{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00453{-webkit-text-stroke:0px transparent;}
.sc0_c00453{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00453{word-spacing:-10.000001px;}
.ws1_c00453{word-spacing:0.000000px;}
._a_c00453{margin-left:-10.526400px;}
._6_c00453{margin-left:-7.817040px;}
._12_c00453{margin-left:-4.958421px;}
._10_c00453{margin-left:-3.902400px;}
._8_c00453{margin-left:-2.613600px;}
._0_c00453{margin-left:-1.490400px;}
._2_c00453{width:1.879200px;}
._f_c00453{width:2.988000px;}
._5_c00453{width:4.075200px;}
._11_c00453{width:5.328000px;}
._c_c00453{width:6.393600px;}
._e_c00453{width:7.432560px;}
._b_c00453{width:8.488800px;}
._7_c00453{width:10.080000px;}
._d_c00453{width:11.093040px;}
._3_c00453{width:12.276000px;}
._4_c00453{width:14.176800px;}
._1_c00453{width:15.645600px;}
._9_c00453{width:16.826400px;}
.fc0_c00453{color:rgb(0,0,0);}
.fs4_c00453{font-size:40.000002px;}
.fs1_c00453{font-size:48.000000px;}
.fs2_c00453{font-size:54.000000px;}
.fs3_c00453{font-size:60.000000px;}
.fs0_c00453{font-size:72.000000px;}
.y0_c00453{bottom:0.000000px;}
.ye_c00453{bottom:12.000000px;}
.y10_c00453{bottom:67.500000px;}
.y11_c00453{bottom:140.250000px;}
.yd_c00453{bottom:177.000000px;}
.yc_c00453{bottom:715.500000px;}
.yb_c00453{bottom:742.500000px;}
.ya_c00453{bottom:769.500000px;}
.y9_c00453{bottom:796.500000px;}
.y8_c00453{bottom:844.500000px;}
.y7_c00453{bottom:871.500000px;}
.y6_c00453{bottom:918.000000px;}
.y5_c00453{bottom:987.000000px;}
.y4_c00453{bottom:1014.000000px;}
.y3_c00453{bottom:1041.000000px;}
.y2_c00453{bottom:1068.000000px;}
.y1_c00453{bottom:1095.000000px;}
.yf_c00453{bottom:1194.000000px;}
.h8_c00453{height:27.167970px;}
.h5_c00453{height:41.633789px;}
.h7_c00453{height:44.208984px;}
.h3_c00453{height:50.976562px;}
.h6_c00453{height:56.074219px;}
.h2_c00453{height:67.746094px;}
.h1_c00453{height:68.250262px;}
.h4_c00453{height:507.000000px;}
.h0_c00453{height:1263.000000px;}
.w1_c00453{width:676.500000px;}
.w0_c00453{width:892.500000px;}
.x0_c00453{left:0.000000px;}
.x1_c00453{left:65.480310px;}
.x2_c00453{left:237.280200px;}
@media print{
.v3_c00453{vertical-align:-29.333333pt;}
.v2_c00453{vertical-align:-20.521067pt;}
.v0_c00453{vertical-align:0.000000pt;}
.v1_c00453{vertical-align:20.521067pt;}
.ls1_c00453{letter-spacing:0.000000pt;}
.ls2_c00453{letter-spacing:0.006400pt;}
.ls4_c00453{letter-spacing:0.010667pt;}
.ls3_c00453{letter-spacing:0.019200pt;}
.ls0_c00453{letter-spacing:18.003733pt;}
.ws0_c00453{word-spacing:-8.888889pt;}
.ws1_c00453{word-spacing:0.000000pt;}
._a_c00453{margin-left:-9.356800pt;}
._6_c00453{margin-left:-6.948480pt;}
._12_c00453{margin-left:-4.407485pt;}
._10_c00453{margin-left:-3.468800pt;}
._8_c00453{margin-left:-2.323200pt;}
._0_c00453{margin-left:-1.324800pt;}
._2_c00453{width:1.670400pt;}
._f_c00453{width:2.656000pt;}
._5_c00453{width:3.622400pt;}
._11_c00453{width:4.736000pt;}
._c_c00453{width:5.683200pt;}
._e_c00453{width:6.606720pt;}
._b_c00453{width:7.545600pt;}
._7_c00453{width:8.960000pt;}
._d_c00453{width:9.860480pt;}
._3_c00453{width:10.912000pt;}
._4_c00453{width:12.601600pt;}
._1_c00453{width:13.907200pt;}
._9_c00453{width:14.956800pt;}
.fs4_c00453{font-size:35.555557pt;}
.fs1_c00453{font-size:42.666667pt;}
.fs2_c00453{font-size:48.000000pt;}
.fs3_c00453{font-size:53.333333pt;}
.fs0_c00453{font-size:64.000000pt;}
.y0_c00453{bottom:0.000000pt;}
.ye_c00453{bottom:10.666667pt;}
.y10_c00453{bottom:60.000000pt;}
.y11_c00453{bottom:124.666667pt;}
.yd_c00453{bottom:157.333333pt;}
.yc_c00453{bottom:636.000000pt;}
.yb_c00453{bottom:660.000000pt;}
.ya_c00453{bottom:684.000000pt;}
.y9_c00453{bottom:708.000000pt;}
.y8_c00453{bottom:750.666667pt;}
.y7_c00453{bottom:774.666667pt;}
.y6_c00453{bottom:816.000000pt;}
.y5_c00453{bottom:877.333333pt;}
.y4_c00453{bottom:901.333333pt;}
.y3_c00453{bottom:925.333333pt;}
.y2_c00453{bottom:949.333333pt;}
.y1_c00453{bottom:973.333333pt;}
.yf_c00453{bottom:1061.333333pt;}
.h8_c00453{height:24.149307pt;}
.h5_c00453{height:37.007812pt;}
.h7_c00453{height:39.296875pt;}
.h3_c00453{height:45.312500pt;}
.h6_c00453{height:49.843750pt;}
.h2_c00453{height:60.218750pt;}
.h1_c00453{height:60.666900pt;}
.h4_c00453{height:450.666667pt;}
.h0_c00453{height:1122.666667pt;}
.w1_c00453{width:601.333333pt;}
.w0_c00453{width:793.333333pt;}
.x0_c00453{left:0.000000pt;}
.x1_c00453{left:58.204720pt;}
.x2_c00453{left:210.915733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b9eaa781d60bfdc065ed6690.woff2')format("woff");}.ff1_c00454{font-family:ff1_c00454;line-height:0.934082;font-style:normal;font-weight:normal;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_c7a69fccbbeddcc910d7c0b5.woff2')format("woff");}.ff2_c00454{font-family:ff2_c00454;line-height:0.987793;font-style:normal;font-weight:normal;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_1f2e781e771f991799440d7b.woff2')format("woff");}.ff3_c00454{font-family:ff3_c00454;line-height:1.155762;font-style: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;}
.ls1_c00454{letter-spacing:0.000000px;}
.ls0_c00454{letter-spacing:0.012000px;}
.ls2_c00454{letter-spacing:0.021600px;}
.sc__c00454{text-shadow:none;}
.sc0_c00454{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00454{-webkit-text-stroke:0px transparent;}
.sc0_c00454{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00454{word-spacing:0.000000px;}
._13_c00454{margin-left:-6.530400px;}
._9_c00454{margin-left:-4.406400px;}
._b_c00454{margin-left:-3.218400px;}
._4_c00454{margin-left:-2.217600px;}
._0_c00454{margin-left:-1.130400px;}
._6_c00454{width:1.144800px;}
._2_c00454{width:2.570400px;}
._8_c00454{width:3.592800px;}
._12_c00454{width:4.744800px;}
._14_c00454{width:5.846400px;}
._11_c00454{width:6.868800px;}
._3_c00454{width:8.956800px;}
._7_c00454{width:10.368000px;}
._1_c00454{width:12.679200px;}
._5_c00454{width:13.780800px;}
._a_c00454{width:16.113600px;}
._f_c00454{width:28.238400px;}
._d_c00454{width:29.995200px;}
._c_c00454{width:32.508000px;}
._e_c00454{width:34.142400px;}
._10_c00454{width:35.625600px;}
.fc0_c00454{color:rgb(0,0,0);}
.fs1_c00454{font-size:54.000000px;}
.fs2_c00454{font-size:60.000000px;}
.fs0_c00454{font-size:72.000000px;}
.y0_c00454{bottom:0.000000px;}
.y5_c00454{bottom:12.000000px;}
.ye_c00454{bottom:67.500000px;}
.yc_c00454{bottom:147.000000px;}
.yb_c00454{bottom:174.000000px;}
.ya_c00454{bottom:201.000000px;}
.y9_c00454{bottom:228.000000px;}
.y8_c00454{bottom:255.000000px;}
.y7_c00454{bottom:282.000000px;}
.y6_c00454{bottom:327.000000px;}
.y4_c00454{bottom:669.000000px;}
.y3_c00454{bottom:1041.000000px;}
.y2_c00454{bottom:1068.000000px;}
.y1_c00454{bottom:1095.000000px;}
.yd_c00454{bottom:1194.000000px;}
.h3_c00454{height:42.292969px;}
.h1_c00454{height:51.257812px;}
.h5_c00454{height:56.074219px;}
.h4_c00454{height:313.500000px;}
.h2_c00454{height:340.500000px;}
.h0_c00454{height:1263.000000px;}
.w1_c00454{width:676.500000px;}
.w0_c00454{width:892.500000px;}
.x0_c00454{left:0.000000px;}
.x3_c00454{left:85.576515px;}
.x1_c00454{left:150.519750px;}
.x2_c00454{left:288.864300px;}
.x4_c00454{left:416.782800px;}
.x5_c00454{left:801.992850px;}
@media print{
.v0_c00454{vertical-align:0.000000pt;}
.ls1_c00454{letter-spacing:0.000000pt;}
.ls0_c00454{letter-spacing:0.010667pt;}
.ls2_c00454{letter-spacing:0.019200pt;}
.ws0_c00454{word-spacing:0.000000pt;}
._13_c00454{margin-left:-5.804800pt;}
._9_c00454{margin-left:-3.916800pt;}
._b_c00454{margin-left:-2.860800pt;}
._4_c00454{margin-left:-1.971200pt;}
._0_c00454{margin-left:-1.004800pt;}
._6_c00454{width:1.017600pt;}
._2_c00454{width:2.284800pt;}
._8_c00454{width:3.193600pt;}
._12_c00454{width:4.217600pt;}
._14_c00454{width:5.196800pt;}
._11_c00454{width:6.105600pt;}
._3_c00454{width:7.961600pt;}
._7_c00454{width:9.216000pt;}
._1_c00454{width:11.270400pt;}
._5_c00454{width:12.249600pt;}
._a_c00454{width:14.323200pt;}
._f_c00454{width:25.100800pt;}
._d_c00454{width:26.662400pt;}
._c_c00454{width:28.896000pt;}
._e_c00454{width:30.348800pt;}
._10_c00454{width:31.667200pt;}
.fs1_c00454{font-size:48.000000pt;}
.fs2_c00454{font-size:53.333333pt;}
.fs0_c00454{font-size:64.000000pt;}
.y0_c00454{bottom:0.000000pt;}
.y5_c00454{bottom:10.666667pt;}
.ye_c00454{bottom:60.000000pt;}
.yc_c00454{bottom:130.666667pt;}
.yb_c00454{bottom:154.666667pt;}
.ya_c00454{bottom:178.666667pt;}
.y9_c00454{bottom:202.666667pt;}
.y8_c00454{bottom:226.666667pt;}
.y7_c00454{bottom:250.666667pt;}
.y6_c00454{bottom:290.666667pt;}
.y4_c00454{bottom:594.666667pt;}
.y3_c00454{bottom:925.333333pt;}
.y2_c00454{bottom:949.333333pt;}
.y1_c00454{bottom:973.333333pt;}
.yd_c00454{bottom:1061.333333pt;}
.h3_c00454{height:37.593750pt;}
.h1_c00454{height:45.562500pt;}
.h5_c00454{height:49.843750pt;}
.h4_c00454{height:278.666667pt;}
.h2_c00454{height:302.666667pt;}
.h0_c00454{height:1122.666667pt;}
.w1_c00454{width:601.333333pt;}
.w0_c00454{width:793.333333pt;}
.x0_c00454{left:0.000000pt;}
.x3_c00454{left:76.068013pt;}
.x1_c00454{left:133.795333pt;}
.x2_c00454{left:256.768267pt;}
.x4_c00454{left:370.473600pt;}
.x5_c00454{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_55d6fe63068a8f97088de72f.woff2')format("woff");}.ff1_c00455{font-family:ff1_c00455;line-height:0.934082;font-style:normal;font-weight:normal;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_1c668c76078e73352f80297c.woff2')format("woff");}.ff2_c00455{font-family:ff2_c00455;line-height:0.987793;font-style:normal;font-weight:normal;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_8f58bdfba4ef261f7cc77ebc.woff2')format("woff");}.ff3_c00455{font-family:ff3_c00455;line-height:0.755859;font-style:normal;font-weight:normal;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_0011da53e9ff183f1d92621c.woff2')format("woff");}.ff4_c00455{font-family:ff4_c00455;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00455{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00455{vertical-align:0.000000px;}
.ls0_c00455{letter-spacing:0.000000px;}
.ls1_c00455{letter-spacing:0.012000px;}
.sc__c00455{text-shadow:none;}
.sc0_c00455{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00455{-webkit-text-stroke:0px transparent;}
.sc0_c00455{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00455{word-spacing:0.000000px;}
._d_c00455{margin-left:-7.135200px;}
._5_c00455{margin-left:-2.880000px;}
._3_c00455{margin-left:-1.346400px;}
._0_c00455{width:1.944000px;}
._1_c00455{width:5.558400px;}
._2_c00455{width:7.531200px;}
._4_c00455{width:8.697600px;}
._6_c00455{width:10.389600px;}
._b_c00455{width:12.441600px;}
._c_c00455{width:15.206400px;}
._7_c00455{width:22.910400px;}
._9_c00455{width:24.832800px;}
._8_c00455{width:26.164800px;}
._a_c00455{width:27.748800px;}
.fc0_c00455{color:rgb(0,0,0);}
.fs1_c00455{font-size:54.000000px;}
.fs2_c00455{font-size:60.000000px;}
.fs0_c00455{font-size:72.000000px;}
.y0_c00455{bottom:0.000000px;}
.y9_c00455{bottom:10.500000px;}
.y6_c00455{bottom:12.000000px;}
.y8_c00455{bottom:28.500000px;}
.yb_c00455{bottom:67.500000px;}
.y7_c00455{bottom:148.500000px;}
.y5_c00455{bottom:553.500000px;}
.y4_c00455{bottom:1014.000000px;}
.y3_c00455{bottom:1041.000000px;}
.y2_c00455{bottom:1068.000000px;}
.y1_c00455{bottom:1095.000000px;}
.ya_c00455{bottom:1194.000000px;}
.h3_c00455{height:42.292969px;}
.h6_c00455{height:44.208984px;}
.h1_c00455{height:51.257812px;}
.h5_c00455{height:56.074219px;}
.h4_c00455{height:376.500000px;}
.h2_c00455{height:429.000000px;}
.h0_c00455{height:1263.000000px;}
.w1_c00455{width:676.500000px;}
.w0_c00455{width:892.500000px;}
.x0_c00455{left:0.000000px;}
.x3_c00455{left:12.684449px;}
.x1_c00455{left:65.480310px;}
.x4_c00455{left:92.171625px;}
.x2_c00455{left:142.167090px;}
@media print{
.v0_c00455{vertical-align:0.000000pt;}
.ls0_c00455{letter-spacing:0.000000pt;}
.ls1_c00455{letter-spacing:0.010667pt;}
.ws0_c00455{word-spacing:0.000000pt;}
._d_c00455{margin-left:-6.342400pt;}
._5_c00455{margin-left:-2.560000pt;}
._3_c00455{margin-left:-1.196800pt;}
._0_c00455{width:1.728000pt;}
._1_c00455{width:4.940800pt;}
._2_c00455{width:6.694400pt;}
._4_c00455{width:7.731200pt;}
._6_c00455{width:9.235200pt;}
._b_c00455{width:11.059200pt;}
._c_c00455{width:13.516800pt;}
._7_c00455{width:20.364800pt;}
._9_c00455{width:22.073600pt;}
._8_c00455{width:23.257600pt;}
._a_c00455{width:24.665600pt;}
.fs1_c00455{font-size:48.000000pt;}
.fs2_c00455{font-size:53.333333pt;}
.fs0_c00455{font-size:64.000000pt;}
.y0_c00455{bottom:0.000000pt;}
.y9_c00455{bottom:9.333333pt;}
.y6_c00455{bottom:10.666667pt;}
.y8_c00455{bottom:25.333333pt;}
.yb_c00455{bottom:60.000000pt;}
.y7_c00455{bottom:132.000000pt;}
.y5_c00455{bottom:492.000000pt;}
.y4_c00455{bottom:901.333333pt;}
.y3_c00455{bottom:925.333333pt;}
.y2_c00455{bottom:949.333333pt;}
.y1_c00455{bottom:973.333333pt;}
.ya_c00455{bottom:1061.333333pt;}
.h3_c00455{height:37.593750pt;}
.h6_c00455{height:39.296875pt;}
.h1_c00455{height:45.562500pt;}
.h5_c00455{height:49.843750pt;}
.h4_c00455{height:334.666667pt;}
.h2_c00455{height:381.333333pt;}
.h0_c00455{height:1122.666667pt;}
.w1_c00455{width:601.333333pt;}
.w0_c00455{width:793.333333pt;}
.x0_c00455{left:0.000000pt;}
.x3_c00455{left:11.275065pt;}
.x1_c00455{left:58.204720pt;}
.x4_c00455{left:81.930333pt;}
.x2_c00455{left:126.370747pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eaa008e29ef007f85d31c4b2.woff2')format("woff");}.ff1_c00456{font-family:ff1_c00456;line-height:0.933105;font-style:normal;font-weight:normal;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_da790891450f8f4c013df961.woff2')format("woff");}.ff2_c00456{font-family:ff2_c00456;line-height:0.987793;font-style:normal;font-weight:normal;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_2229b02bd61963e24e660da2.woff2')format("woff");}.ff3_c00456{font-family:ff3_c00456;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00456{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00456{vertical-align:0.000000px;}
.ls3_c00456{letter-spacing:-0.010800px;}
.ls1_c00456{letter-spacing:0.000000px;}
.ls0_c00456{letter-spacing:0.012000px;}
.ls2_c00456{letter-spacing:0.021600px;}
.sc__c00456{text-shadow:none;}
.sc0_c00456{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00456{-webkit-text-stroke:0px transparent;}
.sc0_c00456{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00456{word-spacing:-19.800000px;}
.ws1_c00456{word-spacing:0.000000px;}
._b_c00456{margin-left:-6.314400px;}
._16_c00456{margin-left:-5.004000px;}
._5_c00456{margin-left:-3.852000px;}
._3_c00456{margin-left:-2.397600px;}
._c_c00456{margin-left:-1.382400px;}
._4_c00456{width:1.008000px;}
._1_c00456{width:2.664000px;}
._10_c00456{width:4.032000px;}
._7_c00456{width:5.241600px;}
._15_c00456{width:6.444000px;}
._13_c00456{width:7.696800px;}
._11_c00456{width:8.712000px;}
._14_c00456{width:10.116000px;}
._12_c00456{width:11.268000px;}
._8_c00456{width:12.463200px;}
._2_c00456{width:15.134400px;}
._9_c00456{width:16.747200px;}
._0_c00456{width:17.791200px;}
._6_c00456{width:21.420000px;}
._a_c00456{width:23.392800px;}
._e_c00456{width:24.739200px;}
._d_c00456{width:25.776000px;}
._f_c00456{width:27.748800px;}
.fc0_c00456{color:rgb(0,0,0);}
.fs1_c00456{font-size:54.000000px;}
.fs2_c00456{font-size:60.000000px;}
.fs0_c00456{font-size:72.000000px;}
.y0_c00456{bottom:0.000000px;}
.yb_c00456{bottom:10.500000px;}
.y8_c00456{bottom:12.000000px;}
.ya_c00456{bottom:28.500000px;}
.y10_c00456{bottom:67.500000px;}
.ye_c00456{bottom:144.000000px;}
.yd_c00456{bottom:171.000000px;}
.yc_c00456{bottom:198.000000px;}
.y9_c00456{bottom:243.000000px;}
.y7_c00456{bottom:582.000000px;}
.y6_c00456{bottom:939.000000px;}
.y5_c00456{bottom:966.000000px;}
.y4_c00456{bottom:993.000000px;}
.y3_c00456{bottom:1041.000000px;}
.y2_c00456{bottom:1068.000000px;}
.y1_c00456{bottom:1095.000000px;}
.yf_c00456{bottom:1194.000000px;}
.h3_c00456{height:42.292969px;}
.h1_c00456{height:51.187500px;}
.h5_c00456{height:56.074219px;}
.h4_c00456{height:319.500000px;}
.h2_c00456{height:325.500000px;}
.h0_c00456{height:1263.000000px;}
.w1_c00456{width:676.500000px;}
.w0_c00456{width:892.500000px;}
.x0_c00456{left:0.000000px;}
.x3_c00456{left:15.248640px;}
.x1_c00456{left:150.519750px;}
.x4_c00456{left:177.690300px;}
.x2_c00456{left:242.289900px;}
.x5_c00456{left:416.782800px;}
.x6_c00456{left:801.992850px;}
@media print{
.v0_c00456{vertical-align:0.000000pt;}
.ls3_c00456{letter-spacing:-0.009600pt;}
.ls1_c00456{letter-spacing:0.000000pt;}
.ls0_c00456{letter-spacing:0.010667pt;}
.ls2_c00456{letter-spacing:0.019200pt;}
.ws0_c00456{word-spacing:-17.600000pt;}
.ws1_c00456{word-spacing:0.000000pt;}
._b_c00456{margin-left:-5.612800pt;}
._16_c00456{margin-left:-4.448000pt;}
._5_c00456{margin-left:-3.424000pt;}
._3_c00456{margin-left:-2.131200pt;}
._c_c00456{margin-left:-1.228800pt;}
._4_c00456{width:0.896000pt;}
._1_c00456{width:2.368000pt;}
._10_c00456{width:3.584000pt;}
._7_c00456{width:4.659200pt;}
._15_c00456{width:5.728000pt;}
._13_c00456{width:6.841600pt;}
._11_c00456{width:7.744000pt;}
._14_c00456{width:8.992000pt;}
._12_c00456{width:10.016000pt;}
._8_c00456{width:11.078400pt;}
._2_c00456{width:13.452800pt;}
._9_c00456{width:14.886400pt;}
._0_c00456{width:15.814400pt;}
._6_c00456{width:19.040000pt;}
._a_c00456{width:20.793600pt;}
._e_c00456{width:21.990400pt;}
._d_c00456{width:22.912000pt;}
._f_c00456{width:24.665600pt;}
.fs1_c00456{font-size:48.000000pt;}
.fs2_c00456{font-size:53.333333pt;}
.fs0_c00456{font-size:64.000000pt;}
.y0_c00456{bottom:0.000000pt;}
.yb_c00456{bottom:9.333333pt;}
.y8_c00456{bottom:10.666667pt;}
.ya_c00456{bottom:25.333333pt;}
.y10_c00456{bottom:60.000000pt;}
.ye_c00456{bottom:128.000000pt;}
.yd_c00456{bottom:152.000000pt;}
.yc_c00456{bottom:176.000000pt;}
.y9_c00456{bottom:216.000000pt;}
.y7_c00456{bottom:517.333333pt;}
.y6_c00456{bottom:834.666667pt;}
.y5_c00456{bottom:858.666667pt;}
.y4_c00456{bottom:882.666667pt;}
.y3_c00456{bottom:925.333333pt;}
.y2_c00456{bottom:949.333333pt;}
.y1_c00456{bottom:973.333333pt;}
.yf_c00456{bottom:1061.333333pt;}
.h3_c00456{height:37.593750pt;}
.h1_c00456{height:45.500000pt;}
.h5_c00456{height:49.843750pt;}
.h4_c00456{height:284.000000pt;}
.h2_c00456{height:289.333333pt;}
.h0_c00456{height:1122.666667pt;}
.w1_c00456{width:601.333333pt;}
.w0_c00456{width:793.333333pt;}
.x0_c00456{left:0.000000pt;}
.x3_c00456{left:13.554347pt;}
.x1_c00456{left:133.795333pt;}
.x4_c00456{left:157.946933pt;}
.x2_c00456{left:215.368800pt;}
.x5_c00456{left:370.473600pt;}
.x6_c00456{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0e58d1865e4f966ebc06c183.woff2')format("woff");}.ff1_c00457{font-family:ff1_c00457;line-height:0.987793;font-style:normal;font-weight:normal;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_0afb4c243cf05827a8997573.woff2')format("woff");}.ff2_c00457{font-family:ff2_c00457;line-height:0.933105;font-style:normal;font-weight:normal;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_0cf213a750a3364cd4a38328.woff2')format("woff");}.ff3_c00457{font-family:ff3_c00457;line-height:0.755859;font-style:normal;font-weight:normal;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_32c4625b70264ff97065169b.woff2')format("woff");}.ff4_c00457{font-family:ff4_c00457;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00457{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00457{vertical-align:0.000000px;}
.ls0_c00457{letter-spacing:0.000000px;}
.ls2_c00457{letter-spacing:0.012000px;}
.ls1_c00457{letter-spacing:0.021600px;}
.sc__c00457{text-shadow:none;}
.sc0_c00457{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00457{-webkit-text-stroke:0px transparent;}
.sc0_c00457{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00457{word-spacing:-17.064000px;}
.ws1_c00457{word-spacing:0.000000px;}
._7_c00457{margin-left:-2.851200px;}
._1_c00457{margin-left:-1.792800px;}
._3_c00457{width:1.000800px;}
._0_c00457{width:3.189600px;}
._2_c00457{width:5.047200px;}
._6_c00457{width:6.105600px;}
._4_c00457{width:9.252000px;}
._5_c00457{width:11.052000px;}
.fc0_c00457{color:rgb(0,0,0);}
.fs0_c00457{font-size:54.000000px;}
.fs2_c00457{font-size:60.000000px;}
.fs1_c00457{font-size:72.000000px;}
.y0_c00457{bottom:0.000000px;}
.y8_c00457{bottom:10.500000px;}
.y2_c00457{bottom:12.000000px;}
.y7_c00457{bottom:28.500000px;}
.ya_c00457{bottom:67.500000px;}
.y6_c00457{bottom:133.500000px;}
.y5_c00457{bottom:583.500000px;}
.y4_c00457{bottom:610.500000px;}
.y3_c00457{bottom:637.500000px;}
.y1_c00457{bottom:682.500000px;}
.y9_c00457{bottom:1194.000000px;}
.h2_c00457{height:42.292969px;}
.h6_c00457{height:44.208984px;}
.h3_c00457{height:51.187500px;}
.h5_c00457{height:56.074219px;}
.h4_c00457{height:418.500000px;}
.h1_c00457{height:430.500000px;}
.h0_c00457{height:1263.000000px;}
.w1_c00457{width:676.500000px;}
.w0_c00457{width:892.500000px;}
.x0_c00457{left:0.000000px;}
.x3_c00457{left:15.733155px;}
.x1_c00457{left:66.000000px;}
.x2_c00457{left:257.276400px;}
.x4_c00457{left:295.198950px;}
@media print{
.v0_c00457{vertical-align:0.000000pt;}
.ls0_c00457{letter-spacing:0.000000pt;}
.ls2_c00457{letter-spacing:0.010667pt;}
.ls1_c00457{letter-spacing:0.019200pt;}
.ws0_c00457{word-spacing:-15.168000pt;}
.ws1_c00457{word-spacing:0.000000pt;}
._7_c00457{margin-left:-2.534400pt;}
._1_c00457{margin-left:-1.593600pt;}
._3_c00457{width:0.889600pt;}
._0_c00457{width:2.835200pt;}
._2_c00457{width:4.486400pt;}
._6_c00457{width:5.427200pt;}
._4_c00457{width:8.224000pt;}
._5_c00457{width:9.824000pt;}
.fs0_c00457{font-size:48.000000pt;}
.fs2_c00457{font-size:53.333333pt;}
.fs1_c00457{font-size:64.000000pt;}
.y0_c00457{bottom:0.000000pt;}
.y8_c00457{bottom:9.333333pt;}
.y2_c00457{bottom:10.666667pt;}
.y7_c00457{bottom:25.333333pt;}
.ya_c00457{bottom:60.000000pt;}
.y6_c00457{bottom:118.666667pt;}
.y5_c00457{bottom:518.666667pt;}
.y4_c00457{bottom:542.666667pt;}
.y3_c00457{bottom:566.666667pt;}
.y1_c00457{bottom:606.666667pt;}
.y9_c00457{bottom:1061.333333pt;}
.h2_c00457{height:37.593750pt;}
.h6_c00457{height:39.296875pt;}
.h3_c00457{height:45.500000pt;}
.h5_c00457{height:49.843750pt;}
.h4_c00457{height:372.000000pt;}
.h1_c00457{height:382.666667pt;}
.h0_c00457{height:1122.666667pt;}
.w1_c00457{width:601.333333pt;}
.w0_c00457{width:793.333333pt;}
.x0_c00457{left:0.000000pt;}
.x3_c00457{left:13.985027pt;}
.x1_c00457{left:58.666667pt;}
.x2_c00457{left:228.690133pt;}
.x4_c00457{left:262.399067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63ecbe58b722c9a60314016d.woff2')format("woff");}.ff1_c00458{font-family:ff1_c00458;line-height:0.934082;font-style:normal;font-weight:normal;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_459988430533d876bd4e91f8.woff2')format("woff");}.ff2_c00458{font-family:ff2_c00458;line-height:0.976074;font-style:normal;font-weight:normal;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_a903dfd75d19d3e2a83876f4.woff2')format("woff");}.ff3_c00458{font-family:ff3_c00458;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00458{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00458{vertical-align:0.000000px;}
.ls1_c00458{letter-spacing:0.000000px;}
.ls0_c00458{letter-spacing:0.012000px;}
.ls2_c00458{letter-spacing:0.021600px;}
.sc__c00458{text-shadow:none;}
.sc0_c00458{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00458{-webkit-text-stroke:0px transparent;}
.sc0_c00458{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00458{word-spacing:0.000000px;}
._1_c00458{margin-left:-4.759200px;}
._2_c00458{margin-left:-3.117600px;}
._5_c00458{margin-left:-1.879200px;}
._6_c00458{width:1.144800px;}
._4_c00458{width:2.203200px;}
._3_c00458{width:3.204000px;}
._0_c00458{width:4.780800px;}
.fc0_c00458{color:rgb(0,0,0);}
.fs1_c00458{font-size:54.000000px;}
.fs2_c00458{font-size:60.000000px;}
.fs0_c00458{font-size:72.000000px;}
.y0_c00458{bottom:0.000000px;}
.y4_c00458{bottom:12.000000px;}
.ya_c00458{bottom:67.500000px;}
.y8_c00458{bottom:132.000000px;}
.y7_c00458{bottom:556.500000px;}
.y6_c00458{bottom:583.500000px;}
.y5_c00458{bottom:610.500000px;}
.y3_c00458{bottom:655.500000px;}
.y2_c00458{bottom:1068.000000px;}
.y1_c00458{bottom:1095.000000px;}
.y9_c00458{bottom:1194.000000px;}
.h3_c00458{height:42.292969px;}
.h1_c00458{height:51.257812px;}
.h5_c00458{height:56.074219px;}
.h2_c00458{height:381.000000px;}
.h4_c00458{height:393.000000px;}
.h0_c00458{height:1263.000000px;}
.w1_c00458{width:676.500000px;}
.w0_c00458{width:892.500000px;}
.x0_c00458{left:0.000000px;}
.x3_c00458{left:112.602885px;}
.x1_c00458{left:150.519750px;}
.x2_c00458{left:239.630100px;}
.x4_c00458{left:416.782800px;}
.x5_c00458{left:801.992850px;}
@media print{
.v0_c00458{vertical-align:0.000000pt;}
.ls1_c00458{letter-spacing:0.000000pt;}
.ls0_c00458{letter-spacing:0.010667pt;}
.ls2_c00458{letter-spacing:0.019200pt;}
.ws0_c00458{word-spacing:0.000000pt;}
._1_c00458{margin-left:-4.230400pt;}
._2_c00458{margin-left:-2.771200pt;}
._5_c00458{margin-left:-1.670400pt;}
._6_c00458{width:1.017600pt;}
._4_c00458{width:1.958400pt;}
._3_c00458{width:2.848000pt;}
._0_c00458{width:4.249600pt;}
.fs1_c00458{font-size:48.000000pt;}
.fs2_c00458{font-size:53.333333pt;}
.fs0_c00458{font-size:64.000000pt;}
.y0_c00458{bottom:0.000000pt;}
.y4_c00458{bottom:10.666667pt;}
.ya_c00458{bottom:60.000000pt;}
.y8_c00458{bottom:117.333333pt;}
.y7_c00458{bottom:494.666667pt;}
.y6_c00458{bottom:518.666667pt;}
.y5_c00458{bottom:542.666667pt;}
.y3_c00458{bottom:582.666667pt;}
.y2_c00458{bottom:949.333333pt;}
.y1_c00458{bottom:973.333333pt;}
.y9_c00458{bottom:1061.333333pt;}
.h3_c00458{height:37.593750pt;}
.h1_c00458{height:45.562500pt;}
.h5_c00458{height:49.843750pt;}
.h2_c00458{height:338.666667pt;}
.h4_c00458{height:349.333333pt;}
.h0_c00458{height:1122.666667pt;}
.w1_c00458{width:601.333333pt;}
.w0_c00458{width:793.333333pt;}
.x0_c00458{left:0.000000pt;}
.x3_c00458{left:100.091453pt;}
.x1_c00458{left:133.795333pt;}
.x2_c00458{left:213.004533pt;}
.x4_c00458{left:370.473600pt;}
.x5_c00458{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cfa581e096b21cf81f9797be.woff2')format("woff");}.ff1_c00459{font-family:ff1_c00459;line-height:0.931152;font-style:normal;font-weight:normal;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_b2bf1205c75927f7aef74536.woff2')format("woff");}.ff2_c00459{font-family:ff2_c00459;line-height:0.755859;font-style:normal;font-weight:normal;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_5fb7817210c440913abd1336.woff2')format("woff");}.ff3_c00459{font-family:ff3_c00459;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00459{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00459{vertical-align:0.000000px;}
.ls0_c00459{letter-spacing:0.000000px;}
.ls1_c00459{letter-spacing:0.012000px;}
.sc__c00459{text-shadow:none;}
.sc0_c00459{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00459{-webkit-text-stroke:0px transparent;}
.sc0_c00459{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00459{word-spacing:0.000000px;}
._7_c00459{margin-left:-7.992000px;}
._6_c00459{margin-left:-3.808800px;}
._4_c00459{margin-left:-2.714400px;}
._2_c00459{margin-left:-1.180800px;}
._3_c00459{width:1.922400px;}
._0_c00459{width:3.052800px;}
._1_c00459{width:4.248000px;}
._5_c00459{width:6.458400px;}
._8_c00459{width:8.388000px;}
._9_c00459{width:10.339200px;}
._c_c00459{width:11.512800px;}
._b_c00459{width:13.075200px;}
._a_c00459{width:14.148000px;}
.fc0_c00459{color:rgb(0,0,0);}
.fs1_c00459{font-size:60.000000px;}
.fs0_c00459{font-size:72.000000px;}
.y0_c00459{bottom:0.000000px;}
.y7_c00459{bottom:67.500000px;}
.y5_c00459{bottom:966.000000px;}
.y4_c00459{bottom:993.000000px;}
.y3_c00459{bottom:1041.000000px;}
.y2_c00459{bottom:1068.000000px;}
.y1_c00459{bottom:1095.000000px;}
.y6_c00459{bottom:1194.000000px;}
.h3_c00459{height:44.208984px;}
.h1_c00459{height:51.187500px;}
.h2_c00459{height:56.074219px;}
.h0_c00459{height:1263.000000px;}
.w0_c00459{width:892.500000px;}
.x0_c00459{left:0.000000px;}
.x1_c00459{left:65.480310px;}
@media print{
.v0_c00459{vertical-align:0.000000pt;}
.ls0_c00459{letter-spacing:0.000000pt;}
.ls1_c00459{letter-spacing:0.010667pt;}
.ws0_c00459{word-spacing:0.000000pt;}
._7_c00459{margin-left:-7.104000pt;}
._6_c00459{margin-left:-3.385600pt;}
._4_c00459{margin-left:-2.412800pt;}
._2_c00459{margin-left:-1.049600pt;}
._3_c00459{width:1.708800pt;}
._0_c00459{width:2.713600pt;}
._1_c00459{width:3.776000pt;}
._5_c00459{width:5.740800pt;}
._8_c00459{width:7.456000pt;}
._9_c00459{width:9.190400pt;}
._c_c00459{width:10.233600pt;}
._b_c00459{width:11.622400pt;}
._a_c00459{width:12.576000pt;}
.fs1_c00459{font-size:53.333333pt;}
.fs0_c00459{font-size:64.000000pt;}
.y0_c00459{bottom:0.000000pt;}
.y7_c00459{bottom:60.000000pt;}
.y5_c00459{bottom:858.666667pt;}
.y4_c00459{bottom:882.666667pt;}
.y3_c00459{bottom:925.333333pt;}
.y2_c00459{bottom:949.333333pt;}
.y1_c00459{bottom:973.333333pt;}
.y6_c00459{bottom:1061.333333pt;}
.h3_c00459{height:39.296875pt;}
.h1_c00459{height:45.500000pt;}
.h2_c00459{height:49.843750pt;}
.h0_c00459{height:1122.666667pt;}
.w0_c00459{width:793.333333pt;}
.x0_c00459{left:0.000000pt;}
.x1_c00459{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1138f8f873a31046a6b57309.woff2')format("woff");}.ff1_c00460{font-family:ff1_c00460;line-height:0.939453;font-style:normal;font-weight:normal;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_3e29481a6bc25a6ee5b42534.woff2')format("woff");}.ff2_c00460{font-family:ff2_c00460;line-height:1.163086;font-style:normal;font-weight:normal;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_9faa4a84422acbd9e7349558.woff2')format("woff");}.ff3_c00460{font-family:ff3_c00460;line-height:1.155762;font-style:normal;font-weight:normal;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_0150bf6608cbb89650591b40.woff2')format("woff");}.ff4_c00460{font-family:ff4_c00460;line-height:0.904785;font-style:normal;font-weight:normal;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_81d2adfdb345e0eebdb3c23e.woff2')format("woff");}.ff5_c00460{font-family:ff5_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;}
.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);}
.v3_c00460{vertical-align:-33.000000px;}
.v2_c00460{vertical-align:-23.086200px;}
.v0_c00460{vertical-align:0.000000px;}
.v1_c00460{vertical-align:23.086200px;}
.ls5_c00460{letter-spacing:-0.019200px;}
.ls4_c00460{letter-spacing:0.000000px;}
.ls0_c00460{letter-spacing:0.007800px;}
.ls2_c00460{letter-spacing:0.012000px;}
.ls1_c00460{letter-spacing:1.477800px;}
.ls3_c00460{letter-spacing:3.999999px;}
.sc__c00460{text-shadow:none;}
.sc0_c00460{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00460{-webkit-text-stroke:0px transparent;}
.sc0_c00460{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00460{word-spacing:-13.200000px;}
.ws1_c00460{word-spacing:-10.000001px;}
.ws2_c00460{word-spacing:0.000000px;}
._b_c00460{margin-left:-10.562400px;}
._14_c00460{margin-left:-6.904800px;}
._9_c00460{margin-left:-4.060800px;}
._3_c00460{margin-left:-3.031200px;}
._5_c00460{margin-left:-1.324800px;}
._8_c00460{width:1.000800px;}
._0_c00460{width:2.325600px;}
._1_c00460{width:3.700800px;}
._c_c00460{width:4.737600px;}
._2_c00460{width:6.091200px;}
._6_c00460{width:7.416000px;}
._4_c00460{width:9.086400px;}
._7_c00460{width:10.591200px;}
._13_c00460{width:11.815200px;}
._a_c00460{width:13.413600px;}
._18_c00460{width:18.129600px;}
._17_c00460{width:21.326400px;}
._11_c00460{width:22.716000px;}
._12_c00460{width:24.235200px;}
._d_c00460{width:25.509600px;}
._10_c00460{width:26.877600px;}
._f_c00460{width:27.900000px;}
._e_c00460{width:29.210400px;}
._16_c00460{width:30.650400px;}
._15_c00460{width:32.428800px;}
.fc1_c00460{color:rgb(255,255,255);}
.fc0_c00460{color:rgb(0,0,0);}
.fs5_c00460{font-size:40.000002px;}
.fs2_c00460{font-size:48.000000px;}
.fs4_c00460{font-size:60.000000px;}
.fs1_c00460{font-size:72.000000px;}
.fs0_c00460{font-size:78.000000px;}
.fs3_c00460{font-size:96.000000px;}
.y0_c00460{bottom:0.000000px;}
.y14_c00460{bottom:67.500000px;}
.y17_c00460{bottom:132.000000px;}
.y16_c00460{bottom:159.750000px;}
.y15_c00460{bottom:209.250000px;}
.y11_c00460{bottom:435.000000px;}
.y10_c00460{bottom:462.000000px;}
.yf_c00460{bottom:489.000000px;}
.ye_c00460{bottom:516.000000px;}
.yd_c00460{bottom:543.000000px;}
.yc_c00460{bottom:591.000000px;}
.yb_c00460{bottom:618.000000px;}
.ya_c00460{bottom:645.000000px;}
.y9_c00460{bottom:691.500000px;}
.y8_c00460{bottom:762.000000px;}
.y7_c00460{bottom:789.000000px;}
.y6_c00460{bottom:816.000000px;}
.y5_c00460{bottom:864.000000px;}
.y4_c00460{bottom:891.000000px;}
.y3_c00460{bottom:918.000000px;}
.y2_c00460{bottom:945.000000px;}
.y1_c00460{bottom:991.500000px;}
.y12_c00460{bottom:1066.500000px;}
.y13_c00460{bottom:1194.000000px;}
.h6_c00460{height:27.480470px;}
.h7_c00460{height:41.220703px;}
.h5_c00460{height:56.074219px;}
.h1_c00460{height:56.100586px;}
.h2_c00460{height:67.746094px;}
.h3_c00460{height:68.250262px;}
.h4_c00460{height:90.328125px;}
.h0_c00460{height:1263.000000px;}
.w0_c00460{width:892.500000px;}
.x0_c00460{left:0.000000px;}
.x1_c00460{left:150.519750px;}
.x2_c00460{left:180.298875px;}
.x3_c00460{left:416.782800px;}
.x4_c00460{left:801.992850px;}
@media print{
.v3_c00460{vertical-align:-29.333333pt;}
.v2_c00460{vertical-align:-20.521067pt;}
.v0_c00460{vertical-align:0.000000pt;}
.v1_c00460{vertical-align:20.521067pt;}
.ls5_c00460{letter-spacing:-0.017067pt;}
.ls4_c00460{letter-spacing:0.000000pt;}
.ls0_c00460{letter-spacing:0.006933pt;}
.ls2_c00460{letter-spacing:0.010667pt;}
.ls1_c00460{letter-spacing:1.313600pt;}
.ls3_c00460{letter-spacing:3.555555pt;}
.ws0_c00460{word-spacing:-11.733333pt;}
.ws1_c00460{word-spacing:-8.888889pt;}
.ws2_c00460{word-spacing:0.000000pt;}
._b_c00460{margin-left:-9.388800pt;}
._14_c00460{margin-left:-6.137600pt;}
._9_c00460{margin-left:-3.609600pt;}
._3_c00460{margin-left:-2.694400pt;}
._5_c00460{margin-left:-1.177600pt;}
._8_c00460{width:0.889600pt;}
._0_c00460{width:2.067200pt;}
._1_c00460{width:3.289600pt;}
._c_c00460{width:4.211200pt;}
._2_c00460{width:5.414400pt;}
._6_c00460{width:6.592000pt;}
._4_c00460{width:8.076800pt;}
._7_c00460{width:9.414400pt;}
._13_c00460{width:10.502400pt;}
._a_c00460{width:11.923200pt;}
._18_c00460{width:16.115200pt;}
._17_c00460{width:18.956800pt;}
._11_c00460{width:20.192000pt;}
._12_c00460{width:21.542400pt;}
._d_c00460{width:22.675200pt;}
._10_c00460{width:23.891200pt;}
._f_c00460{width:24.800000pt;}
._e_c00460{width:25.964800pt;}
._16_c00460{width:27.244800pt;}
._15_c00460{width:28.825600pt;}
.fs5_c00460{font-size:35.555557pt;}
.fs2_c00460{font-size:42.666667pt;}
.fs4_c00460{font-size:53.333333pt;}
.fs1_c00460{font-size:64.000000pt;}
.fs0_c00460{font-size:69.333333pt;}
.fs3_c00460{font-size:85.333333pt;}
.y0_c00460{bottom:0.000000pt;}
.y14_c00460{bottom:60.000000pt;}
.y17_c00460{bottom:117.333333pt;}
.y16_c00460{bottom:142.000000pt;}
.y15_c00460{bottom:186.000000pt;}
.y11_c00460{bottom:386.666667pt;}
.y10_c00460{bottom:410.666667pt;}
.yf_c00460{bottom:434.666667pt;}
.ye_c00460{bottom:458.666667pt;}
.yd_c00460{bottom:482.666667pt;}
.yc_c00460{bottom:525.333333pt;}
.yb_c00460{bottom:549.333333pt;}
.ya_c00460{bottom:573.333333pt;}
.y9_c00460{bottom:614.666667pt;}
.y8_c00460{bottom:677.333333pt;}
.y7_c00460{bottom:701.333333pt;}
.y6_c00460{bottom:725.333333pt;}
.y5_c00460{bottom:768.000000pt;}
.y4_c00460{bottom:792.000000pt;}
.y3_c00460{bottom:816.000000pt;}
.y2_c00460{bottom:840.000000pt;}
.y1_c00460{bottom:881.333333pt;}
.y12_c00460{bottom:948.000000pt;}
.y13_c00460{bottom:1061.333333pt;}
.h6_c00460{height:24.427085pt;}
.h7_c00460{height:36.640625pt;}
.h5_c00460{height:49.843750pt;}
.h1_c00460{height:49.867188pt;}
.h2_c00460{height:60.218750pt;}
.h3_c00460{height:60.666900pt;}
.h4_c00460{height:80.291667pt;}
.h0_c00460{height:1122.666667pt;}
.w0_c00460{width:793.333333pt;}
.x0_c00460{left:0.000000pt;}
.x1_c00460{left:133.795333pt;}
.x2_c00460{left:160.265667pt;}
.x3_c00460{left:370.473600pt;}
.x4_c00460{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_96fcb2a2b7ddd0382878d63e.woff2')format("woff");}.ff1_c00461{font-family:ff1_c00461;line-height:1.132812;font-style:normal;font-weight:normal;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_5c4c6343eb0d195ee2a5ff25.woff2')format("woff");}.ff2_c00461{font-family:ff2_c00461;line-height:0.933105;font-style:normal;font-weight:normal;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_2aa164c9de264e1843b2cd49.woff2')format("woff");}.ff3_c00461{font-family:ff3_c00461;line-height:0.756836;font-style:normal;font-weight:normal;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_bba198c13d23d19174993401.woff2')format("woff");}.ff4_c00461{font-family:ff4_c00461;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00461{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00461{vertical-align:0.000000px;}
.ls1_c00461{letter-spacing:0.000000px;}
.ls0_c00461{letter-spacing:0.010800px;}
.ls3_c00461{letter-spacing:0.012000px;}
.ls2_c00461{letter-spacing:0.021600px;}
.sc__c00461{text-shadow:none;}
.sc0_c00461{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00461{-webkit-text-stroke:0px transparent;}
.sc0_c00461{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00461{word-spacing:-17.074800px;}
.ws1_c00461{word-spacing:0.000000px;}
._d_c00461{margin-left:-10.252800px;}
._5_c00461{margin-left:-3.362400px;}
._1_c00461{margin-left:-1.260000px;}
._7_c00461{width:1.670400px;}
._2_c00461{width:2.721600px;}
._a_c00461{width:5.025600px;}
._c_c00461{width:7.941600px;}
._b_c00461{width:9.676800px;}
._9_c00461{width:11.217600px;}
._e_c00461{width:14.544000px;}
._3_c00461{width:21.960000px;}
._8_c00461{width:23.061600px;}
._0_c00461{width:24.638400px;}
._4_c00461{width:25.862400px;}
._6_c00461{width:28.000800px;}
.fc0_c00461{color:rgb(0,0,0);}
.fs0_c00461{font-size:54.000000px;}
.fs2_c00461{font-size:60.000000px;}
.fs1_c00461{font-size:72.000000px;}
.y0_c00461{bottom:0.000000px;}
.y2_c00461{bottom:12.000000px;}
.y9_c00461{bottom:67.500000px;}
.y7_c00461{bottom:141.000000px;}
.y6_c00461{bottom:168.000000px;}
.y5_c00461{bottom:195.000000px;}
.y4_c00461{bottom:222.000000px;}
.y3_c00461{bottom:267.000000px;}
.y1_c00461{bottom:700.500000px;}
.y8_c00461{bottom:1194.000000px;}
.h6_c00461{height:44.208984px;}
.h2_c00461{height:50.756836px;}
.h4_c00461{height:51.187500px;}
.h5_c00461{height:56.074219px;}
.h3_c00461{height:405.000000px;}
.h1_c00461{height:412.500000px;}
.h0_c00461{height:1263.000000px;}
.w1_c00461{width:676.500000px;}
.w0_c00461{width:892.500000px;}
.x0_c00461{left:0.000000px;}
.x2_c00461{left:51.843000px;}
.x1_c00461{left:66.000000px;}
.x3_c00461{left:312.855150px;}
@media print{
.v0_c00461{vertical-align:0.000000pt;}
.ls1_c00461{letter-spacing:0.000000pt;}
.ls0_c00461{letter-spacing:0.009600pt;}
.ls3_c00461{letter-spacing:0.010667pt;}
.ls2_c00461{letter-spacing:0.019200pt;}
.ws0_c00461{word-spacing:-15.177600pt;}
.ws1_c00461{word-spacing:0.000000pt;}
._d_c00461{margin-left:-9.113600pt;}
._5_c00461{margin-left:-2.988800pt;}
._1_c00461{margin-left:-1.120000pt;}
._7_c00461{width:1.484800pt;}
._2_c00461{width:2.419200pt;}
._a_c00461{width:4.467200pt;}
._c_c00461{width:7.059200pt;}
._b_c00461{width:8.601600pt;}
._9_c00461{width:9.971200pt;}
._e_c00461{width:12.928000pt;}
._3_c00461{width:19.520000pt;}
._8_c00461{width:20.499200pt;}
._0_c00461{width:21.900800pt;}
._4_c00461{width:22.988800pt;}
._6_c00461{width:24.889600pt;}
.fs0_c00461{font-size:48.000000pt;}
.fs2_c00461{font-size:53.333333pt;}
.fs1_c00461{font-size:64.000000pt;}
.y0_c00461{bottom:0.000000pt;}
.y2_c00461{bottom:10.666667pt;}
.y9_c00461{bottom:60.000000pt;}
.y7_c00461{bottom:125.333333pt;}
.y6_c00461{bottom:149.333333pt;}
.y5_c00461{bottom:173.333333pt;}
.y4_c00461{bottom:197.333333pt;}
.y3_c00461{bottom:237.333333pt;}
.y1_c00461{bottom:622.666667pt;}
.y8_c00461{bottom:1061.333333pt;}
.h6_c00461{height:39.296875pt;}
.h2_c00461{height:45.117188pt;}
.h4_c00461{height:45.500000pt;}
.h5_c00461{height:49.843750pt;}
.h3_c00461{height:360.000000pt;}
.h1_c00461{height:366.666667pt;}
.h0_c00461{height:1122.666667pt;}
.w1_c00461{width:601.333333pt;}
.w0_c00461{width:793.333333pt;}
.x0_c00461{left:0.000000pt;}
.x2_c00461{left:46.082667pt;}
.x1_c00461{left:58.666667pt;}
.x3_c00461{left:278.093467pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0f78bd96d28006ef2c3e8014.woff2')format("woff");}.ff1_c00462{font-family:ff1_c00462;line-height:0.795410;font-style:normal;font-weight:normal;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_9e5ad5c43dc0a93455581740.woff2')format("woff");}.ff2_c00462{font-family:ff2_c00462;line-height:0.931152;font-style:normal;font-weight:normal;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_abc449da4d4c95fbe9baaa14.woff2')format("woff");}.ff3_c00462{font-family:ff3_c00462;line-height:1.155762;font-style: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;}
.ls2_c00462{letter-spacing:-0.005400px;}
.ls3_c00462{letter-spacing:0.000000px;}
.ls0_c00462{letter-spacing:0.010800px;}
.ls1_c00462{letter-spacing:0.012000px;}
.sc__c00462{text-shadow:none;}
.sc0_c00462{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00462{-webkit-text-stroke:0px transparent;}
.sc0_c00462{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00462{word-spacing:0.000000px;}
._9_c00462{margin-left:-5.227200px;}
._0_c00462{margin-left:-3.945600px;}
._5_c00462{margin-left:-2.944800px;}
._7_c00462{margin-left:-1.591200px;}
._1_c00462{width:1.540800px;}
._3_c00462{width:4.644000px;}
._b_c00462{width:9.194400px;}
._a_c00462{width:10.749600px;}
._8_c00462{width:12.326400px;}
._4_c00462{width:15.278400px;}
._2_c00462{width:18.417600px;}
._6_c00462{width:23.616000px;}
.fc0_c00462{color:rgb(0,0,0);}
.fs0_c00462{font-size:54.000000px;}
.fs2_c00462{font-size:60.000000px;}
.fs1_c00462{font-size:72.000000px;}
.y0_c00462{bottom:0.000000px;}
.y2_c00462{bottom:12.000000px;}
.y8_c00462{bottom:67.500000px;}
.y6_c00462{bottom:150.000000px;}
.y5_c00462{bottom:177.000000px;}
.y4_c00462{bottom:204.000000px;}
.y3_c00462{bottom:249.000000px;}
.y1_c00462{bottom:699.000000px;}
.y7_c00462{bottom:1194.000000px;}
.h2_c00462{height:42.292969px;}
.h4_c00462{height:51.187500px;}
.h5_c00462{height:56.074219px;}
.h1_c00462{height:414.000000px;}
.h3_c00462{height:421.500000px;}
.h0_c00462{height:1263.000000px;}
.w1_c00462{width:676.500000px;}
.w0_c00462{width:892.500000px;}
.x0_c00462{left:0.000000px;}
.x1_c00462{left:150.000000px;}
.x3_c00462{left:256.567800px;}
.x2_c00462{left:274.573200px;}
.x4_c00462{left:416.782800px;}
.x5_c00462{left:801.992850px;}
@media print{
.v0_c00462{vertical-align:0.000000pt;}
.ls2_c00462{letter-spacing:-0.004800pt;}
.ls3_c00462{letter-spacing:0.000000pt;}
.ls0_c00462{letter-spacing:0.009600pt;}
.ls1_c00462{letter-spacing:0.010667pt;}
.ws0_c00462{word-spacing:0.000000pt;}
._9_c00462{margin-left:-4.646400pt;}
._0_c00462{margin-left:-3.507200pt;}
._5_c00462{margin-left:-2.617600pt;}
._7_c00462{margin-left:-1.414400pt;}
._1_c00462{width:1.369600pt;}
._3_c00462{width:4.128000pt;}
._b_c00462{width:8.172800pt;}
._a_c00462{width:9.555200pt;}
._8_c00462{width:10.956800pt;}
._4_c00462{width:13.580800pt;}
._2_c00462{width:16.371200pt;}
._6_c00462{width:20.992000pt;}
.fs0_c00462{font-size:48.000000pt;}
.fs2_c00462{font-size:53.333333pt;}
.fs1_c00462{font-size:64.000000pt;}
.y0_c00462{bottom:0.000000pt;}
.y2_c00462{bottom:10.666667pt;}
.y8_c00462{bottom:60.000000pt;}
.y6_c00462{bottom:133.333333pt;}
.y5_c00462{bottom:157.333333pt;}
.y4_c00462{bottom:181.333333pt;}
.y3_c00462{bottom:221.333333pt;}
.y1_c00462{bottom:621.333333pt;}
.y7_c00462{bottom:1061.333333pt;}
.h2_c00462{height:37.593750pt;}
.h4_c00462{height:45.500000pt;}
.h5_c00462{height:49.843750pt;}
.h1_c00462{height:368.000000pt;}
.h3_c00462{height:374.666667pt;}
.h0_c00462{height:1122.666667pt;}
.w1_c00462{width:601.333333pt;}
.w0_c00462{width:793.333333pt;}
.x0_c00462{left:0.000000pt;}
.x1_c00462{left:133.333333pt;}
.x3_c00462{left:228.060267pt;}
.x2_c00462{left:244.065067pt;}
.x4_c00462{left:370.473600pt;}
.x5_c00462{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_71e87293dac8b7268b50014b.woff2')format("woff");}.ff1_c00463{font-family:ff1_c00463;line-height:0.932129;font-style:normal;font-weight:normal;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_246db5151e200728f97328a6.woff2')format("woff");}.ff2_c00463{font-family:ff2_c00463;line-height:0.755859;font-style:normal;font-weight:normal;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_59f60fac35a96dd57b18b68d.woff2')format("woff");}.ff3_c00463{font-family:ff3_c00463;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00463{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00463{vertical-align:0.000000px;}
.ls0_c00463{letter-spacing:0.000000px;}
.ls1_c00463{letter-spacing:0.012000px;}
.sc__c00463{text-shadow:none;}
.sc0_c00463{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00463{-webkit-text-stroke:0px transparent;}
.sc0_c00463{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00463{word-spacing:0.000000px;}
._3_c00463{margin-left:-3.283200px;}
._5_c00463{margin-left:-1.965600px;}
._7_c00463{width:1.173600px;}
._1_c00463{width:2.246400px;}
._d_c00463{width:3.643200px;}
._c_c00463{width:5.788800px;}
._9_c00463{width:7.005600px;}
._b_c00463{width:8.942400px;}
._a_c00463{width:10.288800px;}
._2_c00463{width:12.024000px;}
._8_c00463{width:13.111200px;}
._0_c00463{width:14.277600px;}
._6_c00463{width:16.178400px;}
._4_c00463{width:17.596800px;}
.fc0_c00463{color:rgb(0,0,0);}
.fs1_c00463{font-size:60.000000px;}
.fs0_c00463{font-size:72.000000px;}
.y0_c00463{bottom:0.000000px;}
.y7_c00463{bottom:67.500000px;}
.y5_c00463{bottom:174.000000px;}
.y4_c00463{bottom:201.000000px;}
.y3_c00463{bottom:228.000000px;}
.y2_c00463{bottom:255.000000px;}
.y1_c00463{bottom:282.000000px;}
.y6_c00463{bottom:1194.000000px;}
.h3_c00463{height:44.208984px;}
.h1_c00463{height:51.257812px;}
.h2_c00463{height:56.074219px;}
.h0_c00463{height:1263.000000px;}
.w0_c00463{width:892.500000px;}
.x0_c00463{left:0.000000px;}
.x1_c00463{left:65.480310px;}
@media print{
.v0_c00463{vertical-align:0.000000pt;}
.ls0_c00463{letter-spacing:0.000000pt;}
.ls1_c00463{letter-spacing:0.010667pt;}
.ws0_c00463{word-spacing:0.000000pt;}
._3_c00463{margin-left:-2.918400pt;}
._5_c00463{margin-left:-1.747200pt;}
._7_c00463{width:1.043200pt;}
._1_c00463{width:1.996800pt;}
._d_c00463{width:3.238400pt;}
._c_c00463{width:5.145600pt;}
._9_c00463{width:6.227200pt;}
._b_c00463{width:7.948800pt;}
._a_c00463{width:9.145600pt;}
._2_c00463{width:10.688000pt;}
._8_c00463{width:11.654400pt;}
._0_c00463{width:12.691200pt;}
._6_c00463{width:14.380800pt;}
._4_c00463{width:15.641600pt;}
.fs1_c00463{font-size:53.333333pt;}
.fs0_c00463{font-size:64.000000pt;}
.y0_c00463{bottom:0.000000pt;}
.y7_c00463{bottom:60.000000pt;}
.y5_c00463{bottom:154.666667pt;}
.y4_c00463{bottom:178.666667pt;}
.y3_c00463{bottom:202.666667pt;}
.y2_c00463{bottom:226.666667pt;}
.y1_c00463{bottom:250.666667pt;}
.y6_c00463{bottom:1061.333333pt;}
.h3_c00463{height:39.296875pt;}
.h1_c00463{height:45.562500pt;}
.h2_c00463{height:49.843750pt;}
.h0_c00463{height:1122.666667pt;}
.w0_c00463{width:793.333333pt;}
.x0_c00463{left:0.000000pt;}
.x1_c00463{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b13ef204e22525498a432b1d.woff2')format("woff");}.ff1_c00464{font-family:ff1_c00464;line-height:0.933105;font-style:normal;font-weight:normal;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_76c40c319ff7b7ba5161fcb4.woff2')format("woff");}.ff2_c00464{font-family:ff2_c00464;line-height:0.987793;font-style:normal;font-weight:normal;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_d349ffe0073b3713aaee53a1.woff2')format("woff");}.ff3_c00464{font-family:ff3_c00464;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00464{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00464{vertical-align:0.000000px;}
.ls1_c00464{letter-spacing:0.000000px;}
.ls0_c00464{letter-spacing:0.012000px;}
.sc__c00464{text-shadow:none;}
.sc0_c00464{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00464{-webkit-text-stroke:0px transparent;}
.sc0_c00464{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00464{word-spacing:0.000000px;}
._2_c00464{margin-left:-4.262400px;}
._8_c00464{margin-left:-2.599200px;}
._0_c00464{margin-left:-1.252800px;}
._5_c00464{width:1.454400px;}
._4_c00464{width:2.527200px;}
._1_c00464{width:4.543200px;}
._6_c00464{width:5.803200px;}
._3_c00464{width:8.769600px;}
._b_c00464{width:11.498400px;}
._a_c00464{width:13.154400px;}
._7_c00464{width:15.472800px;}
._9_c00464{width:16.653600px;}
.fc0_c00464{color:rgb(0,0,0);}
.fs1_c00464{font-size:54.000000px;}
.fs2_c00464{font-size:60.000000px;}
.fs0_c00464{font-size:72.000000px;}
.y0_c00464{bottom:0.000000px;}
.y5_c00464{bottom:12.000000px;}
.ya_c00464{bottom:67.500000px;}
.y8_c00464{bottom:132.000000px;}
.y7_c00464{bottom:159.000000px;}
.y6_c00464{bottom:186.000000px;}
.y4_c00464{bottom:231.000000px;}
.y3_c00464{bottom:1041.000000px;}
.y2_c00464{bottom:1068.000000px;}
.y1_c00464{bottom:1095.000000px;}
.y9_c00464{bottom:1194.000000px;}
.h3_c00464{height:42.292969px;}
.h1_c00464{height:51.187500px;}
.h4_c00464{height:56.074219px;}
.h2_c00464{height:787.500000px;}
.h0_c00464{height:1263.000000px;}
.w1_c00464{width:676.500000px;}
.w0_c00464{width:892.500000px;}
.x0_c00464{left:0.000000px;}
.x1_c00464{left:150.519750px;}
.x2_c00464{left:152.117400px;}
.x3_c00464{left:416.782800px;}
.x4_c00464{left:801.992850px;}
@media print{
.v0_c00464{vertical-align:0.000000pt;}
.ls1_c00464{letter-spacing:0.000000pt;}
.ls0_c00464{letter-spacing:0.010667pt;}
.ws0_c00464{word-spacing:0.000000pt;}
._2_c00464{margin-left:-3.788800pt;}
._8_c00464{margin-left:-2.310400pt;}
._0_c00464{margin-left:-1.113600pt;}
._5_c00464{width:1.292800pt;}
._4_c00464{width:2.246400pt;}
._1_c00464{width:4.038400pt;}
._6_c00464{width:5.158400pt;}
._3_c00464{width:7.795200pt;}
._b_c00464{width:10.220800pt;}
._a_c00464{width:11.692800pt;}
._7_c00464{width:13.753600pt;}
._9_c00464{width:14.803200pt;}
.fs1_c00464{font-size:48.000000pt;}
.fs2_c00464{font-size:53.333333pt;}
.fs0_c00464{font-size:64.000000pt;}
.y0_c00464{bottom:0.000000pt;}
.y5_c00464{bottom:10.666667pt;}
.ya_c00464{bottom:60.000000pt;}
.y8_c00464{bottom:117.333333pt;}
.y7_c00464{bottom:141.333333pt;}
.y6_c00464{bottom:165.333333pt;}
.y4_c00464{bottom:205.333333pt;}
.y3_c00464{bottom:925.333333pt;}
.y2_c00464{bottom:949.333333pt;}
.y1_c00464{bottom:973.333333pt;}
.y9_c00464{bottom:1061.333333pt;}
.h3_c00464{height:37.593750pt;}
.h1_c00464{height:45.500000pt;}
.h4_c00464{height:49.843750pt;}
.h2_c00464{height:700.000000pt;}
.h0_c00464{height:1122.666667pt;}
.w1_c00464{width:601.333333pt;}
.w0_c00464{width:793.333333pt;}
.x0_c00464{left:0.000000pt;}
.x1_c00464{left:133.795333pt;}
.x2_c00464{left:135.215467pt;}
.x3_c00464{left:370.473600pt;}
.x4_c00464{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6cfabea01b199e8f42b71c3a.woff2')format("woff");}.ff1_c00465{font-family:ff1_c00465;line-height:0.987793;font-style:normal;font-weight:normal;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_fea2273ed6bec75ecea4572d.woff2')format("woff");}.ff2_c00465{font-family:ff2_c00465;line-height:0.934082;font-style:normal;font-weight:normal;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_b7711db8eab06f925343456f.woff2')format("woff");}.ff3_c00465{font-family:ff3_c00465;line-height:0.755859;font-style:normal;font-weight:normal;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_9238dc4edc43daa7404e71f4.woff2')format("woff");}.ff4_c00465{font-family:ff4_c00465;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00465{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00465{vertical-align:0.000000px;}
.ls1_c00465{letter-spacing:0.000000px;}
.ls0_c00465{letter-spacing:0.005400px;}
.ls2_c00465{letter-spacing:0.012000px;}
.sc__c00465{text-shadow:none;}
.sc0_c00465{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00465{-webkit-text-stroke:0px transparent;}
.sc0_c00465{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00465{word-spacing:0.000000px;}
._12_c00465{margin-left:-10.584000px;}
._d_c00465{margin-left:-4.104000px;}
._7_c00465{margin-left:-2.656800px;}
._0_c00465{margin-left:-1.490400px;}
._2_c00465{width:1.504800px;}
._5_c00465{width:2.851200px;}
._9_c00465{width:3.960000px;}
._13_c00465{width:5.608800px;}
._a_c00465{width:7.531200px;}
._6_c00465{width:8.632800px;}
._3_c00465{width:10.000800px;}
._4_c00465{width:11.505600px;}
._1_c00465{width:12.967200px;}
._8_c00465{width:14.191200px;}
._b_c00465{width:15.595200px;}
._c_c00465{width:17.647200px;}
._11_c00465{width:22.845600px;}
._10_c00465{width:25.286400px;}
._f_c00465{width:26.841600px;}
._e_c00465{width:29.440800px;}
.fc0_c00465{color:rgb(0,0,0);}
.fs0_c00465{font-size:54.000000px;}
.fs2_c00465{font-size:60.000000px;}
.fs1_c00465{font-size:72.000000px;}
.y0_c00465{bottom:0.000000px;}
.y2_c00465{bottom:12.000000px;}
.yb_c00465{bottom:67.500000px;}
.y9_c00465{bottom:147.000000px;}
.y8_c00465{bottom:174.000000px;}
.y7_c00465{bottom:219.000000px;}
.y6_c00465{bottom:601.500000px;}
.y5_c00465{bottom:628.500000px;}
.y4_c00465{bottom:655.500000px;}
.y3_c00465{bottom:682.500000px;}
.y1_c00465{bottom:718.500000px;}
.ya_c00465{bottom:1194.000000px;}
.h2_c00465{height:42.292969px;}
.h6_c00465{height:44.208984px;}
.h3_c00465{height:51.257812px;}
.h5_c00465{height:56.074219px;}
.h4_c00465{height:360.000000px;}
.h1_c00465{height:394.500000px;}
.h0_c00465{height:1263.000000px;}
.w1_c00465{width:676.500000px;}
.w0_c00465{width:892.500000px;}
.x0_c00465{left:0.000000px;}
.x1_c00465{left:66.000000px;}
.x3_c00465{left:95.144535px;}
.x2_c00465{left:140.710305px;}
@media print{
.v0_c00465{vertical-align:0.000000pt;}
.ls1_c00465{letter-spacing:0.000000pt;}
.ls0_c00465{letter-spacing:0.004800pt;}
.ls2_c00465{letter-spacing:0.010667pt;}
.ws0_c00465{word-spacing:0.000000pt;}
._12_c00465{margin-left:-9.408000pt;}
._d_c00465{margin-left:-3.648000pt;}
._7_c00465{margin-left:-2.361600pt;}
._0_c00465{margin-left:-1.324800pt;}
._2_c00465{width:1.337600pt;}
._5_c00465{width:2.534400pt;}
._9_c00465{width:3.520000pt;}
._13_c00465{width:4.985600pt;}
._a_c00465{width:6.694400pt;}
._6_c00465{width:7.673600pt;}
._3_c00465{width:8.889600pt;}
._4_c00465{width:10.227200pt;}
._1_c00465{width:11.526400pt;}
._8_c00465{width:12.614400pt;}
._b_c00465{width:13.862400pt;}
._c_c00465{width:15.686400pt;}
._11_c00465{width:20.307200pt;}
._10_c00465{width:22.476800pt;}
._f_c00465{width:23.859200pt;}
._e_c00465{width:26.169600pt;}
.fs0_c00465{font-size:48.000000pt;}
.fs2_c00465{font-size:53.333333pt;}
.fs1_c00465{font-size:64.000000pt;}
.y0_c00465{bottom:0.000000pt;}
.y2_c00465{bottom:10.666667pt;}
.yb_c00465{bottom:60.000000pt;}
.y9_c00465{bottom:130.666667pt;}
.y8_c00465{bottom:154.666667pt;}
.y7_c00465{bottom:194.666667pt;}
.y6_c00465{bottom:534.666667pt;}
.y5_c00465{bottom:558.666667pt;}
.y4_c00465{bottom:582.666667pt;}
.y3_c00465{bottom:606.666667pt;}
.y1_c00465{bottom:638.666667pt;}
.ya_c00465{bottom:1061.333333pt;}
.h2_c00465{height:37.593750pt;}
.h6_c00465{height:39.296875pt;}
.h3_c00465{height:45.562500pt;}
.h5_c00465{height:49.843750pt;}
.h4_c00465{height:320.000000pt;}
.h1_c00465{height:350.666667pt;}
.h0_c00465{height:1122.666667pt;}
.w1_c00465{width:601.333333pt;}
.w0_c00465{width:793.333333pt;}
.x0_c00465{left:0.000000pt;}
.x1_c00465{left:58.666667pt;}
.x3_c00465{left:84.572920pt;}
.x2_c00465{left:125.075827pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cacb3d1e9ef35a4e44c62485.woff2')format("woff");}.ff1_c00466{font-family:ff1_c00466;line-height:0.976074;font-style:normal;font-weight:normal;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_71d2bddf5ef8ea421703918b.woff2')format("woff");}.ff2_c00466{font-family:ff2_c00466;line-height:0.933105;font-style:normal;font-weight:normal;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_f208570514ceb4793a1e7445.woff2')format("woff");}.ff3_c00466{font-family:ff3_c00466;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00466{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00466{vertical-align:0.000000px;}
.ls2_c00466{letter-spacing:0.000000px;}
.ls1_c00466{letter-spacing:0.012000px;}
.ls0_c00466{letter-spacing:0.016200px;}
.sc__c00466{text-shadow:none;}
.sc0_c00466{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00466{-webkit-text-stroke:0px transparent;}
.sc0_c00466{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00466{word-spacing:0.000000px;}
._0_c00466{margin-left:-10.584000px;}
._5_c00466{margin-left:-3.304800px;}
._3_c00466{margin-left:-1.548000px;}
._1_c00466{width:1.418400px;}
._2_c00466{width:2.556000px;}
._b_c00466{width:3.614400px;}
._4_c00466{width:4.975200px;}
._c_c00466{width:6.609600px;}
._a_c00466{width:8.668800px;}
._8_c00466{width:12.261600px;}
._6_c00466{width:13.651200px;}
._7_c00466{width:15.199200px;}
._9_c00466{width:17.064000px;}
.fc0_c00466{color:rgb(0,0,0);}
.fs0_c00466{font-size:54.000000px;}
.fs2_c00466{font-size:60.000000px;}
.fs1_c00466{font-size:72.000000px;}
.y0_c00466{bottom:0.000000px;}
.y2_c00466{bottom:12.000000px;}
.yd_c00466{bottom:67.500000px;}
.yb_c00466{bottom:153.000000px;}
.ya_c00466{bottom:180.000000px;}
.y9_c00466{bottom:207.000000px;}
.y8_c00466{bottom:234.000000px;}
.y7_c00466{bottom:279.000000px;}
.y6_c00466{bottom:708.000000px;}
.y5_c00466{bottom:735.000000px;}
.y4_c00466{bottom:762.000000px;}
.y3_c00466{bottom:789.000000px;}
.y1_c00466{bottom:834.000000px;}
.yc_c00466{bottom:1194.000000px;}
.h2_c00466{height:42.292969px;}
.h3_c00466{height:51.187500px;}
.h5_c00466{height:56.074219px;}
.h1_c00466{height:279.000000px;}
.h4_c00466{height:397.500000px;}
.h0_c00466{height:1263.000000px;}
.w1_c00466{width:676.500000px;}
.w0_c00466{width:892.500000px;}
.x0_c00466{left:0.000000px;}
.x2_c00466{left:131.290620px;}
.x1_c00466{left:150.000000px;}
.x3_c00466{left:244.695900px;}
.x4_c00466{left:416.782800px;}
.x5_c00466{left:801.992850px;}
@media print{
.v0_c00466{vertical-align:0.000000pt;}
.ls2_c00466{letter-spacing:0.000000pt;}
.ls1_c00466{letter-spacing:0.010667pt;}
.ls0_c00466{letter-spacing:0.014400pt;}
.ws0_c00466{word-spacing:0.000000pt;}
._0_c00466{margin-left:-9.408000pt;}
._5_c00466{margin-left:-2.937600pt;}
._3_c00466{margin-left:-1.376000pt;}
._1_c00466{width:1.260800pt;}
._2_c00466{width:2.272000pt;}
._b_c00466{width:3.212800pt;}
._4_c00466{width:4.422400pt;}
._c_c00466{width:5.875200pt;}
._a_c00466{width:7.705600pt;}
._8_c00466{width:10.899200pt;}
._6_c00466{width:12.134400pt;}
._7_c00466{width:13.510400pt;}
._9_c00466{width:15.168000pt;}
.fs0_c00466{font-size:48.000000pt;}
.fs2_c00466{font-size:53.333333pt;}
.fs1_c00466{font-size:64.000000pt;}
.y0_c00466{bottom:0.000000pt;}
.y2_c00466{bottom:10.666667pt;}
.yd_c00466{bottom:60.000000pt;}
.yb_c00466{bottom:136.000000pt;}
.ya_c00466{bottom:160.000000pt;}
.y9_c00466{bottom:184.000000pt;}
.y8_c00466{bottom:208.000000pt;}
.y7_c00466{bottom:248.000000pt;}
.y6_c00466{bottom:629.333333pt;}
.y5_c00466{bottom:653.333333pt;}
.y4_c00466{bottom:677.333333pt;}
.y3_c00466{bottom:701.333333pt;}
.y1_c00466{bottom:741.333333pt;}
.yc_c00466{bottom:1061.333333pt;}
.h2_c00466{height:37.593750pt;}
.h3_c00466{height:45.500000pt;}
.h5_c00466{height:49.843750pt;}
.h1_c00466{height:248.000000pt;}
.h4_c00466{height:353.333333pt;}
.h0_c00466{height:1122.666667pt;}
.w1_c00466{width:601.333333pt;}
.w0_c00466{width:793.333333pt;}
.x0_c00466{left:0.000000pt;}
.x2_c00466{left:116.702773pt;}
.x1_c00466{left:133.333333pt;}
.x3_c00466{left:217.507467pt;}
.x4_c00466{left:370.473600pt;}
.x5_c00466{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_648d9530932f3d096209a9d4.woff2')format("woff");}.ff1_c00467{font-family:ff1_c00467;line-height:0.987793;font-style:normal;font-weight:normal;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_17d6f782ba2105e211af1fc6.woff2')format("woff");}.ff2_c00467{font-family:ff2_c00467;line-height:0.934082;font-style:normal;font-weight:normal;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_4f59acd1dafbdca3f97b92cd.woff2')format("woff");}.ff3_c00467{font-family:ff3_c00467;line-height:0.755859;font-style:normal;font-weight:normal;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_be55f011d2f48f3ff196a484.woff2')format("woff");}.ff4_c00467{font-family:ff4_c00467;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00467{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00467{vertical-align:0.000000px;}
.ls0_c00467{letter-spacing:-0.005400px;}
.ls1_c00467{letter-spacing:0.000000px;}
.ls2_c00467{letter-spacing:0.012000px;}
.sc__c00467{text-shadow:none;}
.sc0_c00467{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00467{-webkit-text-stroke:0px transparent;}
.sc0_c00467{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00467{word-spacing:0.000000px;}
._10_c00467{margin-left:-4.063440px;}
._4_c00467{margin-left:-2.448000px;}
._b_c00467{margin-left:-1.159200px;}
._2_c00467{width:1.123200px;}
._0_c00467{width:2.325600px;}
._6_c00467{width:3.484800px;}
._d_c00467{width:6.105600px;}
._e_c00467{width:11.188800px;}
._c_c00467{width:13.068000px;}
._a_c00467{width:15.537600px;}
._f_c00467{width:16.675200px;}
._9_c00467{width:17.877600px;}
._7_c00467{width:21.139200px;}
._1_c00467{width:22.255200px;}
._3_c00467{width:23.472000px;}
._8_c00467{width:24.696000px;}
._5_c00467{width:27.050400px;}
.fc0_c00467{color:rgb(0,0,0);}
.fs0_c00467{font-size:54.000000px;}
.fs2_c00467{font-size:60.000000px;}
.fs1_c00467{font-size:72.000000px;}
.y0_c00467{bottom:0.000000px;}
.y2_c00467{bottom:12.000000px;}
.y9_c00467{bottom:67.500000px;}
.y7_c00467{bottom:142.500000px;}
.y6_c00467{bottom:516.000000px;}
.y5_c00467{bottom:543.000000px;}
.y4_c00467{bottom:570.000000px;}
.y3_c00467{bottom:597.000000px;}
.y1_c00467{bottom:642.000000px;}
.y8_c00467{bottom:1194.000000px;}
.h2_c00467{height:42.292969px;}
.h6_c00467{height:44.208984px;}
.h3_c00467{height:51.257812px;}
.h5_c00467{height:56.074219px;}
.h4_c00467{height:342.000000px;}
.h1_c00467{height:471.000000px;}
.h0_c00467{height:1263.000000px;}
.w1_c00467{width:676.500000px;}
.w0_c00467{width:892.500000px;}
.x0_c00467{left:0.000000px;}
.x1_c00467{left:66.000000px;}
.x3_c00467{left:69.782595px;}
.x2_c00467{left:246.057150px;}
@media print{
.v0_c00467{vertical-align:0.000000pt;}
.ls0_c00467{letter-spacing:-0.004800pt;}
.ls1_c00467{letter-spacing:0.000000pt;}
.ls2_c00467{letter-spacing:0.010667pt;}
.ws0_c00467{word-spacing:0.000000pt;}
._10_c00467{margin-left:-3.611947pt;}
._4_c00467{margin-left:-2.176000pt;}
._b_c00467{margin-left:-1.030400pt;}
._2_c00467{width:0.998400pt;}
._0_c00467{width:2.067200pt;}
._6_c00467{width:3.097600pt;}
._d_c00467{width:5.427200pt;}
._e_c00467{width:9.945600pt;}
._c_c00467{width:11.616000pt;}
._a_c00467{width:13.811200pt;}
._f_c00467{width:14.822400pt;}
._9_c00467{width:15.891200pt;}
._7_c00467{width:18.790400pt;}
._1_c00467{width:19.782400pt;}
._3_c00467{width:20.864000pt;}
._8_c00467{width:21.952000pt;}
._5_c00467{width:24.044800pt;}
.fs0_c00467{font-size:48.000000pt;}
.fs2_c00467{font-size:53.333333pt;}
.fs1_c00467{font-size:64.000000pt;}
.y0_c00467{bottom:0.000000pt;}
.y2_c00467{bottom:10.666667pt;}
.y9_c00467{bottom:60.000000pt;}
.y7_c00467{bottom:126.666667pt;}
.y6_c00467{bottom:458.666667pt;}
.y5_c00467{bottom:482.666667pt;}
.y4_c00467{bottom:506.666667pt;}
.y3_c00467{bottom:530.666667pt;}
.y1_c00467{bottom:570.666667pt;}
.y8_c00467{bottom:1061.333333pt;}
.h2_c00467{height:37.593750pt;}
.h6_c00467{height:39.296875pt;}
.h3_c00467{height:45.562500pt;}
.h5_c00467{height:49.843750pt;}
.h4_c00467{height:304.000000pt;}
.h1_c00467{height:418.666667pt;}
.h0_c00467{height:1122.666667pt;}
.w1_c00467{width:601.333333pt;}
.w0_c00467{width:793.333333pt;}
.x0_c00467{left:0.000000pt;}
.x1_c00467{left:58.666667pt;}
.x3_c00467{left:62.028973pt;}
.x2_c00467{left:218.717467pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_74af376ee8c2f14eefd1a7fb.woff2')format("woff");}.ff1_c00468{font-family:ff1_c00468;line-height:0.934082;font-style:normal;font-weight:normal;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_c84275b9d998acfbeda5a0ad.woff2')format("woff");}.ff2_c00468{font-family:ff2_c00468;line-height:0.987793;font-style:normal;font-weight:normal;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_f11bd84bc77133caf7bdda33.woff2')format("woff");}.ff3_c00468{font-family:ff3_c00468;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00468{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00468{vertical-align:0.000000px;}
.ls2_c00468{letter-spacing:0.000000px;}
.ls0_c00468{letter-spacing:0.005400px;}
.ls1_c00468{letter-spacing:0.012000px;}
.sc__c00468{text-shadow:none;}
.sc0_c00468{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00468{-webkit-text-stroke:0px transparent;}
.sc0_c00468{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00468{word-spacing:0.000000px;}
._a_c00468{margin-left:-10.828800px;}
._4_c00468{margin-left:-4.471200px;}
._b_c00468{margin-left:-2.930400px;}
._6_c00468{margin-left:-1.087200px;}
._d_c00468{width:1.173600px;}
._2_c00468{width:2.383200px;}
._8_c00468{width:3.736800px;}
._1_c00468{width:5.133600px;}
._9_c00468{width:6.300000px;}
._3_c00468{width:7.372800px;}
._0_c00468{width:10.015200px;}
._7_c00468{width:11.095200px;}
._c_c00468{width:12.924000px;}
._5_c00468{width:14.032800px;}
._f_c00468{width:15.343200px;}
._e_c00468{width:16.754400px;}
.fc0_c00468{color:rgb(0,0,0);}
.fs1_c00468{font-size:54.000000px;}
.fs2_c00468{font-size:60.000000px;}
.fs0_c00468{font-size:72.000000px;}
.y0_c00468{bottom:0.000000px;}
.y6_c00468{bottom:12.000000px;}
.y9_c00468{bottom:67.500000px;}
.y7_c00468{bottom:165.000000px;}
.y5_c00468{bottom:583.500000px;}
.y4_c00468{bottom:1014.000000px;}
.y3_c00468{bottom:1041.000000px;}
.y2_c00468{bottom:1068.000000px;}
.y1_c00468{bottom:1095.000000px;}
.y8_c00468{bottom:1194.000000px;}
.h3_c00468{height:42.292969px;}
.h1_c00468{height:51.257812px;}
.h5_c00468{height:56.074219px;}
.h2_c00468{height:399.000000px;}
.h4_c00468{height:411.000000px;}
.h0_c00468{height:1263.000000px;}
.w1_c00468{width:676.500000px;}
.w0_c00468{width:892.500000px;}
.x0_c00468{left:0.000000px;}
.x2_c00468{left:129.369120px;}
.x1_c00468{left:150.519750px;}
.x3_c00468{left:167.413650px;}
.x4_c00468{left:416.782800px;}
.x5_c00468{left:801.992850px;}
@media print{
.v0_c00468{vertical-align:0.000000pt;}
.ls2_c00468{letter-spacing:0.000000pt;}
.ls0_c00468{letter-spacing:0.004800pt;}
.ls1_c00468{letter-spacing:0.010667pt;}
.ws0_c00468{word-spacing:0.000000pt;}
._a_c00468{margin-left:-9.625600pt;}
._4_c00468{margin-left:-3.974400pt;}
._b_c00468{margin-left:-2.604800pt;}
._6_c00468{margin-left:-0.966400pt;}
._d_c00468{width:1.043200pt;}
._2_c00468{width:2.118400pt;}
._8_c00468{width:3.321600pt;}
._1_c00468{width:4.563200pt;}
._9_c00468{width:5.600000pt;}
._3_c00468{width:6.553600pt;}
._0_c00468{width:8.902400pt;}
._7_c00468{width:9.862400pt;}
._c_c00468{width:11.488000pt;}
._5_c00468{width:12.473600pt;}
._f_c00468{width:13.638400pt;}
._e_c00468{width:14.892800pt;}
.fs1_c00468{font-size:48.000000pt;}
.fs2_c00468{font-size:53.333333pt;}
.fs0_c00468{font-size:64.000000pt;}
.y0_c00468{bottom:0.000000pt;}
.y6_c00468{bottom:10.666667pt;}
.y9_c00468{bottom:60.000000pt;}
.y7_c00468{bottom:146.666667pt;}
.y5_c00468{bottom:518.666667pt;}
.y4_c00468{bottom:901.333333pt;}
.y3_c00468{bottom:925.333333pt;}
.y2_c00468{bottom:949.333333pt;}
.y1_c00468{bottom:973.333333pt;}
.y8_c00468{bottom:1061.333333pt;}
.h3_c00468{height:37.593750pt;}
.h1_c00468{height:45.562500pt;}
.h5_c00468{height:49.843750pt;}
.h2_c00468{height:354.666667pt;}
.h4_c00468{height:365.333333pt;}
.h0_c00468{height:1122.666667pt;}
.w1_c00468{width:601.333333pt;}
.w0_c00468{width:793.333333pt;}
.x0_c00468{left:0.000000pt;}
.x2_c00468{left:114.994773pt;}
.x1_c00468{left:133.795333pt;}
.x3_c00468{left:148.812133pt;}
.x4_c00468{left:370.473600pt;}
.x5_c00468{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3602d36ab3ab24f8e9918a65.woff2')format("woff");}.ff1_c00469{font-family:ff1_c00469;line-height:0.934082;font-style:normal;font-weight:normal;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_5cfcf4859088b977a99b2d26.woff2')format("woff");}.ff2_c00469{font-family:ff2_c00469;line-height:0.987793;font-style:normal;font-weight:normal;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_21dfa6121fb138c31e29f7b3.woff2')format("woff");}.ff3_c00469{font-family:ff3_c00469;line-height:0.755859;font-style:normal;font-weight:normal;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_7b2bed0e773d0cbf6fe1b64f.woff2')format("woff");}.ff4_c00469{font-family:ff4_c00469;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00469{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00469{vertical-align:0.000000px;}
.ls3_c00469{letter-spacing:-0.005400px;}
.ls2_c00469{letter-spacing:0.000000px;}
.ls0_c00469{letter-spacing:0.005400px;}
.ls1_c00469{letter-spacing:0.010800px;}
.ls4_c00469{letter-spacing:0.012000px;}
.sc__c00469{text-shadow:none;}
.sc0_c00469{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00469{-webkit-text-stroke:0px transparent;}
.sc0_c00469{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00469{word-spacing:0.000000px;}
._f_c00469{margin-left:-3.852000px;}
._0_c00469{margin-left:-2.296800px;}
._b_c00469{margin-left:-1.144800px;}
._2_c00469{width:1.065600px;}
._4_c00469{width:3.067200px;}
._3_c00469{width:4.708800px;}
._5_c00469{width:5.896800px;}
._1_c00469{width:8.085600px;}
._d_c00469{width:14.292000px;}
._e_c00469{width:17.863200px;}
._7_c00469{width:24.861600px;}
._9_c00469{width:27.468000px;}
._8_c00469{width:28.497600px;}
._6_c00469{width:29.599200px;}
._c_c00469{width:30.744000px;}
._a_c00469{width:31.824000px;}
.fc0_c00469{color:rgb(0,0,0);}
.fs1_c00469{font-size:54.000000px;}
.fs2_c00469{font-size:60.000000px;}
.fs0_c00469{font-size:72.000000px;}
.y0_c00469{bottom:0.000000px;}
.y6_c00469{bottom:10.500000px;}
.y5_c00469{bottom:28.500000px;}
.yb_c00469{bottom:67.500000px;}
.y9_c00469{bottom:193.500000px;}
.y8_c00469{bottom:541.500000px;}
.y7_c00469{bottom:568.500000px;}
.y4_c00469{bottom:613.500000px;}
.y3_c00469{bottom:1041.000000px;}
.y2_c00469{bottom:1068.000000px;}
.y1_c00469{bottom:1095.000000px;}
.ya_c00469{bottom:1194.000000px;}
.h3_c00469{height:42.292969px;}
.h6_c00469{height:44.208984px;}
.h1_c00469{height:51.257812px;}
.h5_c00469{height:56.074219px;}
.h4_c00469{height:316.500000px;}
.h2_c00469{height:396.000000px;}
.h0_c00469{height:1263.000000px;}
.w1_c00469{width:676.500000px;}
.w0_c00469{width:892.500000px;}
.x0_c00469{left:0.000000px;}
.x2_c00469{left:28.247685px;}
.x4_c00469{left:31.490820px;}
.x1_c00469{left:65.480310px;}
.x3_c00469{left:146.428710px;}
.x5_c00469{left:296.009700px;}
@media print{
.v0_c00469{vertical-align:0.000000pt;}
.ls3_c00469{letter-spacing:-0.004800pt;}
.ls2_c00469{letter-spacing:0.000000pt;}
.ls0_c00469{letter-spacing:0.004800pt;}
.ls1_c00469{letter-spacing:0.009600pt;}
.ls4_c00469{letter-spacing:0.010667pt;}
.ws0_c00469{word-spacing:0.000000pt;}
._f_c00469{margin-left:-3.424000pt;}
._0_c00469{margin-left:-2.041600pt;}
._b_c00469{margin-left:-1.017600pt;}
._2_c00469{width:0.947200pt;}
._4_c00469{width:2.726400pt;}
._3_c00469{width:4.185600pt;}
._5_c00469{width:5.241600pt;}
._1_c00469{width:7.187200pt;}
._d_c00469{width:12.704000pt;}
._e_c00469{width:15.878400pt;}
._7_c00469{width:22.099200pt;}
._9_c00469{width:24.416000pt;}
._8_c00469{width:25.331200pt;}
._6_c00469{width:26.310400pt;}
._c_c00469{width:27.328000pt;}
._a_c00469{width:28.288000pt;}
.fs1_c00469{font-size:48.000000pt;}
.fs2_c00469{font-size:53.333333pt;}
.fs0_c00469{font-size:64.000000pt;}
.y0_c00469{bottom:0.000000pt;}
.y6_c00469{bottom:9.333333pt;}
.y5_c00469{bottom:25.333333pt;}
.yb_c00469{bottom:60.000000pt;}
.y9_c00469{bottom:172.000000pt;}
.y8_c00469{bottom:481.333333pt;}
.y7_c00469{bottom:505.333333pt;}
.y4_c00469{bottom:545.333333pt;}
.y3_c00469{bottom:925.333333pt;}
.y2_c00469{bottom:949.333333pt;}
.y1_c00469{bottom:973.333333pt;}
.ya_c00469{bottom:1061.333333pt;}
.h3_c00469{height:37.593750pt;}
.h6_c00469{height:39.296875pt;}
.h1_c00469{height:45.562500pt;}
.h5_c00469{height:49.843750pt;}
.h4_c00469{height:281.333333pt;}
.h2_c00469{height:352.000000pt;}
.h0_c00469{height:1122.666667pt;}
.w1_c00469{width:601.333333pt;}
.w0_c00469{width:793.333333pt;}
.x0_c00469{left:0.000000pt;}
.x2_c00469{left:25.109053pt;}
.x4_c00469{left:27.991840pt;}
.x1_c00469{left:58.204720pt;}
.x3_c00469{left:130.158853pt;}
.x5_c00469{left:263.119733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1d1045b7513af3b192781367.woff2')format("woff");}.ff1_c00470{font-family:ff1_c00470;line-height:0.976074;font-style:normal;font-weight:normal;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_a642b80d3378a1b1a2f29593.woff2')format("woff");}.ff2_c00470{font-family:ff2_c00470;line-height:0.933105;font-style:normal;font-weight:normal;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_dfc0f2fd740f828cd3eab046.woff2')format("woff");}.ff3_c00470{font-family:ff3_c00470;line-height:0.888672;font-style:normal;font-weight:normal;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_9c7c4aba527e6b81b726295a.woff2')format("woff");}.ff4_c00470{font-family:ff4_c00470;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00470{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00470{vertical-align:0.000000px;}
.ls4_c00470{letter-spacing:-0.007200px;}
.ls5_c00470{letter-spacing:-0.005400px;}
.ls3_c00470{letter-spacing:0.000000px;}
.ls1_c00470{letter-spacing:0.007200px;}
.ls2_c00470{letter-spacing:0.012000px;}
.ls0_c00470{letter-spacing:0.014400px;}
.sc__c00470{text-shadow:none;}
.sc0_c00470{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00470{-webkit-text-stroke:0px transparent;}
.sc0_c00470{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00470{word-spacing:-19.807200px;}
.ws1_c00470{word-spacing:0.000000px;}
._9_c00470{margin-left:-5.695200px;}
._e_c00470{margin-left:-3.426000px;}
._4_c00470{margin-left:-1.850400px;}
._0_c00470{width:1.310400px;}
._6_c00470{width:2.829600px;}
._2_c00470{width:4.989600px;}
._c_c00470{width:6.076800px;}
._a_c00470{width:7.704000px;}
._d_c00470{width:8.978400px;}
._b_c00470{width:10.785600px;}
._3_c00470{width:31.824000px;}
._7_c00470{width:33.861600px;}
._1_c00470{width:35.337600px;}
._8_c00470{width:36.597600px;}
._5_c00470{width:38.613600px;}
.fc0_c00470{color:rgb(0,0,0);}
.fs0_c00470{font-size:54.000000px;}
.fs2_c00470{font-size:60.000000px;}
.fs1_c00470{font-size:72.000000px;}
.y0_c00470{bottom:0.000000px;}
.y2_c00470{bottom:12.000000px;}
.y8_c00470{bottom:67.500000px;}
.y6_c00470{bottom:178.500000px;}
.y5_c00470{bottom:664.500000px;}
.y4_c00470{bottom:691.500000px;}
.y3_c00470{bottom:718.500000px;}
.y1_c00470{bottom:763.500000px;}
.y7_c00470{bottom:1194.000000px;}
.h2_c00470{height:42.292969px;}
.h3_c00470{height:51.187500px;}
.h4_c00470{height:51.257812px;}
.h6_c00470{height:56.074219px;}
.h1_c00470{height:349.500000px;}
.h5_c00470{height:454.500000px;}
.h0_c00470{height:1263.000000px;}
.w1_c00470{width:676.500000px;}
.w0_c00470{width:892.500000px;}
.x0_c00470{left:0.000000px;}
.x1_c00470{left:150.000000px;}
.x2_c00470{left:186.483750px;}
.x3_c00470{left:252.049050px;}
.x4_c00470{left:416.782800px;}
.x5_c00470{left:801.992850px;}
@media print{
.v0_c00470{vertical-align:0.000000pt;}
.ls4_c00470{letter-spacing:-0.006400pt;}
.ls5_c00470{letter-spacing:-0.004800pt;}
.ls3_c00470{letter-spacing:0.000000pt;}
.ls1_c00470{letter-spacing:0.006400pt;}
.ls2_c00470{letter-spacing:0.010667pt;}
.ls0_c00470{letter-spacing:0.012800pt;}
.ws0_c00470{word-spacing:-17.606400pt;}
.ws1_c00470{word-spacing:0.000000pt;}
._9_c00470{margin-left:-5.062400pt;}
._e_c00470{margin-left:-3.045333pt;}
._4_c00470{margin-left:-1.644800pt;}
._0_c00470{width:1.164800pt;}
._6_c00470{width:2.515200pt;}
._2_c00470{width:4.435200pt;}
._c_c00470{width:5.401600pt;}
._a_c00470{width:6.848000pt;}
._d_c00470{width:7.980800pt;}
._b_c00470{width:9.587200pt;}
._3_c00470{width:28.288000pt;}
._7_c00470{width:30.099200pt;}
._1_c00470{width:31.411200pt;}
._8_c00470{width:32.531200pt;}
._5_c00470{width:34.323200pt;}
.fs0_c00470{font-size:48.000000pt;}
.fs2_c00470{font-size:53.333333pt;}
.fs1_c00470{font-size:64.000000pt;}
.y0_c00470{bottom:0.000000pt;}
.y2_c00470{bottom:10.666667pt;}
.y8_c00470{bottom:60.000000pt;}
.y6_c00470{bottom:158.666667pt;}
.y5_c00470{bottom:590.666667pt;}
.y4_c00470{bottom:614.666667pt;}
.y3_c00470{bottom:638.666667pt;}
.y1_c00470{bottom:678.666667pt;}
.y7_c00470{bottom:1061.333333pt;}
.h2_c00470{height:37.593750pt;}
.h3_c00470{height:45.500000pt;}
.h4_c00470{height:45.562500pt;}
.h6_c00470{height:49.843750pt;}
.h1_c00470{height:310.666667pt;}
.h5_c00470{height:404.000000pt;}
.h0_c00470{height:1122.666667pt;}
.w1_c00470{width:601.333333pt;}
.w0_c00470{width:793.333333pt;}
.x0_c00470{left:0.000000pt;}
.x1_c00470{left:133.333333pt;}
.x2_c00470{left:165.763333pt;}
.x3_c00470{left:224.043600pt;}
.x4_c00470{left:370.473600pt;}
.x5_c00470{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9fa1670376ebc2d15556520b.woff2')format("woff");}.ff1_c00471{font-family:ff1_c00471;line-height:0.987793;font-style:normal;font-weight:normal;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_66c96847d6c204894e877e9d.woff2')format("woff");}.ff2_c00471{font-family:ff2_c00471;line-height:0.932129;font-style:normal;font-weight:normal;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_f405010b9b916c51faa25562.woff2')format("woff");}.ff3_c00471{font-family:ff3_c00471;line-height:0.756836;font-style:normal;font-weight:normal;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_fb28b1d93a0ad223f4bca456.woff2')format("woff");}.ff4_c00471{font-family:ff4_c00471;line-height:1.155762;font-style: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;}
.ls0_c00471{letter-spacing:-0.010800px;}
.ls1_c00471{letter-spacing:0.000000px;}
.ls2_c00471{letter-spacing:0.012000px;}
.sc__c00471{text-shadow:none;}
.sc0_c00471{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00471{-webkit-text-stroke:0px transparent;}
.sc0_c00471{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00471{word-spacing:0.000000px;}
._7_c00471{margin-left:-4.500000px;}
._9_c00471{margin-left:-2.433600px;}
._0_c00471{margin-left:-1.130400px;}
._4_c00471{width:1.706400px;}
._2_c00471{width:2.707200px;}
._a_c00471{width:12.535200px;}
._3_c00471{width:14.133600px;}
._5_c00471{width:15.220800px;}
._6_c00471{width:16.891200px;}
._1_c00471{width:18.007200px;}
._8_c00471{width:21.384000px;}
.fc0_c00471{color:rgb(0,0,0);}
.fs0_c00471{font-size:54.000000px;}
.fs2_c00471{font-size:60.000000px;}
.fs1_c00471{font-size:72.000000px;}
.y0_c00471{bottom:0.000000px;}
.y2_c00471{bottom:12.000000px;}
.y8_c00471{bottom:67.500000px;}
.y6_c00471{bottom:184.500000px;}
.y5_c00471{bottom:211.500000px;}
.y4_c00471{bottom:238.500000px;}
.y3_c00471{bottom:262.500000px;}
.y1_c00471{bottom:688.500000px;}
.y7_c00471{bottom:1194.000000px;}
.h2_c00471{height:42.292969px;}
.h6_c00471{height:44.208984px;}
.h4_c00471{height:51.257812px;}
.h5_c00471{height:56.074219px;}
.h3_c00471{height:418.500000px;}
.h1_c00471{height:424.500000px;}
.h0_c00471{height:1263.000000px;}
.w1_c00471{width:676.500000px;}
.w0_c00471{width:892.500000px;}
.x0_c00471{left:0.000000px;}
.x1_c00471{left:66.000000px;}
.x3_c00471{left:193.659000px;}
.x2_c00471{left:262.104900px;}
@media print{
.v0_c00471{vertical-align:0.000000pt;}
.ls0_c00471{letter-spacing:-0.009600pt;}
.ls1_c00471{letter-spacing:0.000000pt;}
.ls2_c00471{letter-spacing:0.010667pt;}
.ws0_c00471{word-spacing:0.000000pt;}
._7_c00471{margin-left:-4.000000pt;}
._9_c00471{margin-left:-2.163200pt;}
._0_c00471{margin-left:-1.004800pt;}
._4_c00471{width:1.516800pt;}
._2_c00471{width:2.406400pt;}
._a_c00471{width:11.142400pt;}
._3_c00471{width:12.563200pt;}
._5_c00471{width:13.529600pt;}
._6_c00471{width:15.014400pt;}
._1_c00471{width:16.006400pt;}
._8_c00471{width:19.008000pt;}
.fs0_c00471{font-size:48.000000pt;}
.fs2_c00471{font-size:53.333333pt;}
.fs1_c00471{font-size:64.000000pt;}
.y0_c00471{bottom:0.000000pt;}
.y2_c00471{bottom:10.666667pt;}
.y8_c00471{bottom:60.000000pt;}
.y6_c00471{bottom:164.000000pt;}
.y5_c00471{bottom:188.000000pt;}
.y4_c00471{bottom:212.000000pt;}
.y3_c00471{bottom:233.333333pt;}
.y1_c00471{bottom:612.000000pt;}
.y7_c00471{bottom:1061.333333pt;}
.h2_c00471{height:37.593750pt;}
.h6_c00471{height:39.296875pt;}
.h4_c00471{height:45.562500pt;}
.h5_c00471{height:49.843750pt;}
.h3_c00471{height:372.000000pt;}
.h1_c00471{height:377.333333pt;}
.h0_c00471{height:1122.666667pt;}
.w1_c00471{width:601.333333pt;}
.w0_c00471{width:793.333333pt;}
.x0_c00471{left:0.000000pt;}
.x1_c00471{left:58.666667pt;}
.x3_c00471{left:172.141333pt;}
.x2_c00471{left:232.982133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b6797e1a0ef75e811e4b109c.woff2')format("woff");}.ff1_c00472{font-family:ff1_c00472;line-height:0.987793;font-style:normal;font-weight:normal;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_592780deadf101d78b56c250.woff2')format("woff");}.ff2_c00472{font-family:ff2_c00472;line-height:0.932129;font-style:normal;font-weight:normal;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_2eb9f7fca3de0db7325cfb24.woff2')format("woff");}.ff3_c00472{font-family:ff3_c00472;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00472{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00472{vertical-align:0.000000px;}
.ls2_c00472{letter-spacing:-0.005400px;}
.ls1_c00472{letter-spacing:0.000000px;}
.ls0_c00472{letter-spacing:0.012000px;}
.sc__c00472{text-shadow:none;}
.sc0_c00472{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00472{-webkit-text-stroke:0px transparent;}
.sc0_c00472{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00472{word-spacing:0.000000px;}
._6_c00472{margin-left:-7.192800px;}
._1_c00472{margin-left:-3.600000px;}
._b_c00472{margin-left:-2.368800px;}
._5_c00472{margin-left:-1.116000px;}
._4_c00472{width:1.324800px;}
._0_c00472{width:2.325600px;}
._3_c00472{width:3.722400px;}
._7_c00472{width:4.802400px;}
._2_c00472{width:6.328800px;}
._8_c00472{width:8.690400px;}
._a_c00472{width:9.727200px;}
._9_c00472{width:11.052000px;}
._c_c00472{width:13.478400px;}
.fc0_c00472{color:rgb(0,0,0);}
.fs0_c00472{font-size:54.000000px;}
.fs2_c00472{font-size:60.000000px;}
.fs1_c00472{font-size:72.000000px;}
.y0_c00472{bottom:0.000000px;}
.y2_c00472{bottom:12.000000px;}
.ya_c00472{bottom:67.500000px;}
.y8_c00472{bottom:196.500000px;}
.y7_c00472{bottom:639.000000px;}
.y6_c00472{bottom:666.000000px;}
.y5_c00472{bottom:705.000000px;}
.y4_c00472{bottom:732.000000px;}
.y3_c00472{bottom:759.000000px;}
.y1_c00472{bottom:783.000000px;}
.y9_c00472{bottom:1194.000000px;}
.h2_c00472{height:42.292969px;}
.h3_c00472{height:51.257812px;}
.h5_c00472{height:56.074219px;}
.h1_c00472{height:330.000000px;}
.h4_c00472{height:420.000000px;}
.h0_c00472{height:1263.000000px;}
.w1_c00472{width:676.500000px;}
.w2_c00472{width:678.200700px;}
.w0_c00472{width:892.500000px;}
.x0_c00472{left:0.000000px;}
.x1_c00472{left:150.000000px;}
.x3_c00472{left:196.084800px;}
.x2_c00472{left:223.638450px;}
.x4_c00472{left:418.483650px;}
.x5_c00472{left:803.693550px;}
@media print{
.v0_c00472{vertical-align:0.000000pt;}
.ls2_c00472{letter-spacing:-0.004800pt;}
.ls1_c00472{letter-spacing:0.000000pt;}
.ls0_c00472{letter-spacing:0.010667pt;}
.ws0_c00472{word-spacing:0.000000pt;}
._6_c00472{margin-left:-6.393600pt;}
._1_c00472{margin-left:-3.200000pt;}
._b_c00472{margin-left:-2.105600pt;}
._5_c00472{margin-left:-0.992000pt;}
._4_c00472{width:1.177600pt;}
._0_c00472{width:2.067200pt;}
._3_c00472{width:3.308800pt;}
._7_c00472{width:4.268800pt;}
._2_c00472{width:5.625600pt;}
._8_c00472{width:7.724800pt;}
._a_c00472{width:8.646400pt;}
._9_c00472{width:9.824000pt;}
._c_c00472{width:11.980800pt;}
.fs0_c00472{font-size:48.000000pt;}
.fs2_c00472{font-size:53.333333pt;}
.fs1_c00472{font-size:64.000000pt;}
.y0_c00472{bottom:0.000000pt;}
.y2_c00472{bottom:10.666667pt;}
.ya_c00472{bottom:60.000000pt;}
.y8_c00472{bottom:174.666667pt;}
.y7_c00472{bottom:568.000000pt;}
.y6_c00472{bottom:592.000000pt;}
.y5_c00472{bottom:626.666667pt;}
.y4_c00472{bottom:650.666667pt;}
.y3_c00472{bottom:674.666667pt;}
.y1_c00472{bottom:696.000000pt;}
.y9_c00472{bottom:1061.333333pt;}
.h2_c00472{height:37.593750pt;}
.h3_c00472{height:45.562500pt;}
.h5_c00472{height:49.843750pt;}
.h1_c00472{height:293.333333pt;}
.h4_c00472{height:373.333333pt;}
.h0_c00472{height:1122.666667pt;}
.w1_c00472{width:601.333333pt;}
.w2_c00472{width:602.845067pt;}
.w0_c00472{width:793.333333pt;}
.x0_c00472{left:0.000000pt;}
.x1_c00472{left:133.333333pt;}
.x3_c00472{left:174.297600pt;}
.x2_c00472{left:198.789733pt;}
.x4_c00472{left:371.985467pt;}
.x5_c00472{left:714.394267pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0f8efc4078bcdacd0947a4b5.woff2')format("woff");}.ff1_c00473{font-family:ff1_c00473;line-height:0.884766;font-style:normal;font-weight:normal;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_2dd7d7f14dabcb70ac624aa1.woff2')format("woff");}.ff2_c00473{font-family:ff2_c00473;line-height:1.163086;font-style:normal;font-weight:normal;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_0fb525a1bcf651693b21dcf5.woff2')format("woff");}.ff3_c00473{font-family:ff3_c00473;line-height:0.755859;font-style:normal;font-weight:normal;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_0457d384711719e3abeccabb.woff2')format("woff");}.ff4_c00473{font-family:ff4_c00473;line-height:1.155762;font-style:normal;font-weight:normal;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_416e0cffe40864418b6e3649.woff2')format("woff");}.ff5_c00473{font-family:ff5_c00473;line-height:1.112305;font-style:normal;font-weight: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_c00473;src:url('chunks/assets/font_b5662caf9e244b1a59e1b2b1.woff2')format("woff");}.ff6_c00473{font-family:ff6_c00473;line-height:0.889648;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00473{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00473{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3_c00473{vertical-align:-33.000000px;}
.v2_c00473{vertical-align:-23.086200px;}
.v0_c00473{vertical-align:0.000000px;}
.v1_c00473{vertical-align:23.086200px;}
.ls3_c00473{letter-spacing:-0.014400px;}
.ls4_c00473{letter-spacing:-0.007200px;}
.ls2_c00473{letter-spacing:0.000000px;}
.ls0_c00473{letter-spacing:0.007800px;}
.ls5_c00473{letter-spacing:0.012000px;}
.ls1_c00473{letter-spacing:3.999999px;}
.sc__c00473{text-shadow:none;}
.sc0_c00473{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00473{-webkit-text-stroke:0px transparent;}
.sc0_c00473{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00473{word-spacing:-19.785600px;}
.ws2_c00473{word-spacing:-15.000000px;}
.ws1_c00473{word-spacing:-13.200000px;}
.ws3_c00473{word-spacing:-10.000001px;}
.ws4_c00473{word-spacing:0.000000px;}
._18_c00473{margin-left:-10.778400px;}
._15_c00473{margin-left:-9.655200px;}
._e_c00473{margin-left:-7.228800px;}
._19_c00473{margin-left:-6.111600px;}
._f_c00473{margin-left:-5.061600px;}
._9_c00473{margin-left:-3.945600px;}
._5_c00473{margin-left:-2.880000px;}
._a_c00473{margin-left:-1.252800px;}
._0_c00473{width:1.519200px;}
._7_c00473{width:2.606400px;}
._2_c00473{width:4.190400px;}
._c_c00473{width:5.248800px;}
._17_c00473{width:6.674400px;}
._16_c00473{width:7.682400px;}
._3_c00473{width:9.532800px;}
._d_c00473{width:10.929600px;}
._1_c00473{width:12.175200px;}
._4_c00473{width:13.680000px;}
._b_c00473{width:15.105600px;}
._6_c00473{width:16.560000px;}
._8_c00473{width:18.604800px;}
._14_c00473{width:20.844000px;}
._11_c00473{width:21.974400px;}
._10_c00473{width:23.270400px;}
._13_c00473{width:24.573600px;}
._12_c00473{width:27.244800px;}
.fc1_c00473{color:rgb(255,255,255);}
.fc0_c00473{color:rgb(0,0,0);}
.fs5_c00473{font-size:40.000002px;}
.fs2_c00473{font-size:48.000000px;}
.fs4_c00473{font-size:60.000000px;}
.fs1_c00473{font-size:72.000000px;}
.fs0_c00473{font-size:78.000000px;}
.fs3_c00473{font-size:96.000000px;}
.y0_c00473{bottom:0.000000px;}
.y17_c00473{bottom:67.500000px;}
.y1f_c00473{bottom:132.000000px;}
.y1e_c00473{bottom:151.500000px;}
.y1d_c00473{bottom:179.250000px;}
.y1c_c00473{bottom:228.750000px;}
.y1b_c00473{bottom:270.000000px;}
.y1a_c00473{bottom:289.500000px;}
.y19_c00473{bottom:309.000000px;}
.y18_c00473{bottom:336.750000px;}
.y14_c00473{bottom:378.000000px;}
.y13_c00473{bottom:405.000000px;}
.y12_c00473{bottom:432.000000px;}
.y11_c00473{bottom:480.000000px;}
.y10_c00473{bottom:507.000000px;}
.yf_c00473{bottom:534.000000px;}
.ye_c00473{bottom:561.000000px;}
.yd_c00473{bottom:609.000000px;}
.yc_c00473{bottom:636.000000px;}
.yb_c00473{bottom:663.000000px;}
.ya_c00473{bottom:690.000000px;}
.y9_c00473{bottom:717.000000px;}
.y8_c00473{bottom:765.000000px;}
.y7_c00473{bottom:792.000000px;}
.y6_c00473{bottom:819.000000px;}
.y5_c00473{bottom:846.000000px;}
.y4_c00473{bottom:894.000000px;}
.y3_c00473{bottom:921.000000px;}
.y2_c00473{bottom:948.000000px;}
.y1_c00473{bottom:994.500000px;}
.y15_c00473{bottom:1066.500000px;}
.y16_c00473{bottom:1194.000000px;}
.h7_c00473{height:35.781252px;}
.h6_c00473{height:44.208984px;}
.h8_c00473{height:53.671875px;}
.h1_c00473{height:55.224609px;}
.h5_c00473{height:56.074219px;}
.h2_c00473{height:67.746094px;}
.h3_c00473{height:68.250262px;}
.h4_c00473{height:90.328125px;}
.h0_c00473{height:1263.000000px;}
.w0_c00473{width:892.500000px;}
.x0_c00473{left:0.000000px;}
.x1_c00473{left:63.779520px;}
.x2_c00473{left:93.298875px;}
@media print{
.v3_c00473{vertical-align:-29.333333pt;}
.v2_c00473{vertical-align:-20.521067pt;}
.v0_c00473{vertical-align:0.000000pt;}
.v1_c00473{vertical-align:20.521067pt;}
.ls3_c00473{letter-spacing:-0.012800pt;}
.ls4_c00473{letter-spacing:-0.006400pt;}
.ls2_c00473{letter-spacing:0.000000pt;}
.ls0_c00473{letter-spacing:0.006933pt;}
.ls5_c00473{letter-spacing:0.010667pt;}
.ls1_c00473{letter-spacing:3.555555pt;}
.ws0_c00473{word-spacing:-17.587200pt;}
.ws2_c00473{word-spacing:-13.333333pt;}
.ws1_c00473{word-spacing:-11.733333pt;}
.ws3_c00473{word-spacing:-8.888889pt;}
.ws4_c00473{word-spacing:0.000000pt;}
._18_c00473{margin-left:-9.580800pt;}
._15_c00473{margin-left:-8.582400pt;}
._e_c00473{margin-left:-6.425600pt;}
._19_c00473{margin-left:-5.432533pt;}
._f_c00473{margin-left:-4.499200pt;}
._9_c00473{margin-left:-3.507200pt;}
._5_c00473{margin-left:-2.560000pt;}
._a_c00473{margin-left:-1.113600pt;}
._0_c00473{width:1.350400pt;}
._7_c00473{width:2.316800pt;}
._2_c00473{width:3.724800pt;}
._c_c00473{width:4.665600pt;}
._17_c00473{width:5.932800pt;}
._16_c00473{width:6.828800pt;}
._3_c00473{width:8.473600pt;}
._d_c00473{width:9.715200pt;}
._1_c00473{width:10.822400pt;}
._4_c00473{width:12.160000pt;}
._b_c00473{width:13.427200pt;}
._6_c00473{width:14.720000pt;}
._8_c00473{width:16.537600pt;}
._14_c00473{width:18.528000pt;}
._11_c00473{width:19.532800pt;}
._10_c00473{width:20.684800pt;}
._13_c00473{width:21.843200pt;}
._12_c00473{width:24.217600pt;}
.fs5_c00473{font-size:35.555557pt;}
.fs2_c00473{font-size:42.666667pt;}
.fs4_c00473{font-size:53.333333pt;}
.fs1_c00473{font-size:64.000000pt;}
.fs0_c00473{font-size:69.333333pt;}
.fs3_c00473{font-size:85.333333pt;}
.y0_c00473{bottom:0.000000pt;}
.y17_c00473{bottom:60.000000pt;}
.y1f_c00473{bottom:117.333333pt;}
.y1e_c00473{bottom:134.666667pt;}
.y1d_c00473{bottom:159.333333pt;}
.y1c_c00473{bottom:203.333333pt;}
.y1b_c00473{bottom:240.000000pt;}
.y1a_c00473{bottom:257.333333pt;}
.y19_c00473{bottom:274.666667pt;}
.y18_c00473{bottom:299.333333pt;}
.y14_c00473{bottom:336.000000pt;}
.y13_c00473{bottom:360.000000pt;}
.y12_c00473{bottom:384.000000pt;}
.y11_c00473{bottom:426.666667pt;}
.y10_c00473{bottom:450.666667pt;}
.yf_c00473{bottom:474.666667pt;}
.ye_c00473{bottom:498.666667pt;}
.yd_c00473{bottom:541.333333pt;}
.yc_c00473{bottom:565.333333pt;}
.yb_c00473{bottom:589.333333pt;}
.ya_c00473{bottom:613.333333pt;}
.y9_c00473{bottom:637.333333pt;}
.y8_c00473{bottom:680.000000pt;}
.y7_c00473{bottom:704.000000pt;}
.y6_c00473{bottom:728.000000pt;}
.y5_c00473{bottom:752.000000pt;}
.y4_c00473{bottom:794.666667pt;}
.y3_c00473{bottom:818.666667pt;}
.y2_c00473{bottom:842.666667pt;}
.y1_c00473{bottom:884.000000pt;}
.y15_c00473{bottom:948.000000pt;}
.y16_c00473{bottom:1061.333333pt;}
.h7_c00473{height:31.805557pt;}
.h6_c00473{height:39.296875pt;}
.h8_c00473{height:47.708333pt;}
.h1_c00473{height:49.088542pt;}
.h5_c00473{height:49.843750pt;}
.h2_c00473{height:60.218750pt;}
.h3_c00473{height:60.666900pt;}
.h4_c00473{height:80.291667pt;}
.h0_c00473{height:1122.666667pt;}
.w0_c00473{width:793.333333pt;}
.x0_c00473{left:0.000000pt;}
.x1_c00473{left:56.692907pt;}
.x2_c00473{left:82.932333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_72dc4042ed7c2dc051753d49.woff2')format("woff");}.ff1_c00474{font-family:ff1_c00474;line-height:0.934082;font-style:normal;font-weight:normal;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_403fec6a4406bd2bccac6dab.woff2')format("woff");}.ff2_c00474{font-family:ff2_c00474;line-height:0.939453;font-style:normal;font-weight:normal;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_0b40e04d41b180dcf7d4d64d.woff2')format("woff");}.ff3_c00474{font-family:ff3_c00474;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00474{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00474{vertical-align:0.000000px;}
.ls2_c00474{letter-spacing:0.000000px;}
.ls0_c00474{letter-spacing:0.007800px;}
.ls1_c00474{letter-spacing:0.012000px;}
.sc__c00474{text-shadow:none;}
.sc0_c00474{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00474{-webkit-text-stroke:0px transparent;}
.sc0_c00474{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00474{word-spacing:0.000000px;}
._e_c00474{margin-left:-10.584000px;}
._18_c00474{margin-left:-7.135200px;}
._17_c00474{margin-left:-4.780800px;}
._11_c00474{margin-left:-3.607200px;}
._7_c00474{margin-left:-2.534400px;}
._3_c00474{margin-left:-1.224000px;}
._5_c00474{width:1.368000px;}
._c_c00474{width:2.476800px;}
._0_c00474{width:3.528000px;}
._d_c00474{width:4.658400px;}
._a_c00474{width:5.688000px;}
._b_c00474{width:7.070400px;}
._9_c00474{width:8.337600px;}
._8_c00474{width:9.612000px;}
._f_c00474{width:10.620000px;}
._10_c00474{width:11.815200px;}
._1_c00474{width:13.665600px;}
._6_c00474{width:15.796800px;}
._2_c00474{width:17.172000px;}
._4_c00474{width:18.410400px;}
._13_c00474{width:20.966400px;}
._12_c00474{width:21.996000px;}
._15_c00474{width:23.205600px;}
._14_c00474{width:25.394400px;}
._16_c00474{width:27.864000px;}
._1a_c00474{width:31.672800px;}
._19_c00474{width:32.752800px;}
._1c_c00474{width:35.172000px;}
._1b_c00474{width:36.403200px;}
.fc0_c00474{color:rgb(0,0,0);}
.fs2_c00474{font-size:60.000000px;}
.fs0_c00474{font-size:72.000000px;}
.fs1_c00474{font-size:78.000000px;}
.y0_c00474{bottom:0.000000px;}
.y1b_c00474{bottom:67.500000px;}
.y19_c00474{bottom:342.000000px;}
.y18_c00474{bottom:369.000000px;}
.y17_c00474{bottom:417.000000px;}
.y16_c00474{bottom:444.000000px;}
.y15_c00474{bottom:471.000000px;}
.y14_c00474{bottom:498.000000px;}
.y13_c00474{bottom:525.000000px;}
.y12_c00474{bottom:552.000000px;}
.y11_c00474{bottom:579.000000px;}
.y10_c00474{bottom:606.000000px;}
.yf_c00474{bottom:654.000000px;}
.ye_c00474{bottom:681.000000px;}
.yd_c00474{bottom:708.000000px;}
.yc_c00474{bottom:735.000000px;}
.yb_c00474{bottom:762.000000px;}
.ya_c00474{bottom:789.000000px;}
.y9_c00474{bottom:816.000000px;}
.y8_c00474{bottom:843.000000px;}
.y7_c00474{bottom:870.000000px;}
.y6_c00474{bottom:897.000000px;}
.y5_c00474{bottom:924.000000px;}
.y4_c00474{bottom:970.500000px;}
.y3_c00474{bottom:1041.000000px;}
.y2_c00474{bottom:1068.000000px;}
.y1_c00474{bottom:1095.000000px;}
.y1a_c00474{bottom:1194.000000px;}
.h1_c00474{height:51.257812px;}
.h3_c00474{height:56.074219px;}
.h2_c00474{height:56.100586px;}
.h0_c00474{height:1263.000000px;}
.w0_c00474{width:892.500000px;}
.x0_c00474{left:0.000000px;}
.x1_c00474{left:150.519750px;}
.x2_c00474{left:418.483650px;}
.x3_c00474{left:803.693550px;}
@media print{
.v0_c00474{vertical-align:0.000000pt;}
.ls2_c00474{letter-spacing:0.000000pt;}
.ls0_c00474{letter-spacing:0.006933pt;}
.ls1_c00474{letter-spacing:0.010667pt;}
.ws0_c00474{word-spacing:0.000000pt;}
._e_c00474{margin-left:-9.408000pt;}
._18_c00474{margin-left:-6.342400pt;}
._17_c00474{margin-left:-4.249600pt;}
._11_c00474{margin-left:-3.206400pt;}
._7_c00474{margin-left:-2.252800pt;}
._3_c00474{margin-left:-1.088000pt;}
._5_c00474{width:1.216000pt;}
._c_c00474{width:2.201600pt;}
._0_c00474{width:3.136000pt;}
._d_c00474{width:4.140800pt;}
._a_c00474{width:5.056000pt;}
._b_c00474{width:6.284800pt;}
._9_c00474{width:7.411200pt;}
._8_c00474{width:8.544000pt;}
._f_c00474{width:9.440000pt;}
._10_c00474{width:10.502400pt;}
._1_c00474{width:12.147200pt;}
._6_c00474{width:14.041600pt;}
._2_c00474{width:15.264000pt;}
._4_c00474{width:16.364800pt;}
._13_c00474{width:18.636800pt;}
._12_c00474{width:19.552000pt;}
._15_c00474{width:20.627200pt;}
._14_c00474{width:22.572800pt;}
._16_c00474{width:24.768000pt;}
._1a_c00474{width:28.153600pt;}
._19_c00474{width:29.113600pt;}
._1c_c00474{width:31.264000pt;}
._1b_c00474{width:32.358400pt;}
.fs2_c00474{font-size:53.333333pt;}
.fs0_c00474{font-size:64.000000pt;}
.fs1_c00474{font-size:69.333333pt;}
.y0_c00474{bottom:0.000000pt;}
.y1b_c00474{bottom:60.000000pt;}
.y19_c00474{bottom:304.000000pt;}
.y18_c00474{bottom:328.000000pt;}
.y17_c00474{bottom:370.666667pt;}
.y16_c00474{bottom:394.666667pt;}
.y15_c00474{bottom:418.666667pt;}
.y14_c00474{bottom:442.666667pt;}
.y13_c00474{bottom:466.666667pt;}
.y12_c00474{bottom:490.666667pt;}
.y11_c00474{bottom:514.666667pt;}
.y10_c00474{bottom:538.666667pt;}
.yf_c00474{bottom:581.333333pt;}
.ye_c00474{bottom:605.333333pt;}
.yd_c00474{bottom:629.333333pt;}
.yc_c00474{bottom:653.333333pt;}
.yb_c00474{bottom:677.333333pt;}
.ya_c00474{bottom:701.333333pt;}
.y9_c00474{bottom:725.333333pt;}
.y8_c00474{bottom:749.333333pt;}
.y7_c00474{bottom:773.333333pt;}
.y6_c00474{bottom:797.333333pt;}
.y5_c00474{bottom:821.333333pt;}
.y4_c00474{bottom:862.666667pt;}
.y3_c00474{bottom:925.333333pt;}
.y2_c00474{bottom:949.333333pt;}
.y1_c00474{bottom:973.333333pt;}
.y1a_c00474{bottom:1061.333333pt;}
.h1_c00474{height:45.562500pt;}
.h3_c00474{height:49.843750pt;}
.h2_c00474{height:49.867188pt;}
.h0_c00474{height:1122.666667pt;}
.w0_c00474{width:793.333333pt;}
.x0_c00474{left:0.000000pt;}
.x1_c00474{left:133.795333pt;}
.x2_c00474{left:371.985467pt;}
.x3_c00474{left:714.394267pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_61ef4c341776c150a24f11d0.woff2')format("woff");}.ff1_c00475{font-family:ff1_c00475;line-height:1.144531;font-style:normal;font-weight:normal;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_2c992007bdf843c5765b1e3a.woff2')format("woff");}.ff2_c00475{font-family:ff2_c00475;line-height:0.931152;font-style:normal;font-weight:normal;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_21ab49ef7686b6dcb38c21b8.woff2')format("woff");}.ff3_c00475{font-family:ff3_c00475;line-height:0.755859;font-style:normal;font-weight:normal;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_153eeb8d15700d36f4903edc.woff2')format("woff");}.ff4_c00475{font-family:ff4_c00475;line-height:1.155762;font-style:normal;font-weight:normal;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_9c88cd4ef3bf30a738b97b26.woff2')format("woff");}.ff5_c00475{font-family:ff5_c00475;line-height:1.112305;font-style:normal;font-weight: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_c00475;src:url('chunks/assets/font_1fa2f6f2e331621b26950dec.woff2')format("woff");}.ff6_c00475{font-family:ff6_c00475;line-height:0.678223;font-style: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);}
.v2_c00475{vertical-align:-33.000000px;}
.v0_c00475{vertical-align:0.000000px;}
.v1_c00475{vertical-align:23.086200px;}
.ls5_c00475{letter-spacing:-0.005400px;}
.ls4_c00475{letter-spacing:0.000000px;}
.ls0_c00475{letter-spacing:0.005400px;}
.ls6_c00475{letter-spacing:0.012000px;}
.ls3_c00475{letter-spacing:0.021600px;}
.ls1_c00475{letter-spacing:0.459000px;}
.ls2_c00475{letter-spacing:3.999999px;}
.sc__c00475{text-shadow:none;}
.sc0_c00475{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00475{-webkit-text-stroke:0px transparent;}
.sc0_c00475{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00475{word-spacing:0.000000px;}
._c_c00475{margin-left:-7.228800px;}
._8_c00475{margin-left:-4.816680px;}
._b_c00475{margin-left:-3.139200px;}
._2_c00475{margin-left:-1.670400px;}
._5_c00475{width:1.202400px;}
._0_c00475{width:2.325600px;}
._a_c00475{width:3.628800px;}
._1_c00475{width:6.343200px;}
._6_c00475{width:7.480800px;}
._4_c00475{width:8.683200px;}
._3_c00475{width:10.375200px;}
._d_c00475{width:11.534280px;}
._7_c00475{width:12.600000px;}
._9_c00475{width:15.667200px;}
.fc0_c00475{color:rgb(0,0,0);}
.fs4_c00475{font-size:40.000002px;}
.fs2_c00475{font-size:48.000000px;}
.fs0_c00475{font-size:54.000000px;}
.fs3_c00475{font-size:60.000000px;}
.fs1_c00475{font-size:72.000000px;}
.y0_c00475{bottom:0.000000px;}
.y8_c00475{bottom:10.500000px;}
.y2_c00475{bottom:12.000000px;}
.y7_c00475{bottom:28.500000px;}
.ya_c00475{bottom:67.500000px;}
.yc_c00475{bottom:132.000000px;}
.yb_c00475{bottom:159.750000px;}
.y6_c00475{bottom:199.500000px;}
.y5_c00475{bottom:561.000000px;}
.y4_c00475{bottom:588.000000px;}
.y3_c00475{bottom:615.000000px;}
.y1_c00475{bottom:655.500000px;}
.y9_c00475{bottom:1194.000000px;}
.h8_c00475{height:35.781252px;}
.h7_c00475{height:44.208984px;}
.h2_c00475{height:50.756836px;}
.h3_c00475{height:51.187500px;}
.h9_c00475{height:53.671875px;}
.h6_c00475{height:56.074219px;}
.h4_c00475{height:57.211200px;}
.h5_c00475{height:330.000000px;}
.h1_c00475{height:457.500000px;}
.h0_c00475{height:1263.000000px;}
.w1_c00475{width:678.200700px;}
.w2_c00475{width:678.200850px;}
.w0_c00475{width:892.500000px;}
.x0_c00475{left:0.000000px;}
.x3_c00475{left:10.644333px;}
.x1_c00475{left:64.500000px;}
.x4_c00475{left:135.331470px;}
.x2_c00475{left:208.282800px;}
@media print{
.v2_c00475{vertical-align:-29.333333pt;}
.v0_c00475{vertical-align:0.000000pt;}
.v1_c00475{vertical-align:20.521067pt;}
.ls5_c00475{letter-spacing:-0.004800pt;}
.ls4_c00475{letter-spacing:0.000000pt;}
.ls0_c00475{letter-spacing:0.004800pt;}
.ls6_c00475{letter-spacing:0.010667pt;}
.ls3_c00475{letter-spacing:0.019200pt;}
.ls1_c00475{letter-spacing:0.408000pt;}
.ls2_c00475{letter-spacing:3.555555pt;}
.ws0_c00475{word-spacing:0.000000pt;}
._c_c00475{margin-left:-6.425600pt;}
._8_c00475{margin-left:-4.281493pt;}
._b_c00475{margin-left:-2.790400pt;}
._2_c00475{margin-left:-1.484800pt;}
._5_c00475{width:1.068800pt;}
._0_c00475{width:2.067200pt;}
._a_c00475{width:3.225600pt;}
._1_c00475{width:5.638400pt;}
._6_c00475{width:6.649600pt;}
._4_c00475{width:7.718400pt;}
._3_c00475{width:9.222400pt;}
._d_c00475{width:10.252693pt;}
._7_c00475{width:11.200000pt;}
._9_c00475{width:13.926400pt;}
.fs4_c00475{font-size:35.555557pt;}
.fs2_c00475{font-size:42.666667pt;}
.fs0_c00475{font-size:48.000000pt;}
.fs3_c00475{font-size:53.333333pt;}
.fs1_c00475{font-size:64.000000pt;}
.y0_c00475{bottom:0.000000pt;}
.y8_c00475{bottom:9.333333pt;}
.y2_c00475{bottom:10.666667pt;}
.y7_c00475{bottom:25.333333pt;}
.ya_c00475{bottom:60.000000pt;}
.yc_c00475{bottom:117.333333pt;}
.yb_c00475{bottom:142.000000pt;}
.y6_c00475{bottom:177.333333pt;}
.y5_c00475{bottom:498.666667pt;}
.y4_c00475{bottom:522.666667pt;}
.y3_c00475{bottom:546.666667pt;}
.y1_c00475{bottom:582.666667pt;}
.y9_c00475{bottom:1061.333333pt;}
.h8_c00475{height:31.805557pt;}
.h7_c00475{height:39.296875pt;}
.h2_c00475{height:45.117188pt;}
.h3_c00475{height:45.500000pt;}
.h9_c00475{height:47.708333pt;}
.h6_c00475{height:49.843750pt;}
.h4_c00475{height:50.854400pt;}
.h5_c00475{height:293.333333pt;}
.h1_c00475{height:406.666667pt;}
.h0_c00475{height:1122.666667pt;}
.w1_c00475{width:602.845067pt;}
.w2_c00475{width:602.845200pt;}
.w0_c00475{width:793.333333pt;}
.x0_c00475{left:0.000000pt;}
.x3_c00475{left:9.461629pt;}
.x1_c00475{left:57.333333pt;}
.x4_c00475{left:120.294640pt;}
.x2_c00475{left:185.140267pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_568cc80ad69f05e4b80615d6.woff2')format("woff");}.ff1_c00476{font-family:ff1_c00476;line-height:0.976074;font-style:normal;font-weight:normal;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_85bcdf561581fcd2734d53ff.woff2')format("woff");}.ff2_c00476{font-family:ff2_c00476;line-height:0.934082;font-style:normal;font-weight:normal;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_e2551d7fce06a0072daa3e3f.woff2')format("woff");}.ff3_c00476{font-family:ff3_c00476;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00476{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00476{vertical-align:0.000000px;}
.ls2_c00476{letter-spacing:0.000000px;}
.ls1_c00476{letter-spacing:0.012000px;}
.ls0_c00476{letter-spacing:0.021600px;}
.sc__c00476{text-shadow:none;}
.sc0_c00476{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00476{-webkit-text-stroke:0px transparent;}
.sc0_c00476{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00476{word-spacing:0.000000px;}
._12_c00476{margin-left:-10.476000px;}
._a_c00476{margin-left:-7.200000px;}
._10_c00476{margin-left:-3.916800px;}
._2_c00476{margin-left:-2.635200px;}
._8_c00476{margin-left:-1.267200px;}
._0_c00476{width:1.389600px;}
._4_c00476{width:2.728800px;}
._5_c00476{width:4.276800px;}
._1_c00476{width:5.659200px;}
._6_c00476{width:7.099200px;}
._11_c00476{width:8.596800px;}
._3_c00476{width:9.662400px;}
._9_c00476{width:11.160000px;}
._7_c00476{width:12.830400px;}
._13_c00476{width:15.278400px;}
._14_c00476{width:16.574400px;}
._17_c00476{width:21.456000px;}
._19_c00476{width:22.716000px;}
._15_c00476{width:24.256800px;}
._18_c00476{width:25.624800px;}
._16_c00476{width:26.834400px;}
._f_c00476{width:31.658400px;}
._d_c00476{width:33.544800px;}
._b_c00476{width:35.589600px;}
._c_c00476{width:36.597600px;}
._e_c00476{width:39.607200px;}
.fc0_c00476{color:rgb(0,0,0);}
.fs0_c00476{font-size:54.000000px;}
.fs2_c00476{font-size:60.000000px;}
.fs1_c00476{font-size:72.000000px;}
.y0_c00476{bottom:0.000000px;}
.y2_c00476{bottom:12.000000px;}
.y10_c00476{bottom:67.500000px;}
.ye_c00476{bottom:262.500000px;}
.yd_c00476{bottom:289.500000px;}
.yc_c00476{bottom:316.500000px;}
.yb_c00476{bottom:343.500000px;}
.ya_c00476{bottom:370.500000px;}
.y9_c00476{bottom:397.500000px;}
.y8_c00476{bottom:424.500000px;}
.y7_c00476{bottom:451.500000px;}
.y6_c00476{bottom:478.500000px;}
.y5_c00476{bottom:505.500000px;}
.y4_c00476{bottom:532.500000px;}
.y3_c00476{bottom:559.500000px;}
.y1_c00476{bottom:600.000000px;}
.yf_c00476{bottom:1194.000000px;}
.h2_c00476{height:42.292969px;}
.h3_c00476{height:51.257812px;}
.h4_c00476{height:56.074219px;}
.h1_c00476{height:513.000000px;}
.h0_c00476{height:1263.000000px;}
.w1_c00476{width:678.200700px;}
.w0_c00476{width:892.500000px;}
.x0_c00476{left:0.000000px;}
.x2_c00476{left:80.418480px;}
.x1_c00476{left:150.000000px;}
.x3_c00476{left:418.483650px;}
.x4_c00476{left:803.693550px;}
@media print{
.v0_c00476{vertical-align:0.000000pt;}
.ls2_c00476{letter-spacing:0.000000pt;}
.ls1_c00476{letter-spacing:0.010667pt;}
.ls0_c00476{letter-spacing:0.019200pt;}
.ws0_c00476{word-spacing:0.000000pt;}
._12_c00476{margin-left:-9.312000pt;}
._a_c00476{margin-left:-6.400000pt;}
._10_c00476{margin-left:-3.481600pt;}
._2_c00476{margin-left:-2.342400pt;}
._8_c00476{margin-left:-1.126400pt;}
._0_c00476{width:1.235200pt;}
._4_c00476{width:2.425600pt;}
._5_c00476{width:3.801600pt;}
._1_c00476{width:5.030400pt;}
._6_c00476{width:6.310400pt;}
._11_c00476{width:7.641600pt;}
._3_c00476{width:8.588800pt;}
._9_c00476{width:9.920000pt;}
._7_c00476{width:11.404800pt;}
._13_c00476{width:13.580800pt;}
._14_c00476{width:14.732800pt;}
._17_c00476{width:19.072000pt;}
._19_c00476{width:20.192000pt;}
._15_c00476{width:21.561600pt;}
._18_c00476{width:22.777600pt;}
._16_c00476{width:23.852800pt;}
._f_c00476{width:28.140800pt;}
._d_c00476{width:29.817600pt;}
._b_c00476{width:31.635200pt;}
._c_c00476{width:32.531200pt;}
._e_c00476{width:35.206400pt;}
.fs0_c00476{font-size:48.000000pt;}
.fs2_c00476{font-size:53.333333pt;}
.fs1_c00476{font-size:64.000000pt;}
.y0_c00476{bottom:0.000000pt;}
.y2_c00476{bottom:10.666667pt;}
.y10_c00476{bottom:60.000000pt;}
.ye_c00476{bottom:233.333333pt;}
.yd_c00476{bottom:257.333333pt;}
.yc_c00476{bottom:281.333333pt;}
.yb_c00476{bottom:305.333333pt;}
.ya_c00476{bottom:329.333333pt;}
.y9_c00476{bottom:353.333333pt;}
.y8_c00476{bottom:377.333333pt;}
.y7_c00476{bottom:401.333333pt;}
.y6_c00476{bottom:425.333333pt;}
.y5_c00476{bottom:449.333333pt;}
.y4_c00476{bottom:473.333333pt;}
.y3_c00476{bottom:497.333333pt;}
.y1_c00476{bottom:533.333333pt;}
.yf_c00476{bottom:1061.333333pt;}
.h2_c00476{height:37.593750pt;}
.h3_c00476{height:45.562500pt;}
.h4_c00476{height:49.843750pt;}
.h1_c00476{height:456.000000pt;}
.h0_c00476{height:1122.666667pt;}
.w1_c00476{width:602.845067pt;}
.w0_c00476{width:793.333333pt;}
.x0_c00476{left:0.000000pt;}
.x2_c00476{left:71.483093pt;}
.x1_c00476{left:133.333333pt;}
.x3_c00476{left:371.985467pt;}
.x4_c00476{left:714.394267pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eacf6cf7d726ea2e4b732458.woff2')format("woff");}.ff1_c00477{font-family:ff1_c00477;line-height:0.987793;font-style:normal;font-weight:normal;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_11e85907b7c234b1cd37d237.woff2')format("woff");}.ff2_c00477{font-family:ff2_c00477;line-height:0.933105;font-style:normal;font-weight:normal;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_d48c2d915ead8e3d10ee87eb.woff2')format("woff");}.ff3_c00477{font-family:ff3_c00477;line-height:0.755859;font-style:normal;font-weight:normal;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_e66b34119576e847e82b5dc7.woff2')format("woff");}.ff4_c00477{font-family:ff4_c00477;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00477{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00477{vertical-align:0.000000px;}
.ls1_c00477{letter-spacing:0.000000px;}
.ls2_c00477{letter-spacing:0.012000px;}
.ls0_c00477{letter-spacing:0.021600px;}
.sc__c00477{text-shadow:none;}
.sc0_c00477{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00477{-webkit-text-stroke:0px transparent;}
.sc0_c00477{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00477{word-spacing:0.000000px;}
._a_c00477{margin-left:-4.608000px;}
._0_c00477{margin-left:-3.168000px;}
._5_c00477{margin-left:-1.490400px;}
._3_c00477{width:1.296000px;}
._7_c00477{width:2.628000px;}
._8_c00477{width:3.628800px;}
._9_c00477{width:5.004000px;}
._4_c00477{width:7.531200px;}
._2_c00477{width:8.827200px;}
._6_c00477{width:10.411200px;}
._1_c00477{width:11.988000px;}
.fc0_c00477{color:rgb(0,0,0);}
.fs0_c00477{font-size:54.000000px;}
.fs2_c00477{font-size:60.000000px;}
.fs1_c00477{font-size:72.000000px;}
.y0_c00477{bottom:0.000000px;}
.y2_c00477{bottom:12.000000px;}
.y9_c00477{bottom:67.500000px;}
.y7_c00477{bottom:138.000000px;}
.y6_c00477{bottom:165.000000px;}
.y5_c00477{bottom:192.000000px;}
.y4_c00477{bottom:219.000000px;}
.y3_c00477{bottom:259.500000px;}
.y1_c00477{bottom:687.000000px;}
.y8_c00477{bottom:1194.000000px;}
.h2_c00477{height:42.292969px;}
.h6_c00477{height:44.208984px;}
.h4_c00477{height:51.187500px;}
.h5_c00477{height:56.074219px;}
.h3_c00477{height:399.000000px;}
.h1_c00477{height:426.000000px;}
.h0_c00477{height:1263.000000px;}
.w2_c00477{width:678.200700px;}
.w1_c00477{width:678.200850px;}
.w0_c00477{width:892.500000px;}
.x0_c00477{left:0.000000px;}
.x1_c00477{left:64.500000px;}
.x2_c00477{left:223.203450px;}
.x3_c00477{left:225.741300px;}
@media print{
.v0_c00477{vertical-align:0.000000pt;}
.ls1_c00477{letter-spacing:0.000000pt;}
.ls2_c00477{letter-spacing:0.010667pt;}
.ls0_c00477{letter-spacing:0.019200pt;}
.ws0_c00477{word-spacing:0.000000pt;}
._a_c00477{margin-left:-4.096000pt;}
._0_c00477{margin-left:-2.816000pt;}
._5_c00477{margin-left:-1.324800pt;}
._3_c00477{width:1.152000pt;}
._7_c00477{width:2.336000pt;}
._8_c00477{width:3.225600pt;}
._9_c00477{width:4.448000pt;}
._4_c00477{width:6.694400pt;}
._2_c00477{width:7.846400pt;}
._6_c00477{width:9.254400pt;}
._1_c00477{width:10.656000pt;}
.fs0_c00477{font-size:48.000000pt;}
.fs2_c00477{font-size:53.333333pt;}
.fs1_c00477{font-size:64.000000pt;}
.y0_c00477{bottom:0.000000pt;}
.y2_c00477{bottom:10.666667pt;}
.y9_c00477{bottom:60.000000pt;}
.y7_c00477{bottom:122.666667pt;}
.y6_c00477{bottom:146.666667pt;}
.y5_c00477{bottom:170.666667pt;}
.y4_c00477{bottom:194.666667pt;}
.y3_c00477{bottom:230.666667pt;}
.y1_c00477{bottom:610.666667pt;}
.y8_c00477{bottom:1061.333333pt;}
.h2_c00477{height:37.593750pt;}
.h6_c00477{height:39.296875pt;}
.h4_c00477{height:45.500000pt;}
.h5_c00477{height:49.843750pt;}
.h3_c00477{height:354.666667pt;}
.h1_c00477{height:378.666667pt;}
.h0_c00477{height:1122.666667pt;}
.w2_c00477{width:602.845067pt;}
.w1_c00477{width:602.845200pt;}
.w0_c00477{width:793.333333pt;}
.x0_c00477{left:0.000000pt;}
.x1_c00477{left:57.333333pt;}
.x2_c00477{left:198.403067pt;}
.x3_c00477{left:200.658933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ecf5d188054c6d50e7b44b51.woff2')format("woff");}.ff1_c00478{font-family:ff1_c00478;line-height:0.934082;font-style:normal;font-weight:normal;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_ddd07e7d63e049c935e2d320.woff2')format("woff");}.ff2_c00478{font-family:ff2_c00478;line-height:0.801270;font-style:normal;font-weight:normal;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_fa1a86e889fca94be9aa53ff.woff2')format("woff");}.ff3_c00478{font-family:ff3_c00478;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00478{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00478{vertical-align:0.000000px;}
.ls2_c00478{letter-spacing:-0.007200px;}
.ls4_c00478{letter-spacing:-0.005400px;}
.ls1_c00478{letter-spacing:0.000000px;}
.ls0_c00478{letter-spacing:0.012000px;}
.ls3_c00478{letter-spacing:0.021600px;}
.sc__c00478{text-shadow:none;}
.sc0_c00478{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00478{-webkit-text-stroke:0px transparent;}
.sc0_c00478{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00478{word-spacing:-17.064000px;}
.ws1_c00478{word-spacing:0.000000px;}
._4_c00478{margin-left:-7.156800px;}
._14_c00478{margin-left:-3.426000px;}
._a_c00478{margin-left:-2.404800px;}
._6_c00478{margin-left:-1.087200px;}
._c_c00478{width:1.101600px;}
._0_c00478{width:2.815200px;}
._11_c00478{width:3.888000px;}
._2_c00478{width:5.040000px;}
._1_c00478{width:6.746400px;}
._10_c00478{width:7.934400px;}
._3_c00478{width:9.021600px;}
._5_c00478{width:10.101600px;}
._e_c00478{width:11.440800px;}
._f_c00478{width:13.399200px;}
._13_c00478{width:15.559200px;}
._12_c00478{width:17.589600px;}
._8_c00478{width:21.751200px;}
._d_c00478{width:23.450400px;}
._7_c00478{width:24.595200px;}
._9_c00478{width:25.682400px;}
._b_c00478{width:26.956800px;}
.fc0_c00478{color:rgb(0,0,0);}
.fs1_c00478{font-size:54.000000px;}
.fs3_c00478{font-size:60.000000px;}
.fs2_c00478{font-size:66.000000px;}
.fs0_c00478{font-size:72.000000px;}
.y0_c00478{bottom:0.000000px;}
.y5_c00478{bottom:12.000000px;}
.ye_c00478{bottom:67.500000px;}
.yc_c00478{bottom:136.500000px;}
.yb_c00478{bottom:163.500000px;}
.ya_c00478{bottom:190.500000px;}
.y9_c00478{bottom:231.000000px;}
.y8_c00478{bottom:534.000000px;}
.y7_c00478{bottom:580.500000px;}
.y6_c00478{bottom:607.500000px;}
.y4_c00478{bottom:648.000000px;}
.y3_c00478{bottom:1041.000000px;}
.y2_c00478{bottom:1068.000000px;}
.y1_c00478{bottom:1095.000000px;}
.yd_c00478{bottom:1194.000000px;}
.h3_c00478{height:42.292969px;}
.h4_c00478{height:46.986328px;}
.h1_c00478{height:51.257812px;}
.h6_c00478{height:56.074219px;}
.h5_c00478{height:297.000000px;}
.h2_c00478{height:361.500000px;}
.h0_c00478{height:1263.000000px;}
.w2_c00478{width:678.200700px;}
.w1_c00478{width:678.200850px;}
.w0_c00478{width:892.500000px;}
.x0_c00478{left:0.000000px;}
.x1_c00478{left:150.519750px;}
.x4_c00478{left:263.838450px;}
.x2_c00478{left:291.194550px;}
.x5_c00478{left:418.483650px;}
.x3_c00478{left:489.620100px;}
.x6_c00478{left:803.693550px;}
@media print{
.v0_c00478{vertical-align:0.000000pt;}
.ls2_c00478{letter-spacing:-0.006400pt;}
.ls4_c00478{letter-spacing:-0.004800pt;}
.ls1_c00478{letter-spacing:0.000000pt;}
.ls0_c00478{letter-spacing:0.010667pt;}
.ls3_c00478{letter-spacing:0.019200pt;}
.ws0_c00478{word-spacing:-15.168000pt;}
.ws1_c00478{word-spacing:0.000000pt;}
._4_c00478{margin-left:-6.361600pt;}
._14_c00478{margin-left:-3.045333pt;}
._a_c00478{margin-left:-2.137600pt;}
._6_c00478{margin-left:-0.966400pt;}
._c_c00478{width:0.979200pt;}
._0_c00478{width:2.502400pt;}
._11_c00478{width:3.456000pt;}
._2_c00478{width:4.480000pt;}
._1_c00478{width:5.996800pt;}
._10_c00478{width:7.052800pt;}
._3_c00478{width:8.019200pt;}
._5_c00478{width:8.979200pt;}
._e_c00478{width:10.169600pt;}
._f_c00478{width:11.910400pt;}
._13_c00478{width:13.830400pt;}
._12_c00478{width:15.635200pt;}
._8_c00478{width:19.334400pt;}
._d_c00478{width:20.844800pt;}
._7_c00478{width:21.862400pt;}
._9_c00478{width:22.828800pt;}
._b_c00478{width:23.961600pt;}
.fs1_c00478{font-size:48.000000pt;}
.fs3_c00478{font-size:53.333333pt;}
.fs2_c00478{font-size:58.666667pt;}
.fs0_c00478{font-size:64.000000pt;}
.y0_c00478{bottom:0.000000pt;}
.y5_c00478{bottom:10.666667pt;}
.ye_c00478{bottom:60.000000pt;}
.yc_c00478{bottom:121.333333pt;}
.yb_c00478{bottom:145.333333pt;}
.ya_c00478{bottom:169.333333pt;}
.y9_c00478{bottom:205.333333pt;}
.y8_c00478{bottom:474.666667pt;}
.y7_c00478{bottom:516.000000pt;}
.y6_c00478{bottom:540.000000pt;}
.y4_c00478{bottom:576.000000pt;}
.y3_c00478{bottom:925.333333pt;}
.y2_c00478{bottom:949.333333pt;}
.y1_c00478{bottom:973.333333pt;}
.yd_c00478{bottom:1061.333333pt;}
.h3_c00478{height:37.593750pt;}
.h4_c00478{height:41.765625pt;}
.h1_c00478{height:45.562500pt;}
.h6_c00478{height:49.843750pt;}
.h5_c00478{height:264.000000pt;}
.h2_c00478{height:321.333333pt;}
.h0_c00478{height:1122.666667pt;}
.w2_c00478{width:602.845067pt;}
.w1_c00478{width:602.845200pt;}
.w0_c00478{width:793.333333pt;}
.x0_c00478{left:0.000000pt;}
.x1_c00478{left:133.795333pt;}
.x4_c00478{left:234.523067pt;}
.x2_c00478{left:258.839600pt;}
.x5_c00478{left:371.985467pt;}
.x3_c00478{left:435.217867pt;}
.x6_c00478{left:714.394267pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1b4ddd3466a09f1fa32368ec.woff2')format("woff");}.ff1_c00479{font-family:ff1_c00479;line-height:0.987793;font-style:normal;font-weight:normal;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_81c05c00fcc92e33ffd85039.woff2')format("woff");}.ff2_c00479{font-family:ff2_c00479;line-height:0.933105;font-style:normal;font-weight:normal;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_28bb72d3dba2f4cbb31c1161.woff2')format("woff");}.ff3_c00479{font-family:ff3_c00479;line-height:0.755859;font-style:normal;font-weight:normal;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_238be9a72721020c350e66b8.woff2')format("woff");}.ff4_c00479{font-family:ff4_c00479;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00479;src:url('chunks/assets/font_6f2a0f0347c7ec4ab9bb1797.woff2')format("woff");}.ff5_c00479{font-family:ff5_c00479;line-height:0.905762;font-style:normal;font-weight: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_c00479;src:url('chunks/assets/font_2c3b134dc8de4fc3f9fcf2f3.woff2')format("woff");}.ff6_c00479{font-family:ff6_c00479;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00479{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00479{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3_c00479{vertical-align:-33.000000px;}
.v2_c00479{vertical-align:-23.086200px;}
.v0_c00479{vertical-align:0.000000px;}
.v1_c00479{vertical-align:23.086200px;}
.ls3_c00479{letter-spacing:-0.007200px;}
.ls2_c00479{letter-spacing:0.000000px;}
.ls4_c00479{letter-spacing:0.012000px;}
.ls1_c00479{letter-spacing:0.021600px;}
.ls0_c00479{letter-spacing:3.999999px;}
.sc__c00479{text-shadow:none;}
.sc0_c00479{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00479{-webkit-text-stroke:0px transparent;}
.sc0_c00479{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00479{word-spacing:-13.200000px;}
.ws1_c00479{word-spacing:0.000000px;}
._13_c00479{margin-left:-10.202400px;}
._12_c00479{margin-left:-6.343200px;}
._7_c00479{margin-left:-4.903200px;}
._3_c00479{margin-left:-3.873600px;}
._6_c00479{margin-left:-2.188800px;}
._8_c00479{margin-left:-1.130400px;}
._1_c00479{width:1.540800px;}
._5_c00479{width:2.541600px;}
._2_c00479{width:4.298400px;}
._0_c00479{width:5.803200px;}
._d_c00479{width:6.976800px;}
._9_c00479{width:8.676000px;}
._4_c00479{width:9.705600px;}
._c_c00479{width:11.210400px;}
._a_c00479{width:13.449600px;}
._b_c00479{width:15.141600px;}
._10_c00479{width:21.038400px;}
._f_c00479{width:22.219200px;}
._14_c00479{width:23.335200px;}
._e_c00479{width:24.350400px;}
._11_c00479{width:26.251200px;}
.fc0_c00479{color:rgb(0,0,0);}
.fs4_c00479{font-size:40.000002px;}
.fs2_c00479{font-size:48.000000px;}
.fs0_c00479{font-size:54.000000px;}
.fs3_c00479{font-size:60.000000px;}
.fs1_c00479{font-size:72.000000px;}
.y0_c00479{bottom:0.000000px;}
.y2_c00479{bottom:12.000000px;}
.y12_c00479{bottom:67.500000px;}
.y14_c00479{bottom:132.000000px;}
.y13_c00479{bottom:159.750000px;}
.y10_c00479{bottom:243.000000px;}
.yf_c00479{bottom:270.000000px;}
.ye_c00479{bottom:297.000000px;}
.yd_c00479{bottom:324.000000px;}
.yc_c00479{bottom:351.000000px;}
.yb_c00479{bottom:399.000000px;}
.ya_c00479{bottom:426.000000px;}
.y9_c00479{bottom:453.000000px;}
.y8_c00479{bottom:501.000000px;}
.y7_c00479{bottom:528.000000px;}
.y6_c00479{bottom:555.000000px;}
.y5_c00479{bottom:582.000000px;}
.y4_c00479{bottom:609.000000px;}
.y3_c00479{bottom:636.000000px;}
.y1_c00479{bottom:676.500000px;}
.y11_c00479{bottom:1194.000000px;}
.h7_c00479{height:27.480470px;}
.h8_c00479{height:41.220703px;}
.h2_c00479{height:42.292969px;}
.h6_c00479{height:44.208984px;}
.h3_c00479{height:51.187500px;}
.h5_c00479{height:56.074219px;}
.h4_c00479{height:57.211200px;}
.h1_c00479{height:436.500000px;}
.h0_c00479{height:1263.000000px;}
.w1_c00479{width:678.200700px;}
.w0_c00479{width:892.500000px;}
.x0_c00479{left:0.000000px;}
.x1_c00479{left:64.500000px;}
.x2_c00479{left:138.073635px;}
@media print{
.v3_c00479{vertical-align:-29.333333pt;}
.v2_c00479{vertical-align:-20.521067pt;}
.v0_c00479{vertical-align:0.000000pt;}
.v1_c00479{vertical-align:20.521067pt;}
.ls3_c00479{letter-spacing:-0.006400pt;}
.ls2_c00479{letter-spacing:0.000000pt;}
.ls4_c00479{letter-spacing:0.010667pt;}
.ls1_c00479{letter-spacing:0.019200pt;}
.ls0_c00479{letter-spacing:3.555555pt;}
.ws0_c00479{word-spacing:-11.733333pt;}
.ws1_c00479{word-spacing:0.000000pt;}
._13_c00479{margin-left:-9.068800pt;}
._12_c00479{margin-left:-5.638400pt;}
._7_c00479{margin-left:-4.358400pt;}
._3_c00479{margin-left:-3.443200pt;}
._6_c00479{margin-left:-1.945600pt;}
._8_c00479{margin-left:-1.004800pt;}
._1_c00479{width:1.369600pt;}
._5_c00479{width:2.259200pt;}
._2_c00479{width:3.820800pt;}
._0_c00479{width:5.158400pt;}
._d_c00479{width:6.201600pt;}
._9_c00479{width:7.712000pt;}
._4_c00479{width:8.627200pt;}
._c_c00479{width:9.964800pt;}
._a_c00479{width:11.955200pt;}
._b_c00479{width:13.459200pt;}
._10_c00479{width:18.700800pt;}
._f_c00479{width:19.750400pt;}
._14_c00479{width:20.742400pt;}
._e_c00479{width:21.644800pt;}
._11_c00479{width:23.334400pt;}
.fs4_c00479{font-size:35.555557pt;}
.fs2_c00479{font-size:42.666667pt;}
.fs0_c00479{font-size:48.000000pt;}
.fs3_c00479{font-size:53.333333pt;}
.fs1_c00479{font-size:64.000000pt;}
.y0_c00479{bottom:0.000000pt;}
.y2_c00479{bottom:10.666667pt;}
.y12_c00479{bottom:60.000000pt;}
.y14_c00479{bottom:117.333333pt;}
.y13_c00479{bottom:142.000000pt;}
.y10_c00479{bottom:216.000000pt;}
.yf_c00479{bottom:240.000000pt;}
.ye_c00479{bottom:264.000000pt;}
.yd_c00479{bottom:288.000000pt;}
.yc_c00479{bottom:312.000000pt;}
.yb_c00479{bottom:354.666667pt;}
.ya_c00479{bottom:378.666667pt;}
.y9_c00479{bottom:402.666667pt;}
.y8_c00479{bottom:445.333333pt;}
.y7_c00479{bottom:469.333333pt;}
.y6_c00479{bottom:493.333333pt;}
.y5_c00479{bottom:517.333333pt;}
.y4_c00479{bottom:541.333333pt;}
.y3_c00479{bottom:565.333333pt;}
.y1_c00479{bottom:601.333333pt;}
.y11_c00479{bottom:1061.333333pt;}
.h7_c00479{height:24.427085pt;}
.h8_c00479{height:36.640625pt;}
.h2_c00479{height:37.593750pt;}
.h6_c00479{height:39.296875pt;}
.h3_c00479{height:45.500000pt;}
.h5_c00479{height:49.843750pt;}
.h4_c00479{height:50.854400pt;}
.h1_c00479{height:388.000000pt;}
.h0_c00479{height:1122.666667pt;}
.w1_c00479{width:602.845067pt;}
.w0_c00479{width:793.333333pt;}
.x0_c00479{left:0.000000pt;}
.x1_c00479{left:57.333333pt;}
.x2_c00479{left:122.732120pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_101676f7909eb143057c29ce.woff2')format("woff");}.ff1_c00480{font-family:ff1_c00480;line-height:0.975586;font-style:normal;font-weight:normal;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_508bc7379c324fb01e956d84.woff2')format("woff");}.ff2_c00480{font-family:ff2_c00480;line-height:0.933105;font-style:normal;font-weight:normal;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_34b45740f4be9d738fd95e52.woff2')format("woff");}.ff3_c00480{font-family:ff3_c00480;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00480{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00480{vertical-align:0.000000px;}
.ls2_c00480{letter-spacing:-0.005400px;}
.ls1_c00480{letter-spacing:0.000000px;}
.ls0_c00480{letter-spacing:0.012000px;}
.sc__c00480{text-shadow:none;}
.sc0_c00480{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00480{-webkit-text-stroke:0px transparent;}
.sc0_c00480{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00480{word-spacing:0.000000px;}
._6_c00480{margin-left:-7.214400px;}
._0_c00480{margin-left:-3.168000px;}
._8_c00480{margin-left:-2.109600px;}
._2_c00480{margin-left:-1.036800px;}
._4_c00480{width:1.504800px;}
._11_c00480{width:3.146400px;}
._d_c00480{width:4.708800px;}
._e_c00480{width:5.832000px;}
._10_c00480{width:7.236000px;}
._b_c00480{width:8.416800px;}
._a_c00480{width:9.756000px;}
._f_c00480{width:11.016000px;}
._c_c00480{width:12.261600px;}
._5_c00480{width:13.363200px;}
._7_c00480{width:14.860800px;}
._3_c00480{width:15.926400px;}
._9_c00480{width:17.006400px;}
._1_c00480{width:18.028800px;}
.fc0_c00480{color:rgb(0,0,0);}
.fs0_c00480{font-size:54.000000px;}
.fs2_c00480{font-size:60.000000px;}
.fs1_c00480{font-size:72.000000px;}
.y0_c00480{bottom:0.000000px;}
.y2_c00480{bottom:12.000000px;}
.yc_c00480{bottom:67.500000px;}
.ya_c00480{bottom:177.000000px;}
.y9_c00480{bottom:204.000000px;}
.y8_c00480{bottom:231.000000px;}
.y7_c00480{bottom:258.000000px;}
.y6_c00480{bottom:285.000000px;}
.y5_c00480{bottom:325.500000px;}
.y4_c00480{bottom:672.000000px;}
.y3_c00480{bottom:694.500000px;}
.y1_c00480{bottom:714.000000px;}
.yb_c00480{bottom:1194.000000px;}
.h2_c00480{height:41.633789px;}
.h3_c00480{height:51.187500px;}
.h5_c00480{height:56.074219px;}
.h4_c00480{height:340.500000px;}
.h1_c00480{height:399.000000px;}
.h0_c00480{height:1263.000000px;}
.w1_c00480{width:678.200850px;}
.w0_c00480{width:892.500000px;}
.x0_c00480{left:0.000000px;}
.x1_c00480{left:150.000000px;}
.x2_c00480{left:249.850800px;}
.x3_c00480{left:281.102400px;}
.x4_c00480{left:418.483650px;}
.x5_c00480{left:803.693550px;}
@media print{
.v0_c00480{vertical-align:0.000000pt;}
.ls2_c00480{letter-spacing:-0.004800pt;}
.ls1_c00480{letter-spacing:0.000000pt;}
.ls0_c00480{letter-spacing:0.010667pt;}
.ws0_c00480{word-spacing:0.000000pt;}
._6_c00480{margin-left:-6.412800pt;}
._0_c00480{margin-left:-2.816000pt;}
._8_c00480{margin-left:-1.875200pt;}
._2_c00480{margin-left:-0.921600pt;}
._4_c00480{width:1.337600pt;}
._11_c00480{width:2.796800pt;}
._d_c00480{width:4.185600pt;}
._e_c00480{width:5.184000pt;}
._10_c00480{width:6.432000pt;}
._b_c00480{width:7.481600pt;}
._a_c00480{width:8.672000pt;}
._f_c00480{width:9.792000pt;}
._c_c00480{width:10.899200pt;}
._5_c00480{width:11.878400pt;}
._7_c00480{width:13.209600pt;}
._3_c00480{width:14.156800pt;}
._9_c00480{width:15.116800pt;}
._1_c00480{width:16.025600pt;}
.fs0_c00480{font-size:48.000000pt;}
.fs2_c00480{font-size:53.333333pt;}
.fs1_c00480{font-size:64.000000pt;}
.y0_c00480{bottom:0.000000pt;}
.y2_c00480{bottom:10.666667pt;}
.yc_c00480{bottom:60.000000pt;}
.ya_c00480{bottom:157.333333pt;}
.y9_c00480{bottom:181.333333pt;}
.y8_c00480{bottom:205.333333pt;}
.y7_c00480{bottom:229.333333pt;}
.y6_c00480{bottom:253.333333pt;}
.y5_c00480{bottom:289.333333pt;}
.y4_c00480{bottom:597.333333pt;}
.y3_c00480{bottom:617.333333pt;}
.y1_c00480{bottom:634.666667pt;}
.yb_c00480{bottom:1061.333333pt;}
.h2_c00480{height:37.007812pt;}
.h3_c00480{height:45.500000pt;}
.h5_c00480{height:49.843750pt;}
.h4_c00480{height:302.666667pt;}
.h1_c00480{height:354.666667pt;}
.h0_c00480{height:1122.666667pt;}
.w1_c00480{width:602.845200pt;}
.w0_c00480{width:793.333333pt;}
.x0_c00480{left:0.000000pt;}
.x1_c00480{left:133.333333pt;}
.x2_c00480{left:222.089600pt;}
.x3_c00480{left:249.868800pt;}
.x4_c00480{left:371.985467pt;}
.x5_c00480{left:714.394267pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3b4cf5a7a0c148c5e5ca74ec.woff2')format("woff");}.ff1_c00481{font-family:ff1_c00481;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00481;src:url('chunks/assets/font_8398e17418b8d1ea573ff0d2.woff2')format("woff");}.ff2_c00481{font-family:ff2_c00481;line-height:0.756836;font-style:normal;font-weight:normal;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_1c093106a3acbae71170d904.woff2')format("woff");}.ff3_c00481{font-family:ff3_c00481;line-height:1.155762;font-style: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;}
.ls0_c00481{letter-spacing:0.000000px;}
.ls1_c00481{letter-spacing:0.012000px;}
.sc__c00481{text-shadow:none;}
.sc0_c00481{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00481{-webkit-text-stroke:0px transparent;}
.sc0_c00481{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00481{word-spacing:0.000000px;}
._0_c00481{margin-left:-3.216000px;}
.fc1_c00481{color:transparent;}
.fc0_c00481{color:rgb(0,0,0);}
.fs0_c00481{font-size:54.000000px;}
.fs1_c00481{font-size:60.000000px;}
.y0_c00481{bottom:0.000000px;}
.y2_c00481{bottom:10.500000px;}
.y4_c00481{bottom:12.000000px;}
.y7_c00481{bottom:67.500000px;}
.y5_c00481{bottom:169.500000px;}
.y3_c00481{bottom:487.500000px;}
.y1_c00481{bottom:774.000000px;}
.y6_c00481{bottom:1194.000000px;}
.h2_c00481{height:35.991211px;}
.h6_c00481{height:44.208984px;}
.h5_c00481{height:56.074219px;}
.h3_c00481{height:279.000000px;}
.h4_c00481{height:289.500000px;}
.h1_c00481{height:339.000000px;}
.h0_c00481{height:1263.000000px;}
.w2_c00481{width:586.500000px;}
.w1_c00481{width:678.200700px;}
.w3_c00481{width:678.200850px;}
.w0_c00481{width:892.500000px;}
.x0_c00481{left:0.000000px;}
.x2_c00481{left:21.733845px;}
.x4_c00481{left:55.714650px;}
.x1_c00481{left:64.500000px;}
.x3_c00481{left:109.500000px;}
@media print{
.v0_c00481{vertical-align:0.000000pt;}
.ls0_c00481{letter-spacing:0.000000pt;}
.ls1_c00481{letter-spacing:0.010667pt;}
.ws0_c00481{word-spacing:0.000000pt;}
._0_c00481{margin-left:-2.858667pt;}
.fs0_c00481{font-size:48.000000pt;}
.fs1_c00481{font-size:53.333333pt;}
.y0_c00481{bottom:0.000000pt;}
.y2_c00481{bottom:9.333333pt;}
.y4_c00481{bottom:10.666667pt;}
.y7_c00481{bottom:60.000000pt;}
.y5_c00481{bottom:150.666667pt;}
.y3_c00481{bottom:433.333333pt;}
.y1_c00481{bottom:688.000000pt;}
.y6_c00481{bottom:1061.333333pt;}
.h2_c00481{height:31.992188pt;}
.h6_c00481{height:39.296875pt;}
.h5_c00481{height:49.843750pt;}
.h3_c00481{height:248.000000pt;}
.h4_c00481{height:257.333333pt;}
.h1_c00481{height:301.333333pt;}
.h0_c00481{height:1122.666667pt;}
.w2_c00481{width:521.333333pt;}
.w1_c00481{width:602.845067pt;}
.w3_c00481{width:602.845200pt;}
.w0_c00481{width:793.333333pt;}
.x0_c00481{left:0.000000pt;}
.x2_c00481{left:19.318973pt;}
.x4_c00481{left:49.524133pt;}
.x1_c00481{left:57.333333pt;}
.x3_c00481{left:97.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_60a9d00e93d4217c8b851ff8.woff2')format("woff");}.ff1_c00482{font-family:ff1_c00482;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00482;src:url('chunks/assets/font_0cec2311edca292dd33d5707.woff2')format("woff");}.ff2_c00482{font-family:ff2_c00482;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00482{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00482{vertical-align:0.000000px;}
.ls1_c00482{letter-spacing:0.000000px;}
.ls0_c00482{letter-spacing:0.012000px;}
.sc__c00482{text-shadow:none;}
.sc0_c00482{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00482{-webkit-text-stroke:0px transparent;}
.sc0_c00482{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00482{word-spacing:0.000000px;}
._0_c00482{margin-left:-3.426000px;}
.fc1_c00482{color:transparent;}
.fc0_c00482{color:rgb(0,0,0);}
.fs0_c00482{font-size:54.000000px;}
.fs1_c00482{font-size:60.000000px;}
.y0_c00482{bottom:0.000000px;}
.y5_c00482{bottom:10.500000px;}
.y2_c00482{bottom:12.000000px;}
.y7_c00482{bottom:67.500000px;}
.y4_c00482{bottom:153.000000px;}
.y3_c00482{bottom:364.500000px;}
.y1_c00482{bottom:543.000000px;}
.y6_c00482{bottom:1194.000000px;}
.h2_c00482{height:35.991211px;}
.h5_c00482{height:56.074219px;}
.h3_c00482{height:175.500000px;}
.h4_c00482{height:208.500000px;}
.h1_c00482{height:570.000000px;}
.h0_c00482{height:1263.000000px;}
.w2_c00482{width:675.000000px;}
.w3_c00482{width:678.200700px;}
.w1_c00482{width:678.200850px;}
.w0_c00482{width:892.500000px;}
.x0_c00482{left:0.000000px;}
.x4_c00482{left:99.113730px;}
.x1_c00482{left:150.000000px;}
.x3_c00482{left:151.500000px;}
.x5_c00482{left:170.857800px;}
.x2_c00482{left:336.964650px;}
.x6_c00482{left:418.483650px;}
.x7_c00482{left:803.693550px;}
@media print{
.v0_c00482{vertical-align:0.000000pt;}
.ls1_c00482{letter-spacing:0.000000pt;}
.ls0_c00482{letter-spacing:0.010667pt;}
.ws0_c00482{word-spacing:0.000000pt;}
._0_c00482{margin-left:-3.045333pt;}
.fs0_c00482{font-size:48.000000pt;}
.fs1_c00482{font-size:53.333333pt;}
.y0_c00482{bottom:0.000000pt;}
.y5_c00482{bottom:9.333333pt;}
.y2_c00482{bottom:10.666667pt;}
.y7_c00482{bottom:60.000000pt;}
.y4_c00482{bottom:136.000000pt;}
.y3_c00482{bottom:324.000000pt;}
.y1_c00482{bottom:482.666667pt;}
.y6_c00482{bottom:1061.333333pt;}
.h2_c00482{height:31.992188pt;}
.h5_c00482{height:49.843750pt;}
.h3_c00482{height:156.000000pt;}
.h4_c00482{height:185.333333pt;}
.h1_c00482{height:506.666667pt;}
.h0_c00482{height:1122.666667pt;}
.w2_c00482{width:600.000000pt;}
.w3_c00482{width:602.845067pt;}
.w1_c00482{width:602.845200pt;}
.w0_c00482{width:793.333333pt;}
.x0_c00482{left:0.000000pt;}
.x4_c00482{left:88.101093pt;}
.x1_c00482{left:133.333333pt;}
.x3_c00482{left:134.666667pt;}
.x5_c00482{left:151.873600pt;}
.x2_c00482{left:299.524133pt;}
.x6_c00482{left:371.985467pt;}
.x7_c00482{left:714.394267pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9efc0cf3c7e0dc584028fd53.woff2')format("woff");}.ff1_c00483{font-family:ff1_c00483;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00483;src:url('chunks/assets/font_8382a80c1b7d149d77b7de00.woff2')format("woff");}.ff2_c00483{font-family:ff2_c00483;line-height:1.163086;font-style:normal;font-weight:normal;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_a34f0874c1b940e7bab5a271.woff2')format("woff");}.ff3_c00483{font-family:ff3_c00483;line-height:0.756836;font-style:normal;font-weight:normal;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_18a3e32918670aae05232457.woff2')format("woff");}.ff4_c00483{font-family:ff4_c00483;line-height:1.155762;font-style:normal;font-weight:normal;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_d1d5170176d602192b0ec307.woff2')format("woff");}.ff5_c00483{font-family:ff5_c00483;line-height:0.904785;font-style:normal;font-weight: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_c00483;src:url('chunks/assets/font_11c8893ff3ec7e1d865b3410.woff2')format("woff");}.ff6_c00483{font-family:ff6_c00483;line-height:0.796387;font-style: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);}
.v3_c00483{vertical-align:-33.000000px;}
.v2_c00483{vertical-align:-23.086200px;}
.v0_c00483{vertical-align:0.000000px;}
.v1_c00483{vertical-align:23.086200px;}
.ls1_c00483{letter-spacing:-0.007200px;}
.ls0_c00483{letter-spacing:0.000000px;}
.ls2_c00483{letter-spacing:0.012000px;}
.sc__c00483{text-shadow:none;}
.sc0_c00483{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00483{-webkit-text-stroke:0px transparent;}
.sc0_c00483{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00483{word-spacing:-13.200000px;}
.ws1_c00483{word-spacing:-10.000001px;}
.ws2_c00483{word-spacing:0.000000px;}
._11_c00483{margin-left:-11.570400px;}
._b_c00483{margin-left:-4.320000px;}
._7_c00483{margin-left:-3.312000px;}
._5_c00483{margin-left:-2.275200px;}
._9_c00483{margin-left:-1.116000px;}
._8_c00483{width:1.008000px;}
._1_c00483{width:2.188800px;}
._a_c00483{width:3.232800px;}
._3_c00483{width:4.291200px;}
._4_c00483{width:6.249600px;}
._2_c00483{width:8.272800px;}
._0_c00483{width:10.461600px;}
._10_c00483{width:11.635200px;}
._6_c00483{width:12.664800px;}
._12_c00483{width:14.076000px;}
._f_c00483{width:15.228000px;}
._e_c00483{width:16.372800px;}
._d_c00483{width:17.834400px;}
._c_c00483{width:22.104000px;}
.fc1_c00483{color:transparent;}
.fc0_c00483{color:rgb(0,0,0);}
.fs4_c00483{font-size:40.000002px;}
.fs2_c00483{font-size:48.000000px;}
.fs0_c00483{font-size:54.000000px;}
.fs3_c00483{font-size:60.000000px;}
.fs1_c00483{font-size:72.000000px;}
.y0_c00483{bottom:0.000000px;}
.y2_c00483{bottom:12.000000px;}
.y12_c00483{bottom:67.500000px;}
.y13_c00483{bottom:140.250000px;}
.y10_c00483{bottom:202.500000px;}
.yf_c00483{bottom:229.500000px;}
.ye_c00483{bottom:256.500000px;}
.yd_c00483{bottom:283.500000px;}
.yc_c00483{bottom:310.500000px;}
.yb_c00483{bottom:358.500000px;}
.ya_c00483{bottom:385.500000px;}
.y9_c00483{bottom:412.500000px;}
.y8_c00483{bottom:439.500000px;}
.y7_c00483{bottom:466.500000px;}
.y6_c00483{bottom:493.500000px;}
.y5_c00483{bottom:520.500000px;}
.y4_c00483{bottom:547.500000px;}
.y3_c00483{bottom:574.500000px;}
.y1_c00483{bottom:598.500000px;}
.y11_c00483{bottom:1194.000000px;}
.h7_c00483{height:27.480470px;}
.h2_c00483{height:35.991211px;}
.h6_c00483{height:44.208984px;}
.h5_c00483{height:56.074219px;}
.h3_c00483{height:67.746094px;}
.h4_c00483{height:68.250263px;}
.h1_c00483{height:310.500000px;}
.h0_c00483{height:1263.000000px;}
.w1_c00483{width:678.200850px;}
.w0_c00483{width:892.500000px;}
.x0_c00483{left:0.000000px;}
.x1_c00483{left:64.500000px;}
.x2_c00483{left:336.964650px;}
@media print{
.v3_c00483{vertical-align:-29.333333pt;}
.v2_c00483{vertical-align:-20.521067pt;}
.v0_c00483{vertical-align:0.000000pt;}
.v1_c00483{vertical-align:20.521067pt;}
.ls1_c00483{letter-spacing:-0.006400pt;}
.ls0_c00483{letter-spacing:0.000000pt;}
.ls2_c00483{letter-spacing:0.010667pt;}
.ws0_c00483{word-spacing:-11.733333pt;}
.ws1_c00483{word-spacing:-8.888889pt;}
.ws2_c00483{word-spacing:0.000000pt;}
._11_c00483{margin-left:-10.284800pt;}
._b_c00483{margin-left:-3.840000pt;}
._7_c00483{margin-left:-2.944000pt;}
._5_c00483{margin-left:-2.022400pt;}
._9_c00483{margin-left:-0.992000pt;}
._8_c00483{width:0.896000pt;}
._1_c00483{width:1.945600pt;}
._a_c00483{width:2.873600pt;}
._3_c00483{width:3.814400pt;}
._4_c00483{width:5.555200pt;}
._2_c00483{width:7.353600pt;}
._0_c00483{width:9.299200pt;}
._10_c00483{width:10.342400pt;}
._6_c00483{width:11.257600pt;}
._12_c00483{width:12.512000pt;}
._f_c00483{width:13.536000pt;}
._e_c00483{width:14.553600pt;}
._d_c00483{width:15.852800pt;}
._c_c00483{width:19.648000pt;}
.fs4_c00483{font-size:35.555557pt;}
.fs2_c00483{font-size:42.666667pt;}
.fs0_c00483{font-size:48.000000pt;}
.fs3_c00483{font-size:53.333333pt;}
.fs1_c00483{font-size:64.000000pt;}
.y0_c00483{bottom:0.000000pt;}
.y2_c00483{bottom:10.666667pt;}
.y12_c00483{bottom:60.000000pt;}
.y13_c00483{bottom:124.666667pt;}
.y10_c00483{bottom:180.000000pt;}
.yf_c00483{bottom:204.000000pt;}
.ye_c00483{bottom:228.000000pt;}
.yd_c00483{bottom:252.000000pt;}
.yc_c00483{bottom:276.000000pt;}
.yb_c00483{bottom:318.666667pt;}
.ya_c00483{bottom:342.666667pt;}
.y9_c00483{bottom:366.666667pt;}
.y8_c00483{bottom:390.666667pt;}
.y7_c00483{bottom:414.666667pt;}
.y6_c00483{bottom:438.666667pt;}
.y5_c00483{bottom:462.666667pt;}
.y4_c00483{bottom:486.666667pt;}
.y3_c00483{bottom:510.666667pt;}
.y1_c00483{bottom:532.000000pt;}
.y11_c00483{bottom:1061.333333pt;}
.h7_c00483{height:24.427085pt;}
.h2_c00483{height:31.992188pt;}
.h6_c00483{height:39.296875pt;}
.h5_c00483{height:49.843750pt;}
.h3_c00483{height:60.218750pt;}
.h4_c00483{height:60.666900pt;}
.h1_c00483{height:276.000000pt;}
.h0_c00483{height:1122.666667pt;}
.w1_c00483{width:602.845200pt;}
.w0_c00483{width:793.333333pt;}
.x0_c00483{left:0.000000pt;}
.x1_c00483{left:57.333333pt;}
.x2_c00483{left:299.524133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b86196dd1c0771a1869da0dd.woff2')format("woff");}.ff1_c00484{font-family:ff1_c00484;line-height:0.934082;font-style:normal;font-weight:normal;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_e6386923778456bab748d064.woff2')format("woff");}.ff2_c00484{font-family:ff2_c00484;line-height:0.795410;font-style:normal;font-weight:normal;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_1ef9e67b0e393ec13127ed97.woff2')format("woff");}.ff3_c00484{font-family:ff3_c00484;line-height:1.155762;font-style:normal;font-weight:normal;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_838fab9a46284f8300b5ff20.woff2')format("woff");}.ff4_c00484{font-family:ff4_c00484;line-height:0.905762;font-style:normal;font-weight:normal;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_c1feb074f4c494ad11edd8bc.woff2')format("woff");}.ff5_c00484{font-family:ff5_c00484;line-height:0.678223;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00484{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00484{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3_c00484{vertical-align:-33.000000px;}
.v2_c00484{vertical-align:-23.086200px;}
.v0_c00484{vertical-align:0.000000px;}
.v1_c00484{vertical-align:23.086200px;}
.ls1_c00484{letter-spacing:0.000000px;}
.ls0_c00484{letter-spacing:0.012000px;}
.sc__c00484{text-shadow:none;}
.sc0_c00484{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00484{-webkit-text-stroke:0px transparent;}
.sc0_c00484{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00484{word-spacing:-13.200000px;}
.ws1_c00484{word-spacing:-10.000001px;}
.ws2_c00484{word-spacing:0.000000px;}
._e_c00484{margin-left:-10.584000px;}
._12_c00484{margin-left:-4.323600px;}
._6_c00484{margin-left:-3.272400px;}
._0_c00484{margin-left:-1.260000px;}
._2_c00484{width:1.375200px;}
._9_c00484{width:2.574000px;}
._5_c00484{width:4.111200px;}
._a_c00484{width:5.248800px;}
._c_c00484{width:6.253200px;}
._8_c00484{width:7.408800px;}
._b_c00484{width:8.640000px;}
._3_c00484{width:10.152000px;}
._1_c00484{width:11.548800px;}
._4_c00484{width:12.708000px;}
._7_c00484{width:14.727600px;}
._10_c00484{width:16.185600px;}
._d_c00484{width:17.856000px;}
._f_c00484{width:20.804400px;}
._11_c00484{width:22.143600px;}
.fc0_c00484{color:rgb(0,0,0);}
.fs4_c00484{font-size:40.000002px;}
.fs1_c00484{font-size:48.000000px;}
.fs2_c00484{font-size:54.000000px;}
.fs3_c00484{font-size:60.000000px;}
.fs0_c00484{font-size:72.000000px;}
.y0_c00484{bottom:0.000000px;}
.y11_c00484{bottom:12.000000px;}
.y13_c00484{bottom:67.500000px;}
.y14_c00484{bottom:140.250000px;}
.y10_c00484{bottom:205.500000px;}
.yf_c00484{bottom:675.000000px;}
.ye_c00484{bottom:702.000000px;}
.yd_c00484{bottom:729.000000px;}
.yc_c00484{bottom:756.000000px;}
.yb_c00484{bottom:783.000000px;}
.ya_c00484{bottom:831.000000px;}
.y9_c00484{bottom:858.000000px;}
.y8_c00484{bottom:885.000000px;}
.y7_c00484{bottom:912.000000px;}
.y6_c00484{bottom:939.000000px;}
.y5_c00484{bottom:966.000000px;}
.y4_c00484{bottom:993.000000px;}
.y3_c00484{bottom:1020.000000px;}
.y2_c00484{bottom:1068.000000px;}
.y1_c00484{bottom:1095.000000px;}
.y12_c00484{bottom:1194.000000px;}
.h6_c00484{height:27.480470px;}
.h4_c00484{height:42.292969px;}
.h2_c00484{height:51.257812px;}
.h5_c00484{height:56.074219px;}
.h1_c00484{height:57.258075px;}
.h3_c00484{height:438.000000px;}
.h0_c00484{height:1263.000000px;}
.w1_c00484{width:678.200700px;}
.w0_c00484{width:892.500000px;}
.x0_c00484{left:0.000000px;}
.x1_c00484{left:150.519750px;}
.x2_c00484{left:250.948200px;}
.x3_c00484{left:418.483650px;}
.x4_c00484{left:803.693550px;}
@media print{
.v3_c00484{vertical-align:-29.333333pt;}
.v2_c00484{vertical-align:-20.521067pt;}
.v0_c00484{vertical-align:0.000000pt;}
.v1_c00484{vertical-align:20.521067pt;}
.ls1_c00484{letter-spacing:0.000000pt;}
.ls0_c00484{letter-spacing:0.010667pt;}
.ws0_c00484{word-spacing:-11.733333pt;}
.ws1_c00484{word-spacing:-8.888889pt;}
.ws2_c00484{word-spacing:0.000000pt;}
._e_c00484{margin-left:-9.408000pt;}
._12_c00484{margin-left:-3.843200pt;}
._6_c00484{margin-left:-2.908800pt;}
._0_c00484{margin-left:-1.120000pt;}
._2_c00484{width:1.222400pt;}
._9_c00484{width:2.288000pt;}
._5_c00484{width:3.654400pt;}
._a_c00484{width:4.665600pt;}
._c_c00484{width:5.558400pt;}
._8_c00484{width:6.585600pt;}
._b_c00484{width:7.680000pt;}
._3_c00484{width:9.024000pt;}
._1_c00484{width:10.265600pt;}
._4_c00484{width:11.296000pt;}
._7_c00484{width:13.091200pt;}
._10_c00484{width:14.387200pt;}
._d_c00484{width:15.872000pt;}
._f_c00484{width:18.492800pt;}
._11_c00484{width:19.683200pt;}
.fs4_c00484{font-size:35.555557pt;}
.fs1_c00484{font-size:42.666667pt;}
.fs2_c00484{font-size:48.000000pt;}
.fs3_c00484{font-size:53.333333pt;}
.fs0_c00484{font-size:64.000000pt;}
.y0_c00484{bottom:0.000000pt;}
.y11_c00484{bottom:10.666667pt;}
.y13_c00484{bottom:60.000000pt;}
.y14_c00484{bottom:124.666667pt;}
.y10_c00484{bottom:182.666667pt;}
.yf_c00484{bottom:600.000000pt;}
.ye_c00484{bottom:624.000000pt;}
.yd_c00484{bottom:648.000000pt;}
.yc_c00484{bottom:672.000000pt;}
.yb_c00484{bottom:696.000000pt;}
.ya_c00484{bottom:738.666667pt;}
.y9_c00484{bottom:762.666667pt;}
.y8_c00484{bottom:786.666667pt;}
.y7_c00484{bottom:810.666667pt;}
.y6_c00484{bottom:834.666667pt;}
.y5_c00484{bottom:858.666667pt;}
.y4_c00484{bottom:882.666667pt;}
.y3_c00484{bottom:906.666667pt;}
.y2_c00484{bottom:949.333333pt;}
.y1_c00484{bottom:973.333333pt;}
.y12_c00484{bottom:1061.333333pt;}
.h6_c00484{height:24.427085pt;}
.h4_c00484{height:37.593750pt;}
.h2_c00484{height:45.562500pt;}
.h5_c00484{height:49.843750pt;}
.h1_c00484{height:50.896067pt;}
.h3_c00484{height:389.333333pt;}
.h0_c00484{height:1122.666667pt;}
.w1_c00484{width:602.845067pt;}
.w0_c00484{width:793.333333pt;}
.x0_c00484{left:0.000000pt;}
.x1_c00484{left:133.795333pt;}
.x2_c00484{left:223.065067pt;}
.x3_c00484{left:371.985467pt;}
.x4_c00484{left:714.394267pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e112c1dd0cb806f316cf0cb1.woff2')format("woff");}.ff1_c00485{font-family:ff1_c00485;line-height:0.934082;font-style:normal;font-weight:normal;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_caa5b1459003b1683eb25040.woff2')format("woff");}.ff2_c00485{font-family:ff2_c00485;line-height:0.975586;font-style:normal;font-weight:normal;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_4185bac40a41bf077d3409dd.woff2')format("woff");}.ff3_c00485{font-family:ff3_c00485;line-height:0.756836;font-style:normal;font-weight:normal;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_a2ddfa7b1a34eefba258e0be.woff2')format("woff");}.ff4_c00485{font-family:ff4_c00485;line-height:1.155762;font-style:normal;font-weight:normal;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_305bdd7939bdaf90a383ef5a.woff2')format("woff");}.ff5_c00485{font-family:ff5_c00485;line-height:1.112305;font-style:normal;font-weight: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_de1ddc42d9798edfc9df5653.woff2')format("woff");}.ff6_c00485{font-family:ff6_c00485;line-height:0.678223;font-style: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);}
.v3_c00485{vertical-align:-33.000000px;}
.v2_c00485{vertical-align:-23.086200px;}
.v0_c00485{vertical-align:0.000000px;}
.v1_c00485{vertical-align:23.086200px;}
.ls6_c00485{letter-spacing:-0.012000px;}
.ls3_c00485{letter-spacing:-0.007200px;}
.ls2_c00485{letter-spacing:0.000000px;}
.ls5_c00485{letter-spacing:0.012000px;}
.ls4_c00485{letter-spacing:0.021600px;}
.ls0_c00485{letter-spacing:1.219800px;}
.ls1_c00485{letter-spacing:3.999999px;}
.sc__c00485{text-shadow:none;}
.sc0_c00485{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00485{-webkit-text-stroke:0px transparent;}
.sc0_c00485{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00485{word-spacing:-14.988000px;}
.ws1_c00485{word-spacing:0.000000px;}
._a_c00485{margin-left:-10.648920px;}
._10_c00485{margin-left:-6.646440px;}
._e_c00485{margin-left:-4.464120px;}
._5_c00485{margin-left:-3.297600px;}
._9_c00485{margin-left:-1.223880px;}
._7_c00485{width:1.324800px;}
._0_c00485{width:2.808000px;}
._3_c00485{width:4.060800px;}
._c_c00485{width:5.947080px;}
._d_c00485{width:7.149600px;}
._b_c00485{width:8.524800px;}
._f_c00485{width:9.691440px;}
._4_c00485{width:10.771200px;}
._1_c00485{width:12.031200px;}
._8_c00485{width:13.521600px;}
._2_c00485{width:14.853600px;}
._6_c00485{width:18.115200px;}
.fc0_c00485{color:rgb(0,0,0);}
.fs4_c00485{font-size:40.000002px;}
.fs1_c00485{font-size:48.000000px;}
.fs2_c00485{font-size:54.000000px;}
.fs3_c00485{font-size:60.000000px;}
.fs0_c00485{font-size:72.000000px;}
.y0_c00485{bottom:0.000000px;}
.y4_c00485{bottom:12.000000px;}
.yb_c00485{bottom:67.500000px;}
.ye_c00485{bottom:132.000000px;}
.yd_c00485{bottom:151.500000px;}
.yc_c00485{bottom:179.250000px;}
.y9_c00485{bottom:306.000000px;}
.y8_c00485{bottom:333.000000px;}
.y7_c00485{bottom:360.000000px;}
.y6_c00485{bottom:387.000000px;}
.y5_c00485{bottom:414.000000px;}
.y3_c00485{bottom:454.500000px;}
.y2_c00485{bottom:1068.000000px;}
.y1_c00485{bottom:1095.000000px;}
.ya_c00485{bottom:1194.000000px;}
.h7_c00485{height:35.781252px;}
.h4_c00485{height:41.633789px;}
.h6_c00485{height:44.208984px;}
.h1_c00485{height:51.257812px;}
.h8_c00485{height:53.671875px;}
.h5_c00485{height:56.074219px;}
.h2_c00485{height:57.258075px;}
.h3_c00485{height:582.000000px;}
.h0_c00485{height:1263.000000px;}
.w1_c00485{width:678.200700px;}
.w0_c00485{width:892.500000px;}
.x0_c00485{left:0.000000px;}
.x1_c00485{left:63.779520px;}
.x2_c00485{left:206.064750px;}
@media print{
.v3_c00485{vertical-align:-29.333333pt;}
.v2_c00485{vertical-align:-20.521067pt;}
.v0_c00485{vertical-align:0.000000pt;}
.v1_c00485{vertical-align:20.521067pt;}
.ls6_c00485{letter-spacing:-0.010667pt;}
.ls3_c00485{letter-spacing:-0.006400pt;}
.ls2_c00485{letter-spacing:0.000000pt;}
.ls5_c00485{letter-spacing:0.010667pt;}
.ls4_c00485{letter-spacing:0.019200pt;}
.ls0_c00485{letter-spacing:1.084267pt;}
.ls1_c00485{letter-spacing:3.555555pt;}
.ws0_c00485{word-spacing:-13.322667pt;}
.ws1_c00485{word-spacing:0.000000pt;}
._a_c00485{margin-left:-9.465707pt;}
._10_c00485{margin-left:-5.907947pt;}
._e_c00485{margin-left:-3.968107pt;}
._5_c00485{margin-left:-2.931200pt;}
._9_c00485{margin-left:-1.087893pt;}
._7_c00485{width:1.177600pt;}
._0_c00485{width:2.496000pt;}
._3_c00485{width:3.609600pt;}
._c_c00485{width:5.286293pt;}
._d_c00485{width:6.355200pt;}
._b_c00485{width:7.577600pt;}
._f_c00485{width:8.614613pt;}
._4_c00485{width:9.574400pt;}
._1_c00485{width:10.694400pt;}
._8_c00485{width:12.019200pt;}
._2_c00485{width:13.203200pt;}
._6_c00485{width:16.102400pt;}
.fs4_c00485{font-size:35.555557pt;}
.fs1_c00485{font-size:42.666667pt;}
.fs2_c00485{font-size:48.000000pt;}
.fs3_c00485{font-size:53.333333pt;}
.fs0_c00485{font-size:64.000000pt;}
.y0_c00485{bottom:0.000000pt;}
.y4_c00485{bottom:10.666667pt;}
.yb_c00485{bottom:60.000000pt;}
.ye_c00485{bottom:117.333333pt;}
.yd_c00485{bottom:134.666667pt;}
.yc_c00485{bottom:159.333333pt;}
.y9_c00485{bottom:272.000000pt;}
.y8_c00485{bottom:296.000000pt;}
.y7_c00485{bottom:320.000000pt;}
.y6_c00485{bottom:344.000000pt;}
.y5_c00485{bottom:368.000000pt;}
.y3_c00485{bottom:404.000000pt;}
.y2_c00485{bottom:949.333333pt;}
.y1_c00485{bottom:973.333333pt;}
.ya_c00485{bottom:1061.333333pt;}
.h7_c00485{height:31.805557pt;}
.h4_c00485{height:37.007812pt;}
.h6_c00485{height:39.296875pt;}
.h1_c00485{height:45.562500pt;}
.h8_c00485{height:47.708333pt;}
.h5_c00485{height:49.843750pt;}
.h2_c00485{height:50.896067pt;}
.h3_c00485{height:517.333333pt;}
.h0_c00485{height:1122.666667pt;}
.w1_c00485{width:602.845067pt;}
.w0_c00485{width:793.333333pt;}
.x0_c00485{left:0.000000pt;}
.x1_c00485{left:56.692907pt;}
.x2_c00485{left:183.168667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a97968d143b9524d9b126554.woff2')format("woff");}.ff1_c00486{font-family:ff1_c00486;line-height:0.987793;font-style:normal;font-weight:normal;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_437838cc5e47c594c2bf5ab0.woff2')format("woff");}.ff2_c00486{font-family:ff2_c00486;line-height:0.934082;font-style:normal;font-weight:normal;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_eebe3180682d476fa0a2d700.woff2')format("woff");}.ff3_c00486{font-family:ff3_c00486;line-height:1.155762;font-style:normal;font-weight:normal;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_d26c11c63be2bb6bddfa4629.woff2')format("woff");}.ff4_c00486{font-family:ff4_c00486;line-height:1.112305;font-style:normal;font-weight:normal;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_fa318a86023c50d43fa005bf.woff2')format("woff");}.ff5_c00486{font-family:ff5_c00486;line-height:0.678223;font-style: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);}
.v3_c00486{vertical-align:-33.000000px;}
.v2_c00486{vertical-align:-23.086200px;}
.v0_c00486{vertical-align:0.000000px;}
.v1_c00486{vertical-align:23.086200px;}
.ls3_c00486{letter-spacing:0.000000px;}
.ls0_c00486{letter-spacing:0.012000px;}
.ls2_c00486{letter-spacing:0.021600px;}
.ls1_c00486{letter-spacing:3.999999px;}
.sc__c00486{text-shadow:none;}
.sc0_c00486{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00486{-webkit-text-stroke:0px transparent;}
.sc0_c00486{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00486{word-spacing:-13.200000px;}
.ws1_c00486{word-spacing:0.000000px;}
._13_c00486{margin-left:-10.584000px;}
._14_c00486{margin-left:-7.009200px;}
._9_c00486{margin-left:-4.154400px;}
._0_c00486{margin-left:-2.887200px;}
._3_c00486{margin-left:-1.792800px;}
._5_c00486{width:1.159200px;}
._6_c00486{width:2.664000px;}
._2_c00486{width:4.039200px;}
._4_c00486{width:5.716800px;}
._1_c00486{width:6.861600px;}
._a_c00486{width:7.977600px;}
._7_c00486{width:9.230400px;}
._15_c00486{width:10.629600px;}
._8_c00486{width:11.973600px;}
._10_c00486{width:14.140800px;}
._11_c00486{width:15.422400px;}
._f_c00486{width:17.107200px;}
._12_c00486{width:18.784800px;}
._d_c00486{width:21.009600px;}
._e_c00486{width:22.831200px;}
._c_c00486{width:24.141600px;}
._b_c00486{width:28.742400px;}
.fc0_c00486{color:rgb(0,0,0);}
.fs4_c00486{font-size:40.000002px;}
.fs2_c00486{font-size:48.000000px;}
.fs0_c00486{font-size:54.000000px;}
.fs3_c00486{font-size:60.000000px;}
.fs1_c00486{font-size:72.000000px;}
.y0_c00486{bottom:0.000000px;}
.y2_c00486{bottom:12.000000px;}
.ye_c00486{bottom:67.500000px;}
.y10_c00486{bottom:132.000000px;}
.yf_c00486{bottom:159.750000px;}
.yc_c00486{bottom:217.500000px;}
.yb_c00486{bottom:244.500000px;}
.ya_c00486{bottom:271.500000px;}
.y9_c00486{bottom:298.500000px;}
.y8_c00486{bottom:325.500000px;}
.y7_c00486{bottom:352.500000px;}
.y6_c00486{bottom:379.500000px;}
.y5_c00486{bottom:406.500000px;}
.y4_c00486{bottom:433.500000px;}
.y3_c00486{bottom:460.500000px;}
.y1_c00486{bottom:501.000000px;}
.yd_c00486{bottom:1194.000000px;}
.h6_c00486{height:35.781252px;}
.h2_c00486{height:42.292969px;}
.h4_c00486{height:51.257812px;}
.h7_c00486{height:53.671875px;}
.h5_c00486{height:56.074219px;}
.h3_c00486{height:57.258075px;}
.h1_c00486{height:612.000000px;}
.h0_c00486{height:1263.000000px;}
.w1_c00486{width:678.200700px;}
.w0_c00486{width:892.500000px;}
.x0_c00486{left:0.000000px;}
.x1_c00486{left:150.000000px;}
.x2_c00486{left:209.739600px;}
.x3_c00486{left:418.483650px;}
.x4_c00486{left:803.693550px;}
@media print{
.v3_c00486{vertical-align:-29.333333pt;}
.v2_c00486{vertical-align:-20.521067pt;}
.v0_c00486{vertical-align:0.000000pt;}
.v1_c00486{vertical-align:20.521067pt;}
.ls3_c00486{letter-spacing:0.000000pt;}
.ls0_c00486{letter-spacing:0.010667pt;}
.ls2_c00486{letter-spacing:0.019200pt;}
.ls1_c00486{letter-spacing:3.555555pt;}
.ws0_c00486{word-spacing:-11.733333pt;}
.ws1_c00486{word-spacing:0.000000pt;}
._13_c00486{margin-left:-9.408000pt;}
._14_c00486{margin-left:-6.230400pt;}
._9_c00486{margin-left:-3.692800pt;}
._0_c00486{margin-left:-2.566400pt;}
._3_c00486{margin-left:-1.593600pt;}
._5_c00486{width:1.030400pt;}
._6_c00486{width:2.368000pt;}
._2_c00486{width:3.590400pt;}
._4_c00486{width:5.081600pt;}
._1_c00486{width:6.099200pt;}
._a_c00486{width:7.091200pt;}
._7_c00486{width:8.204800pt;}
._15_c00486{width:9.448533pt;}
._8_c00486{width:10.643200pt;}
._10_c00486{width:12.569600pt;}
._11_c00486{width:13.708800pt;}
._f_c00486{width:15.206400pt;}
._12_c00486{width:16.697600pt;}
._d_c00486{width:18.675200pt;}
._e_c00486{width:20.294400pt;}
._c_c00486{width:21.459200pt;}
._b_c00486{width:25.548800pt;}
.fs4_c00486{font-size:35.555557pt;}
.fs2_c00486{font-size:42.666667pt;}
.fs0_c00486{font-size:48.000000pt;}
.fs3_c00486{font-size:53.333333pt;}
.fs1_c00486{font-size:64.000000pt;}
.y0_c00486{bottom:0.000000pt;}
.y2_c00486{bottom:10.666667pt;}
.ye_c00486{bottom:60.000000pt;}
.y10_c00486{bottom:117.333333pt;}
.yf_c00486{bottom:142.000000pt;}
.yc_c00486{bottom:193.333333pt;}
.yb_c00486{bottom:217.333333pt;}
.ya_c00486{bottom:241.333333pt;}
.y9_c00486{bottom:265.333333pt;}
.y8_c00486{bottom:289.333333pt;}
.y7_c00486{bottom:313.333333pt;}
.y6_c00486{bottom:337.333333pt;}
.y5_c00486{bottom:361.333333pt;}
.y4_c00486{bottom:385.333333pt;}
.y3_c00486{bottom:409.333333pt;}
.y1_c00486{bottom:445.333333pt;}
.yd_c00486{bottom:1061.333333pt;}
.h6_c00486{height:31.805557pt;}
.h2_c00486{height:37.593750pt;}
.h4_c00486{height:45.562500pt;}
.h7_c00486{height:47.708333pt;}
.h5_c00486{height:49.843750pt;}
.h3_c00486{height:50.896067pt;}
.h1_c00486{height:544.000000pt;}
.h0_c00486{height:1122.666667pt;}
.w1_c00486{width:602.845067pt;}
.w0_c00486{width:793.333333pt;}
.x0_c00486{left:0.000000pt;}
.x1_c00486{left:133.333333pt;}
.x2_c00486{left:186.435200pt;}
.x3_c00486{left:371.985467pt;}
.x4_c00486{left:714.394267pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6ca7e8bf3822c2b23434f65f.woff2')format("woff");}.ff1_c00487{font-family:ff1_c00487;line-height:0.934082;font-style:normal;font-weight:normal;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_62b8ba02fa1e6e23bb8094cf.woff2')format("woff");}.ff2_c00487{font-family:ff2_c00487;line-height:0.756836;font-style:normal;font-weight:normal;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_c6d36417a7d469a25d1e654e.woff2')format("woff");}.ff3_c00487{font-family:ff3_c00487;line-height:1.155762;font-style:normal;font-weight:normal;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_cf9a373772e545a73f509eb3.woff2')format("woff");}.ff4_c00487{font-family:ff4_c00487;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00487;src:url('chunks/assets/font_052492c36ef64db36b80e575.woff2')format("woff");}.ff5_c00487{font-family:ff5_c00487;line-height:0.696777;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00487{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00487{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3_c00487{vertical-align:-33.000000px;}
.v2_c00487{vertical-align:-23.086200px;}
.v0_c00487{vertical-align:0.000000px;}
.v1_c00487{vertical-align:23.086200px;}
.ls2_c00487{letter-spacing:-0.014400px;}
.ls1_c00487{letter-spacing:-0.009600px;}
.ls0_c00487{letter-spacing:0.000000px;}
.ls3_c00487{letter-spacing:0.012000px;}
.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;}
}
.ws1_c00487{word-spacing:-13.190400px;}
.ws2_c00487{word-spacing:-10.000001px;}
.ws3_c00487{word-spacing:-2.000002px;}
.ws0_c00487{word-spacing:-1.851000px;}
.ws4_c00487{word-spacing:0.000000px;}
._12_c00487{margin-left:-6.256800px;}
._b_c00487{margin-left:-5.068800px;}
._a_c00487{margin-left:-3.909600px;}
._4_c00487{margin-left:-2.541600px;}
._3_c00487{margin-left:-1.058400px;}
._c_c00487{width:1.022400px;}
._1_c00487{width:2.102400px;}
._16_c00487{width:3.146400px;}
._7_c00487{width:4.147200px;}
._9_c00487{width:5.392800px;}
._8_c00487{width:6.393600px;}
._17_c00487{width:7.394400px;}
._2_c00487{width:8.438400px;}
._0_c00487{width:10.461600px;}
._6_c00487{width:11.527200px;}
._5_c00487{width:12.636000px;}
._d_c00487{width:13.867200px;}
._e_c00487{width:15.688800px;}
._11_c00487{width:16.912800px;}
._13_c00487{width:17.935200px;}
._10_c00487{width:21.204000px;}
._15_c00487{width:22.608000px;}
._f_c00487{width:24.019200px;}
._14_c00487{width:26.344800px;}
.fc0_c00487{color:rgb(0,0,0);}
.fs3_c00487{font-size:40.000002px;}
.fs1_c00487{font-size:48.000000px;}
.fs2_c00487{font-size:60.000000px;}
.fs0_c00487{font-size:72.000000px;}
.y0_c00487{bottom:0.000000px;}
.y1e_c00487{bottom:67.500000px;}
.y23_c00487{bottom:140.250000px;}
.y22_c00487{bottom:181.500000px;}
.y21_c00487{bottom:209.250000px;}
.y20_c00487{bottom:250.500000px;}
.y1f_c00487{bottom:278.250000px;}
.y1c_c00487{bottom:345.000000px;}
.y1b_c00487{bottom:372.000000px;}
.y1a_c00487{bottom:399.000000px;}
.y19_c00487{bottom:426.000000px;}
.y18_c00487{bottom:453.000000px;}
.y17_c00487{bottom:480.000000px;}
.y16_c00487{bottom:507.000000px;}
.y15_c00487{bottom:534.000000px;}
.y14_c00487{bottom:561.000000px;}
.y13_c00487{bottom:588.000000px;}
.y12_c00487{bottom:615.000000px;}
.y11_c00487{bottom:663.000000px;}
.y10_c00487{bottom:690.000000px;}
.yf_c00487{bottom:717.000000px;}
.ye_c00487{bottom:744.000000px;}
.yd_c00487{bottom:771.000000px;}
.yc_c00487{bottom:798.000000px;}
.yb_c00487{bottom:825.000000px;}
.ya_c00487{bottom:852.000000px;}
.y9_c00487{bottom:879.000000px;}
.y8_c00487{bottom:906.000000px;}
.y7_c00487{bottom:933.000000px;}
.y6_c00487{bottom:960.000000px;}
.y5_c00487{bottom:987.000000px;}
.y4_c00487{bottom:1014.000000px;}
.y3_c00487{bottom:1041.000000px;}
.y2_c00487{bottom:1068.000000px;}
.y1_c00487{bottom:1095.000000px;}
.y1d_c00487{bottom:1194.000000px;}
.h5_c00487{height:35.781252px;}
.h4_c00487{height:44.208984px;}
.h2_c00487{height:51.257812px;}
.h6_c00487{height:53.671875px;}
.h3_c00487{height:56.074219px;}
.h1_c00487{height:57.258075px;}
.h0_c00487{height:1263.000000px;}
.w0_c00487{width:892.500000px;}
.x0_c00487{left:0.000000px;}
.x1_c00487{left:63.779520px;}
@media print{
.v3_c00487{vertical-align:-29.333333pt;}
.v2_c00487{vertical-align:-20.521067pt;}
.v0_c00487{vertical-align:0.000000pt;}
.v1_c00487{vertical-align:20.521067pt;}
.ls2_c00487{letter-spacing:-0.012800pt;}
.ls1_c00487{letter-spacing:-0.008533pt;}
.ls0_c00487{letter-spacing:0.000000pt;}
.ls3_c00487{letter-spacing:0.010667pt;}
.ws1_c00487{word-spacing:-11.724800pt;}
.ws2_c00487{word-spacing:-8.888889pt;}
.ws3_c00487{word-spacing:-1.777780pt;}
.ws0_c00487{word-spacing:-1.645333pt;}
.ws4_c00487{word-spacing:0.000000pt;}
._12_c00487{margin-left:-5.561600pt;}
._b_c00487{margin-left:-4.505600pt;}
._a_c00487{margin-left:-3.475200pt;}
._4_c00487{margin-left:-2.259200pt;}
._3_c00487{margin-left:-0.940800pt;}
._c_c00487{width:0.908800pt;}
._1_c00487{width:1.868800pt;}
._16_c00487{width:2.796800pt;}
._7_c00487{width:3.686400pt;}
._9_c00487{width:4.793600pt;}
._8_c00487{width:5.683200pt;}
._17_c00487{width:6.572800pt;}
._2_c00487{width:7.500800pt;}
._0_c00487{width:9.299200pt;}
._6_c00487{width:10.246400pt;}
._5_c00487{width:11.232000pt;}
._d_c00487{width:12.326400pt;}
._e_c00487{width:13.945600pt;}
._11_c00487{width:15.033600pt;}
._13_c00487{width:15.942400pt;}
._10_c00487{width:18.848000pt;}
._15_c00487{width:20.096000pt;}
._f_c00487{width:21.350400pt;}
._14_c00487{width:23.417600pt;}
.fs3_c00487{font-size:35.555557pt;}
.fs1_c00487{font-size:42.666667pt;}
.fs2_c00487{font-size:53.333333pt;}
.fs0_c00487{font-size:64.000000pt;}
.y0_c00487{bottom:0.000000pt;}
.y1e_c00487{bottom:60.000000pt;}
.y23_c00487{bottom:124.666667pt;}
.y22_c00487{bottom:161.333333pt;}
.y21_c00487{bottom:186.000000pt;}
.y20_c00487{bottom:222.666667pt;}
.y1f_c00487{bottom:247.333333pt;}
.y1c_c00487{bottom:306.666667pt;}
.y1b_c00487{bottom:330.666667pt;}
.y1a_c00487{bottom:354.666667pt;}
.y19_c00487{bottom:378.666667pt;}
.y18_c00487{bottom:402.666667pt;}
.y17_c00487{bottom:426.666667pt;}
.y16_c00487{bottom:450.666667pt;}
.y15_c00487{bottom:474.666667pt;}
.y14_c00487{bottom:498.666667pt;}
.y13_c00487{bottom:522.666667pt;}
.y12_c00487{bottom:546.666667pt;}
.y11_c00487{bottom:589.333333pt;}
.y10_c00487{bottom:613.333333pt;}
.yf_c00487{bottom:637.333333pt;}
.ye_c00487{bottom:661.333333pt;}
.yd_c00487{bottom:685.333333pt;}
.yc_c00487{bottom:709.333333pt;}
.yb_c00487{bottom:733.333333pt;}
.ya_c00487{bottom:757.333333pt;}
.y9_c00487{bottom:781.333333pt;}
.y8_c00487{bottom:805.333333pt;}
.y7_c00487{bottom:829.333333pt;}
.y6_c00487{bottom:853.333333pt;}
.y5_c00487{bottom:877.333333pt;}
.y4_c00487{bottom:901.333333pt;}
.y3_c00487{bottom:925.333333pt;}
.y2_c00487{bottom:949.333333pt;}
.y1_c00487{bottom:973.333333pt;}
.y1d_c00487{bottom:1061.333333pt;}
.h5_c00487{height:31.805557pt;}
.h4_c00487{height:39.296875pt;}
.h2_c00487{height:45.562500pt;}
.h6_c00487{height:47.708333pt;}
.h3_c00487{height:49.843750pt;}
.h1_c00487{height:50.896067pt;}
.h0_c00487{height:1122.666667pt;}
.w0_c00487{width:793.333333pt;}
.x0_c00487{left:0.000000pt;}
.x1_c00487{left:56.692907pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8a1dcd2d0de9518da57ad6b8.woff2')format("woff");}.ff1_c00488{font-family:ff1_c00488;line-height:0.987793;font-style:normal;font-weight:normal;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_49ec19de3c1b409a7342e355.woff2')format("woff");}.ff2_c00488{font-family:ff2_c00488;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00488{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00488{vertical-align:0.000000px;}
.ls1_c00488{letter-spacing:0.000000px;}
.ls0_c00488{letter-spacing:0.012000px;}
.ls2_c00488{letter-spacing:0.021600px;}
.sc__c00488{text-shadow:none;}
.sc0_c00488{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00488{-webkit-text-stroke:0px transparent;}
.sc0_c00488{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00488{word-spacing:0.000000px;}
._0_c00488{margin-left:-3.426000px;}
.fc0_c00488{color:rgb(0,0,0);}
.fs0_c00488{font-size:54.000000px;}
.fs1_c00488{font-size:60.000000px;}
.y0_c00488{bottom:0.000000px;}
.y2_c00488{bottom:12.000000px;}
.y5_c00488{bottom:67.500000px;}
.y3_c00488{bottom:136.500000px;}
.y1_c00488{bottom:736.500000px;}
.y4_c00488{bottom:1194.000000px;}
.h2_c00488{height:42.292969px;}
.h4_c00488{height:56.074219px;}
.h1_c00488{height:376.500000px;}
.h3_c00488{height:571.500000px;}
.h0_c00488{height:1263.000000px;}
.w1_c00488{width:678.200850px;}
.w0_c00488{width:892.500000px;}
.x0_c00488{left:0.000000px;}
.x1_c00488{left:150.000000px;}
.x2_c00488{left:169.648350px;}
.x3_c00488{left:246.624000px;}
.x4_c00488{left:418.483650px;}
.x5_c00488{left:803.693550px;}
@media print{
.v0_c00488{vertical-align:0.000000pt;}
.ls1_c00488{letter-spacing:0.000000pt;}
.ls0_c00488{letter-spacing:0.010667pt;}
.ls2_c00488{letter-spacing:0.019200pt;}
.ws0_c00488{word-spacing:0.000000pt;}
._0_c00488{margin-left:-3.045333pt;}
.fs0_c00488{font-size:48.000000pt;}
.fs1_c00488{font-size:53.333333pt;}
.y0_c00488{bottom:0.000000pt;}
.y2_c00488{bottom:10.666667pt;}
.y5_c00488{bottom:60.000000pt;}
.y3_c00488{bottom:121.333333pt;}
.y1_c00488{bottom:654.666667pt;}
.y4_c00488{bottom:1061.333333pt;}
.h2_c00488{height:37.593750pt;}
.h4_c00488{height:49.843750pt;}
.h1_c00488{height:334.666667pt;}
.h3_c00488{height:508.000000pt;}
.h0_c00488{height:1122.666667pt;}
.w1_c00488{width:602.845200pt;}
.w0_c00488{width:793.333333pt;}
.x0_c00488{left:0.000000pt;}
.x1_c00488{left:133.333333pt;}
.x2_c00488{left:150.798533pt;}
.x3_c00488{left:219.221333pt;}
.x4_c00488{left:371.985467pt;}
.x5_c00488{left:714.394267pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fc4188b05d0699e17409cfe4.woff2')format("woff");}.ff1_c00489{font-family:ff1_c00489;line-height:0.933105;font-style:normal;font-weight:normal;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_51edb4cfc6aabbbdbbf35f2f.woff2')format("woff");}.ff2_c00489{font-family:ff2_c00489;line-height:0.975586;font-style:normal;font-weight:normal;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_2f96f121fb2bc2102bb6c24f.woff2')format("woff");}.ff3_c00489{font-family:ff3_c00489;line-height:0.756836;font-style:normal;font-weight:normal;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_be65edd9e2e27fa9464db203.woff2')format("woff");}.ff4_c00489{font-family:ff4_c00489;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00489;src:url('chunks/assets/font_0f1017fdfeb15e40d3e8641a.woff2')format("woff");}.ff5_c00489{font-family:ff5_c00489;line-height:0.894531;font-style:normal;font-weight: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_c00489;src:url('chunks/assets/font_54c19c2ec23012302ab1fc88.woff2')format("woff");}.ff6_c00489{font-family:ff6_c00489;line-height:0.695801;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00489{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00489{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00489{vertical-align:-33.000000px;}
.v0_c00489{vertical-align:0.000000px;}
.v1_c00489{vertical-align:23.086200px;}
.ls3_c00489{letter-spacing:-0.009600px;}
.ls0_c00489{letter-spacing:0.000000px;}
.ls1_c00489{letter-spacing:0.007200px;}
.ls4_c00489{letter-spacing:0.012000px;}
.ls2_c00489{letter-spacing:0.021600px;}
.sc__c00489{text-shadow:none;}
.sc0_c00489{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00489{-webkit-text-stroke:0px transparent;}
.sc0_c00489{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00489{word-spacing:-13.190400px;}
.ws1_c00489{word-spacing:-10.000001px;}
.ws2_c00489{word-spacing:0.000000px;}
._13_c00489{margin-left:-5.923242px;}
._0_c00489{margin-left:-4.622400px;}
._a_c00489{margin-left:-2.988000px;}
._8_c00489{margin-left:-1.576800px;}
._1_c00489{width:1.324800px;}
._5_c00489{width:2.772000px;}
._b_c00489{width:3.902400px;}
._3_c00489{width:4.903200px;}
._d_c00489{width:6.652800px;}
._c_c00489{width:7.819200px;}
._4_c00489{width:9.612000px;}
._6_c00489{width:11.743200px;}
._2_c00489{width:13.248000px;}
._7_c00489{width:14.508000px;}
._9_c00489{width:16.099200px;}
._f_c00489{width:17.654400px;}
._11_c00489{width:18.770400px;}
._10_c00489{width:21.060000px;}
._e_c00489{width:22.147200px;}
._12_c00489{width:24.537600px;}
.fc0_c00489{color:rgb(0,0,0);}
.fs4_c00489{font-size:40.000002px;}
.fs2_c00489{font-size:48.000000px;}
.fs1_c00489{font-size:54.000000px;}
.fs3_c00489{font-size:60.000000px;}
.fs0_c00489{font-size:72.000000px;}
.y0_c00489{bottom:0.000000px;}
.y7_c00489{bottom:12.000000px;}
.y11_c00489{bottom:67.500000px;}
.y12_c00489{bottom:140.250000px;}
.yf_c00489{bottom:193.500000px;}
.ye_c00489{bottom:220.500000px;}
.yd_c00489{bottom:247.500000px;}
.yc_c00489{bottom:295.500000px;}
.yb_c00489{bottom:322.500000px;}
.ya_c00489{bottom:349.500000px;}
.y9_c00489{bottom:376.500000px;}
.y8_c00489{bottom:403.500000px;}
.y6_c00489{bottom:444.000000px;}
.y5_c00489{bottom:987.000000px;}
.y4_c00489{bottom:1014.000000px;}
.y3_c00489{bottom:1041.000000px;}
.y2_c00489{bottom:1068.000000px;}
.y1_c00489{bottom:1095.000000px;}
.y10_c00489{bottom:1194.000000px;}
.h7_c00489{height:27.070314px;}
.h3_c00489{height:41.633789px;}
.h6_c00489{height:44.208984px;}
.h1_c00489{height:51.187500px;}
.h5_c00489{height:56.074219px;}
.h4_c00489{height:57.211200px;}
.h2_c00489{height:511.500000px;}
.h0_c00489{height:1263.000000px;}
.w1_c00489{width:678.200850px;}
.w0_c00489{width:892.500000px;}
.x0_c00489{left:0.000000px;}
.x1_c00489{left:63.779520px;}
.x2_c00489{left:252.734700px;}
@media print{
.v2_c00489{vertical-align:-29.333333pt;}
.v0_c00489{vertical-align:0.000000pt;}
.v1_c00489{vertical-align:20.521067pt;}
.ls3_c00489{letter-spacing:-0.008533pt;}
.ls0_c00489{letter-spacing:0.000000pt;}
.ls1_c00489{letter-spacing:0.006400pt;}
.ls4_c00489{letter-spacing:0.010667pt;}
.ls2_c00489{letter-spacing:0.019200pt;}
.ws0_c00489{word-spacing:-11.724800pt;}
.ws1_c00489{word-spacing:-8.888889pt;}
.ws2_c00489{word-spacing:0.000000pt;}
._13_c00489{margin-left:-5.265104pt;}
._0_c00489{margin-left:-4.108800pt;}
._a_c00489{margin-left:-2.656000pt;}
._8_c00489{margin-left:-1.401600pt;}
._1_c00489{width:1.177600pt;}
._5_c00489{width:2.464000pt;}
._b_c00489{width:3.468800pt;}
._3_c00489{width:4.358400pt;}
._d_c00489{width:5.913600pt;}
._c_c00489{width:6.950400pt;}
._4_c00489{width:8.544000pt;}
._6_c00489{width:10.438400pt;}
._2_c00489{width:11.776000pt;}
._7_c00489{width:12.896000pt;}
._9_c00489{width:14.310400pt;}
._f_c00489{width:15.692800pt;}
._11_c00489{width:16.684800pt;}
._10_c00489{width:18.720000pt;}
._e_c00489{width:19.686400pt;}
._12_c00489{width:21.811200pt;}
.fs4_c00489{font-size:35.555557pt;}
.fs2_c00489{font-size:42.666667pt;}
.fs1_c00489{font-size:48.000000pt;}
.fs3_c00489{font-size:53.333333pt;}
.fs0_c00489{font-size:64.000000pt;}
.y0_c00489{bottom:0.000000pt;}
.y7_c00489{bottom:10.666667pt;}
.y11_c00489{bottom:60.000000pt;}
.y12_c00489{bottom:124.666667pt;}
.yf_c00489{bottom:172.000000pt;}
.ye_c00489{bottom:196.000000pt;}
.yd_c00489{bottom:220.000000pt;}
.yc_c00489{bottom:262.666667pt;}
.yb_c00489{bottom:286.666667pt;}
.ya_c00489{bottom:310.666667pt;}
.y9_c00489{bottom:334.666667pt;}
.y8_c00489{bottom:358.666667pt;}
.y6_c00489{bottom:394.666667pt;}
.y5_c00489{bottom:877.333333pt;}
.y4_c00489{bottom:901.333333pt;}
.y3_c00489{bottom:925.333333pt;}
.y2_c00489{bottom:949.333333pt;}
.y1_c00489{bottom:973.333333pt;}
.y10_c00489{bottom:1061.333333pt;}
.h7_c00489{height:24.062501pt;}
.h3_c00489{height:37.007812pt;}
.h6_c00489{height:39.296875pt;}
.h1_c00489{height:45.500000pt;}
.h5_c00489{height:49.843750pt;}
.h4_c00489{height:50.854400pt;}
.h2_c00489{height:454.666667pt;}
.h0_c00489{height:1122.666667pt;}
.w1_c00489{width:602.845200pt;}
.w0_c00489{width:793.333333pt;}
.x0_c00489{left:0.000000pt;}
.x1_c00489{left:56.692907pt;}
.x2_c00489{left:224.653067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_61434ba8c4e66d337f378314.woff2')format("woff");}.ff1_c00490{font-family:ff1_c00490;line-height:0.934082;font-style:normal;font-weight:normal;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_ec2f2967a8440304b3353ed8.woff2')format("woff");}.ff2_c00490{font-family:ff2_c00490;line-height:0.795410;font-style:normal;font-weight:normal;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_8bd5c56d904cce8c93ab974b.woff2')format("woff");}.ff3_c00490{font-family:ff3_c00490;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00490{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00490{vertical-align:0.000000px;}
.ls2_c00490{letter-spacing:0.000000px;}
.ls1_c00490{letter-spacing:0.012000px;}
.ls0_c00490{letter-spacing:0.021600px;}
.sc__c00490{text-shadow:none;}
.sc0_c00490{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00490{-webkit-text-stroke:0px transparent;}
.sc0_c00490{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00490{word-spacing:0.000000px;}
._12_c00490{margin-left:-9.676800px;}
._f_c00490{margin-left:-6.494400px;}
._15_c00490{margin-left:-4.708800px;}
._3_c00490{margin-left:-3.686400px;}
._0_c00490{margin-left:-2.188800px;}
._e_c00490{margin-left:-1.051200px;}
._4_c00490{width:1.101600px;}
._1_c00490{width:2.570400px;}
._2_c00490{width:4.075200px;}
._5_c00490{width:5.205600px;}
._8_c00490{width:7.502400px;}
._6_c00490{width:8.625600px;}
._7_c00490{width:10.872000px;}
._9_c00490{width:12.348000px;}
._10_c00490{width:14.385600px;}
._d_c00490{width:22.003200px;}
._a_c00490{width:24.408000px;}
._c_c00490{width:26.467200px;}
._b_c00490{width:28.245600px;}
._16_c00490{width:29.973600px;}
._13_c00490{width:31.896000px;}
._11_c00490{width:34.056000px;}
._14_c00490{width:35.215200px;}
.fc1_c00490{color:transparent;}
.fc0_c00490{color:rgb(0,0,0);}
.fs1_c00490{font-size:54.000000px;}
.fs2_c00490{font-size:60.000000px;}
.fs0_c00490{font-size:72.000000px;}
.y0_c00490{bottom:0.000000px;}
.y5_c00490{bottom:12.000000px;}
.y11_c00490{bottom:67.500000px;}
.yf_c00490{bottom:216.000000px;}
.ye_c00490{bottom:243.000000px;}
.yd_c00490{bottom:270.000000px;}
.yc_c00490{bottom:297.000000px;}
.yb_c00490{bottom:324.000000px;}
.ya_c00490{bottom:351.000000px;}
.y9_c00490{bottom:378.000000px;}
.y8_c00490{bottom:405.000000px;}
.y7_c00490{bottom:453.000000px;}
.y6_c00490{bottom:480.000000px;}
.y4_c00490{bottom:525.000000px;}
.y3_c00490{bottom:1041.000000px;}
.y2_c00490{bottom:1068.000000px;}
.y1_c00490{bottom:1095.000000px;}
.y10_c00490{bottom:1194.000000px;}
.h3_c00490{height:42.292969px;}
.h1_c00490{height:51.257812px;}
.h4_c00490{height:56.074219px;}
.h2_c00490{height:484.500000px;}
.h0_c00490{height:1263.000000px;}
.w1_c00490{width:678.200700px;}
.w0_c00490{width:892.500000px;}
.x0_c00490{left:0.000000px;}
.x1_c00490{left:150.519750px;}
.x2_c00490{left:306.658800px;}
.x3_c00490{left:418.483650px;}
.x4_c00490{left:803.693550px;}
@media print{
.v0_c00490{vertical-align:0.000000pt;}
.ls2_c00490{letter-spacing:0.000000pt;}
.ls1_c00490{letter-spacing:0.010667pt;}
.ls0_c00490{letter-spacing:0.019200pt;}
.ws0_c00490{word-spacing:0.000000pt;}
._12_c00490{margin-left:-8.601600pt;}
._f_c00490{margin-left:-5.772800pt;}
._15_c00490{margin-left:-4.185600pt;}
._3_c00490{margin-left:-3.276800pt;}
._0_c00490{margin-left:-1.945600pt;}
._e_c00490{margin-left:-0.934400pt;}
._4_c00490{width:0.979200pt;}
._1_c00490{width:2.284800pt;}
._2_c00490{width:3.622400pt;}
._5_c00490{width:4.627200pt;}
._8_c00490{width:6.668800pt;}
._6_c00490{width:7.667200pt;}
._7_c00490{width:9.664000pt;}
._9_c00490{width:10.976000pt;}
._10_c00490{width:12.787200pt;}
._d_c00490{width:19.558400pt;}
._a_c00490{width:21.696000pt;}
._c_c00490{width:23.526400pt;}
._b_c00490{width:25.107200pt;}
._16_c00490{width:26.643200pt;}
._13_c00490{width:28.352000pt;}
._11_c00490{width:30.272000pt;}
._14_c00490{width:31.302400pt;}
.fs1_c00490{font-size:48.000000pt;}
.fs2_c00490{font-size:53.333333pt;}
.fs0_c00490{font-size:64.000000pt;}
.y0_c00490{bottom:0.000000pt;}
.y5_c00490{bottom:10.666667pt;}
.y11_c00490{bottom:60.000000pt;}
.yf_c00490{bottom:192.000000pt;}
.ye_c00490{bottom:216.000000pt;}
.yd_c00490{bottom:240.000000pt;}
.yc_c00490{bottom:264.000000pt;}
.yb_c00490{bottom:288.000000pt;}
.ya_c00490{bottom:312.000000pt;}
.y9_c00490{bottom:336.000000pt;}
.y8_c00490{bottom:360.000000pt;}
.y7_c00490{bottom:402.666667pt;}
.y6_c00490{bottom:426.666667pt;}
.y4_c00490{bottom:466.666667pt;}
.y3_c00490{bottom:925.333333pt;}
.y2_c00490{bottom:949.333333pt;}
.y1_c00490{bottom:973.333333pt;}
.y10_c00490{bottom:1061.333333pt;}
.h3_c00490{height:37.593750pt;}
.h1_c00490{height:45.562500pt;}
.h4_c00490{height:49.843750pt;}
.h2_c00490{height:430.666667pt;}
.h0_c00490{height:1122.666667pt;}
.w1_c00490{width:602.845067pt;}
.w0_c00490{width:793.333333pt;}
.x0_c00490{left:0.000000pt;}
.x1_c00490{left:133.795333pt;}
.x2_c00490{left:272.585600pt;}
.x3_c00490{left:371.985467pt;}
.x4_c00490{left:714.394267pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b2dd2738aed551a600582743.woff2')format("woff");}.ff1_c00491{font-family:ff1_c00491;line-height:0.934082;font-style:normal;font-weight:normal;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_5caafaafa5528c11222bef28.woff2')format("woff");}.ff2_c00491{font-family:ff2_c00491;line-height:0.756836;font-style:normal;font-weight:normal;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_730ce33b6aacf7f6dd35c6ee.woff2')format("woff");}.ff3_c00491{font-family:ff3_c00491;line-height:1.155762;font-style:normal;font-weight:normal;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_cdfc1c9627b335e70f1987fe.woff2')format("woff");}.ff4_c00491{font-family:ff4_c00491;line-height:0.905762;font-style:normal;font-weight:normal;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_892c774febda34abafa211f3.woff2')format("woff");}.ff5_c00491{font-family:ff5_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;}
.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);}
.v3_c00491{vertical-align:-33.000000px;}
.v2_c00491{vertical-align:-23.086200px;}
.v0_c00491{vertical-align:0.000000px;}
.v1_c00491{vertical-align:23.086200px;}
.ls1_c00491{letter-spacing:-0.009600px;}
.ls0_c00491{letter-spacing:0.000000px;}
.ls2_c00491{letter-spacing:0.012000px;}
.sc__c00491{text-shadow:none;}
.sc0_c00491{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00491{-webkit-text-stroke:0px transparent;}
.sc0_c00491{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00491{word-spacing:-13.190400px;}
.ws2_c00491{word-spacing:-10.000001px;}
.ws1_c00491{word-spacing:-2.000002px;}
.ws3_c00491{word-spacing:0.000000px;}
._10_c00491{margin-left:-10.379640px;}
._1a_c00491{margin-left:-5.433840px;}
._1_c00491{margin-left:-3.895200px;}
._b_c00491{margin-left:-2.628000px;}
._3_c00491{margin-left:-1.255800px;}
._8_c00491{width:1.012680px;}
._2_c00491{width:2.097720px;}
._6_c00491{width:3.139200px;}
._9_c00491{width:4.320000px;}
._e_c00491{width:5.480040px;}
._c_c00491{width:6.984000px;}
._a_c00491{width:8.565840px;}
._d_c00491{width:10.421040px;}
._f_c00491{width:11.455200px;}
._7_c00491{width:12.499200px;}
._4_c00491{width:13.540680px;}
._14_c00491{width:14.544000px;}
._0_c00491{width:15.609600px;}
._5_c00491{width:16.879800px;}
._13_c00491{width:18.562800px;}
._1c_c00491{width:20.199120px;}
._11_c00491{width:21.391200px;}
._12_c00491{width:23.078520px;}
._1b_c00491{width:24.463080px;}
._17_c00491{width:26.746800px;}
._19_c00491{width:27.776280px;}
._15_c00491{width:28.874520px;}
._18_c00491{width:29.894400px;}
._16_c00491{width:32.443200px;}
.fc0_c00491{color:rgb(0,0,0);}
.fs3_c00491{font-size:40.000002px;}
.fs1_c00491{font-size:48.000000px;}
.fs2_c00491{font-size:60.000000px;}
.fs0_c00491{font-size:72.000000px;}
.y0_c00491{bottom:0.000000px;}
.y19_c00491{bottom:67.500000px;}
.y22_c00491{bottom:140.250000px;}
.y21_c00491{bottom:181.500000px;}
.y20_c00491{bottom:201.000000px;}
.y1f_c00491{bottom:228.750000px;}
.y1e_c00491{bottom:270.000000px;}
.y1d_c00491{bottom:289.500000px;}
.y1c_c00491{bottom:309.000000px;}
.y1b_c00491{bottom:328.500000px;}
.y1a_c00491{bottom:356.250000px;}
.y17_c00491{bottom:459.000000px;}
.y16_c00491{bottom:486.000000px;}
.y15_c00491{bottom:513.000000px;}
.y14_c00491{bottom:540.000000px;}
.y13_c00491{bottom:567.000000px;}
.y12_c00491{bottom:594.000000px;}
.y11_c00491{bottom:642.000000px;}
.y10_c00491{bottom:669.000000px;}
.yf_c00491{bottom:696.000000px;}
.ye_c00491{bottom:723.000000px;}
.yd_c00491{bottom:750.000000px;}
.yc_c00491{bottom:777.000000px;}
.yb_c00491{bottom:804.000000px;}
.ya_c00491{bottom:831.000000px;}
.y9_c00491{bottom:879.000000px;}
.y8_c00491{bottom:906.000000px;}
.y7_c00491{bottom:933.000000px;}
.y6_c00491{bottom:960.000000px;}
.y5_c00491{bottom:987.000000px;}
.y4_c00491{bottom:1014.000000px;}
.y3_c00491{bottom:1041.000000px;}
.y2_c00491{bottom:1068.000000px;}
.y1_c00491{bottom:1095.000000px;}
.y18_c00491{bottom:1194.000000px;}
.h5_c00491{height:27.480470px;}
.h6_c00491{height:41.220703px;}
.h4_c00491{height:44.208984px;}
.h2_c00491{height:51.257812px;}
.h3_c00491{height:56.074219px;}
.h1_c00491{height:57.258075px;}
.h0_c00491{height:1263.000000px;}
.w0_c00491{width:892.500000px;}
.x0_c00491{left:0.000000px;}
.x1_c00491{left:63.779520px;}
@media print{
.v3_c00491{vertical-align:-29.333333pt;}
.v2_c00491{vertical-align:-20.521067pt;}
.v0_c00491{vertical-align:0.000000pt;}
.v1_c00491{vertical-align:20.521067pt;}
.ls1_c00491{letter-spacing:-0.008533pt;}
.ls0_c00491{letter-spacing:0.000000pt;}
.ls2_c00491{letter-spacing:0.010667pt;}
.ws0_c00491{word-spacing:-11.724800pt;}
.ws2_c00491{word-spacing:-8.888889pt;}
.ws1_c00491{word-spacing:-1.777780pt;}
.ws3_c00491{word-spacing:0.000000pt;}
._10_c00491{margin-left:-9.226347pt;}
._1a_c00491{margin-left:-4.830080pt;}
._1_c00491{margin-left:-3.462400pt;}
._b_c00491{margin-left:-2.336000pt;}
._3_c00491{margin-left:-1.116267pt;}
._8_c00491{width:0.900160pt;}
._2_c00491{width:1.864640pt;}
._6_c00491{width:2.790400pt;}
._9_c00491{width:3.840000pt;}
._e_c00491{width:4.871147pt;}
._c_c00491{width:6.208000pt;}
._a_c00491{width:7.614080pt;}
._d_c00491{width:9.263147pt;}
._f_c00491{width:10.182400pt;}
._7_c00491{width:11.110400pt;}
._4_c00491{width:12.036160pt;}
._14_c00491{width:12.928000pt;}
._0_c00491{width:13.875200pt;}
._5_c00491{width:15.004267pt;}
._13_c00491{width:16.500267pt;}
._1c_c00491{width:17.954773pt;}
._11_c00491{width:19.014400pt;}
._12_c00491{width:20.514240pt;}
._1b_c00491{width:21.744960pt;}
._17_c00491{width:23.774933pt;}
._19_c00491{width:24.690027pt;}
._15_c00491{width:25.666240pt;}
._18_c00491{width:26.572800pt;}
._16_c00491{width:28.838400pt;}
.fs3_c00491{font-size:35.555557pt;}
.fs1_c00491{font-size:42.666667pt;}
.fs2_c00491{font-size:53.333333pt;}
.fs0_c00491{font-size:64.000000pt;}
.y0_c00491{bottom:0.000000pt;}
.y19_c00491{bottom:60.000000pt;}
.y22_c00491{bottom:124.666667pt;}
.y21_c00491{bottom:161.333333pt;}
.y20_c00491{bottom:178.666667pt;}
.y1f_c00491{bottom:203.333333pt;}
.y1e_c00491{bottom:240.000000pt;}
.y1d_c00491{bottom:257.333333pt;}
.y1c_c00491{bottom:274.666667pt;}
.y1b_c00491{bottom:292.000000pt;}
.y1a_c00491{bottom:316.666667pt;}
.y17_c00491{bottom:408.000000pt;}
.y16_c00491{bottom:432.000000pt;}
.y15_c00491{bottom:456.000000pt;}
.y14_c00491{bottom:480.000000pt;}
.y13_c00491{bottom:504.000000pt;}
.y12_c00491{bottom:528.000000pt;}
.y11_c00491{bottom:570.666667pt;}
.y10_c00491{bottom:594.666667pt;}
.yf_c00491{bottom:618.666667pt;}
.ye_c00491{bottom:642.666667pt;}
.yd_c00491{bottom:666.666667pt;}
.yc_c00491{bottom:690.666667pt;}
.yb_c00491{bottom:714.666667pt;}
.ya_c00491{bottom:738.666667pt;}
.y9_c00491{bottom:781.333333pt;}
.y8_c00491{bottom:805.333333pt;}
.y7_c00491{bottom:829.333333pt;}
.y6_c00491{bottom:853.333333pt;}
.y5_c00491{bottom:877.333333pt;}
.y4_c00491{bottom:901.333333pt;}
.y3_c00491{bottom:925.333333pt;}
.y2_c00491{bottom:949.333333pt;}
.y1_c00491{bottom:973.333333pt;}
.y18_c00491{bottom:1061.333333pt;}
.h5_c00491{height:24.427085pt;}
.h6_c00491{height:36.640625pt;}
.h4_c00491{height:39.296875pt;}
.h2_c00491{height:45.562500pt;}
.h3_c00491{height:49.843750pt;}
.h1_c00491{height:50.896067pt;}
.h0_c00491{height:1122.666667pt;}
.w0_c00491{width:793.333333pt;}
.x0_c00491{left:0.000000pt;}
.x1_c00491{left:56.692907pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5070ecc2c0cbbdf8ec0e4ac1.woff2')format("woff");}.ff1_c00492{font-family:ff1_c00492;line-height:0.934082;font-style:normal;font-weight:normal;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_c91680d910cf5a87dbba2a88.woff2')format("woff");}.ff2_c00492{font-family:ff2_c00492;line-height:0.932129;font-style:normal;font-weight:normal;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_aea1ed0a2acb3fe145ae2f45.woff2')format("woff");}.ff3_c00492{font-family:ff3_c00492;line-height:1.010254;font-style:normal;font-weight:normal;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_fc838399ed056cef96b96d18.woff2')format("woff");}.ff4_c00492{font-family:ff4_c00492;line-height:0.986816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00492;src:url('chunks/assets/font_8e0be396a525686dc70e456f.woff2')format("woff");}.ff5_c00492{font-family:ff5_c00492;line-height:1.155762;font-style: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;}
.ls2_c00492{letter-spacing:-0.007200px;}
.ls3_c00492{letter-spacing:-0.006000px;}
.ls1_c00492{letter-spacing:0.000000px;}
.ls0_c00492{letter-spacing:0.012000px;}
.sc__c00492{text-shadow:none;}
.sc0_c00492{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00492{-webkit-text-stroke:0px transparent;}
.sc0_c00492{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00492{word-spacing:-0.072000px;}
.ws1_c00492{word-spacing:0.000000px;}
._f_c00492{margin-left:-6.624000px;}
._18_c00492{margin-left:-5.133600px;}
._1_c00492{margin-left:-3.960000px;}
._8_c00492{margin-left:-2.736000px;}
._3_c00492{margin-left:-1.440000px;}
._5_c00492{width:1.008000px;}
._6_c00492{width:2.016000px;}
._0_c00492{width:3.384000px;}
._7_c00492{width:4.392000px;}
._4_c00492{width:5.400000px;}
._9_c00492{width:6.696000px;}
._2_c00492{width:8.496000px;}
._10_c00492{width:10.166400px;}
._12_c00492{width:11.484000px;}
._19_c00492{width:12.492000px;}
._15_c00492{width:13.543200px;}
._13_c00492{width:14.558400px;}
._11_c00492{width:15.991200px;}
._d_c00492{width:20.232000px;}
._e_c00492{width:21.268800px;}
._b_c00492{width:22.708800px;}
._c_c00492{width:24.012000px;}
._a_c00492{width:25.214400px;}
._16_c00492{width:26.899200px;}
._17_c00492{width:28.346400px;}
._14_c00492{width:30.513600px;}
.fc0_c00492{color:rgb(0,0,0);}
.fs1_c00492{font-size:60.000000px;}
.fs0_c00492{font-size:72.000000px;}
.y0_c00492{bottom:0.000000px;}
.y1b_c00492{bottom:67.500000px;}
.y19_c00492{bottom:484.500000px;}
.y18_c00492{bottom:505.500000px;}
.y17_c00492{bottom:526.500000px;}
.y16_c00492{bottom:547.500000px;}
.y15_c00492{bottom:568.500000px;}
.y14_c00492{bottom:589.500000px;}
.y13_c00492{bottom:610.500000px;}
.y12_c00492{bottom:631.500000px;}
.y11_c00492{bottom:652.500000px;}
.y10_c00492{bottom:673.500000px;}
.yf_c00492{bottom:694.500000px;}
.ye_c00492{bottom:715.500000px;}
.yd_c00492{bottom:736.500000px;}
.yc_c00492{bottom:757.500000px;}
.yb_c00492{bottom:778.500000px;}
.ya_c00492{bottom:799.500000px;}
.y9_c00492{bottom:820.500000px;}
.y8_c00492{bottom:841.500000px;}
.y7_c00492{bottom:862.500000px;}
.y6_c00492{bottom:906.000000px;}
.y5_c00492{bottom:927.000000px;}
.y4_c00492{bottom:972.000000px;}
.y3_c00492{bottom:999.000000px;}
.y2_c00492{bottom:1047.000000px;}
.y1_c00492{bottom:1095.000000px;}
.y1a_c00492{bottom:1194.000000px;}
.h2_c00492{height:42.714844px;}
.h1_c00492{height:51.257812px;}
.h3_c00492{height:52.417969px;}
.h4_c00492{height:56.074219px;}
.h0_c00492{height:1263.000000px;}
.w0_c00492{width:892.500000px;}
.x0_c00492{left:0.000000px;}
.x1_c00492{left:150.519750px;}
.x2_c00492{left:416.782800px;}
.x3_c00492{left:801.992850px;}
@media print{
.v0_c00492{vertical-align:0.000000pt;}
.ls2_c00492{letter-spacing:-0.006400pt;}
.ls3_c00492{letter-spacing:-0.005333pt;}
.ls1_c00492{letter-spacing:0.000000pt;}
.ls0_c00492{letter-spacing:0.010667pt;}
.ws0_c00492{word-spacing:-0.064000pt;}
.ws1_c00492{word-spacing:0.000000pt;}
._f_c00492{margin-left:-5.888000pt;}
._18_c00492{margin-left:-4.563200pt;}
._1_c00492{margin-left:-3.520000pt;}
._8_c00492{margin-left:-2.432000pt;}
._3_c00492{margin-left:-1.280000pt;}
._5_c00492{width:0.896000pt;}
._6_c00492{width:1.792000pt;}
._0_c00492{width:3.008000pt;}
._7_c00492{width:3.904000pt;}
._4_c00492{width:4.800000pt;}
._9_c00492{width:5.952000pt;}
._2_c00492{width:7.552000pt;}
._10_c00492{width:9.036800pt;}
._12_c00492{width:10.208000pt;}
._19_c00492{width:11.104000pt;}
._15_c00492{width:12.038400pt;}
._13_c00492{width:12.940800pt;}
._11_c00492{width:14.214400pt;}
._d_c00492{width:17.984000pt;}
._e_c00492{width:18.905600pt;}
._b_c00492{width:20.185600pt;}
._c_c00492{width:21.344000pt;}
._a_c00492{width:22.412800pt;}
._16_c00492{width:23.910400pt;}
._17_c00492{width:25.196800pt;}
._14_c00492{width:27.123200pt;}
.fs1_c00492{font-size:53.333333pt;}
.fs0_c00492{font-size:64.000000pt;}
.y0_c00492{bottom:0.000000pt;}
.y1b_c00492{bottom:60.000000pt;}
.y19_c00492{bottom:430.666667pt;}
.y18_c00492{bottom:449.333333pt;}
.y17_c00492{bottom:468.000000pt;}
.y16_c00492{bottom:486.666667pt;}
.y15_c00492{bottom:505.333333pt;}
.y14_c00492{bottom:524.000000pt;}
.y13_c00492{bottom:542.666667pt;}
.y12_c00492{bottom:561.333333pt;}
.y11_c00492{bottom:580.000000pt;}
.y10_c00492{bottom:598.666667pt;}
.yf_c00492{bottom:617.333333pt;}
.ye_c00492{bottom:636.000000pt;}
.yd_c00492{bottom:654.666667pt;}
.yc_c00492{bottom:673.333333pt;}
.yb_c00492{bottom:692.000000pt;}
.ya_c00492{bottom:710.666667pt;}
.y9_c00492{bottom:729.333333pt;}
.y8_c00492{bottom:748.000000pt;}
.y7_c00492{bottom:766.666667pt;}
.y6_c00492{bottom:805.333333pt;}
.y5_c00492{bottom:824.000000pt;}
.y4_c00492{bottom:864.000000pt;}
.y3_c00492{bottom:888.000000pt;}
.y2_c00492{bottom:930.666667pt;}
.y1_c00492{bottom:973.333333pt;}
.y1a_c00492{bottom:1061.333333pt;}
.h2_c00492{height:37.968750pt;}
.h1_c00492{height:45.562500pt;}
.h3_c00492{height:46.593750pt;}
.h4_c00492{height:49.843750pt;}
.h0_c00492{height:1122.666667pt;}
.w0_c00492{width:793.333333pt;}
.x0_c00492{left:0.000000pt;}
.x1_c00492{left:133.795333pt;}
.x2_c00492{left:370.473600pt;}
.x3_c00492{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4823af18ac10f87f3b5065bf.woff2')format("woff");}.ff1_c00493{font-family:ff1_c00493;line-height:0.884766;font-style:normal;font-weight:normal;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_efe9f3f52339dc44d26942ea.woff2')format("woff");}.ff2_c00493{font-family:ff2_c00493;line-height:1.163086;font-style:normal;font-weight:normal;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_735ff2e5ef85ecd909888a44.woff2')format("woff");}.ff3_c00493{font-family:ff3_c00493;line-height:0.756348;font-style:normal;font-weight:normal;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_0815b606ce6317afe80bf3be.woff2')format("woff");}.ff4_c00493{font-family:ff4_c00493;line-height:1.155762;font-style:normal;font-weight:normal;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_7c6f62ee072635a39d2d812f.woff2')format("woff");}.ff5_c00493{font-family:ff5_c00493;line-height:1.101074;font-style:normal;font-weight: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_c00493;src:url('chunks/assets/font_1985aae193fcc7bab95ae01f.woff2')format("woff");}.ff6_c00493{font-family:ff6_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;}
.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);}
.v3_c00493{vertical-align:-33.000000px;}
.v2_c00493{vertical-align:-23.086200px;}
.v0_c00493{vertical-align:0.000000px;}
.v1_c00493{vertical-align:23.086200px;}
.ls6_c00493{letter-spacing:0.000000px;}
.ls7_c00493{letter-spacing:0.007200px;}
.ls0_c00493{letter-spacing:0.007800px;}
.ls8_c00493{letter-spacing:0.012000px;}
.ls2_c00493{letter-spacing:3.024600px;}
.ls5_c00493{letter-spacing:3.999999px;}
.ls4_c00493{letter-spacing:10.992600px;}
.ls3_c00493{letter-spacing:19.050000px;}
.ls1_c00493{letter-spacing:27.551760px;}
.sc__c00493{text-shadow:none;}
.sc0_c00493{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00493{-webkit-text-stroke:0px transparent;}
.sc0_c00493{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00493{word-spacing:-10.000001px;}
.ws1_c00493{word-spacing:0.000000px;}
._f_c00493{margin-left:-10.584000px;}
._19_c00493{margin-left:-7.409040px;}
._11_c00493{margin-left:-5.270400px;}
._c_c00493{margin-left:-4.204800px;}
._4_c00493{margin-left:-2.534400px;}
._a_c00493{margin-left:-1.526400px;}
._2_c00493{width:1.116000px;}
._0_c00493{width:2.433600px;}
._1_c00493{width:4.046400px;}
._3_c00493{width:5.320800px;}
._6_c00493{width:6.494400px;}
._12_c00493{width:7.804800px;}
._5_c00493{width:8.949600px;}
._b_c00493{width:10.036800px;}
._7_c00493{width:11.462400px;}
._9_c00493{width:13.370400px;}
._10_c00493{width:14.673600px;}
._8_c00493{width:16.646400px;}
._e_c00493{width:18.072000px;}
._d_c00493{width:21.952800px;}
._18_c00493{width:23.155200px;}
._14_c00493{width:24.760800px;}
._17_c00493{width:26.085600px;}
._15_c00493{width:27.180000px;}
._16_c00493{width:28.706400px;}
._13_c00493{width:31.420800px;}
.fc1_c00493{color:rgb(255,255,255);}
.fc0_c00493{color:rgb(0,0,0);}
.fs5_c00493{font-size:40.000002px;}
.fs2_c00493{font-size:48.000000px;}
.fs4_c00493{font-size:60.000000px;}
.fs1_c00493{font-size:72.000000px;}
.fs0_c00493{font-size:78.000000px;}
.fs3_c00493{font-size:96.000000px;}
.y0_c00493{bottom:0.000000px;}
.y16_c00493{bottom:67.500000px;}
.y1f_c00493{bottom:140.250000px;}
.y1e_c00493{bottom:181.500000px;}
.y1d_c00493{bottom:209.250000px;}
.y1c_c00493{bottom:250.500000px;}
.y1b_c00493{bottom:278.250000px;}
.y1a_c00493{bottom:319.500000px;}
.y19_c00493{bottom:339.000000px;}
.y18_c00493{bottom:358.500000px;}
.y17_c00493{bottom:386.250000px;}
.y13_c00493{bottom:465.000000px;}
.y12_c00493{bottom:492.000000px;}
.y11_c00493{bottom:519.000000px;}
.y10_c00493{bottom:546.000000px;}
.yf_c00493{bottom:573.000000px;}
.ye_c00493{bottom:600.000000px;}
.yd_c00493{bottom:627.000000px;}
.yc_c00493{bottom:654.000000px;}
.yb_c00493{bottom:702.000000px;}
.ya_c00493{bottom:729.000000px;}
.y9_c00493{bottom:756.000000px;}
.y8_c00493{bottom:783.000000px;}
.y7_c00493{bottom:810.000000px;}
.y6_c00493{bottom:837.000000px;}
.y5_c00493{bottom:864.000000px;}
.y4_c00493{bottom:891.000000px;}
.y3_c00493{bottom:918.000000px;}
.y2_c00493{bottom:945.000000px;}
.y1_c00493{bottom:991.500000px;}
.y14_c00493{bottom:1066.500000px;}
.y15_c00493{bottom:1194.000000px;}
.h7_c00493{height:35.292971px;}
.h6_c00493{height:44.208984px;}
.h8_c00493{height:52.939453px;}
.h1_c00493{height:55.224609px;}
.h5_c00493{height:56.074219px;}
.h2_c00493{height:67.746094px;}
.h3_c00493{height:68.250262px;}
.h4_c00493{height:90.328125px;}
.h0_c00493{height:1263.000000px;}
.w0_c00493{width:892.500000px;}
.x0_c00493{left:0.000000px;}
.x1_c00493{left:65.480310px;}
.x2_c00493{left:94.798875px;}
@media print{
.v3_c00493{vertical-align:-29.333333pt;}
.v2_c00493{vertical-align:-20.521067pt;}
.v0_c00493{vertical-align:0.000000pt;}
.v1_c00493{vertical-align:20.521067pt;}
.ls6_c00493{letter-spacing:0.000000pt;}
.ls7_c00493{letter-spacing:0.006400pt;}
.ls0_c00493{letter-spacing:0.006933pt;}
.ls8_c00493{letter-spacing:0.010667pt;}
.ls2_c00493{letter-spacing:2.688533pt;}
.ls5_c00493{letter-spacing:3.555555pt;}
.ls4_c00493{letter-spacing:9.771200pt;}
.ls3_c00493{letter-spacing:16.933333pt;}
.ls1_c00493{letter-spacing:24.490453pt;}
.ws0_c00493{word-spacing:-8.888889pt;}
.ws1_c00493{word-spacing:0.000000pt;}
._f_c00493{margin-left:-9.408000pt;}
._19_c00493{margin-left:-6.585813pt;}
._11_c00493{margin-left:-4.684800pt;}
._c_c00493{margin-left:-3.737600pt;}
._4_c00493{margin-left:-2.252800pt;}
._a_c00493{margin-left:-1.356800pt;}
._2_c00493{width:0.992000pt;}
._0_c00493{width:2.163200pt;}
._1_c00493{width:3.596800pt;}
._3_c00493{width:4.729600pt;}
._6_c00493{width:5.772800pt;}
._12_c00493{width:6.937600pt;}
._5_c00493{width:7.955200pt;}
._b_c00493{width:8.921600pt;}
._7_c00493{width:10.188800pt;}
._9_c00493{width:11.884800pt;}
._10_c00493{width:13.043200pt;}
._8_c00493{width:14.796800pt;}
._e_c00493{width:16.064000pt;}
._d_c00493{width:19.513600pt;}
._18_c00493{width:20.582400pt;}
._14_c00493{width:22.009600pt;}
._17_c00493{width:23.187200pt;}
._15_c00493{width:24.160000pt;}
._16_c00493{width:25.516800pt;}
._13_c00493{width:27.929600pt;}
.fs5_c00493{font-size:35.555557pt;}
.fs2_c00493{font-size:42.666667pt;}
.fs4_c00493{font-size:53.333333pt;}
.fs1_c00493{font-size:64.000000pt;}
.fs0_c00493{font-size:69.333333pt;}
.fs3_c00493{font-size:85.333333pt;}
.y0_c00493{bottom:0.000000pt;}
.y16_c00493{bottom:60.000000pt;}
.y1f_c00493{bottom:124.666667pt;}
.y1e_c00493{bottom:161.333333pt;}
.y1d_c00493{bottom:186.000000pt;}
.y1c_c00493{bottom:222.666667pt;}
.y1b_c00493{bottom:247.333333pt;}
.y1a_c00493{bottom:284.000000pt;}
.y19_c00493{bottom:301.333333pt;}
.y18_c00493{bottom:318.666667pt;}
.y17_c00493{bottom:343.333333pt;}
.y13_c00493{bottom:413.333333pt;}
.y12_c00493{bottom:437.333333pt;}
.y11_c00493{bottom:461.333333pt;}
.y10_c00493{bottom:485.333333pt;}
.yf_c00493{bottom:509.333333pt;}
.ye_c00493{bottom:533.333333pt;}
.yd_c00493{bottom:557.333333pt;}
.yc_c00493{bottom:581.333333pt;}
.yb_c00493{bottom:624.000000pt;}
.ya_c00493{bottom:648.000000pt;}
.y9_c00493{bottom:672.000000pt;}
.y8_c00493{bottom:696.000000pt;}
.y7_c00493{bottom:720.000000pt;}
.y6_c00493{bottom:744.000000pt;}
.y5_c00493{bottom:768.000000pt;}
.y4_c00493{bottom:792.000000pt;}
.y3_c00493{bottom:816.000000pt;}
.y2_c00493{bottom:840.000000pt;}
.y1_c00493{bottom:881.333333pt;}
.y14_c00493{bottom:948.000000pt;}
.y15_c00493{bottom:1061.333333pt;}
.h7_c00493{height:31.371529pt;}
.h6_c00493{height:39.296875pt;}
.h8_c00493{height:47.057292pt;}
.h1_c00493{height:49.088542pt;}
.h5_c00493{height:49.843750pt;}
.h2_c00493{height:60.218750pt;}
.h3_c00493{height:60.666900pt;}
.h4_c00493{height:80.291667pt;}
.h0_c00493{height:1122.666667pt;}
.w0_c00493{width:793.333333pt;}
.x0_c00493{left:0.000000pt;}
.x1_c00493{left:58.204720pt;}
.x2_c00493{left:84.265667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d33a366a42d9423f06d66a86.woff2')format("woff");}.ff1_c00494{font-family:ff1_c00494;line-height:0.934082;font-style:normal;font-weight:normal;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_9a8c2565ebadf3717df8f4e5.woff2')format("woff");}.ff2_c00494{font-family:ff2_c00494;line-height:1.155762;font-style:normal;font-weight:normal;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_646cacfb23df55c342233caf.woff2')format("woff");}.ff3_c00494{font-family:ff3_c00494;line-height:1.101074;font-style:normal;font-weight:normal;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_5b5c1d50ccda65033132caa7.woff2')format("woff");}.ff4_c00494{font-family:ff4_c00494;line-height:0.889648;font-style: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);}
.v3_c00494{vertical-align:-33.000000px;}
.v2_c00494{vertical-align:-23.086200px;}
.v0_c00494{vertical-align:0.000000px;}
.v1_c00494{vertical-align:23.086200px;}
.ls8_c00494{letter-spacing:-0.007200px;}
.ls7_c00494{letter-spacing:0.000000px;}
.ls5_c00494{letter-spacing:0.012000px;}
.ls1_c00494{letter-spacing:0.014400px;}
.ls0_c00494{letter-spacing:1.555200px;}
.ls4_c00494{letter-spacing:1.887600px;}
.ls2_c00494{letter-spacing:3.488400px;}
.ls6_c00494{letter-spacing:3.999999px;}
.ls3_c00494{letter-spacing:7.758000px;}
.sc__c00494{text-shadow:none;}
.sc0_c00494{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00494{-webkit-text-stroke:0px transparent;}
.sc0_c00494{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00494{word-spacing:-13.200000px;}
.ws1_c00494{word-spacing:-10.000001px;}
.ws2_c00494{word-spacing:0.000000px;}
._7_c00494{margin-left:-10.584000px;}
._17_c00494{margin-left:-9.280800px;}
._16_c00494{margin-left:-7.938600px;}
._18_c00494{margin-left:-5.700201px;}
._5_c00494{margin-left:-4.140000px;}
._2_c00494{margin-left:-2.865600px;}
._f_c00494{margin-left:-1.310400px;}
._b_c00494{width:1.188000px;}
._8_c00494{width:2.448000px;}
._0_c00494{width:3.909600px;}
._a_c00494{width:5.752800px;}
._c_c00494{width:7.027200px;}
._d_c00494{width:8.193600px;}
._10_c00494{width:9.943200px;}
._e_c00494{width:11.959200px;}
._12_c00494{width:13.276800px;}
._11_c00494{width:15.062400px;}
._15_c00494{width:16.956000px;}
._13_c00494{width:18.331200px;}
._14_c00494{width:21.304800px;}
._1_c00494{width:23.385600px;}
._9_c00494{width:24.904800px;}
._4_c00494{width:27.331200px;}
._3_c00494{width:30.139200px;}
._6_c00494{width:31.428000px;}
.fc0_c00494{color:rgb(0,0,0);}
.fs3_c00494{font-size:40.000002px;}
.fs1_c00494{font-size:48.000000px;}
.fs2_c00494{font-size:60.000000px;}
.fs0_c00494{font-size:72.000000px;}
.y0_c00494{bottom:0.000000px;}
.y16_c00494{bottom:67.500000px;}
.y1c_c00494{bottom:140.250000px;}
.y1b_c00494{bottom:181.500000px;}
.y1a_c00494{bottom:209.250000px;}
.y19_c00494{bottom:258.750000px;}
.y18_c00494{bottom:308.250000px;}
.y17_c00494{bottom:357.750000px;}
.y14_c00494{bottom:498.000000px;}
.y13_c00494{bottom:525.000000px;}
.y12_c00494{bottom:552.000000px;}
.y11_c00494{bottom:579.000000px;}
.y10_c00494{bottom:627.000000px;}
.yf_c00494{bottom:654.000000px;}
.ye_c00494{bottom:681.000000px;}
.yd_c00494{bottom:708.000000px;}
.yc_c00494{bottom:756.000000px;}
.yb_c00494{bottom:783.000000px;}
.ya_c00494{bottom:810.000000px;}
.y9_c00494{bottom:837.000000px;}
.y8_c00494{bottom:864.000000px;}
.y7_c00494{bottom:912.000000px;}
.y6_c00494{bottom:939.000000px;}
.y5_c00494{bottom:966.000000px;}
.y4_c00494{bottom:993.000000px;}
.y3_c00494{bottom:1020.000000px;}
.y2_c00494{bottom:1068.000000px;}
.y1_c00494{bottom:1095.000000px;}
.y15_c00494{bottom:1194.000000px;}
.h4_c00494{height:35.292971px;}
.h1_c00494{height:51.257812px;}
.h5_c00494{height:52.939453px;}
.h3_c00494{height:56.074219px;}
.h2_c00494{height:57.258075px;}
.h0_c00494{height:1263.000000px;}
.w0_c00494{width:892.500000px;}
.x0_c00494{left:0.000000px;}
.x1_c00494{left:150.519750px;}
.x2_c00494{left:416.782800px;}
.x3_c00494{left:801.992850px;}
@media print{
.v3_c00494{vertical-align:-29.333333pt;}
.v2_c00494{vertical-align:-20.521067pt;}
.v0_c00494{vertical-align:0.000000pt;}
.v1_c00494{vertical-align:20.521067pt;}
.ls8_c00494{letter-spacing:-0.006400pt;}
.ls7_c00494{letter-spacing:0.000000pt;}
.ls5_c00494{letter-spacing:0.010667pt;}
.ls1_c00494{letter-spacing:0.012800pt;}
.ls0_c00494{letter-spacing:1.382400pt;}
.ls4_c00494{letter-spacing:1.677867pt;}
.ls2_c00494{letter-spacing:3.100800pt;}
.ls6_c00494{letter-spacing:3.555555pt;}
.ls3_c00494{letter-spacing:6.896000pt;}
.ws0_c00494{word-spacing:-11.733333pt;}
.ws1_c00494{word-spacing:-8.888889pt;}
.ws2_c00494{word-spacing:0.000000pt;}
._7_c00494{margin-left:-9.408000pt;}
._17_c00494{margin-left:-8.249600pt;}
._16_c00494{margin-left:-7.056533pt;}
._18_c00494{margin-left:-5.066845pt;}
._5_c00494{margin-left:-3.680000pt;}
._2_c00494{margin-left:-2.547200pt;}
._f_c00494{margin-left:-1.164800pt;}
._b_c00494{width:1.056000pt;}
._8_c00494{width:2.176000pt;}
._0_c00494{width:3.475200pt;}
._a_c00494{width:5.113600pt;}
._c_c00494{width:6.246400pt;}
._d_c00494{width:7.283200pt;}
._10_c00494{width:8.838400pt;}
._e_c00494{width:10.630400pt;}
._12_c00494{width:11.801600pt;}
._11_c00494{width:13.388800pt;}
._15_c00494{width:15.072000pt;}
._13_c00494{width:16.294400pt;}
._14_c00494{width:18.937600pt;}
._1_c00494{width:20.787200pt;}
._9_c00494{width:22.137600pt;}
._4_c00494{width:24.294400pt;}
._3_c00494{width:26.790400pt;}
._6_c00494{width:27.936000pt;}
.fs3_c00494{font-size:35.555557pt;}
.fs1_c00494{font-size:42.666667pt;}
.fs2_c00494{font-size:53.333333pt;}
.fs0_c00494{font-size:64.000000pt;}
.y0_c00494{bottom:0.000000pt;}
.y16_c00494{bottom:60.000000pt;}
.y1c_c00494{bottom:124.666667pt;}
.y1b_c00494{bottom:161.333333pt;}
.y1a_c00494{bottom:186.000000pt;}
.y19_c00494{bottom:230.000000pt;}
.y18_c00494{bottom:274.000000pt;}
.y17_c00494{bottom:318.000000pt;}
.y14_c00494{bottom:442.666667pt;}
.y13_c00494{bottom:466.666667pt;}
.y12_c00494{bottom:490.666667pt;}
.y11_c00494{bottom:514.666667pt;}
.y10_c00494{bottom:557.333333pt;}
.yf_c00494{bottom:581.333333pt;}
.ye_c00494{bottom:605.333333pt;}
.yd_c00494{bottom:629.333333pt;}
.yc_c00494{bottom:672.000000pt;}
.yb_c00494{bottom:696.000000pt;}
.ya_c00494{bottom:720.000000pt;}
.y9_c00494{bottom:744.000000pt;}
.y8_c00494{bottom:768.000000pt;}
.y7_c00494{bottom:810.666667pt;}
.y6_c00494{bottom:834.666667pt;}
.y5_c00494{bottom:858.666667pt;}
.y4_c00494{bottom:882.666667pt;}
.y3_c00494{bottom:906.666667pt;}
.y2_c00494{bottom:949.333333pt;}
.y1_c00494{bottom:973.333333pt;}
.y15_c00494{bottom:1061.333333pt;}
.h4_c00494{height:31.371529pt;}
.h1_c00494{height:45.562500pt;}
.h5_c00494{height:47.057292pt;}
.h3_c00494{height:49.843750pt;}
.h2_c00494{height:50.896067pt;}
.h0_c00494{height:1122.666667pt;}
.w0_c00494{width:793.333333pt;}
.x0_c00494{left:0.000000pt;}
.x1_c00494{left:133.795333pt;}
.x2_c00494{left:370.473600pt;}
.x3_c00494{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8885cd94e777d36162f66f9c.woff2')format("woff");}.ff1_c00495{font-family:ff1_c00495;line-height:0.939453;font-style:normal;font-weight:normal;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_a2c49436934c2b133dd4f84a.woff2')format("woff");}.ff2_c00495{font-family:ff2_c00495;line-height:0.934082;font-style:normal;font-weight:normal;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_2547f6c2c2318bb2b22d3420.woff2')format("woff");}.ff3_c00495{font-family:ff3_c00495;line-height:0.987793;font-style:normal;font-weight:normal;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_68ccc2e44539ecee1f434317.woff2')format("woff");}.ff4_c00495{font-family:ff4_c00495;line-height:0.756348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00495;src:url('chunks/assets/font_793fed5de44ce45c67f476cd.woff2')format("woff");}.ff5_c00495{font-family:ff5_c00495;line-height:1.155762;font-style: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;}
.ls3_c00495{letter-spacing:0.000000px;}
.ls2_c00495{letter-spacing:0.007200px;}
.ls0_c00495{letter-spacing:0.007800px;}
.ls5_c00495{letter-spacing:0.012000px;}
.ls1_c00495{letter-spacing:0.016200px;}
.ls4_c00495{letter-spacing:0.021600px;}
.sc__c00495{text-shadow:none;}
.sc0_c00495{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00495{-webkit-text-stroke:0px transparent;}
.sc0_c00495{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00495{word-spacing:-19.800000px;}
.ws1_c00495{word-spacing:0.000000px;}
._12_c00495{margin-left:-6.487200px;}
._1_c00495{margin-left:-5.277600px;}
._e_c00495{margin-left:-4.032000px;}
._5_c00495{margin-left:-3.024000px;}
._7_c00495{margin-left:-1.281600px;}
._4_c00495{width:1.908000px;}
._0_c00495{width:3.873600px;}
._14_c00495{width:5.522400px;}
._d_c00495{width:9.360000px;}
._b_c00495{width:11.354400px;}
._c_c00495{width:13.269600px;}
._a_c00495{width:16.293600px;}
._9_c00495{width:18.036000px;}
._8_c00495{width:21.196800px;}
._3_c00495{width:22.766400px;}
._13_c00495{width:24.580800px;}
._6_c00495{width:25.747200px;}
._2_c00495{width:27.100800px;}
._10_c00495{width:28.483200px;}
._f_c00495{width:29.707200px;}
._11_c00495{width:32.407200px;}
.fc0_c00495{color:rgb(0,0,0);}
.fs2_c00495{font-size:54.000000px;}
.fs3_c00495{font-size:60.000000px;}
.fs1_c00495{font-size:72.000000px;}
.fs0_c00495{font-size:78.000000px;}
.y0_c00495{bottom:0.000000px;}
.y11_c00495{bottom:10.500000px;}
.y9_c00495{bottom:12.000000px;}
.y10_c00495{bottom:27.000000px;}
.yf_c00495{bottom:43.500000px;}
.y13_c00495{bottom:67.500000px;}
.yd_c00495{bottom:127.500000px;}
.ye_c00495{bottom:228.000000px;}
.yc_c00495{bottom:408.000000px;}
.yb_c00495{bottom:435.000000px;}
.ya_c00495{bottom:462.000000px;}
.y8_c00495{bottom:507.000000px;}
.y7_c00495{bottom:874.500000px;}
.y6_c00495{bottom:901.500000px;}
.y5_c00495{bottom:928.500000px;}
.y4_c00495{bottom:955.500000px;}
.y3_c00495{bottom:982.500000px;}
.y2_c00495{bottom:1029.000000px;}
.y1_c00495{bottom:1093.500000px;}
.y12_c00495{bottom:1194.000000px;}
.h5_c00495{height:42.292969px;}
.h8_c00495{height:44.208984px;}
.h3_c00495{height:51.257812px;}
.h2_c00495{height:51.785156px;}
.h7_c00495{height:56.074219px;}
.h1_c00495{height:56.100586px;}
.h6_c00495{height:249.000000px;}
.h4_c00495{height:336.000000px;}
.h0_c00495{height:1263.000000px;}
.w1_c00495{width:676.500000px;}
.w0_c00495{width:892.500000px;}
.x0_c00495{left:0.000000px;}
.x5_c00495{left:25.307565px;}
.x4_c00495{left:32.769465px;}
.x1_c00495{left:65.480310px;}
.x2_c00495{left:156.586650px;}
.x6_c00495{left:291.668850px;}
.x3_c00495{left:338.243250px;}
@media print{
.v0_c00495{vertical-align:0.000000pt;}
.ls3_c00495{letter-spacing:0.000000pt;}
.ls2_c00495{letter-spacing:0.006400pt;}
.ls0_c00495{letter-spacing:0.006933pt;}
.ls5_c00495{letter-spacing:0.010667pt;}
.ls1_c00495{letter-spacing:0.014400pt;}
.ls4_c00495{letter-spacing:0.019200pt;}
.ws0_c00495{word-spacing:-17.600000pt;}
.ws1_c00495{word-spacing:0.000000pt;}
._12_c00495{margin-left:-5.766400pt;}
._1_c00495{margin-left:-4.691200pt;}
._e_c00495{margin-left:-3.584000pt;}
._5_c00495{margin-left:-2.688000pt;}
._7_c00495{margin-left:-1.139200pt;}
._4_c00495{width:1.696000pt;}
._0_c00495{width:3.443200pt;}
._14_c00495{width:4.908800pt;}
._d_c00495{width:8.320000pt;}
._b_c00495{width:10.092800pt;}
._c_c00495{width:11.795200pt;}
._a_c00495{width:14.483200pt;}
._9_c00495{width:16.032000pt;}
._8_c00495{width:18.841600pt;}
._3_c00495{width:20.236800pt;}
._13_c00495{width:21.849600pt;}
._6_c00495{width:22.886400pt;}
._2_c00495{width:24.089600pt;}
._10_c00495{width:25.318400pt;}
._f_c00495{width:26.406400pt;}
._11_c00495{width:28.806400pt;}
.fs2_c00495{font-size:48.000000pt;}
.fs3_c00495{font-size:53.333333pt;}
.fs1_c00495{font-size:64.000000pt;}
.fs0_c00495{font-size:69.333333pt;}
.y0_c00495{bottom:0.000000pt;}
.y11_c00495{bottom:9.333333pt;}
.y9_c00495{bottom:10.666667pt;}
.y10_c00495{bottom:24.000000pt;}
.yf_c00495{bottom:38.666667pt;}
.y13_c00495{bottom:60.000000pt;}
.yd_c00495{bottom:113.333333pt;}
.ye_c00495{bottom:202.666667pt;}
.yc_c00495{bottom:362.666667pt;}
.yb_c00495{bottom:386.666667pt;}
.ya_c00495{bottom:410.666667pt;}
.y8_c00495{bottom:450.666667pt;}
.y7_c00495{bottom:777.333333pt;}
.y6_c00495{bottom:801.333333pt;}
.y5_c00495{bottom:825.333333pt;}
.y4_c00495{bottom:849.333333pt;}
.y3_c00495{bottom:873.333333pt;}
.y2_c00495{bottom:914.666667pt;}
.y1_c00495{bottom:972.000000pt;}
.y12_c00495{bottom:1061.333333pt;}
.h5_c00495{height:37.593750pt;}
.h8_c00495{height:39.296875pt;}
.h3_c00495{height:45.562500pt;}
.h2_c00495{height:46.031250pt;}
.h7_c00495{height:49.843750pt;}
.h1_c00495{height:49.867188pt;}
.h6_c00495{height:221.333333pt;}
.h4_c00495{height:298.666667pt;}
.h0_c00495{height:1122.666667pt;}
.w1_c00495{width:601.333333pt;}
.w0_c00495{width:793.333333pt;}
.x0_c00495{left:0.000000pt;}
.x5_c00495{left:22.495613pt;}
.x4_c00495{left:29.128413pt;}
.x1_c00495{left:58.204720pt;}
.x2_c00495{left:139.188133pt;}
.x6_c00495{left:259.261200pt;}
.x3_c00495{left:300.660667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4db47a35f2481db484144c65.woff2')format("woff");}.ff1_c00496{font-family:ff1_c00496;line-height:0.987793;font-style:normal;font-weight:normal;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_430e26e82b96d1253342dbe1.woff2')format("woff");}.ff2_c00496{font-family:ff2_c00496;line-height:0.933105;font-style:normal;font-weight:normal;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_e294ea5e12b518eeb8f6858a.woff2')format("woff");}.ff3_c00496{font-family:ff3_c00496;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00496{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00496{vertical-align:0.000000px;}
.ls2_c00496{letter-spacing:0.000000px;}
.ls0_c00496{letter-spacing:0.012000px;}
.ls1_c00496{letter-spacing:0.021600px;}
.sc__c00496{text-shadow:none;}
.sc0_c00496{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00496{-webkit-text-stroke:0px transparent;}
.sc0_c00496{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00496{word-spacing:0.000000px;}
._9_c00496{margin-left:-4.370400px;}
._1_c00496{margin-left:-2.664000px;}
._7_c00496{margin-left:-1.224000px;}
._3_c00496{width:1.029600px;}
._5_c00496{width:2.822400px;}
._4_c00496{width:4.334400px;}
._0_c00496{width:5.378400px;}
._2_c00496{width:8.035200px;}
._b_c00496{width:9.921600px;}
._c_c00496{width:11.656800px;}
._8_c00496{width:12.888000px;}
._6_c00496{width:14.292000px;}
._a_c00496{width:16.005600px;}
.fc1_c00496{color:transparent;}
.fc0_c00496{color:rgb(0,0,0);}
.fs0_c00496{font-size:54.000000px;}
.fs2_c00496{font-size:60.000000px;}
.fs1_c00496{font-size:72.000000px;}
.y0_c00496{bottom:0.000000px;}
.y4_c00496{bottom:10.500000px;}
.y9_c00496{bottom:12.000000px;}
.y3_c00496{bottom:27.000000px;}
.y2_c00496{bottom:43.500000px;}
.yb_c00496{bottom:67.500000px;}
.y8_c00496{bottom:144.000000px;}
.y7_c00496{bottom:579.000000px;}
.y6_c00496{bottom:606.000000px;}
.y5_c00496{bottom:633.000000px;}
.y1_c00496{bottom:678.000000px;}
.ya_c00496{bottom:1194.000000px;}
.h2_c00496{height:42.292969px;}
.h3_c00496{height:51.187500px;}
.h5_c00496{height:56.074219px;}
.h4_c00496{height:403.500000px;}
.h1_c00496{height:435.000000px;}
.h0_c00496{height:1263.000000px;}
.w1_c00496{width:676.500000px;}
.w0_c00496{width:892.500000px;}
.x0_c00496{left:0.000000px;}
.x2_c00496{left:20.545170px;}
.x3_c00496{left:24.440925px;}
.x4_c00496{left:143.198730px;}
.x1_c00496{left:150.000000px;}
.x5_c00496{left:161.286600px;}
.x6_c00496{left:416.782800px;}
.x7_c00496{left:801.992850px;}
@media print{
.v0_c00496{vertical-align:0.000000pt;}
.ls2_c00496{letter-spacing:0.000000pt;}
.ls0_c00496{letter-spacing:0.010667pt;}
.ls1_c00496{letter-spacing:0.019200pt;}
.ws0_c00496{word-spacing:0.000000pt;}
._9_c00496{margin-left:-3.884800pt;}
._1_c00496{margin-left:-2.368000pt;}
._7_c00496{margin-left:-1.088000pt;}
._3_c00496{width:0.915200pt;}
._5_c00496{width:2.508800pt;}
._4_c00496{width:3.852800pt;}
._0_c00496{width:4.780800pt;}
._2_c00496{width:7.142400pt;}
._b_c00496{width:8.819200pt;}
._c_c00496{width:10.361600pt;}
._8_c00496{width:11.456000pt;}
._6_c00496{width:12.704000pt;}
._a_c00496{width:14.227200pt;}
.fs0_c00496{font-size:48.000000pt;}
.fs2_c00496{font-size:53.333333pt;}
.fs1_c00496{font-size:64.000000pt;}
.y0_c00496{bottom:0.000000pt;}
.y4_c00496{bottom:9.333333pt;}
.y9_c00496{bottom:10.666667pt;}
.y3_c00496{bottom:24.000000pt;}
.y2_c00496{bottom:38.666667pt;}
.yb_c00496{bottom:60.000000pt;}
.y8_c00496{bottom:128.000000pt;}
.y7_c00496{bottom:514.666667pt;}
.y6_c00496{bottom:538.666667pt;}
.y5_c00496{bottom:562.666667pt;}
.y1_c00496{bottom:602.666667pt;}
.ya_c00496{bottom:1061.333333pt;}
.h2_c00496{height:37.593750pt;}
.h3_c00496{height:45.500000pt;}
.h5_c00496{height:49.843750pt;}
.h4_c00496{height:358.666667pt;}
.h1_c00496{height:386.666667pt;}
.h0_c00496{height:1122.666667pt;}
.w1_c00496{width:601.333333pt;}
.w0_c00496{width:793.333333pt;}
.x0_c00496{left:0.000000pt;}
.x2_c00496{left:18.262373pt;}
.x3_c00496{left:21.725267pt;}
.x4_c00496{left:127.287760pt;}
.x1_c00496{left:133.333333pt;}
.x5_c00496{left:143.365867pt;}
.x6_c00496{left:370.473600pt;}
.x7_c00496{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8fc815a63a0ab0bd49117010.woff2')format("woff");}.ff1_c00497{font-family:ff1_c00497;line-height:0.934082;font-style:normal;font-weight:normal;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_86f94b89db45c84e8d88510f.woff2')format("woff");}.ff2_c00497{font-family:ff2_c00497;line-height:0.936035;font-style:normal;font-weight:normal;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_38dec828911cb0c2545342f6.woff2')format("woff");}.ff3_c00497{font-family:ff3_c00497;line-height:0.975586;font-style:normal;font-weight:normal;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_fedea86855083062cbef9c07.woff2')format("woff");}.ff4_c00497{font-family:ff4_c00497;line-height:0.756348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00497;src:url('chunks/assets/font_e58df4584a9285146de50ce8.woff2')format("woff");}.ff5_c00497{font-family:ff5_c00497;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00497{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00497{vertical-align:0.000000px;}
.ls1_c00497{letter-spacing:0.000000px;}
.ls0_c00497{letter-spacing:0.007200px;}
.ls3_c00497{letter-spacing:0.012000px;}
.ls2_c00497{letter-spacing:0.021600px;}
.sc__c00497{text-shadow:none;}
.sc0_c00497{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00497{-webkit-text-stroke:0px transparent;}
.sc0_c00497{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00497{word-spacing:0.000000px;}
._12_c00497{margin-left:-6.897600px;}
._7_c00497{margin-left:-4.284000px;}
._3_c00497{margin-left:-2.412000px;}
._1_c00497{margin-left:-1.245600px;}
._6_c00497{width:1.612800px;}
._9_c00497{width:2.656800px;}
._10_c00497{width:3.729600px;}
._5_c00497{width:5.241600px;}
._8_c00497{width:7.128000px;}
._a_c00497{width:9.079200px;}
._c_c00497{width:10.735200px;}
._b_c00497{width:12.261600px;}
._d_c00497{width:13.478400px;}
._e_c00497{width:15.040800px;}
._11_c00497{width:16.250400px;}
._f_c00497{width:18.280800px;}
._0_c00497{width:31.680000px;}
._2_c00497{width:33.040800px;}
._4_c00497{width:34.092000px;}
.fc0_c00497{color:rgb(0,0,0);}
.fs1_c00497{font-size:54.000000px;}
.fs2_c00497{font-size:60.000000px;}
.fs0_c00497{font-size:72.000000px;}
.y0_c00497{bottom:0.000000px;}
.yd_c00497{bottom:12.000000px;}
.yf_c00497{bottom:67.500000px;}
.yc_c00497{bottom:144.000000px;}
.yb_c00497{bottom:742.500000px;}
.ya_c00497{bottom:769.500000px;}
.y9_c00497{bottom:796.500000px;}
.y8_c00497{bottom:823.500000px;}
.y7_c00497{bottom:870.000000px;}
.y6_c00497{bottom:939.000000px;}
.y5_c00497{bottom:966.000000px;}
.y4_c00497{bottom:993.000000px;}
.y3_c00497{bottom:1041.000000px;}
.y2_c00497{bottom:1068.000000px;}
.y1_c00497{bottom:1095.000000px;}
.ye_c00497{bottom:1194.000000px;}
.h4_c00497{height:41.633789px;}
.h6_c00497{height:44.208984px;}
.h1_c00497{height:51.257812px;}
.h2_c00497{height:51.539062px;}
.h5_c00497{height:56.074219px;}
.h3_c00497{height:567.000000px;}
.h0_c00497{height:1263.000000px;}
.w1_c00497{width:676.500000px;}
.w0_c00497{width:892.500000px;}
.x0_c00497{left:0.000000px;}
.x1_c00497{left:65.480310px;}
.x2_c00497{left:192.709650px;}
@media print{
.v0_c00497{vertical-align:0.000000pt;}
.ls1_c00497{letter-spacing:0.000000pt;}
.ls0_c00497{letter-spacing:0.006400pt;}
.ls3_c00497{letter-spacing:0.010667pt;}
.ls2_c00497{letter-spacing:0.019200pt;}
.ws0_c00497{word-spacing:0.000000pt;}
._12_c00497{margin-left:-6.131200pt;}
._7_c00497{margin-left:-3.808000pt;}
._3_c00497{margin-left:-2.144000pt;}
._1_c00497{margin-left:-1.107200pt;}
._6_c00497{width:1.433600pt;}
._9_c00497{width:2.361600pt;}
._10_c00497{width:3.315200pt;}
._5_c00497{width:4.659200pt;}
._8_c00497{width:6.336000pt;}
._a_c00497{width:8.070400pt;}
._c_c00497{width:9.542400pt;}
._b_c00497{width:10.899200pt;}
._d_c00497{width:11.980800pt;}
._e_c00497{width:13.369600pt;}
._11_c00497{width:14.444800pt;}
._f_c00497{width:16.249600pt;}
._0_c00497{width:28.160000pt;}
._2_c00497{width:29.369600pt;}
._4_c00497{width:30.304000pt;}
.fs1_c00497{font-size:48.000000pt;}
.fs2_c00497{font-size:53.333333pt;}
.fs0_c00497{font-size:64.000000pt;}
.y0_c00497{bottom:0.000000pt;}
.yd_c00497{bottom:10.666667pt;}
.yf_c00497{bottom:60.000000pt;}
.yc_c00497{bottom:128.000000pt;}
.yb_c00497{bottom:660.000000pt;}
.ya_c00497{bottom:684.000000pt;}
.y9_c00497{bottom:708.000000pt;}
.y8_c00497{bottom:732.000000pt;}
.y7_c00497{bottom:773.333333pt;}
.y6_c00497{bottom:834.666667pt;}
.y5_c00497{bottom:858.666667pt;}
.y4_c00497{bottom:882.666667pt;}
.y3_c00497{bottom:925.333333pt;}
.y2_c00497{bottom:949.333333pt;}
.y1_c00497{bottom:973.333333pt;}
.ye_c00497{bottom:1061.333333pt;}
.h4_c00497{height:37.007812pt;}
.h6_c00497{height:39.296875pt;}
.h1_c00497{height:45.562500pt;}
.h2_c00497{height:45.812500pt;}
.h5_c00497{height:49.843750pt;}
.h3_c00497{height:504.000000pt;}
.h0_c00497{height:1122.666667pt;}
.w1_c00497{width:601.333333pt;}
.w0_c00497{width:793.333333pt;}
.x0_c00497{left:0.000000pt;}
.x1_c00497{left:58.204720pt;}
.x2_c00497{left:171.297467pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_74e39ea5d252dcad9c6a5983.woff2')format("woff");}.ff1_c00498{font-family:ff1_c00498;line-height:0.934082;font-style:normal;font-weight:normal;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_b0c57ac9b3fc9e35a02b46a7.woff2')format("woff");}.ff2_c00498{font-family:ff2_c00498;line-height:0.976074;font-style:normal;font-weight:normal;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_b624233f495c76c3eb103c57.woff2')format("woff");}.ff3_c00498{font-family:ff3_c00498;line-height:1.155762;font-style:normal;font-weight:normal;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_9475444c10250e8c5c3f1453.woff2')format("woff");}.ff4_c00498{font-family:ff4_c00498;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00498;src:url('chunks/assets/font_a107b847083d07168f1be2d2.woff2')format("woff");}.ff5_c00498{font-family:ff5_c00498;line-height:0.889648;font-style: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);}
.v3_c00498{vertical-align:-33.000000px;}
.v2_c00498{vertical-align:-23.086200px;}
.v0_c00498{vertical-align:0.000000px;}
.v1_c00498{vertical-align:23.086200px;}
.ls2_c00498{letter-spacing:-0.009600px;}
.ls3_c00498{letter-spacing:-0.007200px;}
.ls1_c00498{letter-spacing:0.000000px;}
.ls0_c00498{letter-spacing:0.012000px;}
.ls4_c00498{letter-spacing:0.021600px;}
.sc__c00498{text-shadow:none;}
.sc0_c00498{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00498{-webkit-text-stroke:0px transparent;}
.sc0_c00498{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00498{word-spacing:-6.337200px;}
.ws1_c00498{word-spacing:-2.000002px;}
.ws2_c00498{word-spacing:0.000000px;}
._f_c00498{margin-left:-10.584000px;}
._7_c00498{margin-left:-5.241600px;}
._4_c00498{margin-left:-4.118400px;}
._1_c00498{margin-left:-2.390400px;}
._3_c00498{margin-left:-1.029600px;}
._2_c00498{width:1.173600px;}
._0_c00498{width:2.455200px;}
._5_c00498{width:4.089600px;}
._6_c00498{width:5.256000px;}
._b_c00498{width:6.328800px;}
._a_c00498{width:7.437600px;}
._8_c00498{width:8.769600px;}
._e_c00498{width:10.065600px;}
._9_c00498{width:11.275200px;}
._14_c00498{width:12.283200px;}
._c_c00498{width:13.428000px;}
._13_c00498{width:14.824800px;}
._d_c00498{width:16.279200px;}
._15_c00498{width:17.690400px;}
._10_c00498{width:18.763200px;}
._16_c00498{width:20.223600px;}
._12_c00498{width:22.075200px;}
._11_c00498{width:23.104800px;}
.fc0_c00498{color:rgb(0,0,0);}
.fs4_c00498{font-size:40.000002px;}
.fs1_c00498{font-size:48.000000px;}
.fs2_c00498{font-size:54.000000px;}
.fs3_c00498{font-size:60.000000px;}
.fs0_c00498{font-size:72.000000px;}
.y0_c00498{bottom:0.000000px;}
.ya_c00498{bottom:12.000000px;}
.y10_c00498{bottom:67.500000px;}
.y12_c00498{bottom:132.000000px;}
.y11_c00498{bottom:159.750000px;}
.ye_c00498{bottom:367.500000px;}
.yd_c00498{bottom:394.500000px;}
.yc_c00498{bottom:421.500000px;}
.yb_c00498{bottom:448.500000px;}
.y9_c00498{bottom:493.500000px;}
.y8_c00498{bottom:885.000000px;}
.y7_c00498{bottom:912.000000px;}
.y6_c00498{bottom:939.000000px;}
.y5_c00498{bottom:966.000000px;}
.y4_c00498{bottom:1014.000000px;}
.y3_c00498{bottom:1041.000000px;}
.y2_c00498{bottom:1068.000000px;}
.y1_c00498{bottom:1095.000000px;}
.yf_c00498{bottom:1194.000000px;}
.h6_c00498{height:35.781252px;}
.h4_c00498{height:42.292969px;}
.h1_c00498{height:51.257812px;}
.h7_c00498{height:53.671875px;}
.h5_c00498{height:56.074219px;}
.h2_c00498{height:57.258075px;}
.h3_c00498{height:360.000000px;}
.h0_c00498{height:1263.000000px;}
.w1_c00498{width:676.500000px;}
.w0_c00498{width:892.500000px;}
.x0_c00498{left:0.000000px;}
.x1_c00498{left:150.519750px;}
.x2_c00498{left:156.514200px;}
.x3_c00498{left:416.782800px;}
.x4_c00498{left:801.992850px;}
@media print{
.v3_c00498{vertical-align:-29.333333pt;}
.v2_c00498{vertical-align:-20.521067pt;}
.v0_c00498{vertical-align:0.000000pt;}
.v1_c00498{vertical-align:20.521067pt;}
.ls2_c00498{letter-spacing:-0.008533pt;}
.ls3_c00498{letter-spacing:-0.006400pt;}
.ls1_c00498{letter-spacing:0.000000pt;}
.ls0_c00498{letter-spacing:0.010667pt;}
.ls4_c00498{letter-spacing:0.019200pt;}
.ws0_c00498{word-spacing:-5.633067pt;}
.ws1_c00498{word-spacing:-1.777780pt;}
.ws2_c00498{word-spacing:0.000000pt;}
._f_c00498{margin-left:-9.408000pt;}
._7_c00498{margin-left:-4.659200pt;}
._4_c00498{margin-left:-3.660800pt;}
._1_c00498{margin-left:-2.124800pt;}
._3_c00498{margin-left:-0.915200pt;}
._2_c00498{width:1.043200pt;}
._0_c00498{width:2.182400pt;}
._5_c00498{width:3.635200pt;}
._6_c00498{width:4.672000pt;}
._b_c00498{width:5.625600pt;}
._a_c00498{width:6.611200pt;}
._8_c00498{width:7.795200pt;}
._e_c00498{width:8.947200pt;}
._9_c00498{width:10.022400pt;}
._14_c00498{width:10.918400pt;}
._c_c00498{width:11.936000pt;}
._13_c00498{width:13.177600pt;}
._d_c00498{width:14.470400pt;}
._15_c00498{width:15.724800pt;}
._10_c00498{width:16.678400pt;}
._16_c00498{width:17.976533pt;}
._12_c00498{width:19.622400pt;}
._11_c00498{width:20.537600pt;}
.fs4_c00498{font-size:35.555557pt;}
.fs1_c00498{font-size:42.666667pt;}
.fs2_c00498{font-size:48.000000pt;}
.fs3_c00498{font-size:53.333333pt;}
.fs0_c00498{font-size:64.000000pt;}
.y0_c00498{bottom:0.000000pt;}
.ya_c00498{bottom:10.666667pt;}
.y10_c00498{bottom:60.000000pt;}
.y12_c00498{bottom:117.333333pt;}
.y11_c00498{bottom:142.000000pt;}
.ye_c00498{bottom:326.666667pt;}
.yd_c00498{bottom:350.666667pt;}
.yc_c00498{bottom:374.666667pt;}
.yb_c00498{bottom:398.666667pt;}
.y9_c00498{bottom:438.666667pt;}
.y8_c00498{bottom:786.666667pt;}
.y7_c00498{bottom:810.666667pt;}
.y6_c00498{bottom:834.666667pt;}
.y5_c00498{bottom:858.666667pt;}
.y4_c00498{bottom:901.333333pt;}
.y3_c00498{bottom:925.333333pt;}
.y2_c00498{bottom:949.333333pt;}
.y1_c00498{bottom:973.333333pt;}
.yf_c00498{bottom:1061.333333pt;}
.h6_c00498{height:31.805557pt;}
.h4_c00498{height:37.593750pt;}
.h1_c00498{height:45.562500pt;}
.h7_c00498{height:47.708333pt;}
.h5_c00498{height:49.843750pt;}
.h2_c00498{height:50.896067pt;}
.h3_c00498{height:320.000000pt;}
.h0_c00498{height:1122.666667pt;}
.w1_c00498{width:601.333333pt;}
.w0_c00498{width:793.333333pt;}
.x0_c00498{left:0.000000pt;}
.x1_c00498{left:133.795333pt;}
.x2_c00498{left:139.123733pt;}
.x3_c00498{left:370.473600pt;}
.x4_c00498{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_515da626dc6716c53e393c58.woff2')format("woff");}.ff1_c00499{font-family:ff1_c00499;line-height:0.934082;font-style:normal;font-weight:normal;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_85c5859e8141262f3f2b1b4b.woff2')format("woff");}.ff2_c00499{font-family:ff2_c00499;line-height:0.932129;font-style:normal;font-weight:normal;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_338983b8942efa60d0faecbc.woff2')format("woff");}.ff3_c00499{font-family:ff3_c00499;line-height:1.010254;font-style:normal;font-weight:normal;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_f105ff213e2c8a4d239cb697.woff2')format("woff");}.ff4_c00499{font-family:ff4_c00499;line-height:0.756348;font-style:normal;font-weight:normal;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_d901d99da18e494591bc1a2c.woff2')format("woff");}.ff5_c00499{font-family:ff5_c00499;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00499{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00499{vertical-align:0.000000px;}
.ls2_c00499{letter-spacing:-0.014400px;}
.ls3_c00499{letter-spacing:-0.012000px;}
.ls4_c00499{letter-spacing:-0.006000px;}
.ls1_c00499{letter-spacing:0.000000px;}
.ls5_c00499{letter-spacing:0.012000px;}
.ls0_c00499{letter-spacing:0.021600px;}
.sc__c00499{text-shadow:none;}
.sc0_c00499{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00499{-webkit-text-stroke:0px transparent;}
.sc0_c00499{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00499{word-spacing:-16.494000px;}
.ws1_c00499{word-spacing:0.000000px;}
._7_c00499{margin-left:-8.596800px;}
._f_c00499{margin-left:-5.838720px;}
._0_c00499{margin-left:-3.960000px;}
._9_c00499{margin-left:-2.676000px;}
._1_c00499{margin-left:-1.296000px;}
._2_c00499{width:1.440000px;}
._5_c00499{width:2.952000px;}
._d_c00499{width:4.290000px;}
._c_c00499{width:5.448000px;}
._b_c00499{width:7.137360px;}
._e_c00499{width:8.382000px;}
._8_c00499{width:10.248000px;}
._1e_c00499{width:11.538240px;}
._a_c00499{width:12.954000px;}
._1c_c00499{width:14.853600px;}
._1b_c00499{width:15.998400px;}
._6_c00499{width:18.648000px;}
._10_c00499{width:20.232000px;}
._4_c00499{width:21.938400px;}
._3_c00499{width:23.234400px;}
._1d_c00499{width:24.931200px;}
._14_c00499{width:26.409600px;}
._11_c00499{width:27.972000px;}
._15_c00499{width:29.419200px;}
._16_c00499{width:30.722400px;}
._17_c00499{width:32.059200px;}
._12_c00499{width:33.292800px;}
._13_c00499{width:35.214720px;}
._18_c00499{width:36.663360px;}
._1a_c00499{width:38.401440px;}
._19_c00499{width:39.492000px;}
.fc0_c00499{color:rgb(0,0,0);}
.fs1_c00499{font-size:60.000000px;}
.fs0_c00499{font-size:72.000000px;}
.y0_c00499{bottom:0.000000px;}
.y2c_c00499{bottom:67.500000px;}
.y2a_c00499{bottom:138.000000px;}
.y29_c00499{bottom:159.000000px;}
.y28_c00499{bottom:180.000000px;}
.y27_c00499{bottom:201.000000px;}
.y26_c00499{bottom:222.000000px;}
.y25_c00499{bottom:243.000000px;}
.y24_c00499{bottom:264.000000px;}
.y23_c00499{bottom:285.000000px;}
.y22_c00499{bottom:306.000000px;}
.y21_c00499{bottom:327.000000px;}
.y20_c00499{bottom:348.000000px;}
.y1f_c00499{bottom:369.000000px;}
.y1e_c00499{bottom:402.000000px;}
.y1d_c00499{bottom:423.000000px;}
.y1c_c00499{bottom:444.000000px;}
.y1b_c00499{bottom:465.000000px;}
.y1a_c00499{bottom:486.000000px;}
.y19_c00499{bottom:507.000000px;}
.y18_c00499{bottom:528.000000px;}
.y17_c00499{bottom:549.000000px;}
.y16_c00499{bottom:570.000000px;}
.y15_c00499{bottom:591.000000px;}
.y14_c00499{bottom:612.000000px;}
.y13_c00499{bottom:633.000000px;}
.y12_c00499{bottom:654.000000px;}
.y11_c00499{bottom:687.000000px;}
.y10_c00499{bottom:708.000000px;}
.yf_c00499{bottom:729.000000px;}
.ye_c00499{bottom:750.000000px;}
.yd_c00499{bottom:771.000000px;}
.yc_c00499{bottom:792.000000px;}
.yb_c00499{bottom:813.000000px;}
.ya_c00499{bottom:834.000000px;}
.y9_c00499{bottom:855.000000px;}
.y8_c00499{bottom:876.000000px;}
.y7_c00499{bottom:912.000000px;}
.y6_c00499{bottom:933.000000px;}
.y5_c00499{bottom:954.000000px;}
.y4_c00499{bottom:990.000000px;}
.y3_c00499{bottom:1017.000000px;}
.y2_c00499{bottom:1056.000000px;}
.y1_c00499{bottom:1095.000000px;}
.y2b_c00499{bottom:1194.000000px;}
.h2_c00499{height:42.714844px;}
.h5_c00499{height:44.208984px;}
.h1_c00499{height:51.257812px;}
.h3_c00499{height:52.417969px;}
.h4_c00499{height:56.074219px;}
.h0_c00499{height:1263.000000px;}
.w0_c00499{width:892.500000px;}
.x0_c00499{left:0.000000px;}
.x1_c00499{left:65.480310px;}
@media print{
.v0_c00499{vertical-align:0.000000pt;}
.ls2_c00499{letter-spacing:-0.012800pt;}
.ls3_c00499{letter-spacing:-0.010667pt;}
.ls4_c00499{letter-spacing:-0.005333pt;}
.ls1_c00499{letter-spacing:0.000000pt;}
.ls5_c00499{letter-spacing:0.010667pt;}
.ls0_c00499{letter-spacing:0.019200pt;}
.ws0_c00499{word-spacing:-14.661333pt;}
.ws1_c00499{word-spacing:0.000000pt;}
._7_c00499{margin-left:-7.641600pt;}
._f_c00499{margin-left:-5.189973pt;}
._0_c00499{margin-left:-3.520000pt;}
._9_c00499{margin-left:-2.378667pt;}
._1_c00499{margin-left:-1.152000pt;}
._2_c00499{width:1.280000pt;}
._5_c00499{width:2.624000pt;}
._d_c00499{width:3.813333pt;}
._c_c00499{width:4.842667pt;}
._b_c00499{width:6.344320pt;}
._e_c00499{width:7.450667pt;}
._8_c00499{width:9.109333pt;}
._1e_c00499{width:10.256213pt;}
._a_c00499{width:11.514667pt;}
._1c_c00499{width:13.203200pt;}
._1b_c00499{width:14.220800pt;}
._6_c00499{width:16.576000pt;}
._10_c00499{width:17.984000pt;}
._4_c00499{width:19.500800pt;}
._3_c00499{width:20.652800pt;}
._1d_c00499{width:22.161067pt;}
._14_c00499{width:23.475200pt;}
._11_c00499{width:24.864000pt;}
._15_c00499{width:26.150400pt;}
._16_c00499{width:27.308800pt;}
._17_c00499{width:28.497067pt;}
._12_c00499{width:29.593600pt;}
._13_c00499{width:31.301973pt;}
._18_c00499{width:32.589653pt;}
._1a_c00499{width:34.134613pt;}
._19_c00499{width:35.104000pt;}
.fs1_c00499{font-size:53.333333pt;}
.fs0_c00499{font-size:64.000000pt;}
.y0_c00499{bottom:0.000000pt;}
.y2c_c00499{bottom:60.000000pt;}
.y2a_c00499{bottom:122.666667pt;}
.y29_c00499{bottom:141.333333pt;}
.y28_c00499{bottom:160.000000pt;}
.y27_c00499{bottom:178.666667pt;}
.y26_c00499{bottom:197.333333pt;}
.y25_c00499{bottom:216.000000pt;}
.y24_c00499{bottom:234.666667pt;}
.y23_c00499{bottom:253.333333pt;}
.y22_c00499{bottom:272.000000pt;}
.y21_c00499{bottom:290.666667pt;}
.y20_c00499{bottom:309.333333pt;}
.y1f_c00499{bottom:328.000000pt;}
.y1e_c00499{bottom:357.333333pt;}
.y1d_c00499{bottom:376.000000pt;}
.y1c_c00499{bottom:394.666667pt;}
.y1b_c00499{bottom:413.333333pt;}
.y1a_c00499{bottom:432.000000pt;}
.y19_c00499{bottom:450.666667pt;}
.y18_c00499{bottom:469.333333pt;}
.y17_c00499{bottom:488.000000pt;}
.y16_c00499{bottom:506.666667pt;}
.y15_c00499{bottom:525.333333pt;}
.y14_c00499{bottom:544.000000pt;}
.y13_c00499{bottom:562.666667pt;}
.y12_c00499{bottom:581.333333pt;}
.y11_c00499{bottom:610.666667pt;}
.y10_c00499{bottom:629.333333pt;}
.yf_c00499{bottom:648.000000pt;}
.ye_c00499{bottom:666.666667pt;}
.yd_c00499{bottom:685.333333pt;}
.yc_c00499{bottom:704.000000pt;}
.yb_c00499{bottom:722.666667pt;}
.ya_c00499{bottom:741.333333pt;}
.y9_c00499{bottom:760.000000pt;}
.y8_c00499{bottom:778.666667pt;}
.y7_c00499{bottom:810.666667pt;}
.y6_c00499{bottom:829.333333pt;}
.y5_c00499{bottom:848.000000pt;}
.y4_c00499{bottom:880.000000pt;}
.y3_c00499{bottom:904.000000pt;}
.y2_c00499{bottom:938.666667pt;}
.y1_c00499{bottom:973.333333pt;}
.y2b_c00499{bottom:1061.333333pt;}
.h2_c00499{height:37.968750pt;}
.h5_c00499{height:39.296875pt;}
.h1_c00499{height:45.562500pt;}
.h3_c00499{height:46.593750pt;}
.h4_c00499{height:49.843750pt;}
.h0_c00499{height:1122.666667pt;}
.w0_c00499{width:793.333333pt;}
.x0_c00499{left:0.000000pt;}
.x1_c00499{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_df2a3c91629244c986842924.woff2')format("woff");}.ff1_c01000{font-family:ff1_c01000;line-height:1.010254;font-style:normal;font-weight:normal;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_24390ed54ce3ea65a2c6f096.woff2')format("woff");}.ff2_c01000{font-family:ff2_c01000;line-height:1.155762;font-style: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);}
.v0_c01000{vertical-align:0.000000px;}
.ls1_c01000{letter-spacing:0.000000px;}
.ls0_c01000{letter-spacing:0.012000px;}
.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;}
}
.ws0_c01000{word-spacing:0.000000px;}
._a_c01000{margin-left:-6.595200px;}
._3_c01000{margin-left:-4.543200px;}
._d_c01000{margin-left:-3.426000px;}
._1_c01000{margin-left:-1.612800px;}
._0_c01000{width:2.102400px;}
._2_c01000{width:4.147200px;}
._4_c01000{width:7.192800px;}
._6_c01000{width:11.570400px;}
._5_c01000{width:13.672800px;}
._7_c01000{width:14.788800px;}
._9_c01000{width:21.398400px;}
._8_c01000{width:23.472000px;}
._b_c01000{width:27.187200px;}
._c_c01000{width:30.124800px;}
.fc0_c01000{color:rgb(0,0,0);}
.fs1_c01000{font-size:60.000000px;}
.fs0_c01000{font-size:72.000000px;}
.y0_c01000{bottom:0.000000px;}
.y8_c01000{bottom:67.500000px;}
.y6_c01000{bottom:967.500000px;}
.y5_c01000{bottom:988.500000px;}
.y4_c01000{bottom:1021.500000px;}
.y3_c01000{bottom:1054.500000px;}
.y2_c01000{bottom:1075.500000px;}
.y1_c01000{bottom:1096.500000px;}
.y7_c01000{bottom:1194.000000px;}
.h1_c01000{height:52.417969px;}
.h2_c01000{height:56.074219px;}
.h0_c01000{height:1263.000000px;}
.w0_c01000{width:892.500000px;}
.x0_c01000{left:0.000000px;}
.x1_c01000{left:150.519750px;}
.x2_c01000{left:416.782800px;}
.x3_c01000{left:801.992850px;}
@media print{
.v0_c01000{vertical-align:0.000000pt;}
.ls1_c01000{letter-spacing:0.000000pt;}
.ls0_c01000{letter-spacing:0.010667pt;}
.ws0_c01000{word-spacing:0.000000pt;}
._a_c01000{margin-left:-5.862400pt;}
._3_c01000{margin-left:-4.038400pt;}
._d_c01000{margin-left:-3.045333pt;}
._1_c01000{margin-left:-1.433600pt;}
._0_c01000{width:1.868800pt;}
._2_c01000{width:3.686400pt;}
._4_c01000{width:6.393600pt;}
._6_c01000{width:10.284800pt;}
._5_c01000{width:12.153600pt;}
._7_c01000{width:13.145600pt;}
._9_c01000{width:19.020800pt;}
._8_c01000{width:20.864000pt;}
._b_c01000{width:24.166400pt;}
._c_c01000{width:26.777600pt;}
.fs1_c01000{font-size:53.333333pt;}
.fs0_c01000{font-size:64.000000pt;}
.y0_c01000{bottom:0.000000pt;}
.y8_c01000{bottom:60.000000pt;}
.y6_c01000{bottom:860.000000pt;}
.y5_c01000{bottom:878.666667pt;}
.y4_c01000{bottom:908.000000pt;}
.y3_c01000{bottom:937.333333pt;}
.y2_c01000{bottom:956.000000pt;}
.y1_c01000{bottom:974.666667pt;}
.y7_c01000{bottom:1061.333333pt;}
.h1_c01000{height:46.593750pt;}
.h2_c01000{height:49.843750pt;}
.h0_c01000{height:1122.666667pt;}
.w0_c01000{width:793.333333pt;}
.x0_c01000{left:0.000000pt;}
.x1_c01000{left:133.795333pt;}
.x2_c01000{left:370.473600pt;}
.x3_c01000{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c5e6e85fd3b13d52b2a8b770.woff2')format("woff");}.ff1_c01001{font-family:ff1_c01001;line-height:0.939453;font-style:normal;font-weight:normal;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_ca60ad0b7e2cc0c1a3333729.woff2')format("woff");}.ff2_c01001{font-family:ff2_c01001;line-height:1.163086;font-style:normal;font-weight:normal;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_e88dbd159d9e420644971a84.woff2')format("woff");}.ff3_c01001{font-family:ff3_c01001;line-height:0.756836;font-style:normal;font-weight:normal;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_0c06ea040f27530d3265973b.woff2')format("woff");}.ff4_c01001{font-family:ff4_c01001;line-height:1.155762;font-style:normal;font-weight:normal;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_2f1ac66acf033f24b9164772.woff2')format("woff");}.ff5_c01001{font-family:ff5_c01001;line-height:0.903320;font-style:normal;font-weight: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_a0d406c68d4a9be220627750.woff2')format("woff");}.ff6_c01001{font-family:ff6_c01001;line-height:0.889648;font-style: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);}
.v3_c01001{vertical-align:-33.000000px;}
.v2_c01001{vertical-align:-23.086200px;}
.v0_c01001{vertical-align:0.000000px;}
.v1_c01001{vertical-align:23.086200px;}
.ls2_c01001{letter-spacing:0.000000px;}
.ls0_c01001{letter-spacing:0.007800px;}
.ls3_c01001{letter-spacing:0.012000px;}
.ls1_c01001{letter-spacing:2.966400px;}
.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;}
}
.ws1_c01001{word-spacing:-19.800000px;}
.ws0_c01001{word-spacing:-13.200000px;}
.ws2_c01001{word-spacing:-10.000001px;}
.ws3_c01001{word-spacing:0.000000px;}
._f_c01001{margin-left:-9.885600px;}
._13_c01001{margin-left:-6.230400px;}
._c_c01001{margin-left:-4.269600px;}
._3_c01001{margin-left:-2.772000px;}
._7_c01001{margin-left:-1.375200px;}
._5_c01001{width:1.418400px;}
._1_c01001{width:3.110400px;}
._10_c01001{width:4.233600px;}
._2_c01001{width:5.407200px;}
._6_c01001{width:7.128000px;}
._0_c01001{width:8.539200px;}
._8_c01001{width:9.907200px;}
._4_c01001{width:11.325600px;}
._e_c01001{width:12.823200px;}
._9_c01001{width:14.097600px;}
._d_c01001{width:15.235200px;}
._a_c01001{width:17.251200px;}
._11_c01001{width:18.259200px;}
._b_c01001{width:20.808000px;}
._12_c01001{width:22.291200px;}
.fc1_c01001{color:rgb(255,255,255);}
.fc0_c01001{color:rgb(0,0,0);}
.fs5_c01001{font-size:40.000002px;}
.fs2_c01001{font-size:48.000000px;}
.fs4_c01001{font-size:60.000000px;}
.fs1_c01001{font-size:72.000000px;}
.fs0_c01001{font-size:78.000000px;}
.fs3_c01001{font-size:96.000000px;}
.y0_c01001{bottom:0.000000px;}
.y19_c01001{bottom:67.500000px;}
.y1c_c01001{bottom:140.250000px;}
.y1b_c01001{bottom:181.500000px;}
.y1a_c01001{bottom:209.250000px;}
.y16_c01001{bottom:301.500000px;}
.y15_c01001{bottom:328.500000px;}
.y14_c01001{bottom:355.500000px;}
.y13_c01001{bottom:382.500000px;}
.y12_c01001{bottom:409.500000px;}
.y11_c01001{bottom:436.500000px;}
.y10_c01001{bottom:483.000000px;}
.yf_c01001{bottom:553.500000px;}
.ye_c01001{bottom:580.500000px;}
.yd_c01001{bottom:628.500000px;}
.yc_c01001{bottom:655.500000px;}
.yb_c01001{bottom:682.500000px;}
.ya_c01001{bottom:709.500000px;}
.y9_c01001{bottom:736.500000px;}
.y8_c01001{bottom:763.500000px;}
.y7_c01001{bottom:811.500000px;}
.y6_c01001{bottom:838.500000px;}
.y5_c01001{bottom:865.500000px;}
.y4_c01001{bottom:892.500000px;}
.y3_c01001{bottom:919.500000px;}
.y2_c01001{bottom:946.500000px;}
.y1_c01001{bottom:993.000000px;}
.y17_c01001{bottom:1066.500000px;}
.y18_c01001{bottom:1194.000000px;}
.h7_c01001{height:27.421876px;}
.h8_c01001{height:41.132812px;}
.h6_c01001{height:44.208984px;}
.h5_c01001{height:56.074219px;}
.h1_c01001{height:56.100586px;}
.h2_c01001{height:67.746094px;}
.h3_c01001{height:68.250262px;}
.h4_c01001{height:90.328125px;}
.h0_c01001{height:1263.000000px;}
.w0_c01001{width:892.500000px;}
.x0_c01001{left:0.000000px;}
.x1_c01001{left:65.480310px;}
.x2_c01001{left:94.798875px;}
@media print{
.v3_c01001{vertical-align:-29.333333pt;}
.v2_c01001{vertical-align:-20.521067pt;}
.v0_c01001{vertical-align:0.000000pt;}
.v1_c01001{vertical-align:20.521067pt;}
.ls2_c01001{letter-spacing:0.000000pt;}
.ls0_c01001{letter-spacing:0.006933pt;}
.ls3_c01001{letter-spacing:0.010667pt;}
.ls1_c01001{letter-spacing:2.636800pt;}
.ws1_c01001{word-spacing:-17.600000pt;}
.ws0_c01001{word-spacing:-11.733333pt;}
.ws2_c01001{word-spacing:-8.888889pt;}
.ws3_c01001{word-spacing:0.000000pt;}
._f_c01001{margin-left:-8.787200pt;}
._13_c01001{margin-left:-5.538133pt;}
._c_c01001{margin-left:-3.795200pt;}
._3_c01001{margin-left:-2.464000pt;}
._7_c01001{margin-left:-1.222400pt;}
._5_c01001{width:1.260800pt;}
._1_c01001{width:2.764800pt;}
._10_c01001{width:3.763200pt;}
._2_c01001{width:4.806400pt;}
._6_c01001{width:6.336000pt;}
._0_c01001{width:7.590400pt;}
._8_c01001{width:8.806400pt;}
._4_c01001{width:10.067200pt;}
._e_c01001{width:11.398400pt;}
._9_c01001{width:12.531200pt;}
._d_c01001{width:13.542400pt;}
._a_c01001{width:15.334400pt;}
._11_c01001{width:16.230400pt;}
._b_c01001{width:18.496000pt;}
._12_c01001{width:19.814400pt;}
.fs5_c01001{font-size:35.555557pt;}
.fs2_c01001{font-size:42.666667pt;}
.fs4_c01001{font-size:53.333333pt;}
.fs1_c01001{font-size:64.000000pt;}
.fs0_c01001{font-size:69.333333pt;}
.fs3_c01001{font-size:85.333333pt;}
.y0_c01001{bottom:0.000000pt;}
.y19_c01001{bottom:60.000000pt;}
.y1c_c01001{bottom:124.666667pt;}
.y1b_c01001{bottom:161.333333pt;}
.y1a_c01001{bottom:186.000000pt;}
.y16_c01001{bottom:268.000000pt;}
.y15_c01001{bottom:292.000000pt;}
.y14_c01001{bottom:316.000000pt;}
.y13_c01001{bottom:340.000000pt;}
.y12_c01001{bottom:364.000000pt;}
.y11_c01001{bottom:388.000000pt;}
.y10_c01001{bottom:429.333333pt;}
.yf_c01001{bottom:492.000000pt;}
.ye_c01001{bottom:516.000000pt;}
.yd_c01001{bottom:558.666667pt;}
.yc_c01001{bottom:582.666667pt;}
.yb_c01001{bottom:606.666667pt;}
.ya_c01001{bottom:630.666667pt;}
.y9_c01001{bottom:654.666667pt;}
.y8_c01001{bottom:678.666667pt;}
.y7_c01001{bottom:721.333333pt;}
.y6_c01001{bottom:745.333333pt;}
.y5_c01001{bottom:769.333333pt;}
.y4_c01001{bottom:793.333333pt;}
.y3_c01001{bottom:817.333333pt;}
.y2_c01001{bottom:841.333333pt;}
.y1_c01001{bottom:882.666667pt;}
.y17_c01001{bottom:948.000000pt;}
.y18_c01001{bottom:1061.333333pt;}
.h7_c01001{height:24.375001pt;}
.h8_c01001{height:36.562500pt;}
.h6_c01001{height:39.296875pt;}
.h5_c01001{height:49.843750pt;}
.h1_c01001{height:49.867188pt;}
.h2_c01001{height:60.218750pt;}
.h3_c01001{height:60.666900pt;}
.h4_c01001{height:80.291667pt;}
.h0_c01001{height:1122.666667pt;}
.w0_c01001{width:793.333333pt;}
.x0_c01001{left:0.000000pt;}
.x1_c01001{left:58.204720pt;}
.x2_c01001{left:84.265667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_12184f46779fae1b8a382f18.woff2')format("woff");}.ff1_c01002{font-family:ff1_c01002;line-height:0.934082;font-style:normal;font-weight:normal;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_8865bdc830d6cdff57f9a84d.woff2')format("woff");}.ff2_c01002{font-family:ff2_c01002;line-height:0.963867;font-style:normal;font-weight:normal;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_c9be7c817d4ba5b82cc8469a.woff2')format("woff");}.ff3_c01002{font-family:ff3_c01002;line-height:1.155762;font-style: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;}
.ls1_c01002{letter-spacing:0.000000px;}
.ls0_c01002{letter-spacing:0.012000px;}
.ls2_c01002{letter-spacing:0.021600px;}
.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;}
}
.ws0_c01002{word-spacing:0.000000px;}
._3_c01002{margin-left:-4.125600px;}
._a_c01002{margin-left:-3.016800px;}
._0_c01002{margin-left:-1.130400px;}
._2_c01002{width:1.713600px;}
._1_c01002{width:2.836800px;}
._7_c01002{width:4.305600px;}
._4_c01002{width:5.846400px;}
._8_c01002{width:13.845600px;}
._9_c01002{width:16.452000px;}
._5_c01002{width:18.230400px;}
._b_c01002{width:21.261600px;}
._6_c01002{width:22.392000px;}
.fc0_c01002{color:rgb(0,0,0);}
.fs1_c01002{font-size:54.000000px;}
.fs2_c01002{font-size:60.000000px;}
.fs0_c01002{font-size:72.000000px;}
.y0_c01002{bottom:0.000000px;}
.y9_c01002{bottom:10.500000px;}
.y6_c01002{bottom:12.000000px;}
.y8_c01002{bottom:28.500000px;}
.yb_c01002{bottom:67.500000px;}
.y7_c01002{bottom:141.000000px;}
.y5_c01002{bottom:603.000000px;}
.y4_c01002{bottom:1014.000000px;}
.y3_c01002{bottom:1041.000000px;}
.y2_c01002{bottom:1068.000000px;}
.y1_c01002{bottom:1095.000000px;}
.ya_c01002{bottom:1194.000000px;}
.h3_c01002{height:41.633789px;}
.h1_c01002{height:51.257812px;}
.h5_c01002{height:56.074219px;}
.h2_c01002{height:379.500000px;}
.h4_c01002{height:433.500000px;}
.h0_c01002{height:1263.000000px;}
.w1_c01002{width:676.500000px;}
.w0_c01002{width:892.500000px;}
.x0_c01002{left:0.000000px;}
.x3_c01002{left:15.331050px;}
.x2_c01002{left:125.183355px;}
.x1_c01002{left:150.519750px;}
.x4_c01002{left:305.462400px;}
.x5_c01002{left:416.782800px;}
.x6_c01002{left:801.992850px;}
@media print{
.v0_c01002{vertical-align:0.000000pt;}
.ls1_c01002{letter-spacing:0.000000pt;}
.ls0_c01002{letter-spacing:0.010667pt;}
.ls2_c01002{letter-spacing:0.019200pt;}
.ws0_c01002{word-spacing:0.000000pt;}
._3_c01002{margin-left:-3.667200pt;}
._a_c01002{margin-left:-2.681600pt;}
._0_c01002{margin-left:-1.004800pt;}
._2_c01002{width:1.523200pt;}
._1_c01002{width:2.521600pt;}
._7_c01002{width:3.827200pt;}
._4_c01002{width:5.196800pt;}
._8_c01002{width:12.307200pt;}
._9_c01002{width:14.624000pt;}
._5_c01002{width:16.204800pt;}
._b_c01002{width:18.899200pt;}
._6_c01002{width:19.904000pt;}
.fs1_c01002{font-size:48.000000pt;}
.fs2_c01002{font-size:53.333333pt;}
.fs0_c01002{font-size:64.000000pt;}
.y0_c01002{bottom:0.000000pt;}
.y9_c01002{bottom:9.333333pt;}
.y6_c01002{bottom:10.666667pt;}
.y8_c01002{bottom:25.333333pt;}
.yb_c01002{bottom:60.000000pt;}
.y7_c01002{bottom:125.333333pt;}
.y5_c01002{bottom:536.000000pt;}
.y4_c01002{bottom:901.333333pt;}
.y3_c01002{bottom:925.333333pt;}
.y2_c01002{bottom:949.333333pt;}
.y1_c01002{bottom:973.333333pt;}
.ya_c01002{bottom:1061.333333pt;}
.h3_c01002{height:37.007812pt;}
.h1_c01002{height:45.562500pt;}
.h5_c01002{height:49.843750pt;}
.h2_c01002{height:337.333333pt;}
.h4_c01002{height:385.333333pt;}
.h0_c01002{height:1122.666667pt;}
.w1_c01002{width:601.333333pt;}
.w0_c01002{width:793.333333pt;}
.x0_c01002{left:0.000000pt;}
.x3_c01002{left:13.627600pt;}
.x2_c01002{left:111.274093pt;}
.x1_c01002{left:133.795333pt;}
.x4_c01002{left:271.522133pt;}
.x5_c01002{left:370.473600pt;}
.x6_c01002{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4c5292fc9fd1ca55ee36ebea.woff2')format("woff");}.ff1_c01003{font-family:ff1_c01003;line-height:0.976074;font-style:normal;font-weight:normal;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_ff082d5cb5ca72f45fe009e8.woff2')format("woff");}.ff2_c01003{font-family:ff2_c01003;line-height:0.755859;font-style:normal;font-weight:normal;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_1160f4846e4c00e233470447.woff2')format("woff");}.ff3_c01003{font-family:ff3_c01003;line-height:1.155762;font-style: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);}
.v0_c01003{vertical-align:0.000000px;}
.ls1_c01003{letter-spacing:0.000000px;}
.ls2_c01003{letter-spacing:0.012000px;}
.ls0_c01003{letter-spacing:0.021600px;}
.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;}
}
.ws0_c01003{word-spacing:0.000000px;}
._0_c01003{margin-left:-3.216000px;}
.fc0_c01003{color:rgb(0,0,0);}
.fs0_c01003{font-size:54.000000px;}
.fs1_c01003{font-size:60.000000px;}
.y0_c01003{bottom:0.000000px;}
.y3_c01003{bottom:10.500000px;}
.y5_c01003{bottom:12.000000px;}
.y2_c01003{bottom:28.500000px;}
.y7_c01003{bottom:67.500000px;}
.y4_c01003{bottom:211.500000px;}
.y1_c01003{bottom:772.500000px;}
.y6_c01003{bottom:1194.000000px;}
.h2_c01003{height:42.292969px;}
.h5_c01003{height:44.208984px;}
.h4_c01003{height:56.074219px;}
.h1_c01003{height:340.500000px;}
.h3_c01003{height:553.500000px;}
.h0_c01003{height:1263.000000px;}
.w1_c01003{width:676.500000px;}
.w0_c01003{width:892.500000px;}
.x0_c01003{left:0.000000px;}
.x2_c01003{left:20.739600px;}
.x1_c01003{left:66.000000px;}
.x4_c01003{left:104.897100px;}
.x3_c01003{left:173.461650px;}
@media print{
.v0_c01003{vertical-align:0.000000pt;}
.ls1_c01003{letter-spacing:0.000000pt;}
.ls2_c01003{letter-spacing:0.010667pt;}
.ls0_c01003{letter-spacing:0.019200pt;}
.ws0_c01003{word-spacing:0.000000pt;}
._0_c01003{margin-left:-2.858667pt;}
.fs0_c01003{font-size:48.000000pt;}
.fs1_c01003{font-size:53.333333pt;}
.y0_c01003{bottom:0.000000pt;}
.y3_c01003{bottom:9.333333pt;}
.y5_c01003{bottom:10.666667pt;}
.y2_c01003{bottom:25.333333pt;}
.y7_c01003{bottom:60.000000pt;}
.y4_c01003{bottom:188.000000pt;}
.y1_c01003{bottom:686.666667pt;}
.y6_c01003{bottom:1061.333333pt;}
.h2_c01003{height:37.593750pt;}
.h5_c01003{height:39.296875pt;}
.h4_c01003{height:49.843750pt;}
.h1_c01003{height:302.666667pt;}
.h3_c01003{height:492.000000pt;}
.h0_c01003{height:1122.666667pt;}
.w1_c01003{width:601.333333pt;}
.w0_c01003{width:793.333333pt;}
.x0_c01003{left:0.000000pt;}
.x2_c01003{left:18.435200pt;}
.x1_c01003{left:58.666667pt;}
.x4_c01003{left:93.241867pt;}
.x3_c01003{left:154.188133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_74b9fdfd9dbcaef70f8ee4c7.woff2')format("woff");}.ff1_c01004{font-family:ff1_c01004;line-height:0.975586;font-style:normal;font-weight:normal;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_02c5f5802967534ff57cda48.woff2')format("woff");}.ff2_c01004{font-family:ff2_c01004;line-height:1.161133;font-style:normal;font-weight:normal;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_1843faff4255addfaafd68ee.woff2')format("woff");}.ff3_c01004{font-family:ff3_c01004;line-height:0.932129;font-style:normal;font-weight:normal;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_9d87c4a2b5023048e6bd7235.woff2')format("woff");}.ff4_c01004{font-family:ff4_c01004;line-height:1.010254;font-style:normal;font-weight:normal;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_3c99471fa15302ce9d5e766d.woff2')format("woff");}.ff5_c01004{font-family:ff5_c01004;line-height:1.155762;font-style: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);}
.v0_c01004{vertical-align:0.000000px;}
.ls3_c01004{letter-spacing:0.000000px;}
.ls1_c01004{letter-spacing:0.006000px;}
.ls2_c01004{letter-spacing:0.012000px;}
.ls0_c01004{letter-spacing:0.021600px;}
.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;}
}
.ws0_c01004{word-spacing:0.000000px;}
._9_c01004{margin-left:-6.292800px;}
._5_c01004{margin-left:-4.672800px;}
._7_c01004{margin-left:-3.240000px;}
._3_c01004{margin-left:-1.296000px;}
._8_c01004{width:1.044000px;}
._0_c01004{width:2.210400px;}
._b_c01004{width:3.319200px;}
._c_c01004{width:4.456800px;}
._a_c01004{width:5.709600px;}
._d_c01004{width:7.300800px;}
._e_c01004{width:8.560800px;}
._1_c01004{width:9.892800px;}
._f_c01004{width:10.929600px;}
._2_c01004{width:12.024000px;}
._4_c01004{width:13.348800px;}
._6_c01004{width:16.797600px;}
.fc1_c01004{color:transparent;}
.fc0_c01004{color:rgb(0,0,0);}
.fs0_c01004{font-size:54.000000px;}
.fs2_c01004{font-size:60.000000px;}
.fs1_c01004{font-size:72.000000px;}
.y0_c01004{bottom:0.000000px;}
.y2_c01004{bottom:12.000000px;}
.y16_c01004{bottom:67.500000px;}
.y14_c01004{bottom:153.000000px;}
.y13_c01004{bottom:174.000000px;}
.y12_c01004{bottom:195.000000px;}
.y11_c01004{bottom:216.000000px;}
.y10_c01004{bottom:237.000000px;}
.yf_c01004{bottom:258.000000px;}
.ye_c01004{bottom:279.000000px;}
.yd_c01004{bottom:300.000000px;}
.yc_c01004{bottom:321.000000px;}
.yb_c01004{bottom:364.500000px;}
.ya_c01004{bottom:387.000000px;}
.y9_c01004{bottom:430.500000px;}
.y8_c01004{bottom:457.500000px;}
.y7_c01004{bottom:505.500000px;}
.y6_c01004{bottom:553.500000px;}
.y5_c01004{bottom:601.500000px;}
.y4_c01004{bottom:628.500000px;}
.y3_c01004{bottom:655.500000px;}
.y1_c01004{bottom:700.500000px;}
.y15_c01004{bottom:1194.000000px;}
.h2_c01004{height:41.633789px;}
.h4_c01004{height:51.257812px;}
.h6_c01004{height:52.417969px;}
.h7_c01004{height:56.074219px;}
.h5_c01004{height:56.455078px;}
.h3_c01004{height:67.746094px;}
.h1_c01004{height:412.500000px;}
.h0_c01004{height:1263.000000px;}
.w1_c01004{width:676.500000px;}
.w0_c01004{width:892.500000px;}
.x0_c01004{left:0.000000px;}
.x2_c01004{left:44.891970px;}
.x1_c01004{left:150.000000px;}
.x3_c01004{left:416.782800px;}
.x4_c01004{left:801.992850px;}
@media print{
.v0_c01004{vertical-align:0.000000pt;}
.ls3_c01004{letter-spacing:0.000000pt;}
.ls1_c01004{letter-spacing:0.005333pt;}
.ls2_c01004{letter-spacing:0.010667pt;}
.ls0_c01004{letter-spacing:0.019200pt;}
.ws0_c01004{word-spacing:0.000000pt;}
._9_c01004{margin-left:-5.593600pt;}
._5_c01004{margin-left:-4.153600pt;}
._7_c01004{margin-left:-2.880000pt;}
._3_c01004{margin-left:-1.152000pt;}
._8_c01004{width:0.928000pt;}
._0_c01004{width:1.964800pt;}
._b_c01004{width:2.950400pt;}
._c_c01004{width:3.961600pt;}
._a_c01004{width:5.075200pt;}
._d_c01004{width:6.489600pt;}
._e_c01004{width:7.609600pt;}
._1_c01004{width:8.793600pt;}
._f_c01004{width:9.715200pt;}
._2_c01004{width:10.688000pt;}
._4_c01004{width:11.865600pt;}
._6_c01004{width:14.931200pt;}
.fs0_c01004{font-size:48.000000pt;}
.fs2_c01004{font-size:53.333333pt;}
.fs1_c01004{font-size:64.000000pt;}
.y0_c01004{bottom:0.000000pt;}
.y2_c01004{bottom:10.666667pt;}
.y16_c01004{bottom:60.000000pt;}
.y14_c01004{bottom:136.000000pt;}
.y13_c01004{bottom:154.666667pt;}
.y12_c01004{bottom:173.333333pt;}
.y11_c01004{bottom:192.000000pt;}
.y10_c01004{bottom:210.666667pt;}
.yf_c01004{bottom:229.333333pt;}
.ye_c01004{bottom:248.000000pt;}
.yd_c01004{bottom:266.666667pt;}
.yc_c01004{bottom:285.333333pt;}
.yb_c01004{bottom:324.000000pt;}
.ya_c01004{bottom:344.000000pt;}
.y9_c01004{bottom:382.666667pt;}
.y8_c01004{bottom:406.666667pt;}
.y7_c01004{bottom:449.333333pt;}
.y6_c01004{bottom:492.000000pt;}
.y5_c01004{bottom:534.666667pt;}
.y4_c01004{bottom:558.666667pt;}
.y3_c01004{bottom:582.666667pt;}
.y1_c01004{bottom:622.666667pt;}
.y15_c01004{bottom:1061.333333pt;}
.h2_c01004{height:37.007812pt;}
.h4_c01004{height:45.562500pt;}
.h6_c01004{height:46.593750pt;}
.h7_c01004{height:49.843750pt;}
.h5_c01004{height:50.182292pt;}
.h3_c01004{height:60.218750pt;}
.h1_c01004{height:366.666667pt;}
.h0_c01004{height:1122.666667pt;}
.w1_c01004{width:601.333333pt;}
.w0_c01004{width:793.333333pt;}
.x0_c01004{left:0.000000pt;}
.x2_c01004{left:39.903973pt;}
.x1_c01004{left:133.333333pt;}
.x3_c01004{left:370.473600pt;}
.x4_c01004{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bb5c046a736c3d0753c3d619.woff2')format("woff");}.ff1_c01005{font-family:ff1_c01005;line-height:1.010254;font-style:normal;font-weight:normal;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_9f79fbbdff0add540a690347.woff2')format("woff");}.ff2_c01005{font-family:ff2_c01005;line-height:0.755859;font-style:normal;font-weight:normal;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_c9d5bdfbf70526e6eced44a6.woff2')format("woff");}.ff3_c01005{font-family:ff3_c01005;line-height:1.155762;font-style: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;}
.ls0_c01005{letter-spacing:0.000000px;}
.ls1_c01005{letter-spacing:0.012000px;}
.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;}
}
.ws0_c01005{word-spacing:0.000000px;}
._10_c01005{margin-left:-5.788800px;}
._a_c01005{margin-left:-4.752000px;}
._7_c01005{margin-left:-2.772000px;}
._5_c01005{margin-left:-1.519200px;}
._1_c01005{width:1.144800px;}
._3_c01005{width:2.181600px;}
._9_c01005{width:3.420000px;}
._4_c01005{width:4.730400px;}
._2_c01005{width:5.752800px;}
._0_c01005{width:6.868800px;}
._6_c01005{width:8.388000px;}
._8_c01005{width:9.648000px;}
._e_c01005{width:11.815200px;}
._d_c01005{width:13.716000px;}
._b_c01005{width:14.954400px;}
._f_c01005{width:16.293600px;}
._c_c01005{width:19.087200px;}
.fc0_c01005{color:rgb(0,0,0);}
.fs1_c01005{font-size:60.000000px;}
.fs0_c01005{font-size:72.000000px;}
.y0_c01005{bottom:0.000000px;}
.y10_c01005{bottom:67.500000px;}
.ye_c01005{bottom:802.500000px;}
.yd_c01005{bottom:823.500000px;}
.yc_c01005{bottom:844.500000px;}
.yb_c01005{bottom:865.500000px;}
.ya_c01005{bottom:886.500000px;}
.y9_c01005{bottom:928.500000px;}
.y8_c01005{bottom:949.500000px;}
.y7_c01005{bottom:970.500000px;}
.y6_c01005{bottom:991.500000px;}
.y5_c01005{bottom:1012.500000px;}
.y4_c01005{bottom:1033.500000px;}
.y3_c01005{bottom:1054.500000px;}
.y2_c01005{bottom:1075.500000px;}
.y1_c01005{bottom:1096.500000px;}
.yf_c01005{bottom:1194.000000px;}
.h3_c01005{height:44.208984px;}
.h1_c01005{height:52.417969px;}
.h2_c01005{height:56.074219px;}
.h0_c01005{height:1263.000000px;}
.w0_c01005{width:892.500000px;}
.x0_c01005{left:0.000000px;}
.x1_c01005{left:65.480310px;}
@media print{
.v0_c01005{vertical-align:0.000000pt;}
.ls0_c01005{letter-spacing:0.000000pt;}
.ls1_c01005{letter-spacing:0.010667pt;}
.ws0_c01005{word-spacing:0.000000pt;}
._10_c01005{margin-left:-5.145600pt;}
._a_c01005{margin-left:-4.224000pt;}
._7_c01005{margin-left:-2.464000pt;}
._5_c01005{margin-left:-1.350400pt;}
._1_c01005{width:1.017600pt;}
._3_c01005{width:1.939200pt;}
._9_c01005{width:3.040000pt;}
._4_c01005{width:4.204800pt;}
._2_c01005{width:5.113600pt;}
._0_c01005{width:6.105600pt;}
._6_c01005{width:7.456000pt;}
._8_c01005{width:8.576000pt;}
._e_c01005{width:10.502400pt;}
._d_c01005{width:12.192000pt;}
._b_c01005{width:13.292800pt;}
._f_c01005{width:14.483200pt;}
._c_c01005{width:16.966400pt;}
.fs1_c01005{font-size:53.333333pt;}
.fs0_c01005{font-size:64.000000pt;}
.y0_c01005{bottom:0.000000pt;}
.y10_c01005{bottom:60.000000pt;}
.ye_c01005{bottom:713.333333pt;}
.yd_c01005{bottom:732.000000pt;}
.yc_c01005{bottom:750.666667pt;}
.yb_c01005{bottom:769.333333pt;}
.ya_c01005{bottom:788.000000pt;}
.y9_c01005{bottom:825.333333pt;}
.y8_c01005{bottom:844.000000pt;}
.y7_c01005{bottom:862.666667pt;}
.y6_c01005{bottom:881.333333pt;}
.y5_c01005{bottom:900.000000pt;}
.y4_c01005{bottom:918.666667pt;}
.y3_c01005{bottom:937.333333pt;}
.y2_c01005{bottom:956.000000pt;}
.y1_c01005{bottom:974.666667pt;}
.yf_c01005{bottom:1061.333333pt;}
.h3_c01005{height:39.296875pt;}
.h1_c01005{height:46.593750pt;}
.h2_c01005{height:49.843750pt;}
.h0_c01005{height:1122.666667pt;}
.w0_c01005{width:793.333333pt;}
.x0_c01005{left:0.000000pt;}
.x1_c01005{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_507776382a52ae658bbf8ab8.woff2')format("woff");}.ff1_c01006{font-family:ff1_c01006;line-height:0.884766;font-style:normal;font-weight:normal;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_d06f0fee838baabcfbf36a13.woff2')format("woff");}.ff2_c01006{font-family:ff2_c01006;line-height:1.163086;font-style:normal;font-weight:normal;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_71e185d6118fe775555ba74a.woff2')format("woff");}.ff3_c01006{font-family:ff3_c01006;line-height:1.155762;font-style:normal;font-weight:normal;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_4346aebbd293ed11c85d4286.woff2')format("woff");}.ff4_c01006{font-family:ff4_c01006;line-height:1.101562;font-style:normal;font-weight:normal;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_e493754712cbf74475fe055f.woff2')format("woff");}.ff5_c01006{font-family:ff5_c01006;line-height:0.891113;font-style: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);}
.v3_c01006{vertical-align:-33.000000px;}
.v2_c01006{vertical-align:-23.086200px;}
.v0_c01006{vertical-align:0.000000px;}
.v1_c01006{vertical-align:23.086200px;}
.ls5_c01006{letter-spacing:0.000000px;}
.ls0_c01006{letter-spacing:0.007800px;}
.ls4_c01006{letter-spacing:0.012000px;}
.ls3_c01006{letter-spacing:0.247200px;}
.ls2_c01006{letter-spacing:2.203200px;}
.ls1_c01006{letter-spacing:15.552000px;}
.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;}
}
.ws0_c01006{word-spacing:-10.000001px;}
.ws1_c01006{word-spacing:0.000000px;}
._16_c01006{margin-left:-7.845201px;}
._17_c01006{margin-left:-5.638800px;}
._3_c01006{margin-left:-4.291200px;}
._5_c01006{margin-left:-2.397600px;}
._11_c01006{margin-left:-1.051200px;}
._0_c01006{width:1.569600px;}
._9_c01006{width:2.887200px;}
._1_c01006{width:4.255200px;}
._2_c01006{width:5.803200px;}
._10_c01006{width:6.890400px;}
._6_c01006{width:8.301600px;}
._4_c01006{width:10.173600px;}
._f_c01006{width:11.656800px;}
._d_c01006{width:13.104000px;}
._e_c01006{width:15.004800px;}
._12_c01006{width:16.128000px;}
._14_c01006{width:21.196800px;}
._13_c01006{width:22.492800px;}
._15_c01006{width:23.637600px;}
._c_c01006{width:24.746400px;}
._a_c01006{width:26.265600px;}
._7_c01006{width:27.504000px;}
._b_c01006{width:29.095200px;}
._8_c01006{width:31.399200px;}
.fc1_c01006{color:rgb(255,255,255);}
.fc0_c01006{color:rgb(0,0,0);}
.fs5_c01006{font-size:40.000002px;}
.fs2_c01006{font-size:48.000000px;}
.fs4_c01006{font-size:60.000000px;}
.fs1_c01006{font-size:72.000000px;}
.fs0_c01006{font-size:78.000000px;}
.fs3_c01006{font-size:96.000000px;}
.y0_c01006{bottom:0.000000px;}
.y16_c01006{bottom:67.500000px;}
.y1d_c01006{bottom:132.000000px;}
.y1c_c01006{bottom:159.750000px;}
.y1b_c01006{bottom:201.000000px;}
.y1a_c01006{bottom:228.750000px;}
.y19_c01006{bottom:270.000000px;}
.y18_c01006{bottom:289.500000px;}
.y17_c01006{bottom:317.250000px;}
.y13_c01006{bottom:442.500000px;}
.y12_c01006{bottom:469.500000px;}
.y11_c01006{bottom:496.500000px;}
.y10_c01006{bottom:544.500000px;}
.yf_c01006{bottom:571.500000px;}
.ye_c01006{bottom:598.500000px;}
.yd_c01006{bottom:625.500000px;}
.yc_c01006{bottom:652.500000px;}
.yb_c01006{bottom:679.500000px;}
.ya_c01006{bottom:706.500000px;}
.y9_c01006{bottom:733.500000px;}
.y8_c01006{bottom:781.500000px;}
.y7_c01006{bottom:808.500000px;}
.y6_c01006{bottom:835.500000px;}
.y5_c01006{bottom:862.500000px;}
.y4_c01006{bottom:889.500000px;}
.y3_c01006{bottom:916.500000px;}
.y2_c01006{bottom:943.500000px;}
.y1_c01006{bottom:987.000000px;}
.y14_c01006{bottom:1066.500000px;}
.y15_c01006{bottom:1194.000000px;}
.h6_c01006{height:35.312502px;}
.h7_c01006{height:52.968750px;}
.h1_c01006{height:55.224609px;}
.h5_c01006{height:56.074219px;}
.h3_c01006{height:67.746094px;}
.h2_c01006{height:68.250262px;}
.h4_c01006{height:90.328125px;}
.h0_c01006{height:1263.000000px;}
.w0_c01006{width:892.500000px;}
.x0_c01006{left:0.000000px;}
.x1_c01006{left:150.519750px;}
.x2_c01006{left:180.298875px;}
.x3_c01006{left:416.782800px;}
.x4_c01006{left:801.992850px;}
@media print{
.v3_c01006{vertical-align:-29.333333pt;}
.v2_c01006{vertical-align:-20.521067pt;}
.v0_c01006{vertical-align:0.000000pt;}
.v1_c01006{vertical-align:20.521067pt;}
.ls5_c01006{letter-spacing:0.000000pt;}
.ls0_c01006{letter-spacing:0.006933pt;}
.ls4_c01006{letter-spacing:0.010667pt;}
.ls3_c01006{letter-spacing:0.219733pt;}
.ls2_c01006{letter-spacing:1.958400pt;}
.ls1_c01006{letter-spacing:13.824000pt;}
.ws0_c01006{word-spacing:-8.888889pt;}
.ws1_c01006{word-spacing:0.000000pt;}
._16_c01006{margin-left:-6.973512pt;}
._17_c01006{margin-left:-5.012267pt;}
._3_c01006{margin-left:-3.814400pt;}
._5_c01006{margin-left:-2.131200pt;}
._11_c01006{margin-left:-0.934400pt;}
._0_c01006{width:1.395200pt;}
._9_c01006{width:2.566400pt;}
._1_c01006{width:3.782400pt;}
._2_c01006{width:5.158400pt;}
._10_c01006{width:6.124800pt;}
._6_c01006{width:7.379200pt;}
._4_c01006{width:9.043200pt;}
._f_c01006{width:10.361600pt;}
._d_c01006{width:11.648000pt;}
._e_c01006{width:13.337600pt;}
._12_c01006{width:14.336000pt;}
._14_c01006{width:18.841600pt;}
._13_c01006{width:19.993600pt;}
._15_c01006{width:21.011200pt;}
._c_c01006{width:21.996800pt;}
._a_c01006{width:23.347200pt;}
._7_c01006{width:24.448000pt;}
._b_c01006{width:25.862400pt;}
._8_c01006{width:27.910400pt;}
.fs5_c01006{font-size:35.555557pt;}
.fs2_c01006{font-size:42.666667pt;}
.fs4_c01006{font-size:53.333333pt;}
.fs1_c01006{font-size:64.000000pt;}
.fs0_c01006{font-size:69.333333pt;}
.fs3_c01006{font-size:85.333333pt;}
.y0_c01006{bottom:0.000000pt;}
.y16_c01006{bottom:60.000000pt;}
.y1d_c01006{bottom:117.333333pt;}
.y1c_c01006{bottom:142.000000pt;}
.y1b_c01006{bottom:178.666667pt;}
.y1a_c01006{bottom:203.333333pt;}
.y19_c01006{bottom:240.000000pt;}
.y18_c01006{bottom:257.333333pt;}
.y17_c01006{bottom:282.000000pt;}
.y13_c01006{bottom:393.333333pt;}
.y12_c01006{bottom:417.333333pt;}
.y11_c01006{bottom:441.333333pt;}
.y10_c01006{bottom:484.000000pt;}
.yf_c01006{bottom:508.000000pt;}
.ye_c01006{bottom:532.000000pt;}
.yd_c01006{bottom:556.000000pt;}
.yc_c01006{bottom:580.000000pt;}
.yb_c01006{bottom:604.000000pt;}
.ya_c01006{bottom:628.000000pt;}
.y9_c01006{bottom:652.000000pt;}
.y8_c01006{bottom:694.666667pt;}
.y7_c01006{bottom:718.666667pt;}
.y6_c01006{bottom:742.666667pt;}
.y5_c01006{bottom:766.666667pt;}
.y4_c01006{bottom:790.666667pt;}
.y3_c01006{bottom:814.666667pt;}
.y2_c01006{bottom:838.666667pt;}
.y1_c01006{bottom:877.333333pt;}
.y14_c01006{bottom:948.000000pt;}
.y15_c01006{bottom:1061.333333pt;}
.h6_c01006{height:31.388890pt;}
.h7_c01006{height:47.083333pt;}
.h1_c01006{height:49.088542pt;}
.h5_c01006{height:49.843750pt;}
.h3_c01006{height:60.218750pt;}
.h2_c01006{height:60.666900pt;}
.h4_c01006{height:80.291667pt;}
.h0_c01006{height:1122.666667pt;}
.w0_c01006{width:793.333333pt;}
.x0_c01006{left:0.000000pt;}
.x1_c01006{left:133.795333pt;}
.x2_c01006{left:160.265667pt;}
.x3_c01006{left:370.473600pt;}
.x4_c01006{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_184643ab92037d6635dd7b06.woff2')format("woff");}.ff1_c01007{font-family:ff1_c01007;line-height:0.934082;font-style:normal;font-weight:normal;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_94ad695d607eb0cee570219b.woff2')format("woff");}.ff2_c01007{font-family:ff2_c01007;line-height:0.755859;font-style:normal;font-weight:normal;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_c3368c60830bdb4daa3c9bb4.woff2')format("woff");}.ff3_c01007{font-family:ff3_c01007;line-height:1.155762;font-style:normal;font-weight:normal;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_dba2acb824c531ebc014e638.woff2')format("woff");}.ff4_c01007{font-family:ff4_c01007;line-height:1.101562;font-style:normal;font-weight:normal;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_8c7a37ce358a1bf3cc71aac1.woff2')format("woff");}.ff5_c01007{font-family:ff5_c01007;line-height:0.890137;font-style: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);}
.m1_c01007{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3_c01007{vertical-align:-33.000000px;}
.v2_c01007{vertical-align:-23.086200px;}
.v0_c01007{vertical-align:0.000000px;}
.v1_c01007{vertical-align:23.086200px;}
.ls3_c01007{letter-spacing:0.000000px;}
.ls4_c01007{letter-spacing:0.012000px;}
.ls2_c01007{letter-spacing:0.555480px;}
.ls1_c01007{letter-spacing:6.551400px;}
.ls0_c01007{letter-spacing:9.765000px;}
.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;}
}
.ws0_c01007{word-spacing:-10.000001px;}
.ws1_c01007{word-spacing:0.000000px;}
._10_c01007{margin-left:-7.634160px;}
._e_c01007{margin-left:-5.930160px;}
._11_c01007{margin-left:-4.802400px;}
._7_c01007{margin-left:-3.693600px;}
._9_c01007{margin-left:-2.570400px;}
._3_c01007{margin-left:-1.404000px;}
._5_c01007{width:1.274400px;}
._0_c01007{width:2.325600px;}
._b_c01007{width:3.770160px;}
._c_c01007{width:5.028240px;}
._1_c01007{width:6.717600px;}
._6_c01007{width:7.797600px;}
._2_c01007{width:9.108000px;}
._4_c01007{width:10.490400px;}
._a_c01007{width:11.642400px;}
._8_c01007{width:12.758400px;}
._f_c01007{width:14.004000px;}
._12_c01007{width:15.883200px;}
._d_c01007{width:17.599440px;}
._15_c01007{width:18.600240px;}
._13_c01007{width:21.823200px;}
._14_c01007{width:23.613360px;}
._19_c01007{width:24.734640px;}
._18_c01007{width:26.236800px;}
._17_c01007{width:28.497600px;}
._1b_c01007{width:30.758400px;}
._1a_c01007{width:31.924800px;}
._16_c01007{width:33.256800px;}
.fc0_c01007{color:rgb(0,0,0);}
.fs3_c01007{font-size:40.000002px;}
.fs1_c01007{font-size:48.000000px;}
.fs2_c01007{font-size:60.000000px;}
.fs0_c01007{font-size:72.000000px;}
.y0_c01007{bottom:0.000000px;}
.y1c_c01007{bottom:67.500000px;}
.y21_c01007{bottom:132.000000px;}
.y20_c01007{bottom:159.750000px;}
.y1f_c01007{bottom:201.000000px;}
.y1e_c01007{bottom:228.750000px;}
.y1d_c01007{bottom:278.250000px;}
.y1a_c01007{bottom:378.000000px;}
.y19_c01007{bottom:405.000000px;}
.y18_c01007{bottom:432.000000px;}
.y17_c01007{bottom:459.000000px;}
.y16_c01007{bottom:486.000000px;}
.y15_c01007{bottom:513.000000px;}
.y14_c01007{bottom:540.000000px;}
.y13_c01007{bottom:567.000000px;}
.y12_c01007{bottom:615.000000px;}
.y11_c01007{bottom:642.000000px;}
.y10_c01007{bottom:669.000000px;}
.yf_c01007{bottom:696.000000px;}
.ye_c01007{bottom:723.000000px;}
.yd_c01007{bottom:771.000000px;}
.yc_c01007{bottom:798.000000px;}
.yb_c01007{bottom:825.000000px;}
.ya_c01007{bottom:852.000000px;}
.y9_c01007{bottom:879.000000px;}
.y8_c01007{bottom:906.000000px;}
.y7_c01007{bottom:933.000000px;}
.y6_c01007{bottom:960.000000px;}
.y5_c01007{bottom:987.000000px;}
.y4_c01007{bottom:1014.000000px;}
.y3_c01007{bottom:1041.000000px;}
.y2_c01007{bottom:1068.000000px;}
.y1_c01007{bottom:1095.000000px;}
.y1b_c01007{bottom:1194.000000px;}
.h5_c01007{height:35.312502px;}
.h4_c01007{height:44.208984px;}
.h1_c01007{height:51.257812px;}
.h6_c01007{height:52.968750px;}
.h3_c01007{height:56.074219px;}
.h2_c01007{height:57.258075px;}
.h0_c01007{height:1263.000000px;}
.w0_c01007{width:892.500000px;}
.x0_c01007{left:0.000000px;}
.x1_c01007{left:65.480310px;}
@media print{
.v3_c01007{vertical-align:-29.333333pt;}
.v2_c01007{vertical-align:-20.521067pt;}
.v0_c01007{vertical-align:0.000000pt;}
.v1_c01007{vertical-align:20.521067pt;}
.ls3_c01007{letter-spacing:0.000000pt;}
.ls4_c01007{letter-spacing:0.010667pt;}
.ls2_c01007{letter-spacing:0.493760pt;}
.ls1_c01007{letter-spacing:5.823467pt;}
.ls0_c01007{letter-spacing:8.680000pt;}
.ws0_c01007{word-spacing:-8.888889pt;}
.ws1_c01007{word-spacing:0.000000pt;}
._10_c01007{margin-left:-6.785920pt;}
._e_c01007{margin-left:-5.271253pt;}
._11_c01007{margin-left:-4.268800pt;}
._7_c01007{margin-left:-3.283200pt;}
._9_c01007{margin-left:-2.284800pt;}
._3_c01007{margin-left:-1.248000pt;}
._5_c01007{width:1.132800pt;}
._0_c01007{width:2.067200pt;}
._b_c01007{width:3.351253pt;}
._c_c01007{width:4.469547pt;}
._1_c01007{width:5.971200pt;}
._6_c01007{width:6.931200pt;}
._2_c01007{width:8.096000pt;}
._4_c01007{width:9.324800pt;}
._a_c01007{width:10.348800pt;}
._8_c01007{width:11.340800pt;}
._f_c01007{width:12.448000pt;}
._12_c01007{width:14.118400pt;}
._d_c01007{width:15.643947pt;}
._15_c01007{width:16.533547pt;}
._13_c01007{width:19.398400pt;}
._14_c01007{width:20.989653pt;}
._19_c01007{width:21.986347pt;}
._18_c01007{width:23.321600pt;}
._17_c01007{width:25.331200pt;}
._1b_c01007{width:27.340800pt;}
._1a_c01007{width:28.377600pt;}
._16_c01007{width:29.561600pt;}
.fs3_c01007{font-size:35.555557pt;}
.fs1_c01007{font-size:42.666667pt;}
.fs2_c01007{font-size:53.333333pt;}
.fs0_c01007{font-size:64.000000pt;}
.y0_c01007{bottom:0.000000pt;}
.y1c_c01007{bottom:60.000000pt;}
.y21_c01007{bottom:117.333333pt;}
.y20_c01007{bottom:142.000000pt;}
.y1f_c01007{bottom:178.666667pt;}
.y1e_c01007{bottom:203.333333pt;}
.y1d_c01007{bottom:247.333333pt;}
.y1a_c01007{bottom:336.000000pt;}
.y19_c01007{bottom:360.000000pt;}
.y18_c01007{bottom:384.000000pt;}
.y17_c01007{bottom:408.000000pt;}
.y16_c01007{bottom:432.000000pt;}
.y15_c01007{bottom:456.000000pt;}
.y14_c01007{bottom:480.000000pt;}
.y13_c01007{bottom:504.000000pt;}
.y12_c01007{bottom:546.666667pt;}
.y11_c01007{bottom:570.666667pt;}
.y10_c01007{bottom:594.666667pt;}
.yf_c01007{bottom:618.666667pt;}
.ye_c01007{bottom:642.666667pt;}
.yd_c01007{bottom:685.333333pt;}
.yc_c01007{bottom:709.333333pt;}
.yb_c01007{bottom:733.333333pt;}
.ya_c01007{bottom:757.333333pt;}
.y9_c01007{bottom:781.333333pt;}
.y8_c01007{bottom:805.333333pt;}
.y7_c01007{bottom:829.333333pt;}
.y6_c01007{bottom:853.333333pt;}
.y5_c01007{bottom:877.333333pt;}
.y4_c01007{bottom:901.333333pt;}
.y3_c01007{bottom:925.333333pt;}
.y2_c01007{bottom:949.333333pt;}
.y1_c01007{bottom:973.333333pt;}
.y1b_c01007{bottom:1061.333333pt;}
.h5_c01007{height:31.388890pt;}
.h4_c01007{height:39.296875pt;}
.h1_c01007{height:45.562500pt;}
.h6_c01007{height:47.083333pt;}
.h3_c01007{height:49.843750pt;}
.h2_c01007{height:50.896067pt;}
.h0_c01007{height:1122.666667pt;}
.w0_c01007{width:793.333333pt;}
.x0_c01007{left:0.000000pt;}
.x1_c01007{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b80c7d4a6a60e9b05638bad1.woff2')format("woff");}.ff1_c01008{font-family:ff1_c01008;line-height:0.939453;font-style:normal;font-weight:normal;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_b2aad33fc37ae890f84d52a0.woff2')format("woff");}.ff2_c01008{font-family:ff2_c01008;line-height:0.934082;font-style:normal;font-weight:normal;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_37433f2f1e5bb8b113109c4a.woff2')format("woff");}.ff3_c01008{font-family:ff3_c01008;line-height:0.987793;font-style:normal;font-weight:normal;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_0f537d42c42761746dbe82dd.woff2')format("woff");}.ff4_c01008{font-family:ff4_c01008;line-height:1.155762;font-style:normal;font-weight:normal;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_d803c9180c20b60ae4aaf458.woff2')format("woff");}.ff5_c01008{font-family:ff5_c01008;line-height:1.100586;font-style:normal;font-weight: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_c01008;src:url('chunks/assets/font_467c1ea636abaea679f0b860.woff2')format("woff");}.ff6_c01008{font-family:ff6_c01008;line-height:0.888672;font-style: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);}
.v3_c01008{vertical-align:-33.000000px;}
.v2_c01008{vertical-align:-23.086200px;}
.v0_c01008{vertical-align:0.000000px;}
.v1_c01008{vertical-align:23.086200px;}
.ls5_c01008{letter-spacing:0.000000px;}
.ls1_c01008{letter-spacing:0.007200px;}
.ls0_c01008{letter-spacing:0.007800px;}
.ls3_c01008{letter-spacing:0.012000px;}
.ls7_c01008{letter-spacing:0.016200px;}
.ls6_c01008{letter-spacing:0.021600px;}
.ls4_c01008{letter-spacing:3.999999px;}
.ls2_c01008{letter-spacing:23.577600px;}
.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;}
}
.ws0_c01008{word-spacing:-19.800000px;}
.ws1_c01008{word-spacing:0.000000px;}
._12_c01008{margin-left:-5.392800px;}
._5_c01008{margin-left:-3.448800px;}
._6_c01008{margin-left:-2.224800px;}
._7_c01008{margin-left:-1.058400px;}
._0_c01008{width:1.368000px;}
._3_c01008{width:2.700000px;}
._d_c01008{width:4.046400px;}
._a_c01008{width:5.918400px;}
._9_c01008{width:7.286400px;}
._c_c01008{width:8.352000px;}
._b_c01008{width:9.482400px;}
._8_c01008{width:10.706400px;}
._11_c01008{width:12.045600px;}
._4_c01008{width:13.068000px;}
._1_c01008{width:14.428800px;}
._2_c01008{width:15.746400px;}
._f_c01008{width:16.992000px;}
._e_c01008{width:18.590400px;}
._10_c01008{width:23.678400px;}
.fc0_c01008{color:rgb(0,0,0);}
.fs5_c01008{font-size:40.000002px;}
.fs2_c01008{font-size:48.000000px;}
.fs3_c01008{font-size:54.000000px;}
.fs4_c01008{font-size:60.000000px;}
.fs1_c01008{font-size:72.000000px;}
.fs0_c01008{font-size:78.000000px;}
.y0_c01008{bottom:0.000000px;}
.y12_c01008{bottom:10.500000px;}
.y11_c01008{bottom:28.500000px;}
.y14_c01008{bottom:67.500000px;}
.y16_c01008{bottom:132.000000px;}
.y15_c01008{bottom:159.750000px;}
.y10_c01008{bottom:277.500000px;}
.yf_c01008{bottom:616.500000px;}
.ye_c01008{bottom:643.500000px;}
.yd_c01008{bottom:670.500000px;}
.yc_c01008{bottom:697.500000px;}
.yb_c01008{bottom:724.500000px;}
.ya_c01008{bottom:772.500000px;}
.y9_c01008{bottom:799.500000px;}
.y8_c01008{bottom:826.500000px;}
.y7_c01008{bottom:853.500000px;}
.y6_c01008{bottom:901.500000px;}
.y5_c01008{bottom:928.500000px;}
.y4_c01008{bottom:955.500000px;}
.y3_c01008{bottom:982.500000px;}
.y2_c01008{bottom:1029.000000px;}
.y1_c01008{bottom:1093.500000px;}
.y13_c01008{bottom:1194.000000px;}
.h8_c01008{height:35.312502px;}
.h6_c01008{height:42.292969px;}
.h3_c01008{height:51.257812px;}
.h2_c01008{height:51.785156px;}
.h9_c01008{height:52.968750px;}
.h7_c01008{height:56.074219px;}
.h1_c01008{height:56.100586px;}
.h4_c01008{height:57.258075px;}
.h5_c01008{height:307.500000px;}
.h0_c01008{height:1263.000000px;}
.w1_c01008{width:676.500000px;}
.w0_c01008{width:892.500000px;}
.x0_c01008{left:0.000000px;}
.x2_c01008{left:19.068600px;}
.x1_c01008{left:150.519750px;}
.x3_c01008{left:318.982200px;}
.x4_c01008{left:416.782800px;}
.x5_c01008{left:801.992850px;}
@media print{
.v3_c01008{vertical-align:-29.333333pt;}
.v2_c01008{vertical-align:-20.521067pt;}
.v0_c01008{vertical-align:0.000000pt;}
.v1_c01008{vertical-align:20.521067pt;}
.ls5_c01008{letter-spacing:0.000000pt;}
.ls1_c01008{letter-spacing:0.006400pt;}
.ls0_c01008{letter-spacing:0.006933pt;}
.ls3_c01008{letter-spacing:0.010667pt;}
.ls7_c01008{letter-spacing:0.014400pt;}
.ls6_c01008{letter-spacing:0.019200pt;}
.ls4_c01008{letter-spacing:3.555555pt;}
.ls2_c01008{letter-spacing:20.957867pt;}
.ws0_c01008{word-spacing:-17.600000pt;}
.ws1_c01008{word-spacing:0.000000pt;}
._12_c01008{margin-left:-4.793600pt;}
._5_c01008{margin-left:-3.065600pt;}
._6_c01008{margin-left:-1.977600pt;}
._7_c01008{margin-left:-0.940800pt;}
._0_c01008{width:1.216000pt;}
._3_c01008{width:2.400000pt;}
._d_c01008{width:3.596800pt;}
._a_c01008{width:5.260800pt;}
._9_c01008{width:6.476800pt;}
._c_c01008{width:7.424000pt;}
._b_c01008{width:8.428800pt;}
._8_c01008{width:9.516800pt;}
._11_c01008{width:10.707200pt;}
._4_c01008{width:11.616000pt;}
._1_c01008{width:12.825600pt;}
._2_c01008{width:13.996800pt;}
._f_c01008{width:15.104000pt;}
._e_c01008{width:16.524800pt;}
._10_c01008{width:21.047467pt;}
.fs5_c01008{font-size:35.555557pt;}
.fs2_c01008{font-size:42.666667pt;}
.fs3_c01008{font-size:48.000000pt;}
.fs4_c01008{font-size:53.333333pt;}
.fs1_c01008{font-size:64.000000pt;}
.fs0_c01008{font-size:69.333333pt;}
.y0_c01008{bottom:0.000000pt;}
.y12_c01008{bottom:9.333333pt;}
.y11_c01008{bottom:25.333333pt;}
.y14_c01008{bottom:60.000000pt;}
.y16_c01008{bottom:117.333333pt;}
.y15_c01008{bottom:142.000000pt;}
.y10_c01008{bottom:246.666667pt;}
.yf_c01008{bottom:548.000000pt;}
.ye_c01008{bottom:572.000000pt;}
.yd_c01008{bottom:596.000000pt;}
.yc_c01008{bottom:620.000000pt;}
.yb_c01008{bottom:644.000000pt;}
.ya_c01008{bottom:686.666667pt;}
.y9_c01008{bottom:710.666667pt;}
.y8_c01008{bottom:734.666667pt;}
.y7_c01008{bottom:758.666667pt;}
.y6_c01008{bottom:801.333333pt;}
.y5_c01008{bottom:825.333333pt;}
.y4_c01008{bottom:849.333333pt;}
.y3_c01008{bottom:873.333333pt;}
.y2_c01008{bottom:914.666667pt;}
.y1_c01008{bottom:972.000000pt;}
.y13_c01008{bottom:1061.333333pt;}
.h8_c01008{height:31.388890pt;}
.h6_c01008{height:37.593750pt;}
.h3_c01008{height:45.562500pt;}
.h2_c01008{height:46.031250pt;}
.h9_c01008{height:47.083333pt;}
.h7_c01008{height:49.843750pt;}
.h1_c01008{height:49.867188pt;}
.h4_c01008{height:50.896067pt;}
.h5_c01008{height:273.333333pt;}
.h0_c01008{height:1122.666667pt;}
.w1_c01008{width:601.333333pt;}
.w0_c01008{width:793.333333pt;}
.x0_c01008{left:0.000000pt;}
.x2_c01008{left:16.949867pt;}
.x1_c01008{left:133.795333pt;}
.x3_c01008{left:283.539733pt;}
.x4_c01008{left:370.473600pt;}
.x5_c01008{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_11b227f18225f1df64872db3.woff2')format("woff");}.ff1_c01009{font-family:ff1_c01009;line-height:0.976074;font-style:normal;font-weight:normal;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_0747fc8c63c473bb658594e8.woff2')format("woff");}.ff2_c01009{font-family:ff2_c01009;line-height:0.925293;font-style:normal;font-weight:normal;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_c4e78fda70d283de853bd708.woff2')format("woff");}.ff3_c01009{font-family:ff3_c01009;line-height:0.755859;font-style:normal;font-weight:normal;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_96730a19d1a35cad6ac28979.woff2')format("woff");}.ff4_c01009{font-family:ff4_c01009;line-height:1.155762;font-style: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);}
.v0_c01009{vertical-align:0.000000px;}
.ls0_c01009{letter-spacing:0.000000px;}
.ls2_c01009{letter-spacing:0.012000px;}
.ls1_c01009{letter-spacing:0.021600px;}
.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;}
}
.ws0_c01009{word-spacing:0.000000px;}
._0_c01009{margin-left:-3.216000px;}
.fc0_c01009{color:rgb(0,0,0);}
.fs0_c01009{font-size:54.000000px;}
.fs2_c01009{font-size:60.000000px;}
.fs1_c01009{font-size:72.000000px;}
.y0_c01009{bottom:0.000000px;}
.y2_c01009{bottom:12.000000px;}
.y6_c01009{bottom:67.500000px;}
.y4_c01009{bottom:141.000000px;}
.y3_c01009{bottom:570.000000px;}
.y1_c01009{bottom:615.000000px;}
.y5_c01009{bottom:1194.000000px;}
.h2_c01009{height:42.292969px;}
.h6_c01009{height:44.208984px;}
.h3_c01009{height:50.765625px;}
.h5_c01009{height:56.074219px;}
.h4_c01009{height:397.500000px;}
.h1_c01009{height:498.000000px;}
.h0_c01009{height:1263.000000px;}
.w1_c01009{width:676.500000px;}
.w0_c01009{width:892.500000px;}
.x0_c01009{left:0.000000px;}
.x1_c01009{left:66.000000px;}
.x2_c01009{left:145.706910px;}
.x3_c01009{left:250.743900px;}
@media print{
.v0_c01009{vertical-align:0.000000pt;}
.ls0_c01009{letter-spacing:0.000000pt;}
.ls2_c01009{letter-spacing:0.010667pt;}
.ls1_c01009{letter-spacing:0.019200pt;}
.ws0_c01009{word-spacing:0.000000pt;}
._0_c01009{margin-left:-2.858667pt;}
.fs0_c01009{font-size:48.000000pt;}
.fs2_c01009{font-size:53.333333pt;}
.fs1_c01009{font-size:64.000000pt;}
.y0_c01009{bottom:0.000000pt;}
.y2_c01009{bottom:10.666667pt;}
.y6_c01009{bottom:60.000000pt;}
.y4_c01009{bottom:125.333333pt;}
.y3_c01009{bottom:506.666667pt;}
.y1_c01009{bottom:546.666667pt;}
.y5_c01009{bottom:1061.333333pt;}
.h2_c01009{height:37.593750pt;}
.h6_c01009{height:39.296875pt;}
.h3_c01009{height:45.125000pt;}
.h5_c01009{height:49.843750pt;}
.h4_c01009{height:353.333333pt;}
.h1_c01009{height:442.666667pt;}
.h0_c01009{height:1122.666667pt;}
.w1_c01009{width:601.333333pt;}
.w0_c01009{width:793.333333pt;}
.x0_c01009{left:0.000000pt;}
.x1_c01009{left:58.666667pt;}
.x2_c01009{left:129.517253pt;}
.x3_c01009{left:222.883467pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_07f6bf0620fed9121db78536.woff2')format("woff");}.ff1_c01010{font-family:ff1_c01010;line-height:0.933105;font-style:normal;font-weight:normal;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_f50d14673d9705c601ca7fcc.woff2')format("woff");}.ff2_c01010{font-family:ff2_c01010;line-height:0.976074;font-style:normal;font-weight:normal;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_a9f716b23cdbcaf73f34457f.woff2')format("woff");}.ff3_c01010{font-family:ff3_c01010;line-height:1.155762;font-style: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);}
.v0_c01010{vertical-align:0.000000px;}
.ls1_c01010{letter-spacing:0.000000px;}
.ls0_c01010{letter-spacing:0.012000px;}
.ls2_c01010{letter-spacing:0.021600px;}
.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;}
}
.ws0_c01010{word-spacing:0.000000px;}
._1_c01010{margin-left:-4.363200px;}
._4_c01010{margin-left:-2.390400px;}
._6_c01010{width:1.980000px;}
._0_c01010{width:3.189600px;}
._3_c01010{width:4.197600px;}
._5_c01010{width:6.076800px;}
._2_c01010{width:7.560000px;}
.fc0_c01010{color:rgb(0,0,0);}
.fs1_c01010{font-size:54.000000px;}
.fs2_c01010{font-size:60.000000px;}
.fs0_c01010{font-size:72.000000px;}
.y0_c01010{bottom:0.000000px;}
.y4_c01010{bottom:12.000000px;}
.y7_c01010{bottom:67.500000px;}
.y5_c01010{bottom:132.000000px;}
.y3_c01010{bottom:631.500000px;}
.y2_c01010{bottom:1068.000000px;}
.y1_c01010{bottom:1095.000000px;}
.y6_c01010{bottom:1194.000000px;}
.h3_c01010{height:42.292969px;}
.h1_c01010{height:51.187500px;}
.h5_c01010{height:56.074219px;}
.h2_c01010{height:405.000000px;}
.h4_c01010{height:433.500000px;}
.h0_c01010{height:1263.000000px;}
.w1_c01010{width:676.500000px;}
.w0_c01010{width:892.500000px;}
.x0_c01010{left:0.000000px;}
.x3_c01010{left:110.826420px;}
.x2_c01010{left:123.710085px;}
.x1_c01010{left:150.519750px;}
.x4_c01010{left:416.782800px;}
.x5_c01010{left:801.992850px;}
@media print{
.v0_c01010{vertical-align:0.000000pt;}
.ls1_c01010{letter-spacing:0.000000pt;}
.ls0_c01010{letter-spacing:0.010667pt;}
.ls2_c01010{letter-spacing:0.019200pt;}
.ws0_c01010{word-spacing:0.000000pt;}
._1_c01010{margin-left:-3.878400pt;}
._4_c01010{margin-left:-2.124800pt;}
._6_c01010{width:1.760000pt;}
._0_c01010{width:2.835200pt;}
._3_c01010{width:3.731200pt;}
._5_c01010{width:5.401600pt;}
._2_c01010{width:6.720000pt;}
.fs1_c01010{font-size:48.000000pt;}
.fs2_c01010{font-size:53.333333pt;}
.fs0_c01010{font-size:64.000000pt;}
.y0_c01010{bottom:0.000000pt;}
.y4_c01010{bottom:10.666667pt;}
.y7_c01010{bottom:60.000000pt;}
.y5_c01010{bottom:117.333333pt;}
.y3_c01010{bottom:561.333333pt;}
.y2_c01010{bottom:949.333333pt;}
.y1_c01010{bottom:973.333333pt;}
.y6_c01010{bottom:1061.333333pt;}
.h3_c01010{height:37.593750pt;}
.h1_c01010{height:45.500000pt;}
.h5_c01010{height:49.843750pt;}
.h2_c01010{height:360.000000pt;}
.h4_c01010{height:385.333333pt;}
.h0_c01010{height:1122.666667pt;}
.w1_c01010{width:601.333333pt;}
.w0_c01010{width:793.333333pt;}
.x0_c01010{left:0.000000pt;}
.x3_c01010{left:98.512373pt;}
.x2_c01010{left:109.964520pt;}
.x1_c01010{left:133.795333pt;}
.x4_c01010{left:370.473600pt;}
.x5_c01010{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4d97d6cb38c1643e72763bc3.woff2')format("woff");}.ff1_c01011{font-family:ff1_c01011;line-height:0.976074;font-style:normal;font-weight:normal;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_c1991b3e4db6eb7f0d5702d2.woff2')format("woff");}.ff2_c01011{font-family:ff2_c01011;line-height:1.163086;font-style:normal;font-weight:normal;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_3f3d0f5de87cf42464b5c8f2.woff2')format("woff");}.ff3_c01011{font-family:ff3_c01011;line-height:0.756836;font-style:normal;font-weight:normal;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_bd1b6b7d37283291a6bcfdd0.woff2')format("woff");}.ff4_c01011{font-family:ff4_c01011;line-height:1.155762;font-style: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;}
.ls1_c01011{letter-spacing:0.000000px;}
.ls2_c01011{letter-spacing:0.012000px;}
.ls0_c01011{letter-spacing:0.021600px;}
.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;}
}
.ws0_c01011{word-spacing:0.000000px;}
._9_c01011{margin-left:-5.068800px;}
._7_c01011{margin-left:-2.880000px;}
._1_c01011{margin-left:-1.454400px;}
._b_c01011{width:1.267200px;}
._3_c01011{width:2.282400px;}
._5_c01011{width:3.621600px;}
._c_c01011{width:4.824000px;}
._a_c01011{width:5.889600px;}
._d_c01011{width:8.071200px;}
._6_c01011{width:11.397600px;}
._4_c01011{width:12.722400px;}
._e_c01011{width:13.824000px;}
._0_c01011{width:14.997600px;}
._2_c01011{width:16.459200px;}
._8_c01011{width:17.856000px;}
._11_c01011{width:21.002400px;}
._10_c01011{width:22.600800px;}
._f_c01011{width:24.919200px;}
.fc0_c01011{color:rgb(0,0,0);}
.fs0_c01011{font-size:54.000000px;}
.fs2_c01011{font-size:60.000000px;}
.fs1_c01011{font-size:72.000000px;}
.y0_c01011{bottom:0.000000px;}
.y3_c01011{bottom:10.500000px;}
.y2_c01011{bottom:28.500000px;}
.y11_c01011{bottom:67.500000px;}
.yf_c01011{bottom:228.000000px;}
.ye_c01011{bottom:255.000000px;}
.yd_c01011{bottom:282.000000px;}
.yc_c01011{bottom:309.000000px;}
.yb_c01011{bottom:336.000000px;}
.ya_c01011{bottom:384.000000px;}
.y9_c01011{bottom:411.000000px;}
.y8_c01011{bottom:438.000000px;}
.y7_c01011{bottom:465.000000px;}
.y6_c01011{bottom:492.000000px;}
.y5_c01011{bottom:519.000000px;}
.y4_c01011{bottom:546.000000px;}
.y1_c01011{bottom:570.000000px;}
.y10_c01011{bottom:1194.000000px;}
.h2_c01011{height:42.292969px;}
.h5_c01011{height:44.208984px;}
.h4_c01011{height:56.074219px;}
.h3_c01011{height:67.746094px;}
.h1_c01011{height:543.000000px;}
.h0_c01011{height:1263.000000px;}
.w1_c01011{width:676.500000px;}
.w0_c01011{width:892.500000px;}
.x0_c01011{left:0.000000px;}
.x2_c01011{left:17.832645px;}
.x1_c01011{left:66.000000px;}
.x3_c01011{left:149.233515px;}
@media print{
.v0_c01011{vertical-align:0.000000pt;}
.ls1_c01011{letter-spacing:0.000000pt;}
.ls2_c01011{letter-spacing:0.010667pt;}
.ls0_c01011{letter-spacing:0.019200pt;}
.ws0_c01011{word-spacing:0.000000pt;}
._9_c01011{margin-left:-4.505600pt;}
._7_c01011{margin-left:-2.560000pt;}
._1_c01011{margin-left:-1.292800pt;}
._b_c01011{width:1.126400pt;}
._3_c01011{width:2.028800pt;}
._5_c01011{width:3.219200pt;}
._c_c01011{width:4.288000pt;}
._a_c01011{width:5.235200pt;}
._d_c01011{width:7.174400pt;}
._6_c01011{width:10.131200pt;}
._4_c01011{width:11.308800pt;}
._e_c01011{width:12.288000pt;}
._0_c01011{width:13.331200pt;}
._2_c01011{width:14.630400pt;}
._8_c01011{width:15.872000pt;}
._11_c01011{width:18.668800pt;}
._10_c01011{width:20.089600pt;}
._f_c01011{width:22.150400pt;}
.fs0_c01011{font-size:48.000000pt;}
.fs2_c01011{font-size:53.333333pt;}
.fs1_c01011{font-size:64.000000pt;}
.y0_c01011{bottom:0.000000pt;}
.y3_c01011{bottom:9.333333pt;}
.y2_c01011{bottom:25.333333pt;}
.y11_c01011{bottom:60.000000pt;}
.yf_c01011{bottom:202.666667pt;}
.ye_c01011{bottom:226.666667pt;}
.yd_c01011{bottom:250.666667pt;}
.yc_c01011{bottom:274.666667pt;}
.yb_c01011{bottom:298.666667pt;}
.ya_c01011{bottom:341.333333pt;}
.y9_c01011{bottom:365.333333pt;}
.y8_c01011{bottom:389.333333pt;}
.y7_c01011{bottom:413.333333pt;}
.y6_c01011{bottom:437.333333pt;}
.y5_c01011{bottom:461.333333pt;}
.y4_c01011{bottom:485.333333pt;}
.y1_c01011{bottom:506.666667pt;}
.y10_c01011{bottom:1061.333333pt;}
.h2_c01011{height:37.593750pt;}
.h5_c01011{height:39.296875pt;}
.h4_c01011{height:49.843750pt;}
.h3_c01011{height:60.218750pt;}
.h1_c01011{height:482.666667pt;}
.h0_c01011{height:1122.666667pt;}
.w1_c01011{width:601.333333pt;}
.w0_c01011{width:793.333333pt;}
.x0_c01011{left:0.000000pt;}
.x2_c01011{left:15.851240pt;}
.x1_c01011{left:58.666667pt;}
.x3_c01011{left:132.652013pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_553923e41551b9b1ab9061e6.woff2')format("woff");}.ff1_c01012{font-family:ff1_c01012;line-height:0.987793;font-style:normal;font-weight:normal;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_55660c811a486da1eed237fd.woff2')format("woff");}.ff2_c01012{font-family:ff2_c01012;line-height:1.155762;font-style: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);}
.v0_c01012{vertical-align:0.000000px;}
.ls2_c01012{letter-spacing:0.000000px;}
.ls0_c01012{letter-spacing:0.012000px;}
.ls1_c01012{letter-spacing:0.021600px;}
.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;}
}
.ws0_c01012{word-spacing:0.000000px;}
._0_c01012{margin-left:-3.426000px;}
.fc0_c01012{color:rgb(0,0,0);}
.fs0_c01012{font-size:54.000000px;}
.fs1_c01012{font-size:60.000000px;}
.y0_c01012{bottom:0.000000px;}
.y5_c01012{bottom:10.500000px;}
.y2_c01012{bottom:12.000000px;}
.y4_c01012{bottom:28.500000px;}
.y7_c01012{bottom:67.500000px;}
.y3_c01012{bottom:223.500000px;}
.y1_c01012{bottom:738.000000px;}
.y6_c01012{bottom:1194.000000px;}
.h2_c01012{height:42.292969px;}
.h4_c01012{height:56.074219px;}
.h1_c01012{height:375.000000px;}
.h3_c01012{height:486.000000px;}
.h0_c01012{height:1263.000000px;}
.w1_c01012{width:676.500000px;}
.w0_c01012{width:892.500000px;}
.x0_c01012{left:0.000000px;}
.x3_c01012{left:11.132081px;}
.x4_c01012{left:96.604620px;}
.x1_c01012{left:150.000000px;}
.x2_c01012{left:256.211700px;}
.x5_c01012{left:416.782800px;}
.x6_c01012{left:801.992850px;}
@media print{
.v0_c01012{vertical-align:0.000000pt;}
.ls2_c01012{letter-spacing:0.000000pt;}
.ls0_c01012{letter-spacing:0.010667pt;}
.ls1_c01012{letter-spacing:0.019200pt;}
.ws0_c01012{word-spacing:0.000000pt;}
._0_c01012{margin-left:-3.045333pt;}
.fs0_c01012{font-size:48.000000pt;}
.fs1_c01012{font-size:53.333333pt;}
.y0_c01012{bottom:0.000000pt;}
.y5_c01012{bottom:9.333333pt;}
.y2_c01012{bottom:10.666667pt;}
.y4_c01012{bottom:25.333333pt;}
.y7_c01012{bottom:60.000000pt;}
.y3_c01012{bottom:198.666667pt;}
.y1_c01012{bottom:656.000000pt;}
.y6_c01012{bottom:1061.333333pt;}
.h2_c01012{height:37.593750pt;}
.h4_c01012{height:49.843750pt;}
.h1_c01012{height:333.333333pt;}
.h3_c01012{height:432.000000pt;}
.h0_c01012{height:1122.666667pt;}
.w1_c01012{width:601.333333pt;}
.w0_c01012{width:793.333333pt;}
.x0_c01012{left:0.000000pt;}
.x3_c01012{left:9.895183pt;}
.x4_c01012{left:85.870773pt;}
.x1_c01012{left:133.333333pt;}
.x2_c01012{left:227.743733pt;}
.x5_c01012{left:370.473600pt;}
.x6_c01012{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_31eec5da630188427c88196e.woff2')format("woff");}.ff1_c01013{font-family:ff1_c01013;line-height:0.963867;font-style:normal;font-weight:normal;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_626b95bc049bcc28780e4556.woff2')format("woff");}.ff2_c01013{font-family:ff2_c01013;line-height:0.934082;font-style:normal;font-weight:normal;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_dd420898d97d249b36924825.woff2')format("woff");}.ff3_c01013{font-family:ff3_c01013;line-height:0.755859;font-style:normal;font-weight:normal;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_7e670e9ca25d932e904de784.woff2')format("woff");}.ff4_c01013{font-family:ff4_c01013;line-height:1.155762;font-style: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;}
.ls0_c01013{letter-spacing:0.000000px;}
.ls1_c01013{letter-spacing:0.012000px;}
.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:0.000000px;}
._8_c01013{margin-left:-4.276800px;}
._1_c01013{margin-left:-2.664000px;}
._3_c01013{margin-left:-1.101600px;}
._7_c01013{width:1.900800px;}
._5_c01013{width:2.937600px;}
._9_c01013{width:4.536000px;}
._d_c01013{width:5.983200px;}
._6_c01013{width:8.042400px;}
._0_c01013{width:10.951200px;}
._4_c01013{width:12.088800px;}
._2_c01013{width:13.644000px;}
._e_c01013{width:14.868000px;}
._c_c01013{width:16.272000px;}
._a_c01013{width:18.619200px;}
._b_c01013{width:23.486400px;}
.fc0_c01013{color:rgb(0,0,0);}
.fs0_c01013{font-size:54.000000px;}
.fs2_c01013{font-size:60.000000px;}
.fs1_c01013{font-size:72.000000px;}
.y0_c01013{bottom:0.000000px;}
.y2_c01013{bottom:12.000000px;}
.y9_c01013{bottom:67.500000px;}
.y7_c01013{bottom:138.000000px;}
.y6_c01013{bottom:165.000000px;}
.y5_c01013{bottom:192.000000px;}
.y4_c01013{bottom:219.000000px;}
.y3_c01013{bottom:246.000000px;}
.y1_c01013{bottom:270.000000px;}
.y8_c01013{bottom:1194.000000px;}
.h2_c01013{height:41.633789px;}
.h5_c01013{height:44.208984px;}
.h3_c01013{height:51.257812px;}
.h4_c01013{height:56.074219px;}
.h1_c01013{height:843.000000px;}
.h0_c01013{height:1263.000000px;}
.w1_c01013{width:676.500000px;}
.w0_c01013{width:892.500000px;}
.x0_c01013{left:0.000000px;}
.x1_c01013{left:66.000000px;}
.x2_c01013{left:263.775900px;}
@media print{
.v0_c01013{vertical-align:0.000000pt;}
.ls0_c01013{letter-spacing:0.000000pt;}
.ls1_c01013{letter-spacing:0.010667pt;}
.ws0_c01013{word-spacing:0.000000pt;}
._8_c01013{margin-left:-3.801600pt;}
._1_c01013{margin-left:-2.368000pt;}
._3_c01013{margin-left:-0.979200pt;}
._7_c01013{width:1.689600pt;}
._5_c01013{width:2.611200pt;}
._9_c01013{width:4.032000pt;}
._d_c01013{width:5.318400pt;}
._6_c01013{width:7.148800pt;}
._0_c01013{width:9.734400pt;}
._4_c01013{width:10.745600pt;}
._2_c01013{width:12.128000pt;}
._e_c01013{width:13.216000pt;}
._c_c01013{width:14.464000pt;}
._a_c01013{width:16.550400pt;}
._b_c01013{width:20.876800pt;}
.fs0_c01013{font-size:48.000000pt;}
.fs2_c01013{font-size:53.333333pt;}
.fs1_c01013{font-size:64.000000pt;}
.y0_c01013{bottom:0.000000pt;}
.y2_c01013{bottom:10.666667pt;}
.y9_c01013{bottom:60.000000pt;}
.y7_c01013{bottom:122.666667pt;}
.y6_c01013{bottom:146.666667pt;}
.y5_c01013{bottom:170.666667pt;}
.y4_c01013{bottom:194.666667pt;}
.y3_c01013{bottom:218.666667pt;}
.y1_c01013{bottom:240.000000pt;}
.y8_c01013{bottom:1061.333333pt;}
.h2_c01013{height:37.007812pt;}
.h5_c01013{height:39.296875pt;}
.h3_c01013{height:45.562500pt;}
.h4_c01013{height:49.843750pt;}
.h1_c01013{height:749.333333pt;}
.h0_c01013{height:1122.666667pt;}
.w1_c01013{width:601.333333pt;}
.w0_c01013{width:793.333333pt;}
.x0_c01013{left:0.000000pt;}
.x1_c01013{left:58.666667pt;}
.x2_c01013{left:234.467467pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f6c2500dfb77d5deda038965.woff2')format("woff");}.ff1_c01014{font-family:ff1_c01014;line-height:0.987793;font-style:normal;font-weight:normal;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_2d3dc8b93da4e56f5063c805.woff2')format("woff");}.ff2_c01014{font-family:ff2_c01014;line-height:0.934082;font-style:normal;font-weight:normal;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_55c92ba52085d68435b53ede.woff2')format("woff");}.ff3_c01014{font-family:ff3_c01014;line-height:1.155762;font-style: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);}
.v0_c01014{vertical-align:0.000000px;}
.ls2_c01014{letter-spacing:0.000000px;}
.ls0_c01014{letter-spacing:0.012000px;}
.ls1_c01014{letter-spacing:0.021600px;}
.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;}
}
.ws0_c01014{word-spacing:-19.800000px;}
.ws1_c01014{word-spacing:0.000000px;}
._1_c01014{margin-left:-3.744000px;}
._3_c01014{margin-left:-2.080800px;}
._4_c01014{width:1.519200px;}
._0_c01014{width:3.751200px;}
._9_c01014{width:14.097600px;}
._a_c01014{width:15.616800px;}
._b_c01014{width:17.431200px;}
._8_c01014{width:18.540000px;}
._7_c01014{width:21.528000px;}
._5_c01014{width:23.256000px;}
._6_c01014{width:24.350400px;}
._2_c01014{width:25.509600px;}
.fc0_c01014{color:rgb(0,0,0);}
.fs0_c01014{font-size:54.000000px;}
.fs2_c01014{font-size:60.000000px;}
.fs1_c01014{font-size:72.000000px;}
.y0_c01014{bottom:0.000000px;}
.y2_c01014{bottom:12.000000px;}
.ya_c01014{bottom:67.500000px;}
.y8_c01014{bottom:141.000000px;}
.y7_c01014{bottom:168.000000px;}
.y6_c01014{bottom:195.000000px;}
.y5_c01014{bottom:240.000000px;}
.y4_c01014{bottom:679.500000px;}
.y3_c01014{bottom:706.500000px;}
.y1_c01014{bottom:751.500000px;}
.y9_c01014{bottom:1194.000000px;}
.h2_c01014{height:42.292969px;}
.h3_c01014{height:51.257812px;}
.h5_c01014{height:56.074219px;}
.h1_c01014{height:361.500000px;}
.h4_c01014{height:408.000000px;}
.h0_c01014{height:1263.000000px;}
.w1_c01014{width:676.500000px;}
.w0_c01014{width:892.500000px;}
.x0_c01014{left:0.000000px;}
.x3_c01014{left:61.645020px;}
.x1_c01014{left:150.000000px;}
.x2_c01014{left:265.473300px;}
.x4_c01014{left:416.782800px;}
.x5_c01014{left:801.992850px;}
@media print{
.v0_c01014{vertical-align:0.000000pt;}
.ls2_c01014{letter-spacing:0.000000pt;}
.ls0_c01014{letter-spacing:0.010667pt;}
.ls1_c01014{letter-spacing:0.019200pt;}
.ws0_c01014{word-spacing:-17.600000pt;}
.ws1_c01014{word-spacing:0.000000pt;}
._1_c01014{margin-left:-3.328000pt;}
._3_c01014{margin-left:-1.849600pt;}
._4_c01014{width:1.350400pt;}
._0_c01014{width:3.334400pt;}
._9_c01014{width:12.531200pt;}
._a_c01014{width:13.881600pt;}
._b_c01014{width:15.494400pt;}
._8_c01014{width:16.480000pt;}
._7_c01014{width:19.136000pt;}
._5_c01014{width:20.672000pt;}
._6_c01014{width:21.644800pt;}
._2_c01014{width:22.675200pt;}
.fs0_c01014{font-size:48.000000pt;}
.fs2_c01014{font-size:53.333333pt;}
.fs1_c01014{font-size:64.000000pt;}
.y0_c01014{bottom:0.000000pt;}
.y2_c01014{bottom:10.666667pt;}
.ya_c01014{bottom:60.000000pt;}
.y8_c01014{bottom:125.333333pt;}
.y7_c01014{bottom:149.333333pt;}
.y6_c01014{bottom:173.333333pt;}
.y5_c01014{bottom:213.333333pt;}
.y4_c01014{bottom:604.000000pt;}
.y3_c01014{bottom:628.000000pt;}
.y1_c01014{bottom:668.000000pt;}
.y9_c01014{bottom:1061.333333pt;}
.h2_c01014{height:37.593750pt;}
.h3_c01014{height:45.562500pt;}
.h5_c01014{height:49.843750pt;}
.h1_c01014{height:321.333333pt;}
.h4_c01014{height:362.666667pt;}
.h0_c01014{height:1122.666667pt;}
.w1_c01014{width:601.333333pt;}
.w0_c01014{width:793.333333pt;}
.x0_c01014{left:0.000000pt;}
.x3_c01014{left:54.795573pt;}
.x1_c01014{left:133.333333pt;}
.x2_c01014{left:235.976267pt;}
.x4_c01014{left:370.473600pt;}
.x5_c01014{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a8d4e339690ad11e82ec5142.woff2')format("woff");}.ff1_c01015{font-family:ff1_c01015;line-height:0.963867;font-style:normal;font-weight:normal;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_52d1c1135d76aef5660909c9.woff2')format("woff");}.ff2_c01015{font-family:ff2_c01015;line-height:0.934082;font-style:normal;font-weight:normal;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_aba655cf8fc37d8074d98012.woff2')format("woff");}.ff3_c01015{font-family:ff3_c01015;line-height:0.755859;font-style:normal;font-weight:normal;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_19938244ff643e1062d507e8.woff2')format("woff");}.ff4_c01015{font-family:ff4_c01015;line-height:1.155762;font-style: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;}
.ls1_c01015{letter-spacing:0.000000px;}
.ls2_c01015{letter-spacing:0.012000px;}
.ls0_c01015{letter-spacing:0.021600px;}
.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;}
}
.ws0_c01015{word-spacing:0.000000px;}
._7_c01015{margin-left:-3.304800px;}
._c_c01015{margin-left:-2.138400px;}
._0_c01015{margin-left:-1.130400px;}
._6_c01015{width:1.144800px;}
._2_c01015{width:2.592000px;}
._5_c01015{width:3.650400px;}
._a_c01015{width:5.428800px;}
._d_c01015{width:6.804000px;}
._b_c01015{width:8.078400px;}
._8_c01015{width:10.620000px;}
._3_c01015{width:12.535200px;}
._9_c01015{width:13.996800px;}
._4_c01015{width:15.062400px;}
._1_c01015{width:16.264800px;}
.fc0_c01015{color:rgb(0,0,0);}
.fs0_c01015{font-size:54.000000px;}
.fs2_c01015{font-size:60.000000px;}
.fs1_c01015{font-size:72.000000px;}
.y0_c01015{bottom:0.000000px;}
.y9_c01015{bottom:10.500000px;}
.y2_c01015{bottom:12.000000px;}
.y8_c01015{bottom:28.500000px;}
.yb_c01015{bottom:67.500000px;}
.y7_c01015{bottom:129.000000px;}
.y6_c01015{bottom:546.000000px;}
.y5_c01015{bottom:573.000000px;}
.y4_c01015{bottom:600.000000px;}
.y3_c01015{bottom:627.000000px;}
.y1_c01015{bottom:672.000000px;}
.ya_c01015{bottom:1194.000000px;}
.h2_c01015{height:41.633789px;}
.h6_c01015{height:44.208984px;}
.h3_c01015{height:51.257812px;}
.h5_c01015{height:56.074219px;}
.h4_c01015{height:385.500000px;}
.h1_c01015{height:441.000000px;}
.h0_c01015{height:1263.000000px;}
.w1_c01015{width:676.500000px;}
.w0_c01015{width:892.500000px;}
.x0_c01015{left:0.000000px;}
.x3_c01015{left:11.352882px;}
.x1_c01015{left:66.000000px;}
.x4_c01015{left:210.613050px;}
.x2_c01015{left:264.359250px;}
@media print{
.v0_c01015{vertical-align:0.000000pt;}
.ls1_c01015{letter-spacing:0.000000pt;}
.ls2_c01015{letter-spacing:0.010667pt;}
.ls0_c01015{letter-spacing:0.019200pt;}
.ws0_c01015{word-spacing:0.000000pt;}
._7_c01015{margin-left:-2.937600pt;}
._c_c01015{margin-left:-1.900800pt;}
._0_c01015{margin-left:-1.004800pt;}
._6_c01015{width:1.017600pt;}
._2_c01015{width:2.304000pt;}
._5_c01015{width:3.244800pt;}
._a_c01015{width:4.825600pt;}
._d_c01015{width:6.048000pt;}
._b_c01015{width:7.180800pt;}
._8_c01015{width:9.440000pt;}
._3_c01015{width:11.142400pt;}
._9_c01015{width:12.441600pt;}
._4_c01015{width:13.388800pt;}
._1_c01015{width:14.457600pt;}
.fs0_c01015{font-size:48.000000pt;}
.fs2_c01015{font-size:53.333333pt;}
.fs1_c01015{font-size:64.000000pt;}
.y0_c01015{bottom:0.000000pt;}
.y9_c01015{bottom:9.333333pt;}
.y2_c01015{bottom:10.666667pt;}
.y8_c01015{bottom:25.333333pt;}
.yb_c01015{bottom:60.000000pt;}
.y7_c01015{bottom:114.666667pt;}
.y6_c01015{bottom:485.333333pt;}
.y5_c01015{bottom:509.333333pt;}
.y4_c01015{bottom:533.333333pt;}
.y3_c01015{bottom:557.333333pt;}
.y1_c01015{bottom:597.333333pt;}
.ya_c01015{bottom:1061.333333pt;}
.h2_c01015{height:37.007812pt;}
.h6_c01015{height:39.296875pt;}
.h3_c01015{height:45.562500pt;}
.h5_c01015{height:49.843750pt;}
.h4_c01015{height:342.666667pt;}
.h1_c01015{height:392.000000pt;}
.h0_c01015{height:1122.666667pt;}
.w1_c01015{width:601.333333pt;}
.w0_c01015{width:793.333333pt;}
.x0_c01015{left:0.000000pt;}
.x3_c01015{left:10.091451pt;}
.x1_c01015{left:58.666667pt;}
.x4_c01015{left:187.211600pt;}
.x2_c01015{left:234.986000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eff1ff244c93875738b9d4fa.woff2')format("woff");}.ff1_c01016{font-family:ff1_c01016;line-height:0.934082;font-style:normal;font-weight:normal;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_dc979c391d5e9f7d5080a07a.woff2')format("woff");}.ff2_c01016{font-family:ff2_c01016;line-height:0.987793;font-style:normal;font-weight:normal;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_e45a83ca3dce2614419fe10f.woff2')format("woff");}.ff3_c01016{font-family:ff3_c01016;line-height:1.155762;font-style:normal;font-weight:normal;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_f4f34f98426d5458f2de025f.woff2')format("woff");}.ff4_c01016{font-family:ff4_c01016;line-height:1.101562;font-style:normal;font-weight:normal;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_f956f1a52511ecca18176c24.woff2')format("woff");}.ff5_c01016{font-family:ff5_c01016;line-height:0.891113;font-style: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);}
.v3_c01016{vertical-align:-33.000000px;}
.v2_c01016{vertical-align:-23.086200px;}
.v0_c01016{vertical-align:0.000000px;}
.v1_c01016{vertical-align:23.086200px;}
.ls6_c01016{letter-spacing:-0.009600px;}
.ls7_c01016{letter-spacing:-0.007200px;}
.ls4_c01016{letter-spacing:0.000000px;}
.ls2_c01016{letter-spacing:0.012000px;}
.ls5_c01016{letter-spacing:0.021600px;}
.ls3_c01016{letter-spacing:3.999999px;}
.ls0_c01016{letter-spacing:7.471800px;}
.ls1_c01016{letter-spacing:9.552000px;}
.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;}
}
.ws0_c01016{word-spacing:-13.190400px;}
.ws1_c01016{word-spacing:-10.000001px;}
.ws2_c01016{word-spacing:0.000000px;}
._13_c01016{margin-left:-7.839000px;}
._12_c01016{margin-left:-5.817600px;}
._14_c01016{margin-left:-4.384800px;}
._5_c01016{margin-left:-3.189600px;}
._10_c01016{margin-left:-2.102400px;}
._3_c01016{margin-left:-1.101600px;}
._1_c01016{width:1.425600px;}
._e_c01016{width:2.772000px;}
._7_c01016{width:4.219200px;}
._d_c01016{width:5.976000px;}
._11_c01016{width:7.084800px;}
._f_c01016{width:9.064800px;}
._16_c01016{width:10.274400px;}
._15_c01016{width:11.958000px;}
._17_c01016{width:13.778400px;}
._19_c01016{width:16.060800px;}
._18_c01016{width:17.532000px;}
._8_c01016{width:21.456000px;}
._2_c01016{width:24.235200px;}
._0_c01016{width:25.675200px;}
._4_c01016{width:26.712000px;}
._6_c01016{width:28.850400px;}
._c_c01016{width:31.500000px;}
._9_c01016{width:32.889600px;}
._a_c01016{width:34.070400px;}
._b_c01016{width:36.115200px;}
.fc0_c01016{color:rgb(0,0,0);}
.fs4_c01016{font-size:40.000002px;}
.fs2_c01016{font-size:48.000000px;}
.fs1_c01016{font-size:54.000000px;}
.fs3_c01016{font-size:60.000000px;}
.fs0_c01016{font-size:72.000000px;}
.y0_c01016{bottom:0.000000px;}
.y5_c01016{bottom:12.000000px;}
.yf_c01016{bottom:67.500000px;}
.y16_c01016{bottom:132.000000px;}
.y15_c01016{bottom:159.750000px;}
.y14_c01016{bottom:209.250000px;}
.y13_c01016{bottom:250.500000px;}
.y12_c01016{bottom:270.000000px;}
.y11_c01016{bottom:289.500000px;}
.y10_c01016{bottom:317.250000px;}
.yd_c01016{bottom:375.000000px;}
.yc_c01016{bottom:402.000000px;}
.yb_c01016{bottom:429.000000px;}
.ya_c01016{bottom:456.000000px;}
.y9_c01016{bottom:483.000000px;}
.y8_c01016{bottom:510.000000px;}
.y7_c01016{bottom:537.000000px;}
.y6_c01016{bottom:564.000000px;}
.y4_c01016{bottom:609.000000px;}
.y3_c01016{bottom:1041.000000px;}
.y2_c01016{bottom:1068.000000px;}
.y1_c01016{bottom:1095.000000px;}
.ye_c01016{bottom:1194.000000px;}
.h6_c01016{height:35.312502px;}
.h3_c01016{height:42.292969px;}
.h1_c01016{height:51.257812px;}
.h7_c01016{height:52.968750px;}
.h5_c01016{height:56.074219px;}
.h4_c01016{height:57.258075px;}
.h2_c01016{height:400.500000px;}
.h0_c01016{height:1263.000000px;}
.w1_c01016{width:676.500000px;}
.w0_c01016{width:892.500000px;}
.x0_c01016{left:0.000000px;}
.x2_c01016{left:97.857030px;}
.x1_c01016{left:150.519750px;}
.x3_c01016{left:416.782800px;}
.x4_c01016{left:801.992850px;}
@media print{
.v3_c01016{vertical-align:-29.333333pt;}
.v2_c01016{vertical-align:-20.521067pt;}
.v0_c01016{vertical-align:0.000000pt;}
.v1_c01016{vertical-align:20.521067pt;}
.ls6_c01016{letter-spacing:-0.008533pt;}
.ls7_c01016{letter-spacing:-0.006400pt;}
.ls4_c01016{letter-spacing:0.000000pt;}
.ls2_c01016{letter-spacing:0.010667pt;}
.ls5_c01016{letter-spacing:0.019200pt;}
.ls3_c01016{letter-spacing:3.555555pt;}
.ls0_c01016{letter-spacing:6.641600pt;}
.ls1_c01016{letter-spacing:8.490667pt;}
.ws0_c01016{word-spacing:-11.724800pt;}
.ws1_c01016{word-spacing:-8.888889pt;}
.ws2_c01016{word-spacing:0.000000pt;}
._13_c01016{margin-left:-6.968000pt;}
._12_c01016{margin-left:-5.171200pt;}
._14_c01016{margin-left:-3.897600pt;}
._5_c01016{margin-left:-2.835200pt;}
._10_c01016{margin-left:-1.868800pt;}
._3_c01016{margin-left:-0.979200pt;}
._1_c01016{width:1.267200pt;}
._e_c01016{width:2.464000pt;}
._7_c01016{width:3.750400pt;}
._d_c01016{width:5.312000pt;}
._11_c01016{width:6.297600pt;}
._f_c01016{width:8.057600pt;}
._16_c01016{width:9.132800pt;}
._15_c01016{width:10.629333pt;}
._17_c01016{width:12.247467pt;}
._19_c01016{width:14.276267pt;}
._18_c01016{width:15.584000pt;}
._8_c01016{width:19.072000pt;}
._2_c01016{width:21.542400pt;}
._0_c01016{width:22.822400pt;}
._4_c01016{width:23.744000pt;}
._6_c01016{width:25.644800pt;}
._c_c01016{width:28.000000pt;}
._9_c01016{width:29.235200pt;}
._a_c01016{width:30.284800pt;}
._b_c01016{width:32.102400pt;}
.fs4_c01016{font-size:35.555557pt;}
.fs2_c01016{font-size:42.666667pt;}
.fs1_c01016{font-size:48.000000pt;}
.fs3_c01016{font-size:53.333333pt;}
.fs0_c01016{font-size:64.000000pt;}
.y0_c01016{bottom:0.000000pt;}
.y5_c01016{bottom:10.666667pt;}
.yf_c01016{bottom:60.000000pt;}
.y16_c01016{bottom:117.333333pt;}
.y15_c01016{bottom:142.000000pt;}
.y14_c01016{bottom:186.000000pt;}
.y13_c01016{bottom:222.666667pt;}
.y12_c01016{bottom:240.000000pt;}
.y11_c01016{bottom:257.333333pt;}
.y10_c01016{bottom:282.000000pt;}
.yd_c01016{bottom:333.333333pt;}
.yc_c01016{bottom:357.333333pt;}
.yb_c01016{bottom:381.333333pt;}
.ya_c01016{bottom:405.333333pt;}
.y9_c01016{bottom:429.333333pt;}
.y8_c01016{bottom:453.333333pt;}
.y7_c01016{bottom:477.333333pt;}
.y6_c01016{bottom:501.333333pt;}
.y4_c01016{bottom:541.333333pt;}
.y3_c01016{bottom:925.333333pt;}
.y2_c01016{bottom:949.333333pt;}
.y1_c01016{bottom:973.333333pt;}
.ye_c01016{bottom:1061.333333pt;}
.h6_c01016{height:31.388890pt;}
.h3_c01016{height:37.593750pt;}
.h1_c01016{height:45.562500pt;}
.h7_c01016{height:47.083333pt;}
.h5_c01016{height:49.843750pt;}
.h4_c01016{height:50.896067pt;}
.h2_c01016{height:356.000000pt;}
.h0_c01016{height:1122.666667pt;}
.w1_c01016{width:601.333333pt;}
.w0_c01016{width:793.333333pt;}
.x0_c01016{left:0.000000pt;}
.x2_c01016{left:86.984027pt;}
.x1_c01016{left:133.795333pt;}
.x3_c01016{left:370.473600pt;}
.x4_c01016{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e71440838996824e51f933f8.woff2')format("woff");}.ff1_c01017{font-family:ff1_c01017;line-height:1.144531;font-style:normal;font-weight:normal;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_50b80f5a1e12dee1d31c478e.woff2')format("woff");}.ff2_c01017{font-family:ff2_c01017;line-height:0.934082;font-style:normal;font-weight:normal;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_75249ffefa33dbfdc6496f48.woff2')format("woff");}.ff3_c01017{font-family:ff3_c01017;line-height:0.755859;font-style:normal;font-weight:normal;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_1984e3842578d94b5a5ce346.woff2')format("woff");}.ff4_c01017{font-family:ff4_c01017;line-height:1.155762;font-style: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);}
.v0_c01017{vertical-align:0.000000px;}
.ls1_c01017{letter-spacing:0.000000px;}
.ls2_c01017{letter-spacing:0.012000px;}
.ls0_c01017{letter-spacing:0.021600px;}
.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;}
}
.ws0_c01017{word-spacing:0.000000px;}
._3_c01017{margin-left:-2.822400px;}
._9_c01017{margin-left:-1.224000px;}
._5_c01017{width:1.900800px;}
._1_c01017{width:3.038400px;}
._7_c01017{width:4.492800px;}
._8_c01017{width:5.803200px;}
._2_c01017{width:7.272000px;}
._6_c01017{width:8.344800px;}
._0_c01017{width:10.216800px;}
._a_c01017{width:11.440800px;}
._4_c01017{width:13.125600px;}
._b_c01017{width:15.422400px;}
.fc0_c01017{color:rgb(0,0,0);}
.fs0_c01017{font-size:54.000000px;}
.fs2_c01017{font-size:60.000000px;}
.fs1_c01017{font-size:72.000000px;}
.y0_c01017{bottom:0.000000px;}
.y3_c01017{bottom:10.500000px;}
.y2_c01017{bottom:28.500000px;}
.yd_c01017{bottom:67.500000px;}
.yb_c01017{bottom:216.000000px;}
.ya_c01017{bottom:243.000000px;}
.y9_c01017{bottom:291.000000px;}
.y8_c01017{bottom:318.000000px;}
.y7_c01017{bottom:366.000000px;}
.y6_c01017{bottom:393.000000px;}
.y5_c01017{bottom:441.000000px;}
.y4_c01017{bottom:468.000000px;}
.y1_c01017{bottom:513.000000px;}
.yc_c01017{bottom:1194.000000px;}
.h5_c01017{height:44.208984px;}
.h2_c01017{height:50.756836px;}
.h3_c01017{height:51.257812px;}
.h4_c01017{height:56.074219px;}
.h1_c01017{height:600.000000px;}
.h0_c01017{height:1263.000000px;}
.w1_c01017{width:676.500000px;}
.w0_c01017{width:892.500000px;}
.x0_c01017{left:0.000000px;}
.x2_c01017{left:16.573605px;}
.x3_c01017{left:42.192630px;}
.x1_c01017{left:66.000000px;}
@media print{
.v0_c01017{vertical-align:0.000000pt;}
.ls1_c01017{letter-spacing:0.000000pt;}
.ls2_c01017{letter-spacing:0.010667pt;}
.ls0_c01017{letter-spacing:0.019200pt;}
.ws0_c01017{word-spacing:0.000000pt;}
._3_c01017{margin-left:-2.508800pt;}
._9_c01017{margin-left:-1.088000pt;}
._5_c01017{width:1.689600pt;}
._1_c01017{width:2.700800pt;}
._7_c01017{width:3.993600pt;}
._8_c01017{width:5.158400pt;}
._2_c01017{width:6.464000pt;}
._6_c01017{width:7.417600pt;}
._0_c01017{width:9.081600pt;}
._a_c01017{width:10.169600pt;}
._4_c01017{width:11.667200pt;}
._b_c01017{width:13.708800pt;}
.fs0_c01017{font-size:48.000000pt;}
.fs2_c01017{font-size:53.333333pt;}
.fs1_c01017{font-size:64.000000pt;}
.y0_c01017{bottom:0.000000pt;}
.y3_c01017{bottom:9.333333pt;}
.y2_c01017{bottom:25.333333pt;}
.yd_c01017{bottom:60.000000pt;}
.yb_c01017{bottom:192.000000pt;}
.ya_c01017{bottom:216.000000pt;}
.y9_c01017{bottom:258.666667pt;}
.y8_c01017{bottom:282.666667pt;}
.y7_c01017{bottom:325.333333pt;}
.y6_c01017{bottom:349.333333pt;}
.y5_c01017{bottom:392.000000pt;}
.y4_c01017{bottom:416.000000pt;}
.y1_c01017{bottom:456.000000pt;}
.yc_c01017{bottom:1061.333333pt;}
.h5_c01017{height:39.296875pt;}
.h2_c01017{height:45.117188pt;}
.h3_c01017{height:45.562500pt;}
.h4_c01017{height:49.843750pt;}
.h1_c01017{height:533.333333pt;}
.h0_c01017{height:1122.666667pt;}
.w1_c01017{width:601.333333pt;}
.w0_c01017{width:793.333333pt;}
.x0_c01017{left:0.000000pt;}
.x2_c01017{left:14.732093pt;}
.x3_c01017{left:37.504560pt;}
.x1_c01017{left:58.666667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_2b586915f6cc6a41df4528ea.woff2')format("woff");}.ff1_c01018{font-family:ff1_c01018;line-height:0.987793;font-style:normal;font-weight:normal;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_3768ddaf37b8a69bf0c2c9fd.woff2')format("woff");}.ff2_c01018{font-family:ff2_c01018;line-height:0.934082;font-style:normal;font-weight:normal;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_067b7ef6ed9cfd1ff2121707.woff2')format("woff");}.ff3_c01018{font-family:ff3_c01018;line-height:1.155762;font-style: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);}
.v0_c01018{vertical-align:0.000000px;}
.ls3_c01018{letter-spacing:0.000000px;}
.ls0_c01018{letter-spacing:0.010800px;}
.ls1_c01018{letter-spacing:0.012000px;}
.ls2_c01018{letter-spacing:0.021600px;}
.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;}
}
.ws0_c01018{word-spacing:0.000000px;}
._f_c01018{margin-left:-7.236000px;}
._d_c01018{margin-left:-4.219200px;}
._4_c01018{margin-left:-2.484000px;}
._7_c01018{margin-left:-1.353600px;}
._6_c01018{width:1.281600px;}
._0_c01018{width:2.325600px;}
._2_c01018{width:3.434400px;}
._9_c01018{width:4.622400px;}
._1_c01018{width:5.695200px;}
._3_c01018{width:7.063200px;}
._8_c01018{width:8.683200px;}
._5_c01018{width:10.562400px;}
._e_c01018{width:12.794400px;}
._b_c01018{width:14.191200px;}
._c_c01018{width:15.480000px;}
._a_c01018{width:17.956800px;}
.fc0_c01018{color:rgb(0,0,0);}
.fs0_c01018{font-size:54.000000px;}
.fs2_c01018{font-size:60.000000px;}
.fs1_c01018{font-size:72.000000px;}
.y0_c01018{bottom:0.000000px;}
.y2_c01018{bottom:12.000000px;}
.ya_c01018{bottom:67.500000px;}
.y8_c01018{bottom:204.000000px;}
.y7_c01018{bottom:538.500000px;}
.y6_c01018{bottom:565.500000px;}
.y5_c01018{bottom:592.500000px;}
.y4_c01018{bottom:619.500000px;}
.y3_c01018{bottom:646.500000px;}
.y1_c01018{bottom:691.500000px;}
.y9_c01018{bottom:1194.000000px;}
.h2_c01018{height:42.292969px;}
.h3_c01018{height:51.257812px;}
.h5_c01018{height:56.074219px;}
.h4_c01018{height:303.000000px;}
.h1_c01018{height:421.500000px;}
.h0_c01018{height:1263.000000px;}
.w1_c01018{width:676.500000px;}
.w0_c01018{width:892.500000px;}
.x0_c01018{left:0.000000px;}
.x3_c01018{left:147.872310px;}
.x1_c01018{left:150.000000px;}
.x2_c01018{left:245.895600px;}
.x4_c01018{left:416.782800px;}
.x5_c01018{left:801.992850px;}
@media print{
.v0_c01018{vertical-align:0.000000pt;}
.ls3_c01018{letter-spacing:0.000000pt;}
.ls0_c01018{letter-spacing:0.009600pt;}
.ls1_c01018{letter-spacing:0.010667pt;}
.ls2_c01018{letter-spacing:0.019200pt;}
.ws0_c01018{word-spacing:0.000000pt;}
._f_c01018{margin-left:-6.432000pt;}
._d_c01018{margin-left:-3.750400pt;}
._4_c01018{margin-left:-2.208000pt;}
._7_c01018{margin-left:-1.203200pt;}
._6_c01018{width:1.139200pt;}
._0_c01018{width:2.067200pt;}
._2_c01018{width:3.052800pt;}
._9_c01018{width:4.108800pt;}
._1_c01018{width:5.062400pt;}
._3_c01018{width:6.278400pt;}
._8_c01018{width:7.718400pt;}
._5_c01018{width:9.388800pt;}
._e_c01018{width:11.372800pt;}
._b_c01018{width:12.614400pt;}
._c_c01018{width:13.760000pt;}
._a_c01018{width:15.961600pt;}
.fs0_c01018{font-size:48.000000pt;}
.fs2_c01018{font-size:53.333333pt;}
.fs1_c01018{font-size:64.000000pt;}
.y0_c01018{bottom:0.000000pt;}
.y2_c01018{bottom:10.666667pt;}
.ya_c01018{bottom:60.000000pt;}
.y8_c01018{bottom:181.333333pt;}
.y7_c01018{bottom:478.666667pt;}
.y6_c01018{bottom:502.666667pt;}
.y5_c01018{bottom:526.666667pt;}
.y4_c01018{bottom:550.666667pt;}
.y3_c01018{bottom:574.666667pt;}
.y1_c01018{bottom:614.666667pt;}
.y9_c01018{bottom:1061.333333pt;}
.h2_c01018{height:37.593750pt;}
.h3_c01018{height:45.562500pt;}
.h5_c01018{height:49.843750pt;}
.h4_c01018{height:269.333333pt;}
.h1_c01018{height:374.666667pt;}
.h0_c01018{height:1122.666667pt;}
.w1_c01018{width:601.333333pt;}
.w0_c01018{width:793.333333pt;}
.x0_c01018{left:0.000000pt;}
.x3_c01018{left:131.442053pt;}
.x1_c01018{left:133.333333pt;}
.x2_c01018{left:218.573867pt;}
.x4_c01018{left:370.473600pt;}
.x5_c01018{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ce2a58ed84f9c2b6765262bb.woff2')format("woff");}.ff1_c01019{font-family:ff1_c01019;line-height:0.987793;font-style:normal;font-weight:normal;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_1e3e73b1b3286d891f5d0484.woff2')format("woff");}.ff2_c01019{font-family:ff2_c01019;line-height:0.933105;font-style:normal;font-weight:normal;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_76f8f4d9217fb4747042d242.woff2')format("woff");}.ff3_c01019{font-family:ff3_c01019;line-height:0.755859;font-style:normal;font-weight:normal;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_3ef395b838847890a11c52f5.woff2')format("woff");}.ff4_c01019{font-family:ff4_c01019;line-height:1.155762;font-style: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;}
.ls1_c01019{letter-spacing:0.000000px;}
.ls2_c01019{letter-spacing:0.005400px;}
.ls3_c01019{letter-spacing:0.012000px;}
.ls0_c01019{letter-spacing:0.021600px;}
.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;}
}
.ws0_c01019{word-spacing:0.000000px;}
._c_c01019{margin-left:-7.416000px;}
._6_c01019{margin-left:-3.304800px;}
._1_c01019{margin-left:-1.800000px;}
._b_c01019{width:1.058400px;}
._3_c01019{width:2.462400px;}
._5_c01019{width:4.334400px;}
._4_c01019{width:5.630400px;}
._0_c01019{width:8.049600px;}
._2_c01019{width:9.928800px;}
._7_c01019{width:12.232800px;}
._a_c01019{width:14.392800px;}
._9_c01019{width:16.315200px;}
._8_c01019{width:17.870400px;}
.fc0_c01019{color:rgb(0,0,0);}
.fs0_c01019{font-size:54.000000px;}
.fs2_c01019{font-size:60.000000px;}
.fs1_c01019{font-size:72.000000px;}
.y0_c01019{bottom:0.000000px;}
.y3_c01019{bottom:10.500000px;}
.y2_c01019{bottom:28.500000px;}
.yb_c01019{bottom:67.500000px;}
.y9_c01019{bottom:135.000000px;}
.y8_c01019{bottom:162.000000px;}
.y7_c01019{bottom:189.000000px;}
.y6_c01019{bottom:216.000000px;}
.y5_c01019{bottom:243.000000px;}
.y4_c01019{bottom:267.000000px;}
.y1_c01019{bottom:595.500000px;}
.ya_c01019{bottom:1194.000000px;}
.h2_c01019{height:42.292969px;}
.h6_c01019{height:44.208984px;}
.h4_c01019{height:51.187500px;}
.h5_c01019{height:56.074219px;}
.h3_c01019{height:321.000000px;}
.h1_c01019{height:517.500000px;}
.h0_c01019{height:1263.000000px;}
.w1_c01019{width:676.500000px;}
.w0_c01019{width:892.500000px;}
.x0_c01019{left:0.000000px;}
.x2_c01019{left:15.113520px;}
.x4_c01019{left:19.457490px;}
.x1_c01019{left:66.000000px;}
.x3_c01019{left:294.612300px;}
@media print{
.v0_c01019{vertical-align:0.000000pt;}
.ls1_c01019{letter-spacing:0.000000pt;}
.ls2_c01019{letter-spacing:0.004800pt;}
.ls3_c01019{letter-spacing:0.010667pt;}
.ls0_c01019{letter-spacing:0.019200pt;}
.ws0_c01019{word-spacing:0.000000pt;}
._c_c01019{margin-left:-6.592000pt;}
._6_c01019{margin-left:-2.937600pt;}
._1_c01019{margin-left:-1.600000pt;}
._b_c01019{width:0.940800pt;}
._3_c01019{width:2.188800pt;}
._5_c01019{width:3.852800pt;}
._4_c01019{width:5.004800pt;}
._0_c01019{width:7.155200pt;}
._2_c01019{width:8.825600pt;}
._7_c01019{width:10.873600pt;}
._a_c01019{width:12.793600pt;}
._9_c01019{width:14.502400pt;}
._8_c01019{width:15.884800pt;}
.fs0_c01019{font-size:48.000000pt;}
.fs2_c01019{font-size:53.333333pt;}
.fs1_c01019{font-size:64.000000pt;}
.y0_c01019{bottom:0.000000pt;}
.y3_c01019{bottom:9.333333pt;}
.y2_c01019{bottom:25.333333pt;}
.yb_c01019{bottom:60.000000pt;}
.y9_c01019{bottom:120.000000pt;}
.y8_c01019{bottom:144.000000pt;}
.y7_c01019{bottom:168.000000pt;}
.y6_c01019{bottom:192.000000pt;}
.y5_c01019{bottom:216.000000pt;}
.y4_c01019{bottom:237.333333pt;}
.y1_c01019{bottom:529.333333pt;}
.ya_c01019{bottom:1061.333333pt;}
.h2_c01019{height:37.593750pt;}
.h6_c01019{height:39.296875pt;}
.h4_c01019{height:45.500000pt;}
.h5_c01019{height:49.843750pt;}
.h3_c01019{height:285.333333pt;}
.h1_c01019{height:460.000000pt;}
.h0_c01019{height:1122.666667pt;}
.w1_c01019{width:601.333333pt;}
.w0_c01019{width:793.333333pt;}
.x0_c01019{left:0.000000pt;}
.x2_c01019{left:13.434240pt;}
.x4_c01019{left:17.295547pt;}
.x1_c01019{left:58.666667pt;}
.x3_c01019{left:261.877600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2f413187b9c6d90806751b09.woff2')format("woff");}.ff1_c01020{font-family:ff1_c01020;line-height:0.975586;font-style:normal;font-weight:normal;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_d4aae5b684372a9c18f3bfcc.woff2')format("woff");}.ff2_c01020{font-family:ff2_c01020;line-height:0.934082;font-style:normal;font-weight:normal;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_5946c11a268ff0242d29e516.woff2')format("woff");}.ff3_c01020{font-family:ff3_c01020;line-height:0.884766;font-style:normal;font-weight:normal;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_c8cb62c55c68d85013e4f9d1.woff2')format("woff");}.ff4_c01020{font-family:ff4_c01020;line-height:1.155762;font-style: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);}
.v0_c01020{vertical-align:0.000000px;}
.ls3_c01020{letter-spacing:0.000000px;}
.ls4_c01020{letter-spacing:0.007200px;}
.ls1_c01020{letter-spacing:0.012000px;}
.ls0_c01020{letter-spacing:0.016200px;}
.ls2_c01020{letter-spacing:0.021600px;}
.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;}
}
.ws0_c01020{word-spacing:-19.800000px;}
.ws1_c01020{word-spacing:0.000000px;}
._11_c01020{margin-left:-10.000800px;}
._7_c01020{margin-left:-4.212000px;}
._2_c01020{margin-left:-2.642400px;}
._5_c01020{margin-left:-1.490400px;}
._1_c01020{width:1.022400px;}
._0_c01020{width:2.325600px;}
._a_c01020{width:3.844800px;}
._f_c01020{width:4.852800px;}
._3_c01020{width:6.019200px;}
._b_c01020{width:7.041600px;}
._4_c01020{width:8.172000px;}
._6_c01020{width:9.648000px;}
._9_c01020{width:10.821600px;}
._8_c01020{width:11.923200px;}
._c_c01020{width:12.988800px;}
._10_c01020{width:14.248800px;}
._d_c01020{width:15.285600px;}
._12_c01020{width:16.531200px;}
._e_c01020{width:17.863200px;}
._16_c01020{width:33.480000px;}
._13_c01020{width:34.804800px;}
._15_c01020{width:35.856000px;}
._14_c01020{width:36.993600px;}
.fc0_c01020{color:rgb(0,0,0);}
.fs0_c01020{font-size:54.000000px;}
.fs2_c01020{font-size:60.000000px;}
.fs1_c01020{font-size:72.000000px;}
.y0_c01020{bottom:0.000000px;}
.y2_c01020{bottom:12.000000px;}
.y15_c01020{bottom:67.500000px;}
.y13_c01020{bottom:213.000000px;}
.y12_c01020{bottom:240.000000px;}
.y11_c01020{bottom:267.000000px;}
.y10_c01020{bottom:294.000000px;}
.yf_c01020{bottom:321.000000px;}
.ye_c01020{bottom:348.000000px;}
.yd_c01020{bottom:375.000000px;}
.yc_c01020{bottom:402.000000px;}
.yb_c01020{bottom:450.000000px;}
.ya_c01020{bottom:477.000000px;}
.y9_c01020{bottom:504.000000px;}
.y8_c01020{bottom:531.000000px;}
.y7_c01020{bottom:558.000000px;}
.y6_c01020{bottom:604.500000px;}
.y5_c01020{bottom:673.500000px;}
.y4_c01020{bottom:700.500000px;}
.y3_c01020{bottom:727.500000px;}
.y1_c01020{bottom:772.500000px;}
.y14_c01020{bottom:1194.000000px;}
.h2_c01020{height:41.633789px;}
.h4_c01020{height:50.976562px;}
.h3_c01020{height:51.257812px;}
.h5_c01020{height:56.074219px;}
.h1_c01020{height:340.500000px;}
.h0_c01020{height:1263.000000px;}
.w1_c01020{width:676.500000px;}
.w0_c01020{width:892.500000px;}
.x0_c01020{left:0.000000px;}
.x1_c01020{left:150.000000px;}
.x2_c01020{left:226.519050px;}
.x3_c01020{left:416.782800px;}
.x4_c01020{left:801.992850px;}
@media print{
.v0_c01020{vertical-align:0.000000pt;}
.ls3_c01020{letter-spacing:0.000000pt;}
.ls4_c01020{letter-spacing:0.006400pt;}
.ls1_c01020{letter-spacing:0.010667pt;}
.ls0_c01020{letter-spacing:0.014400pt;}
.ls2_c01020{letter-spacing:0.019200pt;}
.ws0_c01020{word-spacing:-17.600000pt;}
.ws1_c01020{word-spacing:0.000000pt;}
._11_c01020{margin-left:-8.889600pt;}
._7_c01020{margin-left:-3.744000pt;}
._2_c01020{margin-left:-2.348800pt;}
._5_c01020{margin-left:-1.324800pt;}
._1_c01020{width:0.908800pt;}
._0_c01020{width:2.067200pt;}
._a_c01020{width:3.417600pt;}
._f_c01020{width:4.313600pt;}
._3_c01020{width:5.350400pt;}
._b_c01020{width:6.259200pt;}
._4_c01020{width:7.264000pt;}
._6_c01020{width:8.576000pt;}
._9_c01020{width:9.619200pt;}
._8_c01020{width:10.598400pt;}
._c_c01020{width:11.545600pt;}
._10_c01020{width:12.665600pt;}
._d_c01020{width:13.587200pt;}
._12_c01020{width:14.694400pt;}
._e_c01020{width:15.878400pt;}
._16_c01020{width:29.760000pt;}
._13_c01020{width:30.937600pt;}
._15_c01020{width:31.872000pt;}
._14_c01020{width:32.883200pt;}
.fs0_c01020{font-size:48.000000pt;}
.fs2_c01020{font-size:53.333333pt;}
.fs1_c01020{font-size:64.000000pt;}
.y0_c01020{bottom:0.000000pt;}
.y2_c01020{bottom:10.666667pt;}
.y15_c01020{bottom:60.000000pt;}
.y13_c01020{bottom:189.333333pt;}
.y12_c01020{bottom:213.333333pt;}
.y11_c01020{bottom:237.333333pt;}
.y10_c01020{bottom:261.333333pt;}
.yf_c01020{bottom:285.333333pt;}
.ye_c01020{bottom:309.333333pt;}
.yd_c01020{bottom:333.333333pt;}
.yc_c01020{bottom:357.333333pt;}
.yb_c01020{bottom:400.000000pt;}
.ya_c01020{bottom:424.000000pt;}
.y9_c01020{bottom:448.000000pt;}
.y8_c01020{bottom:472.000000pt;}
.y7_c01020{bottom:496.000000pt;}
.y6_c01020{bottom:537.333333pt;}
.y5_c01020{bottom:598.666667pt;}
.y4_c01020{bottom:622.666667pt;}
.y3_c01020{bottom:646.666667pt;}
.y1_c01020{bottom:686.666667pt;}
.y14_c01020{bottom:1061.333333pt;}
.h2_c01020{height:37.007812pt;}
.h4_c01020{height:45.312500pt;}
.h3_c01020{height:45.562500pt;}
.h5_c01020{height:49.843750pt;}
.h1_c01020{height:302.666667pt;}
.h0_c01020{height:1122.666667pt;}
.w1_c01020{width:601.333333pt;}
.w0_c01020{width:793.333333pt;}
.x0_c01020{left:0.000000pt;}
.x1_c01020{left:133.333333pt;}
.x2_c01020{left:201.350267pt;}
.x3_c01020{left:370.473600pt;}
.x4_c01020{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f06ff87d397c43f52636df38.woff2')format("woff");}.ff1_c01021{font-family:ff1_c01021;line-height:0.987793;font-style:normal;font-weight:normal;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_3a1719d2342f78df6ca505e4.woff2')format("woff");}.ff2_c01021{font-family:ff2_c01021;line-height:0.933105;font-style:normal;font-weight:normal;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_d888002d0743265228583bad.woff2')format("woff");}.ff3_c01021{font-family:ff3_c01021;line-height:0.756836;font-style:normal;font-weight:normal;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_5c4ebd2346a83b7de9f7a30f.woff2')format("woff");}.ff4_c01021{font-family:ff4_c01021;line-height:1.155762;font-style: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;}
.ls1_c01021{letter-spacing:0.000000px;}
.ls2_c01021{letter-spacing:0.012000px;}
.ls0_c01021{letter-spacing:0.021600px;}
.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;}
}
.ws0_c01021{word-spacing:0.000000px;}
._0_c01021{margin-left:-2.894400px;}
._3_c01021{margin-left:-1.468800px;}
._2_c01021{width:1.533600px;}
._4_c01021{width:2.556000px;}
._5_c01021{width:3.564000px;}
._1_c01021{width:4.680000px;}
._6_c01021{width:5.932800px;}
.fc0_c01021{color:rgb(0,0,0);}
.fs0_c01021{font-size:54.000000px;}
.fs2_c01021{font-size:60.000000px;}
.fs1_c01021{font-size:72.000000px;}
.y0_c01021{bottom:0.000000px;}
.y2_c01021{bottom:12.000000px;}
.y8_c01021{bottom:67.500000px;}
.y6_c01021{bottom:135.000000px;}
.y5_c01021{bottom:162.000000px;}
.y4_c01021{bottom:189.000000px;}
.y3_c01021{bottom:234.000000px;}
.y1_c01021{bottom:762.000000px;}
.y7_c01021{bottom:1194.000000px;}
.h2_c01021{height:42.292969px;}
.h6_c01021{height:44.208984px;}
.h4_c01021{height:51.187500px;}
.h5_c01021{height:56.074219px;}
.h1_c01021{height:351.000000px;}
.h3_c01021{height:499.500000px;}
.h0_c01021{height:1263.000000px;}
.w1_c01021{width:676.500000px;}
.w0_c01021{width:892.500000px;}
.x0_c01021{left:0.000000px;}
.x3_c01021{left:60.652935px;}
.x1_c01021{left:66.000000px;}
.x2_c01021{left:162.707100px;}
@media print{
.v0_c01021{vertical-align:0.000000pt;}
.ls1_c01021{letter-spacing:0.000000pt;}
.ls2_c01021{letter-spacing:0.010667pt;}
.ls0_c01021{letter-spacing:0.019200pt;}
.ws0_c01021{word-spacing:0.000000pt;}
._0_c01021{margin-left:-2.572800pt;}
._3_c01021{margin-left:-1.305600pt;}
._2_c01021{width:1.363200pt;}
._4_c01021{width:2.272000pt;}
._5_c01021{width:3.168000pt;}
._1_c01021{width:4.160000pt;}
._6_c01021{width:5.273600pt;}
.fs0_c01021{font-size:48.000000pt;}
.fs2_c01021{font-size:53.333333pt;}
.fs1_c01021{font-size:64.000000pt;}
.y0_c01021{bottom:0.000000pt;}
.y2_c01021{bottom:10.666667pt;}
.y8_c01021{bottom:60.000000pt;}
.y6_c01021{bottom:120.000000pt;}
.y5_c01021{bottom:144.000000pt;}
.y4_c01021{bottom:168.000000pt;}
.y3_c01021{bottom:208.000000pt;}
.y1_c01021{bottom:677.333333pt;}
.y7_c01021{bottom:1061.333333pt;}
.h2_c01021{height:37.593750pt;}
.h6_c01021{height:39.296875pt;}
.h4_c01021{height:45.500000pt;}
.h5_c01021{height:49.843750pt;}
.h1_c01021{height:312.000000pt;}
.h3_c01021{height:444.000000pt;}
.h0_c01021{height:1122.666667pt;}
.w1_c01021{width:601.333333pt;}
.w0_c01021{width:793.333333pt;}
.x0_c01021{left:0.000000pt;}
.x3_c01021{left:53.913720pt;}
.x1_c01021{left:58.666667pt;}
.x2_c01021{left:144.628533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_02f96bc9bc120d1d03868138.woff2')format("woff");}.ff1_c01022{font-family:ff1_c01022;line-height:0.975586;font-style:normal;font-weight:normal;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_104ad3aa2c24b4ef61b32193.woff2')format("woff");}.ff2_c01022{font-family:ff2_c01022;line-height:0.934082;font-style:normal;font-weight:normal;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_52c20da949d4134216a72787.woff2')format("woff");}.ff3_c01022{font-family:ff3_c01022;line-height:1.155762;font-style:normal;font-weight:normal;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_8a6d51e7ec36d44f519fd848.woff2')format("woff");}.ff4_c01022{font-family:ff4_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:ff5_c01022;src:url('chunks/assets/font_084c10f15374e90b750e17c9.woff2')format("woff");}.ff5_c01022{font-family:ff5_c01022;line-height:0.889648;font-style: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);}
.v3_c01022{vertical-align:-33.000000px;}
.v2_c01022{vertical-align:-23.086200px;}
.v0_c01022{vertical-align:0.000000px;}
.v1_c01022{vertical-align:23.086200px;}
.ls4_c01022{letter-spacing:-0.009600px;}
.ls3_c01022{letter-spacing:0.000000px;}
.ls0_c01022{letter-spacing:0.007200px;}
.ls1_c01022{letter-spacing:0.012000px;}
.ls2_c01022{letter-spacing:0.021600px;}
.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;}
}
.ws1_c01022{word-spacing:-10.000001px;}
.ws2_c01022{word-spacing:0.000000px;}
.ws0_c01022{word-spacing:8.796600px;}
._b_c01022{margin-left:-10.605600px;}
._11_c01022{margin-left:-7.293600px;}
._f_c01022{margin-left:-5.875200px;}
._13_c01022{margin-left:-4.051200px;}
._5_c01022{margin-left:-3.016800px;}
._0_c01022{margin-left:-1.490400px;}
._4_c01022{width:1.008000px;}
._3_c01022{width:2.505600px;}
._2_c01022{width:4.132800px;}
._1_c01022{width:5.623200px;}
._6_c01022{width:6.717600px;}
._a_c01022{width:7.956000px;}
._d_c01022{width:9.727200px;}
._12_c01022{width:10.764000px;}
._e_c01022{width:11.858400px;}
._10_c01022{width:12.924000px;}
._9_c01022{width:14.191200px;}
._c_c01022{width:15.537600px;}
._8_c01022{width:16.596000px;}
._7_c01022{width:18.057600px;}
.fc0_c01022{color:rgb(0,0,0);}
.fs4_c01022{font-size:40.000002px;}
.fs2_c01022{font-size:48.000000px;}
.fs0_c01022{font-size:54.000000px;}
.fs3_c01022{font-size:60.000000px;}
.fs1_c01022{font-size:72.000000px;}
.y0_c01022{bottom:0.000000px;}
.y2_c01022{bottom:12.000000px;}
.y13_c01022{bottom:67.500000px;}
.y14_c01022{bottom:140.250000px;}
.y11_c01022{bottom:343.500000px;}
.y10_c01022{bottom:370.500000px;}
.yf_c01022{bottom:397.500000px;}
.ye_c01022{bottom:424.500000px;}
.yd_c01022{bottom:451.500000px;}
.yc_c01022{bottom:499.500000px;}
.yb_c01022{bottom:526.500000px;}
.ya_c01022{bottom:553.500000px;}
.y9_c01022{bottom:580.500000px;}
.y8_c01022{bottom:628.500000px;}
.y7_c01022{bottom:655.500000px;}
.y6_c01022{bottom:682.500000px;}
.y5_c01022{bottom:709.500000px;}
.y4_c01022{bottom:736.500000px;}
.y3_c01022{bottom:763.500000px;}
.y1_c01022{bottom:808.500000px;}
.y12_c01022{bottom:1194.000000px;}
.h6_c01022{height:27.031251px;}
.h2_c01022{height:41.633789px;}
.h3_c01022{height:51.257812px;}
.h5_c01022{height:56.074219px;}
.h4_c01022{height:57.258075px;}
.h1_c01022{height:304.500000px;}
.h0_c01022{height:1263.000000px;}
.w1_c01022{width:676.500000px;}
.w0_c01022{width:892.500000px;}
.x0_c01022{left:0.000000px;}
.x2_c01022{left:85.714950px;}
.x1_c01022{left:150.000000px;}
.x3_c01022{left:416.782800px;}
.x4_c01022{left:801.992850px;}
@media print{
.v3_c01022{vertical-align:-29.333333pt;}
.v2_c01022{vertical-align:-20.521067pt;}
.v0_c01022{vertical-align:0.000000pt;}
.v1_c01022{vertical-align:20.521067pt;}
.ls4_c01022{letter-spacing:-0.008533pt;}
.ls3_c01022{letter-spacing:0.000000pt;}
.ls0_c01022{letter-spacing:0.006400pt;}
.ls1_c01022{letter-spacing:0.010667pt;}
.ls2_c01022{letter-spacing:0.019200pt;}
.ws1_c01022{word-spacing:-8.888889pt;}
.ws2_c01022{word-spacing:0.000000pt;}
.ws0_c01022{word-spacing:7.819200pt;}
._b_c01022{margin-left:-9.427200pt;}
._11_c01022{margin-left:-6.483200pt;}
._f_c01022{margin-left:-5.222400pt;}
._13_c01022{margin-left:-3.601067pt;}
._5_c01022{margin-left:-2.681600pt;}
._0_c01022{margin-left:-1.324800pt;}
._4_c01022{width:0.896000pt;}
._3_c01022{width:2.227200pt;}
._2_c01022{width:3.673600pt;}
._1_c01022{width:4.998400pt;}
._6_c01022{width:5.971200pt;}
._a_c01022{width:7.072000pt;}
._d_c01022{width:8.646400pt;}
._12_c01022{width:9.568000pt;}
._e_c01022{width:10.540800pt;}
._10_c01022{width:11.488000pt;}
._9_c01022{width:12.614400pt;}
._c_c01022{width:13.811200pt;}
._8_c01022{width:14.752000pt;}
._7_c01022{width:16.051200pt;}
.fs4_c01022{font-size:35.555557pt;}
.fs2_c01022{font-size:42.666667pt;}
.fs0_c01022{font-size:48.000000pt;}
.fs3_c01022{font-size:53.333333pt;}
.fs1_c01022{font-size:64.000000pt;}
.y0_c01022{bottom:0.000000pt;}
.y2_c01022{bottom:10.666667pt;}
.y13_c01022{bottom:60.000000pt;}
.y14_c01022{bottom:124.666667pt;}
.y11_c01022{bottom:305.333333pt;}
.y10_c01022{bottom:329.333333pt;}
.yf_c01022{bottom:353.333333pt;}
.ye_c01022{bottom:377.333333pt;}
.yd_c01022{bottom:401.333333pt;}
.yc_c01022{bottom:444.000000pt;}
.yb_c01022{bottom:468.000000pt;}
.ya_c01022{bottom:492.000000pt;}
.y9_c01022{bottom:516.000000pt;}
.y8_c01022{bottom:558.666667pt;}
.y7_c01022{bottom:582.666667pt;}
.y6_c01022{bottom:606.666667pt;}
.y5_c01022{bottom:630.666667pt;}
.y4_c01022{bottom:654.666667pt;}
.y3_c01022{bottom:678.666667pt;}
.y1_c01022{bottom:718.666667pt;}
.y12_c01022{bottom:1061.333333pt;}
.h6_c01022{height:24.027779pt;}
.h2_c01022{height:37.007812pt;}
.h3_c01022{height:45.562500pt;}
.h5_c01022{height:49.843750pt;}
.h4_c01022{height:50.896067pt;}
.h1_c01022{height:270.666667pt;}
.h0_c01022{height:1122.666667pt;}
.w1_c01022{width:601.333333pt;}
.w0_c01022{width:793.333333pt;}
.x0_c01022{left:0.000000pt;}
.x2_c01022{left:76.191067pt;}
.x1_c01022{left:133.333333pt;}
.x3_c01022{left:370.473600pt;}
.x4_c01022{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0daefc429b06152d3345a4ee.woff2')format("woff");}.ff1_c01023{font-family:ff1_c01023;line-height:0.987793;font-style:normal;font-weight:normal;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_ecd5d1c049b4673a5ae33aab.woff2')format("woff");}.ff2_c01023{font-family:ff2_c01023;line-height:0.932129;font-style:normal;font-weight:normal;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_4bb452c5b46895cfb839d6f8.woff2')format("woff");}.ff3_c01023{font-family:ff3_c01023;line-height:0.755859;font-style:normal;font-weight:normal;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_5a40e1ec5820e3d3f3a306d2.woff2')format("woff");}.ff4_c01023{font-family:ff4_c01023;line-height:1.155762;font-style: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);}
.v0_c01023{vertical-align:0.000000px;}
.ls1_c01023{letter-spacing:0.000000px;}
.ls2_c01023{letter-spacing:0.012000px;}
.ls0_c01023{letter-spacing:0.021600px;}
.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;}
}
.ws0_c01023{word-spacing:0.000000px;}
._7_c01023{margin-left:-4.219200px;}
._2_c01023{margin-left:-3.016800px;}
._a_c01023{margin-left:-1.425600px;}
._1_c01023{width:1.987200px;}
._5_c01023{width:3.196800px;}
._0_c01023{width:4.996800px;}
._4_c01023{width:6.991200px;}
._6_c01023{width:8.546400px;}
._3_c01023{width:10.000800px;}
._9_c01023{width:12.304800px;}
._8_c01023{width:13.500000px;}
.fc0_c01023{color:rgb(0,0,0);}
.fs0_c01023{font-size:54.000000px;}
.fs2_c01023{font-size:60.000000px;}
.fs1_c01023{font-size:72.000000px;}
.y0_c01023{bottom:0.000000px;}
.y2_c01023{bottom:12.000000px;}
.ya_c01023{bottom:67.500000px;}
.y8_c01023{bottom:144.000000px;}
.y7_c01023{bottom:577.500000px;}
.y6_c01023{bottom:604.500000px;}
.y5_c01023{bottom:631.500000px;}
.y4_c01023{bottom:679.500000px;}
.y3_c01023{bottom:706.500000px;}
.y1_c01023{bottom:751.500000px;}
.y9_c01023{bottom:1194.000000px;}
.h2_c01023{height:42.292969px;}
.h6_c01023{height:44.208984px;}
.h3_c01023{height:51.257812px;}
.h5_c01023{height:56.074219px;}
.h1_c01023{height:361.500000px;}
.h4_c01023{height:402.000000px;}
.h0_c01023{height:1263.000000px;}
.w1_c01023{width:676.500000px;}
.w0_c01023{width:892.500000px;}
.x0_c01023{left:0.000000px;}
.x3_c01023{left:25.485690px;}
.x1_c01023{left:66.000000px;}
.x2_c01023{left:130.575435px;}
@media print{
.v0_c01023{vertical-align:0.000000pt;}
.ls1_c01023{letter-spacing:0.000000pt;}
.ls2_c01023{letter-spacing:0.010667pt;}
.ls0_c01023{letter-spacing:0.019200pt;}
.ws0_c01023{word-spacing:0.000000pt;}
._7_c01023{margin-left:-3.750400pt;}
._2_c01023{margin-left:-2.681600pt;}
._a_c01023{margin-left:-1.267200pt;}
._1_c01023{width:1.766400pt;}
._5_c01023{width:2.841600pt;}
._0_c01023{width:4.441600pt;}
._4_c01023{width:6.214400pt;}
._6_c01023{width:7.596800pt;}
._3_c01023{width:8.889600pt;}
._9_c01023{width:10.937600pt;}
._8_c01023{width:12.000000pt;}
.fs0_c01023{font-size:48.000000pt;}
.fs2_c01023{font-size:53.333333pt;}
.fs1_c01023{font-size:64.000000pt;}
.y0_c01023{bottom:0.000000pt;}
.y2_c01023{bottom:10.666667pt;}
.ya_c01023{bottom:60.000000pt;}
.y8_c01023{bottom:128.000000pt;}
.y7_c01023{bottom:513.333333pt;}
.y6_c01023{bottom:537.333333pt;}
.y5_c01023{bottom:561.333333pt;}
.y4_c01023{bottom:604.000000pt;}
.y3_c01023{bottom:628.000000pt;}
.y1_c01023{bottom:668.000000pt;}
.y9_c01023{bottom:1061.333333pt;}
.h2_c01023{height:37.593750pt;}
.h6_c01023{height:39.296875pt;}
.h3_c01023{height:45.562500pt;}
.h5_c01023{height:49.843750pt;}
.h1_c01023{height:321.333333pt;}
.h4_c01023{height:357.333333pt;}
.h0_c01023{height:1122.666667pt;}
.w1_c01023{width:601.333333pt;}
.w0_c01023{width:793.333333pt;}
.x0_c01023{left:0.000000pt;}
.x3_c01023{left:22.653947pt;}
.x1_c01023{left:58.666667pt;}
.x2_c01023{left:116.067053pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b2446a64cf9739c44495ef7e.woff2')format("woff");}.ff1_c01024{font-family:ff1_c01024;line-height:0.934082;font-style:normal;font-weight:normal;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_20a7c4eebf47bd73b9ab9ab4.woff2')format("woff");}.ff2_c01024{font-family:ff2_c01024;line-height:0.987793;font-style:normal;font-weight:normal;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_3cc584bfd40e20e8002fb785.woff2')format("woff");}.ff3_c01024{font-family:ff3_c01024;line-height:1.155762;font-style: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;}
.ls3_c01024{letter-spacing:0.000000px;}
.ls2_c01024{letter-spacing:0.012000px;}
.ls1_c01024{letter-spacing:0.014400px;}
.ls4_c01024{letter-spacing:0.021600px;}
.ls0_c01024{letter-spacing:1.058400px;}
.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;}
}
.ws0_c01024{word-spacing:-19.814400px;}
.ws1_c01024{word-spacing:0.000000px;}
._d_c01024{margin-left:-6.523200px;}
._5_c01024{margin-left:-3.160800px;}
._3_c01024{margin-left:-1.922400px;}
._b_c01024{width:1.728000px;}
._1_c01024{width:2.800800px;}
._f_c01024{width:3.909600px;}
._10_c01024{width:5.788800px;}
._2_c01024{width:7.783200px;}
._e_c01024{width:9.410400px;}
._0_c01024{width:10.548000px;}
._4_c01024{width:12.492000px;}
._6_c01024{width:13.766400px;}
._13_c01024{width:15.789600px;}
._14_c01024{width:16.869600px;}
._11_c01024{width:18.525600px;}
._12_c01024{width:21.153600px;}
._a_c01024{width:31.615200px;}
._c_c01024{width:32.760000px;}
._9_c01024{width:34.416000px;}
._7_c01024{width:36.338400px;}
._8_c01024{width:37.576800px;}
.fc0_c01024{color:rgb(0,0,0);}
.fs1_c01024{font-size:54.000000px;}
.fs2_c01024{font-size:60.000000px;}
.fs0_c01024{font-size:72.000000px;}
.y0_c01024{bottom:0.000000px;}
.yb_c01024{bottom:10.500000px;}
.y6_c01024{bottom:12.000000px;}
.ya_c01024{bottom:28.500000px;}
.yf_c01024{bottom:67.500000px;}
.yd_c01024{bottom:174.000000px;}
.yc_c01024{bottom:201.000000px;}
.y9_c01024{bottom:246.000000px;}
.y8_c01024{bottom:600.000000px;}
.y7_c01024{bottom:627.000000px;}
.y5_c01024{bottom:672.000000px;}
.y4_c01024{bottom:1014.000000px;}
.y3_c01024{bottom:1041.000000px;}
.y2_c01024{bottom:1068.000000px;}
.y1_c01024{bottom:1095.000000px;}
.ye_c01024{bottom:1194.000000px;}
.h3_c01024{height:42.292969px;}
.h1_c01024{height:51.257812px;}
.h5_c01024{height:56.074219px;}
.h2_c01024{height:310.500000px;}
.h4_c01024{height:322.500000px;}
.h0_c01024{height:1263.000000px;}
.w1_c01024{width:676.500000px;}
.w0_c01024{width:892.500000px;}
.x0_c01024{left:0.000000px;}
.x3_c01024{left:10.364136px;}
.x1_c01024{left:150.519750px;}
.x4_c01024{left:233.575500px;}
.x2_c01024{left:236.864850px;}
.x5_c01024{left:416.782800px;}
.x6_c01024{left:801.992850px;}
@media print{
.v0_c01024{vertical-align:0.000000pt;}
.ls3_c01024{letter-spacing:0.000000pt;}
.ls2_c01024{letter-spacing:0.010667pt;}
.ls1_c01024{letter-spacing:0.012800pt;}
.ls4_c01024{letter-spacing:0.019200pt;}
.ls0_c01024{letter-spacing:0.940800pt;}
.ws0_c01024{word-spacing:-17.612800pt;}
.ws1_c01024{word-spacing:0.000000pt;}
._d_c01024{margin-left:-5.798400pt;}
._5_c01024{margin-left:-2.809600pt;}
._3_c01024{margin-left:-1.708800pt;}
._b_c01024{width:1.536000pt;}
._1_c01024{width:2.489600pt;}
._f_c01024{width:3.475200pt;}
._10_c01024{width:5.145600pt;}
._2_c01024{width:6.918400pt;}
._e_c01024{width:8.364800pt;}
._0_c01024{width:9.376000pt;}
._4_c01024{width:11.104000pt;}
._6_c01024{width:12.236800pt;}
._13_c01024{width:14.035200pt;}
._14_c01024{width:14.995200pt;}
._11_c01024{width:16.467200pt;}
._12_c01024{width:18.803200pt;}
._a_c01024{width:28.102400pt;}
._c_c01024{width:29.120000pt;}
._9_c01024{width:30.592000pt;}
._7_c01024{width:32.300800pt;}
._8_c01024{width:33.401600pt;}
.fs1_c01024{font-size:48.000000pt;}
.fs2_c01024{font-size:53.333333pt;}
.fs0_c01024{font-size:64.000000pt;}
.y0_c01024{bottom:0.000000pt;}
.yb_c01024{bottom:9.333333pt;}
.y6_c01024{bottom:10.666667pt;}
.ya_c01024{bottom:25.333333pt;}
.yf_c01024{bottom:60.000000pt;}
.yd_c01024{bottom:154.666667pt;}
.yc_c01024{bottom:178.666667pt;}
.y9_c01024{bottom:218.666667pt;}
.y8_c01024{bottom:533.333333pt;}
.y7_c01024{bottom:557.333333pt;}
.y5_c01024{bottom:597.333333pt;}
.y4_c01024{bottom:901.333333pt;}
.y3_c01024{bottom:925.333333pt;}
.y2_c01024{bottom:949.333333pt;}
.y1_c01024{bottom:973.333333pt;}
.ye_c01024{bottom:1061.333333pt;}
.h3_c01024{height:37.593750pt;}
.h1_c01024{height:45.562500pt;}
.h5_c01024{height:49.843750pt;}
.h2_c01024{height:276.000000pt;}
.h4_c01024{height:286.666667pt;}
.h0_c01024{height:1122.666667pt;}
.w1_c01024{width:601.333333pt;}
.w0_c01024{width:793.333333pt;}
.x0_c01024{left:0.000000pt;}
.x3_c01024{left:9.212565pt;}
.x1_c01024{left:133.795333pt;}
.x4_c01024{left:207.622667pt;}
.x2_c01024{left:210.546533pt;}
.x5_c01024{left:370.473600pt;}
.x6_c01024{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3f3abbff42e24ac1f30df5bd.woff2')format("woff");}.ff1_c01025{font-family:ff1_c01025;line-height:0.801270;font-style:normal;font-weight:normal;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_b2d37f0b6b9800c07fb5a521.woff2')format("woff");}.ff2_c01025{font-family:ff2_c01025;line-height:1.161133;font-style:normal;font-weight:normal;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_7f9a4f4f8cce6388ee9468aa.woff2')format("woff");}.ff3_c01025{font-family:ff3_c01025;line-height:0.932129;font-style:normal;font-weight:normal;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_678754b4788de6fd3a3decf3.woff2')format("woff");}.ff4_c01025{font-family:ff4_c01025;line-height:0.755859;font-style:normal;font-weight:normal;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_210d423786a6b580513b85cd.woff2')format("woff");}.ff5_c01025{font-family:ff5_c01025;line-height:1.155762;font-style: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);}
.v0_c01025{vertical-align:0.000000px;}
.ls0_c01025{letter-spacing:0.000000px;}
.ls1_c01025{letter-spacing:0.012000px;}
.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;}
}
.ws0_c01025{word-spacing:0.000000px;}
._2_c01025{margin-left:-3.938400px;}
._a_c01025{margin-left:-2.562840px;}
._3_c01025{margin-left:-1.267200px;}
._0_c01025{width:1.274400px;}
._4_c01025{width:2.354400px;}
._1_c01025{width:4.514400px;}
._7_c01025{width:7.173600px;}
._6_c01025{width:8.223600px;}
._5_c01025{width:9.516000px;}
._9_c01025{width:10.777200px;}
._8_c01025{width:13.233360px;}
.fc0_c01025{color:rgb(0,0,0);}
.fs0_c01025{font-size:54.000000px;}
.fs2_c01025{font-size:60.000000px;}
.fs1_c01025{font-size:72.000000px;}
.y0_c01025{bottom:0.000000px;}
.y2_c01025{bottom:12.000000px;}
.yb_c01025{bottom:67.500000px;}
.y9_c01025{bottom:184.500000px;}
.y8_c01025{bottom:205.500000px;}
.y7_c01025{bottom:241.500000px;}
.y6_c01025{bottom:268.500000px;}
.y5_c01025{bottom:307.500000px;}
.y4_c01025{bottom:369.000000px;}
.y3_c01025{bottom:414.000000px;}
.y1_c01025{bottom:760.500000px;}
.ya_c01025{bottom:1194.000000px;}
.h2_c01025{height:42.292969px;}
.h8_c01025{height:44.208984px;}
.h5_c01025{height:51.257812px;}
.h7_c01025{height:56.074219px;}
.h6_c01025{height:56.455078px;}
.h4_c01025{height:67.746094px;}
.h3_c01025{height:318.000000px;}
.h1_c01025{height:352.500000px;}
.h0_c01025{height:1263.000000px;}
.w1_c01025{width:676.500000px;}
.w0_c01025{width:892.500000px;}
.x0_c01025{left:0.000000px;}
.x1_c01025{left:66.000000px;}
.x3_c01025{left:219.614100px;}
.x2_c01025{left:244.003800px;}
@media print{
.v0_c01025{vertical-align:0.000000pt;}
.ls0_c01025{letter-spacing:0.000000pt;}
.ls1_c01025{letter-spacing:0.010667pt;}
.ws0_c01025{word-spacing:0.000000pt;}
._2_c01025{margin-left:-3.500800pt;}
._a_c01025{margin-left:-2.278080pt;}
._3_c01025{margin-left:-1.126400pt;}
._0_c01025{width:1.132800pt;}
._4_c01025{width:2.092800pt;}
._1_c01025{width:4.012800pt;}
._7_c01025{width:6.376533pt;}
._6_c01025{width:7.309867pt;}
._5_c01025{width:8.458667pt;}
._9_c01025{width:9.579733pt;}
._8_c01025{width:11.762987pt;}
.fs0_c01025{font-size:48.000000pt;}
.fs2_c01025{font-size:53.333333pt;}
.fs1_c01025{font-size:64.000000pt;}
.y0_c01025{bottom:0.000000pt;}
.y2_c01025{bottom:10.666667pt;}
.yb_c01025{bottom:60.000000pt;}
.y9_c01025{bottom:164.000000pt;}
.y8_c01025{bottom:182.666667pt;}
.y7_c01025{bottom:214.666667pt;}
.y6_c01025{bottom:238.666667pt;}
.y5_c01025{bottom:273.333333pt;}
.y4_c01025{bottom:328.000000pt;}
.y3_c01025{bottom:368.000000pt;}
.y1_c01025{bottom:676.000000pt;}
.ya_c01025{bottom:1061.333333pt;}
.h2_c01025{height:37.593750pt;}
.h8_c01025{height:39.296875pt;}
.h5_c01025{height:45.562500pt;}
.h7_c01025{height:49.843750pt;}
.h6_c01025{height:50.182292pt;}
.h4_c01025{height:60.218750pt;}
.h3_c01025{height:282.666667pt;}
.h1_c01025{height:313.333333pt;}
.h0_c01025{height:1122.666667pt;}
.w1_c01025{width:601.333333pt;}
.w0_c01025{width:793.333333pt;}
.x0_c01025{left:0.000000pt;}
.x1_c01025{left:58.666667pt;}
.x3_c01025{left:195.212533pt;}
.x2_c01025{left:216.892267pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_99a96242ddc0173837418dff.woff2')format("woff");}.ff1_c01026{font-family:ff1_c01026;line-height:1.010254;font-style:normal;font-weight:normal;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_6c0718b5f11eb795fc07889a.woff2')format("woff");}.ff2_c01026{font-family:ff2_c01026;line-height:0.986816;font-style:normal;font-weight:normal;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_3fe19e98700a21fb5b4bd466.woff2')format("woff");}.ff3_c01026{font-family:ff3_c01026;line-height:1.155762;font-style: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);}
.v0_c01026{vertical-align:0.000000px;}
.ls3_c01026{letter-spacing:-0.014400px;}
.ls2_c01026{letter-spacing:0.000000px;}
.ls1_c01026{letter-spacing:0.012000px;}
.ls0_c01026{letter-spacing:0.014400px;}
.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;}
}
.ws1_c01026{word-spacing:-18.000000px;}
.ws3_c01026{word-spacing:-0.086400px;}
.ws2_c01026{word-spacing:-0.072000px;}
.ws0_c01026{word-spacing:-0.057600px;}
.ws4_c01026{word-spacing:0.000000px;}
._1d_c01026{margin-left:-7.531200px;}
._4_c01026{margin-left:-5.450400px;}
._18_c01026{margin-left:-4.104000px;}
._2_c01026{margin-left:-2.649600px;}
._0_c01026{margin-left:-1.468800px;}
._e_c01026{width:1.130400px;}
._3_c01026{width:2.196000px;}
._1_c01026{width:3.312000px;}
._a_c01026{width:4.420800px;}
._5_c01026{width:5.644800px;}
._12_c01026{width:7.567200px;}
._11_c01026{width:9.797400px;}
._10_c01026{width:11.541600px;}
._15_c01026{width:13.060800px;}
._f_c01026{width:14.148000px;}
._13_c01026{width:16.063200px;}
._1a_c01026{width:19.461600px;}
._1c_c01026{width:20.498400px;}
._14_c01026{width:21.801600px;}
._19_c01026{width:24.300000px;}
._16_c01026{width:25.725600px;}
._17_c01026{width:26.992800px;}
._b_c01026{width:29.088000px;}
._d_c01026{width:30.924000px;}
._8_c01026{width:32.688000px;}
._c_c01026{width:33.804000px;}
._1b_c01026{width:34.999200px;}
._9_c01026{width:36.000000px;}
._6_c01026{width:37.468800px;}
._7_c01026{width:38.649600px;}
.fc0_c01026{color:rgb(0,0,0);}
.fs1_c01026{font-size:60.000000px;}
.fs0_c01026{font-size:72.000000px;}
.y0_c01026{bottom:0.000000px;}
.y28_c01026{bottom:67.500000px;}
.y26_c01026{bottom:193.500000px;}
.y25_c01026{bottom:214.500000px;}
.y24_c01026{bottom:256.500000px;}
.y23_c01026{bottom:298.500000px;}
.y22_c01026{bottom:319.500000px;}
.y21_c01026{bottom:361.500000px;}
.y20_c01026{bottom:403.500000px;}
.y1f_c01026{bottom:424.500000px;}
.y1e_c01026{bottom:466.500000px;}
.y1d_c01026{bottom:487.500000px;}
.y1c_c01026{bottom:508.500000px;}
.y1b_c01026{bottom:529.500000px;}
.y1a_c01026{bottom:550.500000px;}
.y19_c01026{bottom:571.500000px;}
.y18_c01026{bottom:592.500000px;}
.y17_c01026{bottom:613.500000px;}
.y16_c01026{bottom:655.500000px;}
.y15_c01026{bottom:676.500000px;}
.y14_c01026{bottom:697.500000px;}
.y13_c01026{bottom:718.500000px;}
.y12_c01026{bottom:739.500000px;}
.y11_c01026{bottom:760.500000px;}
.y10_c01026{bottom:781.500000px;}
.yf_c01026{bottom:802.500000px;}
.ye_c01026{bottom:823.500000px;}
.yd_c01026{bottom:844.500000px;}
.yc_c01026{bottom:865.500000px;}
.yb_c01026{bottom:886.500000px;}
.ya_c01026{bottom:907.500000px;}
.y9_c01026{bottom:928.500000px;}
.y8_c01026{bottom:949.500000px;}
.y7_c01026{bottom:970.500000px;}
.y6_c01026{bottom:991.500000px;}
.y5_c01026{bottom:1012.500000px;}
.y4_c01026{bottom:1033.500000px;}
.y3_c01026{bottom:1054.500000px;}
.y2_c01026{bottom:1075.500000px;}
.y1_c01026{bottom:1096.500000px;}
.y27_c01026{bottom:1194.000000px;}
.h1_c01026{height:52.417969px;}
.h2_c01026{height:56.074219px;}
.h0_c01026{height:1263.000000px;}
.w0_c01026{width:892.500000px;}
.x0_c01026{left:0.000000px;}
.x1_c01026{left:150.519750px;}
.x2_c01026{left:416.782800px;}
.x3_c01026{left:801.992850px;}
@media print{
.v0_c01026{vertical-align:0.000000pt;}
.ls3_c01026{letter-spacing:-0.012800pt;}
.ls2_c01026{letter-spacing:0.000000pt;}
.ls1_c01026{letter-spacing:0.010667pt;}
.ls0_c01026{letter-spacing:0.012800pt;}
.ws1_c01026{word-spacing:-16.000000pt;}
.ws3_c01026{word-spacing:-0.076800pt;}
.ws2_c01026{word-spacing:-0.064000pt;}
.ws0_c01026{word-spacing:-0.051200pt;}
.ws4_c01026{word-spacing:0.000000pt;}
._1d_c01026{margin-left:-6.694400pt;}
._4_c01026{margin-left:-4.844800pt;}
._18_c01026{margin-left:-3.648000pt;}
._2_c01026{margin-left:-2.355200pt;}
._0_c01026{margin-left:-1.305600pt;}
._e_c01026{width:1.004800pt;}
._3_c01026{width:1.952000pt;}
._1_c01026{width:2.944000pt;}
._a_c01026{width:3.929600pt;}
._5_c01026{width:5.017600pt;}
._12_c01026{width:6.726400pt;}
._11_c01026{width:8.708800pt;}
._10_c01026{width:10.259200pt;}
._15_c01026{width:11.609600pt;}
._f_c01026{width:12.576000pt;}
._13_c01026{width:14.278400pt;}
._1a_c01026{width:17.299200pt;}
._1c_c01026{width:18.220800pt;}
._14_c01026{width:19.379200pt;}
._19_c01026{width:21.600000pt;}
._16_c01026{width:22.867200pt;}
._17_c01026{width:23.993600pt;}
._b_c01026{width:25.856000pt;}
._d_c01026{width:27.488000pt;}
._8_c01026{width:29.056000pt;}
._c_c01026{width:30.048000pt;}
._1b_c01026{width:31.110400pt;}
._9_c01026{width:32.000000pt;}
._6_c01026{width:33.305600pt;}
._7_c01026{width:34.355200pt;}
.fs1_c01026{font-size:53.333333pt;}
.fs0_c01026{font-size:64.000000pt;}
.y0_c01026{bottom:0.000000pt;}
.y28_c01026{bottom:60.000000pt;}
.y26_c01026{bottom:172.000000pt;}
.y25_c01026{bottom:190.666667pt;}
.y24_c01026{bottom:228.000000pt;}
.y23_c01026{bottom:265.333333pt;}
.y22_c01026{bottom:284.000000pt;}
.y21_c01026{bottom:321.333333pt;}
.y20_c01026{bottom:358.666667pt;}
.y1f_c01026{bottom:377.333333pt;}
.y1e_c01026{bottom:414.666667pt;}
.y1d_c01026{bottom:433.333333pt;}
.y1c_c01026{bottom:452.000000pt;}
.y1b_c01026{bottom:470.666667pt;}
.y1a_c01026{bottom:489.333333pt;}
.y19_c01026{bottom:508.000000pt;}
.y18_c01026{bottom:526.666667pt;}
.y17_c01026{bottom:545.333333pt;}
.y16_c01026{bottom:582.666667pt;}
.y15_c01026{bottom:601.333333pt;}
.y14_c01026{bottom:620.000000pt;}
.y13_c01026{bottom:638.666667pt;}
.y12_c01026{bottom:657.333333pt;}
.y11_c01026{bottom:676.000000pt;}
.y10_c01026{bottom:694.666667pt;}
.yf_c01026{bottom:713.333333pt;}
.ye_c01026{bottom:732.000000pt;}
.yd_c01026{bottom:750.666667pt;}
.yc_c01026{bottom:769.333333pt;}
.yb_c01026{bottom:788.000000pt;}
.ya_c01026{bottom:806.666667pt;}
.y9_c01026{bottom:825.333333pt;}
.y8_c01026{bottom:844.000000pt;}
.y7_c01026{bottom:862.666667pt;}
.y6_c01026{bottom:881.333333pt;}
.y5_c01026{bottom:900.000000pt;}
.y4_c01026{bottom:918.666667pt;}
.y3_c01026{bottom:937.333333pt;}
.y2_c01026{bottom:956.000000pt;}
.y1_c01026{bottom:974.666667pt;}
.y27_c01026{bottom:1061.333333pt;}
.h1_c01026{height:46.593750pt;}
.h2_c01026{height:49.843750pt;}
.h0_c01026{height:1122.666667pt;}
.w0_c01026{width:793.333333pt;}
.x0_c01026{left:0.000000pt;}
.x1_c01026{left:133.795333pt;}
.x2_c01026{left:370.473600pt;}
.x3_c01026{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_442fcdd00dbd76436940803e.woff2')format("woff");}.ff1_c01027{font-family:ff1_c01027;line-height:1.161133;font-style:normal;font-weight:normal;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_b2cbd75430a16c2af0800475.woff2')format("woff");}.ff2_c01027{font-family:ff2_c01027;line-height:0.932129;font-style:normal;font-weight:normal;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_628e9a4beec4fab370569dae.woff2')format("woff");}.ff3_c01027{font-family:ff3_c01027;line-height:1.010254;font-style:normal;font-weight:normal;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_ce39d525a5cdebd63588111b.woff2')format("woff");}.ff4_c01027{font-family:ff4_c01027;line-height:0.986816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01027;src:url('chunks/assets/font_a132ac5243b9f69878a189da.woff2')format("woff");}.ff5_c01027{font-family:ff5_c01027;line-height:0.755859;font-style:normal;font-weight: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_c01027;src:url('chunks/assets/font_8a689135926c7512174ba305.woff2')format("woff");}.ff6_c01027{font-family:ff6_c01027;line-height:1.155762;font-style: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;}
.ls1_c01027{letter-spacing:0.000000px;}
.ls2_c01027{letter-spacing:0.012000px;}
.ls0_c01027{letter-spacing:0.043200px;}
.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;}
}
.ws0_c01027{word-spacing:-18.000000px;}
.ws1_c01027{word-spacing:-0.072000px;}
.ws2_c01027{word-spacing:0.000000px;}
._1d_c01027{margin-left:-5.867760px;}
._9_c01027{margin-left:-4.470720px;}
._1_c01027{margin-left:-2.944800px;}
._4_c01027{margin-left:-1.468800px;}
._0_c01027{width:1.742400px;}
._3_c01027{width:3.124800px;}
._2_c01027{width:4.672800px;}
._7_c01027{width:6.403200px;}
._6_c01027{width:7.755600px;}
._5_c01027{width:9.516000px;}
._1a_c01027{width:10.570320px;}
._8_c01027{width:11.831760px;}
._a_c01027{width:14.016000px;}
._1b_c01027{width:15.052560px;}
._d_c01027{width:16.236000px;}
._b_c01027{width:19.816800px;}
._c_c01027{width:20.959200px;}
._e_c01027{width:22.420800px;}
._1c_c01027{width:23.694720px;}
._16_c01027{width:24.781920px;}
._f_c01027{width:26.496000px;}
._17_c01027{width:27.655200px;}
._19_c01027{width:29.080800px;}
._10_c01027{width:30.160800px;}
._18_c01027{width:31.204800px;}
._12_c01027{width:32.875200px;}
._11_c01027{width:34.459200px;}
._13_c01027{width:35.892000px;}
._14_c01027{width:37.137600px;}
._15_c01027{width:38.772000px;}
.fc0_c01027{color:rgb(0,0,0);}
.fs1_c01027{font-size:60.000000px;}
.fs0_c01027{font-size:72.000000px;}
.y0_c01027{bottom:0.000000px;}
.y25_c01027{bottom:67.500000px;}
.y23_c01027{bottom:151.500000px;}
.y22_c01027{bottom:177.000000px;}
.y21_c01027{bottom:214.500000px;}
.y20_c01027{bottom:252.000000px;}
.y1f_c01027{bottom:276.000000px;}
.y1e_c01027{bottom:301.500000px;}
.y1d_c01027{bottom:327.000000px;}
.y1c_c01027{bottom:352.500000px;}
.y1b_c01027{bottom:378.000000px;}
.y1a_c01027{bottom:402.000000px;}
.y19_c01027{bottom:427.500000px;}
.y18_c01027{bottom:453.000000px;}
.y17_c01027{bottom:478.500000px;}
.y16_c01027{bottom:504.000000px;}
.y15_c01027{bottom:528.000000px;}
.y14_c01027{bottom:553.500000px;}
.y13_c01027{bottom:579.000000px;}
.y12_c01027{bottom:604.500000px;}
.y11_c01027{bottom:630.000000px;}
.y10_c01027{bottom:654.000000px;}
.yf_c01027{bottom:679.500000px;}
.ye_c01027{bottom:705.000000px;}
.yd_c01027{bottom:730.500000px;}
.yc_c01027{bottom:756.000000px;}
.yb_c01027{bottom:780.000000px;}
.ya_c01027{bottom:805.500000px;}
.y9_c01027{bottom:831.000000px;}
.y8_c01027{bottom:856.500000px;}
.y7_c01027{bottom:882.000000px;}
.y6_c01027{bottom:925.500000px;}
.y5_c01027{bottom:946.500000px;}
.y4_c01027{bottom:982.500000px;}
.y3_c01027{bottom:1009.500000px;}
.y2_c01027{bottom:1048.500000px;}
.y1_c01027{bottom:1095.000000px;}
.y24_c01027{bottom:1194.000000px;}
.h6_c01027{height:44.208984px;}
.h2_c01027{height:51.257812px;}
.h4_c01027{height:52.417969px;}
.h5_c01027{height:56.074219px;}
.h3_c01027{height:56.455078px;}
.h1_c01027{height:67.746094px;}
.h0_c01027{height:1263.000000px;}
.w0_c01027{width:892.500000px;}
.x0_c01027{left:0.000000px;}
.x1_c01027{left:65.480310px;}
@media print{
.v0_c01027{vertical-align:0.000000pt;}
.ls1_c01027{letter-spacing:0.000000pt;}
.ls2_c01027{letter-spacing:0.010667pt;}
.ls0_c01027{letter-spacing:0.038400pt;}
.ws0_c01027{word-spacing:-16.000000pt;}
.ws1_c01027{word-spacing:-0.064000pt;}
.ws2_c01027{word-spacing:0.000000pt;}
._1d_c01027{margin-left:-5.215787pt;}
._9_c01027{margin-left:-3.973973pt;}
._1_c01027{margin-left:-2.617600pt;}
._4_c01027{margin-left:-1.305600pt;}
._0_c01027{width:1.548800pt;}
._3_c01027{width:2.777600pt;}
._2_c01027{width:4.153600pt;}
._7_c01027{width:5.691733pt;}
._6_c01027{width:6.893867pt;}
._5_c01027{width:8.458667pt;}
._1a_c01027{width:9.395840pt;}
._8_c01027{width:10.517120pt;}
._a_c01027{width:12.458667pt;}
._1b_c01027{width:13.380053pt;}
._d_c01027{width:14.432000pt;}
._b_c01027{width:17.614933pt;}
._c_c01027{width:18.630400pt;}
._e_c01027{width:19.929600pt;}
._1c_c01027{width:21.061973pt;}
._16_c01027{width:22.028373pt;}
._f_c01027{width:23.552000pt;}
._17_c01027{width:24.582400pt;}
._19_c01027{width:25.849600pt;}
._10_c01027{width:26.809600pt;}
._18_c01027{width:27.737600pt;}
._12_c01027{width:29.222400pt;}
._11_c01027{width:30.630400pt;}
._13_c01027{width:31.904000pt;}
._14_c01027{width:33.011200pt;}
._15_c01027{width:34.464000pt;}
.fs1_c01027{font-size:53.333333pt;}
.fs0_c01027{font-size:64.000000pt;}
.y0_c01027{bottom:0.000000pt;}
.y25_c01027{bottom:60.000000pt;}
.y23_c01027{bottom:134.666667pt;}
.y22_c01027{bottom:157.333333pt;}
.y21_c01027{bottom:190.666667pt;}
.y20_c01027{bottom:224.000000pt;}
.y1f_c01027{bottom:245.333333pt;}
.y1e_c01027{bottom:268.000000pt;}
.y1d_c01027{bottom:290.666667pt;}
.y1c_c01027{bottom:313.333333pt;}
.y1b_c01027{bottom:336.000000pt;}
.y1a_c01027{bottom:357.333333pt;}
.y19_c01027{bottom:380.000000pt;}
.y18_c01027{bottom:402.666667pt;}
.y17_c01027{bottom:425.333333pt;}
.y16_c01027{bottom:448.000000pt;}
.y15_c01027{bottom:469.333333pt;}
.y14_c01027{bottom:492.000000pt;}
.y13_c01027{bottom:514.666667pt;}
.y12_c01027{bottom:537.333333pt;}
.y11_c01027{bottom:560.000000pt;}
.y10_c01027{bottom:581.333333pt;}
.yf_c01027{bottom:604.000000pt;}
.ye_c01027{bottom:626.666667pt;}
.yd_c01027{bottom:649.333333pt;}
.yc_c01027{bottom:672.000000pt;}
.yb_c01027{bottom:693.333333pt;}
.ya_c01027{bottom:716.000000pt;}
.y9_c01027{bottom:738.666667pt;}
.y8_c01027{bottom:761.333333pt;}
.y7_c01027{bottom:784.000000pt;}
.y6_c01027{bottom:822.666667pt;}
.y5_c01027{bottom:841.333333pt;}
.y4_c01027{bottom:873.333333pt;}
.y3_c01027{bottom:897.333333pt;}
.y2_c01027{bottom:932.000000pt;}
.y1_c01027{bottom:973.333333pt;}
.y24_c01027{bottom:1061.333333pt;}
.h6_c01027{height:39.296875pt;}
.h2_c01027{height:45.562500pt;}
.h4_c01027{height:46.593750pt;}
.h5_c01027{height:49.843750pt;}
.h3_c01027{height:50.182292pt;}
.h1_c01027{height:60.218750pt;}
.h0_c01027{height:1122.666667pt;}
.w0_c01027{width:793.333333pt;}
.x0_c01027{left:0.000000pt;}
.x1_c01027{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ae64b56ae047df425f44a01c.woff2')format("woff");}.ff1_c01028{font-family:ff1_c01028;line-height:1.010254;font-style:normal;font-weight:normal;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_a9626252d63f5f18cd40f559.woff2')format("woff");}.ff2_c01028{font-family:ff2_c01028;line-height:0.986816;font-style:normal;font-weight:normal;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_3965f8fc2aa92d4c573bbb8b.woff2')format("woff");}.ff3_c01028{font-family:ff3_c01028;line-height:1.155762;font-style: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);}
.v0_c01028{vertical-align:0.000000px;}
.ls5_c01028{letter-spacing:-0.014400px;}
.ls4_c01028{letter-spacing:0.000000px;}
.ls3_c01028{letter-spacing:0.012000px;}
.ls0_c01028{letter-spacing:1.497600px;}
.ls2_c01028{letter-spacing:1.512000px;}
.ls1_c01028{letter-spacing:1.526400px;}
.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:-18.000000px;}
.ws1_c01028{word-spacing:-1.598400px;}
.ws3_c01028{word-spacing:-0.072000px;}
.ws0_c01028{word-spacing:-0.057600px;}
.ws4_c01028{word-spacing:0.000000px;}
._8_c01028{margin-left:-5.781600px;}
._e_c01028{margin-left:-4.588800px;}
._4_c01028{margin-left:-3.326400px;}
._1_c01028{margin-left:-1.656000px;}
._0_c01028{width:1.389600px;}
._3_c01028{width:3.132000px;}
._2_c01028{width:5.068800px;}
._f_c01028{width:8.006400px;}
._10_c01028{width:12.208800px;}
._9_c01028{width:14.032800px;}
._7_c01028{width:15.480000px;}
._12_c01028{width:16.502400px;}
._5_c01028{width:19.224000px;}
._6_c01028{width:20.570400px;}
._11_c01028{width:22.452000px;}
._a_c01028{width:32.378400px;}
._b_c01028{width:34.056000px;}
._c_c01028{width:36.172800px;}
._d_c01028{width:37.282200px;}
.fc0_c01028{color:rgb(0,0,0);}
.fs1_c01028{font-size:60.000000px;}
.fs0_c01028{font-size:72.000000px;}
.y0_c01028{bottom:0.000000px;}
.ya_c01028{bottom:67.500000px;}
.y8_c01028{bottom:909.000000px;}
.y7_c01028{bottom:934.500000px;}
.y6_c01028{bottom:970.500000px;}
.y5_c01028{bottom:996.000000px;}
.y4_c01028{bottom:1021.500000px;}
.y3_c01028{bottom:1047.000000px;}
.y2_c01028{bottom:1072.500000px;}
.y1_c01028{bottom:1096.500000px;}
.y9_c01028{bottom:1194.000000px;}
.h1_c01028{height:52.417969px;}
.h2_c01028{height:56.074219px;}
.h0_c01028{height:1263.000000px;}
.w0_c01028{width:892.500000px;}
.x0_c01028{left:0.000000px;}
.x1_c01028{left:173.812500px;}
.x2_c01028{left:416.782800px;}
.x3_c01028{left:801.992850px;}
@media print{
.v0_c01028{vertical-align:0.000000pt;}
.ls5_c01028{letter-spacing:-0.012800pt;}
.ls4_c01028{letter-spacing:0.000000pt;}
.ls3_c01028{letter-spacing:0.010667pt;}
.ls0_c01028{letter-spacing:1.331200pt;}
.ls2_c01028{letter-spacing:1.344000pt;}
.ls1_c01028{letter-spacing:1.356800pt;}
.ws2_c01028{word-spacing:-16.000000pt;}
.ws1_c01028{word-spacing:-1.420800pt;}
.ws3_c01028{word-spacing:-0.064000pt;}
.ws0_c01028{word-spacing:-0.051200pt;}
.ws4_c01028{word-spacing:0.000000pt;}
._8_c01028{margin-left:-5.139200pt;}
._e_c01028{margin-left:-4.078933pt;}
._4_c01028{margin-left:-2.956800pt;}
._1_c01028{margin-left:-1.472000pt;}
._0_c01028{width:1.235200pt;}
._3_c01028{width:2.784000pt;}
._2_c01028{width:4.505600pt;}
._f_c01028{width:7.116800pt;}
._10_c01028{width:10.852267pt;}
._9_c01028{width:12.473600pt;}
._7_c01028{width:13.760000pt;}
._12_c01028{width:14.668800pt;}
._5_c01028{width:17.088000pt;}
._6_c01028{width:18.284800pt;}
._11_c01028{width:19.957333pt;}
._a_c01028{width:28.780800pt;}
._b_c01028{width:30.272000pt;}
._c_c01028{width:32.153600pt;}
._d_c01028{width:33.139733pt;}
.fs1_c01028{font-size:53.333333pt;}
.fs0_c01028{font-size:64.000000pt;}
.y0_c01028{bottom:0.000000pt;}
.ya_c01028{bottom:60.000000pt;}
.y8_c01028{bottom:808.000000pt;}
.y7_c01028{bottom:830.666667pt;}
.y6_c01028{bottom:862.666667pt;}
.y5_c01028{bottom:885.333333pt;}
.y4_c01028{bottom:908.000000pt;}
.y3_c01028{bottom:930.666667pt;}
.y2_c01028{bottom:953.333333pt;}
.y1_c01028{bottom:974.666667pt;}
.y9_c01028{bottom:1061.333333pt;}
.h1_c01028{height:46.593750pt;}
.h2_c01028{height:49.843750pt;}
.h0_c01028{height:1122.666667pt;}
.w0_c01028{width:793.333333pt;}
.x0_c01028{left:0.000000pt;}
.x1_c01028{left:154.500000pt;}
.x2_c01028{left:370.473600pt;}
.x3_c01028{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0626b9a0a8c5f0da02ed8a8c.woff2')format("woff");}.ff1_c01029{font-family:ff1_c01029;line-height:0.884766;font-style:normal;font-weight:normal;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_ce11fc2bc44ab0ea408d3e65.woff2')format("woff");}.ff2_c01029{font-family:ff2_c01029;line-height:1.163086;font-style:normal;font-weight:normal;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_acad22fd6825ab17d22f72fe.woff2')format("woff");}.ff3_c01029{font-family:ff3_c01029;line-height:0.755859;font-style:normal;font-weight:normal;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_5dfe1e2342bc859e739d6070.woff2')format("woff");}.ff4_c01029{font-family:ff4_c01029;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01029;src:url('chunks/assets/font_bac20cbe5b1349f5c2d18083.woff2')format("woff");}.ff5_c01029{font-family:ff5_c01029;line-height:1.100098;font-style:normal;font-weight: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_c01029;src:url('chunks/assets/font_620d50a25eab1583aaf647c8.woff2')format("woff");}.ff6_c01029{font-family:ff6_c01029;line-height:0.889648;font-style: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);}
.m1_c01029{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3_c01029{vertical-align:-33.000000px;}
.v2_c01029{vertical-align:-23.086200px;}
.v0_c01029{vertical-align:0.000000px;}
.v1_c01029{vertical-align:23.086200px;}
.ls2_c01029{letter-spacing:0.000000px;}
.ls0_c01029{letter-spacing:0.007800px;}
.ls3_c01029{letter-spacing:0.012000px;}
.ls1_c01029{letter-spacing:3.212400px;}
.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;}
}
.ws0_c01029{word-spacing:-10.000001px;}
.ws1_c01029{word-spacing:0.000000px;}
._10_c01029{margin-left:-10.490400px;}
._1f_c01029{margin-left:-6.563241px;}
._f_c01029{margin-left:-4.406400px;}
._4_c01029{margin-left:-3.384000px;}
._9_c01029{margin-left:-2.354400px;}
._3_c01029{margin-left:-1.065600px;}
._11_c01029{width:1.036800px;}
._0_c01029{width:2.325600px;}
._b_c01029{width:3.412800px;}
._7_c01029{width:5.040000px;}
._c_c01029{width:6.112800px;}
._8_c01029{width:7.891200px;}
._a_c01029{width:9.468000px;}
._19_c01029{width:10.548000px;}
._1_c01029{width:11.570400px;}
._d_c01029{width:12.902400px;}
._2_c01029{width:13.996800px;}
._e_c01029{width:15.242400px;}
._6_c01029{width:17.049600px;}
._5_c01029{width:18.180000px;}
._12_c01029{width:21.679200px;}
._13_c01029{width:23.724000px;}
._1b_c01029{width:25.437600px;}
._1a_c01029{width:27.511200px;}
._16_c01029{width:29.527200px;}
._15_c01029{width:31.860000px;}
._14_c01029{width:32.882400px;}
._17_c01029{width:35.258400px;}
._18_c01029{width:36.309600px;}
._1d_c01029{width:37.504800px;}
._1c_c01029{width:38.577600px;}
._1e_c01029{width:40.082400px;}
.fc1_c01029{color:rgb(255,255,255);}
.fc0_c01029{color:rgb(0,0,0);}
.fs5_c01029{font-size:40.000002px;}
.fs2_c01029{font-size:48.000000px;}
.fs4_c01029{font-size:60.000000px;}
.fs1_c01029{font-size:72.000000px;}
.fs0_c01029{font-size:78.000000px;}
.fs3_c01029{font-size:96.000000px;}
.y0_c01029{bottom:0.000000px;}
.y1d_c01029{bottom:67.500000px;}
.y1f_c01029{bottom:132.000000px;}
.y1e_c01029{bottom:159.750000px;}
.y1a_c01029{bottom:258.000000px;}
.y19_c01029{bottom:285.000000px;}
.y18_c01029{bottom:312.000000px;}
.y17_c01029{bottom:339.000000px;}
.y16_c01029{bottom:366.000000px;}
.y15_c01029{bottom:393.000000px;}
.y14_c01029{bottom:420.000000px;}
.y13_c01029{bottom:447.000000px;}
.y12_c01029{bottom:495.000000px;}
.y11_c01029{bottom:522.000000px;}
.y10_c01029{bottom:549.000000px;}
.yf_c01029{bottom:576.000000px;}
.ye_c01029{bottom:603.000000px;}
.yd_c01029{bottom:630.000000px;}
.yc_c01029{bottom:657.000000px;}
.yb_c01029{bottom:684.000000px;}
.ya_c01029{bottom:711.000000px;}
.y9_c01029{bottom:738.000000px;}
.y8_c01029{bottom:765.000000px;}
.y7_c01029{bottom:792.000000px;}
.y6_c01029{bottom:819.000000px;}
.y5_c01029{bottom:867.000000px;}
.y4_c01029{bottom:894.000000px;}
.y3_c01029{bottom:921.000000px;}
.y2_c01029{bottom:948.000000px;}
.y1_c01029{bottom:994.500000px;}
.y1b_c01029{bottom:1066.500000px;}
.y1c_c01029{bottom:1194.000000px;}
.h7_c01029{height:35.292971px;}
.h6_c01029{height:44.208984px;}
.h8_c01029{height:52.939453px;}
.h1_c01029{height:55.224609px;}
.h5_c01029{height:56.074219px;}
.h2_c01029{height:67.746094px;}
.h3_c01029{height:68.250262px;}
.h4_c01029{height:90.328125px;}
.h0_c01029{height:1263.000000px;}
.w0_c01029{width:892.500000px;}
.x0_c01029{left:0.000000px;}
.x1_c01029{left:65.480310px;}
.x2_c01029{left:94.798875px;}
@media print{
.v3_c01029{vertical-align:-29.333333pt;}
.v2_c01029{vertical-align:-20.521067pt;}
.v0_c01029{vertical-align:0.000000pt;}
.v1_c01029{vertical-align:20.521067pt;}
.ls2_c01029{letter-spacing:0.000000pt;}
.ls0_c01029{letter-spacing:0.006933pt;}
.ls3_c01029{letter-spacing:0.010667pt;}
.ls1_c01029{letter-spacing:2.855467pt;}
.ws0_c01029{word-spacing:-8.888889pt;}
.ws1_c01029{word-spacing:0.000000pt;}
._10_c01029{margin-left:-9.324800pt;}
._1f_c01029{margin-left:-5.833992pt;}
._f_c01029{margin-left:-3.916800pt;}
._4_c01029{margin-left:-3.008000pt;}
._9_c01029{margin-left:-2.092800pt;}
._3_c01029{margin-left:-0.947200pt;}
._11_c01029{width:0.921600pt;}
._0_c01029{width:2.067200pt;}
._b_c01029{width:3.033600pt;}
._7_c01029{width:4.480000pt;}
._c_c01029{width:5.433600pt;}
._8_c01029{width:7.014400pt;}
._a_c01029{width:8.416000pt;}
._19_c01029{width:9.376000pt;}
._1_c01029{width:10.284800pt;}
._d_c01029{width:11.468800pt;}
._2_c01029{width:12.441600pt;}
._e_c01029{width:13.548800pt;}
._6_c01029{width:15.155200pt;}
._5_c01029{width:16.160000pt;}
._12_c01029{width:19.270400pt;}
._13_c01029{width:21.088000pt;}
._1b_c01029{width:22.611200pt;}
._1a_c01029{width:24.454400pt;}
._16_c01029{width:26.246400pt;}
._15_c01029{width:28.320000pt;}
._14_c01029{width:29.228800pt;}
._17_c01029{width:31.340800pt;}
._18_c01029{width:32.275200pt;}
._1d_c01029{width:33.337600pt;}
._1c_c01029{width:34.291200pt;}
._1e_c01029{width:35.628800pt;}
.fs5_c01029{font-size:35.555557pt;}
.fs2_c01029{font-size:42.666667pt;}
.fs4_c01029{font-size:53.333333pt;}
.fs1_c01029{font-size:64.000000pt;}
.fs0_c01029{font-size:69.333333pt;}
.fs3_c01029{font-size:85.333333pt;}
.y0_c01029{bottom:0.000000pt;}
.y1d_c01029{bottom:60.000000pt;}
.y1f_c01029{bottom:117.333333pt;}
.y1e_c01029{bottom:142.000000pt;}
.y1a_c01029{bottom:229.333333pt;}
.y19_c01029{bottom:253.333333pt;}
.y18_c01029{bottom:277.333333pt;}
.y17_c01029{bottom:301.333333pt;}
.y16_c01029{bottom:325.333333pt;}
.y15_c01029{bottom:349.333333pt;}
.y14_c01029{bottom:373.333333pt;}
.y13_c01029{bottom:397.333333pt;}
.y12_c01029{bottom:440.000000pt;}
.y11_c01029{bottom:464.000000pt;}
.y10_c01029{bottom:488.000000pt;}
.yf_c01029{bottom:512.000000pt;}
.ye_c01029{bottom:536.000000pt;}
.yd_c01029{bottom:560.000000pt;}
.yc_c01029{bottom:584.000000pt;}
.yb_c01029{bottom:608.000000pt;}
.ya_c01029{bottom:632.000000pt;}
.y9_c01029{bottom:656.000000pt;}
.y8_c01029{bottom:680.000000pt;}
.y7_c01029{bottom:704.000000pt;}
.y6_c01029{bottom:728.000000pt;}
.y5_c01029{bottom:770.666667pt;}
.y4_c01029{bottom:794.666667pt;}
.y3_c01029{bottom:818.666667pt;}
.y2_c01029{bottom:842.666667pt;}
.y1_c01029{bottom:884.000000pt;}
.y1b_c01029{bottom:948.000000pt;}
.y1c_c01029{bottom:1061.333333pt;}
.h7_c01029{height:31.371529pt;}
.h6_c01029{height:39.296875pt;}
.h8_c01029{height:47.057292pt;}
.h1_c01029{height:49.088542pt;}
.h5_c01029{height:49.843750pt;}
.h2_c01029{height:60.218750pt;}
.h3_c01029{height:60.666900pt;}
.h4_c01029{height:80.291667pt;}
.h0_c01029{height:1122.666667pt;}
.w0_c01029{width:793.333333pt;}
.x0_c01029{left:0.000000pt;}
.x1_c01029{left:58.204720pt;}
.x2_c01029{left:84.265667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f319088876da6cf8ceddb096.woff2')format("woff");}.ff1_c01030{font-family:ff1_c01030;line-height:1.163086;font-style:normal;font-weight:normal;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_670f5a778c70305dc9239c37.woff2')format("woff");}.ff2_c01030{font-family:ff2_c01030;line-height:1.155762;font-style:normal;font-weight:normal;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_612b7ed08a901def5e94cdec.woff2')format("woff");}.ff3_c01030{font-family:ff3_c01030;line-height:1.100098;font-style:normal;font-weight:normal;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_016524a188bd7abc9bb764e1.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;}
.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);}
.v3_c01030{vertical-align:-33.000000px;}
.v2_c01030{vertical-align:-23.086200px;}
.v0_c01030{vertical-align:0.000000px;}
.v1_c01030{vertical-align:23.086200px;}
.ls5_c01030{letter-spacing:-1.278000px;}
.ls4_c01030{letter-spacing:-0.007200px;}
.ls3_c01030{letter-spacing:0.000000px;}
.ls2_c01030{letter-spacing:0.012000px;}
.ls1_c01030{letter-spacing:0.257400px;}
.ls0_c01030{letter-spacing:3.766800px;}
.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;}
}
.ws1_c01030{word-spacing:-19.800000px;}
.ws0_c01030{word-spacing:-13.200000px;}
.ws2_c01030{word-spacing:-10.000001px;}
.ws3_c01030{word-spacing:0.000000px;}
._b_c01030{margin-left:-11.203200px;}
._15_c01030{margin-left:-6.732000px;}
._1a_c01030{margin-left:-5.433600px;}
._1_c01030{margin-left:-4.291200px;}
._e_c01030{margin-left:-2.728800px;}
._3_c01030{margin-left:-1.598400px;}
._4_c01030{width:1.224000px;}
._2_c01030{width:2.224800px;}
._5_c01030{width:3.225600px;}
._0_c01030{width:4.867200px;}
._11_c01030{width:6.732000px;}
._a_c01030{width:8.028000px;}
._c_c01030{width:9.295200px;}
._10_c01030{width:10.425600px;}
._d_c01030{width:12.074400px;}
._f_c01030{width:13.968000px;}
._12_c01030{width:15.091200px;}
._13_c01030{width:17.496000px;}
._7_c01030{width:18.496800px;}
._14_c01030{width:21.333600px;}
._6_c01030{width:22.348800px;}
._19_c01030{width:23.385600px;}
._8_c01030{width:24.415200px;}
._16_c01030{width:25.783200px;}
._9_c01030{width:27.115200px;}
._17_c01030{width:28.929600px;}
._18_c01030{width:30.088800px;}
.fc0_c01030{color:rgb(0,0,0);}
.fs3_c01030{font-size:40.000002px;}
.fs1_c01030{font-size:48.000000px;}
.fs2_c01030{font-size:60.000000px;}
.fs0_c01030{font-size:72.000000px;}
.y0_c01030{bottom:0.000000px;}
.y1b_c01030{bottom:67.500000px;}
.y20_c01030{bottom:140.250000px;}
.y1f_c01030{bottom:181.500000px;}
.y1e_c01030{bottom:201.000000px;}
.y1d_c01030{bottom:228.750000px;}
.y1c_c01030{bottom:278.250000px;}
.y19_c01030{bottom:384.000000px;}
.y18_c01030{bottom:411.000000px;}
.y17_c01030{bottom:438.000000px;}
.y16_c01030{bottom:465.000000px;}
.y15_c01030{bottom:513.000000px;}
.y14_c01030{bottom:540.000000px;}
.y13_c01030{bottom:567.000000px;}
.y12_c01030{bottom:594.000000px;}
.y11_c01030{bottom:621.000000px;}
.y10_c01030{bottom:648.000000px;}
.yf_c01030{bottom:675.000000px;}
.ye_c01030{bottom:702.000000px;}
.yd_c01030{bottom:729.000000px;}
.yc_c01030{bottom:756.000000px;}
.yb_c01030{bottom:804.000000px;}
.ya_c01030{bottom:831.000000px;}
.y9_c01030{bottom:858.000000px;}
.y8_c01030{bottom:885.000000px;}
.y7_c01030{bottom:912.000000px;}
.y6_c01030{bottom:939.000000px;}
.y5_c01030{bottom:987.000000px;}
.y4_c01030{bottom:1014.000000px;}
.y3_c01030{bottom:1041.000000px;}
.y2_c01030{bottom:1068.000000px;}
.y1_c01030{bottom:1095.000000px;}
.y1a_c01030{bottom:1194.000000px;}
.h4_c01030{height:35.292971px;}
.h5_c01030{height:52.939453px;}
.h3_c01030{height:56.074219px;}
.h2_c01030{height:67.746094px;}
.h1_c01030{height:68.250262px;}
.h0_c01030{height:1263.000000px;}
.w0_c01030{width:892.500000px;}
.x0_c01030{left:0.000000px;}
.x1_c01030{left:173.812500px;}
.x2_c01030{left:416.782800px;}
.x3_c01030{left:801.992850px;}
@media print{
.v3_c01030{vertical-align:-29.333333pt;}
.v2_c01030{vertical-align:-20.521067pt;}
.v0_c01030{vertical-align:0.000000pt;}
.v1_c01030{vertical-align:20.521067pt;}
.ls5_c01030{letter-spacing:-1.136000pt;}
.ls4_c01030{letter-spacing:-0.006400pt;}
.ls3_c01030{letter-spacing:0.000000pt;}
.ls2_c01030{letter-spacing:0.010667pt;}
.ls1_c01030{letter-spacing:0.228800pt;}
.ls0_c01030{letter-spacing:3.348267pt;}
.ws1_c01030{word-spacing:-17.600000pt;}
.ws0_c01030{word-spacing:-11.733333pt;}
.ws2_c01030{word-spacing:-8.888889pt;}
.ws3_c01030{word-spacing:0.000000pt;}
._b_c01030{margin-left:-9.958400pt;}
._15_c01030{margin-left:-5.984000pt;}
._1a_c01030{margin-left:-4.829867pt;}
._1_c01030{margin-left:-3.814400pt;}
._e_c01030{margin-left:-2.425600pt;}
._3_c01030{margin-left:-1.420800pt;}
._4_c01030{width:1.088000pt;}
._2_c01030{width:1.977600pt;}
._5_c01030{width:2.867200pt;}
._0_c01030{width:4.326400pt;}
._11_c01030{width:5.984000pt;}
._a_c01030{width:7.136000pt;}
._c_c01030{width:8.262400pt;}
._10_c01030{width:9.267200pt;}
._d_c01030{width:10.732800pt;}
._f_c01030{width:12.416000pt;}
._12_c01030{width:13.414400pt;}
._13_c01030{width:15.552000pt;}
._7_c01030{width:16.441600pt;}
._14_c01030{width:18.963200pt;}
._6_c01030{width:19.865600pt;}
._19_c01030{width:20.787200pt;}
._8_c01030{width:21.702400pt;}
._16_c01030{width:22.918400pt;}
._9_c01030{width:24.102400pt;}
._17_c01030{width:25.715200pt;}
._18_c01030{width:26.745600pt;}
.fs3_c01030{font-size:35.555557pt;}
.fs1_c01030{font-size:42.666667pt;}
.fs2_c01030{font-size:53.333333pt;}
.fs0_c01030{font-size:64.000000pt;}
.y0_c01030{bottom:0.000000pt;}
.y1b_c01030{bottom:60.000000pt;}
.y20_c01030{bottom:124.666667pt;}
.y1f_c01030{bottom:161.333333pt;}
.y1e_c01030{bottom:178.666667pt;}
.y1d_c01030{bottom:203.333333pt;}
.y1c_c01030{bottom:247.333333pt;}
.y19_c01030{bottom:341.333333pt;}
.y18_c01030{bottom:365.333333pt;}
.y17_c01030{bottom:389.333333pt;}
.y16_c01030{bottom:413.333333pt;}
.y15_c01030{bottom:456.000000pt;}
.y14_c01030{bottom:480.000000pt;}
.y13_c01030{bottom:504.000000pt;}
.y12_c01030{bottom:528.000000pt;}
.y11_c01030{bottom:552.000000pt;}
.y10_c01030{bottom:576.000000pt;}
.yf_c01030{bottom:600.000000pt;}
.ye_c01030{bottom:624.000000pt;}
.yd_c01030{bottom:648.000000pt;}
.yc_c01030{bottom:672.000000pt;}
.yb_c01030{bottom:714.666667pt;}
.ya_c01030{bottom:738.666667pt;}
.y9_c01030{bottom:762.666667pt;}
.y8_c01030{bottom:786.666667pt;}
.y7_c01030{bottom:810.666667pt;}
.y6_c01030{bottom:834.666667pt;}
.y5_c01030{bottom:877.333333pt;}
.y4_c01030{bottom:901.333333pt;}
.y3_c01030{bottom:925.333333pt;}
.y2_c01030{bottom:949.333333pt;}
.y1_c01030{bottom:973.333333pt;}
.y1a_c01030{bottom:1061.333333pt;}
.h4_c01030{height:31.371529pt;}
.h5_c01030{height:47.057292pt;}
.h3_c01030{height:49.843750pt;}
.h2_c01030{height:60.218750pt;}
.h1_c01030{height:60.666900pt;}
.h0_c01030{height:1122.666667pt;}
.w0_c01030{width:793.333333pt;}
.x0_c01030{left:0.000000pt;}
.x1_c01030{left:154.500000pt;}
.x2_c01030{left:370.473600pt;}
.x3_c01030{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9cf13c32d947d037bd313144.woff2')format("woff");}.ff1_c01031{font-family:ff1_c01031;line-height:0.934082;font-style:normal;font-weight:normal;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_cdb031ae80cbe0a72e2ee473.woff2')format("woff");}.ff2_c01031{font-family:ff2_c01031;line-height:0.939453;font-style:normal;font-weight:normal;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_cb5d1d000778138fbf9f9850.woff2')format("woff");}.ff3_c01031{font-family:ff3_c01031;line-height:0.987793;font-style:normal;font-weight:normal;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_d87498b2e192d7e53ae9c27a.woff2')format("woff");}.ff4_c01031{font-family:ff4_c01031;line-height:0.756836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01031;src:url('chunks/assets/font_eef82b5462dfbbb1296ca763.woff2')format("woff");}.ff5_c01031{font-family:ff5_c01031;line-height:1.155762;font-style: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;}
.ls1_c01031{letter-spacing:0.000000px;}
.ls0_c01031{letter-spacing:0.007800px;}
.ls2_c01031{letter-spacing:0.012000px;}
.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;}
}
.ws0_c01031{word-spacing:0.000000px;}
._0_c01031{margin-left:-7.920000px;}
._12_c01031{margin-left:-4.327200px;}
._10_c01031{margin-left:-3.218400px;}
._1_c01031{margin-left:-1.749600px;}
._7_c01031{width:1.332000px;}
._5_c01031{width:2.498400px;}
._3_c01031{width:4.212000px;}
._d_c01031{width:5.328000px;}
._13_c01031{width:6.588000px;}
._c_c01031{width:7.704000px;}
._a_c01031{width:9.100800px;}
._b_c01031{width:10.814400px;}
._f_c01031{width:12.031200px;}
._e_c01031{width:13.946400px;}
._17_c01031{width:15.364800px;}
._11_c01031{width:17.042400px;}
._18_c01031{width:18.201600px;}
._4_c01031{width:21.636000px;}
._6_c01031{width:23.248800px;}
._8_c01031{width:24.343200px;}
._9_c01031{width:25.538400px;}
._2_c01031{width:26.668800px;}
._15_c01031{width:31.716000px;}
._14_c01031{width:33.040800px;}
._16_c01031{width:35.481600px;}
.fc0_c01031{color:rgb(0,0,0);}
.fs2_c01031{font-size:54.000000px;}
.fs3_c01031{font-size:60.000000px;}
.fs0_c01031{font-size:72.000000px;}
.fs1_c01031{font-size:78.000000px;}
.y0_c01031{bottom:0.000000px;}
.ye_c01031{bottom:10.500000px;}
.yd_c01031{bottom:27.000000px;}
.yc_c01031{bottom:43.500000px;}
.y15_c01031{bottom:67.500000px;}
.y13_c01031{bottom:157.500000px;}
.y12_c01031{bottom:184.500000px;}
.y11_c01031{bottom:211.500000px;}
.y10_c01031{bottom:238.500000px;}
.yf_c01031{bottom:265.500000px;}
.yb_c01031{bottom:310.500000px;}
.ya_c01031{bottom:789.000000px;}
.y9_c01031{bottom:816.000000px;}
.y8_c01031{bottom:843.000000px;}
.y7_c01031{bottom:870.000000px;}
.y6_c01031{bottom:897.000000px;}
.y5_c01031{bottom:924.000000px;}
.y4_c01031{bottom:970.500000px;}
.y3_c01031{bottom:1041.000000px;}
.y2_c01031{bottom:1068.000000px;}
.y1_c01031{bottom:1095.000000px;}
.y14_c01031{bottom:1194.000000px;}
.h4_c01031{height:42.292969px;}
.h6_c01031{height:44.208984px;}
.h1_c01031{height:51.257812px;}
.h5_c01031{height:56.074219px;}
.h2_c01031{height:56.100586px;}
.h3_c01031{height:447.000000px;}
.h0_c01031{height:1263.000000px;}
.w1_c01031{width:653.207250px;}
.w0_c01031{width:892.500000px;}
.x0_c01031{left:0.000000px;}
.x3_c01031{left:14.472130px;}
.x2_c01031{left:36.791955px;}
.x1_c01031{left:65.480310px;}
.x4_c01031{left:165.358350px;}
@media print{
.v0_c01031{vertical-align:0.000000pt;}
.ls1_c01031{letter-spacing:0.000000pt;}
.ls0_c01031{letter-spacing:0.006933pt;}
.ls2_c01031{letter-spacing:0.010667pt;}
.ws0_c01031{word-spacing:0.000000pt;}
._0_c01031{margin-left:-7.040000pt;}
._12_c01031{margin-left:-3.846400pt;}
._10_c01031{margin-left:-2.860800pt;}
._1_c01031{margin-left:-1.555200pt;}
._7_c01031{width:1.184000pt;}
._5_c01031{width:2.220800pt;}
._3_c01031{width:3.744000pt;}
._d_c01031{width:4.736000pt;}
._13_c01031{width:5.856000pt;}
._c_c01031{width:6.848000pt;}
._a_c01031{width:8.089600pt;}
._b_c01031{width:9.612800pt;}
._f_c01031{width:10.694400pt;}
._e_c01031{width:12.396800pt;}
._17_c01031{width:13.657600pt;}
._11_c01031{width:15.148800pt;}
._18_c01031{width:16.179200pt;}
._4_c01031{width:19.232000pt;}
._6_c01031{width:20.665600pt;}
._8_c01031{width:21.638400pt;}
._9_c01031{width:22.700800pt;}
._2_c01031{width:23.705600pt;}
._15_c01031{width:28.192000pt;}
._14_c01031{width:29.369600pt;}
._16_c01031{width:31.539200pt;}
.fs2_c01031{font-size:48.000000pt;}
.fs3_c01031{font-size:53.333333pt;}
.fs0_c01031{font-size:64.000000pt;}
.fs1_c01031{font-size:69.333333pt;}
.y0_c01031{bottom:0.000000pt;}
.ye_c01031{bottom:9.333333pt;}
.yd_c01031{bottom:24.000000pt;}
.yc_c01031{bottom:38.666667pt;}
.y15_c01031{bottom:60.000000pt;}
.y13_c01031{bottom:140.000000pt;}
.y12_c01031{bottom:164.000000pt;}
.y11_c01031{bottom:188.000000pt;}
.y10_c01031{bottom:212.000000pt;}
.yf_c01031{bottom:236.000000pt;}
.yb_c01031{bottom:276.000000pt;}
.ya_c01031{bottom:701.333333pt;}
.y9_c01031{bottom:725.333333pt;}
.y8_c01031{bottom:749.333333pt;}
.y7_c01031{bottom:773.333333pt;}
.y6_c01031{bottom:797.333333pt;}
.y5_c01031{bottom:821.333333pt;}
.y4_c01031{bottom:862.666667pt;}
.y3_c01031{bottom:925.333333pt;}
.y2_c01031{bottom:949.333333pt;}
.y1_c01031{bottom:973.333333pt;}
.y14_c01031{bottom:1061.333333pt;}
.h4_c01031{height:37.593750pt;}
.h6_c01031{height:39.296875pt;}
.h1_c01031{height:45.562500pt;}
.h5_c01031{height:49.843750pt;}
.h2_c01031{height:49.867188pt;}
.h3_c01031{height:397.333333pt;}
.h0_c01031{height:1122.666667pt;}
.w1_c01031{width:580.628667pt;}
.w0_c01031{width:793.333333pt;}
.x0_c01031{left:0.000000pt;}
.x3_c01031{left:12.864116pt;}
.x2_c01031{left:32.703960pt;}
.x1_c01031{left:58.204720pt;}
.x4_c01031{left:146.985200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_49aba246ad912ac747eb3291.woff2')format("woff");}.ff1_c01032{font-family:ff1_c01032;line-height:0.987793;font-style:normal;font-weight:normal;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_95940a66046294c162189652.woff2')format("woff");}.ff2_c01032{font-family:ff2_c01032;line-height:1.155762;font-style: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);}
.v0_c01032{vertical-align:0.000000px;}
.ls2_c01032{letter-spacing:0.000000px;}
.ls0_c01032{letter-spacing:0.012000px;}
.ls1_c01032{letter-spacing:0.021600px;}
.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;}
}
.ws0_c01032{word-spacing:0.000000px;}
._0_c01032{margin-left:-3.426000px;}
.fc0_c01032{color:rgb(0,0,0);}
.fs0_c01032{font-size:54.000000px;}
.fs1_c01032{font-size:60.000000px;}
.y0_c01032{bottom:0.000000px;}
.y3_c01032{bottom:10.500000px;}
.y2_c01032{bottom:28.500000px;}
.y5_c01032{bottom:67.500000px;}
.y1_c01032{bottom:139.500000px;}
.y4_c01032{bottom:1194.000000px;}
.h2_c01032{height:42.292969px;}
.h3_c01032{height:56.074219px;}
.h1_c01032{height:973.500000px;}
.h0_c01032{height:1263.000000px;}
.w1_c01032{width:653.207100px;}
.w0_c01032{width:892.500000px;}
.x0_c01032{left:0.000000px;}
.x2_c01032{left:17.688900px;}
.x1_c01032{left:174.000000px;}
.x3_c01032{left:261.493050px;}
.x4_c01032{left:416.782800px;}
.x5_c01032{left:801.992850px;}
@media print{
.v0_c01032{vertical-align:0.000000pt;}
.ls2_c01032{letter-spacing:0.000000pt;}
.ls0_c01032{letter-spacing:0.010667pt;}
.ls1_c01032{letter-spacing:0.019200pt;}
.ws0_c01032{word-spacing:0.000000pt;}
._0_c01032{margin-left:-3.045333pt;}
.fs0_c01032{font-size:48.000000pt;}
.fs1_c01032{font-size:53.333333pt;}
.y0_c01032{bottom:0.000000pt;}
.y3_c01032{bottom:9.333333pt;}
.y2_c01032{bottom:25.333333pt;}
.y5_c01032{bottom:60.000000pt;}
.y1_c01032{bottom:124.000000pt;}
.y4_c01032{bottom:1061.333333pt;}
.h2_c01032{height:37.593750pt;}
.h3_c01032{height:49.843750pt;}
.h1_c01032{height:865.333333pt;}
.h0_c01032{height:1122.666667pt;}
.w1_c01032{width:580.628533pt;}
.w0_c01032{width:793.333333pt;}
.x0_c01032{left:0.000000pt;}
.x2_c01032{left:15.723467pt;}
.x1_c01032{left:154.666667pt;}
.x3_c01032{left:232.438267pt;}
.x4_c01032{left:370.473600pt;}
.x5_c01032{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a2e2d3db1394241f1c312fc6.woff2')format("woff");}.ff1_c01033{font-family:ff1_c01033;line-height:0.987793;font-style:normal;font-weight:normal;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_8b41a92c4847f20befc065ce.woff2')format("woff");}.ff2_c01033{font-family:ff2_c01033;line-height:0.934082;font-style:normal;font-weight:normal;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_76fda168d4c738895008b327.woff2')format("woff");}.ff3_c01033{font-family:ff3_c01033;line-height:0.755859;font-style:normal;font-weight:normal;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_ba865689385af1a182292d9a.woff2')format("woff");}.ff4_c01033{font-family:ff4_c01033;line-height:1.155762;font-style: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);}
.v0_c01033{vertical-align:0.000000px;}
.ls1_c01033{letter-spacing:0.000000px;}
.ls2_c01033{letter-spacing:0.012000px;}
.ls0_c01033{letter-spacing:0.180000px;}
.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;}
}
.ws0_c01033{word-spacing:0.000000px;}
._d_c01033{margin-left:-4.752000px;}
._3_c01033{margin-left:-3.096000px;}
._7_c01033{margin-left:-1.512000px;}
._9_c01033{width:1.332000px;}
._5_c01033{width:2.952000px;}
._1_c01033{width:4.176000px;}
._b_c01033{width:5.457600px;}
._a_c01033{width:7.027200px;}
._c_c01033{width:9.475200px;}
._2_c01033{width:31.608000px;}
._6_c01033{width:32.760000px;}
._0_c01033{width:35.712000px;}
._8_c01033{width:37.224000px;}
._4_c01033{width:38.808000px;}
.fc0_c01033{color:rgb(0,0,0);}
.fs0_c01033{font-size:54.000000px;}
.fs2_c01033{font-size:60.000000px;}
.fs1_c01033{font-size:72.000000px;}
.y0_c01033{bottom:0.000000px;}
.y2_c01033{bottom:12.000000px;}
.y9_c01033{bottom:67.500000px;}
.y7_c01033{bottom:132.000000px;}
.y6_c01033{bottom:571.500000px;}
.y5_c01033{bottom:598.500000px;}
.y4_c01033{bottom:625.500000px;}
.y3_c01033{bottom:652.500000px;}
.y1_c01033{bottom:697.500000px;}
.y8_c01033{bottom:1194.000000px;}
.h2_c01033{height:42.292969px;}
.h6_c01033{height:44.208984px;}
.h3_c01033{height:51.257812px;}
.h5_c01033{height:56.074219px;}
.h4_c01033{height:408.000000px;}
.h1_c01033{height:415.500000px;}
.h0_c01033{height:1263.000000px;}
.w1_c01033{width:653.207100px;}
.w2_c01033{width:653.207250px;}
.w0_c01033{width:892.500000px;}
.x0_c01033{left:0.000000px;}
.x1_c01033{left:66.000000px;}
.x2_c01033{left:95.310615px;}
.x3_c01033{left:126.779865px;}
@media print{
.v0_c01033{vertical-align:0.000000pt;}
.ls1_c01033{letter-spacing:0.000000pt;}
.ls2_c01033{letter-spacing:0.010667pt;}
.ls0_c01033{letter-spacing:0.160000pt;}
.ws0_c01033{word-spacing:0.000000pt;}
._d_c01033{margin-left:-4.224000pt;}
._3_c01033{margin-left:-2.752000pt;}
._7_c01033{margin-left:-1.344000pt;}
._9_c01033{width:1.184000pt;}
._5_c01033{width:2.624000pt;}
._1_c01033{width:3.712000pt;}
._b_c01033{width:4.851200pt;}
._a_c01033{width:6.246400pt;}
._c_c01033{width:8.422400pt;}
._2_c01033{width:28.096000pt;}
._6_c01033{width:29.120000pt;}
._0_c01033{width:31.744000pt;}
._8_c01033{width:33.088000pt;}
._4_c01033{width:34.496000pt;}
.fs0_c01033{font-size:48.000000pt;}
.fs2_c01033{font-size:53.333333pt;}
.fs1_c01033{font-size:64.000000pt;}
.y0_c01033{bottom:0.000000pt;}
.y2_c01033{bottom:10.666667pt;}
.y9_c01033{bottom:60.000000pt;}
.y7_c01033{bottom:117.333333pt;}
.y6_c01033{bottom:508.000000pt;}
.y5_c01033{bottom:532.000000pt;}
.y4_c01033{bottom:556.000000pt;}
.y3_c01033{bottom:580.000000pt;}
.y1_c01033{bottom:620.000000pt;}
.y8_c01033{bottom:1061.333333pt;}
.h2_c01033{height:37.593750pt;}
.h6_c01033{height:39.296875pt;}
.h3_c01033{height:45.562500pt;}
.h5_c01033{height:49.843750pt;}
.h4_c01033{height:362.666667pt;}
.h1_c01033{height:369.333333pt;}
.h0_c01033{height:1122.666667pt;}
.w1_c01033{width:580.628533pt;}
.w2_c01033{width:580.628667pt;}
.w0_c01033{width:793.333333pt;}
.x0_c01033{left:0.000000pt;}
.x1_c01033{left:58.666667pt;}
.x2_c01033{left:84.720547pt;}
.x3_c01033{left:112.693213pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_562564493a2a4ce26125ccdf.woff2')format("woff");}.ff1_c01034{font-family:ff1_c01034;line-height:0.976074;font-style:normal;font-weight:normal;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_182e2576a16a90314bfd7b38.woff2')format("woff");}.ff2_c01034{font-family:ff2_c01034;line-height:0.933105;font-style:normal;font-weight:normal;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_e6e0a0d0a7ccd88c0b284258.woff2')format("woff");}.ff3_c01034{font-family:ff3_c01034;line-height:1.155762;font-style: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;}
.ls2_c01034{letter-spacing:-0.010800px;}
.ls1_c01034{letter-spacing:0.000000px;}
.ls0_c01034{letter-spacing:0.012000px;}
.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;}
}
.ws0_c01034{word-spacing:0.000000px;}
._d_c01034{margin-left:-9.266400px;}
._6_c01034{margin-left:-7.126200px;}
._3_c01034{margin-left:-3.324600px;}
._2_c01034{margin-left:-2.282400px;}
._5_c01034{margin-left:-1.269000px;}
._1_c01034{width:1.605600px;}
._0_c01034{width:3.288600px;}
._9_c01034{width:4.464000px;}
._4_c01034{width:5.594400px;}
._b_c01034{width:7.560000px;}
._8_c01034{width:9.331200px;}
._7_c01034{width:10.344600px;}
._a_c01034{width:11.419200px;}
._c_c01034{width:12.951000px;}
._10_c01034{width:13.953600px;}
._e_c01034{width:16.048800px;}
._f_c01034{width:17.287200px;}
.fc0_c01034{color:rgb(0,0,0);}
.fs0_c01034{font-size:54.000000px;}
.fs2_c01034{font-size:60.000000px;}
.fs1_c01034{font-size:72.000000px;}
.y0_c01034{bottom:0.000000px;}
.y3_c01034{bottom:10.500000px;}
.y7_c01034{bottom:12.000000px;}
.y2_c01034{bottom:28.500000px;}
.y11_c01034{bottom:67.500000px;}
.yf_c01034{bottom:142.500000px;}
.ye_c01034{bottom:169.500000px;}
.yd_c01034{bottom:196.500000px;}
.yc_c01034{bottom:223.500000px;}
.yb_c01034{bottom:250.500000px;}
.ya_c01034{bottom:277.500000px;}
.y9_c01034{bottom:304.500000px;}
.y8_c01034{bottom:331.500000px;}
.y6_c01034{bottom:355.500000px;}
.y5_c01034{bottom:745.500000px;}
.y4_c01034{bottom:772.500000px;}
.y1_c01034{bottom:796.500000px;}
.y10_c01034{bottom:1194.000000px;}
.h2_c01034{height:42.292969px;}
.h3_c01034{height:51.187500px;}
.h5_c01034{height:56.074219px;}
.h1_c01034{height:316.500000px;}
.h4_c01034{height:358.500000px;}
.h0_c01034{height:1263.000000px;}
.w1_c01034{width:653.207100px;}
.w0_c01034{width:892.500000px;}
.x0_c01034{left:0.000000px;}
.x2_c01034{left:8.603577px;}
.x1_c01034{left:174.000000px;}
.x4_c01034{left:227.838750px;}
.x3_c01034{left:275.523750px;}
.x5_c01034{left:416.782800px;}
.x6_c01034{left:801.992850px;}
@media print{
.v0_c01034{vertical-align:0.000000pt;}
.ls2_c01034{letter-spacing:-0.009600pt;}
.ls1_c01034{letter-spacing:0.000000pt;}
.ls0_c01034{letter-spacing:0.010667pt;}
.ws0_c01034{word-spacing:0.000000pt;}
._d_c01034{margin-left:-8.236800pt;}
._6_c01034{margin-left:-6.334400pt;}
._3_c01034{margin-left:-2.955200pt;}
._2_c01034{margin-left:-2.028800pt;}
._5_c01034{margin-left:-1.128000pt;}
._1_c01034{width:1.427200pt;}
._0_c01034{width:2.923200pt;}
._9_c01034{width:3.968000pt;}
._4_c01034{width:4.972800pt;}
._b_c01034{width:6.720000pt;}
._8_c01034{width:8.294400pt;}
._7_c01034{width:9.195200pt;}
._a_c01034{width:10.150400pt;}
._c_c01034{width:11.512000pt;}
._10_c01034{width:12.403200pt;}
._e_c01034{width:14.265600pt;}
._f_c01034{width:15.366400pt;}
.fs0_c01034{font-size:48.000000pt;}
.fs2_c01034{font-size:53.333333pt;}
.fs1_c01034{font-size:64.000000pt;}
.y0_c01034{bottom:0.000000pt;}
.y3_c01034{bottom:9.333333pt;}
.y7_c01034{bottom:10.666667pt;}
.y2_c01034{bottom:25.333333pt;}
.y11_c01034{bottom:60.000000pt;}
.yf_c01034{bottom:126.666667pt;}
.ye_c01034{bottom:150.666667pt;}
.yd_c01034{bottom:174.666667pt;}
.yc_c01034{bottom:198.666667pt;}
.yb_c01034{bottom:222.666667pt;}
.ya_c01034{bottom:246.666667pt;}
.y9_c01034{bottom:270.666667pt;}
.y8_c01034{bottom:294.666667pt;}
.y6_c01034{bottom:316.000000pt;}
.y5_c01034{bottom:662.666667pt;}
.y4_c01034{bottom:686.666667pt;}
.y1_c01034{bottom:708.000000pt;}
.y10_c01034{bottom:1061.333333pt;}
.h2_c01034{height:37.593750pt;}
.h3_c01034{height:45.500000pt;}
.h5_c01034{height:49.843750pt;}
.h1_c01034{height:281.333333pt;}
.h4_c01034{height:318.666667pt;}
.h0_c01034{height:1122.666667pt;}
.w1_c01034{width:580.628533pt;}
.w0_c01034{width:793.333333pt;}
.x0_c01034{left:0.000000pt;}
.x2_c01034{left:7.647624pt;}
.x1_c01034{left:154.666667pt;}
.x4_c01034{left:202.523333pt;}
.x3_c01034{left:244.910000pt;}
.x5_c01034{left:370.473600pt;}
.x6_c01034{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7c1660d8b83ad362e0fc9772.woff2')format("woff");}.ff1_c01035{font-family:ff1_c01035;line-height:0.963867;font-style:normal;font-weight:normal;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_2567e658d7157536eb7dee4c.woff2')format("woff");}.ff2_c01035{font-family:ff2_c01035;line-height:0.933105;font-style:normal;font-weight:normal;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_d8cffea5ebf83931113ad6d7.woff2')format("woff");}.ff3_c01035{font-family:ff3_c01035;line-height:0.755859;font-style:normal;font-weight:normal;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_c319a79024c628b09a6fcca9.woff2')format("woff");}.ff4_c01035{font-family:ff4_c01035;line-height:1.155762;font-style: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);}
.v0_c01035{vertical-align:0.000000px;}
.ls1_c01035{letter-spacing:0.000000px;}
.ls2_c01035{letter-spacing:0.012000px;}
.ls0_c01035{letter-spacing:0.032400px;}
.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;}
}
.ws0_c01035{word-spacing:0.000000px;}
._b_c01035{margin-left:-7.250400px;}
._6_c01035{margin-left:-3.319200px;}
._2_c01035{margin-left:-1.065600px;}
._1_c01035{width:1.252800px;}
._0_c01035{width:2.325600px;}
._4_c01035{width:3.636000px;}
._3_c01035{width:4.644000px;}
._5_c01035{width:6.040800px;}
._a_c01035{width:7.452000px;}
._7_c01035{width:8.748000px;}
._8_c01035{width:9.784800px;}
._9_c01035{width:11.671200px;}
.fc0_c01035{color:rgb(0,0,0);}
.fs0_c01035{font-size:54.000000px;}
.fs2_c01035{font-size:60.000000px;}
.fs1_c01035{font-size:72.000000px;}
.y0_c01035{bottom:0.000000px;}
.y5_c01035{bottom:10.500000px;}
.y2_c01035{bottom:12.000000px;}
.y4_c01035{bottom:28.500000px;}
.yb_c01035{bottom:67.500000px;}
.y9_c01035{bottom:139.500000px;}
.y8_c01035{bottom:166.500000px;}
.y7_c01035{bottom:193.500000px;}
.y6_c01035{bottom:220.500000px;}
.y3_c01035{bottom:265.500000px;}
.y1_c01035{bottom:730.500000px;}
.ya_c01035{bottom:1194.000000px;}
.h2_c01035{height:41.633789px;}
.h6_c01035{height:44.208984px;}
.h4_c01035{height:51.187500px;}
.h5_c01035{height:56.074219px;}
.h1_c01035{height:382.500000px;}
.h3_c01035{height:436.500000px;}
.h0_c01035{height:1263.000000px;}
.w1_c01035{width:653.207250px;}
.w0_c01035{width:892.500000px;}
.x0_c01035{left:0.000000px;}
.x3_c01035{left:11.261925px;}
.x1_c01035{left:66.000000px;}
.x2_c01035{left:184.945950px;}
.x4_c01035{left:266.473200px;}
@media print{
.v0_c01035{vertical-align:0.000000pt;}
.ls1_c01035{letter-spacing:0.000000pt;}
.ls2_c01035{letter-spacing:0.010667pt;}
.ls0_c01035{letter-spacing:0.028800pt;}
.ws0_c01035{word-spacing:0.000000pt;}
._b_c01035{margin-left:-6.444800pt;}
._6_c01035{margin-left:-2.950400pt;}
._2_c01035{margin-left:-0.947200pt;}
._1_c01035{width:1.113600pt;}
._0_c01035{width:2.067200pt;}
._4_c01035{width:3.232000pt;}
._3_c01035{width:4.128000pt;}
._5_c01035{width:5.369600pt;}
._a_c01035{width:6.624000pt;}
._7_c01035{width:7.776000pt;}
._8_c01035{width:8.697600pt;}
._9_c01035{width:10.374400pt;}
.fs0_c01035{font-size:48.000000pt;}
.fs2_c01035{font-size:53.333333pt;}
.fs1_c01035{font-size:64.000000pt;}
.y0_c01035{bottom:0.000000pt;}
.y5_c01035{bottom:9.333333pt;}
.y2_c01035{bottom:10.666667pt;}
.y4_c01035{bottom:25.333333pt;}
.yb_c01035{bottom:60.000000pt;}
.y9_c01035{bottom:124.000000pt;}
.y8_c01035{bottom:148.000000pt;}
.y7_c01035{bottom:172.000000pt;}
.y6_c01035{bottom:196.000000pt;}
.y3_c01035{bottom:236.000000pt;}
.y1_c01035{bottom:649.333333pt;}
.ya_c01035{bottom:1061.333333pt;}
.h2_c01035{height:37.007812pt;}
.h6_c01035{height:39.296875pt;}
.h4_c01035{height:45.500000pt;}
.h5_c01035{height:49.843750pt;}
.h1_c01035{height:340.000000pt;}
.h3_c01035{height:388.000000pt;}
.h0_c01035{height:1122.666667pt;}
.w1_c01035{width:580.628667pt;}
.w0_c01035{width:793.333333pt;}
.x0_c01035{left:0.000000pt;}
.x3_c01035{left:10.010600pt;}
.x1_c01035{left:58.666667pt;}
.x2_c01035{left:164.396400pt;}
.x4_c01035{left:236.865067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3c69e7d28e62dfe360f7ec48.woff2')format("woff");}.ff1_c01036{font-family:ff1_c01036;line-height:0.987793;font-style:normal;font-weight:normal;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_5c6e326944f1b68edce39020.woff2')format("woff");}.ff2_c01036{font-family:ff2_c01036;line-height:0.933105;font-style:normal;font-weight:normal;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_553d9668ab9ac779304bbab8.woff2')format("woff");}.ff3_c01036{font-family:ff3_c01036;line-height:1.155762;font-style: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);}
.v0_c01036{vertical-align:0.000000px;}
.ls1_c01036{letter-spacing:0.000000px;}
.ls0_c01036{letter-spacing:0.012000px;}
.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;}
}
.ws0_c01036{word-spacing:0.000000px;}
._9_c01036{margin-left:-7.473600px;}
._7_c01036{margin-left:-4.147200px;}
._4_c01036{margin-left:-2.332800px;}
._a_c01036{margin-left:-1.144800px;}
._1_c01036{width:1.008000px;}
._0_c01036{width:2.808000px;}
._3_c01036{width:3.816000px;}
._6_c01036{width:5.601600px;}
._2_c01036{width:6.616800px;}
._5_c01036{width:8.913600px;}
._8_c01036{width:9.993600px;}
.fc0_c01036{color:rgb(0,0,0);}
.fs0_c01036{font-size:54.000000px;}
.fs2_c01036{font-size:60.000000px;}
.fs1_c01036{font-size:72.000000px;}
.y0_c01036{bottom:0.000000px;}
.y5_c01036{bottom:10.500000px;}
.y2_c01036{bottom:12.000000px;}
.y4_c01036{bottom:28.500000px;}
.yb_c01036{bottom:67.500000px;}
.y9_c01036{bottom:159.000000px;}
.y8_c01036{bottom:186.000000px;}
.y7_c01036{bottom:213.000000px;}
.y6_c01036{bottom:240.000000px;}
.y3_c01036{bottom:285.000000px;}
.y1_c01036{bottom:684.000000px;}
.ya_c01036{bottom:1194.000000px;}
.h2_c01036{height:42.292969px;}
.h4_c01036{height:51.187500px;}
.h5_c01036{height:56.074219px;}
.h3_c01036{height:370.500000px;}
.h1_c01036{height:429.000000px;}
.h0_c01036{height:1263.000000px;}
.w1_c01036{width:653.207100px;}
.w0_c01036{width:892.500000px;}
.x0_c01036{left:0.000000px;}
.x3_c01036{left:16.581480px;}
.x4_c01036{left:139.050480px;}
.x1_c01036{left:174.000000px;}
.x2_c01036{left:199.503900px;}
.x5_c01036{left:416.782800px;}
.x6_c01036{left:801.992850px;}
@media print{
.v0_c01036{vertical-align:0.000000pt;}
.ls1_c01036{letter-spacing:0.000000pt;}
.ls0_c01036{letter-spacing:0.010667pt;}
.ws0_c01036{word-spacing:0.000000pt;}
._9_c01036{margin-left:-6.643200pt;}
._7_c01036{margin-left:-3.686400pt;}
._4_c01036{margin-left:-2.073600pt;}
._a_c01036{margin-left:-1.017600pt;}
._1_c01036{width:0.896000pt;}
._0_c01036{width:2.496000pt;}
._3_c01036{width:3.392000pt;}
._6_c01036{width:4.979200pt;}
._2_c01036{width:5.881600pt;}
._5_c01036{width:7.923200pt;}
._8_c01036{width:8.883200pt;}
.fs0_c01036{font-size:48.000000pt;}
.fs2_c01036{font-size:53.333333pt;}
.fs1_c01036{font-size:64.000000pt;}
.y0_c01036{bottom:0.000000pt;}
.y5_c01036{bottom:9.333333pt;}
.y2_c01036{bottom:10.666667pt;}
.y4_c01036{bottom:25.333333pt;}
.yb_c01036{bottom:60.000000pt;}
.y9_c01036{bottom:141.333333pt;}
.y8_c01036{bottom:165.333333pt;}
.y7_c01036{bottom:189.333333pt;}
.y6_c01036{bottom:213.333333pt;}
.y3_c01036{bottom:253.333333pt;}
.y1_c01036{bottom:608.000000pt;}
.ya_c01036{bottom:1061.333333pt;}
.h2_c01036{height:37.593750pt;}
.h4_c01036{height:45.500000pt;}
.h5_c01036{height:49.843750pt;}
.h3_c01036{height:329.333333pt;}
.h1_c01036{height:381.333333pt;}
.h0_c01036{height:1122.666667pt;}
.w1_c01036{width:580.628533pt;}
.w0_c01036{width:793.333333pt;}
.x0_c01036{left:0.000000pt;}
.x3_c01036{left:14.739093pt;}
.x4_c01036{left:123.600427pt;}
.x1_c01036{left:154.666667pt;}
.x2_c01036{left:177.336800pt;}
.x5_c01036{left:370.473600pt;}
.x6_c01036{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_dddd792167db74ecc9e058c5.woff2')format("woff");}.ff1_c01037{font-family:ff1_c01037;line-height:0.963867;font-style:normal;font-weight:normal;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_5faeb2341c03f81a3ffb2ade.woff2')format("woff");}.ff2_c01037{font-family:ff2_c01037;line-height:0.755859;font-style:normal;font-weight:normal;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_de984cbd4f8c3d3166be4e76.woff2')format("woff");}.ff3_c01037{font-family:ff3_c01037;line-height:1.155762;font-style: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);}
.v0_c01037{vertical-align:0.000000px;}
.ls1_c01037{letter-spacing:0.000000px;}
.ls2_c01037{letter-spacing:0.012000px;}
.ls0_c01037{letter-spacing:0.021600px;}
.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;}
}
.ws0_c01037{word-spacing:0.000000px;}
._0_c01037{margin-left:-3.216000px;}
.fc0_c01037{color:rgb(0,0,0);}
.fs0_c01037{font-size:54.000000px;}
.fs1_c01037{font-size:60.000000px;}
.y0_c01037{bottom:0.000000px;}
.y2_c01037{bottom:12.000000px;}
.y5_c01037{bottom:67.500000px;}
.y3_c01037{bottom:151.500000px;}
.y1_c01037{bottom:750.000000px;}
.y4_c01037{bottom:1194.000000px;}
.h2_c01037{height:41.633789px;}
.h5_c01037{height:44.208984px;}
.h4_c01037{height:56.074219px;}
.h1_c01037{height:363.000000px;}
.h3_c01037{height:570.000000px;}
.h0_c01037{height:1263.000000px;}
.w1_c01037{width:653.207100px;}
.w2_c01037{width:653.207250px;}
.w0_c01037{width:892.500000px;}
.x0_c01037{left:0.000000px;}
.x1_c01037{left:66.000000px;}
.x3_c01037{left:205.894650px;}
.x2_c01037{left:237.634050px;}
@media print{
.v0_c01037{vertical-align:0.000000pt;}
.ls1_c01037{letter-spacing:0.000000pt;}
.ls2_c01037{letter-spacing:0.010667pt;}
.ls0_c01037{letter-spacing:0.019200pt;}
.ws0_c01037{word-spacing:0.000000pt;}
._0_c01037{margin-left:-2.858667pt;}
.fs0_c01037{font-size:48.000000pt;}
.fs1_c01037{font-size:53.333333pt;}
.y0_c01037{bottom:0.000000pt;}
.y2_c01037{bottom:10.666667pt;}
.y5_c01037{bottom:60.000000pt;}
.y3_c01037{bottom:134.666667pt;}
.y1_c01037{bottom:666.666667pt;}
.y4_c01037{bottom:1061.333333pt;}
.h2_c01037{height:37.007812pt;}
.h5_c01037{height:39.296875pt;}
.h4_c01037{height:49.843750pt;}
.h1_c01037{height:322.666667pt;}
.h3_c01037{height:506.666667pt;}
.h0_c01037{height:1122.666667pt;}
.w1_c01037{width:580.628533pt;}
.w2_c01037{width:580.628667pt;}
.w0_c01037{width:793.333333pt;}
.x0_c01037{left:0.000000pt;}
.x1_c01037{left:58.666667pt;}
.x3_c01037{left:183.017467pt;}
.x2_c01037{left:211.230267pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4d956e46cc81e3acdb3d5ce9.woff2')format("woff");}.ff1_c01038{font-family:ff1_c01038;line-height:0.963867;font-style:normal;font-weight:normal;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_feeabeada52f97b1f2a4f52f.woff2')format("woff");}.ff2_c01038{font-family:ff2_c01038;line-height:0.933105;font-style:normal;font-weight:normal;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_e283fd0dc8e25eb9dd05f02f.woff2')format("woff");}.ff3_c01038{font-family:ff3_c01038;line-height:1.155762;font-style: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;}
.ls2_c01038{letter-spacing:0.000000px;}
.ls0_c01038{letter-spacing:0.012000px;}
.ls1_c01038{letter-spacing:0.021600px;}
.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:0.000000px;}
._b_c01038{margin-left:-7.207200px;}
._8_c01038{margin-left:-3.261600px;}
._6_c01038{margin-left:-1.915200px;}
._5_c01038{width:1.483200px;}
._3_c01038{width:3.420000px;}
._1_c01038{width:4.939200px;}
._2_c01038{width:16.581600px;}
._4_c01038{width:18.100800px;}
._0_c01038{width:21.513600px;}
._a_c01038{width:22.608000px;}
._7_c01038{width:23.853600px;}
._9_c01038{width:24.998400px;}
.fc0_c01038{color:rgb(0,0,0);}
.fs0_c01038{font-size:54.000000px;}
.fs2_c01038{font-size:60.000000px;}
.fs1_c01038{font-size:72.000000px;}
.y0_c01038{bottom:0.000000px;}
.y2_c01038{bottom:12.000000px;}
.y9_c01038{bottom:67.500000px;}
.y7_c01038{bottom:127.500000px;}
.y6_c01038{bottom:549.000000px;}
.y5_c01038{bottom:576.000000px;}
.y4_c01038{bottom:603.000000px;}
.y3_c01038{bottom:630.000000px;}
.y1_c01038{bottom:675.000000px;}
.y8_c01038{bottom:1194.000000px;}
.h2_c01038{height:41.633789px;}
.h3_c01038{height:51.187500px;}
.h5_c01038{height:56.074219px;}
.h4_c01038{height:390.000000px;}
.h1_c01038{height:438.000000px;}
.h0_c01038{height:1263.000000px;}
.w1_c01038{width:653.207100px;}
.w0_c01038{width:892.500000px;}
.x0_c01038{left:0.000000px;}
.x2_c01038{left:148.400940px;}
.x3_c01038{left:158.911500px;}
.x1_c01038{left:174.000000px;}
.x4_c01038{left:416.782800px;}
.x5_c01038{left:801.992850px;}
@media print{
.v0_c01038{vertical-align:0.000000pt;}
.ls2_c01038{letter-spacing:0.000000pt;}
.ls0_c01038{letter-spacing:0.010667pt;}
.ls1_c01038{letter-spacing:0.019200pt;}
.ws0_c01038{word-spacing:0.000000pt;}
._b_c01038{margin-left:-6.406400pt;}
._8_c01038{margin-left:-2.899200pt;}
._6_c01038{margin-left:-1.702400pt;}
._5_c01038{width:1.318400pt;}
._3_c01038{width:3.040000pt;}
._1_c01038{width:4.390400pt;}
._2_c01038{width:14.739200pt;}
._4_c01038{width:16.089600pt;}
._0_c01038{width:19.123200pt;}
._a_c01038{width:20.096000pt;}
._7_c01038{width:21.203200pt;}
._9_c01038{width:22.220800pt;}
.fs0_c01038{font-size:48.000000pt;}
.fs2_c01038{font-size:53.333333pt;}
.fs1_c01038{font-size:64.000000pt;}
.y0_c01038{bottom:0.000000pt;}
.y2_c01038{bottom:10.666667pt;}
.y9_c01038{bottom:60.000000pt;}
.y7_c01038{bottom:113.333333pt;}
.y6_c01038{bottom:488.000000pt;}
.y5_c01038{bottom:512.000000pt;}
.y4_c01038{bottom:536.000000pt;}
.y3_c01038{bottom:560.000000pt;}
.y1_c01038{bottom:600.000000pt;}
.y8_c01038{bottom:1061.333333pt;}
.h2_c01038{height:37.007812pt;}
.h3_c01038{height:45.500000pt;}
.h5_c01038{height:49.843750pt;}
.h4_c01038{height:346.666667pt;}
.h1_c01038{height:389.333333pt;}
.h0_c01038{height:1122.666667pt;}
.w1_c01038{width:580.628533pt;}
.w0_c01038{width:793.333333pt;}
.x0_c01038{left:0.000000pt;}
.x2_c01038{left:131.911947pt;}
.x3_c01038{left:141.254667pt;}
.x1_c01038{left:154.666667pt;}
.x4_c01038{left:370.473600pt;}
.x5_c01038{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9ef57a26b33c4634d8101bd7.woff2')format("woff");}.ff1_c01039{font-family:ff1_c01039;line-height:1.163086;font-style:normal;font-weight:normal;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_b49227a6c55f3094015ed447.woff2')format("woff");}.ff2_c01039{font-family:ff2_c01039;line-height:0.934082;font-style:normal;font-weight:normal;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_f13e6491d5e0afbdafb1cdf2.woff2')format("woff");}.ff3_c01039{font-family:ff3_c01039;line-height:1.010254;font-style:normal;font-weight:normal;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_d2a7380b34a49930328a9e0c.woff2')format("woff");}.ff4_c01039{font-family:ff4_c01039;line-height:0.755859;font-style:normal;font-weight:normal;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_71f0a80746b961636980b9e0.woff2')format("woff");}.ff5_c01039{font-family:ff5_c01039;line-height:1.155762;font-style: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);}
.v0_c01039{vertical-align:0.000000px;}
.ls2_c01039{letter-spacing:-0.014400px;}
.ls1_c01039{letter-spacing:-0.012000px;}
.ls0_c01039{letter-spacing:0.000000px;}
.ls3_c01039{letter-spacing:0.012000px;}
.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;}
}
.ws0_c01039{word-spacing:0.000000px;}
._6_c01039{margin-left:-8.755200px;}
._16_c01039{margin-left:-5.640000px;}
._10_c01039{margin-left:-4.636800px;}
._a_c01039{margin-left:-3.620400px;}
._11_c01039{margin-left:-2.330400px;}
._0_c01039{margin-left:-1.274400px;}
._2_c01039{width:1.231200px;}
._4_c01039{width:2.332800px;}
._1_c01039{width:3.844800px;}
._3_c01039{width:5.515200px;}
._5_c01039{width:7.506000px;}
._12_c01039{width:8.788800px;}
._9_c01039{width:9.902400px;}
._7_c01039{width:11.598000px;}
._8_c01039{width:12.890400px;}
._b_c01039{width:14.684400px;}
._f_c01039{width:16.314000px;}
._17_c01039{width:18.343200px;}
._c_c01039{width:19.677600px;}
._d_c01039{width:21.427200px;}
._15_c01039{width:22.651200px;}
._e_c01039{width:23.947200px;}
._14_c01039{width:26.876400px;}
._13_c01039{width:30.117600px;}
.fc0_c01039{color:rgb(0,0,0);}
.fs1_c01039{font-size:60.000000px;}
.fs0_c01039{font-size:72.000000px;}
.y0_c01039{bottom:0.000000px;}
.y24_c01039{bottom:67.500000px;}
.y22_c01039{bottom:150.000000px;}
.y21_c01039{bottom:172.500000px;}
.y20_c01039{bottom:193.500000px;}
.y1f_c01039{bottom:238.500000px;}
.y1e_c01039{bottom:265.500000px;}
.y1d_c01039{bottom:313.500000px;}
.y1c_c01039{bottom:357.000000px;}
.y1b_c01039{bottom:399.000000px;}
.y1a_c01039{bottom:420.000000px;}
.y19_c01039{bottom:462.000000px;}
.y18_c01039{bottom:504.000000px;}
.y17_c01039{bottom:525.000000px;}
.y16_c01039{bottom:546.000000px;}
.y15_c01039{bottom:567.000000px;}
.y14_c01039{bottom:588.000000px;}
.y13_c01039{bottom:609.000000px;}
.y12_c01039{bottom:630.000000px;}
.y11_c01039{bottom:651.000000px;}
.y10_c01039{bottom:672.000000px;}
.yf_c01039{bottom:693.000000px;}
.ye_c01039{bottom:714.000000px;}
.yd_c01039{bottom:735.000000px;}
.yc_c01039{bottom:756.000000px;}
.yb_c01039{bottom:777.000000px;}
.ya_c01039{bottom:798.000000px;}
.y9_c01039{bottom:819.000000px;}
.y8_c01039{bottom:840.000000px;}
.y7_c01039{bottom:885.000000px;}
.y6_c01039{bottom:906.000000px;}
.y5_c01039{bottom:927.000000px;}
.y4_c01039{bottom:972.000000px;}
.y3_c01039{bottom:999.000000px;}
.y2_c01039{bottom:1047.000000px;}
.y1_c01039{bottom:1095.000000px;}
.y23_c01039{bottom:1194.000000px;}
.h4_c01039{height:42.832031px;}
.h7_c01039{height:44.208984px;}
.h2_c01039{height:51.398438px;}
.h5_c01039{height:52.417969px;}
.h6_c01039{height:56.074219px;}
.h3_c01039{height:56.455078px;}
.h1_c01039{height:67.746094px;}
.h0_c01039{height:1263.000000px;}
.w0_c01039{width:892.500000px;}
.x0_c01039{left:0.000000px;}
.x1_c01039{left:65.480310px;}
@media print{
.v0_c01039{vertical-align:0.000000pt;}
.ls2_c01039{letter-spacing:-0.012800pt;}
.ls1_c01039{letter-spacing:-0.010667pt;}
.ls0_c01039{letter-spacing:0.000000pt;}
.ls3_c01039{letter-spacing:0.010667pt;}
.ws0_c01039{word-spacing:0.000000pt;}
._6_c01039{margin-left:-7.782400pt;}
._16_c01039{margin-left:-5.013333pt;}
._10_c01039{margin-left:-4.121600pt;}
._a_c01039{margin-left:-3.218133pt;}
._11_c01039{margin-left:-2.071467pt;}
._0_c01039{margin-left:-1.132800pt;}
._2_c01039{width:1.094400pt;}
._4_c01039{width:2.073600pt;}
._1_c01039{width:3.417600pt;}
._3_c01039{width:4.902400pt;}
._5_c01039{width:6.672000pt;}
._12_c01039{width:7.812267pt;}
._9_c01039{width:8.802133pt;}
._7_c01039{width:10.309333pt;}
._8_c01039{width:11.458133pt;}
._b_c01039{width:13.052800pt;}
._f_c01039{width:14.501333pt;}
._17_c01039{width:16.305067pt;}
._c_c01039{width:17.491200pt;}
._d_c01039{width:19.046400pt;}
._15_c01039{width:20.134400pt;}
._e_c01039{width:21.286400pt;}
._14_c01039{width:23.890133pt;}
._13_c01039{width:26.771200pt;}
.fs1_c01039{font-size:53.333333pt;}
.fs0_c01039{font-size:64.000000pt;}
.y0_c01039{bottom:0.000000pt;}
.y24_c01039{bottom:60.000000pt;}
.y22_c01039{bottom:133.333333pt;}
.y21_c01039{bottom:153.333333pt;}
.y20_c01039{bottom:172.000000pt;}
.y1f_c01039{bottom:212.000000pt;}
.y1e_c01039{bottom:236.000000pt;}
.y1d_c01039{bottom:278.666667pt;}
.y1c_c01039{bottom:317.333333pt;}
.y1b_c01039{bottom:354.666667pt;}
.y1a_c01039{bottom:373.333333pt;}
.y19_c01039{bottom:410.666667pt;}
.y18_c01039{bottom:448.000000pt;}
.y17_c01039{bottom:466.666667pt;}
.y16_c01039{bottom:485.333333pt;}
.y15_c01039{bottom:504.000000pt;}
.y14_c01039{bottom:522.666667pt;}
.y13_c01039{bottom:541.333333pt;}
.y12_c01039{bottom:560.000000pt;}
.y11_c01039{bottom:578.666667pt;}
.y10_c01039{bottom:597.333333pt;}
.yf_c01039{bottom:616.000000pt;}
.ye_c01039{bottom:634.666667pt;}
.yd_c01039{bottom:653.333333pt;}
.yc_c01039{bottom:672.000000pt;}
.yb_c01039{bottom:690.666667pt;}
.ya_c01039{bottom:709.333333pt;}
.y9_c01039{bottom:728.000000pt;}
.y8_c01039{bottom:746.666667pt;}
.y7_c01039{bottom:786.666667pt;}
.y6_c01039{bottom:805.333333pt;}
.y5_c01039{bottom:824.000000pt;}
.y4_c01039{bottom:864.000000pt;}
.y3_c01039{bottom:888.000000pt;}
.y2_c01039{bottom:930.666667pt;}
.y1_c01039{bottom:973.333333pt;}
.y23_c01039{bottom:1061.333333pt;}
.h4_c01039{height:38.072917pt;}
.h7_c01039{height:39.296875pt;}
.h2_c01039{height:45.687500pt;}
.h5_c01039{height:46.593750pt;}
.h6_c01039{height:49.843750pt;}
.h3_c01039{height:50.182292pt;}
.h1_c01039{height:60.218750pt;}
.h0_c01039{height:1122.666667pt;}
.w0_c01039{width:793.333333pt;}
.x0_c01039{left:0.000000pt;}
.x1_c01039{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2cbe8a47829d0839a670bc6d.woff2')format("woff");}.ff1_c01040{font-family:ff1_c01040;line-height:1.010254;font-style:normal;font-weight:normal;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_a2a3ed1ad9127e2a2bde3294.woff2')format("woff");}.ff2_c01040{font-family:ff2_c01040;line-height:0.986816;font-style:normal;font-weight:normal;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_6099d74795c699452a9bf12e.woff2')format("woff");}.ff3_c01040{font-family:ff3_c01040;line-height:0.932129;font-style:normal;font-weight:normal;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_138f3b57ca910f0f505333d0.woff2')format("woff");}.ff4_c01040{font-family:ff4_c01040;line-height:0.932129;font-style:normal;font-weight:normal;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_5acc1655c468722a1dc5a748.woff2')format("woff");}.ff5_c01040{font-family:ff5_c01040;line-height:1.155762;font-style: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);}
.v0_c01040{vertical-align:0.000000px;}
.ls5_c01040{letter-spacing:-0.006000px;}
.ls4_c01040{letter-spacing:0.000000px;}
.ls0_c01040{letter-spacing:0.007200px;}
.ls3_c01040{letter-spacing:0.012000px;}
.ls2_c01040{letter-spacing:1.094400px;}
.ls1_c01040{letter-spacing:1.274400px;}
.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;}
}
.ws1_c01040{word-spacing:-19.807200px;}
.ws2_c01040{word-spacing:-16.494000px;}
.ws0_c01040{word-spacing:-0.072000px;}
.ws3_c01040{word-spacing:0.000000px;}
._17_c01040{margin-left:-9.288000px;}
._13_c01040{margin-left:-7.711200px;}
._1f_c01040{margin-left:-6.264000px;}
._14_c01040{margin-left:-4.982400px;}
._9_c01040{margin-left:-3.535200px;}
._3_c01040{margin-left:-1.584000px;}
._7_c01040{width:1.411200px;}
._1_c01040{width:2.462400px;}
._5_c01040{width:4.456800px;}
._11_c01040{width:6.321600px;}
._15_c01040{width:7.351200px;}
._12_c01040{width:8.366400px;}
._e_c01040{width:9.460800px;}
._c_c01040{width:10.893600px;}
._b_c01040{width:11.952000px;}
._d_c01040{width:13.089600px;}
._10_c01040{width:14.702400px;}
._f_c01040{width:16.156800px;}
._19_c01040{width:17.926800px;}
._6_c01040{width:19.375200px;}
._18_c01040{width:20.381400px;}
._2_c01040{width:21.412800px;}
._8_c01040{width:22.500000px;}
._0_c01040{width:23.860800px;}
._4_c01040{width:25.502400px;}
._a_c01040{width:27.403200px;}
._16_c01040{width:28.497600px;}
._1b_c01040{width:29.872800px;}
._20_c01040{width:30.873600px;}
._1d_c01040{width:32.356800px;}
._1c_c01040{width:34.416000px;}
._1a_c01040{width:36.000000px;}
._1e_c01040{width:38.239200px;}
.fc0_c01040{color:rgb(0,0,0);}
.fs1_c01040{font-size:60.000000px;}
.fs0_c01040{font-size:72.000000px;}
.y0_c01040{bottom:0.000000px;}
.y2b_c01040{bottom:67.500000px;}
.y29_c01040{bottom:150.000000px;}
.y28_c01040{bottom:171.000000px;}
.y27_c01040{bottom:192.000000px;}
.y26_c01040{bottom:213.000000px;}
.y25_c01040{bottom:234.000000px;}
.y24_c01040{bottom:255.000000px;}
.y23_c01040{bottom:276.000000px;}
.y22_c01040{bottom:297.000000px;}
.y21_c01040{bottom:318.000000px;}
.y20_c01040{bottom:355.500000px;}
.y1f_c01040{bottom:373.500000px;}
.y1e_c01040{bottom:415.500000px;}
.y1d_c01040{bottom:438.000000px;}
.y1c_c01040{bottom:483.000000px;}
.y1b_c01040{bottom:528.000000px;}
.y1a_c01040{bottom:571.500000px;}
.y19_c01040{bottom:592.500000px;}
.y18_c01040{bottom:613.500000px;}
.y17_c01040{bottom:634.500000px;}
.y16_c01040{bottom:655.500000px;}
.y15_c01040{bottom:676.500000px;}
.y14_c01040{bottom:697.500000px;}
.y13_c01040{bottom:718.500000px;}
.y12_c01040{bottom:739.500000px;}
.y11_c01040{bottom:760.500000px;}
.y10_c01040{bottom:781.500000px;}
.yf_c01040{bottom:802.500000px;}
.ye_c01040{bottom:823.500000px;}
.yd_c01040{bottom:844.500000px;}
.yc_c01040{bottom:865.500000px;}
.yb_c01040{bottom:886.500000px;}
.ya_c01040{bottom:907.500000px;}
.y9_c01040{bottom:928.500000px;}
.y8_c01040{bottom:949.500000px;}
.y7_c01040{bottom:970.500000px;}
.y6_c01040{bottom:991.500000px;}
.y5_c01040{bottom:1012.500000px;}
.y4_c01040{bottom:1033.500000px;}
.y3_c01040{bottom:1054.500000px;}
.y2_c01040{bottom:1075.500000px;}
.y1_c01040{bottom:1096.500000px;}
.y2a_c01040{bottom:1194.000000px;}
.h3_c01040{height:42.714844px;}
.h2_c01040{height:51.257812px;}
.h1_c01040{height:52.417969px;}
.h4_c01040{height:56.074219px;}
.h0_c01040{height:1263.000000px;}
.w0_c01040{width:892.500000px;}
.x0_c01040{left:0.000000px;}
.x1_c01040{left:173.812500px;}
.x2_c01040{left:416.782800px;}
.x3_c01040{left:801.992850px;}
@media print{
.v0_c01040{vertical-align:0.000000pt;}
.ls5_c01040{letter-spacing:-0.005333pt;}
.ls4_c01040{letter-spacing:0.000000pt;}
.ls0_c01040{letter-spacing:0.006400pt;}
.ls3_c01040{letter-spacing:0.010667pt;}
.ls2_c01040{letter-spacing:0.972800pt;}
.ls1_c01040{letter-spacing:1.132800pt;}
.ws1_c01040{word-spacing:-17.606400pt;}
.ws2_c01040{word-spacing:-14.661333pt;}
.ws0_c01040{word-spacing:-0.064000pt;}
.ws3_c01040{word-spacing:0.000000pt;}
._17_c01040{margin-left:-8.256000pt;}
._13_c01040{margin-left:-6.854400pt;}
._1f_c01040{margin-left:-5.568000pt;}
._14_c01040{margin-left:-4.428800pt;}
._9_c01040{margin-left:-3.142400pt;}
._3_c01040{margin-left:-1.408000pt;}
._7_c01040{width:1.254400pt;}
._1_c01040{width:2.188800pt;}
._5_c01040{width:3.961600pt;}
._11_c01040{width:5.619200pt;}
._15_c01040{width:6.534400pt;}
._12_c01040{width:7.436800pt;}
._e_c01040{width:8.409600pt;}
._c_c01040{width:9.683200pt;}
._b_c01040{width:10.624000pt;}
._d_c01040{width:11.635200pt;}
._10_c01040{width:13.068800pt;}
._f_c01040{width:14.361600pt;}
._19_c01040{width:15.934933pt;}
._6_c01040{width:17.222400pt;}
._18_c01040{width:18.116800pt;}
._2_c01040{width:19.033600pt;}
._8_c01040{width:20.000000pt;}
._0_c01040{width:21.209600pt;}
._4_c01040{width:22.668800pt;}
._a_c01040{width:24.358400pt;}
._16_c01040{width:25.331200pt;}
._1b_c01040{width:26.553600pt;}
._20_c01040{width:27.443200pt;}
._1d_c01040{width:28.761600pt;}
._1c_c01040{width:30.592000pt;}
._1a_c01040{width:32.000000pt;}
._1e_c01040{width:33.990400pt;}
.fs1_c01040{font-size:53.333333pt;}
.fs0_c01040{font-size:64.000000pt;}
.y0_c01040{bottom:0.000000pt;}
.y2b_c01040{bottom:60.000000pt;}
.y29_c01040{bottom:133.333333pt;}
.y28_c01040{bottom:152.000000pt;}
.y27_c01040{bottom:170.666667pt;}
.y26_c01040{bottom:189.333333pt;}
.y25_c01040{bottom:208.000000pt;}
.y24_c01040{bottom:226.666667pt;}
.y23_c01040{bottom:245.333333pt;}
.y22_c01040{bottom:264.000000pt;}
.y21_c01040{bottom:282.666667pt;}
.y20_c01040{bottom:316.000000pt;}
.y1f_c01040{bottom:332.000000pt;}
.y1e_c01040{bottom:369.333333pt;}
.y1d_c01040{bottom:389.333333pt;}
.y1c_c01040{bottom:429.333333pt;}
.y1b_c01040{bottom:469.333333pt;}
.y1a_c01040{bottom:508.000000pt;}
.y19_c01040{bottom:526.666667pt;}
.y18_c01040{bottom:545.333333pt;}
.y17_c01040{bottom:564.000000pt;}
.y16_c01040{bottom:582.666667pt;}
.y15_c01040{bottom:601.333333pt;}
.y14_c01040{bottom:620.000000pt;}
.y13_c01040{bottom:638.666667pt;}
.y12_c01040{bottom:657.333333pt;}
.y11_c01040{bottom:676.000000pt;}
.y10_c01040{bottom:694.666667pt;}
.yf_c01040{bottom:713.333333pt;}
.ye_c01040{bottom:732.000000pt;}
.yd_c01040{bottom:750.666667pt;}
.yc_c01040{bottom:769.333333pt;}
.yb_c01040{bottom:788.000000pt;}
.ya_c01040{bottom:806.666667pt;}
.y9_c01040{bottom:825.333333pt;}
.y8_c01040{bottom:844.000000pt;}
.y7_c01040{bottom:862.666667pt;}
.y6_c01040{bottom:881.333333pt;}
.y5_c01040{bottom:900.000000pt;}
.y4_c01040{bottom:918.666667pt;}
.y3_c01040{bottom:937.333333pt;}
.y2_c01040{bottom:956.000000pt;}
.y1_c01040{bottom:974.666667pt;}
.y2a_c01040{bottom:1061.333333pt;}
.h3_c01040{height:37.968750pt;}
.h2_c01040{height:45.562500pt;}
.h1_c01040{height:46.593750pt;}
.h4_c01040{height:49.843750pt;}
.h0_c01040{height:1122.666667pt;}
.w0_c01040{width:793.333333pt;}
.x0_c01040{left:0.000000pt;}
.x1_c01040{left:154.500000pt;}
.x2_c01040{left:370.473600pt;}
.x3_c01040{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_98fc14b9fcbf5aa54e4fa149.woff2')format("woff");}.ff1_c01041{font-family:ff1_c01041;line-height:1.010254;font-style:normal;font-weight:normal;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_5f3ab66d6a2adee6e9a00d7f.woff2')format("woff");}.ff2_c01041{font-family:ff2_c01041;line-height:0.756836;font-style:normal;font-weight:normal;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_9dda340e19c844820665b446.woff2')format("woff");}.ff3_c01041{font-family:ff3_c01041;line-height:1.155762;font-style: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;}
.ls1_c01041{letter-spacing:0.000000px;}
.ls2_c01041{letter-spacing:0.012000px;}
.ls0_c01041{letter-spacing:2.217600px;}
.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;}
}
.ws0_c01041{word-spacing:0.000000px;}
._15_c01041{margin-left:-7.070400px;}
._1a_c01041{margin-left:-6.055200px;}
._7_c01041{margin-left:-4.420800px;}
._11_c01041{margin-left:-3.132000px;}
._5_c01041{margin-left:-2.116800px;}
._1_c01041{margin-left:-1.015200px;}
._13_c01041{width:1.555200px;}
._3_c01041{width:2.678400px;}
._a_c01041{width:4.507200px;}
._18_c01041{width:6.235200px;}
._19_c01041{width:7.459200px;}
._4_c01041{width:8.935200px;}
._17_c01041{width:9.950400px;}
._0_c01041{width:11.541600px;}
._2_c01041{width:12.607200px;}
._6_c01041{width:13.708800px;}
._b_c01041{width:14.968800px;}
._8_c01041{width:16.077600px;}
._c_c01041{width:19.468800px;}
._9_c01041{width:20.836800px;}
._1c_c01041{width:22.694400px;}
._1d_c01041{width:23.760000px;}
._1e_c01041{width:25.351200px;}
._1f_c01041{width:26.460000px;}
._16_c01041{width:27.525600px;}
._20_c01041{width:28.591200px;}
._14_c01041{width:29.628000px;}
._10_c01041{width:31.334400px;}
._d_c01041{width:33.177600px;}
._1b_c01041{width:34.675200px;}
._f_c01041{width:35.899200px;}
._e_c01041{width:38.016000px;}
._12_c01041{width:39.823200px;}
.fc0_c01041{color:rgb(0,0,0);}
.fs1_c01041{font-size:60.000000px;}
.fs0_c01041{font-size:72.000000px;}
.y0_c01041{bottom:0.000000px;}
.y2e_c01041{bottom:67.500000px;}
.y2c_c01041{bottom:151.500000px;}
.y2b_c01041{bottom:172.500000px;}
.y2a_c01041{bottom:193.500000px;}
.y29_c01041{bottom:214.500000px;}
.y28_c01041{bottom:235.500000px;}
.y27_c01041{bottom:256.500000px;}
.y26_c01041{bottom:277.500000px;}
.y25_c01041{bottom:298.500000px;}
.y24_c01041{bottom:319.500000px;}
.y23_c01041{bottom:340.500000px;}
.y22_c01041{bottom:361.500000px;}
.y21_c01041{bottom:382.500000px;}
.y20_c01041{bottom:424.500000px;}
.y1f_c01041{bottom:445.500000px;}
.y1e_c01041{bottom:466.500000px;}
.y1d_c01041{bottom:487.500000px;}
.y1c_c01041{bottom:508.500000px;}
.y1b_c01041{bottom:529.500000px;}
.y1a_c01041{bottom:550.500000px;}
.y19_c01041{bottom:592.500000px;}
.y18_c01041{bottom:613.500000px;}
.y17_c01041{bottom:634.500000px;}
.y16_c01041{bottom:655.500000px;}
.y15_c01041{bottom:676.500000px;}
.y14_c01041{bottom:697.500000px;}
.y13_c01041{bottom:718.500000px;}
.y12_c01041{bottom:739.500000px;}
.y11_c01041{bottom:760.500000px;}
.y10_c01041{bottom:781.500000px;}
.yf_c01041{bottom:802.500000px;}
.ye_c01041{bottom:823.500000px;}
.yd_c01041{bottom:844.500000px;}
.yc_c01041{bottom:865.500000px;}
.yb_c01041{bottom:886.500000px;}
.ya_c01041{bottom:907.500000px;}
.y9_c01041{bottom:928.500000px;}
.y8_c01041{bottom:949.500000px;}
.y7_c01041{bottom:970.500000px;}
.y6_c01041{bottom:991.500000px;}
.y5_c01041{bottom:1012.500000px;}
.y4_c01041{bottom:1033.500000px;}
.y3_c01041{bottom:1054.500000px;}
.y2_c01041{bottom:1075.500000px;}
.y1_c01041{bottom:1096.500000px;}
.y2d_c01041{bottom:1194.000000px;}
.h3_c01041{height:44.208984px;}
.h1_c01041{height:52.417969px;}
.h2_c01041{height:56.074219px;}
.h0_c01041{height:1263.000000px;}
.w0_c01041{width:892.500000px;}
.x0_c01041{left:0.000000px;}
.x1_c01041{left:65.480310px;}
@media print{
.v0_c01041{vertical-align:0.000000pt;}
.ls1_c01041{letter-spacing:0.000000pt;}
.ls2_c01041{letter-spacing:0.010667pt;}
.ls0_c01041{letter-spacing:1.971200pt;}
.ws0_c01041{word-spacing:0.000000pt;}
._15_c01041{margin-left:-6.284800pt;}
._1a_c01041{margin-left:-5.382400pt;}
._7_c01041{margin-left:-3.929600pt;}
._11_c01041{margin-left:-2.784000pt;}
._5_c01041{margin-left:-1.881600pt;}
._1_c01041{margin-left:-0.902400pt;}
._13_c01041{width:1.382400pt;}
._3_c01041{width:2.380800pt;}
._a_c01041{width:4.006400pt;}
._18_c01041{width:5.542400pt;}
._19_c01041{width:6.630400pt;}
._4_c01041{width:7.942400pt;}
._17_c01041{width:8.844800pt;}
._0_c01041{width:10.259200pt;}
._2_c01041{width:11.206400pt;}
._6_c01041{width:12.185600pt;}
._b_c01041{width:13.305600pt;}
._8_c01041{width:14.291200pt;}
._c_c01041{width:17.305600pt;}
._9_c01041{width:18.521600pt;}
._1c_c01041{width:20.172800pt;}
._1d_c01041{width:21.120000pt;}
._1e_c01041{width:22.534400pt;}
._1f_c01041{width:23.520000pt;}
._16_c01041{width:24.467200pt;}
._20_c01041{width:25.414400pt;}
._14_c01041{width:26.336000pt;}
._10_c01041{width:27.852800pt;}
._d_c01041{width:29.491200pt;}
._1b_c01041{width:30.822400pt;}
._f_c01041{width:31.910400pt;}
._e_c01041{width:33.792000pt;}
._12_c01041{width:35.398400pt;}
.fs1_c01041{font-size:53.333333pt;}
.fs0_c01041{font-size:64.000000pt;}
.y0_c01041{bottom:0.000000pt;}
.y2e_c01041{bottom:60.000000pt;}
.y2c_c01041{bottom:134.666667pt;}
.y2b_c01041{bottom:153.333333pt;}
.y2a_c01041{bottom:172.000000pt;}
.y29_c01041{bottom:190.666667pt;}
.y28_c01041{bottom:209.333333pt;}
.y27_c01041{bottom:228.000000pt;}
.y26_c01041{bottom:246.666667pt;}
.y25_c01041{bottom:265.333333pt;}
.y24_c01041{bottom:284.000000pt;}
.y23_c01041{bottom:302.666667pt;}
.y22_c01041{bottom:321.333333pt;}
.y21_c01041{bottom:340.000000pt;}
.y20_c01041{bottom:377.333333pt;}
.y1f_c01041{bottom:396.000000pt;}
.y1e_c01041{bottom:414.666667pt;}
.y1d_c01041{bottom:433.333333pt;}
.y1c_c01041{bottom:452.000000pt;}
.y1b_c01041{bottom:470.666667pt;}
.y1a_c01041{bottom:489.333333pt;}
.y19_c01041{bottom:526.666667pt;}
.y18_c01041{bottom:545.333333pt;}
.y17_c01041{bottom:564.000000pt;}
.y16_c01041{bottom:582.666667pt;}
.y15_c01041{bottom:601.333333pt;}
.y14_c01041{bottom:620.000000pt;}
.y13_c01041{bottom:638.666667pt;}
.y12_c01041{bottom:657.333333pt;}
.y11_c01041{bottom:676.000000pt;}
.y10_c01041{bottom:694.666667pt;}
.yf_c01041{bottom:713.333333pt;}
.ye_c01041{bottom:732.000000pt;}
.yd_c01041{bottom:750.666667pt;}
.yc_c01041{bottom:769.333333pt;}
.yb_c01041{bottom:788.000000pt;}
.ya_c01041{bottom:806.666667pt;}
.y9_c01041{bottom:825.333333pt;}
.y8_c01041{bottom:844.000000pt;}
.y7_c01041{bottom:862.666667pt;}
.y6_c01041{bottom:881.333333pt;}
.y5_c01041{bottom:900.000000pt;}
.y4_c01041{bottom:918.666667pt;}
.y3_c01041{bottom:937.333333pt;}
.y2_c01041{bottom:956.000000pt;}
.y1_c01041{bottom:974.666667pt;}
.y2d_c01041{bottom:1061.333333pt;}
.h3_c01041{height:39.296875pt;}
.h1_c01041{height:46.593750pt;}
.h2_c01041{height:49.843750pt;}
.h0_c01041{height:1122.666667pt;}
.w0_c01041{width:793.333333pt;}
.x0_c01041{left:0.000000pt;}
.x1_c01041{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fb9d9ef8aabe8b1bc6ef95d9.woff2')format("woff");}.ff1_c01042{font-family:ff1_c01042;line-height:1.010254;font-style:normal;font-weight:normal;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_910623d5b7eb5226f44276d0.woff2')format("woff");}.ff2_c01042{font-family:ff2_c01042;line-height:1.155762;font-style: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);}
.v0_c01042{vertical-align:0.000000px;}
.ls1_c01042{letter-spacing:0.000000px;}
.ls0_c01042{letter-spacing:0.012000px;}
.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;}
}
.ws0_c01042{word-spacing:-18.000000px;}
.ws1_c01042{word-spacing:0.000000px;}
._1a_c01042{margin-left:-6.350400px;}
._9_c01042{margin-left:-4.514400px;}
._1_c01042{margin-left:-3.348000px;}
._1d_c01042{margin-left:-2.304000px;}
._3_c01042{margin-left:-1.296000px;}
._5_c01042{width:1.159200px;}
._8_c01042{width:2.196000px;}
._7_c01042{width:3.484800px;}
._6_c01042{width:5.472000px;}
._0_c01042{width:6.667200px;}
._4_c01042{width:7.934400px;}
._19_c01042{width:8.935200px;}
._2_c01042{width:9.986400px;}
._a_c01042{width:11.347200px;}
._14_c01042{width:12.470400px;}
._c_c01042{width:13.608000px;}
._b_c01042{width:14.702400px;}
._13_c01042{width:16.452000px;}
._11_c01042{width:19.353600px;}
._e_c01042{width:20.527200px;}
._f_c01042{width:21.643200px;}
._d_c01042{width:22.773600px;}
._10_c01042{width:24.084000px;}
._12_c01042{width:26.136000px;}
._15_c01042{width:27.712800px;}
._17_c01042{width:29.923200px;}
._16_c01042{width:31.176000px;}
._18_c01042{width:32.335200px;}
._1b_c01042{width:33.984000px;}
._1c_c01042{width:36.590400px;}
.fc0_c01042{color:rgb(0,0,0);}
.fs1_c01042{font-size:60.000000px;}
.fs0_c01042{font-size:72.000000px;}
.y0_c01042{bottom:0.000000px;}
.y2c_c01042{bottom:67.500000px;}
.y2a_c01042{bottom:151.500000px;}
.y29_c01042{bottom:172.500000px;}
.y28_c01042{bottom:193.500000px;}
.y27_c01042{bottom:214.500000px;}
.y26_c01042{bottom:256.500000px;}
.y25_c01042{bottom:277.500000px;}
.y24_c01042{bottom:298.500000px;}
.y23_c01042{bottom:340.500000px;}
.y22_c01042{bottom:361.500000px;}
.y21_c01042{bottom:382.500000px;}
.y20_c01042{bottom:403.500000px;}
.y1f_c01042{bottom:445.500000px;}
.y1e_c01042{bottom:466.500000px;}
.y1d_c01042{bottom:487.500000px;}
.y1c_c01042{bottom:508.500000px;}
.y1b_c01042{bottom:529.500000px;}
.y1a_c01042{bottom:550.500000px;}
.y19_c01042{bottom:571.500000px;}
.y18_c01042{bottom:592.500000px;}
.y17_c01042{bottom:613.500000px;}
.y16_c01042{bottom:634.500000px;}
.y15_c01042{bottom:655.500000px;}
.y14_c01042{bottom:676.500000px;}
.y13_c01042{bottom:697.500000px;}
.y12_c01042{bottom:718.500000px;}
.y11_c01042{bottom:739.500000px;}
.y10_c01042{bottom:760.500000px;}
.yf_c01042{bottom:802.500000px;}
.ye_c01042{bottom:823.500000px;}
.yd_c01042{bottom:844.500000px;}
.yc_c01042{bottom:865.500000px;}
.yb_c01042{bottom:886.500000px;}
.ya_c01042{bottom:907.500000px;}
.y9_c01042{bottom:928.500000px;}
.y8_c01042{bottom:949.500000px;}
.y7_c01042{bottom:970.500000px;}
.y6_c01042{bottom:991.500000px;}
.y5_c01042{bottom:1012.500000px;}
.y4_c01042{bottom:1033.500000px;}
.y3_c01042{bottom:1054.500000px;}
.y2_c01042{bottom:1075.500000px;}
.y1_c01042{bottom:1096.500000px;}
.y2b_c01042{bottom:1194.000000px;}
.h1_c01042{height:52.417969px;}
.h2_c01042{height:56.074219px;}
.h0_c01042{height:1263.000000px;}
.w0_c01042{width:892.500000px;}
.x0_c01042{left:0.000000px;}
.x1_c01042{left:173.812500px;}
.x2_c01042{left:416.782800px;}
.x3_c01042{left:801.992850px;}
@media print{
.v0_c01042{vertical-align:0.000000pt;}
.ls1_c01042{letter-spacing:0.000000pt;}
.ls0_c01042{letter-spacing:0.010667pt;}
.ws0_c01042{word-spacing:-16.000000pt;}
.ws1_c01042{word-spacing:0.000000pt;}
._1a_c01042{margin-left:-5.644800pt;}
._9_c01042{margin-left:-4.012800pt;}
._1_c01042{margin-left:-2.976000pt;}
._1d_c01042{margin-left:-2.048000pt;}
._3_c01042{margin-left:-1.152000pt;}
._5_c01042{width:1.030400pt;}
._8_c01042{width:1.952000pt;}
._7_c01042{width:3.097600pt;}
._6_c01042{width:4.864000pt;}
._0_c01042{width:5.926400pt;}
._4_c01042{width:7.052800pt;}
._19_c01042{width:7.942400pt;}
._2_c01042{width:8.876800pt;}
._a_c01042{width:10.086400pt;}
._14_c01042{width:11.084800pt;}
._c_c01042{width:12.096000pt;}
._b_c01042{width:13.068800pt;}
._13_c01042{width:14.624000pt;}
._11_c01042{width:17.203200pt;}
._e_c01042{width:18.246400pt;}
._f_c01042{width:19.238400pt;}
._d_c01042{width:20.243200pt;}
._10_c01042{width:21.408000pt;}
._12_c01042{width:23.232000pt;}
._15_c01042{width:24.633600pt;}
._17_c01042{width:26.598400pt;}
._16_c01042{width:27.712000pt;}
._18_c01042{width:28.742400pt;}
._1b_c01042{width:30.208000pt;}
._1c_c01042{width:32.524800pt;}
.fs1_c01042{font-size:53.333333pt;}
.fs0_c01042{font-size:64.000000pt;}
.y0_c01042{bottom:0.000000pt;}
.y2c_c01042{bottom:60.000000pt;}
.y2a_c01042{bottom:134.666667pt;}
.y29_c01042{bottom:153.333333pt;}
.y28_c01042{bottom:172.000000pt;}
.y27_c01042{bottom:190.666667pt;}
.y26_c01042{bottom:228.000000pt;}
.y25_c01042{bottom:246.666667pt;}
.y24_c01042{bottom:265.333333pt;}
.y23_c01042{bottom:302.666667pt;}
.y22_c01042{bottom:321.333333pt;}
.y21_c01042{bottom:340.000000pt;}
.y20_c01042{bottom:358.666667pt;}
.y1f_c01042{bottom:396.000000pt;}
.y1e_c01042{bottom:414.666667pt;}
.y1d_c01042{bottom:433.333333pt;}
.y1c_c01042{bottom:452.000000pt;}
.y1b_c01042{bottom:470.666667pt;}
.y1a_c01042{bottom:489.333333pt;}
.y19_c01042{bottom:508.000000pt;}
.y18_c01042{bottom:526.666667pt;}
.y17_c01042{bottom:545.333333pt;}
.y16_c01042{bottom:564.000000pt;}
.y15_c01042{bottom:582.666667pt;}
.y14_c01042{bottom:601.333333pt;}
.y13_c01042{bottom:620.000000pt;}
.y12_c01042{bottom:638.666667pt;}
.y11_c01042{bottom:657.333333pt;}
.y10_c01042{bottom:676.000000pt;}
.yf_c01042{bottom:713.333333pt;}
.ye_c01042{bottom:732.000000pt;}
.yd_c01042{bottom:750.666667pt;}
.yc_c01042{bottom:769.333333pt;}
.yb_c01042{bottom:788.000000pt;}
.ya_c01042{bottom:806.666667pt;}
.y9_c01042{bottom:825.333333pt;}
.y8_c01042{bottom:844.000000pt;}
.y7_c01042{bottom:862.666667pt;}
.y6_c01042{bottom:881.333333pt;}
.y5_c01042{bottom:900.000000pt;}
.y4_c01042{bottom:918.666667pt;}
.y3_c01042{bottom:937.333333pt;}
.y2_c01042{bottom:956.000000pt;}
.y1_c01042{bottom:974.666667pt;}
.y2b_c01042{bottom:1061.333333pt;}
.h1_c01042{height:46.593750pt;}
.h2_c01042{height:49.843750pt;}
.h0_c01042{height:1122.666667pt;}
.w0_c01042{width:793.333333pt;}
.x0_c01042{left:0.000000pt;}
.x1_c01042{left:154.500000pt;}
.x2_c01042{left:370.473600pt;}
.x3_c01042{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_45b34e04775763f720d1191b.woff2')format("woff");}.ff1_c01043{font-family:ff1_c01043;line-height:1.010254;font-style:normal;font-weight:normal;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_f9a5322163dc6ada8dcd1254.woff2')format("woff");}.ff2_c01043{font-family:ff2_c01043;line-height:0.986816;font-style:normal;font-weight:normal;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_814349298f4d34379caaf808.woff2')format("woff");}.ff3_c01043{font-family:ff3_c01043;line-height:0.755859;font-style:normal;font-weight:normal;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_d05b42b2a6359c24182a075a.woff2')format("woff");}.ff4_c01043{font-family:ff4_c01043;line-height:1.155762;font-style: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);}
.v0_c01043{vertical-align:0.000000px;}
.ls0_c01043{letter-spacing:0.000000px;}
.ls1_c01043{letter-spacing:0.012000px;}
.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;}
}
.ws0_c01043{word-spacing:-0.072000px;}
.ws1_c01043{word-spacing:0.000000px;}
._2_c01043{margin-left:-4.435200px;}
._5_c01043{margin-left:-3.204000px;}
._0_c01043{margin-left:-2.167200px;}
._a_c01043{margin-left:-1.144800px;}
._1_c01043{width:2.174400px;}
._4_c01043{width:3.571200px;}
._3_c01043{width:5.407200px;}
._6_c01043{width:16.920000px;}
._9_c01043{width:19.339200px;}
._7_c01043{width:20.937600px;}
._b_c01043{width:22.608000px;}
._8_c01043{width:24.616800px;}
.fc0_c01043{color:rgb(0,0,0);}
.fs1_c01043{font-size:60.000000px;}
.fs0_c01043{font-size:72.000000px;}
.y0_c01043{bottom:0.000000px;}
.y5_c01043{bottom:67.500000px;}
.y3_c01043{bottom:1054.500000px;}
.y2_c01043{bottom:1075.500000px;}
.y1_c01043{bottom:1096.500000px;}
.y4_c01043{bottom:1194.000000px;}
.h3_c01043{height:44.208984px;}
.h1_c01043{height:52.417969px;}
.h2_c01043{height:56.074219px;}
.h0_c01043{height:1263.000000px;}
.w0_c01043{width:892.500000px;}
.x0_c01043{left:0.000000px;}
.x1_c01043{left:65.480310px;}
@media print{
.v0_c01043{vertical-align:0.000000pt;}
.ls0_c01043{letter-spacing:0.000000pt;}
.ls1_c01043{letter-spacing:0.010667pt;}
.ws0_c01043{word-spacing:-0.064000pt;}
.ws1_c01043{word-spacing:0.000000pt;}
._2_c01043{margin-left:-3.942400pt;}
._5_c01043{margin-left:-2.848000pt;}
._0_c01043{margin-left:-1.926400pt;}
._a_c01043{margin-left:-1.017600pt;}
._1_c01043{width:1.932800pt;}
._4_c01043{width:3.174400pt;}
._3_c01043{width:4.806400pt;}
._6_c01043{width:15.040000pt;}
._9_c01043{width:17.190400pt;}
._7_c01043{width:18.611200pt;}
._b_c01043{width:20.096000pt;}
._8_c01043{width:21.881600pt;}
.fs1_c01043{font-size:53.333333pt;}
.fs0_c01043{font-size:64.000000pt;}
.y0_c01043{bottom:0.000000pt;}
.y5_c01043{bottom:60.000000pt;}
.y3_c01043{bottom:937.333333pt;}
.y2_c01043{bottom:956.000000pt;}
.y1_c01043{bottom:974.666667pt;}
.y4_c01043{bottom:1061.333333pt;}
.h3_c01043{height:39.296875pt;}
.h1_c01043{height:46.593750pt;}
.h2_c01043{height:49.843750pt;}
.h0_c01043{height:1122.666667pt;}
.w0_c01043{width:793.333333pt;}
.x0_c01043{left:0.000000pt;}
.x1_c01043{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_245b530908e6b669dced4c12.woff2')format("woff");}.ff1_c01044{font-family:ff1_c01044;line-height:0.884766;font-style:normal;font-weight:normal;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_ca0a9318f755fa110a618003.woff2')format("woff");}.ff2_c01044{font-family:ff2_c01044;line-height:0.934082;font-style:normal;font-weight:normal;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_eeffd114badb91d064d708f6.woff2')format("woff");}.ff3_c01044{font-family:ff3_c01044;line-height:0.888672;font-style:normal;font-weight:normal;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_f5d86d5b160f0f37676b30bb.woff2')format("woff");}.ff4_c01044{font-family:ff4_c01044;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01044;src:url('chunks/assets/font_07348adecbaa9e06785be9e6.woff2')format("woff");}.ff5_c01044{font-family:ff5_c01044;line-height:0.905762;font-style:normal;font-weight: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_c01044;src:url('chunks/assets/font_b826d9d8f4e578650694c28d.woff2')format("woff");}.ff6_c01044{font-family:ff6_c01044;line-height:0.888672;font-style: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);}
.m1_c01044{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3_c01044{vertical-align:-33.000000px;}
.v2_c01044{vertical-align:-23.062800px;}
.v0_c01044{vertical-align:0.000000px;}
.v1_c01044{vertical-align:23.062800px;}
.ls6_c01044{letter-spacing:0.000000px;}
.ls0_c01044{letter-spacing:0.007800px;}
.ls3_c01044{letter-spacing:0.012000px;}
.ls5_c01044{letter-spacing:1.500600px;}
.ls4_c01044{letter-spacing:3.999999px;}
.ls1_c01044{letter-spacing:4.860600px;}
.ls2_c01044{letter-spacing:18.942000px;}
.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:-19.800000px;}
.ws2_c01044{word-spacing:-15.000000px;}
.ws0_c01044{word-spacing:-0.085800px;}
.ws3_c01044{word-spacing:0.000000px;}
._f_c01044{margin-left:-7.747200px;}
._13_c01044{margin-left:-6.616800px;}
._16_c01044{margin-left:-4.791600px;}
._3_c01044{margin-left:-3.628800px;}
._1_c01044{margin-left:-1.872000px;}
._2_c01044{width:1.080000px;}
._0_c01044{width:2.325600px;}
._4_c01044{width:4.291200px;}
._d_c01044{width:6.242400px;}
._12_c01044{width:7.754400px;}
._9_c01044{width:9.115200px;}
._a_c01044{width:10.144800px;}
._c_c01044{width:12.088800px;}
._8_c01044{width:13.370400px;}
._b_c01044{width:14.450400px;}
._14_c01044{width:15.696000px;}
._6_c01044{width:16.761600px;}
._5_c01044{width:18.187200px;}
._7_c01044{width:21.614400px;}
._10_c01044{width:22.780800px;}
._e_c01044{width:24.076800px;}
._11_c01044{width:25.581600px;}
._15_c01044{width:26.834400px;}
.fc1_c01044{color:rgb(255,255,255);}
.fc0_c01044{color:rgb(0,0,0);}
.fs5_c01044{font-size:40.000002px;}
.fs2_c01044{font-size:48.000000px;}
.fs4_c01044{font-size:60.000000px;}
.fs1_c01044{font-size:72.000000px;}
.fs0_c01044{font-size:78.000000px;}
.fs3_c01044{font-size:96.000000px;}
.y0_c01044{bottom:0.000000px;}
.y1a_c01044{bottom:67.500000px;}
.y1f_c01044{bottom:132.000000px;}
.y1e_c01044{bottom:159.750000px;}
.y1d_c01044{bottom:201.000000px;}
.y1c_c01044{bottom:220.500000px;}
.y1b_c01044{bottom:248.250000px;}
.y17_c01044{bottom:357.000000px;}
.y16_c01044{bottom:384.000000px;}
.y15_c01044{bottom:411.000000px;}
.y14_c01044{bottom:438.000000px;}
.y13_c01044{bottom:465.000000px;}
.y12_c01044{bottom:492.000000px;}
.y11_c01044{bottom:519.000000px;}
.y10_c01044{bottom:546.000000px;}
.yf_c01044{bottom:573.000000px;}
.ye_c01044{bottom:600.000000px;}
.yd_c01044{bottom:627.000000px;}
.yc_c01044{bottom:654.000000px;}
.yb_c01044{bottom:681.000000px;}
.ya_c01044{bottom:708.000000px;}
.y9_c01044{bottom:756.000000px;}
.y8_c01044{bottom:783.000000px;}
.y7_c01044{bottom:810.000000px;}
.y6_c01044{bottom:837.000000px;}
.y5_c01044{bottom:864.000000px;}
.y4_c01044{bottom:891.000000px;}
.y3_c01044{bottom:918.000000px;}
.y2_c01044{bottom:945.000000px;}
.y1_c01044{bottom:991.500000px;}
.y18_c01044{bottom:1066.500000px;}
.y19_c01044{bottom:1194.000000px;}
.h7_c01044{height:27.480470px;}
.h8_c01044{height:41.220703px;}
.h2_c01044{height:51.257812px;}
.h1_c01044{height:55.224609px;}
.h6_c01044{height:56.074219px;}
.h3_c01044{height:57.234675px;}
.h4_c01044{height:57.258075px;}
.h5_c01044{height:68.343750px;}
.h0_c01044{height:1263.000000px;}
.w0_c01044{width:892.500000px;}
.x0_c01044{left:0.000000px;}
.x1_c01044{left:150.519750px;}
.x2_c01044{left:180.298875px;}
.x3_c01044{left:416.782800px;}
.x4_c01044{left:801.992850px;}
@media print{
.v3_c01044{vertical-align:-29.333333pt;}
.v2_c01044{vertical-align:-20.500267pt;}
.v0_c01044{vertical-align:0.000000pt;}
.v1_c01044{vertical-align:20.500267pt;}
.ls6_c01044{letter-spacing:0.000000pt;}
.ls0_c01044{letter-spacing:0.006933pt;}
.ls3_c01044{letter-spacing:0.010667pt;}
.ls5_c01044{letter-spacing:1.333867pt;}
.ls4_c01044{letter-spacing:3.555555pt;}
.ls1_c01044{letter-spacing:4.320533pt;}
.ls2_c01044{letter-spacing:16.837333pt;}
.ws1_c01044{word-spacing:-17.600000pt;}
.ws2_c01044{word-spacing:-13.333333pt;}
.ws0_c01044{word-spacing:-0.076267pt;}
.ws3_c01044{word-spacing:0.000000pt;}
._f_c01044{margin-left:-6.886400pt;}
._13_c01044{margin-left:-5.881600pt;}
._16_c01044{margin-left:-4.259200pt;}
._3_c01044{margin-left:-3.225600pt;}
._1_c01044{margin-left:-1.664000pt;}
._2_c01044{width:0.960000pt;}
._0_c01044{width:2.067200pt;}
._4_c01044{width:3.814400pt;}
._d_c01044{width:5.548800pt;}
._12_c01044{width:6.892800pt;}
._9_c01044{width:8.102400pt;}
._a_c01044{width:9.017600pt;}
._c_c01044{width:10.745600pt;}
._8_c01044{width:11.884800pt;}
._b_c01044{width:12.844800pt;}
._14_c01044{width:13.952000pt;}
._6_c01044{width:14.899200pt;}
._5_c01044{width:16.166400pt;}
._7_c01044{width:19.212800pt;}
._10_c01044{width:20.249600pt;}
._e_c01044{width:21.401600pt;}
._11_c01044{width:22.739200pt;}
._15_c01044{width:23.852800pt;}
.fs5_c01044{font-size:35.555557pt;}
.fs2_c01044{font-size:42.666667pt;}
.fs4_c01044{font-size:53.333333pt;}
.fs1_c01044{font-size:64.000000pt;}
.fs0_c01044{font-size:69.333333pt;}
.fs3_c01044{font-size:85.333333pt;}
.y0_c01044{bottom:0.000000pt;}
.y1a_c01044{bottom:60.000000pt;}
.y1f_c01044{bottom:117.333333pt;}
.y1e_c01044{bottom:142.000000pt;}
.y1d_c01044{bottom:178.666667pt;}
.y1c_c01044{bottom:196.000000pt;}
.y1b_c01044{bottom:220.666667pt;}
.y17_c01044{bottom:317.333333pt;}
.y16_c01044{bottom:341.333333pt;}
.y15_c01044{bottom:365.333333pt;}
.y14_c01044{bottom:389.333333pt;}
.y13_c01044{bottom:413.333333pt;}
.y12_c01044{bottom:437.333333pt;}
.y11_c01044{bottom:461.333333pt;}
.y10_c01044{bottom:485.333333pt;}
.yf_c01044{bottom:509.333333pt;}
.ye_c01044{bottom:533.333333pt;}
.yd_c01044{bottom:557.333333pt;}
.yc_c01044{bottom:581.333333pt;}
.yb_c01044{bottom:605.333333pt;}
.ya_c01044{bottom:629.333333pt;}
.y9_c01044{bottom:672.000000pt;}
.y8_c01044{bottom:696.000000pt;}
.y7_c01044{bottom:720.000000pt;}
.y6_c01044{bottom:744.000000pt;}
.y5_c01044{bottom:768.000000pt;}
.y4_c01044{bottom:792.000000pt;}
.y3_c01044{bottom:816.000000pt;}
.y2_c01044{bottom:840.000000pt;}
.y1_c01044{bottom:881.333333pt;}
.y18_c01044{bottom:948.000000pt;}
.y19_c01044{bottom:1061.333333pt;}
.h7_c01044{height:24.427085pt;}
.h8_c01044{height:36.640625pt;}
.h2_c01044{height:45.562500pt;}
.h1_c01044{height:49.088542pt;}
.h6_c01044{height:49.843750pt;}
.h3_c01044{height:50.875267pt;}
.h4_c01044{height:50.896067pt;}
.h5_c01044{height:60.750000pt;}
.h0_c01044{height:1122.666667pt;}
.w0_c01044{width:793.333333pt;}
.x0_c01044{left:0.000000pt;}
.x1_c01044{left:133.795333pt;}
.x2_c01044{left:160.265667pt;}
.x3_c01044{left:370.473600pt;}
.x4_c01044{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fcaa4f3a8ff61a5e113d508d.woff2')format("woff");}.ff1_c01045{font-family:ff1_c01045;line-height:0.934082;font-style:normal;font-weight:normal;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_a680a6bbcc72e0c3e698cef1.woff2')format("woff");}.ff2_c01045{font-family:ff2_c01045;line-height:0.882812;font-style:normal;font-weight:normal;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_40262fbf516e7f7411ba7fba.woff2')format("woff");}.ff3_c01045{font-family:ff3_c01045;line-height:0.939453;font-style:normal;font-weight:normal;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_895152d46def70f1657205c0.woff2')format("woff");}.ff4_c01045{font-family:ff4_c01045;line-height:0.755859;font-style:normal;font-weight:normal;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_50f644650bf4cfdd929c8d1b.woff2')format("woff");}.ff5_c01045{font-family:ff5_c01045;line-height:1.155762;font-style:normal;font-weight: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_c01045;src:url('chunks/assets/font_180ad642d472ae2faaa5957d.woff2')format("woff");}.ff6_c01045{font-family:ff6_c01045;line-height:0.684082;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01045;src:url('chunks/assets/font_cc31d1d3756cd687131eb44c.woff2')format("woff");}.ff7_c01045{font-family:ff7_c01045;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c01045;src:url('chunks/assets/font_4ca7150b3ccd376a3ea5c586.woff2')format("woff");}.ff8_c01045{font-family:ff8_c01045;line-height:0.678223;font-style: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);}
.v3_c01045{vertical-align:-33.000000px;}
.v1_c01045{vertical-align:-23.086200px;}
.v0_c01045{vertical-align:0.000000px;}
.v2_c01045{vertical-align:23.086200px;}
.ls3_c01045{letter-spacing:0.000000px;}
.ls1_c01045{letter-spacing:0.007800px;}
.ls4_c01045{letter-spacing:0.012000px;}
.ls0_c01045{letter-spacing:0.517200px;}
.ls2_c01045{letter-spacing:3.999999px;}
.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;}
}
.ws0_c01045{word-spacing:-0.048000px;}
.ws1_c01045{word-spacing:-0.040000px;}
.ws2_c01045{word-spacing:0.000000px;}
._16_c01045{margin-left:-10.591200px;}
._4_c01045{margin-left:-7.783200px;}
._13_c01045{margin-left:-5.335200px;}
._c_c01045{margin-left:-4.248000px;}
._0_c01045{margin-left:-2.887200px;}
._9_c01045{margin-left:-1.324800px;}
._5_c01045{width:1.360800px;}
._2_c01045{width:2.642400px;}
._6_c01045{width:4.644000px;}
._d_c01045{width:6.400800px;}
._b_c01045{width:8.200800px;}
._7_c01045{width:10.368000px;}
._a_c01045{width:12.513600px;}
._3_c01045{width:14.508000px;}
._8_c01045{width:15.696000px;}
._1_c01045{width:17.366400px;}
._17_c01045{width:18.698400px;}
._18_c01045{width:21.340800px;}
._e_c01045{width:22.485600px;}
._14_c01045{width:23.623200px;}
._1a_c01045{width:24.775200px;}
._15_c01045{width:26.985600px;}
._19_c01045{width:28.036800px;}
._12_c01045{width:34.279200px;}
._f_c01045{width:35.956800px;}
._11_c01045{width:37.800000px;}
._10_c01045{width:40.356000px;}
.fc0_c01045{color:rgb(0,0,0);}
.fs4_c01045{font-size:40.000002px;}
.fs1_c01045{font-size:48.000000px;}
.fs3_c01045{font-size:60.000000px;}
.fs0_c01045{font-size:72.000000px;}
.fs2_c01045{font-size:78.000000px;}
.y0_c01045{bottom:0.000000px;}
.y1d_c01045{bottom:67.500000px;}
.y20_c01045{bottom:140.250000px;}
.y1f_c01045{bottom:181.500000px;}
.y1e_c01045{bottom:209.250000px;}
.y1b_c01045{bottom:271.500000px;}
.y1a_c01045{bottom:298.500000px;}
.y19_c01045{bottom:325.500000px;}
.y18_c01045{bottom:352.500000px;}
.y17_c01045{bottom:394.500000px;}
.y16_c01045{bottom:465.000000px;}
.y15_c01045{bottom:492.000000px;}
.y14_c01045{bottom:519.000000px;}
.y13_c01045{bottom:567.000000px;}
.y12_c01045{bottom:594.000000px;}
.y11_c01045{bottom:621.000000px;}
.y10_c01045{bottom:648.000000px;}
.yf_c01045{bottom:675.000000px;}
.ye_c01045{bottom:702.000000px;}
.yd_c01045{bottom:729.000000px;}
.yc_c01045{bottom:777.000000px;}
.yb_c01045{bottom:804.000000px;}
.ya_c01045{bottom:831.000000px;}
.y9_c01045{bottom:858.000000px;}
.y8_c01045{bottom:885.000000px;}
.y7_c01045{bottom:938.771550px;}
.y6_c01045{bottom:960.000000px;}
.y5_c01045{bottom:987.000000px;}
.y4_c01045{bottom:1014.000000px;}
.y3_c01045{bottom:1041.000000px;}
.y2_c01045{bottom:1068.000000px;}
.y1_c01045{bottom:1095.000000px;}
.y1c_c01045{bottom:1194.000000px;}
.h7_c01045{height:27.070314px;}
.h2_c01045{height:33.890625px;}
.h8_c01045{height:41.132812px;}
.h6_c01045{height:44.208984px;}
.h1_c01045{height:51.257812px;}
.h5_c01045{height:56.074219px;}
.h4_c01045{height:56.100586px;}
.h3_c01045{height:56.976825px;}
.h0_c01045{height:1263.000000px;}
.w0_c01045{width:892.500000px;}
.x0_c01045{left:0.000000px;}
.x1_c01045{left:65.480310px;}
@media print{
.v3_c01045{vertical-align:-29.333333pt;}
.v1_c01045{vertical-align:-20.521067pt;}
.v0_c01045{vertical-align:0.000000pt;}
.v2_c01045{vertical-align:20.521067pt;}
.ls3_c01045{letter-spacing:0.000000pt;}
.ls1_c01045{letter-spacing:0.006933pt;}
.ls4_c01045{letter-spacing:0.010667pt;}
.ls0_c01045{letter-spacing:0.459733pt;}
.ls2_c01045{letter-spacing:3.555555pt;}
.ws0_c01045{word-spacing:-0.042667pt;}
.ws1_c01045{word-spacing:-0.035556pt;}
.ws2_c01045{word-spacing:0.000000pt;}
._16_c01045{margin-left:-9.414400pt;}
._4_c01045{margin-left:-6.918400pt;}
._13_c01045{margin-left:-4.742400pt;}
._c_c01045{margin-left:-3.776000pt;}
._0_c01045{margin-left:-2.566400pt;}
._9_c01045{margin-left:-1.177600pt;}
._5_c01045{width:1.209600pt;}
._2_c01045{width:2.348800pt;}
._6_c01045{width:4.128000pt;}
._d_c01045{width:5.689600pt;}
._b_c01045{width:7.289600pt;}
._7_c01045{width:9.216000pt;}
._a_c01045{width:11.123200pt;}
._3_c01045{width:12.896000pt;}
._8_c01045{width:13.952000pt;}
._1_c01045{width:15.436800pt;}
._17_c01045{width:16.620800pt;}
._18_c01045{width:18.969600pt;}
._e_c01045{width:19.987200pt;}
._14_c01045{width:20.998400pt;}
._1a_c01045{width:22.022400pt;}
._15_c01045{width:23.987200pt;}
._19_c01045{width:24.921600pt;}
._12_c01045{width:30.470400pt;}
._f_c01045{width:31.961600pt;}
._11_c01045{width:33.600000pt;}
._10_c01045{width:35.872000pt;}
.fs4_c01045{font-size:35.555557pt;}
.fs1_c01045{font-size:42.666667pt;}
.fs3_c01045{font-size:53.333333pt;}
.fs0_c01045{font-size:64.000000pt;}
.fs2_c01045{font-size:69.333333pt;}
.y0_c01045{bottom:0.000000pt;}
.y1d_c01045{bottom:60.000000pt;}
.y20_c01045{bottom:124.666667pt;}
.y1f_c01045{bottom:161.333333pt;}
.y1e_c01045{bottom:186.000000pt;}
.y1b_c01045{bottom:241.333333pt;}
.y1a_c01045{bottom:265.333333pt;}
.y19_c01045{bottom:289.333333pt;}
.y18_c01045{bottom:313.333333pt;}
.y17_c01045{bottom:350.666667pt;}
.y16_c01045{bottom:413.333333pt;}
.y15_c01045{bottom:437.333333pt;}
.y14_c01045{bottom:461.333333pt;}
.y13_c01045{bottom:504.000000pt;}
.y12_c01045{bottom:528.000000pt;}
.y11_c01045{bottom:552.000000pt;}
.y10_c01045{bottom:576.000000pt;}
.yf_c01045{bottom:600.000000pt;}
.ye_c01045{bottom:624.000000pt;}
.yd_c01045{bottom:648.000000pt;}
.yc_c01045{bottom:690.666667pt;}
.yb_c01045{bottom:714.666667pt;}
.ya_c01045{bottom:738.666667pt;}
.y9_c01045{bottom:762.666667pt;}
.y8_c01045{bottom:786.666667pt;}
.y7_c01045{bottom:834.463600pt;}
.y6_c01045{bottom:853.333333pt;}
.y5_c01045{bottom:877.333333pt;}
.y4_c01045{bottom:901.333333pt;}
.y3_c01045{bottom:925.333333pt;}
.y2_c01045{bottom:949.333333pt;}
.y1_c01045{bottom:973.333333pt;}
.y1c_c01045{bottom:1061.333333pt;}
.h7_c01045{height:24.062501pt;}
.h2_c01045{height:30.125000pt;}
.h8_c01045{height:36.562500pt;}
.h6_c01045{height:39.296875pt;}
.h1_c01045{height:45.562500pt;}
.h5_c01045{height:49.843750pt;}
.h4_c01045{height:49.867188pt;}
.h3_c01045{height:50.646067pt;}
.h0_c01045{height:1122.666667pt;}
.w0_c01045{width:793.333333pt;}
.x0_c01045{left:0.000000pt;}
.x1_c01045{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_40f105554e3886abd4877ef1.woff2')format("woff");}.ff1_c01046{font-family:ff1_c01046;line-height:0.933105;font-style:normal;font-weight:normal;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_1a93d8a15f34352501bf8dbd.woff2')format("woff");}.ff2_c01046{font-family:ff2_c01046;line-height:1.144531;font-style:normal;font-weight:normal;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_e533c7a391910d325455a4cf.woff2')format("woff");}.ff3_c01046{font-family:ff3_c01046;line-height:1.155762;font-style:normal;font-weight:normal;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_1af31103d91c48488edecb17.woff2')format("woff");}.ff4_c01046{font-family:ff4_c01046;line-height:0.904785;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01046;src:url('chunks/assets/font_fccc94772780b9aef7c9739d.woff2')format("woff");}.ff5_c01046{font-family:ff5_c01046;line-height:0.678223;font-style: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);}
.m1_c01046{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3_c01046{vertical-align:-33.000000px;}
.v2_c01046{vertical-align:-23.086200px;}
.v0_c01046{vertical-align:0.000000px;}
.v1_c01046{vertical-align:23.086200px;}
.ls3_c01046{letter-spacing:0.000000px;}
.ls2_c01046{letter-spacing:0.012000px;}
.ls4_c01046{letter-spacing:0.021600px;}
.ls1_c01046{letter-spacing:4.491000px;}
.ls0_c01046{letter-spacing:10.553400px;}
.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:-17.064000px;}
.ws1_c01046{word-spacing:-10.000001px;}
.ws2_c01046{word-spacing:0.000000px;}
._a_c01046{margin-left:-5.245401px;}
._6_c01046{margin-left:-3.801600px;}
._1_c01046{margin-left:-2.404800px;}
._8_c01046{margin-left:-1.404000px;}
._3_c01046{width:1.274400px;}
._5_c01046{width:2.700000px;}
._4_c01046{width:4.406400px;}
._0_c01046{width:5.716800px;}
._9_c01046{width:6.861600px;}
._2_c01046{width:8.085600px;}
._7_c01046{width:10.195200px;}
.fc0_c01046{color:rgb(0,0,0);}
.fs4_c01046{font-size:40.000002px;}
.fs1_c01046{font-size:48.000000px;}
.fs2_c01046{font-size:54.000000px;}
.fs3_c01046{font-size:60.000000px;}
.fs0_c01046{font-size:72.000000px;}
.y0_c01046{bottom:0.000000px;}
.yd_c01046{bottom:10.500000px;}
.ya_c01046{bottom:12.000000px;}
.yc_c01046{bottom:28.500000px;}
.yf_c01046{bottom:67.500000px;}
.y11_c01046{bottom:140.250000px;}
.y10_c01046{bottom:189.750000px;}
.yb_c01046{bottom:235.500000px;}
.y9_c01046{bottom:595.500000px;}
.y8_c01046{bottom:906.000000px;}
.y7_c01046{bottom:933.000000px;}
.y6_c01046{bottom:960.000000px;}
.y5_c01046{bottom:987.000000px;}
.y4_c01046{bottom:1014.000000px;}
.y3_c01046{bottom:1041.000000px;}
.y2_c01046{bottom:1068.000000px;}
.y1_c01046{bottom:1095.000000px;}
.ye_c01046{bottom:1194.000000px;}
.h7_c01046{height:27.480470px;}
.h4_c01046{height:50.756836px;}
.h1_c01046{height:51.187500px;}
.h6_c01046{height:56.074219px;}
.h2_c01046{height:57.211200px;}
.h3_c01046{height:279.000000px;}
.h5_c01046{height:331.500000px;}
.h0_c01046{height:1263.000000px;}
.w1_c01046{width:676.500000px;}
.w0_c01046{width:892.500000px;}
.x0_c01046{left:0.000000px;}
.x3_c01046{left:10.172951px;}
.x2_c01046{left:28.501440px;}
.x1_c01046{left:150.519750px;}
.x4_c01046{left:311.823450px;}
.x5_c01046{left:416.782800px;}
.x6_c01046{left:801.992850px;}
@media print{
.v3_c01046{vertical-align:-29.333333pt;}
.v2_c01046{vertical-align:-20.521067pt;}
.v0_c01046{vertical-align:0.000000pt;}
.v1_c01046{vertical-align:20.521067pt;}
.ls3_c01046{letter-spacing:0.000000pt;}
.ls2_c01046{letter-spacing:0.010667pt;}
.ls4_c01046{letter-spacing:0.019200pt;}
.ls1_c01046{letter-spacing:3.992000pt;}
.ls0_c01046{letter-spacing:9.380800pt;}
.ws0_c01046{word-spacing:-15.168000pt;}
.ws1_c01046{word-spacing:-8.888889pt;}
.ws2_c01046{word-spacing:0.000000pt;}
._a_c01046{margin-left:-4.662579pt;}
._6_c01046{margin-left:-3.379200pt;}
._1_c01046{margin-left:-2.137600pt;}
._8_c01046{margin-left:-1.248000pt;}
._3_c01046{width:1.132800pt;}
._5_c01046{width:2.400000pt;}
._4_c01046{width:3.916800pt;}
._0_c01046{width:5.081600pt;}
._9_c01046{width:6.099200pt;}
._2_c01046{width:7.187200pt;}
._7_c01046{width:9.062400pt;}
.fs4_c01046{font-size:35.555557pt;}
.fs1_c01046{font-size:42.666667pt;}
.fs2_c01046{font-size:48.000000pt;}
.fs3_c01046{font-size:53.333333pt;}
.fs0_c01046{font-size:64.000000pt;}
.y0_c01046{bottom:0.000000pt;}
.yd_c01046{bottom:9.333333pt;}
.ya_c01046{bottom:10.666667pt;}
.yc_c01046{bottom:25.333333pt;}
.yf_c01046{bottom:60.000000pt;}
.y11_c01046{bottom:124.666667pt;}
.y10_c01046{bottom:168.666667pt;}
.yb_c01046{bottom:209.333333pt;}
.y9_c01046{bottom:529.333333pt;}
.y8_c01046{bottom:805.333333pt;}
.y7_c01046{bottom:829.333333pt;}
.y6_c01046{bottom:853.333333pt;}
.y5_c01046{bottom:877.333333pt;}
.y4_c01046{bottom:901.333333pt;}
.y3_c01046{bottom:925.333333pt;}
.y2_c01046{bottom:949.333333pt;}
.y1_c01046{bottom:973.333333pt;}
.ye_c01046{bottom:1061.333333pt;}
.h7_c01046{height:24.427085pt;}
.h4_c01046{height:45.117188pt;}
.h1_c01046{height:45.500000pt;}
.h6_c01046{height:49.843750pt;}
.h2_c01046{height:50.854400pt;}
.h3_c01046{height:248.000000pt;}
.h5_c01046{height:294.666667pt;}
.h0_c01046{height:1122.666667pt;}
.w1_c01046{width:601.333333pt;}
.w0_c01046{width:793.333333pt;}
.x0_c01046{left:0.000000pt;}
.x3_c01046{left:9.042623pt;}
.x2_c01046{left:25.334613pt;}
.x1_c01046{left:133.795333pt;}
.x4_c01046{left:277.176400pt;}
.x5_c01046{left:370.473600pt;}
.x6_c01046{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bac1e4f38d7287effa8ec612.woff2')format("woff");}.ff1_c01047{font-family:ff1_c01047;line-height:0.975586;font-style:normal;font-weight:normal;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_efb48cf8592ff737188161f4.woff2')format("woff");}.ff2_c01047{font-family:ff2_c01047;line-height:0.931152;font-style:normal;font-weight:normal;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_f9d4ba5de82231a2ec7da5e7.woff2')format("woff");}.ff3_c01047{font-family:ff3_c01047;line-height:0.755859;font-style:normal;font-weight:normal;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_69794600275533f65eea76e7.woff2')format("woff");}.ff4_c01047{font-family:ff4_c01047;line-height:1.155762;font-style: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);}
.v0_c01047{vertical-align:0.000000px;}
.ls1_c01047{letter-spacing:0.000000px;}
.ls2_c01047{letter-spacing:0.012000px;}
.ls0_c01047{letter-spacing:0.021600px;}
.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;}
}
.ws0_c01047{word-spacing:0.000000px;}
._8_c01047{margin-left:-3.216000px;}
._1_c01047{margin-left:-2.080800px;}
._4_c01047{margin-left:-1.065600px;}
._2_c01047{width:2.001600px;}
._3_c01047{width:3.679200px;}
._0_c01047{width:4.896000px;}
._6_c01047{width:5.961600px;}
._5_c01047{width:7.992000px;}
._7_c01047{width:10.058400px;}
.fc0_c01047{color:rgb(0,0,0);}
.fs0_c01047{font-size:54.000000px;}
.fs2_c01047{font-size:60.000000px;}
.fs1_c01047{font-size:72.000000px;}
.y0_c01047{bottom:0.000000px;}
.y3_c01047{bottom:10.500000px;}
.y8_c01047{bottom:12.000000px;}
.y2_c01047{bottom:28.500000px;}
.ya_c01047{bottom:67.500000px;}
.y7_c01047{bottom:144.000000px;}
.y6_c01047{bottom:606.000000px;}
.y5_c01047{bottom:633.000000px;}
.y4_c01047{bottom:660.000000px;}
.y1_c01047{bottom:705.000000px;}
.y9_c01047{bottom:1194.000000px;}
.h2_c01047{height:41.633789px;}
.h6_c01047{height:44.208984px;}
.h3_c01047{height:51.187500px;}
.h5_c01047{height:56.074219px;}
.h1_c01047{height:408.000000px;}
.h4_c01047{height:430.500000px;}
.h0_c01047{height:1263.000000px;}
.w1_c01047{width:676.500000px;}
.w0_c01047{width:892.500000px;}
.x0_c01047{left:0.000000px;}
.x2_c01047{left:18.069945px;}
.x1_c01047{left:66.000000px;}
.x3_c01047{left:87.491460px;}
.x4_c01047{left:127.566285px;}
@media print{
.v0_c01047{vertical-align:0.000000pt;}
.ls1_c01047{letter-spacing:0.000000pt;}
.ls2_c01047{letter-spacing:0.010667pt;}
.ls0_c01047{letter-spacing:0.019200pt;}
.ws0_c01047{word-spacing:0.000000pt;}
._8_c01047{margin-left:-2.858667pt;}
._1_c01047{margin-left:-1.849600pt;}
._4_c01047{margin-left:-0.947200pt;}
._2_c01047{width:1.779200pt;}
._3_c01047{width:3.270400pt;}
._0_c01047{width:4.352000pt;}
._6_c01047{width:5.299200pt;}
._5_c01047{width:7.104000pt;}
._7_c01047{width:8.940800pt;}
.fs0_c01047{font-size:48.000000pt;}
.fs2_c01047{font-size:53.333333pt;}
.fs1_c01047{font-size:64.000000pt;}
.y0_c01047{bottom:0.000000pt;}
.y3_c01047{bottom:9.333333pt;}
.y8_c01047{bottom:10.666667pt;}
.y2_c01047{bottom:25.333333pt;}
.ya_c01047{bottom:60.000000pt;}
.y7_c01047{bottom:128.000000pt;}
.y6_c01047{bottom:538.666667pt;}
.y5_c01047{bottom:562.666667pt;}
.y4_c01047{bottom:586.666667pt;}
.y1_c01047{bottom:626.666667pt;}
.y9_c01047{bottom:1061.333333pt;}
.h2_c01047{height:37.007812pt;}
.h6_c01047{height:39.296875pt;}
.h3_c01047{height:45.500000pt;}
.h5_c01047{height:49.843750pt;}
.h1_c01047{height:362.666667pt;}
.h4_c01047{height:382.666667pt;}
.h0_c01047{height:1122.666667pt;}
.w1_c01047{width:601.333333pt;}
.w0_c01047{width:793.333333pt;}
.x0_c01047{left:0.000000pt;}
.x2_c01047{left:16.062173pt;}
.x1_c01047{left:58.666667pt;}
.x3_c01047{left:77.770187pt;}
.x4_c01047{left:113.392253pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d9883f72abfe691ec7f733be.woff2')format("woff");}.ff1_c01048{font-family:ff1_c01048;line-height:0.934082;font-style:normal;font-weight:normal;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_81c7215b446c2cc4c1d57b02.woff2')format("woff");}.ff2_c01048{font-family:ff2_c01048;line-height:1.144531;font-style:normal;font-weight:normal;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_14b4aabf84f7d9af5ff12fda.woff2')format("woff");}.ff3_c01048{font-family:ff3_c01048;line-height:1.155762;font-style: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;}
.ls2_c01048{letter-spacing:0.000000px;}
.ls1_c01048{letter-spacing:0.012000px;}
.ls0_c01048{letter-spacing:0.021600px;}
.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;}
}
.ws0_c01048{word-spacing:0.000000px;}
._4_c01048{margin-left:-19.123200px;}
._7_c01048{margin-left:-7.322400px;}
._9_c01048{margin-left:-3.672000px;}
._2_c01048{margin-left:-2.196000px;}
._b_c01048{margin-left:-1.094400px;}
._3_c01048{width:1.094400px;}
._0_c01048{width:2.815200px;}
._1_c01048{width:5.061600px;}
._a_c01048{width:6.609600px;}
._8_c01048{width:7.646400px;}
._6_c01048{width:8.748000px;}
._5_c01048{width:10.944000px;}
.fc0_c01048{color:rgb(0,0,0);}
.fs1_c01048{font-size:54.000000px;}
.fs2_c01048{font-size:60.000000px;}
.fs0_c01048{font-size:72.000000px;}
.y0_c01048{bottom:0.000000px;}
.ya_c01048{bottom:10.500000px;}
.y4_c01048{bottom:12.000000px;}
.y9_c01048{bottom:28.500000px;}
.yc_c01048{bottom:67.500000px;}
.y8_c01048{bottom:129.000000px;}
.y7_c01048{bottom:522.000000px;}
.y6_c01048{bottom:549.000000px;}
.y5_c01048{bottom:576.000000px;}
.y3_c01048{bottom:621.000000px;}
.y2_c01048{bottom:1068.000000px;}
.y1_c01048{bottom:1095.000000px;}
.yb_c01048{bottom:1194.000000px;}
.h3_c01048{height:50.756836px;}
.h1_c01048{height:51.257812px;}
.h5_c01048{height:56.074219px;}
.h4_c01048{height:361.500000px;}
.h2_c01048{height:415.500000px;}
.h0_c01048{height:1263.000000px;}
.w1_c01048{width:676.500000px;}
.w0_c01048{width:892.500000px;}
.x0_c01048{left:0.000000px;}
.x3_c01048{left:36.503910px;}
.x1_c01048{left:150.519750px;}
.x4_c01048{left:244.481700px;}
.x2_c01048{left:255.727200px;}
.x5_c01048{left:416.782800px;}
.x6_c01048{left:801.992850px;}
@media print{
.v0_c01048{vertical-align:0.000000pt;}
.ls2_c01048{letter-spacing:0.000000pt;}
.ls1_c01048{letter-spacing:0.010667pt;}
.ls0_c01048{letter-spacing:0.019200pt;}
.ws0_c01048{word-spacing:0.000000pt;}
._4_c01048{margin-left:-16.998400pt;}
._7_c01048{margin-left:-6.508800pt;}
._9_c01048{margin-left:-3.264000pt;}
._2_c01048{margin-left:-1.952000pt;}
._b_c01048{margin-left:-0.972800pt;}
._3_c01048{width:0.972800pt;}
._0_c01048{width:2.502400pt;}
._1_c01048{width:4.499200pt;}
._a_c01048{width:5.875200pt;}
._8_c01048{width:6.796800pt;}
._6_c01048{width:7.776000pt;}
._5_c01048{width:9.728000pt;}
.fs1_c01048{font-size:48.000000pt;}
.fs2_c01048{font-size:53.333333pt;}
.fs0_c01048{font-size:64.000000pt;}
.y0_c01048{bottom:0.000000pt;}
.ya_c01048{bottom:9.333333pt;}
.y4_c01048{bottom:10.666667pt;}
.y9_c01048{bottom:25.333333pt;}
.yc_c01048{bottom:60.000000pt;}
.y8_c01048{bottom:114.666667pt;}
.y7_c01048{bottom:464.000000pt;}
.y6_c01048{bottom:488.000000pt;}
.y5_c01048{bottom:512.000000pt;}
.y3_c01048{bottom:552.000000pt;}
.y2_c01048{bottom:949.333333pt;}
.y1_c01048{bottom:973.333333pt;}
.yb_c01048{bottom:1061.333333pt;}
.h3_c01048{height:45.117188pt;}
.h1_c01048{height:45.562500pt;}
.h5_c01048{height:49.843750pt;}
.h4_c01048{height:321.333333pt;}
.h2_c01048{height:369.333333pt;}
.h0_c01048{height:1122.666667pt;}
.w1_c01048{width:601.333333pt;}
.w0_c01048{width:793.333333pt;}
.x0_c01048{left:0.000000pt;}
.x3_c01048{left:32.447920pt;}
.x1_c01048{left:133.795333pt;}
.x4_c01048{left:217.317067pt;}
.x2_c01048{left:227.313067pt;}
.x5_c01048{left:370.473600pt;}
.x6_c01048{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_057aa700649288cbbc891733.woff2')format("woff");}.ff1_c01049{font-family:ff1_c01049;line-height:0.933105;font-style:normal;font-weight:normal;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_c3c05947a9d4fa9534e3423c.woff2')format("woff");}.ff2_c01049{font-family:ff2_c01049;line-height:0.987793;font-style:normal;font-weight:normal;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_4115af6ad8e62478db0185cb.woff2')format("woff");}.ff3_c01049{font-family:ff3_c01049;line-height:0.755859;font-style:normal;font-weight:normal;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_62d91874dd6c0eb7bd69027a.woff2')format("woff");}.ff4_c01049{font-family:ff4_c01049;line-height:1.155762;font-style: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);}
.v0_c01049{vertical-align:0.000000px;}
.ls0_c01049{letter-spacing:0.000000px;}
.ls2_c01049{letter-spacing:0.012000px;}
.ls1_c01049{letter-spacing:0.021600px;}
.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;}
}
.ws0_c01049{word-spacing:0.000000px;}
._d_c01049{margin-left:-7.322400px;}
._b_c01049{margin-left:-4.708800px;}
._7_c01049{margin-left:-3.182400px;}
._6_c01049{margin-left:-1.130400px;}
._0_c01049{width:1.857600px;}
._3_c01049{width:2.901600px;}
._4_c01049{width:4.521600px;}
._9_c01049{width:5.594400px;}
._8_c01049{width:7.624800px;}
._5_c01049{width:9.540000px;}
._1_c01049{width:11.210400px;}
._2_c01049{width:13.075200px;}
._a_c01049{width:14.522400px;}
._c_c01049{width:16.639200px;}
.fc0_c01049{color:rgb(0,0,0);}
.fs1_c01049{font-size:54.000000px;}
.fs2_c01049{font-size:60.000000px;}
.fs0_c01049{font-size:72.000000px;}
.y0_c01049{bottom:0.000000px;}
.y7_c01049{bottom:12.000000px;}
.ya_c01049{bottom:67.500000px;}
.y8_c01049{bottom:139.500000px;}
.y6_c01049{bottom:651.000000px;}
.y5_c01049{bottom:987.000000px;}
.y4_c01049{bottom:1014.000000px;}
.y3_c01049{bottom:1041.000000px;}
.y2_c01049{bottom:1068.000000px;}
.y1_c01049{bottom:1095.000000px;}
.y9_c01049{bottom:1194.000000px;}
.h3_c01049{height:42.292969px;}
.h6_c01049{height:44.208984px;}
.h1_c01049{height:51.187500px;}
.h5_c01049{height:56.074219px;}
.h2_c01049{height:304.500000px;}
.h4_c01049{height:492.000000px;}
.h0_c01049{height:1263.000000px;}
.w1_c01049{width:676.500000px;}
.w0_c01049{width:892.500000px;}
.x0_c01049{left:0.000000px;}
.x1_c01049{left:65.480310px;}
.x3_c01049{left:104.129130px;}
.x2_c01049{left:207.673050px;}
@media print{
.v0_c01049{vertical-align:0.000000pt;}
.ls0_c01049{letter-spacing:0.000000pt;}
.ls2_c01049{letter-spacing:0.010667pt;}
.ls1_c01049{letter-spacing:0.019200pt;}
.ws0_c01049{word-spacing:0.000000pt;}
._d_c01049{margin-left:-6.508800pt;}
._b_c01049{margin-left:-4.185600pt;}
._7_c01049{margin-left:-2.828800pt;}
._6_c01049{margin-left:-1.004800pt;}
._0_c01049{width:1.651200pt;}
._3_c01049{width:2.579200pt;}
._4_c01049{width:4.019200pt;}
._9_c01049{width:4.972800pt;}
._8_c01049{width:6.777600pt;}
._5_c01049{width:8.480000pt;}
._1_c01049{width:9.964800pt;}
._2_c01049{width:11.622400pt;}
._a_c01049{width:12.908800pt;}
._c_c01049{width:14.790400pt;}
.fs1_c01049{font-size:48.000000pt;}
.fs2_c01049{font-size:53.333333pt;}
.fs0_c01049{font-size:64.000000pt;}
.y0_c01049{bottom:0.000000pt;}
.y7_c01049{bottom:10.666667pt;}
.ya_c01049{bottom:60.000000pt;}
.y8_c01049{bottom:124.000000pt;}
.y6_c01049{bottom:578.666667pt;}
.y5_c01049{bottom:877.333333pt;}
.y4_c01049{bottom:901.333333pt;}
.y3_c01049{bottom:925.333333pt;}
.y2_c01049{bottom:949.333333pt;}
.y1_c01049{bottom:973.333333pt;}
.y9_c01049{bottom:1061.333333pt;}
.h3_c01049{height:37.593750pt;}
.h6_c01049{height:39.296875pt;}
.h1_c01049{height:45.500000pt;}
.h5_c01049{height:49.843750pt;}
.h2_c01049{height:270.666667pt;}
.h4_c01049{height:437.333333pt;}
.h0_c01049{height:1122.666667pt;}
.w1_c01049{width:601.333333pt;}
.w0_c01049{width:793.333333pt;}
.x0_c01049{left:0.000000pt;}
.x1_c01049{left:58.204720pt;}
.x3_c01049{left:92.559227pt;}
.x2_c01049{left:184.598267pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e91729cc3aa1d3612f28b962.woff2')format("woff");}.ff1_c01050{font-family:ff1_c01050;line-height:0.976074;font-style:normal;font-weight:normal;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_e125136366f7294077c2a904.woff2')format("woff");}.ff2_c01050{font-family:ff2_c01050;line-height:0.934082;font-style:normal;font-weight:normal;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_fa020ccd18e74d721c6056a0.woff2')format("woff");}.ff3_c01050{font-family:ff3_c01050;line-height:1.155762;font-style: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);}
.v0_c01050{vertical-align:0.000000px;}
.ls1_c01050{letter-spacing:0.000000px;}
.ls0_c01050{letter-spacing:0.012000px;}
.ls2_c01050{letter-spacing:0.021600px;}
.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;}
}
.ws0_c01050{word-spacing:0.000000px;}
._e_c01050{margin-left:-7.178400px;}
._3_c01050{margin-left:-3.513600px;}
._1_c01050{margin-left:-1.872000px;}
._6_c01050{width:1.137600px;}
._0_c01050{width:2.808000px;}
._d_c01050{width:3.866400px;}
._5_c01050{width:5.234400px;}
._2_c01050{width:6.660000px;}
._f_c01050{width:7.747200px;}
._4_c01050{width:9.158400px;}
._10_c01050{width:10.634400px;}
._9_c01050{width:11.822400px;}
._b_c01050{width:13.125600px;}
._a_c01050{width:14.313600px;}
._8_c01050{width:15.969600px;}
._7_c01050{width:17.085600px;}
._c_c01050{width:18.540000px;}
.fc0_c01050{color:rgb(0,0,0);}
.fs0_c01050{font-size:54.000000px;}
.fs2_c01050{font-size:60.000000px;}
.fs1_c01050{font-size:72.000000px;}
.y0_c01050{bottom:0.000000px;}
.y2_c01050{bottom:12.000000px;}
.yb_c01050{bottom:67.500000px;}
.y9_c01050{bottom:169.500000px;}
.y8_c01050{bottom:196.500000px;}
.y7_c01050{bottom:223.500000px;}
.y6_c01050{bottom:268.500000px;}
.y5_c01050{bottom:729.000000px;}
.y4_c01050{bottom:756.000000px;}
.y3_c01050{bottom:783.000000px;}
.y1_c01050{bottom:828.000000px;}
.ya_c01050{bottom:1194.000000px;}
.h2_c01050{height:42.292969px;}
.h3_c01050{height:51.257812px;}
.h5_c01050{height:56.074219px;}
.h1_c01050{height:285.000000px;}
.h4_c01050{height:429.000000px;}
.h0_c01050{height:1263.000000px;}
.w1_c01050{width:676.500000px;}
.w0_c01050{width:892.500000px;}
.x0_c01050{left:0.000000px;}
.x3_c01050{left:95.161005px;}
.x1_c01050{left:150.000000px;}
.x2_c01050{left:240.289350px;}
.x4_c01050{left:416.782800px;}
.x5_c01050{left:801.992850px;}
@media print{
.v0_c01050{vertical-align:0.000000pt;}
.ls1_c01050{letter-spacing:0.000000pt;}
.ls0_c01050{letter-spacing:0.010667pt;}
.ls2_c01050{letter-spacing:0.019200pt;}
.ws0_c01050{word-spacing:0.000000pt;}
._e_c01050{margin-left:-6.380800pt;}
._3_c01050{margin-left:-3.123200pt;}
._1_c01050{margin-left:-1.664000pt;}
._6_c01050{width:1.011200pt;}
._0_c01050{width:2.496000pt;}
._d_c01050{width:3.436800pt;}
._5_c01050{width:4.652800pt;}
._2_c01050{width:5.920000pt;}
._f_c01050{width:6.886400pt;}
._4_c01050{width:8.140800pt;}
._10_c01050{width:9.452800pt;}
._9_c01050{width:10.508800pt;}
._b_c01050{width:11.667200pt;}
._a_c01050{width:12.723200pt;}
._8_c01050{width:14.195200pt;}
._7_c01050{width:15.187200pt;}
._c_c01050{width:16.480000pt;}
.fs0_c01050{font-size:48.000000pt;}
.fs2_c01050{font-size:53.333333pt;}
.fs1_c01050{font-size:64.000000pt;}
.y0_c01050{bottom:0.000000pt;}
.y2_c01050{bottom:10.666667pt;}
.yb_c01050{bottom:60.000000pt;}
.y9_c01050{bottom:150.666667pt;}
.y8_c01050{bottom:174.666667pt;}
.y7_c01050{bottom:198.666667pt;}
.y6_c01050{bottom:238.666667pt;}
.y5_c01050{bottom:648.000000pt;}
.y4_c01050{bottom:672.000000pt;}
.y3_c01050{bottom:696.000000pt;}
.y1_c01050{bottom:736.000000pt;}
.ya_c01050{bottom:1061.333333pt;}
.h2_c01050{height:37.593750pt;}
.h3_c01050{height:45.562500pt;}
.h5_c01050{height:49.843750pt;}
.h1_c01050{height:253.333333pt;}
.h4_c01050{height:381.333333pt;}
.h0_c01050{height:1122.666667pt;}
.w1_c01050{width:601.333333pt;}
.w0_c01050{width:793.333333pt;}
.x0_c01050{left:0.000000pt;}
.x3_c01050{left:84.587560pt;}
.x1_c01050{left:133.333333pt;}
.x2_c01050{left:213.590533pt;}
.x4_c01050{left:370.473600pt;}
.x5_c01050{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_95ee2021fb5f64f1c9b4ddcd.woff2')format("woff");}.ff1_c01051{font-family:ff1_c01051;line-height:0.934082;font-style:normal;font-weight:normal;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_4b50af0a3607d2c060b4bf4e.woff2')format("woff");}.ff2_c01051{font-family:ff2_c01051;line-height:0.987793;font-style:normal;font-weight:normal;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_7a0e4b27dd6c3e740b4f89b1.woff2')format("woff");}.ff3_c01051{font-family:ff3_c01051;line-height:0.756836;font-style:normal;font-weight:normal;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_8d16367220e63dc556bff2f0.woff2')format("woff");}.ff4_c01051{font-family:ff4_c01051;line-height:1.155762;font-style: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;}
.ls0_c01051{letter-spacing:0.000000px;}
.ls2_c01051{letter-spacing:0.012000px;}
.ls1_c01051{letter-spacing:0.021600px;}
.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;}
}
.ws0_c01051{word-spacing:0.000000px;}
._5_c01051{margin-left:-3.542400px;}
._1_c01051{margin-left:-1.677600px;}
._9_c01051{width:1.360800px;}
._3_c01051{width:2.808000px;}
._a_c01051{width:4.219200px;}
._8_c01051{width:5.587200px;}
._7_c01051{width:6.703200px;}
._4_c01051{width:7.812000px;}
._b_c01051{width:9.532800px;}
._0_c01051{width:10.612800px;}
._2_c01051{width:12.333600px;}
._6_c01051{width:14.241600px;}
.fc0_c01051{color:rgb(0,0,0);}
.fs1_c01051{font-size:54.000000px;}
.fs2_c01051{font-size:60.000000px;}
.fs0_c01051{font-size:72.000000px;}
.y0_c01051{bottom:0.000000px;}
.y4_c01051{bottom:12.000000px;}
.y9_c01051{bottom:67.500000px;}
.y7_c01051{bottom:132.000000px;}
.y6_c01051{bottom:159.000000px;}
.y5_c01051{bottom:204.000000px;}
.y3_c01051{bottom:631.500000px;}
.y2_c01051{bottom:1068.000000px;}
.y1_c01051{bottom:1095.000000px;}
.y8_c01051{bottom:1194.000000px;}
.h3_c01051{height:42.292969px;}
.h6_c01051{height:44.208984px;}
.h1_c01051{height:51.257812px;}
.h5_c01051{height:56.074219px;}
.h4_c01051{height:399.000000px;}
.h2_c01051{height:405.000000px;}
.h0_c01051{height:1263.000000px;}
.w1_c01051{width:676.500000px;}
.w0_c01051{width:892.500000px;}
.x0_c01051{left:0.000000px;}
.x3_c01051{left:27.684075px;}
.x1_c01051{left:65.480310px;}
.x2_c01051{left:205.441800px;}
@media print{
.v0_c01051{vertical-align:0.000000pt;}
.ls0_c01051{letter-spacing:0.000000pt;}
.ls2_c01051{letter-spacing:0.010667pt;}
.ls1_c01051{letter-spacing:0.019200pt;}
.ws0_c01051{word-spacing:0.000000pt;}
._5_c01051{margin-left:-3.148800pt;}
._1_c01051{margin-left:-1.491200pt;}
._9_c01051{width:1.209600pt;}
._3_c01051{width:2.496000pt;}
._a_c01051{width:3.750400pt;}
._8_c01051{width:4.966400pt;}
._7_c01051{width:5.958400pt;}
._4_c01051{width:6.944000pt;}
._b_c01051{width:8.473600pt;}
._0_c01051{width:9.433600pt;}
._2_c01051{width:10.963200pt;}
._6_c01051{width:12.659200pt;}
.fs1_c01051{font-size:48.000000pt;}
.fs2_c01051{font-size:53.333333pt;}
.fs0_c01051{font-size:64.000000pt;}
.y0_c01051{bottom:0.000000pt;}
.y4_c01051{bottom:10.666667pt;}
.y9_c01051{bottom:60.000000pt;}
.y7_c01051{bottom:117.333333pt;}
.y6_c01051{bottom:141.333333pt;}
.y5_c01051{bottom:181.333333pt;}
.y3_c01051{bottom:561.333333pt;}
.y2_c01051{bottom:949.333333pt;}
.y1_c01051{bottom:973.333333pt;}
.y8_c01051{bottom:1061.333333pt;}
.h3_c01051{height:37.593750pt;}
.h6_c01051{height:39.296875pt;}
.h1_c01051{height:45.562500pt;}
.h5_c01051{height:49.843750pt;}
.h4_c01051{height:354.666667pt;}
.h2_c01051{height:360.000000pt;}
.h0_c01051{height:1122.666667pt;}
.w1_c01051{width:601.333333pt;}
.w0_c01051{width:793.333333pt;}
.x0_c01051{left:0.000000pt;}
.x3_c01051{left:24.608067pt;}
.x1_c01051{left:58.204720pt;}
.x2_c01051{left:182.614933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_436700b4f66c10667f8c317e.woff2')format("woff");}.ff1_c01052{font-family:ff1_c01052;line-height:0.987793;font-style:normal;font-weight:normal;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_762638e137daa602feafd022.woff2')format("woff");}.ff2_c01052{font-family:ff2_c01052;line-height:0.933105;font-style:normal;font-weight:normal;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_e0420b554fdb1280fe89d47b.woff2')format("woff");}.ff3_c01052{font-family:ff3_c01052;line-height:1.155762;font-style: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);}
.v0_c01052{vertical-align:0.000000px;}
.ls1_c01052{letter-spacing:0.000000px;}
.ls0_c01052{letter-spacing:0.012000px;}
.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;}
}
.ws0_c01052{word-spacing:-19.800000px;}
.ws1_c01052{word-spacing:0.000000px;}
._15_c01052{margin-left:-10.692000px;}
._a_c01052{margin-left:-3.945600px;}
._5_c01052{margin-left:-2.815200px;}
._0_c01052{margin-left:-1.252800px;}
._c_c01052{width:1.951200px;}
._3_c01052{width:3.096000px;}
._7_c01052{width:4.471200px;}
._14_c01052{width:6.566400px;}
._13_c01052{width:8.042400px;}
._8_c01052{width:10.836000px;}
._4_c01052{width:12.196800px;}
._9_c01052{width:13.492800px;}
._1_c01052{width:15.321600px;}
._2_c01052{width:16.567200px;}
._6_c01052{width:18.165600px;}
._d_c01052{width:20.872800px;}
._b_c01052{width:22.140000px;}
._16_c01052{width:23.241600px;}
._f_c01052{width:24.696000px;}
._10_c01052{width:27.129600px;}
._11_c01052{width:29.124000px;}
._e_c01052{width:31.939200px;}
._12_c01052{width:33.055200px;}
.fc0_c01052{color:rgb(0,0,0);}
.fs0_c01052{font-size:54.000000px;}
.fs2_c01052{font-size:60.000000px;}
.fs1_c01052{font-size:72.000000px;}
.y0_c01052{bottom:0.000000px;}
.y2_c01052{bottom:12.000000px;}
.yf_c01052{bottom:67.500000px;}
.yd_c01052{bottom:139.500000px;}
.yc_c01052{bottom:166.500000px;}
.yb_c01052{bottom:193.500000px;}
.ya_c01052{bottom:220.500000px;}
.y9_c01052{bottom:247.500000px;}
.y8_c01052{bottom:292.500000px;}
.y7_c01052{bottom:673.500000px;}
.y6_c01052{bottom:700.500000px;}
.y5_c01052{bottom:727.500000px;}
.y4_c01052{bottom:754.500000px;}
.y3_c01052{bottom:781.500000px;}
.y1_c01052{bottom:826.500000px;}
.ye_c01052{bottom:1194.000000px;}
.h2_c01052{height:42.292969px;}
.h3_c01052{height:51.187500px;}
.h5_c01052{height:56.074219px;}
.h1_c01052{height:286.500000px;}
.h4_c01052{height:349.500000px;}
.h0_c01052{height:1263.000000px;}
.w1_c01052{width:676.500000px;}
.w0_c01052{width:892.500000px;}
.x0_c01052{left:0.000000px;}
.x1_c01052{left:150.000000px;}
.x2_c01052{left:171.292950px;}
.x3_c01052{left:194.759700px;}
.x4_c01052{left:416.782800px;}
.x5_c01052{left:801.992850px;}
@media print{
.v0_c01052{vertical-align:0.000000pt;}
.ls1_c01052{letter-spacing:0.000000pt;}
.ls0_c01052{letter-spacing:0.010667pt;}
.ws0_c01052{word-spacing:-17.600000pt;}
.ws1_c01052{word-spacing:0.000000pt;}
._15_c01052{margin-left:-9.504000pt;}
._a_c01052{margin-left:-3.507200pt;}
._5_c01052{margin-left:-2.502400pt;}
._0_c01052{margin-left:-1.113600pt;}
._c_c01052{width:1.734400pt;}
._3_c01052{width:2.752000pt;}
._7_c01052{width:3.974400pt;}
._14_c01052{width:5.836800pt;}
._13_c01052{width:7.148800pt;}
._8_c01052{width:9.632000pt;}
._4_c01052{width:10.841600pt;}
._9_c01052{width:11.993600pt;}
._1_c01052{width:13.619200pt;}
._2_c01052{width:14.726400pt;}
._6_c01052{width:16.147200pt;}
._d_c01052{width:18.553600pt;}
._b_c01052{width:19.680000pt;}
._16_c01052{width:20.659200pt;}
._f_c01052{width:21.952000pt;}
._10_c01052{width:24.115200pt;}
._11_c01052{width:25.888000pt;}
._e_c01052{width:28.390400pt;}
._12_c01052{width:29.382400pt;}
.fs0_c01052{font-size:48.000000pt;}
.fs2_c01052{font-size:53.333333pt;}
.fs1_c01052{font-size:64.000000pt;}
.y0_c01052{bottom:0.000000pt;}
.y2_c01052{bottom:10.666667pt;}
.yf_c01052{bottom:60.000000pt;}
.yd_c01052{bottom:124.000000pt;}
.yc_c01052{bottom:148.000000pt;}
.yb_c01052{bottom:172.000000pt;}
.ya_c01052{bottom:196.000000pt;}
.y9_c01052{bottom:220.000000pt;}
.y8_c01052{bottom:260.000000pt;}
.y7_c01052{bottom:598.666667pt;}
.y6_c01052{bottom:622.666667pt;}
.y5_c01052{bottom:646.666667pt;}
.y4_c01052{bottom:670.666667pt;}
.y3_c01052{bottom:694.666667pt;}
.y1_c01052{bottom:734.666667pt;}
.ye_c01052{bottom:1061.333333pt;}
.h2_c01052{height:37.593750pt;}
.h3_c01052{height:45.500000pt;}
.h5_c01052{height:49.843750pt;}
.h1_c01052{height:254.666667pt;}
.h4_c01052{height:310.666667pt;}
.h0_c01052{height:1122.666667pt;}
.w1_c01052{width:601.333333pt;}
.w0_c01052{width:793.333333pt;}
.x0_c01052{left:0.000000pt;}
.x1_c01052{left:133.333333pt;}
.x2_c01052{left:152.260400pt;}
.x3_c01052{left:173.119733pt;}
.x4_c01052{left:370.473600pt;}
.x5_c01052{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_481c07afe69a5d0aa78db802.woff2')format("woff");}.ff1_c01053{font-family:ff1_c01053;line-height:0.976074;font-style:normal;font-weight:normal;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_3a6c614ae33dcb36711aefc0.woff2')format("woff");}.ff2_c01053{font-family:ff2_c01053;line-height:0.755859;font-style:normal;font-weight:normal;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_0f879e458f98323d65c28db1.woff2')format("woff");}.ff3_c01053{font-family:ff3_c01053;line-height:1.155762;font-style: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);}
.v0_c01053{vertical-align:0.000000px;}
.ls0_c01053{letter-spacing:0.000000px;}
.ls1_c01053{letter-spacing:0.012000px;}
.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;}
}
.ws0_c01053{word-spacing:0.000000px;}
._0_c01053{margin-left:-3.216000px;}
.fc0_c01053{color:rgb(0,0,0);}
.fs0_c01053{font-size:54.000000px;}
.fs1_c01053{font-size:60.000000px;}
.y0_c01053{bottom:0.000000px;}
.y2_c01053{bottom:12.000000px;}
.y5_c01053{bottom:67.500000px;}
.y3_c01053{bottom:139.500000px;}
.y1_c01053{bottom:630.000000px;}
.y4_c01053{bottom:1194.000000px;}
.h2_c01053{height:42.292969px;}
.h5_c01053{height:44.208984px;}
.h4_c01053{height:56.074219px;}
.h3_c01053{height:471.000000px;}
.h1_c01053{height:483.000000px;}
.h0_c01053{height:1263.000000px;}
.w1_c01053{width:676.500000px;}
.w0_c01053{width:892.500000px;}
.x0_c01053{left:0.000000px;}
.x1_c01053{left:66.000000px;}
.x3_c01053{left:158.501550px;}
.x2_c01053{left:255.806400px;}
@media print{
.v0_c01053{vertical-align:0.000000pt;}
.ls0_c01053{letter-spacing:0.000000pt;}
.ls1_c01053{letter-spacing:0.010667pt;}
.ws0_c01053{word-spacing:0.000000pt;}
._0_c01053{margin-left:-2.858667pt;}
.fs0_c01053{font-size:48.000000pt;}
.fs1_c01053{font-size:53.333333pt;}
.y0_c01053{bottom:0.000000pt;}
.y2_c01053{bottom:10.666667pt;}
.y5_c01053{bottom:60.000000pt;}
.y3_c01053{bottom:124.000000pt;}
.y1_c01053{bottom:560.000000pt;}
.y4_c01053{bottom:1061.333333pt;}
.h2_c01053{height:37.593750pt;}
.h5_c01053{height:39.296875pt;}
.h4_c01053{height:49.843750pt;}
.h3_c01053{height:418.666667pt;}
.h1_c01053{height:429.333333pt;}
.h0_c01053{height:1122.666667pt;}
.w1_c01053{width:601.333333pt;}
.w0_c01053{width:793.333333pt;}
.x0_c01053{left:0.000000pt;}
.x1_c01053{left:58.666667pt;}
.x3_c01053{left:140.890267pt;}
.x2_c01053{left:227.383467pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_31c8e02df0a109ab25d4227b.woff2')format("woff");}.ff1_c01054{font-family:ff1_c01054;line-height:0.933105;font-style:normal;font-weight:normal;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_9db54610bfa4bd83b1ecff05.woff2')format("woff");}.ff2_c01054{font-family:ff2_c01054;line-height:0.987793;font-style:normal;font-weight:normal;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_5dd0430d7b6f3e6d81c117df.woff2')format("woff");}.ff3_c01054{font-family:ff3_c01054;line-height:1.155762;font-style: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);}
.v0_c01054{vertical-align:0.000000px;}
.ls1_c01054{letter-spacing:0.000000px;}
.ls0_c01054{letter-spacing:0.012000px;}
.ls2_c01054{letter-spacing:0.021600px;}
.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;}
}
.ws0_c01054{word-spacing:0.000000px;}
._5_c01054{margin-left:-3.636000px;}
._7_c01054{margin-left:-2.383200px;}
._0_c01054{margin-left:-1.252800px;}
._3_c01054{width:1.915200px;}
._4_c01054{width:4.586400px;}
._1_c01054{width:6.429600px;}
._2_c01054{width:7.668000px;}
._6_c01054{width:10.108800px;}
._8_c01054{width:12.319200px;}
._a_c01054{width:14.407200px;}
._9_c01054{width:15.940800px;}
.fc0_c01054{color:rgb(0,0,0);}
.fs1_c01054{font-size:54.000000px;}
.fs2_c01054{font-size:60.000000px;}
.fs0_c01054{font-size:72.000000px;}
.y0_c01054{bottom:0.000000px;}
.y9_c01054{bottom:10.500000px;}
.y3_c01054{bottom:12.000000px;}
.y8_c01054{bottom:28.500000px;}
.yc_c01054{bottom:67.500000px;}
.ya_c01054{bottom:157.500000px;}
.y7_c01054{bottom:202.500000px;}
.y6_c01054{bottom:667.500000px;}
.y5_c01054{bottom:694.500000px;}
.y4_c01054{bottom:721.500000px;}
.y2_c01054{bottom:766.500000px;}
.y1_c01054{bottom:1095.000000px;}
.yb_c01054{bottom:1194.000000px;}
.h3_c01054{height:42.292969px;}
.h1_c01054{height:51.187500px;}
.h5_c01054{height:56.074219px;}
.h2_c01054{height:297.000000px;}
.h4_c01054{height:433.500000px;}
.h0_c01054{height:1263.000000px;}
.w1_c01054{width:676.500000px;}
.w0_c01054{width:892.500000px;}
.x0_c01054{left:0.000000px;}
.x3_c01054{left:33.006930px;}
.x1_c01054{left:150.519750px;}
.x2_c01054{left:266.389500px;}
.x4_c01054{left:278.861250px;}
.x5_c01054{left:416.782800px;}
.x6_c01054{left:801.992850px;}
@media print{
.v0_c01054{vertical-align:0.000000pt;}
.ls1_c01054{letter-spacing:0.000000pt;}
.ls0_c01054{letter-spacing:0.010667pt;}
.ls2_c01054{letter-spacing:0.019200pt;}
.ws0_c01054{word-spacing:0.000000pt;}
._5_c01054{margin-left:-3.232000pt;}
._7_c01054{margin-left:-2.118400pt;}
._0_c01054{margin-left:-1.113600pt;}
._3_c01054{width:1.702400pt;}
._4_c01054{width:4.076800pt;}
._1_c01054{width:5.715200pt;}
._2_c01054{width:6.816000pt;}
._6_c01054{width:8.985600pt;}
._8_c01054{width:10.950400pt;}
._a_c01054{width:12.806400pt;}
._9_c01054{width:14.169600pt;}
.fs1_c01054{font-size:48.000000pt;}
.fs2_c01054{font-size:53.333333pt;}
.fs0_c01054{font-size:64.000000pt;}
.y0_c01054{bottom:0.000000pt;}
.y9_c01054{bottom:9.333333pt;}
.y3_c01054{bottom:10.666667pt;}
.y8_c01054{bottom:25.333333pt;}
.yc_c01054{bottom:60.000000pt;}
.ya_c01054{bottom:140.000000pt;}
.y7_c01054{bottom:180.000000pt;}
.y6_c01054{bottom:593.333333pt;}
.y5_c01054{bottom:617.333333pt;}
.y4_c01054{bottom:641.333333pt;}
.y2_c01054{bottom:681.333333pt;}
.y1_c01054{bottom:973.333333pt;}
.yb_c01054{bottom:1061.333333pt;}
.h3_c01054{height:37.593750pt;}
.h1_c01054{height:45.500000pt;}
.h5_c01054{height:49.843750pt;}
.h2_c01054{height:264.000000pt;}
.h4_c01054{height:385.333333pt;}
.h0_c01054{height:1122.666667pt;}
.w1_c01054{width:601.333333pt;}
.w0_c01054{width:793.333333pt;}
.x0_c01054{left:0.000000pt;}
.x3_c01054{left:29.339493pt;}
.x1_c01054{left:133.795333pt;}
.x2_c01054{left:236.790667pt;}
.x4_c01054{left:247.876667pt;}
.x5_c01054{left:370.473600pt;}
.x6_c01054{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5c9a14ee55098b81014e064d.woff2')format("woff");}.ff1_c01055{font-family:ff1_c01055;line-height:0.934082;font-style:normal;font-weight:normal;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_8ebd8a62d1273786a6be11f1.woff2')format("woff");}.ff2_c01055{font-family:ff2_c01055;line-height:0.976074;font-style:normal;font-weight:normal;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_05b04e890664a80700f05225.woff2')format("woff");}.ff3_c01055{font-family:ff3_c01055;line-height:0.755859;font-style:normal;font-weight:normal;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_8b5beb7de5f034ce1e81bddd.woff2')format("woff");}.ff4_c01055{font-family:ff4_c01055;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01055;src:url('chunks/assets/font_a828d436c4b2fa7bb9e686df.woff2')format("woff");}.ff5_c01055{font-family:ff5_c01055;line-height:0.891602;font-style:normal;font-weight: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_c01055;src:url('chunks/assets/font_dae6c08441c410d6b2324534.woff2')format("woff");}.ff6_c01055{font-family:ff6_c01055;line-height:0.888672;font-style: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);}
.m1_c01055{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3_c01055{vertical-align:-33.000000px;}
.v2_c01055{vertical-align:-23.086200px;}
.v0_c01055{vertical-align:0.000000px;}
.v1_c01055{vertical-align:23.086200px;}
.ls3_c01055{letter-spacing:-0.007200px;}
.ls2_c01055{letter-spacing:-0.006600px;}
.ls1_c01055{letter-spacing:0.000000px;}
.ls4_c01055{letter-spacing:0.012000px;}
.ls0_c01055{letter-spacing:2.755200px;}
.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:-10.000001px;}
.ws1_c01055{word-spacing:0.000000px;}
._b_c01055{margin-left:-10.497600px;}
._d_c01055{margin-left:-7.208421px;}
._e_c01055{margin-left:-4.564299px;}
._5_c01055{margin-left:-2.916000px;}
._1_c01055{margin-left:-1.569600px;}
._3_c01055{width:1.382400px;}
._7_c01055{width:2.937600px;}
._c_c01055{width:4.147200px;}
._8_c01055{width:5.558400px;}
._4_c01055{width:7.077600px;}
._0_c01055{width:8.416800px;}
._2_c01055{width:10.015200px;}
._6_c01055{width:11.347200px;}
._a_c01055{width:12.384000px;}
._9_c01055{width:13.435200px;}
.fc0_c01055{color:rgb(0,0,0);}
.fs5_c01055{font-size:40.000002px;}
.fs2_c01055{font-size:48.000000px;}
.fs3_c01055{font-size:54.000000px;}
.fs4_c01055{font-size:60.000000px;}
.fs1_c01055{font-size:66.000000px;}
.fs0_c01055{font-size:72.000000px;}
.y0_c01055{bottom:0.000000px;}
.yd_c01055{bottom:12.000000px;}
.yf_c01055{bottom:67.500000px;}
.y10_c01055{bottom:140.250000px;}
.yc_c01055{bottom:208.500000px;}
.yb_c01055{bottom:732.000000px;}
.ya_c01055{bottom:771.000000px;}
.y9_c01055{bottom:810.000000px;}
.y8_c01055{bottom:849.000000px;}
.y7_c01055{bottom:888.000000px;}
.y6_c01055{bottom:927.000000px;}
.y5_c01055{bottom:966.000000px;}
.y4_c01055{bottom:1014.000000px;}
.y3_c01055{bottom:1041.000000px;}
.y2_c01055{bottom:1068.000000px;}
.y1_c01055{bottom:1095.000000px;}
.ye_c01055{bottom:1194.000000px;}
.h7_c01055{height:26.953126px;}
.h4_c01055{height:42.292969px;}
.h6_c01055{height:44.208984px;}
.h1_c01055{height:51.257812px;}
.h5_c01055{height:56.074219px;}
.h2_c01055{height:57.258075px;}
.h3_c01055{height:501.000000px;}
.h0_c01055{height:1263.000000px;}
.w1_c01055{width:676.500000px;}
.w0_c01055{width:892.500000px;}
.x0_c01055{left:0.000000px;}
.x1_c01055{left:65.480310px;}
.x2_c01055{left:157.338150px;}
@media print{
.v3_c01055{vertical-align:-29.333333pt;}
.v2_c01055{vertical-align:-20.521067pt;}
.v0_c01055{vertical-align:0.000000pt;}
.v1_c01055{vertical-align:20.521067pt;}
.ls3_c01055{letter-spacing:-0.006400pt;}
.ls2_c01055{letter-spacing:-0.005867pt;}
.ls1_c01055{letter-spacing:0.000000pt;}
.ls4_c01055{letter-spacing:0.010667pt;}
.ls0_c01055{letter-spacing:2.449067pt;}
.ws0_c01055{word-spacing:-8.888889pt;}
.ws1_c01055{word-spacing:0.000000pt;}
._b_c01055{margin-left:-9.331200pt;}
._d_c01055{margin-left:-6.407485pt;}
._e_c01055{margin-left:-4.057155pt;}
._5_c01055{margin-left:-2.592000pt;}
._1_c01055{margin-left:-1.395200pt;}
._3_c01055{width:1.228800pt;}
._7_c01055{width:2.611200pt;}
._c_c01055{width:3.686400pt;}
._8_c01055{width:4.940800pt;}
._4_c01055{width:6.291200pt;}
._0_c01055{width:7.481600pt;}
._2_c01055{width:8.902400pt;}
._6_c01055{width:10.086400pt;}
._a_c01055{width:11.008000pt;}
._9_c01055{width:11.942400pt;}
.fs5_c01055{font-size:35.555557pt;}
.fs2_c01055{font-size:42.666667pt;}
.fs3_c01055{font-size:48.000000pt;}
.fs4_c01055{font-size:53.333333pt;}
.fs1_c01055{font-size:58.666667pt;}
.fs0_c01055{font-size:64.000000pt;}
.y0_c01055{bottom:0.000000pt;}
.yd_c01055{bottom:10.666667pt;}
.yf_c01055{bottom:60.000000pt;}
.y10_c01055{bottom:124.666667pt;}
.yc_c01055{bottom:185.333333pt;}
.yb_c01055{bottom:650.666667pt;}
.ya_c01055{bottom:685.333333pt;}
.y9_c01055{bottom:720.000000pt;}
.y8_c01055{bottom:754.666667pt;}
.y7_c01055{bottom:789.333333pt;}
.y6_c01055{bottom:824.000000pt;}
.y5_c01055{bottom:858.666667pt;}
.y4_c01055{bottom:901.333333pt;}
.y3_c01055{bottom:925.333333pt;}
.y2_c01055{bottom:949.333333pt;}
.y1_c01055{bottom:973.333333pt;}
.ye_c01055{bottom:1061.333333pt;}
.h7_c01055{height:23.958335pt;}
.h4_c01055{height:37.593750pt;}
.h6_c01055{height:39.296875pt;}
.h1_c01055{height:45.562500pt;}
.h5_c01055{height:49.843750pt;}
.h2_c01055{height:50.896067pt;}
.h3_c01055{height:445.333333pt;}
.h0_c01055{height:1122.666667pt;}
.w1_c01055{width:601.333333pt;}
.w0_c01055{width:793.333333pt;}
.x0_c01055{left:0.000000pt;}
.x1_c01055{left:58.204720pt;}
.x2_c01055{left:139.856133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0d3d444c74154fcb45821237.woff2')format("woff");}.ff1_c01056{font-family:ff1_c01056;line-height:0.934082;font-style:normal;font-weight:normal;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_c7064fe3b10f36aca80793ae.woff2')format("woff");}.ff2_c01056{font-family:ff2_c01056;line-height:0.987793;font-style:normal;font-weight:normal;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_e02e0fce608acc48e5488284.woff2')format("woff");}.ff3_c01056{font-family:ff3_c01056;line-height:1.155762;font-style:normal;font-weight:normal;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_2dcee19a12e1e8e493b84528.woff2')format("woff");}.ff4_c01056{font-family:ff4_c01056;line-height:0.891602;font-style:normal;font-weight:normal;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_f15d0199ff265399fd5f4558.woff2')format("woff");}.ff5_c01056{font-family:ff5_c01056;line-height:0.888672;font-style: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);}
.m1_c01056{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3_c01056{vertical-align:-33.000000px;}
.v2_c01056{vertical-align:-23.086200px;}
.v0_c01056{vertical-align:0.000000px;}
.v1_c01056{vertical-align:23.086200px;}
.ls2_c01056{letter-spacing:0.000000px;}
.ls1_c01056{letter-spacing:0.012000px;}
.ls3_c01056{letter-spacing:7.574400px;}
.ls0_c01056{letter-spacing:15.552000px;}
.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:-10.000001px;}
.ws1_c01056{word-spacing:0.000000px;}
._d_c01056{margin-left:-8.496000px;}
._a_c01056{margin-left:-7.200000px;}
._c_c01056{margin-left:-5.693400px;}
._5_c01056{margin-left:-3.412800px;}
._0_c01056{margin-left:-2.376000px;}
._3_c01056{margin-left:-1.303200px;}
._6_c01056{width:1.231200px;}
._2_c01056{width:2.462400px;}
._1_c01056{width:4.183200px;}
._4_c01056{width:5.198400px;}
._9_c01056{width:6.696000px;}
._7_c01056{width:8.467200px;}
._8_c01056{width:9.964800px;}
._b_c01056{width:10.980000px;}
.fc0_c01056{color:rgb(0,0,0);}
.fs4_c01056{font-size:40.000002px;}
.fs2_c01056{font-size:48.000000px;}
.fs1_c01056{font-size:54.000000px;}
.fs3_c01056{font-size:60.000000px;}
.fs0_c01056{font-size:72.000000px;}
.y0_c01056{bottom:0.000000px;}
.y4_c01056{bottom:12.000000px;}
.y9_c01056{bottom:67.500000px;}
.ya_c01056{bottom:140.250000px;}
.y7_c01056{bottom:184.500000px;}
.y6_c01056{bottom:589.500000px;}
.y5_c01056{bottom:616.500000px;}
.y3_c01056{bottom:661.500000px;}
.y2_c01056{bottom:1068.000000px;}
.y1_c01056{bottom:1095.000000px;}
.y8_c01056{bottom:1194.000000px;}
.h7_c01056{height:26.953126px;}
.h3_c01056{height:42.292969px;}
.h1_c01056{height:51.257812px;}
.h6_c01056{height:56.074219px;}
.h4_c01056{height:57.258075px;}
.h5_c01056{height:373.500000px;}
.h2_c01056{height:375.000000px;}
.h0_c01056{height:1263.000000px;}
.w1_c01056{width:676.500000px;}
.w0_c01056{width:892.500000px;}
.x0_c01056{left:0.000000px;}
.x3_c01056{left:145.298190px;}
.x1_c01056{left:150.519750px;}
.x2_c01056{left:261.521550px;}
.x4_c01056{left:416.782800px;}
.x5_c01056{left:801.992850px;}
@media print{
.v3_c01056{vertical-align:-29.333333pt;}
.v2_c01056{vertical-align:-20.521067pt;}
.v0_c01056{vertical-align:0.000000pt;}
.v1_c01056{vertical-align:20.521067pt;}
.ls2_c01056{letter-spacing:0.000000pt;}
.ls1_c01056{letter-spacing:0.010667pt;}
.ls3_c01056{letter-spacing:6.732800pt;}
.ls0_c01056{letter-spacing:13.824000pt;}
.ws0_c01056{word-spacing:-8.888889pt;}
.ws1_c01056{word-spacing:0.000000pt;}
._d_c01056{margin-left:-7.552000pt;}
._a_c01056{margin-left:-6.400000pt;}
._c_c01056{margin-left:-5.060800pt;}
._5_c01056{margin-left:-3.033600pt;}
._0_c01056{margin-left:-2.112000pt;}
._3_c01056{margin-left:-1.158400pt;}
._6_c01056{width:1.094400pt;}
._2_c01056{width:2.188800pt;}
._1_c01056{width:3.718400pt;}
._4_c01056{width:4.620800pt;}
._9_c01056{width:5.952000pt;}
._7_c01056{width:7.526400pt;}
._8_c01056{width:8.857600pt;}
._b_c01056{width:9.760000pt;}
.fs4_c01056{font-size:35.555557pt;}
.fs2_c01056{font-size:42.666667pt;}
.fs1_c01056{font-size:48.000000pt;}
.fs3_c01056{font-size:53.333333pt;}
.fs0_c01056{font-size:64.000000pt;}
.y0_c01056{bottom:0.000000pt;}
.y4_c01056{bottom:10.666667pt;}
.y9_c01056{bottom:60.000000pt;}
.ya_c01056{bottom:124.666667pt;}
.y7_c01056{bottom:164.000000pt;}
.y6_c01056{bottom:524.000000pt;}
.y5_c01056{bottom:548.000000pt;}
.y3_c01056{bottom:588.000000pt;}
.y2_c01056{bottom:949.333333pt;}
.y1_c01056{bottom:973.333333pt;}
.y8_c01056{bottom:1061.333333pt;}
.h7_c01056{height:23.958335pt;}
.h3_c01056{height:37.593750pt;}
.h1_c01056{height:45.562500pt;}
.h6_c01056{height:49.843750pt;}
.h4_c01056{height:50.896067pt;}
.h5_c01056{height:332.000000pt;}
.h2_c01056{height:333.333333pt;}
.h0_c01056{height:1122.666667pt;}
.w1_c01056{width:601.333333pt;}
.w0_c01056{width:793.333333pt;}
.x0_c01056{left:0.000000pt;}
.x3_c01056{left:129.153947pt;}
.x1_c01056{left:133.795333pt;}
.x2_c01056{left:232.463600pt;}
.x4_c01056{left:370.473600pt;}
.x5_c01056{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7c04931f5c2f4eaf53c4d4df.woff2')format("woff");}.ff1_c01057{font-family:ff1_c01057;line-height:0.932129;font-style:normal;font-weight:normal;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_7d33750fb04b9042d01f02fa.woff2')format("woff");}.ff2_c01057{font-family:ff2_c01057;line-height:0.932129;font-style:normal;font-weight:normal;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_6e3036013b18c5221cf41f15.woff2')format("woff");}.ff3_c01057{font-family:ff3_c01057;line-height:1.010254;font-style:normal;font-weight:normal;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_a7c4087688d587465ad2057c.woff2')format("woff");}.ff4_c01057{font-family:ff4_c01057;line-height:0.986816;font-style:normal;font-weight:normal;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_73ba8c2e9aa92bbda9c83a5b.woff2')format("woff");}.ff5_c01057{font-family:ff5_c01057;line-height:0.755859;font-style:normal;font-weight: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_c01057;src:url('chunks/assets/font_d511aafa772ebaf3301403d7.woff2')format("woff");}.ff6_c01057{font-family:ff6_c01057;line-height:1.155762;font-style: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);}
.v0_c01057{vertical-align:0.000000px;}
.ls1_c01057{letter-spacing:-0.006000px;}
.ls0_c01057{letter-spacing:0.000000px;}
.ls2_c01057{letter-spacing:0.012000px;}
.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;}
}
.ws0_c01057{word-spacing:-19.800000px;}
.ws1_c01057{word-spacing:-0.072000px;}
.ws2_c01057{word-spacing:0.000000px;}
._18_c01057{margin-left:-6.422160px;}
._c_c01057{margin-left:-5.022000px;}
._4_c01057{margin-left:-3.960000px;}
._2_c01057{margin-left:-2.556000px;}
._a_c01057{margin-left:-1.274400px;}
._5_c01057{width:1.324800px;}
._1_c01057{width:2.685600px;}
._0_c01057{width:4.478400px;}
._b_c01057{width:5.716560px;}
._3_c01057{width:7.056000px;}
._d_c01057{width:8.625600px;}
._9_c01057{width:10.468800px;}
._8_c01057{width:12.355200px;}
._13_c01057{width:13.816800px;}
._7_c01057{width:15.048000px;}
._19_c01057{width:16.949040px;}
._6_c01057{width:18.259200px;}
._17_c01057{width:19.281600px;}
._14_c01057{width:20.476800px;}
._16_c01057{width:21.736800px;}
._15_c01057{width:23.018400px;}
._10_c01057{width:25.977600px;}
._11_c01057{width:27.252000px;}
._e_c01057{width:28.648800px;}
._12_c01057{width:29.908800px;}
._f_c01057{width:31.226400px;}
.fc0_c01057{color:rgb(0,0,0);}
.fs1_c01057{font-size:60.000000px;}
.fs0_c01057{font-size:72.000000px;}
.y0_c01057{bottom:0.000000px;}
.y1c_c01057{bottom:67.500000px;}
.y1a_c01057{bottom:382.500000px;}
.y19_c01057{bottom:403.500000px;}
.y18_c01057{bottom:424.500000px;}
.y17_c01057{bottom:445.500000px;}
.y16_c01057{bottom:466.500000px;}
.y15_c01057{bottom:487.500000px;}
.y14_c01057{bottom:508.500000px;}
.y13_c01057{bottom:529.500000px;}
.y12_c01057{bottom:550.500000px;}
.y11_c01057{bottom:571.500000px;}
.y10_c01057{bottom:592.500000px;}
.yf_c01057{bottom:613.500000px;}
.ye_c01057{bottom:634.500000px;}
.yd_c01057{bottom:655.500000px;}
.yc_c01057{bottom:676.500000px;}
.yb_c01057{bottom:697.500000px;}
.ya_c01057{bottom:718.500000px;}
.y9_c01057{bottom:739.500000px;}
.y8_c01057{bottom:783.000000px;}
.y7_c01057{bottom:804.000000px;}
.y6_c01057{bottom:849.000000px;}
.y5_c01057{bottom:897.000000px;}
.y4_c01057{bottom:945.000000px;}
.y3_c01057{bottom:1041.000000px;}
.y2_c01057{bottom:1068.000000px;}
.y1_c01057{bottom:1095.000000px;}
.y1b_c01057{bottom:1194.000000px;}
.h2_c01057{height:42.714844px;}
.h5_c01057{height:44.208984px;}
.h1_c01057{height:51.257812px;}
.h3_c01057{height:52.417969px;}
.h4_c01057{height:56.074219px;}
.h0_c01057{height:1263.000000px;}
.w0_c01057{width:892.500000px;}
.x0_c01057{left:0.000000px;}
.x1_c01057{left:65.480310px;}
@media print{
.v0_c01057{vertical-align:0.000000pt;}
.ls1_c01057{letter-spacing:-0.005333pt;}
.ls0_c01057{letter-spacing:0.000000pt;}
.ls2_c01057{letter-spacing:0.010667pt;}
.ws0_c01057{word-spacing:-17.600000pt;}
.ws1_c01057{word-spacing:-0.064000pt;}
.ws2_c01057{word-spacing:0.000000pt;}
._18_c01057{margin-left:-5.708587pt;}
._c_c01057{margin-left:-4.464000pt;}
._4_c01057{margin-left:-3.520000pt;}
._2_c01057{margin-left:-2.272000pt;}
._a_c01057{margin-left:-1.132800pt;}
._5_c01057{width:1.177600pt;}
._1_c01057{width:2.387200pt;}
._0_c01057{width:3.980800pt;}
._b_c01057{width:5.081387pt;}
._3_c01057{width:6.272000pt;}
._d_c01057{width:7.667200pt;}
._9_c01057{width:9.305600pt;}
._8_c01057{width:10.982400pt;}
._13_c01057{width:12.281600pt;}
._7_c01057{width:13.376000pt;}
._19_c01057{width:15.065813pt;}
._6_c01057{width:16.230400pt;}
._17_c01057{width:17.139200pt;}
._14_c01057{width:18.201600pt;}
._16_c01057{width:19.321600pt;}
._15_c01057{width:20.460800pt;}
._10_c01057{width:23.091200pt;}
._11_c01057{width:24.224000pt;}
._e_c01057{width:25.465600pt;}
._12_c01057{width:26.585600pt;}
._f_c01057{width:27.756800pt;}
.fs1_c01057{font-size:53.333333pt;}
.fs0_c01057{font-size:64.000000pt;}
.y0_c01057{bottom:0.000000pt;}
.y1c_c01057{bottom:60.000000pt;}
.y1a_c01057{bottom:340.000000pt;}
.y19_c01057{bottom:358.666667pt;}
.y18_c01057{bottom:377.333333pt;}
.y17_c01057{bottom:396.000000pt;}
.y16_c01057{bottom:414.666667pt;}
.y15_c01057{bottom:433.333333pt;}
.y14_c01057{bottom:452.000000pt;}
.y13_c01057{bottom:470.666667pt;}
.y12_c01057{bottom:489.333333pt;}
.y11_c01057{bottom:508.000000pt;}
.y10_c01057{bottom:526.666667pt;}
.yf_c01057{bottom:545.333333pt;}
.ye_c01057{bottom:564.000000pt;}
.yd_c01057{bottom:582.666667pt;}
.yc_c01057{bottom:601.333333pt;}
.yb_c01057{bottom:620.000000pt;}
.ya_c01057{bottom:638.666667pt;}
.y9_c01057{bottom:657.333333pt;}
.y8_c01057{bottom:696.000000pt;}
.y7_c01057{bottom:714.666667pt;}
.y6_c01057{bottom:754.666667pt;}
.y5_c01057{bottom:797.333333pt;}
.y4_c01057{bottom:840.000000pt;}
.y3_c01057{bottom:925.333333pt;}
.y2_c01057{bottom:949.333333pt;}
.y1_c01057{bottom:973.333333pt;}
.y1b_c01057{bottom:1061.333333pt;}
.h2_c01057{height:37.968750pt;}
.h5_c01057{height:39.296875pt;}
.h1_c01057{height:45.562500pt;}
.h3_c01057{height:46.593750pt;}
.h4_c01057{height:49.843750pt;}
.h0_c01057{height:1122.666667pt;}
.w0_c01057{width:793.333333pt;}
.x0_c01057{left:0.000000pt;}
.x1_c01057{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eac4c87da7093d64bc4d027a.woff2')format("woff");}.ff1_c01058{font-family:ff1_c01058;line-height:0.884766;font-style:normal;font-weight:normal;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_9a9d30462d984be3eac83ac4.woff2')format("woff");}.ff2_c01058{font-family:ff2_c01058;line-height:0.934082;font-style:normal;font-weight:normal;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_668addfc730b6c451a4ca2aa.woff2')format("woff");}.ff3_c01058{font-family:ff3_c01058;line-height:0.932129;font-style:normal;font-weight:normal;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_bb0538a8c6d30b1fc8bdb409.woff2')format("woff");}.ff4_c01058{font-family:ff4_c01058;line-height:0.882812;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01058;src:url('chunks/assets/font_627e1bd97941e4743c4a2ab7.woff2')format("woff");}.ff5_c01058{font-family:ff5_c01058;line-height:1.155762;font-style:normal;font-weight: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_c01058;src:url('chunks/assets/font_1377b8609b33b00dd44e0ed1.woff2')format("woff");}.ff6_c01058{font-family:ff6_c01058;line-height:0.684082;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01058;src:url('chunks/assets/font_2c24d29c50418e48cdfa1567.woff2')format("woff");}.ff7_c01058{font-family:ff7_c01058;line-height:1.114746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c01058;src:url('chunks/assets/font_236259b016fc69cdec9ad6f1.woff2')format("woff");}.ff8_c01058{font-family:ff8_c01058;line-height:0.892578;font-style: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);}
.m1_c01058{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3_c01058{vertical-align:-33.000000px;}
.v2_c01058{vertical-align:-23.086200px;}
.v0_c01058{vertical-align:0.000000px;}
.v1_c01058{vertical-align:23.086200px;}
.ls9_c01058{letter-spacing:-0.007200px;}
.ls8_c01058{letter-spacing:0.000000px;}
.ls0_c01058{letter-spacing:0.007800px;}
.ls6_c01058{letter-spacing:0.012000px;}
.ls1_c01058{letter-spacing:0.014400px;}
.ls4_c01058{letter-spacing:0.808800px;}
.ls5_c01058{letter-spacing:3.024000px;}
.ls2_c01058{letter-spacing:3.663000px;}
.ls7_c01058{letter-spacing:3.999999px;}
.ls3_c01058{letter-spacing:23.525400px;}
.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;}
}
.ws1_c01058{word-spacing:-19.800000px;}
.ws0_c01058{word-spacing:-0.086400px;}
.ws2_c01058{word-spacing:-0.072000px;}
.ws3_c01058{word-spacing:-0.040000px;}
.ws4_c01058{word-spacing:0.000000px;}
._14_c01058{margin-left:-10.987200px;}
._9_c01058{margin-left:-9.705600px;}
._16_c01058{margin-left:-7.551801px;}
._a_c01058{margin-left:-6.480000px;}
._15_c01058{margin-left:-5.347200px;}
._d_c01058{margin-left:-4.077600px;}
._8_c01058{margin-left:-2.318400px;}
._1_c01058{margin-left:-1.015200px;}
._3_c01058{width:1.706400px;}
._6_c01058{width:3.182400px;}
._5_c01058{width:5.112000px;}
._7_c01058{width:6.134400px;}
._4_c01058{width:7.776000px;}
._0_c01058{width:9.410400px;}
._2_c01058{width:10.476000px;}
._c_c01058{width:11.872800px;}
._b_c01058{width:13.797600px;}
._e_c01058{width:15.746400px;}
._12_c01058{width:17.580000px;}
._11_c01058{width:18.770400px;}
._13_c01058{width:21.571200px;}
._10_c01058{width:23.436000px;}
._f_c01058{width:24.568800px;}
.fc1_c01058{color:rgb(255,255,255);}
.fc0_c01058{color:rgb(0,0,0);}
.fs5_c01058{font-size:40.000002px;}
.fs2_c01058{font-size:48.000000px;}
.fs4_c01058{font-size:60.000000px;}
.fs1_c01058{font-size:72.000000px;}
.fs0_c01058{font-size:78.000000px;}
.fs3_c01058{font-size:96.000000px;}
.y0_c01058{bottom:0.000000px;}
.y16_c01058{bottom:67.500000px;}
.y1b_c01058{bottom:140.250000px;}
.y1a_c01058{bottom:189.750000px;}
.y19_c01058{bottom:231.000000px;}
.y18_c01058{bottom:258.750000px;}
.y17_c01058{bottom:308.250000px;}
.y13_c01058{bottom:444.000000px;}
.y12_c01058{bottom:471.000000px;}
.y11_c01058{bottom:519.000000px;}
.y10_c01058{bottom:546.000000px;}
.yf_c01058{bottom:573.000000px;}
.ye_c01058{bottom:621.000000px;}
.yd_c01058{bottom:648.000000px;}
.yc_c01058{bottom:675.000000px;}
.yb_c01058{bottom:702.000000px;}
.ya_c01058{bottom:729.000000px;}
.y9_c01058{bottom:756.000000px;}
.y8_c01058{bottom:783.000000px;}
.y7_c01058{bottom:810.000000px;}
.y6_c01058{bottom:837.000000px;}
.y5_c01058{bottom:864.000000px;}
.y4_c01058{bottom:891.000000px;}
.y3_c01058{bottom:918.000000px;}
.y2_c01058{bottom:945.000000px;}
.y1_c01058{bottom:991.500000px;}
.y14_c01058{bottom:1066.500000px;}
.y15_c01058{bottom:1194.000000px;}
.h6_c01058{height:27.070314px;}
.h2_c01058{height:51.257812px;}
.h7_c01058{height:53.818359px;}
.h1_c01058{height:55.224609px;}
.h5_c01058{height:56.074219px;}
.h3_c01058{height:56.976825px;}
.h4_c01058{height:68.343750px;}
.h0_c01058{height:1263.000000px;}
.w0_c01058{width:892.500000px;}
.x0_c01058{left:0.000000px;}
.x1_c01058{left:150.519750px;}
.x2_c01058{left:180.298875px;}
.x3_c01058{left:416.782800px;}
.x4_c01058{left:801.992850px;}
@media print{
.v3_c01058{vertical-align:-29.333333pt;}
.v2_c01058{vertical-align:-20.521067pt;}
.v0_c01058{vertical-align:0.000000pt;}
.v1_c01058{vertical-align:20.521067pt;}
.ls9_c01058{letter-spacing:-0.006400pt;}
.ls8_c01058{letter-spacing:0.000000pt;}
.ls0_c01058{letter-spacing:0.006933pt;}
.ls6_c01058{letter-spacing:0.010667pt;}
.ls1_c01058{letter-spacing:0.012800pt;}
.ls4_c01058{letter-spacing:0.718933pt;}
.ls5_c01058{letter-spacing:2.688000pt;}
.ls2_c01058{letter-spacing:3.256000pt;}
.ls7_c01058{letter-spacing:3.555555pt;}
.ls3_c01058{letter-spacing:20.911467pt;}
.ws1_c01058{word-spacing:-17.600000pt;}
.ws0_c01058{word-spacing:-0.076800pt;}
.ws2_c01058{word-spacing:-0.064000pt;}
.ws3_c01058{word-spacing:-0.035556pt;}
.ws4_c01058{word-spacing:0.000000pt;}
._14_c01058{margin-left:-9.766400pt;}
._9_c01058{margin-left:-8.627200pt;}
._16_c01058{margin-left:-6.712712pt;}
._a_c01058{margin-left:-5.760000pt;}
._15_c01058{margin-left:-4.753067pt;}
._d_c01058{margin-left:-3.624533pt;}
._8_c01058{margin-left:-2.060800pt;}
._1_c01058{margin-left:-0.902400pt;}
._3_c01058{width:1.516800pt;}
._6_c01058{width:2.828800pt;}
._5_c01058{width:4.544000pt;}
._7_c01058{width:5.452800pt;}
._4_c01058{width:6.912000pt;}
._0_c01058{width:8.364800pt;}
._2_c01058{width:9.312000pt;}
._c_c01058{width:10.553600pt;}
._b_c01058{width:12.264533pt;}
._e_c01058{width:13.996800pt;}
._12_c01058{width:15.626667pt;}
._11_c01058{width:16.684800pt;}
._13_c01058{width:19.174400pt;}
._10_c01058{width:20.832000pt;}
._f_c01058{width:21.838933pt;}
.fs5_c01058{font-size:35.555557pt;}
.fs2_c01058{font-size:42.666667pt;}
.fs4_c01058{font-size:53.333333pt;}
.fs1_c01058{font-size:64.000000pt;}
.fs0_c01058{font-size:69.333333pt;}
.fs3_c01058{font-size:85.333333pt;}
.y0_c01058{bottom:0.000000pt;}
.y16_c01058{bottom:60.000000pt;}
.y1b_c01058{bottom:124.666667pt;}
.y1a_c01058{bottom:168.666667pt;}
.y19_c01058{bottom:205.333333pt;}
.y18_c01058{bottom:230.000000pt;}
.y17_c01058{bottom:274.000000pt;}
.y13_c01058{bottom:394.666667pt;}
.y12_c01058{bottom:418.666667pt;}
.y11_c01058{bottom:461.333333pt;}
.y10_c01058{bottom:485.333333pt;}
.yf_c01058{bottom:509.333333pt;}
.ye_c01058{bottom:552.000000pt;}
.yd_c01058{bottom:576.000000pt;}
.yc_c01058{bottom:600.000000pt;}
.yb_c01058{bottom:624.000000pt;}
.ya_c01058{bottom:648.000000pt;}
.y9_c01058{bottom:672.000000pt;}
.y8_c01058{bottom:696.000000pt;}
.y7_c01058{bottom:720.000000pt;}
.y6_c01058{bottom:744.000000pt;}
.y5_c01058{bottom:768.000000pt;}
.y4_c01058{bottom:792.000000pt;}
.y3_c01058{bottom:816.000000pt;}
.y2_c01058{bottom:840.000000pt;}
.y1_c01058{bottom:881.333333pt;}
.y14_c01058{bottom:948.000000pt;}
.y15_c01058{bottom:1061.333333pt;}
.h6_c01058{height:24.062501pt;}
.h2_c01058{height:45.562500pt;}
.h7_c01058{height:47.838542pt;}
.h1_c01058{height:49.088542pt;}
.h5_c01058{height:49.843750pt;}
.h3_c01058{height:50.646067pt;}
.h4_c01058{height:60.750000pt;}
.h0_c01058{height:1122.666667pt;}
.w0_c01058{width:793.333333pt;}
.x0_c01058{left:0.000000pt;}
.x1_c01058{left:133.795333pt;}
.x2_c01058{left:160.265667pt;}
.x3_c01058{left:370.473600pt;}
.x4_c01058{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d601f54ba4a7de9dd0d3226d.woff2')format("woff");}.ff1_c01059{font-family:ff1_c01059;line-height:0.939453;font-style:normal;font-weight:normal;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_8acbdf11e82d5ef76805ea00.woff2')format("woff");}.ff2_c01059{font-family:ff2_c01059;line-height:0.934082;font-style:normal;font-weight:normal;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_85813856125193ce64a1602f.woff2')format("woff");}.ff3_c01059{font-family:ff3_c01059;line-height:0.987793;font-style:normal;font-weight:normal;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_2f5ccdb741107391de30ca50.woff2')format("woff");}.ff4_c01059{font-family:ff4_c01059;line-height:0.755859;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01059;src:url('chunks/assets/font_21c4eea7fd9734d71fa7bd52.woff2')format("woff");}.ff5_c01059{font-family:ff5_c01059;line-height:1.155762;font-style: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);}
.v0_c01059{vertical-align:0.000000px;}
.ls2_c01059{letter-spacing:0.000000px;}
.ls0_c01059{letter-spacing:0.007800px;}
.ls3_c01059{letter-spacing:0.012000px;}
.ls1_c01059{letter-spacing:0.021600px;}
.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:-17.064000px;}
.ws1_c01059{word-spacing:0.000000px;}
._5_c01059{margin-left:-7.207200px;}
._9_c01059{margin-left:-3.456000px;}
._6_c01059{margin-left:-2.296800px;}
._3_c01059{margin-left:-1.188000px;}
._2_c01059{width:1.454400px;}
._1_c01059{width:3.319200px;}
._0_c01059{width:4.773600px;}
._4_c01059{width:6.026400px;}
._8_c01059{width:7.660800px;}
._7_c01059{width:9.410400px;}
._a_c01059{width:10.440000px;}
._e_c01059{width:11.952000px;}
._b_c01059{width:15.760800px;}
._c_c01059{width:18.734400px;}
._d_c01059{width:22.507200px;}
.fc0_c01059{color:rgb(0,0,0);}
.fs2_c01059{font-size:54.000000px;}
.fs3_c01059{font-size:60.000000px;}
.fs1_c01059{font-size:72.000000px;}
.fs0_c01059{font-size:78.000000px;}
.y0_c01059{bottom:0.000000px;}
.yb_c01059{bottom:10.500000px;}
.yd_c01059{bottom:12.000000px;}
.ya_c01059{bottom:28.500000px;}
.yf_c01059{bottom:67.500000px;}
.yc_c01059{bottom:127.500000px;}
.y9_c01059{bottom:435.000000px;}
.y8_c01059{bottom:864.000000px;}
.y7_c01059{bottom:891.000000px;}
.y6_c01059{bottom:918.000000px;}
.y5_c01059{bottom:945.000000px;}
.y4_c01059{bottom:972.000000px;}
.y3_c01059{bottom:1020.000000px;}
.y2_c01059{bottom:1047.000000px;}
.y1_c01059{bottom:1093.500000px;}
.ye_c01059{bottom:1194.000000px;}
.h4_c01059{height:42.292969px;}
.h7_c01059{height:44.208984px;}
.h2_c01059{height:51.257812px;}
.h6_c01059{height:56.074219px;}
.h1_c01059{height:56.100586px;}
.h5_c01059{height:279.000000px;}
.h3_c01059{height:397.500000px;}
.h0_c01059{height:1263.000000px;}
.w1_c01059{width:676.500000px;}
.w0_c01059{width:892.500000px;}
.x0_c01059{left:0.000000px;}
.x2_c01059{left:33.850680px;}
.x1_c01059{left:65.480310px;}
.x4_c01059{left:209.789100px;}
.x3_c01059{left:302.314800px;}
@media print{
.v0_c01059{vertical-align:0.000000pt;}
.ls2_c01059{letter-spacing:0.000000pt;}
.ls0_c01059{letter-spacing:0.006933pt;}
.ls3_c01059{letter-spacing:0.010667pt;}
.ls1_c01059{letter-spacing:0.019200pt;}
.ws0_c01059{word-spacing:-15.168000pt;}
.ws1_c01059{word-spacing:0.000000pt;}
._5_c01059{margin-left:-6.406400pt;}
._9_c01059{margin-left:-3.072000pt;}
._6_c01059{margin-left:-2.041600pt;}
._3_c01059{margin-left:-1.056000pt;}
._2_c01059{width:1.292800pt;}
._1_c01059{width:2.950400pt;}
._0_c01059{width:4.243200pt;}
._4_c01059{width:5.356800pt;}
._8_c01059{width:6.809600pt;}
._7_c01059{width:8.364800pt;}
._a_c01059{width:9.280000pt;}
._e_c01059{width:10.624000pt;}
._b_c01059{width:14.009600pt;}
._c_c01059{width:16.652800pt;}
._d_c01059{width:20.006400pt;}
.fs2_c01059{font-size:48.000000pt;}
.fs3_c01059{font-size:53.333333pt;}
.fs1_c01059{font-size:64.000000pt;}
.fs0_c01059{font-size:69.333333pt;}
.y0_c01059{bottom:0.000000pt;}
.yb_c01059{bottom:9.333333pt;}
.yd_c01059{bottom:10.666667pt;}
.ya_c01059{bottom:25.333333pt;}
.yf_c01059{bottom:60.000000pt;}
.yc_c01059{bottom:113.333333pt;}
.y9_c01059{bottom:386.666667pt;}
.y8_c01059{bottom:768.000000pt;}
.y7_c01059{bottom:792.000000pt;}
.y6_c01059{bottom:816.000000pt;}
.y5_c01059{bottom:840.000000pt;}
.y4_c01059{bottom:864.000000pt;}
.y3_c01059{bottom:906.666667pt;}
.y2_c01059{bottom:930.666667pt;}
.y1_c01059{bottom:972.000000pt;}
.ye_c01059{bottom:1061.333333pt;}
.h4_c01059{height:37.593750pt;}
.h7_c01059{height:39.296875pt;}
.h2_c01059{height:45.562500pt;}
.h6_c01059{height:49.843750pt;}
.h1_c01059{height:49.867188pt;}
.h5_c01059{height:248.000000pt;}
.h3_c01059{height:353.333333pt;}
.h0_c01059{height:1122.666667pt;}
.w1_c01059{width:601.333333pt;}
.w0_c01059{width:793.333333pt;}
.x0_c01059{left:0.000000pt;}
.x2_c01059{left:30.089493pt;}
.x1_c01059{left:58.204720pt;}
.x4_c01059{left:186.479200pt;}
.x3_c01059{left:268.724267pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7b14002431f92df66e00c2f7.woff2')format("woff");}.ff1_c01060{font-family:ff1_c01060;line-height:1.132812;font-style:normal;font-weight:normal;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_812a5ac68fc6b4c73d63eec0.woff2')format("woff");}.ff2_c01060{font-family:ff2_c01060;line-height:0.933105;font-style:normal;font-weight:normal;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_a9d429a4fbf16dc2d5979fc1.woff2')format("woff");}.ff3_c01060{font-family:ff3_c01060;line-height:1.155762;font-style: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;}
.ls2_c01060{letter-spacing:0.000000px;}
.ls0_c01060{letter-spacing:0.012000px;}
.ls1_c01060{letter-spacing:0.021600px;}
.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;}
}
.ws0_c01060{word-spacing:0.000000px;}
._c_c01060{margin-left:-7.200000px;}
._6_c01060{margin-left:-4.514400px;}
._2_c01060{margin-left:-2.707200px;}
._5_c01060{margin-left:-1.202400px;}
._8_c01060{width:1.173600px;}
._0_c01060{width:2.325600px;}
._b_c01060{width:3.513600px;}
._a_c01060{width:4.852800px;}
._1_c01060{width:9.720000px;}
._9_c01060{width:10.893600px;}
._4_c01060{width:12.060000px;}
._3_c01060{width:14.803200px;}
._7_c01060{width:16.725600px;}
.fc0_c01060{color:rgb(0,0,0);}
.fs0_c01060{font-size:54.000000px;}
.fs2_c01060{font-size:60.000000px;}
.fs1_c01060{font-size:72.000000px;}
.y0_c01060{bottom:0.000000px;}
.y2_c01060{bottom:12.000000px;}
.y9_c01060{bottom:67.500000px;}
.y7_c01060{bottom:163.500000px;}
.y6_c01060{bottom:564.000000px;}
.y5_c01060{bottom:612.000000px;}
.y4_c01060{bottom:639.000000px;}
.y3_c01060{bottom:666.000000px;}
.y1_c01060{bottom:711.000000px;}
.y8_c01060{bottom:1194.000000px;}
.h2_c01060{height:50.756836px;}
.h3_c01060{height:51.187500px;}
.h5_c01060{height:56.074219px;}
.h4_c01060{height:369.000000px;}
.h1_c01060{height:402.000000px;}
.h0_c01060{height:1263.000000px;}
.w1_c01060{width:676.500000px;}
.w0_c01060{width:892.500000px;}
.x0_c01060{left:0.000000px;}
.x2_c01060{left:148.313940px;}
.x1_c01060{left:150.000000px;}
.x3_c01060{left:219.073650px;}
.x4_c01060{left:416.782800px;}
.x5_c01060{left:801.992850px;}
@media print{
.v0_c01060{vertical-align:0.000000pt;}
.ls2_c01060{letter-spacing:0.000000pt;}
.ls0_c01060{letter-spacing:0.010667pt;}
.ls1_c01060{letter-spacing:0.019200pt;}
.ws0_c01060{word-spacing:0.000000pt;}
._c_c01060{margin-left:-6.400000pt;}
._6_c01060{margin-left:-4.012800pt;}
._2_c01060{margin-left:-2.406400pt;}
._5_c01060{margin-left:-1.068800pt;}
._8_c01060{width:1.043200pt;}
._0_c01060{width:2.067200pt;}
._b_c01060{width:3.123200pt;}
._a_c01060{width:4.313600pt;}
._1_c01060{width:8.640000pt;}
._9_c01060{width:9.683200pt;}
._4_c01060{width:10.720000pt;}
._3_c01060{width:13.158400pt;}
._7_c01060{width:14.867200pt;}
.fs0_c01060{font-size:48.000000pt;}
.fs2_c01060{font-size:53.333333pt;}
.fs1_c01060{font-size:64.000000pt;}
.y0_c01060{bottom:0.000000pt;}
.y2_c01060{bottom:10.666667pt;}
.y9_c01060{bottom:60.000000pt;}
.y7_c01060{bottom:145.333333pt;}
.y6_c01060{bottom:501.333333pt;}
.y5_c01060{bottom:544.000000pt;}
.y4_c01060{bottom:568.000000pt;}
.y3_c01060{bottom:592.000000pt;}
.y1_c01060{bottom:632.000000pt;}
.y8_c01060{bottom:1061.333333pt;}
.h2_c01060{height:45.117188pt;}
.h3_c01060{height:45.500000pt;}
.h5_c01060{height:49.843750pt;}
.h4_c01060{height:328.000000pt;}
.h1_c01060{height:357.333333pt;}
.h0_c01060{height:1122.666667pt;}
.w1_c01060{width:601.333333pt;}
.w0_c01060{width:793.333333pt;}
.x0_c01060{left:0.000000pt;}
.x2_c01060{left:131.834613pt;}
.x1_c01060{left:133.333333pt;}
.x3_c01060{left:194.732133pt;}
.x4_c01060{left:370.473600pt;}
.x5_c01060{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_abd57da55ca898dc963cfb2b.woff2')format("woff");}.ff1_c01061{font-family:ff1_c01061;line-height:1.163086;font-style:normal;font-weight:normal;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_5e02f804ee9b76cbd68567e4.woff2')format("woff");}.ff2_c01061{font-family:ff2_c01061;line-height:0.976074;font-style:normal;font-weight:normal;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_774272e0dac1bcd34f55e020.woff2')format("woff");}.ff3_c01061{font-family:ff3_c01061;line-height:0.756836;font-style:normal;font-weight:normal;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_f243f8bd9cba1069924352fb.woff2')format("woff");}.ff4_c01061{font-family:ff4_c01061;line-height:1.155762;font-style: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;}
.ls0_c01061{letter-spacing:0.000000px;}
.ls2_c01061{letter-spacing:0.012000px;}
.ls1_c01061{letter-spacing:0.021600px;}
.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:0.000000px;}
._7_c01061{margin-left:-7.250400px;}
._3_c01061{margin-left:-4.046400px;}
._0_c01061{margin-left:-2.887200px;}
._6_c01061{margin-left:-1.044000px;}
._2_c01061{width:1.159200px;}
._5_c01061{width:2.232000px;}
._1_c01061{width:4.010400px;}
._4_c01061{width:5.112000px;}
._9_c01061{width:7.135200px;}
._8_c01061{width:8.229600px;}
._a_c01061{width:10.296000px;}
.fc0_c01061{color:rgb(0,0,0);}
.fs1_c01061{font-size:54.000000px;}
.fs2_c01061{font-size:60.000000px;}
.fs0_c01061{font-size:72.000000px;}
.y0_c01061{bottom:0.000000px;}
.y5_c01061{bottom:12.000000px;}
.ya_c01061{bottom:67.500000px;}
.y8_c01061{bottom:139.500000px;}
.y7_c01061{bottom:558.000000px;}
.y6_c01061{bottom:585.000000px;}
.y4_c01061{bottom:630.000000px;}
.y3_c01061{bottom:1041.000000px;}
.y2_c01061{bottom:1068.000000px;}
.y1_c01061{bottom:1095.000000px;}
.y9_c01061{bottom:1194.000000px;}
.h3_c01061{height:42.292969px;}
.h6_c01061{height:44.208984px;}
.h5_c01061{height:56.074219px;}
.h1_c01061{height:67.746094px;}
.h2_c01061{height:379.500000px;}
.h4_c01061{height:387.000000px;}
.h0_c01061{height:1263.000000px;}
.w1_c01061{width:676.500000px;}
.w0_c01061{width:892.500000px;}
.x0_c01061{left:0.000000px;}
.x1_c01061{left:65.480310px;}
.x2_c01061{left:148.343610px;}
.x3_c01061{left:196.542900px;}
@media print{
.v0_c01061{vertical-align:0.000000pt;}
.ls0_c01061{letter-spacing:0.000000pt;}
.ls2_c01061{letter-spacing:0.010667pt;}
.ls1_c01061{letter-spacing:0.019200pt;}
.ws0_c01061{word-spacing:0.000000pt;}
._7_c01061{margin-left:-6.444800pt;}
._3_c01061{margin-left:-3.596800pt;}
._0_c01061{margin-left:-2.566400pt;}
._6_c01061{margin-left:-0.928000pt;}
._2_c01061{width:1.030400pt;}
._5_c01061{width:1.984000pt;}
._1_c01061{width:3.564800pt;}
._4_c01061{width:4.544000pt;}
._9_c01061{width:6.342400pt;}
._8_c01061{width:7.315200pt;}
._a_c01061{width:9.152000pt;}
.fs1_c01061{font-size:48.000000pt;}
.fs2_c01061{font-size:53.333333pt;}
.fs0_c01061{font-size:64.000000pt;}
.y0_c01061{bottom:0.000000pt;}
.y5_c01061{bottom:10.666667pt;}
.ya_c01061{bottom:60.000000pt;}
.y8_c01061{bottom:124.000000pt;}
.y7_c01061{bottom:496.000000pt;}
.y6_c01061{bottom:520.000000pt;}
.y4_c01061{bottom:560.000000pt;}
.y3_c01061{bottom:925.333333pt;}
.y2_c01061{bottom:949.333333pt;}
.y1_c01061{bottom:973.333333pt;}
.y9_c01061{bottom:1061.333333pt;}
.h3_c01061{height:37.593750pt;}
.h6_c01061{height:39.296875pt;}
.h5_c01061{height:49.843750pt;}
.h1_c01061{height:60.218750pt;}
.h2_c01061{height:337.333333pt;}
.h4_c01061{height:344.000000pt;}
.h0_c01061{height:1122.666667pt;}
.w1_c01061{width:601.333333pt;}
.w0_c01061{width:793.333333pt;}
.x0_c01061{left:0.000000pt;}
.x1_c01061{left:58.204720pt;}
.x2_c01061{left:131.860987pt;}
.x3_c01061{left:174.704800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f466ca750a757740ba84635a.woff2')format("woff");}.ff1_c01062{font-family:ff1_c01062;line-height:0.932129;font-style:normal;font-weight:normal;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_8ff45ad04a01d05e4b3f2848.woff2')format("woff");}.ff2_c01062{font-family:ff2_c01062;line-height:0.963867;font-style:normal;font-weight:normal;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_304943524afb51e8ce8b7b59.woff2')format("woff");}.ff3_c01062{font-family:ff3_c01062;line-height:1.155762;font-style: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);}
.v0_c01062{vertical-align:0.000000px;}
.ls1_c01062{letter-spacing:0.000000px;}
.ls0_c01062{letter-spacing:0.012000px;}
.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:0.000000px;}
._3_c01062{margin-left:-7.848000px;}
._4_c01062{margin-left:-3.549600px;}
._6_c01062{margin-left:-2.462400px;}
._0_c01062{margin-left:-1.094400px;}
._2_c01062{width:1.972800px;}
._1_c01062{width:3.153600px;}
._5_c01062{width:4.780800px;}
._7_c01062{width:6.609600px;}
._a_c01062{width:8.056800px;}
._8_c01062{width:9.086400px;}
._b_c01062{width:10.303200px;}
._9_c01062{width:11.368800px;}
._c_c01062{width:12.765600px;}
._d_c01062{width:14.702400px;}
._f_c01062{width:17.157600px;}
._e_c01062{width:18.266400px;}
.fc0_c01062{color:rgb(0,0,0);}
.fs1_c01062{font-size:54.000000px;}
.fs2_c01062{font-size:60.000000px;}
.fs0_c01062{font-size:72.000000px;}
.y0_c01062{bottom:0.000000px;}
.y3_c01062{bottom:12.000000px;}
.yd_c01062{bottom:67.500000px;}
.yb_c01062{bottom:139.500000px;}
.ya_c01062{bottom:493.500000px;}
.y9_c01062{bottom:520.500000px;}
.y8_c01062{bottom:547.500000px;}
.y7_c01062{bottom:574.500000px;}
.y6_c01062{bottom:622.500000px;}
.y5_c01062{bottom:649.500000px;}
.y4_c01062{bottom:676.500000px;}
.y2_c01062{bottom:721.500000px;}
.y1_c01062{bottom:1095.000000px;}
.yc_c01062{bottom:1194.000000px;}
.h3_c01062{height:41.633789px;}
.h1_c01062{height:51.257812px;}
.h5_c01062{height:56.074219px;}
.h4_c01062{height:322.500000px;}
.h2_c01062{height:342.000000px;}
.h0_c01062{height:1263.000000px;}
.w1_c01062{width:676.500000px;}
.w0_c01062{width:892.500000px;}
.x0_c01062{left:0.000000px;}
.x1_c01062{left:150.519750px;}
.x3_c01062{left:218.091450px;}
.x2_c01062{left:239.593800px;}
.x4_c01062{left:416.782800px;}
.x5_c01062{left:801.992850px;}
@media print{
.v0_c01062{vertical-align:0.000000pt;}
.ls1_c01062{letter-spacing:0.000000pt;}
.ls0_c01062{letter-spacing:0.010667pt;}
.ws0_c01062{word-spacing:0.000000pt;}
._3_c01062{margin-left:-6.976000pt;}
._4_c01062{margin-left:-3.155200pt;}
._6_c01062{margin-left:-2.188800pt;}
._0_c01062{margin-left:-0.972800pt;}
._2_c01062{width:1.753600pt;}
._1_c01062{width:2.803200pt;}
._5_c01062{width:4.249600pt;}
._7_c01062{width:5.875200pt;}
._a_c01062{width:7.161600pt;}
._8_c01062{width:8.076800pt;}
._b_c01062{width:9.158400pt;}
._9_c01062{width:10.105600pt;}
._c_c01062{width:11.347200pt;}
._d_c01062{width:13.068800pt;}
._f_c01062{width:15.251200pt;}
._e_c01062{width:16.236800pt;}
.fs1_c01062{font-size:48.000000pt;}
.fs2_c01062{font-size:53.333333pt;}
.fs0_c01062{font-size:64.000000pt;}
.y0_c01062{bottom:0.000000pt;}
.y3_c01062{bottom:10.666667pt;}
.yd_c01062{bottom:60.000000pt;}
.yb_c01062{bottom:124.000000pt;}
.ya_c01062{bottom:438.666667pt;}
.y9_c01062{bottom:462.666667pt;}
.y8_c01062{bottom:486.666667pt;}
.y7_c01062{bottom:510.666667pt;}
.y6_c01062{bottom:553.333333pt;}
.y5_c01062{bottom:577.333333pt;}
.y4_c01062{bottom:601.333333pt;}
.y2_c01062{bottom:641.333333pt;}
.y1_c01062{bottom:973.333333pt;}
.yc_c01062{bottom:1061.333333pt;}
.h3_c01062{height:37.007812pt;}
.h1_c01062{height:45.562500pt;}
.h5_c01062{height:49.843750pt;}
.h4_c01062{height:286.666667pt;}
.h2_c01062{height:304.000000pt;}
.h0_c01062{height:1122.666667pt;}
.w1_c01062{width:601.333333pt;}
.w0_c01062{width:793.333333pt;}
.x0_c01062{left:0.000000pt;}
.x1_c01062{left:133.795333pt;}
.x3_c01062{left:193.859067pt;}
.x2_c01062{left:212.972267pt;}
.x4_c01062{left:370.473600pt;}
.x5_c01062{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3004b8a89e06d37ba37afec6.woff2')format("woff");}.ff1_c01063{font-family:ff1_c01063;line-height:1.163086;font-style:normal;font-weight:normal;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_408cb0f6a2f7f2ed729b87b0.woff2')format("woff");}.ff2_c01063{font-family:ff2_c01063;line-height:0.975586;font-style:normal;font-weight:normal;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_0132f9b470d31a6b74ef4c50.woff2')format("woff");}.ff3_c01063{font-family:ff3_c01063;line-height:0.783203;font-style:normal;font-weight:normal;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_cd639f40a6fc0de8826f0d79.woff2')format("woff");}.ff4_c01063{font-family:ff4_c01063;line-height:0.755859;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01063;src:url('chunks/assets/font_653489467d18562b24c4a9fb.woff2')format("woff");}.ff5_c01063{font-family:ff5_c01063;line-height:1.155762;font-style:normal;font-weight: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_c01063;src:url('chunks/assets/font_16b7c6e009e4f8b666343cd9.woff2')format("woff");}.ff6_c01063{font-family:ff6_c01063;line-height:0.905762;font-style: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);}
.v3_c01063{vertical-align:-33.000000px;}
.v2_c01063{vertical-align:-23.086200px;}
.v0_c01063{vertical-align:0.000000px;}
.v1_c01063{vertical-align:23.086200px;}
.ls4_c01063{letter-spacing:-0.016200px;}
.ls2_c01063{letter-spacing:0.000000px;}
.ls5_c01063{letter-spacing:0.012000px;}
.ls3_c01063{letter-spacing:0.021600px;}
.ls0_c01063{letter-spacing:2.977800px;}
.ls1_c01063{letter-spacing:3.999999px;}
.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;}
}
.ws0_c01063{word-spacing:-17.047800px;}
.ws1_c01063{word-spacing:-0.054000px;}
.ws2_c01063{word-spacing:0.000000px;}
._12_c01063{margin-left:-10.915200px;}
._c_c01063{margin-left:-6.811200px;}
._3_c01063{margin-left:-3.996000px;}
._a_c01063{margin-left:-2.844000px;}
._2_c01063{margin-left:-1.641600px;}
._0_c01063{width:1.130400px;}
._5_c01063{width:2.520000px;}
._1_c01063{width:3.758400px;}
._4_c01063{width:5.133600px;}
._8_c01063{width:7.164000px;}
._9_c01063{width:9.021600px;}
._6_c01063{width:10.504800px;}
._7_c01063{width:12.276000px;}
._11_c01063{width:13.464000px;}
._e_c01063{width:18.151200px;}
._10_c01063{width:20.865600px;}
._b_c01063{width:22.053600px;}
._f_c01063{width:23.954400px;}
._d_c01063{width:25.344000px;}
.fc0_c01063{color:rgb(0,0,0);}
.fs4_c01063{font-size:40.000002px;}
.fs1_c01063{font-size:48.000000px;}
.fs2_c01063{font-size:54.000000px;}
.fs3_c01063{font-size:60.000000px;}
.fs0_c01063{font-size:72.000000px;}
.y0_c01063{bottom:0.000000px;}
.yb_c01063{bottom:12.000000px;}
.ye_c01063{bottom:67.500000px;}
.y10_c01063{bottom:132.000000px;}
.yf_c01063{bottom:159.750000px;}
.yc_c01063{bottom:196.500000px;}
.ya_c01063{bottom:502.500000px;}
.y9_c01063{bottom:858.000000px;}
.y8_c01063{bottom:885.000000px;}
.y7_c01063{bottom:912.000000px;}
.y6_c01063{bottom:939.000000px;}
.y5_c01063{bottom:966.000000px;}
.y4_c01063{bottom:1014.000000px;}
.y3_c01063{bottom:1041.000000px;}
.y2_c01063{bottom:1068.000000px;}
.y1_c01063{bottom:1095.000000px;}
.yd_c01063{bottom:1194.000000px;}
.h9_c01063{height:27.480470px;}
.ha_c01063{height:41.220703px;}
.h6_c01063{height:41.633789px;}
.h4_c01063{height:42.292969px;}
.h8_c01063{height:44.208984px;}
.h7_c01063{height:56.074219px;}
.h1_c01063{height:67.746094px;}
.h2_c01063{height:68.250262px;}
.h5_c01063{height:277.500000px;}
.h3_c01063{height:324.000000px;}
.h0_c01063{height:1263.000000px;}
.w1_c01063{width:676.500000px;}
.w0_c01063{width:892.500000px;}
.x0_c01063{left:0.000000px;}
.x1_c01063{left:65.480310px;}
.x2_c01063{left:226.729950px;}
.x3_c01063{left:338.250000px;}
@media print{
.v3_c01063{vertical-align:-29.333333pt;}
.v2_c01063{vertical-align:-20.521067pt;}
.v0_c01063{vertical-align:0.000000pt;}
.v1_c01063{vertical-align:20.521067pt;}
.ls4_c01063{letter-spacing:-0.014400pt;}
.ls2_c01063{letter-spacing:0.000000pt;}
.ls5_c01063{letter-spacing:0.010667pt;}
.ls3_c01063{letter-spacing:0.019200pt;}
.ls0_c01063{letter-spacing:2.646933pt;}
.ls1_c01063{letter-spacing:3.555555pt;}
.ws0_c01063{word-spacing:-15.153600pt;}
.ws1_c01063{word-spacing:-0.048000pt;}
.ws2_c01063{word-spacing:0.000000pt;}
._12_c01063{margin-left:-9.702400pt;}
._c_c01063{margin-left:-6.054400pt;}
._3_c01063{margin-left:-3.552000pt;}
._a_c01063{margin-left:-2.528000pt;}
._2_c01063{margin-left:-1.459200pt;}
._0_c01063{width:1.004800pt;}
._5_c01063{width:2.240000pt;}
._1_c01063{width:3.340800pt;}
._4_c01063{width:4.563200pt;}
._8_c01063{width:6.368000pt;}
._9_c01063{width:8.019200pt;}
._6_c01063{width:9.337600pt;}
._7_c01063{width:10.912000pt;}
._11_c01063{width:11.968000pt;}
._e_c01063{width:16.134400pt;}
._10_c01063{width:18.547200pt;}
._b_c01063{width:19.603200pt;}
._f_c01063{width:21.292800pt;}
._d_c01063{width:22.528000pt;}
.fs4_c01063{font-size:35.555557pt;}
.fs1_c01063{font-size:42.666667pt;}
.fs2_c01063{font-size:48.000000pt;}
.fs3_c01063{font-size:53.333333pt;}
.fs0_c01063{font-size:64.000000pt;}
.y0_c01063{bottom:0.000000pt;}
.yb_c01063{bottom:10.666667pt;}
.ye_c01063{bottom:60.000000pt;}
.y10_c01063{bottom:117.333333pt;}
.yf_c01063{bottom:142.000000pt;}
.yc_c01063{bottom:174.666667pt;}
.ya_c01063{bottom:446.666667pt;}
.y9_c01063{bottom:762.666667pt;}
.y8_c01063{bottom:786.666667pt;}
.y7_c01063{bottom:810.666667pt;}
.y6_c01063{bottom:834.666667pt;}
.y5_c01063{bottom:858.666667pt;}
.y4_c01063{bottom:901.333333pt;}
.y3_c01063{bottom:925.333333pt;}
.y2_c01063{bottom:949.333333pt;}
.y1_c01063{bottom:973.333333pt;}
.yd_c01063{bottom:1061.333333pt;}
.h9_c01063{height:24.427085pt;}
.ha_c01063{height:36.640625pt;}
.h6_c01063{height:37.007812pt;}
.h4_c01063{height:37.593750pt;}
.h8_c01063{height:39.296875pt;}
.h7_c01063{height:49.843750pt;}
.h1_c01063{height:60.218750pt;}
.h2_c01063{height:60.666900pt;}
.h5_c01063{height:246.666667pt;}
.h3_c01063{height:288.000000pt;}
.h0_c01063{height:1122.666667pt;}
.w1_c01063{width:601.333333pt;}
.w0_c01063{width:793.333333pt;}
.x0_c01063{left:0.000000pt;}
.x1_c01063{left:58.204720pt;}
.x2_c01063{left:201.537733pt;}
.x3_c01063{left:300.666667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_5ffc136e061e2d866b113b44.woff2')format("woff");}.ff1_c01064{font-family:ff1_c01064;line-height:1.163086;font-style:normal;font-weight:normal;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_88ad3bfa9defb69ef9c11c85.woff2')format("woff");}.ff2_c01064{font-family:ff2_c01064;line-height:0.932129;font-style:normal;font-weight:normal;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_43faa37f1e82175a5bcd49b3.woff2')format("woff");}.ff3_c01064{font-family:ff3_c01064;line-height:1.010254;font-style:normal;font-weight:normal;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_8fd04c23e6a7444c896aefa4.woff2')format("woff");}.ff4_c01064{font-family:ff4_c01064;line-height:0.986816;font-style:normal;font-weight:normal;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_bb375005f7d70e5e69eee186.woff2')format("woff");}.ff5_c01064{font-family:ff5_c01064;line-height:1.155762;font-style: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;}
.ls2_c01064{letter-spacing:-0.006000px;}
.ls1_c01064{letter-spacing:0.000000px;}
.ls0_c01064{letter-spacing:0.012000px;}
.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:-19.800000px;}
.ws1_c01064{word-spacing:-0.072000px;}
.ws2_c01064{word-spacing:0.000000px;}
._12_c01064{margin-left:-9.820800px;}
._19_c01064{margin-left:-7.063200px;}
._15_c01064{margin-left:-5.601600px;}
._b_c01064{margin-left:-4.226400px;}
._d_c01064{margin-left:-2.952000px;}
._8_c01064{margin-left:-1.231200px;}
._4_c01064{width:1.274400px;}
._0_c01064{width:2.808000px;}
._2_c01064{width:3.988800px;}
._6_c01064{width:5.306400px;}
._c_c01064{width:6.364800px;}
._13_c01064{width:7.502400px;}
._14_c01064{width:8.956800px;}
._7_c01064{width:9.957600px;}
._3_c01064{width:11.138400px;}
._1_c01064{width:12.304800px;}
._5_c01064{width:13.867200px;}
._9_c01064{width:15.206400px;}
._a_c01064{width:16.207200px;}
._e_c01064{width:17.740800px;}
._16_c01064{width:19.036800px;}
._11_c01064{width:20.858400px;}
._10_c01064{width:21.938400px;}
._f_c01064{width:23.464800px;}
._18_c01064{width:25.099200px;}
._17_c01064{width:26.740800px;}
.fc0_c01064{color:rgb(0,0,0);}
.fs1_c01064{font-size:60.000000px;}
.fs0_c01064{font-size:72.000000px;}
.y0_c01064{bottom:0.000000px;}
.y21_c01064{bottom:67.500000px;}
.y1f_c01064{bottom:292.500000px;}
.y1e_c01064{bottom:313.500000px;}
.y1d_c01064{bottom:334.500000px;}
.y1c_c01064{bottom:355.500000px;}
.y1b_c01064{bottom:376.500000px;}
.y1a_c01064{bottom:397.500000px;}
.y19_c01064{bottom:418.500000px;}
.y18_c01064{bottom:439.500000px;}
.y17_c01064{bottom:460.500000px;}
.y16_c01064{bottom:481.500000px;}
.y15_c01064{bottom:502.500000px;}
.y14_c01064{bottom:523.500000px;}
.y13_c01064{bottom:544.500000px;}
.y12_c01064{bottom:565.500000px;}
.y11_c01064{bottom:586.500000px;}
.y10_c01064{bottom:607.500000px;}
.yf_c01064{bottom:628.500000px;}
.ye_c01064{bottom:649.500000px;}
.yd_c01064{bottom:670.500000px;}
.yc_c01064{bottom:691.500000px;}
.yb_c01064{bottom:733.500000px;}
.ya_c01064{bottom:777.000000px;}
.y9_c01064{bottom:798.000000px;}
.y8_c01064{bottom:843.000000px;}
.y7_c01064{bottom:891.000000px;}
.y6_c01064{bottom:939.000000px;}
.y5_c01064{bottom:987.000000px;}
.y4_c01064{bottom:1014.000000px;}
.y3_c01064{bottom:1041.000000px;}
.y2_c01064{bottom:1068.000000px;}
.y1_c01064{bottom:1095.000000px;}
.y20_c01064{bottom:1194.000000px;}
.h2_c01064{height:51.257812px;}
.h4_c01064{height:52.417969px;}
.h5_c01064{height:56.074219px;}
.h3_c01064{height:56.455078px;}
.h1_c01064{height:67.746094px;}
.h0_c01064{height:1263.000000px;}
.w0_c01064{width:892.500000px;}
.x0_c01064{left:0.000000px;}
.x1_c01064{left:150.519750px;}
.x2_c01064{left:416.782800px;}
.x3_c01064{left:801.992850px;}
@media print{
.v0_c01064{vertical-align:0.000000pt;}
.ls2_c01064{letter-spacing:-0.005333pt;}
.ls1_c01064{letter-spacing:0.000000pt;}
.ls0_c01064{letter-spacing:0.010667pt;}
.ws0_c01064{word-spacing:-17.600000pt;}
.ws1_c01064{word-spacing:-0.064000pt;}
.ws2_c01064{word-spacing:0.000000pt;}
._12_c01064{margin-left:-8.729600pt;}
._19_c01064{margin-left:-6.278400pt;}
._15_c01064{margin-left:-4.979200pt;}
._b_c01064{margin-left:-3.756800pt;}
._d_c01064{margin-left:-2.624000pt;}
._8_c01064{margin-left:-1.094400pt;}
._4_c01064{width:1.132800pt;}
._0_c01064{width:2.496000pt;}
._2_c01064{width:3.545600pt;}
._6_c01064{width:4.716800pt;}
._c_c01064{width:5.657600pt;}
._13_c01064{width:6.668800pt;}
._14_c01064{width:7.961600pt;}
._7_c01064{width:8.851200pt;}
._3_c01064{width:9.900800pt;}
._1_c01064{width:10.937600pt;}
._5_c01064{width:12.326400pt;}
._9_c01064{width:13.516800pt;}
._a_c01064{width:14.406400pt;}
._e_c01064{width:15.769600pt;}
._16_c01064{width:16.921600pt;}
._11_c01064{width:18.540800pt;}
._10_c01064{width:19.500800pt;}
._f_c01064{width:20.857600pt;}
._18_c01064{width:22.310400pt;}
._17_c01064{width:23.769600pt;}
.fs1_c01064{font-size:53.333333pt;}
.fs0_c01064{font-size:64.000000pt;}
.y0_c01064{bottom:0.000000pt;}
.y21_c01064{bottom:60.000000pt;}
.y1f_c01064{bottom:260.000000pt;}
.y1e_c01064{bottom:278.666667pt;}
.y1d_c01064{bottom:297.333333pt;}
.y1c_c01064{bottom:316.000000pt;}
.y1b_c01064{bottom:334.666667pt;}
.y1a_c01064{bottom:353.333333pt;}
.y19_c01064{bottom:372.000000pt;}
.y18_c01064{bottom:390.666667pt;}
.y17_c01064{bottom:409.333333pt;}
.y16_c01064{bottom:428.000000pt;}
.y15_c01064{bottom:446.666667pt;}
.y14_c01064{bottom:465.333333pt;}
.y13_c01064{bottom:484.000000pt;}
.y12_c01064{bottom:502.666667pt;}
.y11_c01064{bottom:521.333333pt;}
.y10_c01064{bottom:540.000000pt;}
.yf_c01064{bottom:558.666667pt;}
.ye_c01064{bottom:577.333333pt;}
.yd_c01064{bottom:596.000000pt;}
.yc_c01064{bottom:614.666667pt;}
.yb_c01064{bottom:652.000000pt;}
.ya_c01064{bottom:690.666667pt;}
.y9_c01064{bottom:709.333333pt;}
.y8_c01064{bottom:749.333333pt;}
.y7_c01064{bottom:792.000000pt;}
.y6_c01064{bottom:834.666667pt;}
.y5_c01064{bottom:877.333333pt;}
.y4_c01064{bottom:901.333333pt;}
.y3_c01064{bottom:925.333333pt;}
.y2_c01064{bottom:949.333333pt;}
.y1_c01064{bottom:973.333333pt;}
.y20_c01064{bottom:1061.333333pt;}
.h2_c01064{height:45.562500pt;}
.h4_c01064{height:46.593750pt;}
.h5_c01064{height:49.843750pt;}
.h3_c01064{height:50.182292pt;}
.h1_c01064{height:60.218750pt;}
.h0_c01064{height:1122.666667pt;}
.w0_c01064{width:793.333333pt;}
.x0_c01064{left:0.000000pt;}
.x1_c01064{left:133.795333pt;}
.x2_c01064{left:370.473600pt;}
.x3_c01064{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_367ebf6013e3f474da57bb89.woff2')format("woff");}.ff1_c01065{font-family:ff1_c01065;line-height:0.901855;font-style:normal;font-weight:normal;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_22603b213a8e6016cf9eeb94.woff2')format("woff");}.ff2_c01065{font-family:ff2_c01065;line-height:0.934082;font-style:normal;font-weight:normal;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_1dcd526bfcc0d417e874b5db.woff2')format("woff");}.ff3_c01065{font-family:ff3_c01065;line-height:1.010254;font-style:normal;font-weight:normal;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_a2a2d3779cc8d0d6add0797e.woff2')format("woff");}.ff4_c01065{font-family:ff4_c01065;line-height:0.986816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01065;src:url('chunks/assets/font_8124d91a7ca8317430a2fb47.woff2')format("woff");}.ff5_c01065{font-family:ff5_c01065;line-height:0.755859;font-style:normal;font-weight: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_c01065;src:url('chunks/assets/font_9ddf6b3da1db8e5acb1dc63b.woff2')format("woff");}.ff6_c01065{font-family:ff6_c01065;line-height:1.155762;font-style: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);}
.v0_c01065{vertical-align:0.000000px;}
.ls1_c01065{letter-spacing:-0.014400px;}
.ls0_c01065{letter-spacing:0.000000px;}
.ls2_c01065{letter-spacing:0.012000px;}
.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;}
}
.ws2_c01065{word-spacing:-18.000000px;}
.ws0_c01065{word-spacing:-16.500000px;}
.ws1_c01065{word-spacing:-0.072000px;}
.ws3_c01065{word-spacing:0.000000px;}
._6_c01065{margin-left:-9.216000px;}
._7_c01065{margin-left:-7.494840px;}
._5_c01065{margin-left:-5.335200px;}
._8_c01065{margin-left:-3.333600px;}
._3_c01065{margin-left:-1.785600px;}
._1_c01065{width:1.857600px;}
._2_c01065{width:3.103200px;}
._0_c01065{width:4.960800px;}
._4_c01065{width:6.703200px;}
._19_c01065{width:7.776000px;}
._15_c01065{width:9.115200px;}
._16_c01065{width:10.512000px;}
._17_c01065{width:11.757600px;}
._18_c01065{width:13.118400px;}
._c_c01065{width:14.227200px;}
._a_c01065{width:15.638400px;}
._1a_c01065{width:16.984800px;}
._b_c01065{width:19.317600px;}
._9_c01065{width:20.361600px;}
._d_c01065{width:21.816000px;}
._e_c01065{width:25.603200px;}
._12_c01065{width:29.311200px;}
._13_c01065{width:31.204800px;}
._f_c01065{width:32.436000px;}
._14_c01065{width:34.308000px;}
._10_c01065{width:36.050400px;}
._11_c01065{width:39.657600px;}
.fc0_c01065{color:rgb(0,0,0);}
.fs1_c01065{font-size:60.000000px;}
.fs0_c01065{font-size:72.000000px;}
.y0_c01065{bottom:0.000000px;}
.y24_c01065{bottom:67.500000px;}
.y22_c01065{bottom:253.500000px;}
.y21_c01065{bottom:274.500000px;}
.y20_c01065{bottom:295.500000px;}
.y1f_c01065{bottom:316.500000px;}
.y1e_c01065{bottom:337.500000px;}
.y1d_c01065{bottom:379.500000px;}
.y1c_c01065{bottom:400.500000px;}
.y1b_c01065{bottom:421.500000px;}
.y1a_c01065{bottom:442.500000px;}
.y19_c01065{bottom:484.500000px;}
.y18_c01065{bottom:505.500000px;}
.y17_c01065{bottom:526.500000px;}
.y16_c01065{bottom:547.500000px;}
.y15_c01065{bottom:568.500000px;}
.y14_c01065{bottom:589.500000px;}
.y13_c01065{bottom:610.500000px;}
.y12_c01065{bottom:631.500000px;}
.y11_c01065{bottom:652.500000px;}
.y10_c01065{bottom:673.500000px;}
.yf_c01065{bottom:694.500000px;}
.ye_c01065{bottom:715.500000px;}
.yd_c01065{bottom:736.500000px;}
.yc_c01065{bottom:757.500000px;}
.yb_c01065{bottom:778.500000px;}
.ya_c01065{bottom:799.500000px;}
.y9_c01065{bottom:820.500000px;}
.y8_c01065{bottom:841.500000px;}
.y7_c01065{bottom:862.500000px;}
.y6_c01065{bottom:906.000000px;}
.y5_c01065{bottom:927.000000px;}
.y4_c01065{bottom:972.000000px;}
.y3_c01065{bottom:999.000000px;}
.y2_c01065{bottom:1047.000000px;}
.y1_c01065{bottom:1095.000000px;}
.y23_c01065{bottom:1194.000000px;}
.h4_c01065{height:42.714844px;}
.h3_c01065{height:42.832031px;}
.h7_c01065{height:44.208984px;}
.h1_c01065{height:51.257812px;}
.h2_c01065{height:51.398438px;}
.h5_c01065{height:52.417969px;}
.h6_c01065{height:56.074219px;}
.h0_c01065{height:1263.000000px;}
.w0_c01065{width:892.500000px;}
.x0_c01065{left:0.000000px;}
.x1_c01065{left:65.480310px;}
@media print{
.v0_c01065{vertical-align:0.000000pt;}
.ls1_c01065{letter-spacing:-0.012800pt;}
.ls0_c01065{letter-spacing:0.000000pt;}
.ls2_c01065{letter-spacing:0.010667pt;}
.ws2_c01065{word-spacing:-16.000000pt;}
.ws0_c01065{word-spacing:-14.666667pt;}
.ws1_c01065{word-spacing:-0.064000pt;}
.ws3_c01065{word-spacing:0.000000pt;}
._6_c01065{margin-left:-8.192000pt;}
._7_c01065{margin-left:-6.662080pt;}
._5_c01065{margin-left:-4.742400pt;}
._8_c01065{margin-left:-2.963200pt;}
._3_c01065{margin-left:-1.587200pt;}
._1_c01065{width:1.651200pt;}
._2_c01065{width:2.758400pt;}
._0_c01065{width:4.409600pt;}
._4_c01065{width:5.958400pt;}
._19_c01065{width:6.912000pt;}
._15_c01065{width:8.102400pt;}
._16_c01065{width:9.344000pt;}
._17_c01065{width:10.451200pt;}
._18_c01065{width:11.660800pt;}
._c_c01065{width:12.646400pt;}
._a_c01065{width:13.900800pt;}
._1a_c01065{width:15.097600pt;}
._b_c01065{width:17.171200pt;}
._9_c01065{width:18.099200pt;}
._d_c01065{width:19.392000pt;}
._e_c01065{width:22.758400pt;}
._12_c01065{width:26.054400pt;}
._13_c01065{width:27.737600pt;}
._f_c01065{width:28.832000pt;}
._14_c01065{width:30.496000pt;}
._10_c01065{width:32.044800pt;}
._11_c01065{width:35.251200pt;}
.fs1_c01065{font-size:53.333333pt;}
.fs0_c01065{font-size:64.000000pt;}
.y0_c01065{bottom:0.000000pt;}
.y24_c01065{bottom:60.000000pt;}
.y22_c01065{bottom:225.333333pt;}
.y21_c01065{bottom:244.000000pt;}
.y20_c01065{bottom:262.666667pt;}
.y1f_c01065{bottom:281.333333pt;}
.y1e_c01065{bottom:300.000000pt;}
.y1d_c01065{bottom:337.333333pt;}
.y1c_c01065{bottom:356.000000pt;}
.y1b_c01065{bottom:374.666667pt;}
.y1a_c01065{bottom:393.333333pt;}
.y19_c01065{bottom:430.666667pt;}
.y18_c01065{bottom:449.333333pt;}
.y17_c01065{bottom:468.000000pt;}
.y16_c01065{bottom:486.666667pt;}
.y15_c01065{bottom:505.333333pt;}
.y14_c01065{bottom:524.000000pt;}
.y13_c01065{bottom:542.666667pt;}
.y12_c01065{bottom:561.333333pt;}
.y11_c01065{bottom:580.000000pt;}
.y10_c01065{bottom:598.666667pt;}
.yf_c01065{bottom:617.333333pt;}
.ye_c01065{bottom:636.000000pt;}
.yd_c01065{bottom:654.666667pt;}
.yc_c01065{bottom:673.333333pt;}
.yb_c01065{bottom:692.000000pt;}
.ya_c01065{bottom:710.666667pt;}
.y9_c01065{bottom:729.333333pt;}
.y8_c01065{bottom:748.000000pt;}
.y7_c01065{bottom:766.666667pt;}
.y6_c01065{bottom:805.333333pt;}
.y5_c01065{bottom:824.000000pt;}
.y4_c01065{bottom:864.000000pt;}
.y3_c01065{bottom:888.000000pt;}
.y2_c01065{bottom:930.666667pt;}
.y1_c01065{bottom:973.333333pt;}
.y23_c01065{bottom:1061.333333pt;}
.h4_c01065{height:37.968750pt;}
.h3_c01065{height:38.072917pt;}
.h7_c01065{height:39.296875pt;}
.h1_c01065{height:45.562500pt;}
.h2_c01065{height:45.687500pt;}
.h5_c01065{height:46.593750pt;}
.h6_c01065{height:49.843750pt;}
.h0_c01065{height:1122.666667pt;}
.w0_c01065{width:793.333333pt;}
.x0_c01065{left:0.000000pt;}
.x1_c01065{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_93da516e2e9a842183f60daa.woff2')format("woff");}.ff1_c01066{font-family:ff1_c01066;line-height:0.939453;font-style:normal;font-weight:normal;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_3bb3a4f1f187274bbe8f397d.woff2')format("woff");}.ff2_c01066{font-family:ff2_c01066;line-height:1.163086;font-style:normal;font-weight:normal;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_8c81d66fbb43ba978ec39046.woff2')format("woff");}.ff3_c01066{font-family:ff3_c01066;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01066;src:url('chunks/assets/font_46f5e6a3cb867fbe3d7fed4b.woff2')format("woff");}.ff4_c01066{font-family:ff4_c01066;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01066;src:url('chunks/assets/font_add5fbda9d02b0ecfe463ef4.woff2')format("woff");}.ff5_c01066{font-family:ff5_c01066;line-height:0.903320;font-style:normal;font-weight: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_c01066;src:url('chunks/assets/font_0d3608ed6e8e657044edcbc6.woff2')format("woff");}.ff6_c01066{font-family:ff6_c01066;line-height:0.893555;font-style: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);}
.m1_c01066{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3_c01066{vertical-align:-33.000000px;}
.v2_c01066{vertical-align:-23.086200px;}
.v0_c01066{vertical-align:0.000000px;}
.v1_c01066{vertical-align:23.086200px;}
.ls7_c01066{letter-spacing:0.000000px;}
.ls0_c01066{letter-spacing:0.007800px;}
.ls4_c01066{letter-spacing:0.012000px;}
.ls2_c01066{letter-spacing:0.014400px;}
.ls8_c01066{letter-spacing:0.050400px;}
.ls3_c01066{letter-spacing:0.235200px;}
.ls1_c01066{letter-spacing:1.698600px;}
.ls5_c01066{letter-spacing:3.999999px;}
.ls6_c01066{letter-spacing:9.999999px;}
.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;}
}
.ws0_c01066{word-spacing:-0.086400px;}
.ws1_c01066{word-spacing:0.000000px;}
._11_c01066{margin-left:-10.497600px;}
._15_c01066{margin-left:-7.537200px;}
._14_c01066{margin-left:-5.055000px;}
._3_c01066{margin-left:-4.003200px;}
._9_c01066{margin-left:-2.570400px;}
._1_c01066{margin-left:-1.166400px;}
._b_c01066{width:1.764000px;}
._7_c01066{width:3.182400px;}
._5_c01066{width:4.644000px;}
._e_c01066{width:6.516000px;}
._f_c01066{width:7.927200px;}
._10_c01066{width:9.720000px;}
._12_c01066{width:11.203200px;}
._d_c01066{width:12.304800px;}
._13_c01066{width:14.760000px;}
._16_c01066{width:17.263800px;}
._6_c01066{width:24.724800px;}
._8_c01066{width:26.114400px;}
._c_c01066{width:27.604800px;}
._0_c01066{width:29.296800px;}
._2_c01066{width:30.520800px;}
._a_c01066{width:31.910400px;}
._4_c01066{width:33.307200px;}
.fc1_c01066{color:rgb(255,255,255);}
.fc0_c01066{color:rgb(0,0,0);}
.fs5_c01066{font-size:40.000002px;}
.fs2_c01066{font-size:48.000000px;}
.fs4_c01066{font-size:60.000000px;}
.fs1_c01066{font-size:72.000000px;}
.fs0_c01066{font-size:78.000000px;}
.fs3_c01066{font-size:96.000000px;}
.y0_c01066{bottom:0.000000px;}
.y14_c01066{bottom:67.500000px;}
.y18_c01066{bottom:132.000000px;}
.y17_c01066{bottom:159.750000px;}
.y16_c01066{bottom:201.000000px;}
.y15_c01066{bottom:228.750000px;}
.y11_c01066{bottom:409.500000px;}
.y10_c01066{bottom:436.500000px;}
.yf_c01066{bottom:463.500000px;}
.ye_c01066{bottom:490.500000px;}
.yd_c01066{bottom:538.500000px;}
.yc_c01066{bottom:565.500000px;}
.yb_c01066{bottom:592.500000px;}
.ya_c01066{bottom:639.000000px;}
.y9_c01066{bottom:709.500000px;}
.y8_c01066{bottom:757.500000px;}
.y7_c01066{bottom:784.500000px;}
.y6_c01066{bottom:811.500000px;}
.y5_c01066{bottom:859.500000px;}
.y4_c01066{bottom:886.500000px;}
.y3_c01066{bottom:913.500000px;}
.y2_c01066{bottom:940.500000px;}
.y1_c01066{bottom:987.000000px;}
.y12_c01066{bottom:1066.500000px;}
.y13_c01066{bottom:1194.000000px;}
.h6_c01066{height:27.421876px;}
.h7_c01066{height:41.132812px;}
.h5_c01066{height:56.074219px;}
.h1_c01066{height:56.100586px;}
.h2_c01066{height:67.746094px;}
.h3_c01066{height:68.250262px;}
.h4_c01066{height:90.328125px;}
.h0_c01066{height:1263.000000px;}
.w0_c01066{width:892.500000px;}
.x0_c01066{left:0.000000px;}
.x1_c01066{left:150.519750px;}
.x2_c01066{left:180.298875px;}
.x3_c01066{left:416.782800px;}
.x4_c01066{left:801.992850px;}
@media print{
.v3_c01066{vertical-align:-29.333333pt;}
.v2_c01066{vertical-align:-20.521067pt;}
.v0_c01066{vertical-align:0.000000pt;}
.v1_c01066{vertical-align:20.521067pt;}
.ls7_c01066{letter-spacing:0.000000pt;}
.ls0_c01066{letter-spacing:0.006933pt;}
.ls4_c01066{letter-spacing:0.010667pt;}
.ls2_c01066{letter-spacing:0.012800pt;}
.ls8_c01066{letter-spacing:0.044800pt;}
.ls3_c01066{letter-spacing:0.209067pt;}
.ls1_c01066{letter-spacing:1.509867pt;}
.ls5_c01066{letter-spacing:3.555555pt;}
.ls6_c01066{letter-spacing:8.888888pt;}
.ws0_c01066{word-spacing:-0.076800pt;}
.ws1_c01066{word-spacing:0.000000pt;}
._11_c01066{margin-left:-9.331200pt;}
._15_c01066{margin-left:-6.699733pt;}
._14_c01066{margin-left:-4.493333pt;}
._3_c01066{margin-left:-3.558400pt;}
._9_c01066{margin-left:-2.284800pt;}
._1_c01066{margin-left:-1.036800pt;}
._b_c01066{width:1.568000pt;}
._7_c01066{width:2.828800pt;}
._5_c01066{width:4.128000pt;}
._e_c01066{width:5.792000pt;}
._f_c01066{width:7.046400pt;}
._10_c01066{width:8.640000pt;}
._12_c01066{width:9.958400pt;}
._d_c01066{width:10.937600pt;}
._13_c01066{width:13.120000pt;}
._16_c01066{width:15.345600pt;}
._6_c01066{width:21.977600pt;}
._8_c01066{width:23.212800pt;}
._c_c01066{width:24.537600pt;}
._0_c01066{width:26.041600pt;}
._2_c01066{width:27.129600pt;}
._a_c01066{width:28.364800pt;}
._4_c01066{width:29.606400pt;}
.fs5_c01066{font-size:35.555557pt;}
.fs2_c01066{font-size:42.666667pt;}
.fs4_c01066{font-size:53.333333pt;}
.fs1_c01066{font-size:64.000000pt;}
.fs0_c01066{font-size:69.333333pt;}
.fs3_c01066{font-size:85.333333pt;}
.y0_c01066{bottom:0.000000pt;}
.y14_c01066{bottom:60.000000pt;}
.y18_c01066{bottom:117.333333pt;}
.y17_c01066{bottom:142.000000pt;}
.y16_c01066{bottom:178.666667pt;}
.y15_c01066{bottom:203.333333pt;}
.y11_c01066{bottom:364.000000pt;}
.y10_c01066{bottom:388.000000pt;}
.yf_c01066{bottom:412.000000pt;}
.ye_c01066{bottom:436.000000pt;}
.yd_c01066{bottom:478.666667pt;}
.yc_c01066{bottom:502.666667pt;}
.yb_c01066{bottom:526.666667pt;}
.ya_c01066{bottom:568.000000pt;}
.y9_c01066{bottom:630.666667pt;}
.y8_c01066{bottom:673.333333pt;}
.y7_c01066{bottom:697.333333pt;}
.y6_c01066{bottom:721.333333pt;}
.y5_c01066{bottom:764.000000pt;}
.y4_c01066{bottom:788.000000pt;}
.y3_c01066{bottom:812.000000pt;}
.y2_c01066{bottom:836.000000pt;}
.y1_c01066{bottom:877.333333pt;}
.y12_c01066{bottom:948.000000pt;}
.y13_c01066{bottom:1061.333333pt;}
.h6_c01066{height:24.375001pt;}
.h7_c01066{height:36.562500pt;}
.h5_c01066{height:49.843750pt;}
.h1_c01066{height:49.867188pt;}
.h2_c01066{height:60.218750pt;}
.h3_c01066{height:60.666900pt;}
.h4_c01066{height:80.291667pt;}
.h0_c01066{height:1122.666667pt;}
.w0_c01066{width:793.333333pt;}
.x0_c01066{left:0.000000pt;}
.x1_c01066{left:133.795333pt;}
.x2_c01066{left:160.265667pt;}
.x3_c01066{left:370.473600pt;}
.x4_c01066{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_710403229e06fd1404ceb9fa.woff2')format("woff");}.ff1_c01067{font-family:ff1_c01067;line-height:0.987793;font-style:normal;font-weight:normal;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_2b67caa7799c2089abe57f25.woff2')format("woff");}.ff2_c01067{font-family:ff2_c01067;line-height:0.755859;font-style:normal;font-weight:normal;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_09492092d2d85c0d6ea6daf9.woff2')format("woff");}.ff3_c01067{font-family:ff3_c01067;line-height:1.155762;font-style: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;}
.ls0_c01067{letter-spacing:0.000000px;}
.ls2_c01067{letter-spacing:0.012000px;}
.ls1_c01067{letter-spacing:0.021600px;}
.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:-17.064000px;}
.ws1_c01067{word-spacing:0.000000px;}
._1_c01067{margin-left:-3.216000px;}
._0_c01067{margin-left:-1.991940px;}
.fc0_c01067{color:rgb(0,0,0);}
.fs0_c01067{font-size:54.000000px;}
.fs1_c01067{font-size:60.000000px;}
.y0_c01067{bottom:0.000000px;}
.y5_c01067{bottom:10.500000px;}
.y2_c01067{bottom:12.000000px;}
.y4_c01067{bottom:28.500000px;}
.y7_c01067{bottom:67.500000px;}
.y3_c01067{bottom:334.500000px;}
.y1_c01067{bottom:682.500000px;}
.y6_c01067{bottom:1194.000000px;}
.h2_c01067{height:42.292969px;}
.h5_c01067{height:44.208984px;}
.h4_c01067{height:56.074219px;}
.h3_c01067{height:319.500000px;}
.h1_c01067{height:430.500000px;}
.h0_c01067{height:1263.000000px;}
.w1_c01067{width:676.500000px;}
.w0_c01067{width:892.500000px;}
.x0_c01067{left:0.000000px;}
.x3_c01067{left:8.250000px;}
.x1_c01067{left:66.000000px;}
.x2_c01067{left:221.993700px;}
.x4_c01067{left:310.307400px;}
@media print{
.v0_c01067{vertical-align:0.000000pt;}
.ls0_c01067{letter-spacing:0.000000pt;}
.ls2_c01067{letter-spacing:0.010667pt;}
.ls1_c01067{letter-spacing:0.019200pt;}
.ws0_c01067{word-spacing:-15.168000pt;}
.ws1_c01067{word-spacing:0.000000pt;}
._1_c01067{margin-left:-2.858667pt;}
._0_c01067{margin-left:-1.770613pt;}
.fs0_c01067{font-size:48.000000pt;}
.fs1_c01067{font-size:53.333333pt;}
.y0_c01067{bottom:0.000000pt;}
.y5_c01067{bottom:9.333333pt;}
.y2_c01067{bottom:10.666667pt;}
.y4_c01067{bottom:25.333333pt;}
.y7_c01067{bottom:60.000000pt;}
.y3_c01067{bottom:297.333333pt;}
.y1_c01067{bottom:606.666667pt;}
.y6_c01067{bottom:1061.333333pt;}
.h2_c01067{height:37.593750pt;}
.h5_c01067{height:39.296875pt;}
.h4_c01067{height:49.843750pt;}
.h3_c01067{height:284.000000pt;}
.h1_c01067{height:382.666667pt;}
.h0_c01067{height:1122.666667pt;}
.w1_c01067{width:601.333333pt;}
.w0_c01067{width:793.333333pt;}
.x0_c01067{left:0.000000pt;}
.x3_c01067{left:7.333333pt;}
.x1_c01067{left:58.666667pt;}
.x2_c01067{left:197.327733pt;}
.x4_c01067{left:275.828800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_278ec95b8722b2479546f82d.woff2')format("woff");}.ff1_c01068{font-family:ff1_c01068;line-height:0.987793;font-style:normal;font-weight:normal;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_757002ea1f1fbb5b5d40840f.woff2')format("woff");}.ff2_c01068{font-family:ff2_c01068;line-height:0.931152;font-style:normal;font-weight:normal;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_56d4d95d654e88d65ab759cc.woff2')format("woff");}.ff3_c01068{font-family:ff3_c01068;line-height:1.155762;font-style: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);}
.v0_c01068{vertical-align:0.000000px;}
.ls1_c01068{letter-spacing:0.000000px;}
.ls0_c01068{letter-spacing:0.012000px;}
.ls2_c01068{letter-spacing:0.021600px;}
.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;}
}
.ws0_c01068{word-spacing:0.000000px;}
._4_c01068{margin-left:-2.505600px;}
._2_c01068{margin-left:-1.152000px;}
._1_c01068{width:1.893600px;}
._0_c01068{width:3.477600px;}
._6_c01068{width:5.428800px;}
._3_c01068{width:6.537600px;}
._5_c01068{width:7.869600px;}
.fc0_c01068{color:rgb(0,0,0);}
.fs0_c01068{font-size:54.000000px;}
.fs2_c01068{font-size:60.000000px;}
.fs1_c01068{font-size:72.000000px;}
.y0_c01068{bottom:0.000000px;}
.y2_c01068{bottom:12.000000px;}
.y7_c01068{bottom:67.500000px;}
.y5_c01068{bottom:210.000000px;}
.y4_c01068{bottom:546.000000px;}
.y3_c01068{bottom:573.000000px;}
.y1_c01068{bottom:597.000000px;}
.y6_c01068{bottom:1194.000000px;}
.h2_c01068{height:42.292969px;}
.h3_c01068{height:51.187500px;}
.h5_c01068{height:56.074219px;}
.h4_c01068{height:304.500000px;}
.h1_c01068{height:516.000000px;}
.h0_c01068{height:1263.000000px;}
.w1_c01068{width:676.500000px;}
.w0_c01068{width:892.500000px;}
.x0_c01068{left:0.000000px;}
.x2_c01068{left:84.871200px;}
.x1_c01068{left:150.000000px;}
.x3_c01068{left:228.190050px;}
.x4_c01068{left:416.782800px;}
.x5_c01068{left:801.992850px;}
@media print{
.v0_c01068{vertical-align:0.000000pt;}
.ls1_c01068{letter-spacing:0.000000pt;}
.ls0_c01068{letter-spacing:0.010667pt;}
.ls2_c01068{letter-spacing:0.019200pt;}
.ws0_c01068{word-spacing:0.000000pt;}
._4_c01068{margin-left:-2.227200pt;}
._2_c01068{margin-left:-1.024000pt;}
._1_c01068{width:1.683200pt;}
._0_c01068{width:3.091200pt;}
._6_c01068{width:4.825600pt;}
._3_c01068{width:5.811200pt;}
._5_c01068{width:6.995200pt;}
.fs0_c01068{font-size:48.000000pt;}
.fs2_c01068{font-size:53.333333pt;}
.fs1_c01068{font-size:64.000000pt;}
.y0_c01068{bottom:0.000000pt;}
.y2_c01068{bottom:10.666667pt;}
.y7_c01068{bottom:60.000000pt;}
.y5_c01068{bottom:186.666667pt;}
.y4_c01068{bottom:485.333333pt;}
.y3_c01068{bottom:509.333333pt;}
.y1_c01068{bottom:530.666667pt;}
.y6_c01068{bottom:1061.333333pt;}
.h2_c01068{height:37.593750pt;}
.h3_c01068{height:45.500000pt;}
.h5_c01068{height:49.843750pt;}
.h4_c01068{height:270.666667pt;}
.h1_c01068{height:458.666667pt;}
.h0_c01068{height:1122.666667pt;}
.w1_c01068{width:601.333333pt;}
.w0_c01068{width:793.333333pt;}
.x0_c01068{left:0.000000pt;}
.x2_c01068{left:75.441067pt;}
.x1_c01068{left:133.333333pt;}
.x3_c01068{left:202.835600pt;}
.x4_c01068{left:370.473600pt;}
.x5_c01068{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c7e14257b081deda6f0e905e.woff2')format("woff");}.ff1_c01069{font-family:ff1_c01069;line-height:0.975586;font-style:normal;font-weight:normal;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_2f0d2806b9f0504cc0e40721.woff2')format("woff");}.ff2_c01069{font-family:ff2_c01069;line-height:0.933105;font-style:normal;font-weight:normal;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_2f10d026a7e0678df77c8afa.woff2')format("woff");}.ff3_c01069{font-family:ff3_c01069;line-height:0.755859;font-style:normal;font-weight:normal;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_130e2e509c1814762a02dd41.woff2')format("woff");}.ff4_c01069{font-family:ff4_c01069;line-height:1.155762;font-style: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;}
.ls1_c01069{letter-spacing:0.000000px;}
.ls2_c01069{letter-spacing:0.012000px;}
.ls0_c01069{letter-spacing:0.021600px;}
.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;}
}
.ws0_c01069{word-spacing:-19.800000px;}
.ws1_c01069{word-spacing:0.000000px;}
._2_c01069{margin-left:-3.124800px;}
._4_c01069{margin-left:-1.260000px;}
._5_c01069{width:1.144800px;}
._0_c01069{width:2.448000px;}
._a_c01069{width:3.686400px;}
._e_c01069{width:5.004000px;}
._1_c01069{width:11.066400px;}
._6_c01069{width:12.412800px;}
._7_c01069{width:13.550400px;}
._3_c01069{width:16.682400px;}
._f_c01069{width:18.597600px;}
._c_c01069{width:21.168000px;}
._b_c01069{width:22.600800px;}
._9_c01069{width:23.644800px;}
._d_c01069{width:24.876000px;}
._8_c01069{width:26.719200px;}
.fc0_c01069{color:rgb(0,0,0);}
.fs0_c01069{font-size:54.000000px;}
.fs2_c01069{font-size:60.000000px;}
.fs1_c01069{font-size:72.000000px;}
.y0_c01069{bottom:0.000000px;}
.y2_c01069{bottom:12.000000px;}
.y9_c01069{bottom:67.500000px;}
.y7_c01069{bottom:220.500000px;}
.y6_c01069{bottom:619.500000px;}
.y5_c01069{bottom:646.500000px;}
.y4_c01069{bottom:673.500000px;}
.y3_c01069{bottom:700.500000px;}
.y1_c01069{bottom:745.500000px;}
.y8_c01069{bottom:1194.000000px;}
.h2_c01069{height:41.633789px;}
.h5_c01069{height:44.208984px;}
.h3_c01069{height:51.187500px;}
.h4_c01069{height:56.074219px;}
.h1_c01069{height:367.500000px;}
.h0_c01069{height:1263.000000px;}
.w1_c01069{width:676.500000px;}
.w0_c01069{width:892.500000px;}
.x0_c01069{left:0.000000px;}
.x2_c01069{left:46.322385px;}
.x1_c01069{left:66.000000px;}
.x3_c01069{left:243.891750px;}
@media print{
.v0_c01069{vertical-align:0.000000pt;}
.ls1_c01069{letter-spacing:0.000000pt;}
.ls2_c01069{letter-spacing:0.010667pt;}
.ls0_c01069{letter-spacing:0.019200pt;}
.ws0_c01069{word-spacing:-17.600000pt;}
.ws1_c01069{word-spacing:0.000000pt;}
._2_c01069{margin-left:-2.777600pt;}
._4_c01069{margin-left:-1.120000pt;}
._5_c01069{width:1.017600pt;}
._0_c01069{width:2.176000pt;}
._a_c01069{width:3.276800pt;}
._e_c01069{width:4.448000pt;}
._1_c01069{width:9.836800pt;}
._6_c01069{width:11.033600pt;}
._7_c01069{width:12.044800pt;}
._3_c01069{width:14.828800pt;}
._f_c01069{width:16.531200pt;}
._c_c01069{width:18.816000pt;}
._b_c01069{width:20.089600pt;}
._9_c01069{width:21.017600pt;}
._d_c01069{width:22.112000pt;}
._8_c01069{width:23.750400pt;}
.fs0_c01069{font-size:48.000000pt;}
.fs2_c01069{font-size:53.333333pt;}
.fs1_c01069{font-size:64.000000pt;}
.y0_c01069{bottom:0.000000pt;}
.y2_c01069{bottom:10.666667pt;}
.y9_c01069{bottom:60.000000pt;}
.y7_c01069{bottom:196.000000pt;}
.y6_c01069{bottom:550.666667pt;}
.y5_c01069{bottom:574.666667pt;}
.y4_c01069{bottom:598.666667pt;}
.y3_c01069{bottom:622.666667pt;}
.y1_c01069{bottom:662.666667pt;}
.y8_c01069{bottom:1061.333333pt;}
.h2_c01069{height:37.007812pt;}
.h5_c01069{height:39.296875pt;}
.h3_c01069{height:45.500000pt;}
.h4_c01069{height:49.843750pt;}
.h1_c01069{height:326.666667pt;}
.h0_c01069{height:1122.666667pt;}
.w1_c01069{width:601.333333pt;}
.w0_c01069{width:793.333333pt;}
.x0_c01069{left:0.000000pt;}
.x2_c01069{left:41.175453pt;}
.x1_c01069{left:58.666667pt;}
.x3_c01069{left:216.792667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6bcffe751b126b5ab245ec98.woff2')format("woff");}.ff1_c01070{font-family:ff1_c01070;line-height:0.933105;font-style:normal;font-weight:normal;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_cf1019c3a47d9474ea053371.woff2')format("woff");}.ff2_c01070{font-family:ff2_c01070;line-height:0.963867;font-style:normal;font-weight:normal;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_7320718fbb540615f92b422c.woff2')format("woff");}.ff3_c01070{font-family:ff3_c01070;line-height:1.155762;font-style: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;}
.ls1_c01070{letter-spacing:0.000000px;}
.ls0_c01070{letter-spacing:0.012000px;}
.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:0.000000px;}
._5_c01070{margin-left:-3.426000px;}
._1_c01070{margin-left:-2.311200px;}
._3_c01070{width:3.031200px;}
._4_c01070{width:30.103200px;}
._0_c01070{width:33.170400px;}
._2_c01070{width:35.604000px;}
.fc0_c01070{color:rgb(0,0,0);}
.fs1_c01070{font-size:54.000000px;}
.fs2_c01070{font-size:60.000000px;}
.fs0_c01070{font-size:72.000000px;}
.y0_c01070{bottom:0.000000px;}
.y4_c01070{bottom:12.000000px;}
.y6_c01070{bottom:67.500000px;}
.y3_c01070{bottom:322.500000px;}
.y2_c01070{bottom:1068.000000px;}
.y1_c01070{bottom:1095.000000px;}
.y5_c01070{bottom:1194.000000px;}
.h3_c01070{height:41.633789px;}
.h1_c01070{height:51.187500px;}
.h4_c01070{height:56.074219px;}
.h2_c01070{height:714.000000px;}
.h0_c01070{height:1263.000000px;}
.w1_c01070{width:676.500000px;}
.w0_c01070{width:892.500000px;}
.x0_c01070{left:0.000000px;}
.x1_c01070{left:150.519750px;}
.x2_c01070{left:186.506850px;}
.x3_c01070{left:416.782800px;}
.x4_c01070{left:801.992850px;}
@media print{
.v0_c01070{vertical-align:0.000000pt;}
.ls1_c01070{letter-spacing:0.000000pt;}
.ls0_c01070{letter-spacing:0.010667pt;}
.ws0_c01070{word-spacing:0.000000pt;}
._5_c01070{margin-left:-3.045333pt;}
._1_c01070{margin-left:-2.054400pt;}
._3_c01070{width:2.694400pt;}
._4_c01070{width:26.758400pt;}
._0_c01070{width:29.484800pt;}
._2_c01070{width:31.648000pt;}
.fs1_c01070{font-size:48.000000pt;}
.fs2_c01070{font-size:53.333333pt;}
.fs0_c01070{font-size:64.000000pt;}
.y0_c01070{bottom:0.000000pt;}
.y4_c01070{bottom:10.666667pt;}
.y6_c01070{bottom:60.000000pt;}
.y3_c01070{bottom:286.666667pt;}
.y2_c01070{bottom:949.333333pt;}
.y1_c01070{bottom:973.333333pt;}
.y5_c01070{bottom:1061.333333pt;}
.h3_c01070{height:37.007812pt;}
.h1_c01070{height:45.500000pt;}
.h4_c01070{height:49.843750pt;}
.h2_c01070{height:634.666667pt;}
.h0_c01070{height:1122.666667pt;}
.w1_c01070{width:601.333333pt;}
.w0_c01070{width:793.333333pt;}
.x0_c01070{left:0.000000pt;}
.x1_c01070{left:133.795333pt;}
.x2_c01070{left:165.783867pt;}
.x3_c01070{left:370.473600pt;}
.x4_c01070{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_060a0a1ff72137647d4beb30.woff2')format("woff");}.ff1_c01071{font-family:ff1_c01071;line-height:0.939453;font-style:normal;font-weight:normal;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_94c6bce8b8b99b7a7b513e59.woff2')format("woff");}.ff2_c01071{font-family:ff2_c01071;line-height:0.934082;font-style:normal;font-weight:normal;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_afc12d7514ba44d0f48f7f4f.woff2')format("woff");}.ff3_c01071{font-family:ff3_c01071;line-height:0.756836;font-style:normal;font-weight:normal;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_b0815c264f8cfc678e3149f3.woff2')format("woff");}.ff4_c01071{font-family:ff4_c01071;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01071;src:url('chunks/assets/font_4b9d1796a26221db402c01e7.woff2')format("woff");}.ff5_c01071{font-family:ff5_c01071;line-height:1.115723;font-style:normal;font-weight: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_c01071;src:url('chunks/assets/font_e49775cafbbaa23f76e675dd.woff2')format("woff");}.ff6_c01071{font-family:ff6_c01071;line-height:0.892578;font-style: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);}
.v3_c01071{vertical-align:-33.000000px;}
.v2_c01071{vertical-align:-23.086200px;}
.v0_c01071{vertical-align:0.000000px;}
.v1_c01071{vertical-align:23.086200px;}
.ls4_c01071{letter-spacing:0.000000px;}
.ls0_c01071{letter-spacing:0.007800px;}
.ls5_c01071{letter-spacing:0.012000px;}
.ls3_c01071{letter-spacing:3.999999px;}
.ls2_c01071{letter-spacing:8.947800px;}
.ls1_c01071{letter-spacing:21.087000px;}
.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:-15.000000px;}
.ws1_c01071{word-spacing:-10.000001px;}
.ws2_c01071{word-spacing:0.000000px;}
._13_c01071{margin-left:-8.899200px;}
._b_c01071{margin-left:-7.845840px;}
._14_c01071{margin-left:-5.798400px;}
._1_c01071{margin-left:-3.988800px;}
._3_c01071{margin-left:-2.260800px;}
._10_c01071{margin-left:-1.015200px;}
._7_c01071{width:1.396800px;}
._5_c01071{width:2.988000px;}
._6_c01071{width:4.478400px;}
._8_c01071{width:6.019200px;}
._0_c01071{width:7.459200px;}
._c_c01071{width:8.697600px;}
._4_c01071{width:9.748800px;}
._2_c01071{width:11.476800px;}
._11_c01071{width:13.399200px;}
._a_c01071{width:14.486400px;}
._12_c01071{width:15.753600px;}
._9_c01071{width:17.474400px;}
._d_c01071{width:31.082400px;}
._e_c01071{width:32.637600px;}
._f_c01071{width:34.552800px;}
.fc1_c01071{color:rgb(255,255,255);}
.fc0_c01071{color:rgb(0,0,0);}
.fs5_c01071{font-size:40.000002px;}
.fs2_c01071{font-size:48.000000px;}
.fs4_c01071{font-size:60.000000px;}
.fs1_c01071{font-size:72.000000px;}
.fs0_c01071{font-size:78.000000px;}
.fs3_c01071{font-size:96.000000px;}
.y0_c01071{bottom:0.000000px;}
.y12_c01071{bottom:67.500000px;}
.y16_c01071{bottom:132.000000px;}
.y15_c01071{bottom:159.750000px;}
.y14_c01071{bottom:201.000000px;}
.y13_c01071{bottom:228.750000px;}
.yf_c01071{bottom:492.000000px;}
.ye_c01071{bottom:519.000000px;}
.yd_c01071{bottom:546.000000px;}
.yc_c01071{bottom:573.000000px;}
.yb_c01071{bottom:621.000000px;}
.ya_c01071{bottom:648.000000px;}
.y9_c01071{bottom:675.000000px;}
.y8_c01071{bottom:721.500000px;}
.y7_c01071{bottom:792.000000px;}
.y6_c01071{bottom:840.000000px;}
.y5_c01071{bottom:867.000000px;}
.y4_c01071{bottom:894.000000px;}
.y3_c01071{bottom:921.000000px;}
.y2_c01071{bottom:948.000000px;}
.y1_c01071{bottom:994.500000px;}
.y10_c01071{bottom:1066.500000px;}
.y11_c01071{bottom:1194.000000px;}
.h7_c01071{height:35.878908px;}
.h6_c01071{height:44.208984px;}
.h2_c01071{height:51.257812px;}
.h8_c01071{height:53.818359px;}
.h5_c01071{height:56.074219px;}
.h1_c01071{height:56.100586px;}
.h3_c01071{height:57.258075px;}
.h4_c01071{height:68.343750px;}
.h0_c01071{height:1263.000000px;}
.w0_c01071{width:892.500000px;}
.x0_c01071{left:0.000000px;}
.x1_c01071{left:65.480310px;}
.x2_c01071{left:94.798875px;}
@media print{
.v3_c01071{vertical-align:-29.333333pt;}
.v2_c01071{vertical-align:-20.521067pt;}
.v0_c01071{vertical-align:0.000000pt;}
.v1_c01071{vertical-align:20.521067pt;}
.ls4_c01071{letter-spacing:0.000000pt;}
.ls0_c01071{letter-spacing:0.006933pt;}
.ls5_c01071{letter-spacing:0.010667pt;}
.ls3_c01071{letter-spacing:3.555555pt;}
.ls2_c01071{letter-spacing:7.953600pt;}
.ls1_c01071{letter-spacing:18.744000pt;}
.ws0_c01071{word-spacing:-13.333333pt;}
.ws1_c01071{word-spacing:-8.888889pt;}
.ws2_c01071{word-spacing:0.000000pt;}
._13_c01071{margin-left:-7.910400pt;}
._b_c01071{margin-left:-6.974080pt;}
._14_c01071{margin-left:-5.154133pt;}
._1_c01071{margin-left:-3.545600pt;}
._3_c01071{margin-left:-2.009600pt;}
._10_c01071{margin-left:-0.902400pt;}
._7_c01071{width:1.241600pt;}
._5_c01071{width:2.656000pt;}
._6_c01071{width:3.980800pt;}
._8_c01071{width:5.350400pt;}
._0_c01071{width:6.630400pt;}
._c_c01071{width:7.731200pt;}
._4_c01071{width:8.665600pt;}
._2_c01071{width:10.201600pt;}
._11_c01071{width:11.910400pt;}
._a_c01071{width:12.876800pt;}
._12_c01071{width:14.003200pt;}
._9_c01071{width:15.532800pt;}
._d_c01071{width:27.628800pt;}
._e_c01071{width:29.011200pt;}
._f_c01071{width:30.713600pt;}
.fs5_c01071{font-size:35.555557pt;}
.fs2_c01071{font-size:42.666667pt;}
.fs4_c01071{font-size:53.333333pt;}
.fs1_c01071{font-size:64.000000pt;}
.fs0_c01071{font-size:69.333333pt;}
.fs3_c01071{font-size:85.333333pt;}
.y0_c01071{bottom:0.000000pt;}
.y12_c01071{bottom:60.000000pt;}
.y16_c01071{bottom:117.333333pt;}
.y15_c01071{bottom:142.000000pt;}
.y14_c01071{bottom:178.666667pt;}
.y13_c01071{bottom:203.333333pt;}
.yf_c01071{bottom:437.333333pt;}
.ye_c01071{bottom:461.333333pt;}
.yd_c01071{bottom:485.333333pt;}
.yc_c01071{bottom:509.333333pt;}
.yb_c01071{bottom:552.000000pt;}
.ya_c01071{bottom:576.000000pt;}
.y9_c01071{bottom:600.000000pt;}
.y8_c01071{bottom:641.333333pt;}
.y7_c01071{bottom:704.000000pt;}
.y6_c01071{bottom:746.666667pt;}
.y5_c01071{bottom:770.666667pt;}
.y4_c01071{bottom:794.666667pt;}
.y3_c01071{bottom:818.666667pt;}
.y2_c01071{bottom:842.666667pt;}
.y1_c01071{bottom:884.000000pt;}
.y10_c01071{bottom:948.000000pt;}
.y11_c01071{bottom:1061.333333pt;}
.h7_c01071{height:31.892363pt;}
.h6_c01071{height:39.296875pt;}
.h2_c01071{height:45.562500pt;}
.h8_c01071{height:47.838542pt;}
.h5_c01071{height:49.843750pt;}
.h1_c01071{height:49.867188pt;}
.h3_c01071{height:50.896067pt;}
.h4_c01071{height:60.750000pt;}
.h0_c01071{height:1122.666667pt;}
.w0_c01071{width:793.333333pt;}
.x0_c01071{left:0.000000pt;}
.x1_c01071{left:58.204720pt;}
.x2_c01071{left:84.265667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8cf5640429fc50fec838810c.woff2')format("woff");}.ff1_c01072{font-family:ff1_c01072;line-height:0.975586;font-style:normal;font-weight:normal;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_a1eac6b0dc05da3cc9660ec7.woff2')format("woff");}.ff2_c01072{font-family:ff2_c01072;line-height:1.155762;font-style: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;}
.ls1_c01072{letter-spacing:0.012000px;}
.ls0_c01072{letter-spacing:0.016200px;}
.ls2_c01072{letter-spacing:0.021600px;}
.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;}
}
.ws0_c01072{word-spacing:0.000000px;}
._0_c01072{margin-left:-3.426000px;}
.fc0_c01072{color:rgb(0,0,0);}
.fs0_c01072{font-size:54.000000px;}
.fs1_c01072{font-size:60.000000px;}
.y0_c01072{bottom:0.000000px;}
.y2_c01072{bottom:12.000000px;}
.y5_c01072{bottom:67.500000px;}
.y3_c01072{bottom:217.500000px;}
.y1_c01072{bottom:640.500000px;}
.y4_c01072{bottom:1194.000000px;}
.h2_c01072{height:41.633789px;}
.h4_c01072{height:56.074219px;}
.h3_c01072{height:415.500000px;}
.h1_c01072{height:472.500000px;}
.h0_c01072{height:1263.000000px;}
.w1_c01072{width:676.500000px;}
.w0_c01072{width:892.500000px;}
.x0_c01072{left:0.000000px;}
.x1_c01072{left:150.000000px;}
.x3_c01072{left:202.772100px;}
.x2_c01072{left:260.334900px;}
.x4_c01072{left:416.782800px;}
.x5_c01072{left:801.992850px;}
@media print{
.v0_c01072{vertical-align:0.000000pt;}
.ls3_c01072{letter-spacing:0.000000pt;}
.ls1_c01072{letter-spacing:0.010667pt;}
.ls0_c01072{letter-spacing:0.014400pt;}
.ls2_c01072{letter-spacing:0.019200pt;}
.ws0_c01072{word-spacing:0.000000pt;}
._0_c01072{margin-left:-3.045333pt;}
.fs0_c01072{font-size:48.000000pt;}
.fs1_c01072{font-size:53.333333pt;}
.y0_c01072{bottom:0.000000pt;}
.y2_c01072{bottom:10.666667pt;}
.y5_c01072{bottom:60.000000pt;}
.y3_c01072{bottom:193.333333pt;}
.y1_c01072{bottom:569.333333pt;}
.y4_c01072{bottom:1061.333333pt;}
.h2_c01072{height:37.007812pt;}
.h4_c01072{height:49.843750pt;}
.h3_c01072{height:369.333333pt;}
.h1_c01072{height:420.000000pt;}
.h0_c01072{height:1122.666667pt;}
.w1_c01072{width:601.333333pt;}
.w0_c01072{width:793.333333pt;}
.x0_c01072{left:0.000000pt;}
.x1_c01072{left:133.333333pt;}
.x3_c01072{left:180.241867pt;}
.x2_c01072{left:231.408800pt;}
.x4_c01072{left:370.473600pt;}
.x5_c01072{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2a44825ebd45da1580302dcf.woff2')format("woff");}.ff1_c01073{font-family:ff1_c01073;line-height:0.976074;font-style:normal;font-weight:normal;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_147847e8ee0b7e7a7bfeff45.woff2')format("woff");}.ff2_c01073{font-family:ff2_c01073;line-height:0.755859;font-style:normal;font-weight:normal;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_195dd30a158c20087795b6ac.woff2')format("woff");}.ff3_c01073{font-family:ff3_c01073;line-height:1.155762;font-style: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;}
.ls1_c01073{letter-spacing:0.000000px;}
.ls2_c01073{letter-spacing:0.012000px;}
.ls0_c01073{letter-spacing:0.021600px;}
.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:0.000000px;}
._0_c01073{margin-left:-3.216000px;}
.fc0_c01073{color:rgb(0,0,0);}
.fs0_c01073{font-size:54.000000px;}
.fs1_c01073{font-size:60.000000px;}
.y0_c01073{bottom:0.000000px;}
.y2_c01073{bottom:12.000000px;}
.y5_c01073{bottom:67.500000px;}
.y3_c01073{bottom:228.000000px;}
.y1_c01073{bottom:673.500000px;}
.y4_c01073{bottom:1194.000000px;}
.h2_c01073{height:42.292969px;}
.h5_c01073{height:44.208984px;}
.h4_c01073{height:56.074219px;}
.h3_c01073{height:417.000000px;}
.h1_c01073{height:439.500000px;}
.h0_c01073{height:1263.000000px;}
.w1_c01073{width:676.500000px;}
.w0_c01073{width:892.500000px;}
.x0_c01073{left:0.000000px;}
.x2_c01073{left:35.208600px;}
.x1_c01073{left:66.000000px;}
.x3_c01073{left:116.478885px;}
@media print{
.v0_c01073{vertical-align:0.000000pt;}
.ls1_c01073{letter-spacing:0.000000pt;}
.ls2_c01073{letter-spacing:0.010667pt;}
.ls0_c01073{letter-spacing:0.019200pt;}
.ws0_c01073{word-spacing:0.000000pt;}
._0_c01073{margin-left:-2.858667pt;}
.fs0_c01073{font-size:48.000000pt;}
.fs1_c01073{font-size:53.333333pt;}
.y0_c01073{bottom:0.000000pt;}
.y2_c01073{bottom:10.666667pt;}
.y5_c01073{bottom:60.000000pt;}
.y3_c01073{bottom:202.666667pt;}
.y1_c01073{bottom:598.666667pt;}
.y4_c01073{bottom:1061.333333pt;}
.h2_c01073{height:37.593750pt;}
.h5_c01073{height:39.296875pt;}
.h4_c01073{height:49.843750pt;}
.h3_c01073{height:370.666667pt;}
.h1_c01073{height:390.666667pt;}
.h0_c01073{height:1122.666667pt;}
.w1_c01073{width:601.333333pt;}
.w0_c01073{width:793.333333pt;}
.x0_c01073{left:0.000000pt;}
.x2_c01073{left:31.296533pt;}
.x1_c01073{left:58.666667pt;}
.x3_c01073{left:103.536787pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_746c06f73d32c76e37433e58.woff2')format("woff");}.ff1_c01074{font-family:ff1_c01074;line-height:0.934082;font-style:normal;font-weight:normal;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_a1a98cee0217038fa6028a7b.woff2')format("woff");}.ff2_c01074{font-family:ff2_c01074;line-height:0.987793;font-style:normal;font-weight:normal;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_cb8a20d8746cb2aa9d23c166.woff2')format("woff");}.ff3_c01074{font-family:ff3_c01074;line-height:0.932129;font-style:normal;font-weight:normal;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_d271cc81fed1d1b022806795.woff2')format("woff");}.ff4_c01074{font-family:ff4_c01074;line-height:1.010254;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01074;src:url('chunks/assets/font_2e28a3d2873c8dc7c7de9715.woff2')format("woff");}.ff5_c01074{font-family:ff5_c01074;line-height:1.155762;font-style:normal;font-weight: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_c01074;src:url('chunks/assets/font_407a18dc861888b767390ed6.woff2')format("woff");}.ff6_c01074{font-family:ff6_c01074;line-height:0.904785;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01074;src:url('chunks/assets/font_24295e7768b4aef9ed1ce54b.woff2')format("woff");}.ff7_c01074{font-family:ff7_c01074;line-height:0.889648;font-style: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);}
.v3_c01074{vertical-align:-33.000000px;}
.v2_c01074{vertical-align:-23.086200px;}
.v0_c01074{vertical-align:0.000000px;}
.v1_c01074{vertical-align:23.086200px;}
.ls8_c01074{letter-spacing:-0.006000px;}
.ls5_c01074{letter-spacing:0.000000px;}
.ls7_c01074{letter-spacing:0.007200px;}
.ls3_c01074{letter-spacing:0.012000px;}
.ls1_c01074{letter-spacing:0.014400px;}
.ls6_c01074{letter-spacing:0.021600px;}
.ls2_c01074{letter-spacing:2.340000px;}
.ls0_c01074{letter-spacing:2.626200px;}
.ls4_c01074{letter-spacing:3.999999px;}
.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;}
}
.ws0_c01074{word-spacing:0.000000px;}
._9_c01074{margin-left:-10.584000px;}
._5_c01074{margin-left:-7.329600px;}
._16_c01074{margin-left:-5.306400px;}
._6_c01074{margin-left:-4.190400px;}
._2_c01074{margin-left:-2.829600px;}
._0_c01074{margin-left:-1.252800px;}
._4_c01074{width:1.144800px;}
._1_c01074{width:2.318400px;}
._3_c01074{width:3.873600px;}
._7_c01074{width:5.227200px;}
._b_c01074{width:6.285600px;}
._8_c01074{width:7.639200px;}
._a_c01074{width:9.568800px;}
._c_c01074{width:11.714400px;}
._d_c01074{width:13.672800px;}
._e_c01074{width:14.954400px;}
._f_c01074{width:16.243200px;}
._15_c01074{width:19.072800px;}
._13_c01074{width:20.203200px;}
._10_c01074{width:21.340800px;}
._14_c01074{width:22.543200px;}
._11_c01074{width:24.120000px;}
._12_c01074{width:25.452000px;}
._18_c01074{width:28.238400px;}
._19_c01074{width:30.024000px;}
._17_c01074{width:31.226400px;}
._1b_c01074{width:33.148800px;}
._1d_c01074{width:35.172000px;}
._1c_c01074{width:36.662400px;}
._1a_c01074{width:37.778400px;}
.fc0_c01074{color:rgb(0,0,0);}
.fs4_c01074{font-size:40.000002px;}
.fs2_c01074{font-size:48.000000px;}
.fs1_c01074{font-size:54.000000px;}
.fs3_c01074{font-size:60.000000px;}
.fs0_c01074{font-size:72.000000px;}
.y0_c01074{bottom:0.000000px;}
.y5_c01074{bottom:12.000000px;}
.y15_c01074{bottom:67.500000px;}
.y17_c01074{bottom:132.000000px;}
.y16_c01074{bottom:159.750000px;}
.y13_c01074{bottom:205.500000px;}
.y12_c01074{bottom:226.500000px;}
.y11_c01074{bottom:247.500000px;}
.y10_c01074{bottom:268.500000px;}
.yf_c01074{bottom:289.500000px;}
.ye_c01074{bottom:310.500000px;}
.yd_c01074{bottom:331.500000px;}
.yc_c01074{bottom:375.000000px;}
.yb_c01074{bottom:397.500000px;}
.ya_c01074{bottom:441.000000px;}
.y9_c01074{bottom:468.000000px;}
.y8_c01074{bottom:516.000000px;}
.y7_c01074{bottom:564.000000px;}
.y6_c01074{bottom:660.000000px;}
.y4_c01074{bottom:705.000000px;}
.y3_c01074{bottom:1041.000000px;}
.y2_c01074{bottom:1068.000000px;}
.y1_c01074{bottom:1095.000000px;}
.y14_c01074{bottom:1194.000000px;}
.h8_c01074{height:27.480470px;}
.h9_c01074{height:41.220703px;}
.h3_c01074{height:42.292969px;}
.h5_c01074{height:42.714844px;}
.h1_c01074{height:51.257812px;}
.h6_c01074{height:52.417969px;}
.h7_c01074{height:56.074219px;}
.h4_c01074{height:57.258075px;}
.h2_c01074{height:304.500000px;}
.h0_c01074{height:1263.000000px;}
.w1_c01074{width:676.500000px;}
.w0_c01074{width:892.500000px;}
.x0_c01074{left:0.000000px;}
.x2_c01074{left:147.984345px;}
.x1_c01074{left:150.519750px;}
.x3_c01074{left:416.782800px;}
.x4_c01074{left:801.992850px;}
@media print{
.v3_c01074{vertical-align:-29.333333pt;}
.v2_c01074{vertical-align:-20.521067pt;}
.v0_c01074{vertical-align:0.000000pt;}
.v1_c01074{vertical-align:20.521067pt;}
.ls8_c01074{letter-spacing:-0.005333pt;}
.ls5_c01074{letter-spacing:0.000000pt;}
.ls7_c01074{letter-spacing:0.006400pt;}
.ls3_c01074{letter-spacing:0.010667pt;}
.ls1_c01074{letter-spacing:0.012800pt;}
.ls6_c01074{letter-spacing:0.019200pt;}
.ls2_c01074{letter-spacing:2.080000pt;}
.ls0_c01074{letter-spacing:2.334400pt;}
.ls4_c01074{letter-spacing:3.555555pt;}
.ws0_c01074{word-spacing:0.000000pt;}
._9_c01074{margin-left:-9.408000pt;}
._5_c01074{margin-left:-6.515200pt;}
._16_c01074{margin-left:-4.716800pt;}
._6_c01074{margin-left:-3.724800pt;}
._2_c01074{margin-left:-2.515200pt;}
._0_c01074{margin-left:-1.113600pt;}
._4_c01074{width:1.017600pt;}
._1_c01074{width:2.060800pt;}
._3_c01074{width:3.443200pt;}
._7_c01074{width:4.646400pt;}
._b_c01074{width:5.587200pt;}
._8_c01074{width:6.790400pt;}
._a_c01074{width:8.505600pt;}
._c_c01074{width:10.412800pt;}
._d_c01074{width:12.153600pt;}
._e_c01074{width:13.292800pt;}
._f_c01074{width:14.438400pt;}
._15_c01074{width:16.953600pt;}
._13_c01074{width:17.958400pt;}
._10_c01074{width:18.969600pt;}
._14_c01074{width:20.038400pt;}
._11_c01074{width:21.440000pt;}
._12_c01074{width:22.624000pt;}
._18_c01074{width:25.100800pt;}
._19_c01074{width:26.688000pt;}
._17_c01074{width:27.756800pt;}
._1b_c01074{width:29.465600pt;}
._1d_c01074{width:31.264000pt;}
._1c_c01074{width:32.588800pt;}
._1a_c01074{width:33.580800pt;}
.fs4_c01074{font-size:35.555557pt;}
.fs2_c01074{font-size:42.666667pt;}
.fs1_c01074{font-size:48.000000pt;}
.fs3_c01074{font-size:53.333333pt;}
.fs0_c01074{font-size:64.000000pt;}
.y0_c01074{bottom:0.000000pt;}
.y5_c01074{bottom:10.666667pt;}
.y15_c01074{bottom:60.000000pt;}
.y17_c01074{bottom:117.333333pt;}
.y16_c01074{bottom:142.000000pt;}
.y13_c01074{bottom:182.666667pt;}
.y12_c01074{bottom:201.333333pt;}
.y11_c01074{bottom:220.000000pt;}
.y10_c01074{bottom:238.666667pt;}
.yf_c01074{bottom:257.333333pt;}
.ye_c01074{bottom:276.000000pt;}
.yd_c01074{bottom:294.666667pt;}
.yc_c01074{bottom:333.333333pt;}
.yb_c01074{bottom:353.333333pt;}
.ya_c01074{bottom:392.000000pt;}
.y9_c01074{bottom:416.000000pt;}
.y8_c01074{bottom:458.666667pt;}
.y7_c01074{bottom:501.333333pt;}
.y6_c01074{bottom:586.666667pt;}
.y4_c01074{bottom:626.666667pt;}
.y3_c01074{bottom:925.333333pt;}
.y2_c01074{bottom:949.333333pt;}
.y1_c01074{bottom:973.333333pt;}
.y14_c01074{bottom:1061.333333pt;}
.h8_c01074{height:24.427085pt;}
.h9_c01074{height:36.640625pt;}
.h3_c01074{height:37.593750pt;}
.h5_c01074{height:37.968750pt;}
.h1_c01074{height:45.562500pt;}
.h6_c01074{height:46.593750pt;}
.h7_c01074{height:49.843750pt;}
.h4_c01074{height:50.896067pt;}
.h2_c01074{height:270.666667pt;}
.h0_c01074{height:1122.666667pt;}
.w1_c01074{width:601.333333pt;}
.w0_c01074{width:793.333333pt;}
.x0_c01074{left:0.000000pt;}
.x2_c01074{left:131.541640pt;}
.x1_c01074{left:133.795333pt;}
.x3_c01074{left:370.473600pt;}
.x4_c01074{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bc4e1e1339d372e1931bd5be.woff2')format("woff");}.ff1_c01075{font-family:ff1_c01075;line-height:1.010254;font-style:normal;font-weight:normal;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_83973ad8151e27abb390fd8a.woff2')format("woff");}.ff2_c01075{font-family:ff2_c01075;line-height:0.755859;font-style:normal;font-weight:normal;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_50e20de1f60d0a3ec7aec72c.woff2')format("woff");}.ff3_c01075{font-family:ff3_c01075;line-height:1.155762;font-style: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;}
.ls0_c01075{letter-spacing:0.000000px;}
.ls1_c01075{letter-spacing:0.012000px;}
.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;}
}
.ws0_c01075{word-spacing:0.000000px;}
._3_c01075{margin-left:-6.624000px;}
._4_c01075{margin-left:-5.083200px;}
._f_c01075{margin-left:-3.664800px;}
._6_c01075{margin-left:-2.599200px;}
._0_c01075{margin-left:-1.296000px;}
._1_c01075{width:1.332000px;}
._2_c01075{width:2.491200px;}
._d_c01075{width:3.600000px;}
._7_c01075{width:5.184000px;}
._b_c01075{width:6.184800px;}
._5_c01075{width:7.675200px;}
._c_c01075{width:8.791200px;}
._e_c01075{width:10.598400px;}
._a_c01075{width:12.549600px;}
._10_c01075{width:13.564800px;}
._9_c01075{width:15.213600px;}
._11_c01075{width:16.941600px;}
._12_c01075{width:19.576800px;}
._8_c01075{width:21.189600px;}
._13_c01075{width:22.204800px;}
._14_c01075{width:23.709600px;}
._16_c01075{width:25.257600px;}
._15_c01075{width:26.798400px;}
._1c_c01075{width:28.029600px;}
._17_c01075{width:29.440800px;}
._19_c01075{width:31.420800px;}
._1b_c01075{width:32.788800px;}
._18_c01075{width:35.884800px;}
._1a_c01075{width:38.167200px;}
.fc0_c01075{color:rgb(0,0,0);}
.fs1_c01075{font-size:60.000000px;}
.fs0_c01075{font-size:72.000000px;}
.y0_c01075{bottom:0.000000px;}
.y2e_c01075{bottom:67.500000px;}
.y2c_c01075{bottom:151.500000px;}
.y2b_c01075{bottom:172.500000px;}
.y2a_c01075{bottom:193.500000px;}
.y29_c01075{bottom:214.500000px;}
.y28_c01075{bottom:235.500000px;}
.y27_c01075{bottom:256.500000px;}
.y26_c01075{bottom:277.500000px;}
.y25_c01075{bottom:298.500000px;}
.y24_c01075{bottom:340.500000px;}
.y23_c01075{bottom:361.500000px;}
.y22_c01075{bottom:382.500000px;}
.y21_c01075{bottom:403.500000px;}
.y20_c01075{bottom:424.500000px;}
.y1f_c01075{bottom:445.500000px;}
.y1e_c01075{bottom:466.500000px;}
.y1d_c01075{bottom:487.500000px;}
.y1c_c01075{bottom:508.500000px;}
.y1b_c01075{bottom:529.500000px;}
.y1a_c01075{bottom:550.500000px;}
.y19_c01075{bottom:571.500000px;}
.y18_c01075{bottom:592.500000px;}
.y17_c01075{bottom:613.500000px;}
.y16_c01075{bottom:634.500000px;}
.y15_c01075{bottom:655.500000px;}
.y14_c01075{bottom:676.500000px;}
.y13_c01075{bottom:697.500000px;}
.y12_c01075{bottom:718.500000px;}
.y11_c01075{bottom:739.500000px;}
.y10_c01075{bottom:760.500000px;}
.yf_c01075{bottom:781.500000px;}
.ye_c01075{bottom:823.500000px;}
.yd_c01075{bottom:844.500000px;}
.yc_c01075{bottom:865.500000px;}
.yb_c01075{bottom:886.500000px;}
.ya_c01075{bottom:907.500000px;}
.y9_c01075{bottom:928.500000px;}
.y8_c01075{bottom:949.500000px;}
.y7_c01075{bottom:970.500000px;}
.y6_c01075{bottom:991.500000px;}
.y5_c01075{bottom:1012.500000px;}
.y4_c01075{bottom:1033.500000px;}
.y3_c01075{bottom:1054.500000px;}
.y2_c01075{bottom:1075.500000px;}
.y1_c01075{bottom:1096.500000px;}
.y2d_c01075{bottom:1194.000000px;}
.h3_c01075{height:44.208984px;}
.h1_c01075{height:52.417969px;}
.h2_c01075{height:56.074219px;}
.h0_c01075{height:1263.000000px;}
.w0_c01075{width:892.500000px;}
.x0_c01075{left:0.000000px;}
.x1_c01075{left:65.480310px;}
@media print{
.v0_c01075{vertical-align:0.000000pt;}
.ls0_c01075{letter-spacing:0.000000pt;}
.ls1_c01075{letter-spacing:0.010667pt;}
.ws0_c01075{word-spacing:0.000000pt;}
._3_c01075{margin-left:-5.888000pt;}
._4_c01075{margin-left:-4.518400pt;}
._f_c01075{margin-left:-3.257600pt;}
._6_c01075{margin-left:-2.310400pt;}
._0_c01075{margin-left:-1.152000pt;}
._1_c01075{width:1.184000pt;}
._2_c01075{width:2.214400pt;}
._d_c01075{width:3.200000pt;}
._7_c01075{width:4.608000pt;}
._b_c01075{width:5.497600pt;}
._5_c01075{width:6.822400pt;}
._c_c01075{width:7.814400pt;}
._e_c01075{width:9.420800pt;}
._a_c01075{width:11.155200pt;}
._10_c01075{width:12.057600pt;}
._9_c01075{width:13.523200pt;}
._11_c01075{width:15.059200pt;}
._12_c01075{width:17.401600pt;}
._8_c01075{width:18.835200pt;}
._13_c01075{width:19.737600pt;}
._14_c01075{width:21.075200pt;}
._16_c01075{width:22.451200pt;}
._15_c01075{width:23.820800pt;}
._1c_c01075{width:24.915200pt;}
._17_c01075{width:26.169600pt;}
._19_c01075{width:27.929600pt;}
._1b_c01075{width:29.145600pt;}
._18_c01075{width:31.897600pt;}
._1a_c01075{width:33.926400pt;}
.fs1_c01075{font-size:53.333333pt;}
.fs0_c01075{font-size:64.000000pt;}
.y0_c01075{bottom:0.000000pt;}
.y2e_c01075{bottom:60.000000pt;}
.y2c_c01075{bottom:134.666667pt;}
.y2b_c01075{bottom:153.333333pt;}
.y2a_c01075{bottom:172.000000pt;}
.y29_c01075{bottom:190.666667pt;}
.y28_c01075{bottom:209.333333pt;}
.y27_c01075{bottom:228.000000pt;}
.y26_c01075{bottom:246.666667pt;}
.y25_c01075{bottom:265.333333pt;}
.y24_c01075{bottom:302.666667pt;}
.y23_c01075{bottom:321.333333pt;}
.y22_c01075{bottom:340.000000pt;}
.y21_c01075{bottom:358.666667pt;}
.y20_c01075{bottom:377.333333pt;}
.y1f_c01075{bottom:396.000000pt;}
.y1e_c01075{bottom:414.666667pt;}
.y1d_c01075{bottom:433.333333pt;}
.y1c_c01075{bottom:452.000000pt;}
.y1b_c01075{bottom:470.666667pt;}
.y1a_c01075{bottom:489.333333pt;}
.y19_c01075{bottom:508.000000pt;}
.y18_c01075{bottom:526.666667pt;}
.y17_c01075{bottom:545.333333pt;}
.y16_c01075{bottom:564.000000pt;}
.y15_c01075{bottom:582.666667pt;}
.y14_c01075{bottom:601.333333pt;}
.y13_c01075{bottom:620.000000pt;}
.y12_c01075{bottom:638.666667pt;}
.y11_c01075{bottom:657.333333pt;}
.y10_c01075{bottom:676.000000pt;}
.yf_c01075{bottom:694.666667pt;}
.ye_c01075{bottom:732.000000pt;}
.yd_c01075{bottom:750.666667pt;}
.yc_c01075{bottom:769.333333pt;}
.yb_c01075{bottom:788.000000pt;}
.ya_c01075{bottom:806.666667pt;}
.y9_c01075{bottom:825.333333pt;}
.y8_c01075{bottom:844.000000pt;}
.y7_c01075{bottom:862.666667pt;}
.y6_c01075{bottom:881.333333pt;}
.y5_c01075{bottom:900.000000pt;}
.y4_c01075{bottom:918.666667pt;}
.y3_c01075{bottom:937.333333pt;}
.y2_c01075{bottom:956.000000pt;}
.y1_c01075{bottom:974.666667pt;}
.y2d_c01075{bottom:1061.333333pt;}
.h3_c01075{height:39.296875pt;}
.h1_c01075{height:46.593750pt;}
.h2_c01075{height:49.843750pt;}
.h0_c01075{height:1122.666667pt;}
.w0_c01075{width:793.333333pt;}
.x0_c01075{left:0.000000pt;}
.x1_c01075{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3d3813032b2f4fa00d860a57.woff2')format("woff");}.ff1_c01076{font-family:ff1_c01076;line-height:1.010254;font-style:normal;font-weight:normal;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_f51d342d216264a6455cc124.woff2')format("woff");}.ff2_c01076{font-family:ff2_c01076;line-height:1.155762;font-style: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;}
.ls2_c01076{letter-spacing:0.000000px;}
.ls1_c01076{letter-spacing:0.012000px;}
.ls0_c01076{letter-spacing:0.381600px;}
.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:-18.000000px;}
.ws1_c01076{word-spacing:0.000000px;}
._1e_c01076{margin-left:-10.036800px;}
._1d_c01076{margin-left:-8.726400px;}
._1a_c01076{margin-left:-6.717600px;}
._1c_c01076{margin-left:-5.392800px;}
._9_c01076{margin-left:-4.255200px;}
._6_c01076{margin-left:-2.296800px;}
._5_c01076{margin-left:-1.216800px;}
._0_c01076{width:1.512000px;}
._2_c01076{width:3.016800px;}
._e_c01076{width:4.975200px;}
._3_c01076{width:6.487200px;}
._1_c01076{width:8.020800px;}
._4_c01076{width:9.475200px;}
._8_c01076{width:10.483200px;}
._7_c01076{width:11.836800px;}
._f_c01076{width:12.844800px;}
._b_c01076{width:13.932000px;}
._d_c01076{width:15.098400px;}
._a_c01076{width:16.401600px;}
._c_c01076{width:19.389600px;}
._10_c01076{width:21.571200px;}
._17_c01076{width:23.544000px;}
._19_c01076{width:24.544800px;}
._18_c01076{width:25.898400px;}
._1b_c01076{width:27.100800px;}
._15_c01076{width:30.448800px;}
._16_c01076{width:32.479200px;}
._14_c01076{width:33.912000px;}
._12_c01076{width:35.424000px;}
._13_c01076{width:37.720800px;}
._11_c01076{width:39.679200px;}
.fc0_c01076{color:rgb(0,0,0);}
.fs1_c01076{font-size:60.000000px;}
.fs0_c01076{font-size:72.000000px;}
.y0_c01076{bottom:0.000000px;}
.y23_c01076{bottom:67.500000px;}
.y21_c01076{bottom:319.500000px;}
.y20_c01076{bottom:340.500000px;}
.y1f_c01076{bottom:382.500000px;}
.y1e_c01076{bottom:403.500000px;}
.y1d_c01076{bottom:424.500000px;}
.y1c_c01076{bottom:445.500000px;}
.y1b_c01076{bottom:466.500000px;}
.y1a_c01076{bottom:487.500000px;}
.y19_c01076{bottom:529.500000px;}
.y18_c01076{bottom:550.500000px;}
.y17_c01076{bottom:592.500000px;}
.y16_c01076{bottom:613.500000px;}
.y15_c01076{bottom:634.500000px;}
.y14_c01076{bottom:655.500000px;}
.y13_c01076{bottom:676.500000px;}
.y12_c01076{bottom:697.500000px;}
.y11_c01076{bottom:718.500000px;}
.y10_c01076{bottom:739.500000px;}
.yf_c01076{bottom:760.500000px;}
.ye_c01076{bottom:781.500000px;}
.yd_c01076{bottom:802.500000px;}
.yc_c01076{bottom:844.500000px;}
.yb_c01076{bottom:865.500000px;}
.ya_c01076{bottom:886.500000px;}
.y9_c01076{bottom:907.500000px;}
.y8_c01076{bottom:928.500000px;}
.y7_c01076{bottom:949.500000px;}
.y6_c01076{bottom:970.500000px;}
.y5_c01076{bottom:991.500000px;}
.y4_c01076{bottom:1012.500000px;}
.y3_c01076{bottom:1054.500000px;}
.y2_c01076{bottom:1075.500000px;}
.y1_c01076{bottom:1096.500000px;}
.y22_c01076{bottom:1194.000000px;}
.h1_c01076{height:52.417969px;}
.h2_c01076{height:56.074219px;}
.h0_c01076{height:1263.000000px;}
.w0_c01076{width:892.500000px;}
.x0_c01076{left:0.000000px;}
.x1_c01076{left:150.519750px;}
.x2_c01076{left:416.782800px;}
.x3_c01076{left:801.992850px;}
@media print{
.v0_c01076{vertical-align:0.000000pt;}
.ls2_c01076{letter-spacing:0.000000pt;}
.ls1_c01076{letter-spacing:0.010667pt;}
.ls0_c01076{letter-spacing:0.339200pt;}
.ws0_c01076{word-spacing:-16.000000pt;}
.ws1_c01076{word-spacing:0.000000pt;}
._1e_c01076{margin-left:-8.921600pt;}
._1d_c01076{margin-left:-7.756800pt;}
._1a_c01076{margin-left:-5.971200pt;}
._1c_c01076{margin-left:-4.793600pt;}
._9_c01076{margin-left:-3.782400pt;}
._6_c01076{margin-left:-2.041600pt;}
._5_c01076{margin-left:-1.081600pt;}
._0_c01076{width:1.344000pt;}
._2_c01076{width:2.681600pt;}
._e_c01076{width:4.422400pt;}
._3_c01076{width:5.766400pt;}
._1_c01076{width:7.129600pt;}
._4_c01076{width:8.422400pt;}
._8_c01076{width:9.318400pt;}
._7_c01076{width:10.521600pt;}
._f_c01076{width:11.417600pt;}
._b_c01076{width:12.384000pt;}
._d_c01076{width:13.420800pt;}
._a_c01076{width:14.579200pt;}
._c_c01076{width:17.235200pt;}
._10_c01076{width:19.174400pt;}
._17_c01076{width:20.928000pt;}
._19_c01076{width:21.817600pt;}
._18_c01076{width:23.020800pt;}
._1b_c01076{width:24.089600pt;}
._15_c01076{width:27.065600pt;}
._16_c01076{width:28.870400pt;}
._14_c01076{width:30.144000pt;}
._12_c01076{width:31.488000pt;}
._13_c01076{width:33.529600pt;}
._11_c01076{width:35.270400pt;}
.fs1_c01076{font-size:53.333333pt;}
.fs0_c01076{font-size:64.000000pt;}
.y0_c01076{bottom:0.000000pt;}
.y23_c01076{bottom:60.000000pt;}
.y21_c01076{bottom:284.000000pt;}
.y20_c01076{bottom:302.666667pt;}
.y1f_c01076{bottom:340.000000pt;}
.y1e_c01076{bottom:358.666667pt;}
.y1d_c01076{bottom:377.333333pt;}
.y1c_c01076{bottom:396.000000pt;}
.y1b_c01076{bottom:414.666667pt;}
.y1a_c01076{bottom:433.333333pt;}
.y19_c01076{bottom:470.666667pt;}
.y18_c01076{bottom:489.333333pt;}
.y17_c01076{bottom:526.666667pt;}
.y16_c01076{bottom:545.333333pt;}
.y15_c01076{bottom:564.000000pt;}
.y14_c01076{bottom:582.666667pt;}
.y13_c01076{bottom:601.333333pt;}
.y12_c01076{bottom:620.000000pt;}
.y11_c01076{bottom:638.666667pt;}
.y10_c01076{bottom:657.333333pt;}
.yf_c01076{bottom:676.000000pt;}
.ye_c01076{bottom:694.666667pt;}
.yd_c01076{bottom:713.333333pt;}
.yc_c01076{bottom:750.666667pt;}
.yb_c01076{bottom:769.333333pt;}
.ya_c01076{bottom:788.000000pt;}
.y9_c01076{bottom:806.666667pt;}
.y8_c01076{bottom:825.333333pt;}
.y7_c01076{bottom:844.000000pt;}
.y6_c01076{bottom:862.666667pt;}
.y5_c01076{bottom:881.333333pt;}
.y4_c01076{bottom:900.000000pt;}
.y3_c01076{bottom:937.333333pt;}
.y2_c01076{bottom:956.000000pt;}
.y1_c01076{bottom:974.666667pt;}
.y22_c01076{bottom:1061.333333pt;}
.h1_c01076{height:46.593750pt;}
.h2_c01076{height:49.843750pt;}
.h0_c01076{height:1122.666667pt;}
.w0_c01076{width:793.333333pt;}
.x0_c01076{left:0.000000pt;}
.x1_c01076{left:133.795333pt;}
.x2_c01076{left:370.473600pt;}
.x3_c01076{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_65e3a4872e53c869670d91f8.woff2')format("woff");}.ff1_c01077{font-family:ff1_c01077;line-height:0.939453;font-style:normal;font-weight:normal;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_b9418b098a82c253a50c889f.woff2')format("woff");}.ff2_c01077{font-family:ff2_c01077;line-height:0.934082;font-style:normal;font-weight:normal;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_07836d291a69e31c370170d4.woff2')format("woff");}.ff3_c01077{font-family:ff3_c01077;line-height:0.888672;font-style:normal;font-weight:normal;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_962191f0b8989af9ae187cf3.woff2')format("woff");}.ff4_c01077{font-family:ff4_c01077;line-height:0.755859;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01077;src:url('chunks/assets/font_9c331043bebccc7daa56c0e7.woff2')format("woff");}.ff5_c01077{font-family:ff5_c01077;line-height:1.155762;font-style:normal;font-weight: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_c01077;src:url('chunks/assets/font_5693a5a8c7dca9adc07eb9a6.woff2')format("woff");}.ff6_c01077{font-family:ff6_c01077;line-height:1.115723;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01077;src:url('chunks/assets/font_a224833cae8a3845119f2114.woff2')format("woff");}.ff7_c01077{font-family:ff7_c01077;line-height:0.892578;font-style: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);}
.v3_c01077{vertical-align:-33.000000px;}
.v2_c01077{vertical-align:-23.086200px;}
.v0_c01077{vertical-align:0.000000px;}
.v1_c01077{vertical-align:23.086200px;}
.ls5_c01077{letter-spacing:-0.374400px;}
.ls4_c01077{letter-spacing:0.000000px;}
.ls0_c01077{letter-spacing:0.007800px;}
.ls6_c01077{letter-spacing:0.012000px;}
.ls2_c01077{letter-spacing:0.856800px;}
.ls3_c01077{letter-spacing:1.114800px;}
.ls1_c01077{letter-spacing:1.817640px;}
.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;}
}
.ws2_c01077{word-spacing:-15.000000px;}
.ws1_c01077{word-spacing:-10.000001px;}
.ws0_c01077{word-spacing:-0.072000px;}
.ws3_c01077{word-spacing:0.000000px;}
._6_c01077{margin-left:-11.239200px;}
._11_c01077{margin-left:-9.936000px;}
._13_c01077{margin-left:-7.501041px;}
._9_c01077{margin-left:-4.960800px;}
._5_c01077{margin-left:-3.924000px;}
._7_c01077{margin-left:-2.916000px;}
._3_c01077{margin-left:-1.764000px;}
._8_c01077{width:1.008000px;}
._0_c01077{width:2.325600px;}
._1_c01077{width:3.873600px;}
._f_c01077{width:5.162400px;}
._2_c01077{width:6.264000px;}
._4_c01077{width:7.970400px;}
._a_c01077{width:9.021600px;}
._c_c01077{width:10.900800px;}
._b_c01077{width:12.441600px;}
._10_c01077{width:14.241600px;}
._d_c01077{width:16.380000px;}
._e_c01077{width:17.661600px;}
._12_c01077{width:21.621600px;}
.fc1_c01077{color:rgb(255,255,255);}
.fc0_c01077{color:rgb(0,0,0);}
.fs5_c01077{font-size:40.000002px;}
.fs2_c01077{font-size:48.000000px;}
.fs4_c01077{font-size:60.000000px;}
.fs1_c01077{font-size:72.000000px;}
.fs0_c01077{font-size:78.000000px;}
.fs3_c01077{font-size:96.000000px;}
.y0_c01077{bottom:0.000000px;}
.y14_c01077{bottom:67.500000px;}
.y1a_c01077{bottom:132.000000px;}
.y19_c01077{bottom:159.750000px;}
.y18_c01077{bottom:201.000000px;}
.y17_c01077{bottom:228.750000px;}
.y16_c01077{bottom:270.000000px;}
.y15_c01077{bottom:297.750000px;}
.y11_c01077{bottom:409.500000px;}
.y10_c01077{bottom:436.500000px;}
.yf_c01077{bottom:463.500000px;}
.ye_c01077{bottom:490.500000px;}
.yd_c01077{bottom:517.500000px;}
.yc_c01077{bottom:544.500000px;}
.yb_c01077{bottom:591.000000px;}
.ya_c01077{bottom:661.500000px;}
.y9_c01077{bottom:709.500000px;}
.y8_c01077{bottom:736.500000px;}
.y7_c01077{bottom:784.500000px;}
.y6_c01077{bottom:811.500000px;}
.y5_c01077{bottom:838.500000px;}
.y4_c01077{bottom:886.500000px;}
.y3_c01077{bottom:913.500000px;}
.y2_c01077{bottom:940.500000px;}
.y1_c01077{bottom:987.000000px;}
.y12_c01077{bottom:1066.500000px;}
.y13_c01077{bottom:1194.000000px;}
.h7_c01077{height:35.878908px;}
.h6_c01077{height:44.208984px;}
.h2_c01077{height:51.257812px;}
.h8_c01077{height:53.818359px;}
.h5_c01077{height:56.074219px;}
.h1_c01077{height:56.100586px;}
.h3_c01077{height:57.258075px;}
.h4_c01077{height:68.343750px;}
.h0_c01077{height:1263.000000px;}
.w0_c01077{width:892.500000px;}
.x0_c01077{left:0.000000px;}
.x1_c01077{left:65.480310px;}
.x2_c01077{left:94.798875px;}
@media print{
.v3_c01077{vertical-align:-29.333333pt;}
.v2_c01077{vertical-align:-20.521067pt;}
.v0_c01077{vertical-align:0.000000pt;}
.v1_c01077{vertical-align:20.521067pt;}
.ls5_c01077{letter-spacing:-0.332800pt;}
.ls4_c01077{letter-spacing:0.000000pt;}
.ls0_c01077{letter-spacing:0.006933pt;}
.ls6_c01077{letter-spacing:0.010667pt;}
.ls2_c01077{letter-spacing:0.761600pt;}
.ls3_c01077{letter-spacing:0.990933pt;}
.ls1_c01077{letter-spacing:1.615680pt;}
.ws2_c01077{word-spacing:-13.333333pt;}
.ws1_c01077{word-spacing:-8.888889pt;}
.ws0_c01077{word-spacing:-0.064000pt;}
.ws3_c01077{word-spacing:0.000000pt;}
._6_c01077{margin-left:-9.990400pt;}
._11_c01077{margin-left:-8.832000pt;}
._13_c01077{margin-left:-6.667592pt;}
._9_c01077{margin-left:-4.409600pt;}
._5_c01077{margin-left:-3.488000pt;}
._7_c01077{margin-left:-2.592000pt;}
._3_c01077{margin-left:-1.568000pt;}
._8_c01077{width:0.896000pt;}
._0_c01077{width:2.067200pt;}
._1_c01077{width:3.443200pt;}
._f_c01077{width:4.588800pt;}
._2_c01077{width:5.568000pt;}
._4_c01077{width:7.084800pt;}
._a_c01077{width:8.019200pt;}
._c_c01077{width:9.689600pt;}
._b_c01077{width:11.059200pt;}
._10_c01077{width:12.659200pt;}
._d_c01077{width:14.560000pt;}
._e_c01077{width:15.699200pt;}
._12_c01077{width:19.219200pt;}
.fs5_c01077{font-size:35.555557pt;}
.fs2_c01077{font-size:42.666667pt;}
.fs4_c01077{font-size:53.333333pt;}
.fs1_c01077{font-size:64.000000pt;}
.fs0_c01077{font-size:69.333333pt;}
.fs3_c01077{font-size:85.333333pt;}
.y0_c01077{bottom:0.000000pt;}
.y14_c01077{bottom:60.000000pt;}
.y1a_c01077{bottom:117.333333pt;}
.y19_c01077{bottom:142.000000pt;}
.y18_c01077{bottom:178.666667pt;}
.y17_c01077{bottom:203.333333pt;}
.y16_c01077{bottom:240.000000pt;}
.y15_c01077{bottom:264.666667pt;}
.y11_c01077{bottom:364.000000pt;}
.y10_c01077{bottom:388.000000pt;}
.yf_c01077{bottom:412.000000pt;}
.ye_c01077{bottom:436.000000pt;}
.yd_c01077{bottom:460.000000pt;}
.yc_c01077{bottom:484.000000pt;}
.yb_c01077{bottom:525.333333pt;}
.ya_c01077{bottom:588.000000pt;}
.y9_c01077{bottom:630.666667pt;}
.y8_c01077{bottom:654.666667pt;}
.y7_c01077{bottom:697.333333pt;}
.y6_c01077{bottom:721.333333pt;}
.y5_c01077{bottom:745.333333pt;}
.y4_c01077{bottom:788.000000pt;}
.y3_c01077{bottom:812.000000pt;}
.y2_c01077{bottom:836.000000pt;}
.y1_c01077{bottom:877.333333pt;}
.y12_c01077{bottom:948.000000pt;}
.y13_c01077{bottom:1061.333333pt;}
.h7_c01077{height:31.892363pt;}
.h6_c01077{height:39.296875pt;}
.h2_c01077{height:45.562500pt;}
.h8_c01077{height:47.838542pt;}
.h5_c01077{height:49.843750pt;}
.h1_c01077{height:49.867188pt;}
.h3_c01077{height:50.896067pt;}
.h4_c01077{height:60.750000pt;}
.h0_c01077{height:1122.666667pt;}
.w0_c01077{width:793.333333pt;}
.x0_c01077{left:0.000000pt;}
.x1_c01077{left:58.204720pt;}
.x2_c01077{left:84.265667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_946a87098be43c23c8736189.woff2')format("woff");}.ff1_c01078{font-family:ff1_c01078;line-height:0.933105;font-style:normal;font-weight:normal;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_0e9cc2868ed3fa1a723a3327.woff2')format("woff");}.ff2_c01078{font-family:ff2_c01078;line-height:0.976074;font-style:normal;font-weight:normal;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_dd04ed35c26ec7f582abf21d.woff2')format("woff");}.ff3_c01078{font-family:ff3_c01078;line-height:1.155762;font-style: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;}
.ls2_c01078{letter-spacing:0.000000px;}
.ls1_c01078{letter-spacing:0.012000px;}
.ls0_c01078{letter-spacing:0.021600px;}
.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;}
}
.ws0_c01078{word-spacing:0.000000px;}
._9_c01078{margin-left:-7.192800px;}
._0_c01078{margin-left:-3.168000px;}
._7_c01078{margin-left:-1.584000px;}
._2_c01078{width:1.468800px;}
._5_c01078{width:2.836800px;}
._b_c01078{width:4.003200px;}
._a_c01078{width:6.206400px;}
._6_c01078{width:8.532000px;}
._3_c01078{width:9.892800px;}
._4_c01078{width:11.368800px;}
._8_c01078{width:12.895200px;}
._1_c01078{width:14.522400px;}
._c_c01078{width:15.616800px;}
._d_c01078{width:17.712000px;}
.fc0_c01078{color:rgb(0,0,0);}
.fs1_c01078{font-size:54.000000px;}
.fs2_c01078{font-size:60.000000px;}
.fs0_c01078{font-size:72.000000px;}
.y0_c01078{bottom:0.000000px;}
.y7_c01078{bottom:12.000000px;}
.ya_c01078{bottom:67.500000px;}
.y8_c01078{bottom:135.000000px;}
.y6_c01078{bottom:511.500000px;}
.y5_c01078{bottom:987.000000px;}
.y4_c01078{bottom:1014.000000px;}
.y3_c01078{bottom:1041.000000px;}
.y2_c01078{bottom:1068.000000px;}
.y1_c01078{bottom:1095.000000px;}
.y9_c01078{bottom:1194.000000px;}
.h3_c01078{height:42.292969px;}
.h1_c01078{height:51.187500px;}
.h5_c01078{height:56.074219px;}
.h4_c01078{height:348.000000px;}
.h2_c01078{height:444.000000px;}
.h0_c01078{height:1263.000000px;}
.w1_c01078{width:676.500000px;}
.w0_c01078{width:892.500000px;}
.x0_c01078{left:0.000000px;}
.x2_c01078{left:8.515115px;}
.x1_c01078{left:150.519750px;}
.x3_c01078{left:251.337150px;}
.x4_c01078{left:416.782800px;}
.x5_c01078{left:801.992850px;}
@media print{
.v0_c01078{vertical-align:0.000000pt;}
.ls2_c01078{letter-spacing:0.000000pt;}
.ls1_c01078{letter-spacing:0.010667pt;}
.ls0_c01078{letter-spacing:0.019200pt;}
.ws0_c01078{word-spacing:0.000000pt;}
._9_c01078{margin-left:-6.393600pt;}
._0_c01078{margin-left:-2.816000pt;}
._7_c01078{margin-left:-1.408000pt;}
._2_c01078{width:1.305600pt;}
._5_c01078{width:2.521600pt;}
._b_c01078{width:3.558400pt;}
._a_c01078{width:5.516800pt;}
._6_c01078{width:7.584000pt;}
._3_c01078{width:8.793600pt;}
._4_c01078{width:10.105600pt;}
._8_c01078{width:11.462400pt;}
._1_c01078{width:12.908800pt;}
._c_c01078{width:13.881600pt;}
._d_c01078{width:15.744000pt;}
.fs1_c01078{font-size:48.000000pt;}
.fs2_c01078{font-size:53.333333pt;}
.fs0_c01078{font-size:64.000000pt;}
.y0_c01078{bottom:0.000000pt;}
.y7_c01078{bottom:10.666667pt;}
.ya_c01078{bottom:60.000000pt;}
.y8_c01078{bottom:120.000000pt;}
.y6_c01078{bottom:454.666667pt;}
.y5_c01078{bottom:877.333333pt;}
.y4_c01078{bottom:901.333333pt;}
.y3_c01078{bottom:925.333333pt;}
.y2_c01078{bottom:949.333333pt;}
.y1_c01078{bottom:973.333333pt;}
.y9_c01078{bottom:1061.333333pt;}
.h3_c01078{height:37.593750pt;}
.h1_c01078{height:45.500000pt;}
.h5_c01078{height:49.843750pt;}
.h4_c01078{height:309.333333pt;}
.h2_c01078{height:394.666667pt;}
.h0_c01078{height:1122.666667pt;}
.w1_c01078{width:601.333333pt;}
.w0_c01078{width:793.333333pt;}
.x0_c01078{left:0.000000pt;}
.x2_c01078{left:7.568991pt;}
.x1_c01078{left:133.795333pt;}
.x3_c01078{left:223.410800pt;}
.x4_c01078{left:370.473600pt;}
.x5_c01078{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_61904b0a77722bc99a3762ae.woff2')format("woff");}.ff1_c01079{font-family:ff1_c01079;line-height:0.932129;font-style:normal;font-weight:normal;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_8cbe2eb040f474fe0b8596ac.woff2')format("woff");}.ff2_c01079{font-family:ff2_c01079;line-height:0.932129;font-style:normal;font-weight:normal;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_d95922a561cb4fb415399078.woff2')format("woff");}.ff3_c01079{font-family:ff3_c01079;line-height:1.010254;font-style:normal;font-weight:normal;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_0cf1428379525012efcbcce8.woff2')format("woff");}.ff4_c01079{font-family:ff4_c01079;line-height:0.998047;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01079;src:url('chunks/assets/font_54c5af9acd148b5d4c914e17.woff2')format("woff");}.ff5_c01079{font-family:ff5_c01079;line-height:0.755859;font-style:normal;font-weight: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_c01079;src:url('chunks/assets/font_e0e1994bb7b135f142be9ad5.woff2')format("woff");}.ff6_c01079{font-family:ff6_c01079;line-height:1.155762;font-style: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;}
.ls2_c01079{letter-spacing:-0.006000px;}
.ls1_c01079{letter-spacing:0.000000px;}
.ls0_c01079{letter-spacing:0.000600px;}
.ls3_c01079{letter-spacing:0.012000px;}
.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;}
}
.ws1_c01079{word-spacing:-18.000000px;}
.ws0_c01079{word-spacing:-0.072000px;}
.ws2_c01079{word-spacing:0.000000px;}
._10_c01079{margin-left:-6.544800px;}
._9_c01079{margin-left:-5.119440px;}
._2_c01079{margin-left:-3.686400px;}
._4_c01079{margin-left:-2.534400px;}
._1_c01079{margin-left:-1.281600px;}
._7_c01079{width:1.468800px;}
._8_c01079{width:2.548800px;}
._6_c01079{width:4.370400px;}
._0_c01079{width:5.889600px;}
._12_c01079{width:7.013040px;}
._5_c01079{width:8.416800px;}
._3_c01079{width:9.496800px;}
._15_c01079{width:10.728000px;}
._a_c01079{width:11.916000px;}
._c_c01079{width:13.752000px;}
._b_c01079{width:15.595200px;}
._13_c01079{width:16.812000px;}
._e_c01079{width:19.058400px;}
._11_c01079{width:20.181600px;}
._f_c01079{width:21.571200px;}
._14_c01079{width:22.896000px;}
._d_c01079{width:24.148800px;}
.fc0_c01079{color:rgb(0,0,0);}
.fs1_c01079{font-size:60.000000px;}
.fs0_c01079{font-size:72.000000px;}
.y0_c01079{bottom:0.000000px;}
.y27_c01079{bottom:67.500000px;}
.y25_c01079{bottom:148.500000px;}
.y24_c01079{bottom:169.500000px;}
.y23_c01079{bottom:190.500000px;}
.y22_c01079{bottom:211.500000px;}
.y21_c01079{bottom:232.500000px;}
.y20_c01079{bottom:253.500000px;}
.y1f_c01079{bottom:274.500000px;}
.y1e_c01079{bottom:295.500000px;}
.y1d_c01079{bottom:316.500000px;}
.y1c_c01079{bottom:337.500000px;}
.y1b_c01079{bottom:358.500000px;}
.y1a_c01079{bottom:400.500000px;}
.y19_c01079{bottom:442.500000px;}
.y18_c01079{bottom:463.500000px;}
.y17_c01079{bottom:484.500000px;}
.y16_c01079{bottom:505.500000px;}
.y15_c01079{bottom:526.500000px;}
.y14_c01079{bottom:547.500000px;}
.y13_c01079{bottom:568.500000px;}
.y12_c01079{bottom:589.500000px;}
.y11_c01079{bottom:610.500000px;}
.y10_c01079{bottom:631.500000px;}
.yf_c01079{bottom:652.500000px;}
.ye_c01079{bottom:673.500000px;}
.yd_c01079{bottom:694.500000px;}
.yc_c01079{bottom:715.500000px;}
.yb_c01079{bottom:736.500000px;}
.ya_c01079{bottom:757.500000px;}
.y9_c01079{bottom:778.500000px;}
.y8_c01079{bottom:799.500000px;}
.y7_c01079{bottom:841.500000px;}
.y6_c01079{bottom:885.000000px;}
.y5_c01079{bottom:906.000000px;}
.y4_c01079{bottom:951.000000px;}
.y3_c01079{bottom:978.000000px;}
.y2_c01079{bottom:1017.000000px;}
.y1_c01079{bottom:1095.000000px;}
.y26_c01079{bottom:1194.000000px;}
.h2_c01079{height:42.714844px;}
.h5_c01079{height:44.208984px;}
.h1_c01079{height:51.257812px;}
.h3_c01079{height:52.417969px;}
.h4_c01079{height:56.074219px;}
.h0_c01079{height:1263.000000px;}
.w0_c01079{width:892.500000px;}
.x0_c01079{left:0.000000px;}
.x1_c01079{left:65.480310px;}
@media print{
.v0_c01079{vertical-align:0.000000pt;}
.ls2_c01079{letter-spacing:-0.005333pt;}
.ls1_c01079{letter-spacing:0.000000pt;}
.ls0_c01079{letter-spacing:0.000533pt;}
.ls3_c01079{letter-spacing:0.010667pt;}
.ws1_c01079{word-spacing:-16.000000pt;}
.ws0_c01079{word-spacing:-0.064000pt;}
.ws2_c01079{word-spacing:0.000000pt;}
._10_c01079{margin-left:-5.817600pt;}
._9_c01079{margin-left:-4.550613pt;}
._2_c01079{margin-left:-3.276800pt;}
._4_c01079{margin-left:-2.252800pt;}
._1_c01079{margin-left:-1.139200pt;}
._7_c01079{width:1.305600pt;}
._8_c01079{width:2.265600pt;}
._6_c01079{width:3.884800pt;}
._0_c01079{width:5.235200pt;}
._12_c01079{width:6.233813pt;}
._5_c01079{width:7.481600pt;}
._3_c01079{width:8.441600pt;}
._15_c01079{width:9.536000pt;}
._a_c01079{width:10.592000pt;}
._c_c01079{width:12.224000pt;}
._b_c01079{width:13.862400pt;}
._13_c01079{width:14.944000pt;}
._e_c01079{width:16.940800pt;}
._11_c01079{width:17.939200pt;}
._f_c01079{width:19.174400pt;}
._14_c01079{width:20.352000pt;}
._d_c01079{width:21.465600pt;}
.fs1_c01079{font-size:53.333333pt;}
.fs0_c01079{font-size:64.000000pt;}
.y0_c01079{bottom:0.000000pt;}
.y27_c01079{bottom:60.000000pt;}
.y25_c01079{bottom:132.000000pt;}
.y24_c01079{bottom:150.666667pt;}
.y23_c01079{bottom:169.333333pt;}
.y22_c01079{bottom:188.000000pt;}
.y21_c01079{bottom:206.666667pt;}
.y20_c01079{bottom:225.333333pt;}
.y1f_c01079{bottom:244.000000pt;}
.y1e_c01079{bottom:262.666667pt;}
.y1d_c01079{bottom:281.333333pt;}
.y1c_c01079{bottom:300.000000pt;}
.y1b_c01079{bottom:318.666667pt;}
.y1a_c01079{bottom:356.000000pt;}
.y19_c01079{bottom:393.333333pt;}
.y18_c01079{bottom:412.000000pt;}
.y17_c01079{bottom:430.666667pt;}
.y16_c01079{bottom:449.333333pt;}
.y15_c01079{bottom:468.000000pt;}
.y14_c01079{bottom:486.666667pt;}
.y13_c01079{bottom:505.333333pt;}
.y12_c01079{bottom:524.000000pt;}
.y11_c01079{bottom:542.666667pt;}
.y10_c01079{bottom:561.333333pt;}
.yf_c01079{bottom:580.000000pt;}
.ye_c01079{bottom:598.666667pt;}
.yd_c01079{bottom:617.333333pt;}
.yc_c01079{bottom:636.000000pt;}
.yb_c01079{bottom:654.666667pt;}
.ya_c01079{bottom:673.333333pt;}
.y9_c01079{bottom:692.000000pt;}
.y8_c01079{bottom:710.666667pt;}
.y7_c01079{bottom:748.000000pt;}
.y6_c01079{bottom:786.666667pt;}
.y5_c01079{bottom:805.333333pt;}
.y4_c01079{bottom:845.333333pt;}
.y3_c01079{bottom:869.333333pt;}
.y2_c01079{bottom:904.000000pt;}
.y1_c01079{bottom:973.333333pt;}
.y26_c01079{bottom:1061.333333pt;}
.h2_c01079{height:37.968750pt;}
.h5_c01079{height:39.296875pt;}
.h1_c01079{height:45.562500pt;}
.h3_c01079{height:46.593750pt;}
.h4_c01079{height:49.843750pt;}
.h0_c01079{height:1122.666667pt;}
.w0_c01079{width:793.333333pt;}
.x0_c01079{left:0.000000pt;}
.x1_c01079{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f188c1210ae684739dc82e01.woff2')format("woff");}.ff1_c01080{font-family:ff1_c01080;line-height:1.010254;font-style:normal;font-weight:normal;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_d8c102da62a49ec733c1394d.woff2')format("woff");}.ff2_c01080{font-family:ff2_c01080;line-height:0.986816;font-style:normal;font-weight:normal;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_9866803cffc7f1751a59e7be.woff2')format("woff");}.ff3_c01080{font-family:ff3_c01080;line-height:1.155762;font-style: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);}
.v0_c01080{vertical-align:0.000000px;}
.ls1_c01080{letter-spacing:0.000000px;}
.ls0_c01080{letter-spacing:0.012000px;}
.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:-0.072000px;}
.ws1_c01080{word-spacing:0.000000px;}
._9_c01080{margin-left:-4.305600px;}
._0_c01080{margin-left:-2.628000px;}
._4_c01080{margin-left:-1.346400px;}
._1_c01080{width:2.664000px;}
._7_c01080{width:3.801600px;}
._8_c01080{width:5.407200px;}
._2_c01080{width:6.501600px;}
._3_c01080{width:8.618400px;}
._5_c01080{width:10.483200px;}
._6_c01080{width:11.786400px;}
._a_c01080{width:13.464000px;}
.fc0_c01080{color:rgb(0,0,0);}
.fs1_c01080{font-size:60.000000px;}
.fs0_c01080{font-size:72.000000px;}
.y0_c01080{bottom:0.000000px;}
.y5_c01080{bottom:67.500000px;}
.y3_c01080{bottom:1033.500000px;}
.y2_c01080{bottom:1054.500000px;}
.y1_c01080{bottom:1096.500000px;}
.y4_c01080{bottom:1194.000000px;}
.h1_c01080{height:52.417969px;}
.h2_c01080{height:56.074219px;}
.h0_c01080{height:1263.000000px;}
.w0_c01080{width:892.500000px;}
.x0_c01080{left:0.000000px;}
.x1_c01080{left:134.787405px;}
.x2_c01080{left:432.515100px;}
.x3_c01080{left:817.725150px;}
@media print{
.v0_c01080{vertical-align:0.000000pt;}
.ls1_c01080{letter-spacing:0.000000pt;}
.ls0_c01080{letter-spacing:0.010667pt;}
.ws0_c01080{word-spacing:-0.064000pt;}
.ws1_c01080{word-spacing:0.000000pt;}
._9_c01080{margin-left:-3.827200pt;}
._0_c01080{margin-left:-2.336000pt;}
._4_c01080{margin-left:-1.196800pt;}
._1_c01080{width:2.368000pt;}
._7_c01080{width:3.379200pt;}
._8_c01080{width:4.806400pt;}
._2_c01080{width:5.779200pt;}
._3_c01080{width:7.660800pt;}
._5_c01080{width:9.318400pt;}
._6_c01080{width:10.476800pt;}
._a_c01080{width:11.968000pt;}
.fs1_c01080{font-size:53.333333pt;}
.fs0_c01080{font-size:64.000000pt;}
.y0_c01080{bottom:0.000000pt;}
.y5_c01080{bottom:60.000000pt;}
.y3_c01080{bottom:918.666667pt;}
.y2_c01080{bottom:937.333333pt;}
.y1_c01080{bottom:974.666667pt;}
.y4_c01080{bottom:1061.333333pt;}
.h1_c01080{height:46.593750pt;}
.h2_c01080{height:49.843750pt;}
.h0_c01080{height:1122.666667pt;}
.w0_c01080{width:793.333333pt;}
.x0_c01080{left:0.000000pt;}
.x1_c01080{left:119.811027pt;}
.x2_c01080{left:384.457867pt;}
.x3_c01080{left:726.866800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e7713144d453838f74186cfb.woff2')format("woff");}.ff1_c01081{font-family:ff1_c01081;line-height:0.939453;font-style:normal;font-weight:normal;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_05fd7cd3df0b987568737ec7.woff2')format("woff");}.ff2_c01081{font-family:ff2_c01081;line-height:0.934082;font-style:normal;font-weight:normal;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_db7bb1501bc4dafbfbb522ed.woff2')format("woff");}.ff3_c01081{font-family:ff3_c01081;line-height:0.756836;font-style:normal;font-weight:normal;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_d9ce27f03323e1ae995abc94.woff2')format("woff");}.ff4_c01081{font-family:ff4_c01081;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01081;src:url('chunks/assets/font_cee28d00210d93bc93da3217.woff2')format("woff");}.ff5_c01081{font-family:ff5_c01081;line-height:1.100586;font-style:normal;font-weight: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_c01081;src:url('chunks/assets/font_8e4a17c776557012d86bf273.woff2')format("woff");}.ff6_c01081{font-family:ff6_c01081;line-height:0.890137;font-style: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);}
.m1_c01081{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3_c01081{vertical-align:-33.000000px;}
.v2_c01081{vertical-align:-23.086200px;}
.v0_c01081{vertical-align:0.000000px;}
.v1_c01081{vertical-align:23.086200px;}
.ls5_c01081{letter-spacing:-0.007200px;}
.ls4_c01081{letter-spacing:0.000000px;}
.ls0_c01081{letter-spacing:0.007800px;}
.ls6_c01081{letter-spacing:0.012000px;}
.ls3_c01081{letter-spacing:3.999999px;}
.ls1_c01081{letter-spacing:4.513200px;}
.ls2_c01081{letter-spacing:11.438400px;}
.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;}
}
.ws0_c01081{word-spacing:-10.000001px;}
.ws1_c01081{word-spacing:0.000000px;}
._f_c01081{margin-left:-10.864800px;}
._c_c01081{margin-left:-6.242400px;}
._d_c01081{margin-left:-4.509900px;}
._4_c01081{margin-left:-2.678400px;}
._3_c01081{margin-left:-1.663200px;}
._1_c01081{width:1.713600px;}
._0_c01081{width:3.218400px;}
._2_c01081{width:4.716000px;}
._5_c01081{width:5.947200px;}
._7_c01081{width:7.372800px;}
._9_c01081{width:8.827200px;}
._b_c01081{width:10.303200px;}
._6_c01081{width:12.103200px;}
._8_c01081{width:13.752000px;}
._a_c01081{width:14.781600px;}
._12_c01081{width:16.387200px;}
._e_c01081{width:17.748000px;}
._10_c01081{width:21.535200px;}
._17_c01081{width:22.809600px;}
._11_c01081{width:23.957100px;}
._14_c01081{width:25.740000px;}
._13_c01081{width:27.417600px;}
._16_c01081{width:28.994400px;}
._15_c01081{width:30.139200px;}
.fc1_c01081{color:rgb(255,255,255);}
.fc0_c01081{color:rgb(0,0,0);}
.fs5_c01081{font-size:40.000002px;}
.fs2_c01081{font-size:48.000000px;}
.fs4_c01081{font-size:60.000000px;}
.fs1_c01081{font-size:72.000000px;}
.fs0_c01081{font-size:78.000000px;}
.fs3_c01081{font-size:96.000000px;}
.y0_c01081{bottom:0.000000px;}
.y19_c01081{bottom:67.500000px;}
.y1d_c01081{bottom:140.250000px;}
.y1c_c01081{bottom:181.500000px;}
.y1b_c01081{bottom:201.000000px;}
.y1a_c01081{bottom:228.750000px;}
.y16_c01081{bottom:301.500000px;}
.y15_c01081{bottom:328.500000px;}
.y14_c01081{bottom:355.500000px;}
.y13_c01081{bottom:382.500000px;}
.y12_c01081{bottom:430.500000px;}
.y11_c01081{bottom:457.500000px;}
.y10_c01081{bottom:504.000000px;}
.yf_c01081{bottom:574.500000px;}
.ye_c01081{bottom:601.500000px;}
.yd_c01081{bottom:628.500000px;}
.yc_c01081{bottom:655.500000px;}
.yb_c01081{bottom:682.500000px;}
.ya_c01081{bottom:709.500000px;}
.y9_c01081{bottom:736.500000px;}
.y8_c01081{bottom:763.500000px;}
.y7_c01081{bottom:790.500000px;}
.y6_c01081{bottom:817.500000px;}
.y5_c01081{bottom:844.500000px;}
.y4_c01081{bottom:892.500000px;}
.y3_c01081{bottom:919.500000px;}
.y2_c01081{bottom:946.500000px;}
.y1_c01081{bottom:993.000000px;}
.y17_c01081{bottom:1066.500000px;}
.y18_c01081{bottom:1194.000000px;}
.h7_c01081{height:35.312502px;}
.h6_c01081{height:44.208984px;}
.h2_c01081{height:51.257812px;}
.h8_c01081{height:52.968750px;}
.h5_c01081{height:56.074219px;}
.h1_c01081{height:56.100586px;}
.h3_c01081{height:57.258075px;}
.h4_c01081{height:68.343750px;}
.h0_c01081{height:1263.000000px;}
.w0_c01081{width:892.500000px;}
.x0_c01081{left:0.000000px;}
.x1_c01081{left:49.748025px;}
.x2_c01081{left:79.798875px;}
@media print{
.v3_c01081{vertical-align:-29.333333pt;}
.v2_c01081{vertical-align:-20.521067pt;}
.v0_c01081{vertical-align:0.000000pt;}
.v1_c01081{vertical-align:20.521067pt;}
.ls5_c01081{letter-spacing:-0.006400pt;}
.ls4_c01081{letter-spacing:0.000000pt;}
.ls0_c01081{letter-spacing:0.006933pt;}
.ls6_c01081{letter-spacing:0.010667pt;}
.ls3_c01081{letter-spacing:3.555555pt;}
.ls1_c01081{letter-spacing:4.011733pt;}
.ls2_c01081{letter-spacing:10.167467pt;}
.ws0_c01081{word-spacing:-8.888889pt;}
.ws1_c01081{word-spacing:0.000000pt;}
._f_c01081{margin-left:-9.657600pt;}
._c_c01081{margin-left:-5.548800pt;}
._d_c01081{margin-left:-4.008800pt;}
._4_c01081{margin-left:-2.380800pt;}
._3_c01081{margin-left:-1.478400pt;}
._1_c01081{width:1.523200pt;}
._0_c01081{width:2.860800pt;}
._2_c01081{width:4.192000pt;}
._5_c01081{width:5.286400pt;}
._7_c01081{width:6.553600pt;}
._9_c01081{width:7.846400pt;}
._b_c01081{width:9.158400pt;}
._6_c01081{width:10.758400pt;}
._8_c01081{width:12.224000pt;}
._a_c01081{width:13.139200pt;}
._12_c01081{width:14.566400pt;}
._e_c01081{width:15.776000pt;}
._10_c01081{width:19.142400pt;}
._17_c01081{width:20.275200pt;}
._11_c01081{width:21.295200pt;}
._14_c01081{width:22.880000pt;}
._13_c01081{width:24.371200pt;}
._16_c01081{width:25.772800pt;}
._15_c01081{width:26.790400pt;}
.fs5_c01081{font-size:35.555557pt;}
.fs2_c01081{font-size:42.666667pt;}
.fs4_c01081{font-size:53.333333pt;}
.fs1_c01081{font-size:64.000000pt;}
.fs0_c01081{font-size:69.333333pt;}
.fs3_c01081{font-size:85.333333pt;}
.y0_c01081{bottom:0.000000pt;}
.y19_c01081{bottom:60.000000pt;}
.y1d_c01081{bottom:124.666667pt;}
.y1c_c01081{bottom:161.333333pt;}
.y1b_c01081{bottom:178.666667pt;}
.y1a_c01081{bottom:203.333333pt;}
.y16_c01081{bottom:268.000000pt;}
.y15_c01081{bottom:292.000000pt;}
.y14_c01081{bottom:316.000000pt;}
.y13_c01081{bottom:340.000000pt;}
.y12_c01081{bottom:382.666667pt;}
.y11_c01081{bottom:406.666667pt;}
.y10_c01081{bottom:448.000000pt;}
.yf_c01081{bottom:510.666667pt;}
.ye_c01081{bottom:534.666667pt;}
.yd_c01081{bottom:558.666667pt;}
.yc_c01081{bottom:582.666667pt;}
.yb_c01081{bottom:606.666667pt;}
.ya_c01081{bottom:630.666667pt;}
.y9_c01081{bottom:654.666667pt;}
.y8_c01081{bottom:678.666667pt;}
.y7_c01081{bottom:702.666667pt;}
.y6_c01081{bottom:726.666667pt;}
.y5_c01081{bottom:750.666667pt;}
.y4_c01081{bottom:793.333333pt;}
.y3_c01081{bottom:817.333333pt;}
.y2_c01081{bottom:841.333333pt;}
.y1_c01081{bottom:882.666667pt;}
.y17_c01081{bottom:948.000000pt;}
.y18_c01081{bottom:1061.333333pt;}
.h7_c01081{height:31.388890pt;}
.h6_c01081{height:39.296875pt;}
.h2_c01081{height:45.562500pt;}
.h8_c01081{height:47.083333pt;}
.h5_c01081{height:49.843750pt;}
.h1_c01081{height:49.867188pt;}
.h3_c01081{height:50.896067pt;}
.h4_c01081{height:60.750000pt;}
.h0_c01081{height:1122.666667pt;}
.w0_c01081{width:793.333333pt;}
.x0_c01081{left:0.000000pt;}
.x1_c01081{left:44.220467pt;}
.x2_c01081{left:70.932333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_60737ae88a2f07a3d95b4df1.woff2')format("woff");}.ff1_c01082{font-family:ff1_c01082;line-height:0.932129;font-style:normal;font-weight:normal;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_2fcb76d96c4e26c6717e6eb1.woff2')format("woff");}.ff2_c01082{font-family:ff2_c01082;line-height:0.976074;font-style:normal;font-weight:normal;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_6f13747b238847a3042dac24.woff2')format("woff");}.ff3_c01082{font-family:ff3_c01082;line-height:1.155762;font-style: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;}
.ls1_c01082{letter-spacing:0.000000px;}
.ls0_c01082{letter-spacing:0.012000px;}
.ls2_c01082{letter-spacing:0.021600px;}
.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:0.000000px;}
._8_c01082{margin-left:-4.003200px;}
._0_c01082{margin-left:-1.476000px;}
._6_c01082{width:1.224000px;}
._2_c01082{width:2.872800px;}
._4_c01082{width:5.140800px;}
._b_c01082{width:6.832800px;}
._a_c01082{width:7.999200px;}
._c_c01082{width:11.124000px;}
._5_c01082{width:14.493600px;}
._3_c01082{width:16.812000px;}
._7_c01082{width:18.424800px;}
._1_c01082{width:20.815200px;}
._9_c01082{width:23.572800px;}
.fc0_c01082{color:rgb(0,0,0);}
.fs1_c01082{font-size:54.000000px;}
.fs2_c01082{font-size:60.000000px;}
.fs0_c01082{font-size:72.000000px;}
.y0_c01082{bottom:0.000000px;}
.y4_c01082{bottom:12.000000px;}
.y9_c01082{bottom:67.500000px;}
.y7_c01082{bottom:132.000000px;}
.y6_c01082{bottom:595.500000px;}
.y5_c01082{bottom:622.500000px;}
.y3_c01082{bottom:667.500000px;}
.y2_c01082{bottom:1068.000000px;}
.y1_c01082{bottom:1095.000000px;}
.y8_c01082{bottom:1194.000000px;}
.h3_c01082{height:42.292969px;}
.h1_c01082{height:51.257812px;}
.h5_c01082{height:56.074219px;}
.h2_c01082{height:369.000000px;}
.h4_c01082{height:432.000000px;}
.h0_c01082{height:1263.000000px;}
.w1_c01082{width:684.449850px;}
.w0_c01082{width:892.500000px;}
.x0_c01082{left:0.000000px;}
.x1_c01082{left:134.787405px;}
.x2_c01082{left:147.000000px;}
.x4_c01082{left:166.322850px;}
.x3_c01082{left:342.225000px;}
.x5_c01082{left:432.515100px;}
.x6_c01082{left:817.725150px;}
@media print{
.v0_c01082{vertical-align:0.000000pt;}
.ls1_c01082{letter-spacing:0.000000pt;}
.ls0_c01082{letter-spacing:0.010667pt;}
.ls2_c01082{letter-spacing:0.019200pt;}
.ws0_c01082{word-spacing:0.000000pt;}
._8_c01082{margin-left:-3.558400pt;}
._0_c01082{margin-left:-1.312000pt;}
._6_c01082{width:1.088000pt;}
._2_c01082{width:2.553600pt;}
._4_c01082{width:4.569600pt;}
._b_c01082{width:6.073600pt;}
._a_c01082{width:7.110400pt;}
._c_c01082{width:9.888000pt;}
._5_c01082{width:12.883200pt;}
._3_c01082{width:14.944000pt;}
._7_c01082{width:16.377600pt;}
._1_c01082{width:18.502400pt;}
._9_c01082{width:20.953600pt;}
.fs1_c01082{font-size:48.000000pt;}
.fs2_c01082{font-size:53.333333pt;}
.fs0_c01082{font-size:64.000000pt;}
.y0_c01082{bottom:0.000000pt;}
.y4_c01082{bottom:10.666667pt;}
.y9_c01082{bottom:60.000000pt;}
.y7_c01082{bottom:117.333333pt;}
.y6_c01082{bottom:529.333333pt;}
.y5_c01082{bottom:553.333333pt;}
.y3_c01082{bottom:593.333333pt;}
.y2_c01082{bottom:949.333333pt;}
.y1_c01082{bottom:973.333333pt;}
.y8_c01082{bottom:1061.333333pt;}
.h3_c01082{height:37.593750pt;}
.h1_c01082{height:45.562500pt;}
.h5_c01082{height:49.843750pt;}
.h2_c01082{height:328.000000pt;}
.h4_c01082{height:384.000000pt;}
.h0_c01082{height:1122.666667pt;}
.w1_c01082{width:608.399867pt;}
.w0_c01082{width:793.333333pt;}
.x0_c01082{left:0.000000pt;}
.x1_c01082{left:119.811027pt;}
.x2_c01082{left:130.666667pt;}
.x4_c01082{left:147.842533pt;}
.x3_c01082{left:304.200000pt;}
.x5_c01082{left:384.457867pt;}
.x6_c01082{left:726.866800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f84d74f3e44207a17edb765d.woff2')format("woff");}.ff1_c01083{font-family:ff1_c01083;line-height:0.934082;font-style:normal;font-weight:normal;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_d3a6ddc7ecc4ac0ea246820a.woff2')format("woff");}.ff2_c01083{font-family:ff2_c01083;line-height:0.963867;font-style:normal;font-weight:normal;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_f232b8dea7b07eee143065e5.woff2')format("woff");}.ff3_c01083{font-family:ff3_c01083;line-height:0.756836;font-style:normal;font-weight:normal;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_24390547068b99dfbe758801.woff2')format("woff");}.ff4_c01083{font-family:ff4_c01083;line-height:1.155762;font-style: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);}
.v0_c01083{vertical-align:0.000000px;}
.ls0_c01083{letter-spacing:0.000000px;}
.ls1_c01083{letter-spacing:0.012000px;}
.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:0.000000px;}
._0_c01083{margin-left:-10.584000px;}
._d_c01083{margin-left:-6.393600px;}
._7_c01083{margin-left:-4.680000px;}
._6_c01083{margin-left:-2.901600px;}
._9_c01083{margin-left:-1.785600px;}
._2_c01083{width:1.332000px;}
._4_c01083{width:2.872800px;}
._b_c01083{width:4.053600px;}
._12_c01083{width:5.407200px;}
._10_c01083{width:6.681600px;}
._11_c01083{width:9.108000px;}
._14_c01083{width:10.116000px;}
._13_c01083{width:11.800800px;}
._c_c01083{width:12.931200px;}
._5_c01083{width:13.982400px;}
._3_c01083{width:15.573600px;}
._1_c01083{width:16.912800px;}
._a_c01083{width:18.669600px;}
._8_c01083{width:21.571200px;}
._f_c01083{width:22.608000px;}
._e_c01083{width:24.436800px;}
.fc0_c01083{color:rgb(0,0,0);}
.fs1_c01083{font-size:54.000000px;}
.fs2_c01083{font-size:60.000000px;}
.fs0_c01083{font-size:72.000000px;}
.y0_c01083{bottom:0.000000px;}
.y6_c01083{bottom:12.000000px;}
.yc_c01083{bottom:67.500000px;}
.ya_c01083{bottom:135.000000px;}
.y9_c01083{bottom:162.000000px;}
.y8_c01083{bottom:189.000000px;}
.y7_c01083{bottom:216.000000px;}
.y5_c01083{bottom:261.000000px;}
.y4_c01083{bottom:1014.000000px;}
.y3_c01083{bottom:1041.000000px;}
.y2_c01083{bottom:1068.000000px;}
.y1_c01083{bottom:1095.000000px;}
.yb_c01083{bottom:1194.000000px;}
.h3_c01083{height:41.633789px;}
.h5_c01083{height:44.208984px;}
.h1_c01083{height:51.257812px;}
.h4_c01083{height:56.074219px;}
.h2_c01083{height:721.500000px;}
.h0_c01083{height:1263.000000px;}
.w1_c01083{width:684.449850px;}
.w0_c01083{width:892.500000px;}
.x0_c01083{left:0.000000px;}
.x1_c01083{left:49.748025px;}
.x2_c01083{left:61.500000px;}
.x3_c01083{left:288.831450px;}
@media print{
.v0_c01083{vertical-align:0.000000pt;}
.ls0_c01083{letter-spacing:0.000000pt;}
.ls1_c01083{letter-spacing:0.010667pt;}
.ws0_c01083{word-spacing:0.000000pt;}
._0_c01083{margin-left:-9.408000pt;}
._d_c01083{margin-left:-5.683200pt;}
._7_c01083{margin-left:-4.160000pt;}
._6_c01083{margin-left:-2.579200pt;}
._9_c01083{margin-left:-1.587200pt;}
._2_c01083{width:1.184000pt;}
._4_c01083{width:2.553600pt;}
._b_c01083{width:3.603200pt;}
._12_c01083{width:4.806400pt;}
._10_c01083{width:5.939200pt;}
._11_c01083{width:8.096000pt;}
._14_c01083{width:8.992000pt;}
._13_c01083{width:10.489600pt;}
._c_c01083{width:11.494400pt;}
._5_c01083{width:12.428800pt;}
._3_c01083{width:13.843200pt;}
._1_c01083{width:15.033600pt;}
._a_c01083{width:16.595200pt;}
._8_c01083{width:19.174400pt;}
._f_c01083{width:20.096000pt;}
._e_c01083{width:21.721600pt;}
.fs1_c01083{font-size:48.000000pt;}
.fs2_c01083{font-size:53.333333pt;}
.fs0_c01083{font-size:64.000000pt;}
.y0_c01083{bottom:0.000000pt;}
.y6_c01083{bottom:10.666667pt;}
.yc_c01083{bottom:60.000000pt;}
.ya_c01083{bottom:120.000000pt;}
.y9_c01083{bottom:144.000000pt;}
.y8_c01083{bottom:168.000000pt;}
.y7_c01083{bottom:192.000000pt;}
.y5_c01083{bottom:232.000000pt;}
.y4_c01083{bottom:901.333333pt;}
.y3_c01083{bottom:925.333333pt;}
.y2_c01083{bottom:949.333333pt;}
.y1_c01083{bottom:973.333333pt;}
.yb_c01083{bottom:1061.333333pt;}
.h3_c01083{height:37.007812pt;}
.h5_c01083{height:39.296875pt;}
.h1_c01083{height:45.562500pt;}
.h4_c01083{height:49.843750pt;}
.h2_c01083{height:641.333333pt;}
.h0_c01083{height:1122.666667pt;}
.w1_c01083{width:608.399867pt;}
.w0_c01083{width:793.333333pt;}
.x0_c01083{left:0.000000pt;}
.x1_c01083{left:44.220467pt;}
.x2_c01083{left:54.666667pt;}
.x3_c01083{left:256.739067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_576623dd44be7c13b32e9c3d.woff2')format("woff");}.ff1_c01084{font-family:ff1_c01084;line-height:0.987793;font-style:normal;font-weight:normal;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_e12e6b39e0a9d3c1fe8d0444.woff2')format("woff");}.ff2_c01084{font-family:ff2_c01084;line-height:1.155762;font-style: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;}
.ls1_c01084{letter-spacing:0.000000px;}
.ls0_c01084{letter-spacing:0.012000px;}
.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;}
}
.ws0_c01084{word-spacing:0.000000px;}
._0_c01084{margin-left:-3.426000px;}
.fc0_c01084{color:rgb(0,0,0);}
.fs0_c01084{font-size:54.000000px;}
.fs1_c01084{font-size:60.000000px;}
.y0_c01084{bottom:0.000000px;}
.y2_c01084{bottom:12.000000px;}
.y5_c01084{bottom:67.500000px;}
.y3_c01084{bottom:135.000000px;}
.y1_c01084{bottom:642.000000px;}
.y4_c01084{bottom:1194.000000px;}
.h2_c01084{height:42.292969px;}
.h4_c01084{height:56.074219px;}
.h1_c01084{height:471.000000px;}
.h3_c01084{height:487.500000px;}
.h0_c01084{height:1263.000000px;}
.w1_c01084{width:684.449850px;}
.w0_c01084{width:892.500000px;}
.x0_c01084{left:0.000000px;}
.x2_c01084{left:27.868740px;}
.x1_c01084{left:147.000000px;}
.x3_c01084{left:283.577700px;}
.x4_c01084{left:432.515100px;}
.x5_c01084{left:817.725150px;}
@media print{
.v0_c01084{vertical-align:0.000000pt;}
.ls1_c01084{letter-spacing:0.000000pt;}
.ls0_c01084{letter-spacing:0.010667pt;}
.ws0_c01084{word-spacing:0.000000pt;}
._0_c01084{margin-left:-3.045333pt;}
.fs0_c01084{font-size:48.000000pt;}
.fs1_c01084{font-size:53.333333pt;}
.y0_c01084{bottom:0.000000pt;}
.y2_c01084{bottom:10.666667pt;}
.y5_c01084{bottom:60.000000pt;}
.y3_c01084{bottom:120.000000pt;}
.y1_c01084{bottom:570.666667pt;}
.y4_c01084{bottom:1061.333333pt;}
.h2_c01084{height:37.593750pt;}
.h4_c01084{height:49.843750pt;}
.h1_c01084{height:418.666667pt;}
.h3_c01084{height:433.333333pt;}
.h0_c01084{height:1122.666667pt;}
.w1_c01084{width:608.399867pt;}
.w0_c01084{width:793.333333pt;}
.x0_c01084{left:0.000000pt;}
.x2_c01084{left:24.772213pt;}
.x1_c01084{left:130.666667pt;}
.x3_c01084{left:252.069067pt;}
.x4_c01084{left:384.457867pt;}
.x5_c01084{left:726.866800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c51500d5ca5248c64fe87c9c.woff2')format("woff");}.ff1_c01085{font-family:ff1_c01085;line-height:0.933105;font-style:normal;font-weight:normal;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_0c64f89288e76593bcb6654b.woff2')format("woff");}.ff2_c01085{font-family:ff2_c01085;line-height:0.987793;font-style:normal;font-weight:normal;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_4d4b55736f21603db0d6043d.woff2')format("woff");}.ff3_c01085{font-family:ff3_c01085;line-height:0.756836;font-style:normal;font-weight:normal;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_25183ca3782af1ee4610be5d.woff2')format("woff");}.ff4_c01085{font-family:ff4_c01085;line-height:1.155762;font-style: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;}
.ls0_c01085{letter-spacing:0.000000px;}
.ls2_c01085{letter-spacing:0.012000px;}
.ls1_c01085{letter-spacing:0.021600px;}
.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:0.000000px;}
._0_c01085{margin-left:-10.584000px;}
._5_c01085{margin-left:-3.996000px;}
._7_c01085{margin-left:-2.332800px;}
._a_c01085{margin-left:-1.260000px;}
._3_c01085{width:1.036800px;}
._1_c01085{width:2.923200px;}
._2_c01085{width:4.485600px;}
._4_c01085{width:6.278400px;}
._9_c01085{width:7.380000px;}
._8_c01085{width:9.727200px;}
._6_c01085{width:11.404800px;}
.fc0_c01085{color:rgb(0,0,0);}
.fs1_c01085{font-size:54.000000px;}
.fs2_c01085{font-size:60.000000px;}
.fs0_c01085{font-size:72.000000px;}
.y0_c01085{bottom:0.000000px;}
.ya_c01085{bottom:10.500000px;}
.y9_c01085{bottom:28.500000px;}
.yc_c01085{bottom:67.500000px;}
.y8_c01085{bottom:135.000000px;}
.y7_c01085{bottom:912.000000px;}
.y6_c01085{bottom:939.000000px;}
.y5_c01085{bottom:966.000000px;}
.y4_c01085{bottom:1014.000000px;}
.y3_c01085{bottom:1041.000000px;}
.y2_c01085{bottom:1068.000000px;}
.y1_c01085{bottom:1095.000000px;}
.yb_c01085{bottom:1194.000000px;}
.h3_c01085{height:42.292969px;}
.h5_c01085{height:44.208984px;}
.h1_c01085{height:51.187500px;}
.h4_c01085{height:56.074219px;}
.h2_c01085{height:745.500000px;}
.h0_c01085{height:1263.000000px;}
.w1_c01085{width:684.449850px;}
.w0_c01085{width:892.500000px;}
.x0_c01085{left:0.000000px;}
.x3_c01085{left:13.274505px;}
.x1_c01085{left:49.748025px;}
.x2_c01085{left:61.500000px;}
@media print{
.v0_c01085{vertical-align:0.000000pt;}
.ls0_c01085{letter-spacing:0.000000pt;}
.ls2_c01085{letter-spacing:0.010667pt;}
.ls1_c01085{letter-spacing:0.019200pt;}
.ws0_c01085{word-spacing:0.000000pt;}
._0_c01085{margin-left:-9.408000pt;}
._5_c01085{margin-left:-3.552000pt;}
._7_c01085{margin-left:-2.073600pt;}
._a_c01085{margin-left:-1.120000pt;}
._3_c01085{width:0.921600pt;}
._1_c01085{width:2.598400pt;}
._2_c01085{width:3.987200pt;}
._4_c01085{width:5.580800pt;}
._9_c01085{width:6.560000pt;}
._8_c01085{width:8.646400pt;}
._6_c01085{width:10.137600pt;}
.fs1_c01085{font-size:48.000000pt;}
.fs2_c01085{font-size:53.333333pt;}
.fs0_c01085{font-size:64.000000pt;}
.y0_c01085{bottom:0.000000pt;}
.ya_c01085{bottom:9.333333pt;}
.y9_c01085{bottom:25.333333pt;}
.yc_c01085{bottom:60.000000pt;}
.y8_c01085{bottom:120.000000pt;}
.y7_c01085{bottom:810.666667pt;}
.y6_c01085{bottom:834.666667pt;}
.y5_c01085{bottom:858.666667pt;}
.y4_c01085{bottom:901.333333pt;}
.y3_c01085{bottom:925.333333pt;}
.y2_c01085{bottom:949.333333pt;}
.y1_c01085{bottom:973.333333pt;}
.yb_c01085{bottom:1061.333333pt;}
.h3_c01085{height:37.593750pt;}
.h5_c01085{height:39.296875pt;}
.h1_c01085{height:45.500000pt;}
.h4_c01085{height:49.843750pt;}
.h2_c01085{height:662.666667pt;}
.h0_c01085{height:1122.666667pt;}
.w1_c01085{width:608.399867pt;}
.w0_c01085{width:793.333333pt;}
.x0_c01085{left:0.000000pt;}
.x3_c01085{left:11.799560pt;}
.x1_c01085{left:44.220467pt;}
.x2_c01085{left:54.666667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_6d53147dc2a9a1322e2c1cb3.woff2')format("woff");}.ff1_c01086{font-family:ff1_c01086;line-height:0.934082;font-style:normal;font-weight:normal;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_924ad3693232434cc7d6a3b0.woff2')format("woff");}.ff2_c01086{font-family:ff2_c01086;line-height:0.963867;font-style:normal;font-weight:normal;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_12d514b40105ba309b15fb8c.woff2')format("woff");}.ff3_c01086{font-family:ff3_c01086;line-height:1.155762;font-style: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);}
.v0_c01086{vertical-align:0.000000px;}
.ls1_c01086{letter-spacing:0.000000px;}
.ls0_c01086{letter-spacing:0.012000px;}
.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:0.000000px;}
._9_c01086{margin-left:-7.272000px;}
._d_c01086{margin-left:-6.256800px;}
._5_c01086{margin-left:-3.340800px;}
._3_c01086{margin-left:-2.080800px;}
._e_c01086{margin-left:-1.000800px;}
._a_c01086{width:1.641600px;}
._7_c01086{width:2.829600px;}
._1_c01086{width:3.888000px;}
._c_c01086{width:5.047200px;}
._b_c01086{width:6.256800px;}
._2_c01086{width:11.599200px;}
._8_c01086{width:12.700800px;}
._0_c01086{width:15.451200px;}
._4_c01086{width:17.618400px;}
._6_c01086{width:18.799200px;}
._f_c01086{width:22.622400px;}
._14_c01086{width:26.409600px;}
._10_c01086{width:27.511200px;}
._15_c01086{width:28.584000px;}
._12_c01086{width:29.671200px;}
._13_c01086{width:31.392000px;}
._11_c01086{width:34.704000px;}
.fc0_c01086{color:rgb(0,0,0);}
.fs1_c01086{font-size:54.000000px;}
.fs2_c01086{font-size:60.000000px;}
.fs0_c01086{font-size:72.000000px;}
.y0_c01086{bottom:0.000000px;}
.y5_c01086{bottom:12.000000px;}
.yc_c01086{bottom:67.500000px;}
.ya_c01086{bottom:145.500000px;}
.y9_c01086{bottom:172.500000px;}
.y8_c01086{bottom:199.500000px;}
.y7_c01086{bottom:247.500000px;}
.y6_c01086{bottom:274.500000px;}
.y4_c01086{bottom:319.500000px;}
.y3_c01086{bottom:1041.000000px;}
.y2_c01086{bottom:1068.000000px;}
.y1_c01086{bottom:1095.000000px;}
.yb_c01086{bottom:1194.000000px;}
.h3_c01086{height:41.633789px;}
.h1_c01086{height:51.257812px;}
.h4_c01086{height:56.074219px;}
.h2_c01086{height:690.000000px;}
.h0_c01086{height:1263.000000px;}
.w1_c01086{width:684.449850px;}
.w0_c01086{width:892.500000px;}
.x0_c01086{left:0.000000px;}
.x1_c01086{left:134.787405px;}
.x2_c01086{left:147.000000px;}
.x3_c01086{left:256.927050px;}
.x4_c01086{left:432.515100px;}
.x5_c01086{left:817.725150px;}
@media print{
.v0_c01086{vertical-align:0.000000pt;}
.ls1_c01086{letter-spacing:0.000000pt;}
.ls0_c01086{letter-spacing:0.010667pt;}
.ws0_c01086{word-spacing:0.000000pt;}
._9_c01086{margin-left:-6.464000pt;}
._d_c01086{margin-left:-5.561600pt;}
._5_c01086{margin-left:-2.969600pt;}
._3_c01086{margin-left:-1.849600pt;}
._e_c01086{margin-left:-0.889600pt;}
._a_c01086{width:1.459200pt;}
._7_c01086{width:2.515200pt;}
._1_c01086{width:3.456000pt;}
._c_c01086{width:4.486400pt;}
._b_c01086{width:5.561600pt;}
._2_c01086{width:10.310400pt;}
._8_c01086{width:11.289600pt;}
._0_c01086{width:13.734400pt;}
._4_c01086{width:15.660800pt;}
._6_c01086{width:16.710400pt;}
._f_c01086{width:20.108800pt;}
._14_c01086{width:23.475200pt;}
._10_c01086{width:24.454400pt;}
._15_c01086{width:25.408000pt;}
._12_c01086{width:26.374400pt;}
._13_c01086{width:27.904000pt;}
._11_c01086{width:30.848000pt;}
.fs1_c01086{font-size:48.000000pt;}
.fs2_c01086{font-size:53.333333pt;}
.fs0_c01086{font-size:64.000000pt;}
.y0_c01086{bottom:0.000000pt;}
.y5_c01086{bottom:10.666667pt;}
.yc_c01086{bottom:60.000000pt;}
.ya_c01086{bottom:129.333333pt;}
.y9_c01086{bottom:153.333333pt;}
.y8_c01086{bottom:177.333333pt;}
.y7_c01086{bottom:220.000000pt;}
.y6_c01086{bottom:244.000000pt;}
.y4_c01086{bottom:284.000000pt;}
.y3_c01086{bottom:925.333333pt;}
.y2_c01086{bottom:949.333333pt;}
.y1_c01086{bottom:973.333333pt;}
.yb_c01086{bottom:1061.333333pt;}
.h3_c01086{height:37.007812pt;}
.h1_c01086{height:45.562500pt;}
.h4_c01086{height:49.843750pt;}
.h2_c01086{height:613.333333pt;}
.h0_c01086{height:1122.666667pt;}
.w1_c01086{width:608.399867pt;}
.w0_c01086{width:793.333333pt;}
.x0_c01086{left:0.000000pt;}
.x1_c01086{left:119.811027pt;}
.x2_c01086{left:130.666667pt;}
.x3_c01086{left:228.379600pt;}
.x4_c01086{left:384.457867pt;}
.x5_c01086{left:726.866800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f1d0c8a47bbb5d088394af82.woff2')format("woff");}.ff1_c01087{font-family:ff1_c01087;line-height:0.987793;font-style:normal;font-weight:normal;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_70cbb21524b59ec42b0530ea.woff2')format("woff");}.ff2_c01087{font-family:ff2_c01087;line-height:0.933105;font-style:normal;font-weight:normal;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_ba263d93f56e8ef75674945c.woff2')format("woff");}.ff3_c01087{font-family:ff3_c01087;line-height:0.756836;font-style:normal;font-weight:normal;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_e4ffc3ba57914dd8595546ed.woff2')format("woff");}.ff4_c01087{font-family:ff4_c01087;line-height:1.155762;font-style: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;}
.ls0_c01087{letter-spacing:0.000000px;}
.ls1_c01087{letter-spacing:0.012000px;}
.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;}
}
.ws0_c01087{word-spacing:0.000000px;}
._0_c01087{margin-left:-10.584000px;}
._a_c01087{margin-left:-4.982400px;}
._4_c01087{margin-left:-2.865600px;}
._2_c01087{margin-left:-1.080000px;}
._3_c01087{width:1.728000px;}
._1_c01087{width:3.571200px;}
._5_c01087{width:4.744800px;}
._8_c01087{width:25.257600px;}
._7_c01087{width:28.850400px;}
._9_c01087{width:29.865600px;}
._6_c01087{width:31.708800px;}
._b_c01087{width:33.544800px;}
.fc0_c01087{color:rgb(0,0,0);}
.fs0_c01087{font-size:54.000000px;}
.fs2_c01087{font-size:60.000000px;}
.fs1_c01087{font-size:72.000000px;}
.y0_c01087{bottom:0.000000px;}
.y2_c01087{bottom:12.000000px;}
.y9_c01087{bottom:67.500000px;}
.y7_c01087{bottom:153.000000px;}
.y6_c01087{bottom:180.000000px;}
.y5_c01087{bottom:225.000000px;}
.y4_c01087{bottom:673.500000px;}
.y3_c01087{bottom:700.500000px;}
.y1_c01087{bottom:745.500000px;}
.y8_c01087{bottom:1194.000000px;}
.h2_c01087{height:42.292969px;}
.h6_c01087{height:44.208984px;}
.h3_c01087{height:51.187500px;}
.h5_c01087{height:56.074219px;}
.h1_c01087{height:367.500000px;}
.h4_c01087{height:417.000000px;}
.h0_c01087{height:1263.000000px;}
.w1_c01087{width:684.449850px;}
.w0_c01087{width:892.500000px;}
.x0_c01087{left:0.000000px;}
.x3_c01087{left:49.748025px;}
.x1_c01087{left:61.500000px;}
.x4_c01087{left:157.170150px;}
.x2_c01087{left:242.708550px;}
@media print{
.v0_c01087{vertical-align:0.000000pt;}
.ls0_c01087{letter-spacing:0.000000pt;}
.ls1_c01087{letter-spacing:0.010667pt;}
.ws0_c01087{word-spacing:0.000000pt;}
._0_c01087{margin-left:-9.408000pt;}
._a_c01087{margin-left:-4.428800pt;}
._4_c01087{margin-left:-2.547200pt;}
._2_c01087{margin-left:-0.960000pt;}
._3_c01087{width:1.536000pt;}
._1_c01087{width:3.174400pt;}
._5_c01087{width:4.217600pt;}
._8_c01087{width:22.451200pt;}
._7_c01087{width:25.644800pt;}
._9_c01087{width:26.547200pt;}
._6_c01087{width:28.185600pt;}
._b_c01087{width:29.817600pt;}
.fs0_c01087{font-size:48.000000pt;}
.fs2_c01087{font-size:53.333333pt;}
.fs1_c01087{font-size:64.000000pt;}
.y0_c01087{bottom:0.000000pt;}
.y2_c01087{bottom:10.666667pt;}
.y9_c01087{bottom:60.000000pt;}
.y7_c01087{bottom:136.000000pt;}
.y6_c01087{bottom:160.000000pt;}
.y5_c01087{bottom:200.000000pt;}
.y4_c01087{bottom:598.666667pt;}
.y3_c01087{bottom:622.666667pt;}
.y1_c01087{bottom:662.666667pt;}
.y8_c01087{bottom:1061.333333pt;}
.h2_c01087{height:37.593750pt;}
.h6_c01087{height:39.296875pt;}
.h3_c01087{height:45.500000pt;}
.h5_c01087{height:49.843750pt;}
.h1_c01087{height:326.666667pt;}
.h4_c01087{height:370.666667pt;}
.h0_c01087{height:1122.666667pt;}
.w1_c01087{width:608.399867pt;}
.w0_c01087{width:793.333333pt;}
.x0_c01087{left:0.000000pt;}
.x3_c01087{left:44.220467pt;}
.x1_c01087{left:54.666667pt;}
.x4_c01087{left:139.706800pt;}
.x2_c01087{left:215.740933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c99cc130393132633cb60829.woff2')format("woff");}.ff1_c01088{font-family:ff1_c01088;line-height:0.933105;font-style:normal;font-weight:normal;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_d8d8c872f2cb51496879c06a.woff2')format("woff");}.ff2_c01088{font-family:ff2_c01088;line-height:0.932129;font-style:normal;font-weight:normal;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_99cdbbeef01725bbdf3a94d1.woff2')format("woff");}.ff3_c01088{font-family:ff3_c01088;line-height:0.963867;font-style:normal;font-weight:normal;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_3ea8bd51aa548aab5b207ca3.woff2')format("woff");}.ff4_c01088{font-family:ff4_c01088;line-height:1.155762;font-style: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;}
.ls2_c01088{letter-spacing:-0.007200px;}
.ls1_c01088{letter-spacing:0.000000px;}
.ls0_c01088{letter-spacing:0.012000px;}
.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:-0.064800px;}
.ws1_c01088{word-spacing:0.000000px;}
._7_c01088{margin-left:-7.221600px;}
._8_c01088{margin-left:-4.132800px;}
._0_c01088{margin-left:-2.620800px;}
._c_c01088{margin-left:-1.022400px;}
._2_c01088{width:1.310400px;}
._4_c01088{width:3.103200px;}
._a_c01088{width:4.341600px;}
._b_c01088{width:5.724000px;}
._11_c01088{width:7.092000px;}
._f_c01088{width:8.164800px;}
._9_c01088{width:9.792000px;}
._10_c01088{width:10.972800px;}
._5_c01088{width:12.139200px;}
._3_c01088{width:14.018400px;}
._6_c01088{width:15.278400px;}
._e_c01088{width:16.862400px;}
._1_c01088{width:17.942400px;}
._d_c01088{width:22.844580px;}
.fc0_c01088{color:rgb(0,0,0);}
.fs1_c01088{font-size:54.000000px;}
.fs2_c01088{font-size:60.000000px;}
.fs0_c01088{font-size:72.000000px;}
.y0_c01088{bottom:0.000000px;}
.y9_c01088{bottom:12.000000px;}
.y11_c01088{bottom:67.500000px;}
.yf_c01088{bottom:162.000000px;}
.ye_c01088{bottom:189.000000px;}
.yd_c01088{bottom:216.000000px;}
.yc_c01088{bottom:243.000000px;}
.yb_c01088{bottom:270.000000px;}
.ya_c01088{bottom:297.000000px;}
.y8_c01088{bottom:342.000000px;}
.y7_c01088{bottom:933.000000px;}
.y6_c01088{bottom:960.000000px;}
.y5_c01088{bottom:987.000000px;}
.y4_c01088{bottom:1014.000000px;}
.y3_c01088{bottom:1041.000000px;}
.y2_c01088{bottom:1068.000000px;}
.y1_c01088{bottom:1095.000000px;}
.y10_c01088{bottom:1194.000000px;}
.h4_c01088{height:41.633789px;}
.h1_c01088{height:51.187500px;}
.h2_c01088{height:51.257812px;}
.h5_c01088{height:56.074219px;}
.h3_c01088{height:559.500000px;}
.h0_c01088{height:1263.000000px;}
.w1_c01088{width:684.449850px;}
.w0_c01088{width:892.500000px;}
.x0_c01088{left:0.000000px;}
.x1_c01088{left:134.787405px;}
.x3_c01088{left:145.202730px;}
.x2_c01088{left:147.000000px;}
.x4_c01088{left:432.515100px;}
.x5_c01088{left:817.725150px;}
@media print{
.v0_c01088{vertical-align:0.000000pt;}
.ls2_c01088{letter-spacing:-0.006400pt;}
.ls1_c01088{letter-spacing:0.000000pt;}
.ls0_c01088{letter-spacing:0.010667pt;}
.ws0_c01088{word-spacing:-0.057600pt;}
.ws1_c01088{word-spacing:0.000000pt;}
._7_c01088{margin-left:-6.419200pt;}
._8_c01088{margin-left:-3.673600pt;}
._0_c01088{margin-left:-2.329600pt;}
._c_c01088{margin-left:-0.908800pt;}
._2_c01088{width:1.164800pt;}
._4_c01088{width:2.758400pt;}
._a_c01088{width:3.859200pt;}
._b_c01088{width:5.088000pt;}
._11_c01088{width:6.304000pt;}
._f_c01088{width:7.257600pt;}
._9_c01088{width:8.704000pt;}
._10_c01088{width:9.753600pt;}
._5_c01088{width:10.790400pt;}
._3_c01088{width:12.460800pt;}
._6_c01088{width:13.580800pt;}
._e_c01088{width:14.988800pt;}
._1_c01088{width:15.948800pt;}
._d_c01088{width:20.306293pt;}
.fs1_c01088{font-size:48.000000pt;}
.fs2_c01088{font-size:53.333333pt;}
.fs0_c01088{font-size:64.000000pt;}
.y0_c01088{bottom:0.000000pt;}
.y9_c01088{bottom:10.666667pt;}
.y11_c01088{bottom:60.000000pt;}
.yf_c01088{bottom:144.000000pt;}
.ye_c01088{bottom:168.000000pt;}
.yd_c01088{bottom:192.000000pt;}
.yc_c01088{bottom:216.000000pt;}
.yb_c01088{bottom:240.000000pt;}
.ya_c01088{bottom:264.000000pt;}
.y8_c01088{bottom:304.000000pt;}
.y7_c01088{bottom:829.333333pt;}
.y6_c01088{bottom:853.333333pt;}
.y5_c01088{bottom:877.333333pt;}
.y4_c01088{bottom:901.333333pt;}
.y3_c01088{bottom:925.333333pt;}
.y2_c01088{bottom:949.333333pt;}
.y1_c01088{bottom:973.333333pt;}
.y10_c01088{bottom:1061.333333pt;}
.h4_c01088{height:37.007812pt;}
.h1_c01088{height:45.500000pt;}
.h2_c01088{height:45.562500pt;}
.h5_c01088{height:49.843750pt;}
.h3_c01088{height:497.333333pt;}
.h0_c01088{height:1122.666667pt;}
.w1_c01088{width:608.399867pt;}
.w0_c01088{width:793.333333pt;}
.x0_c01088{left:0.000000pt;}
.x1_c01088{left:119.811027pt;}
.x3_c01088{left:129.069093pt;}
.x2_c01088{left:130.666667pt;}
.x4_c01088{left:384.457867pt;}
.x5_c01088{left:726.866800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2df8d075e2c8ed18a245a92c.woff2')format("woff");}.ff1_c01089{font-family:ff1_c01089;line-height:0.987793;font-style:normal;font-weight:normal;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_27963007b71cb0a759c3c1f1.woff2')format("woff");}.ff2_c01089{font-family:ff2_c01089;line-height:0.934082;font-style:normal;font-weight:normal;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_cabf60b6cd02470eae58f56b.woff2')format("woff");}.ff3_c01089{font-family:ff3_c01089;line-height:0.756836;font-style:normal;font-weight:normal;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_0040359389ba28e52d76fae7.woff2')format("woff");}.ff4_c01089{font-family:ff4_c01089;line-height:1.155762;font-style: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);}
.v0_c01089{vertical-align:0.000000px;}
.ls0_c01089{letter-spacing:0.000000px;}
.ls1_c01089{letter-spacing:0.012000px;}
.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:0.000000px;}
._7_c01089{margin-left:-3.988800px;}
._3_c01089{margin-left:-2.966400px;}
._1_c01089{margin-left:-1.389600px;}
._4_c01089{width:1.036800px;}
._0_c01089{width:2.808000px;}
._5_c01089{width:3.945600px;}
._2_c01089{width:5.335200px;}
._c_c01089{width:10.224000px;}
._6_c01089{width:11.311200px;}
._a_c01089{width:13.125600px;}
._9_c01089{width:14.140800px;}
._b_c01089{width:16.444800px;}
._8_c01089{width:18.115200px;}
.fc0_c01089{color:rgb(0,0,0);}
.fs0_c01089{font-size:54.000000px;}
.fs2_c01089{font-size:60.000000px;}
.fs1_c01089{font-size:72.000000px;}
.y0_c01089{bottom:0.000000px;}
.y2_c01089{bottom:12.000000px;}
.y9_c01089{bottom:67.500000px;}
.y7_c01089{bottom:133.500000px;}
.y6_c01089{bottom:160.500000px;}
.y5_c01089{bottom:205.500000px;}
.y4_c01089{bottom:640.500000px;}
.y3_c01089{bottom:667.500000px;}
.y1_c01089{bottom:712.500000px;}
.y8_c01089{bottom:1194.000000px;}
.h2_c01089{height:42.292969px;}
.h6_c01089{height:44.208984px;}
.h3_c01089{height:51.257812px;}
.h5_c01089{height:56.074219px;}
.h1_c01089{height:400.500000px;}
.h4_c01089{height:403.500000px;}
.h0_c01089{height:1263.000000px;}
.w1_c01089{width:684.449850px;}
.w0_c01089{width:892.500000px;}
.x0_c01089{left:0.000000px;}
.x3_c01089{left:49.748025px;}
.x1_c01089{left:61.500000px;}
.x2_c01089{left:159.602550px;}
.x4_c01089{left:257.635650px;}
@media print{
.v0_c01089{vertical-align:0.000000pt;}
.ls0_c01089{letter-spacing:0.000000pt;}
.ls1_c01089{letter-spacing:0.010667pt;}
.ws0_c01089{word-spacing:0.000000pt;}
._7_c01089{margin-left:-3.545600pt;}
._3_c01089{margin-left:-2.636800pt;}
._1_c01089{margin-left:-1.235200pt;}
._4_c01089{width:0.921600pt;}
._0_c01089{width:2.496000pt;}
._5_c01089{width:3.507200pt;}
._2_c01089{width:4.742400pt;}
._c_c01089{width:9.088000pt;}
._6_c01089{width:10.054400pt;}
._a_c01089{width:11.667200pt;}
._9_c01089{width:12.569600pt;}
._b_c01089{width:14.617600pt;}
._8_c01089{width:16.102400pt;}
.fs0_c01089{font-size:48.000000pt;}
.fs2_c01089{font-size:53.333333pt;}
.fs1_c01089{font-size:64.000000pt;}
.y0_c01089{bottom:0.000000pt;}
.y2_c01089{bottom:10.666667pt;}
.y9_c01089{bottom:60.000000pt;}
.y7_c01089{bottom:118.666667pt;}
.y6_c01089{bottom:142.666667pt;}
.y5_c01089{bottom:182.666667pt;}
.y4_c01089{bottom:569.333333pt;}
.y3_c01089{bottom:593.333333pt;}
.y1_c01089{bottom:633.333333pt;}
.y8_c01089{bottom:1061.333333pt;}
.h2_c01089{height:37.593750pt;}
.h6_c01089{height:39.296875pt;}
.h3_c01089{height:45.562500pt;}
.h5_c01089{height:49.843750pt;}
.h1_c01089{height:356.000000pt;}
.h4_c01089{height:358.666667pt;}
.h0_c01089{height:1122.666667pt;}
.w1_c01089{width:608.399867pt;}
.w0_c01089{width:793.333333pt;}
.x0_c01089{left:0.000000pt;}
.x3_c01089{left:44.220467pt;}
.x1_c01089{left:54.666667pt;}
.x2_c01089{left:141.868933pt;}
.x4_c01089{left:229.009467pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d54385569812cf3d06ad9296.woff2')format("woff");}.ff1_c01090{font-family:ff1_c01090;line-height:0.933105;font-style:normal;font-weight:normal;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_3fec62da1390a7de0ed8cee2.woff2')format("woff");}.ff2_c01090{font-family:ff2_c01090;line-height:0.987793;font-style:normal;font-weight:normal;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_f9542091b633d17b37a4a59f.woff2')format("woff");}.ff3_c01090{font-family:ff3_c01090;line-height:1.155762;font-style: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;}
.ls2_c01090{letter-spacing:0.000000px;}
.ls1_c01090{letter-spacing:0.012000px;}
.ls0_c01090{letter-spacing:0.021600px;}
.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;}
}
.ws0_c01090{word-spacing:0.000000px;}
._3_c01090{margin-left:-4.406400px;}
._5_c01090{margin-left:-3.146400px;}
._9_c01090{margin-left:-1.188000px;}
._1_c01090{width:1.231200px;}
._a_c01090{width:2.361600px;}
._7_c01090{width:4.341600px;}
._8_c01090{width:5.637600px;}
._2_c01090{width:7.516800px;}
._0_c01090{width:8.740800px;}
._6_c01090{width:11.973600px;}
._4_c01090{width:13.240800px;}
.fc0_c01090{color:rgb(0,0,0);}
.fs1_c01090{font-size:54.000000px;}
.fs2_c01090{font-size:60.000000px;}
.fs0_c01090{font-size:72.000000px;}
.y0_c01090{bottom:0.000000px;}
.y4_c01090{bottom:12.000000px;}
.ya_c01090{bottom:67.500000px;}
.y8_c01090{bottom:142.500000px;}
.y7_c01090{bottom:610.500000px;}
.y6_c01090{bottom:637.500000px;}
.y5_c01090{bottom:664.500000px;}
.y3_c01090{bottom:709.500000px;}
.y2_c01090{bottom:1068.000000px;}
.y1_c01090{bottom:1095.000000px;}
.y9_c01090{bottom:1194.000000px;}
.h3_c01090{height:42.292969px;}
.h1_c01090{height:51.187500px;}
.h5_c01090{height:56.074219px;}
.h2_c01090{height:327.000000px;}
.h4_c01090{height:436.500000px;}
.h0_c01090{height:1263.000000px;}
.w1_c01090{width:684.449850px;}
.w0_c01090{width:892.500000px;}
.x0_c01090{left:0.000000px;}
.x1_c01090{left:134.787405px;}
.x3_c01090{left:147.000000px;}
.x2_c01090{left:259.883550px;}
.x4_c01090{left:263.113500px;}
.x5_c01090{left:432.515100px;}
.x6_c01090{left:817.725150px;}
@media print{
.v0_c01090{vertical-align:0.000000pt;}
.ls2_c01090{letter-spacing:0.000000pt;}
.ls1_c01090{letter-spacing:0.010667pt;}
.ls0_c01090{letter-spacing:0.019200pt;}
.ws0_c01090{word-spacing:0.000000pt;}
._3_c01090{margin-left:-3.916800pt;}
._5_c01090{margin-left:-2.796800pt;}
._9_c01090{margin-left:-1.056000pt;}
._1_c01090{width:1.094400pt;}
._a_c01090{width:2.099200pt;}
._7_c01090{width:3.859200pt;}
._8_c01090{width:5.011200pt;}
._2_c01090{width:6.681600pt;}
._0_c01090{width:7.769600pt;}
._6_c01090{width:10.643200pt;}
._4_c01090{width:11.769600pt;}
.fs1_c01090{font-size:48.000000pt;}
.fs2_c01090{font-size:53.333333pt;}
.fs0_c01090{font-size:64.000000pt;}
.y0_c01090{bottom:0.000000pt;}
.y4_c01090{bottom:10.666667pt;}
.ya_c01090{bottom:60.000000pt;}
.y8_c01090{bottom:126.666667pt;}
.y7_c01090{bottom:542.666667pt;}
.y6_c01090{bottom:566.666667pt;}
.y5_c01090{bottom:590.666667pt;}
.y3_c01090{bottom:630.666667pt;}
.y2_c01090{bottom:949.333333pt;}
.y1_c01090{bottom:973.333333pt;}
.y9_c01090{bottom:1061.333333pt;}
.h3_c01090{height:37.593750pt;}
.h1_c01090{height:45.500000pt;}
.h5_c01090{height:49.843750pt;}
.h2_c01090{height:290.666667pt;}
.h4_c01090{height:388.000000pt;}
.h0_c01090{height:1122.666667pt;}
.w1_c01090{width:608.399867pt;}
.w0_c01090{width:793.333333pt;}
.x0_c01090{left:0.000000pt;}
.x1_c01090{left:119.811027pt;}
.x3_c01090{left:130.666667pt;}
.x2_c01090{left:231.007600pt;}
.x4_c01090{left:233.878667pt;}
.x5_c01090{left:384.457867pt;}
.x6_c01090{left:726.866800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a7b51809e846fd07f604b245.woff2')format("woff");}.ff1_c01091{font-family:ff1_c01091;line-height:0.933105;font-style:normal;font-weight:normal;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_cff781de70be42be92e3b5ff.woff2')format("woff");}.ff2_c01091{font-family:ff2_c01091;line-height:0.958008;font-style:normal;font-weight:normal;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_f1cf44f286112a44c1f59b05.woff2')format("woff");}.ff3_c01091{font-family:ff3_c01091;line-height:0.756836;font-style:normal;font-weight:normal;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_7ee974f7e0aaec5f0effc563.woff2')format("woff");}.ff4_c01091{font-family:ff4_c01091;line-height:1.155762;font-style: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;}
.ls3_c01091{letter-spacing:-0.005400px;}
.ls1_c01091{letter-spacing:0.000000px;}
.ls4_c01091{letter-spacing:0.012000px;}
.ls2_c01091{letter-spacing:0.021600px;}
.ls0_c01091{letter-spacing:2.321400px;}
.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:0.000000px;}
._5_c01091{margin-left:-3.672000px;}
._3_c01091{margin-left:-1.720800px;}
._0_c01091{width:2.325600px;}
._8_c01091{width:3.686400px;}
._1_c01091{width:5.536800px;}
._7_c01091{width:6.552000px;}
._2_c01091{width:7.977600px;}
._4_c01091{width:9.547200px;}
._6_c01091{width:11.584800px;}
.fc0_c01091{color:rgb(0,0,0);}
.fs2_c01091{font-size:54.000000px;}
.fs3_c01091{font-size:60.000000px;}
.fs1_c01091{font-size:66.000000px;}
.fs0_c01091{font-size:72.000000px;}
.y0_c01091{bottom:0.000000px;}
.y4_c01091{bottom:12.000000px;}
.y9_c01091{bottom:67.500000px;}
.y7_c01091{bottom:172.500000px;}
.y6_c01091{bottom:199.500000px;}
.y5_c01091{bottom:223.500000px;}
.y3_c01091{bottom:591.000000px;}
.y2_c01091{bottom:1068.000000px;}
.y1_c01091{bottom:1095.000000px;}
.y8_c01091{bottom:1194.000000px;}
.h6_c01091{height:44.208984px;}
.h3_c01091{height:50.756836px;}
.h1_c01091{height:51.187500px;}
.h5_c01091{height:56.074219px;}
.h4_c01091{height:339.000000px;}
.h2_c01091{height:445.500000px;}
.h0_c01091{height:1263.000000px;}
.w1_c01091{width:684.449850px;}
.w0_c01091{width:892.500000px;}
.x0_c01091{left:0.000000px;}
.x1_c01091{left:49.748025px;}
.x2_c01091{left:61.500000px;}
.x4_c01091{left:178.903350px;}
.x3_c01091{left:187.311150px;}
@media print{
.v0_c01091{vertical-align:0.000000pt;}
.ls3_c01091{letter-spacing:-0.004800pt;}
.ls1_c01091{letter-spacing:0.000000pt;}
.ls4_c01091{letter-spacing:0.010667pt;}
.ls2_c01091{letter-spacing:0.019200pt;}
.ls0_c01091{letter-spacing:2.063467pt;}
.ws0_c01091{word-spacing:0.000000pt;}
._5_c01091{margin-left:-3.264000pt;}
._3_c01091{margin-left:-1.529600pt;}
._0_c01091{width:2.067200pt;}
._8_c01091{width:3.276800pt;}
._1_c01091{width:4.921600pt;}
._7_c01091{width:5.824000pt;}
._2_c01091{width:7.091200pt;}
._4_c01091{width:8.486400pt;}
._6_c01091{width:10.297600pt;}
.fs2_c01091{font-size:48.000000pt;}
.fs3_c01091{font-size:53.333333pt;}
.fs1_c01091{font-size:58.666667pt;}
.fs0_c01091{font-size:64.000000pt;}
.y0_c01091{bottom:0.000000pt;}
.y4_c01091{bottom:10.666667pt;}
.y9_c01091{bottom:60.000000pt;}
.y7_c01091{bottom:153.333333pt;}
.y6_c01091{bottom:177.333333pt;}
.y5_c01091{bottom:198.666667pt;}
.y3_c01091{bottom:525.333333pt;}
.y2_c01091{bottom:949.333333pt;}
.y1_c01091{bottom:973.333333pt;}
.y8_c01091{bottom:1061.333333pt;}
.h6_c01091{height:39.296875pt;}
.h3_c01091{height:45.117188pt;}
.h1_c01091{height:45.500000pt;}
.h5_c01091{height:49.843750pt;}
.h4_c01091{height:301.333333pt;}
.h2_c01091{height:396.000000pt;}
.h0_c01091{height:1122.666667pt;}
.w1_c01091{width:608.399867pt;}
.w0_c01091{width:793.333333pt;}
.x0_c01091{left:0.000000pt;}
.x1_c01091{left:44.220467pt;}
.x2_c01091{left:54.666667pt;}
.x4_c01091{left:159.025200pt;}
.x3_c01091{left:166.498800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a24e8f671eb9053fbebb3cf6.woff2')format("woff");}.ff1_c01092{font-family:ff1_c01092;line-height:0.976074;font-style:normal;font-weight:normal;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_93803295bd74022a47856522.woff2')format("woff");}.ff2_c01092{font-family:ff2_c01092;line-height:0.933105;font-style:normal;font-weight:normal;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_96711344d259f1ecc1f5aa54.woff2')format("woff");}.ff3_c01092{font-family:ff3_c01092;line-height:1.155762;font-style: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);}
.v0_c01092{vertical-align:0.000000px;}
.ls2_c01092{letter-spacing:0.000000px;}
.ls0_c01092{letter-spacing:0.012000px;}
.ls1_c01092{letter-spacing:0.021600px;}
.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:0.000000px;}
._2_c01092{margin-left:-4.298400px;}
._0_c01092{margin-left:-2.887200px;}
._7_c01092{margin-left:-1.778400px;}
._9_c01092{width:1.641600px;}
._b_c01092{width:3.420000px;}
._4_c01092{width:4.464000px;}
._e_c01092{width:5.846400px;}
._5_c01092{width:7.012800px;}
._c_c01092{width:8.546400px;}
._a_c01092{width:9.849600px;}
._6_c01092{width:11.505600px;}
._8_c01092{width:13.269600px;}
._1_c01092{width:14.364000px;}
._3_c01092{width:15.818400px;}
._f_c01092{width:16.999200px;}
._d_c01092{width:18.194400px;}
.fc0_c01092{color:rgb(0,0,0);}
.fs0_c01092{font-size:54.000000px;}
.fs2_c01092{font-size:60.000000px;}
.fs1_c01092{font-size:72.000000px;}
.y0_c01092{bottom:0.000000px;}
.y2_c01092{bottom:12.000000px;}
.yc_c01092{bottom:67.500000px;}
.ya_c01092{bottom:142.500000px;}
.y9_c01092{bottom:169.500000px;}
.y8_c01092{bottom:214.500000px;}
.y7_c01092{bottom:648.000000px;}
.y6_c01092{bottom:675.000000px;}
.y5_c01092{bottom:702.000000px;}
.y4_c01092{bottom:729.000000px;}
.y3_c01092{bottom:756.000000px;}
.y1_c01092{bottom:801.000000px;}
.yb_c01092{bottom:1194.000000px;}
.h2_c01092{height:42.292969px;}
.h3_c01092{height:51.187500px;}
.h5_c01092{height:56.074219px;}
.h1_c01092{height:312.000000px;}
.h4_c01092{height:402.000000px;}
.h0_c01092{height:1263.000000px;}
.w1_c01092{width:684.449850px;}
.w0_c01092{width:892.500000px;}
.x0_c01092{left:0.000000px;}
.x2_c01092{left:17.526210px;}
.x3_c01092{left:134.787405px;}
.x1_c01092{left:147.000000px;}
.x4_c01092{left:202.281150px;}
.x5_c01092{left:432.515100px;}
.x6_c01092{left:817.725150px;}
@media print{
.v0_c01092{vertical-align:0.000000pt;}
.ls2_c01092{letter-spacing:0.000000pt;}
.ls0_c01092{letter-spacing:0.010667pt;}
.ls1_c01092{letter-spacing:0.019200pt;}
.ws0_c01092{word-spacing:0.000000pt;}
._2_c01092{margin-left:-3.820800pt;}
._0_c01092{margin-left:-2.566400pt;}
._7_c01092{margin-left:-1.580800pt;}
._9_c01092{width:1.459200pt;}
._b_c01092{width:3.040000pt;}
._4_c01092{width:3.968000pt;}
._e_c01092{width:5.196800pt;}
._5_c01092{width:6.233600pt;}
._c_c01092{width:7.596800pt;}
._a_c01092{width:8.755200pt;}
._6_c01092{width:10.227200pt;}
._8_c01092{width:11.795200pt;}
._1_c01092{width:12.768000pt;}
._3_c01092{width:14.060800pt;}
._f_c01092{width:15.110400pt;}
._d_c01092{width:16.172800pt;}
.fs0_c01092{font-size:48.000000pt;}
.fs2_c01092{font-size:53.333333pt;}
.fs1_c01092{font-size:64.000000pt;}
.y0_c01092{bottom:0.000000pt;}
.y2_c01092{bottom:10.666667pt;}
.yc_c01092{bottom:60.000000pt;}
.ya_c01092{bottom:126.666667pt;}
.y9_c01092{bottom:150.666667pt;}
.y8_c01092{bottom:190.666667pt;}
.y7_c01092{bottom:576.000000pt;}
.y6_c01092{bottom:600.000000pt;}
.y5_c01092{bottom:624.000000pt;}
.y4_c01092{bottom:648.000000pt;}
.y3_c01092{bottom:672.000000pt;}
.y1_c01092{bottom:712.000000pt;}
.yb_c01092{bottom:1061.333333pt;}
.h2_c01092{height:37.593750pt;}
.h3_c01092{height:45.500000pt;}
.h5_c01092{height:49.843750pt;}
.h1_c01092{height:277.333333pt;}
.h4_c01092{height:357.333333pt;}
.h0_c01092{height:1122.666667pt;}
.w1_c01092{width:608.399867pt;}
.w0_c01092{width:793.333333pt;}
.x0_c01092{left:0.000000pt;}
.x2_c01092{left:15.578853pt;}
.x3_c01092{left:119.811027pt;}
.x1_c01092{left:130.666667pt;}
.x4_c01092{left:179.805467pt;}
.x5_c01092{left:384.457867pt;}
.x6_c01092{left:726.866800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b35026263993409d38202fa5.woff2')format("woff");}.ff1_c01093{font-family:ff1_c01093;line-height:0.933105;font-style:normal;font-weight:normal;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_94010a6dff24d52278f1b17b.woff2')format("woff");}.ff2_c01093{font-family:ff2_c01093;line-height:0.987793;font-style:normal;font-weight:normal;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_b5228a3daeabc81f1cf2540e.woff2')format("woff");}.ff3_c01093{font-family:ff3_c01093;line-height:0.756348;font-style:normal;font-weight:normal;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_72071bab99b370f21cec60f7.woff2')format("woff");}.ff4_c01093{font-family:ff4_c01093;line-height:1.155762;font-style: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;}
.ls0_c01093{letter-spacing:0.000000px;}
.ls2_c01093{letter-spacing:0.012000px;}
.ls1_c01093{letter-spacing:0.021600px;}
.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;}
}
.ws0_c01093{word-spacing:0.000000px;}
._5_c01093{margin-left:-10.584000px;}
._7_c01093{margin-left:-7.192800px;}
._2_c01093{margin-left:-3.362400px;}
._6_c01093{margin-left:-1.569600px;}
._8_c01093{width:1.310400px;}
._1_c01093{width:2.376000px;}
._4_c01093{width:3.434400px;}
._0_c01093{width:4.744800px;}
._3_c01093{width:8.330400px;}
.fc0_c01093{color:rgb(0,0,0);}
.fs1_c01093{font-size:54.000000px;}
.fs2_c01093{font-size:60.000000px;}
.fs0_c01093{font-size:72.000000px;}
.y0_c01093{bottom:0.000000px;}
.y4_c01093{bottom:12.000000px;}
.y9_c01093{bottom:67.500000px;}
.y7_c01093{bottom:150.000000px;}
.y6_c01093{bottom:474.000000px;}
.y5_c01093{bottom:501.000000px;}
.y3_c01093{bottom:546.000000px;}
.y2_c01093{bottom:1068.000000px;}
.y1_c01093{bottom:1095.000000px;}
.y8_c01093{bottom:1194.000000px;}
.h3_c01093{height:42.292969px;}
.h6_c01093{height:44.208984px;}
.h1_c01093{height:51.187500px;}
.h5_c01093{height:56.074219px;}
.h4_c01093{height:292.500000px;}
.h2_c01093{height:490.500000px;}
.h0_c01093{height:1263.000000px;}
.w1_c01093{width:684.449850px;}
.w0_c01093{width:892.500000px;}
.x0_c01093{left:0.000000px;}
.x1_c01093{left:49.748025px;}
.x2_c01093{left:61.500000px;}
.x4_c01093{left:178.784700px;}
.x3_c01093{left:201.694500px;}
@media print{
.v0_c01093{vertical-align:0.000000pt;}
.ls0_c01093{letter-spacing:0.000000pt;}
.ls2_c01093{letter-spacing:0.010667pt;}
.ls1_c01093{letter-spacing:0.019200pt;}
.ws0_c01093{word-spacing:0.000000pt;}
._5_c01093{margin-left:-9.408000pt;}
._7_c01093{margin-left:-6.393600pt;}
._2_c01093{margin-left:-2.988800pt;}
._6_c01093{margin-left:-1.395200pt;}
._8_c01093{width:1.164800pt;}
._1_c01093{width:2.112000pt;}
._4_c01093{width:3.052800pt;}
._0_c01093{width:4.217600pt;}
._3_c01093{width:7.404800pt;}
.fs1_c01093{font-size:48.000000pt;}
.fs2_c01093{font-size:53.333333pt;}
.fs0_c01093{font-size:64.000000pt;}
.y0_c01093{bottom:0.000000pt;}
.y4_c01093{bottom:10.666667pt;}
.y9_c01093{bottom:60.000000pt;}
.y7_c01093{bottom:133.333333pt;}
.y6_c01093{bottom:421.333333pt;}
.y5_c01093{bottom:445.333333pt;}
.y3_c01093{bottom:485.333333pt;}
.y2_c01093{bottom:949.333333pt;}
.y1_c01093{bottom:973.333333pt;}
.y8_c01093{bottom:1061.333333pt;}
.h3_c01093{height:37.593750pt;}
.h6_c01093{height:39.296875pt;}
.h1_c01093{height:45.500000pt;}
.h5_c01093{height:49.843750pt;}
.h4_c01093{height:260.000000pt;}
.h2_c01093{height:436.000000pt;}
.h0_c01093{height:1122.666667pt;}
.w1_c01093{width:608.399867pt;}
.w0_c01093{width:793.333333pt;}
.x0_c01093{left:0.000000pt;}
.x1_c01093{left:44.220467pt;}
.x2_c01093{left:54.666667pt;}
.x4_c01093{left:158.919733pt;}
.x3_c01093{left:179.284000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cb95b475d27870bffde87882.woff2')format("woff");}.ff1_c01094{font-family:ff1_c01094;line-height:0.963867;font-style:normal;font-weight:normal;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_d6587ac50602f51f54eea8a9.woff2')format("woff");}.ff2_c01094{font-family:ff2_c01094;line-height:0.933105;font-style:normal;font-weight:normal;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_e0c8f25bbd1bf6327be49301.woff2')format("woff");}.ff3_c01094{font-family:ff3_c01094;line-height:1.155762;font-style: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;}
.ls2_c01094{letter-spacing:0.000000px;}
.ls0_c01094{letter-spacing:0.012000px;}
.ls1_c01094{letter-spacing:0.021600px;}
.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:0.000000px;}
._1_c01094{margin-left:-4.536000px;}
._3_c01094{margin-left:-2.613600px;}
._8_c01094{margin-left:-1.476000px;}
._5_c01094{width:1.512000px;}
._0_c01094{width:3.052800px;}
._d_c01094{width:4.190400px;}
._4_c01094{width:5.378400px;}
._2_c01094{width:7.005600px;}
._f_c01094{width:8.611200px;}
._b_c01094{width:10.080000px;}
._e_c01094{width:11.692800px;}
._7_c01094{width:13.932000px;}
._6_c01094{width:15.472800px;}
._9_c01094{width:16.956000px;}
._a_c01094{width:18.057600px;}
._c_c01094{width:21.506400px;}
.fc1_c01094{color:transparent;}
.fc0_c01094{color:rgb(0,0,0);}
.fs0_c01094{font-size:54.000000px;}
.fs2_c01094{font-size:60.000000px;}
.fs1_c01094{font-size:72.000000px;}
.y0_c01094{bottom:0.000000px;}
.y2_c01094{bottom:12.000000px;}
.yb_c01094{bottom:67.500000px;}
.y9_c01094{bottom:163.500000px;}
.y8_c01094{bottom:490.500000px;}
.y7_c01094{bottom:517.500000px;}
.y6_c01094{bottom:544.500000px;}
.y5_c01094{bottom:571.500000px;}
.y4_c01094{bottom:598.500000px;}
.y3_c01094{bottom:625.500000px;}
.y1_c01094{bottom:670.500000px;}
.ya_c01094{bottom:1194.000000px;}
.h2_c01094{height:41.633789px;}
.h3_c01094{height:51.187500px;}
.h5_c01094{height:56.074219px;}
.h4_c01094{height:295.500000px;}
.h1_c01094{height:442.500000px;}
.h0_c01094{height:1263.000000px;}
.w1_c01094{width:684.449850px;}
.w0_c01094{width:892.500000px;}
.x0_c01094{left:0.000000px;}
.x3_c01094{left:134.787405px;}
.x1_c01094{left:147.000000px;}
.x4_c01094{left:225.042600px;}
.x2_c01094{left:327.274800px;}
.x5_c01094{left:432.515100px;}
.x6_c01094{left:817.725150px;}
@media print{
.v0_c01094{vertical-align:0.000000pt;}
.ls2_c01094{letter-spacing:0.000000pt;}
.ls0_c01094{letter-spacing:0.010667pt;}
.ls1_c01094{letter-spacing:0.019200pt;}
.ws0_c01094{word-spacing:0.000000pt;}
._1_c01094{margin-left:-4.032000pt;}
._3_c01094{margin-left:-2.323200pt;}
._8_c01094{margin-left:-1.312000pt;}
._5_c01094{width:1.344000pt;}
._0_c01094{width:2.713600pt;}
._d_c01094{width:3.724800pt;}
._4_c01094{width:4.780800pt;}
._2_c01094{width:6.227200pt;}
._f_c01094{width:7.654400pt;}
._b_c01094{width:8.960000pt;}
._e_c01094{width:10.393600pt;}
._7_c01094{width:12.384000pt;}
._6_c01094{width:13.753600pt;}
._9_c01094{width:15.072000pt;}
._a_c01094{width:16.051200pt;}
._c_c01094{width:19.116800pt;}
.fs0_c01094{font-size:48.000000pt;}
.fs2_c01094{font-size:53.333333pt;}
.fs1_c01094{font-size:64.000000pt;}
.y0_c01094{bottom:0.000000pt;}
.y2_c01094{bottom:10.666667pt;}
.yb_c01094{bottom:60.000000pt;}
.y9_c01094{bottom:145.333333pt;}
.y8_c01094{bottom:436.000000pt;}
.y7_c01094{bottom:460.000000pt;}
.y6_c01094{bottom:484.000000pt;}
.y5_c01094{bottom:508.000000pt;}
.y4_c01094{bottom:532.000000pt;}
.y3_c01094{bottom:556.000000pt;}
.y1_c01094{bottom:596.000000pt;}
.ya_c01094{bottom:1061.333333pt;}
.h2_c01094{height:37.007812pt;}
.h3_c01094{height:45.500000pt;}
.h5_c01094{height:49.843750pt;}
.h4_c01094{height:262.666667pt;}
.h1_c01094{height:393.333333pt;}
.h0_c01094{height:1122.666667pt;}
.w1_c01094{width:608.399867pt;}
.w0_c01094{width:793.333333pt;}
.x0_c01094{left:0.000000pt;}
.x3_c01094{left:119.811027pt;}
.x1_c01094{left:130.666667pt;}
.x4_c01094{left:200.037867pt;}
.x2_c01094{left:290.910933pt;}
.x5_c01094{left:384.457867pt;}
.x6_c01094{left:726.866800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eca234aab45a1d1ea12a8825.woff2')format("woff");}.ff1_c01095{font-family:ff1_c01095;line-height:0.934082;font-style:normal;font-weight:normal;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_1e754aee839ba51ccc9471cd.woff2')format("woff");}.ff2_c01095{font-family:ff2_c01095;line-height:0.975586;font-style:normal;font-weight:normal;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_e4b7d75780ced1bfbd6ba8ed.woff2')format("woff");}.ff3_c01095{font-family:ff3_c01095;line-height:0.756348;font-style:normal;font-weight:normal;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_7e7fe677ae0e7db36278bc1c.woff2')format("woff");}.ff4_c01095{font-family:ff4_c01095;line-height:1.155762;font-style: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);}
.v0_c01095{vertical-align:0.000000px;}
.ls1_c01095{letter-spacing:0.000000px;}
.ls2_c01095{letter-spacing:0.012000px;}
.ls0_c01095{letter-spacing:0.021600px;}
.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:-19.800000px;}
.ws1_c01095{word-spacing:0.000000px;}
._a_c01095{margin-left:-4.514400px;}
._5_c01095{margin-left:-3.340800px;}
._3_c01095{margin-left:-1.648800px;}
._7_c01095{width:1.245600px;}
._1_c01095{width:2.678400px;}
._f_c01095{width:3.772800px;}
._2_c01095{width:5.004000px;}
._0_c01095{width:6.199200px;}
._4_c01095{width:7.322400px;}
._8_c01095{width:8.330400px;}
._6_c01095{width:9.590400px;}
._e_c01095{width:11.901600px;}
._d_c01095{width:14.148000px;}
._c_c01095{width:15.609600px;}
._9_c01095{width:16.862400px;}
._b_c01095{width:21.362400px;}
.fc0_c01095{color:rgb(0,0,0);}
.fs1_c01095{font-size:54.000000px;}
.fs2_c01095{font-size:60.000000px;}
.fs0_c01095{font-size:72.000000px;}
.y0_c01095{bottom:0.000000px;}
.y5_c01095{bottom:12.000000px;}
.yc_c01095{bottom:67.500000px;}
.ya_c01095{bottom:133.500000px;}
.y9_c01095{bottom:543.000000px;}
.y8_c01095{bottom:570.000000px;}
.y7_c01095{bottom:597.000000px;}
.y6_c01095{bottom:624.000000px;}
.y4_c01095{bottom:669.000000px;}
.y3_c01095{bottom:1041.000000px;}
.y2_c01095{bottom:1068.000000px;}
.y1_c01095{bottom:1095.000000px;}
.yb_c01095{bottom:1194.000000px;}
.h3_c01095{height:41.633789px;}
.h6_c01095{height:44.208984px;}
.h1_c01095{height:51.257812px;}
.h5_c01095{height:56.074219px;}
.h2_c01095{height:340.500000px;}
.h4_c01095{height:378.000000px;}
.h0_c01095{height:1263.000000px;}
.w1_c01095{width:684.449850px;}
.w0_c01095{width:892.500000px;}
.x0_c01095{left:0.000000px;}
.x3_c01095{left:24.019140px;}
.x1_c01095{left:49.748025px;}
.x2_c01095{left:61.500000px;}
.x4_c01095{left:239.511600px;}
@media print{
.v0_c01095{vertical-align:0.000000pt;}
.ls1_c01095{letter-spacing:0.000000pt;}
.ls2_c01095{letter-spacing:0.010667pt;}
.ls0_c01095{letter-spacing:0.019200pt;}
.ws0_c01095{word-spacing:-17.600000pt;}
.ws1_c01095{word-spacing:0.000000pt;}
._a_c01095{margin-left:-4.012800pt;}
._5_c01095{margin-left:-2.969600pt;}
._3_c01095{margin-left:-1.465600pt;}
._7_c01095{width:1.107200pt;}
._1_c01095{width:2.380800pt;}
._f_c01095{width:3.353600pt;}
._2_c01095{width:4.448000pt;}
._0_c01095{width:5.510400pt;}
._4_c01095{width:6.508800pt;}
._8_c01095{width:7.404800pt;}
._6_c01095{width:8.524800pt;}
._e_c01095{width:10.579200pt;}
._d_c01095{width:12.576000pt;}
._c_c01095{width:13.875200pt;}
._9_c01095{width:14.988800pt;}
._b_c01095{width:18.988800pt;}
.fs1_c01095{font-size:48.000000pt;}
.fs2_c01095{font-size:53.333333pt;}
.fs0_c01095{font-size:64.000000pt;}
.y0_c01095{bottom:0.000000pt;}
.y5_c01095{bottom:10.666667pt;}
.yc_c01095{bottom:60.000000pt;}
.ya_c01095{bottom:118.666667pt;}
.y9_c01095{bottom:482.666667pt;}
.y8_c01095{bottom:506.666667pt;}
.y7_c01095{bottom:530.666667pt;}
.y6_c01095{bottom:554.666667pt;}
.y4_c01095{bottom:594.666667pt;}
.y3_c01095{bottom:925.333333pt;}
.y2_c01095{bottom:949.333333pt;}
.y1_c01095{bottom:973.333333pt;}
.yb_c01095{bottom:1061.333333pt;}
.h3_c01095{height:37.007812pt;}
.h6_c01095{height:39.296875pt;}
.h1_c01095{height:45.562500pt;}
.h5_c01095{height:49.843750pt;}
.h2_c01095{height:302.666667pt;}
.h4_c01095{height:336.000000pt;}
.h0_c01095{height:1122.666667pt;}
.w1_c01095{width:608.399867pt;}
.w0_c01095{width:793.333333pt;}
.x0_c01095{left:0.000000pt;}
.x3_c01095{left:21.350347pt;}
.x1_c01095{left:44.220467pt;}
.x2_c01095{left:54.666667pt;}
.x4_c01095{left:212.899200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a6065b22ddf64f4f4bdc8b04.woff2')format("woff");}.ff1_c01096{font-family:ff1_c01096;line-height:0.934082;font-style:normal;font-weight:normal;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_0257bb7ac3ae1f4851284e64.woff2')format("woff");}.ff2_c01096{font-family:ff2_c01096;line-height:0.976074;font-style:normal;font-weight:normal;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_5746968211694e7aacb82248.woff2')format("woff");}.ff3_c01096{font-family:ff3_c01096;line-height:1.155762;font-style: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;}
.ls2_c01096{letter-spacing:0.000000px;}
.ls1_c01096{letter-spacing:0.012000px;}
.ls0_c01096{letter-spacing:0.021600px;}
.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;}
}
.ws0_c01096{word-spacing:0.000000px;}
._8_c01096{margin-left:-17.064000px;}
._0_c01096{margin-left:-10.584000px;}
._7_c01096{margin-left:-6.485064px;}
._9_c01096{margin-left:-3.448800px;}
._3_c01096{margin-left:-1.850400px;}
._1_c01096{width:1.418400px;}
._6_c01096{width:2.440800px;}
._a_c01096{width:3.736800px;}
._2_c01096{width:4.874400px;}
._5_c01096{width:6.228000px;}
._4_c01096{width:8.150400px;}
._c_c01096{width:9.676800px;}
._b_c01096{width:11.491200px;}
.fc0_c01096{color:rgb(0,0,0);}
.fs1_c01096{font-size:54.000000px;}
.fs2_c01096{font-size:60.000000px;}
.fs0_c01096{font-size:72.000000px;}
.y0_c01096{bottom:0.000000px;}
.y4_c01096{bottom:12.000000px;}
.ye_c01096{bottom:67.500000px;}
.yc_c01096{bottom:142.500000px;}
.yb_c01096{bottom:169.500000px;}
.ya_c01096{bottom:196.500000px;}
.y9_c01096{bottom:223.500000px;}
.y8_c01096{bottom:250.500000px;}
.y7_c01096{bottom:295.500000px;}
.y6_c01096{bottom:609.000000px;}
.y5_c01096{bottom:636.000000px;}
.y3_c01096{bottom:681.000000px;}
.y2_c01096{bottom:1068.000000px;}
.y1_c01096{bottom:1095.000000px;}
.yd_c01096{bottom:1194.000000px;}
.h3_c01096{height:42.292969px;}
.h1_c01096{height:51.257812px;}
.h5_c01096{height:56.074219px;}
.h4_c01096{height:282.000000px;}
.h2_c01096{height:355.500000px;}
.h0_c01096{height:1263.000000px;}
.w1_c01096{width:684.449850px;}
.w0_c01096{width:892.500000px;}
.x0_c01096{left:0.000000px;}
.x3_c01096{left:9.945648px;}
.x1_c01096{left:134.787405px;}
.x2_c01096{left:147.000000px;}
.x4_c01096{left:257.302800px;}
.x5_c01096{left:432.515100px;}
.x6_c01096{left:817.725150px;}
@media print{
.v0_c01096{vertical-align:0.000000pt;}
.ls2_c01096{letter-spacing:0.000000pt;}
.ls1_c01096{letter-spacing:0.010667pt;}
.ls0_c01096{letter-spacing:0.019200pt;}
.ws0_c01096{word-spacing:0.000000pt;}
._8_c01096{margin-left:-15.168000pt;}
._0_c01096{margin-left:-9.408000pt;}
._7_c01096{margin-left:-5.764501pt;}
._9_c01096{margin-left:-3.065600pt;}
._3_c01096{margin-left:-1.644800pt;}
._1_c01096{width:1.260800pt;}
._6_c01096{width:2.169600pt;}
._a_c01096{width:3.321600pt;}
._2_c01096{width:4.332800pt;}
._5_c01096{width:5.536000pt;}
._4_c01096{width:7.244800pt;}
._c_c01096{width:8.601600pt;}
._b_c01096{width:10.214400pt;}
.fs1_c01096{font-size:48.000000pt;}
.fs2_c01096{font-size:53.333333pt;}
.fs0_c01096{font-size:64.000000pt;}
.y0_c01096{bottom:0.000000pt;}
.y4_c01096{bottom:10.666667pt;}
.ye_c01096{bottom:60.000000pt;}
.yc_c01096{bottom:126.666667pt;}
.yb_c01096{bottom:150.666667pt;}
.ya_c01096{bottom:174.666667pt;}
.y9_c01096{bottom:198.666667pt;}
.y8_c01096{bottom:222.666667pt;}
.y7_c01096{bottom:262.666667pt;}
.y6_c01096{bottom:541.333333pt;}
.y5_c01096{bottom:565.333333pt;}
.y3_c01096{bottom:605.333333pt;}
.y2_c01096{bottom:949.333333pt;}
.y1_c01096{bottom:973.333333pt;}
.yd_c01096{bottom:1061.333333pt;}
.h3_c01096{height:37.593750pt;}
.h1_c01096{height:45.562500pt;}
.h5_c01096{height:49.843750pt;}
.h4_c01096{height:250.666667pt;}
.h2_c01096{height:316.000000pt;}
.h0_c01096{height:1122.666667pt;}
.w1_c01096{width:608.399867pt;}
.w0_c01096{width:793.333333pt;}
.x0_c01096{left:0.000000pt;}
.x3_c01096{left:8.840576pt;}
.x1_c01096{left:119.811027pt;}
.x2_c01096{left:130.666667pt;}
.x4_c01096{left:228.713600pt;}
.x5_c01096{left:384.457867pt;}
.x6_c01096{left:726.866800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_919b5d745e3c849b62a28011.woff2')format("woff");}.ff1_c01097{font-family:ff1_c01097;line-height:0.976074;font-style:normal;font-weight:normal;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_1e43573bf1f60c2466f46d39.woff2')format("woff");}.ff2_c01097{font-family:ff2_c01097;line-height:0.933105;font-style:normal;font-weight:normal;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_75555faf9f2ecac7bb515bfe.woff2')format("woff");}.ff3_c01097{font-family:ff3_c01097;line-height:0.756348;font-style:normal;font-weight:normal;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_5b5452006d0cab764beffc3b.woff2')format("woff");}.ff4_c01097{font-family:ff4_c01097;line-height:1.155762;font-style: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);}
.v0_c01097{vertical-align:0.000000px;}
.ls0_c01097{letter-spacing:0.000000px;}
.ls1_c01097{letter-spacing:0.012000px;}
.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:0.000000px;}
._0_c01097{margin-left:-10.584000px;}
._f_c01097{margin-left:-5.313600px;}
._10_c01097{margin-left:-3.816900px;}
._8_c01097{margin-left:-2.764800px;}
._3_c01097{margin-left:-1.526400px;}
._1_c01097{width:1.418400px;}
._5_c01097{width:3.117600px;}
._6_c01097{width:4.543200px;}
._2_c01097{width:6.235200px;}
._7_c01097{width:7.660800px;}
._4_c01097{width:9.158400px;}
._9_c01097{width:10.512000px;}
._c_c01097{width:14.774400px;}
._a_c01097{width:17.301600px;}
._e_c01097{width:18.741600px;}
._d_c01097{width:21.139200px;}
._b_c01097{width:23.191200px;}
.fc0_c01097{color:rgb(0,0,0);}
.fs0_c01097{font-size:54.000000px;}
.fs2_c01097{font-size:60.000000px;}
.fs1_c01097{font-size:72.000000px;}
.y0_c01097{bottom:0.000000px;}
.y2_c01097{bottom:12.000000px;}
.yc_c01097{bottom:67.500000px;}
.ya_c01097{bottom:175.500000px;}
.y9_c01097{bottom:202.500000px;}
.y8_c01097{bottom:229.500000px;}
.y7_c01097{bottom:274.500000px;}
.y6_c01097{bottom:622.500000px;}
.y5_c01097{bottom:649.500000px;}
.y4_c01097{bottom:676.500000px;}
.y3_c01097{bottom:703.500000px;}
.y1_c01097{bottom:748.500000px;}
.yb_c01097{bottom:1194.000000px;}
.h2_c01097{height:42.292969px;}
.h6_c01097{height:44.208984px;}
.h3_c01097{height:51.187500px;}
.h5_c01097{height:56.074219px;}
.h4_c01097{height:316.500000px;}
.h1_c01097{height:364.500000px;}
.h0_c01097{height:1263.000000px;}
.w1_c01097{width:684.449850px;}
.w0_c01097{width:892.500000px;}
.x0_c01097{left:0.000000px;}
.x3_c01097{left:49.748025px;}
.x1_c01097{left:61.500000px;}
.x4_c01097{left:156.309900px;}
.x2_c01097{left:224.551500px;}
@media print{
.v0_c01097{vertical-align:0.000000pt;}
.ls0_c01097{letter-spacing:0.000000pt;}
.ls1_c01097{letter-spacing:0.010667pt;}
.ws0_c01097{word-spacing:0.000000pt;}
._0_c01097{margin-left:-9.408000pt;}
._f_c01097{margin-left:-4.723200pt;}
._10_c01097{margin-left:-3.392800pt;}
._8_c01097{margin-left:-2.457600pt;}
._3_c01097{margin-left:-1.356800pt;}
._1_c01097{width:1.260800pt;}
._5_c01097{width:2.771200pt;}
._6_c01097{width:4.038400pt;}
._2_c01097{width:5.542400pt;}
._7_c01097{width:6.809600pt;}
._4_c01097{width:8.140800pt;}
._9_c01097{width:9.344000pt;}
._c_c01097{width:13.132800pt;}
._a_c01097{width:15.379200pt;}
._e_c01097{width:16.659200pt;}
._d_c01097{width:18.790400pt;}
._b_c01097{width:20.614400pt;}
.fs0_c01097{font-size:48.000000pt;}
.fs2_c01097{font-size:53.333333pt;}
.fs1_c01097{font-size:64.000000pt;}
.y0_c01097{bottom:0.000000pt;}
.y2_c01097{bottom:10.666667pt;}
.yc_c01097{bottom:60.000000pt;}
.ya_c01097{bottom:156.000000pt;}
.y9_c01097{bottom:180.000000pt;}
.y8_c01097{bottom:204.000000pt;}
.y7_c01097{bottom:244.000000pt;}
.y6_c01097{bottom:553.333333pt;}
.y5_c01097{bottom:577.333333pt;}
.y4_c01097{bottom:601.333333pt;}
.y3_c01097{bottom:625.333333pt;}
.y1_c01097{bottom:665.333333pt;}
.yb_c01097{bottom:1061.333333pt;}
.h2_c01097{height:37.593750pt;}
.h6_c01097{height:39.296875pt;}
.h3_c01097{height:45.500000pt;}
.h5_c01097{height:49.843750pt;}
.h4_c01097{height:281.333333pt;}
.h1_c01097{height:324.000000pt;}
.h0_c01097{height:1122.666667pt;}
.w1_c01097{width:608.399867pt;}
.w0_c01097{width:793.333333pt;}
.x0_c01097{left:0.000000pt;}
.x3_c01097{left:44.220467pt;}
.x1_c01097{left:54.666667pt;}
.x4_c01097{left:138.942133pt;}
.x2_c01097{left:199.601333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_62fb614680278034ec4f6235.woff2')format("woff");}.ff1_c01098{font-family:ff1_c01098;line-height:0.801270;font-style:normal;font-weight:normal;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_c7f638b39bb285a4164240a8.woff2')format("woff");}.ff2_c01098{font-family:ff2_c01098;line-height:0.933105;font-style:normal;font-weight:normal;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_d6e5e98b44752b28a5aac37e.woff2')format("woff");}.ff3_c01098{font-family:ff3_c01098;line-height:1.155762;font-style: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);}
.v0_c01098{vertical-align:0.000000px;}
.ls4_c01098{letter-spacing:-0.005400px;}
.ls3_c01098{letter-spacing:0.000000px;}
.ls2_c01098{letter-spacing:0.012000px;}
.ls0_c01098{letter-spacing:0.016200px;}
.ls1_c01098{letter-spacing:0.022200px;}
.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;}
}
.ws0_c01098{word-spacing:-19.800000px;}
.ws1_c01098{word-spacing:0.000000px;}
._2_c01098{margin-left:-4.485600px;}
._0_c01098{margin-left:-2.577600px;}
._d_c01098{margin-left:-1.483200px;}
._f_c01098{width:1.029600px;}
._7_c01098{width:2.829600px;}
._b_c01098{width:3.880800px;}
._5_c01098{width:4.939200px;}
._c_c01098{width:7.322400px;}
._e_c01098{width:8.748000px;}
._a_c01098{width:9.799200px;}
._9_c01098{width:11.743200px;}
._6_c01098{width:16.185600px;}
._8_c01098{width:18.288000px;}
._4_c01098{width:21.146400px;}
._1_c01098{width:23.709600px;}
._3_c01098{width:25.639200px;}
.fc0_c01098{color:rgb(0,0,0);}
.fs0_c01098{font-size:54.000000px;}
.fs2_c01098{font-size:60.000000px;}
.fs1_c01098{font-size:72.000000px;}
.y0_c01098{bottom:0.000000px;}
.y2_c01098{bottom:12.000000px;}
.y9_c01098{bottom:67.500000px;}
.y7_c01098{bottom:189.000000px;}
.y6_c01098{bottom:661.500000px;}
.y5_c01098{bottom:688.500000px;}
.y4_c01098{bottom:715.500000px;}
.y3_c01098{bottom:742.500000px;}
.y1_c01098{bottom:787.500000px;}
.y8_c01098{bottom:1194.000000px;}
.h2_c01098{height:42.292969px;}
.h3_c01098{height:51.187500px;}
.h5_c01098{height:56.074219px;}
.h1_c01098{height:325.500000px;}
.h4_c01098{height:441.000000px;}
.h0_c01098{height:1263.000000px;}
.w1_c01098{width:684.449850px;}
.w0_c01098{width:892.500000px;}
.x0_c01098{left:0.000000px;}
.x3_c01098{left:134.787405px;}
.x1_c01098{left:147.000000px;}
.x4_c01098{left:216.324900px;}
.x2_c01098{left:241.680300px;}
.x5_c01098{left:432.515100px;}
.x6_c01098{left:817.725150px;}
@media print{
.v0_c01098{vertical-align:0.000000pt;}
.ls4_c01098{letter-spacing:-0.004800pt;}
.ls3_c01098{letter-spacing:0.000000pt;}
.ls2_c01098{letter-spacing:0.010667pt;}
.ls0_c01098{letter-spacing:0.014400pt;}
.ls1_c01098{letter-spacing:0.019733pt;}
.ws0_c01098{word-spacing:-17.600000pt;}
.ws1_c01098{word-spacing:0.000000pt;}
._2_c01098{margin-left:-3.987200pt;}
._0_c01098{margin-left:-2.291200pt;}
._d_c01098{margin-left:-1.318400pt;}
._f_c01098{width:0.915200pt;}
._7_c01098{width:2.515200pt;}
._b_c01098{width:3.449600pt;}
._5_c01098{width:4.390400pt;}
._c_c01098{width:6.508800pt;}
._e_c01098{width:7.776000pt;}
._a_c01098{width:8.710400pt;}
._9_c01098{width:10.438400pt;}
._6_c01098{width:14.387200pt;}
._8_c01098{width:16.256000pt;}
._4_c01098{width:18.796800pt;}
._1_c01098{width:21.075200pt;}
._3_c01098{width:22.790400pt;}
.fs0_c01098{font-size:48.000000pt;}
.fs2_c01098{font-size:53.333333pt;}
.fs1_c01098{font-size:64.000000pt;}
.y0_c01098{bottom:0.000000pt;}
.y2_c01098{bottom:10.666667pt;}
.y9_c01098{bottom:60.000000pt;}
.y7_c01098{bottom:168.000000pt;}
.y6_c01098{bottom:588.000000pt;}
.y5_c01098{bottom:612.000000pt;}
.y4_c01098{bottom:636.000000pt;}
.y3_c01098{bottom:660.000000pt;}
.y1_c01098{bottom:700.000000pt;}
.y8_c01098{bottom:1061.333333pt;}
.h2_c01098{height:37.593750pt;}
.h3_c01098{height:45.500000pt;}
.h5_c01098{height:49.843750pt;}
.h1_c01098{height:289.333333pt;}
.h4_c01098{height:392.000000pt;}
.h0_c01098{height:1122.666667pt;}
.w1_c01098{width:608.399867pt;}
.w0_c01098{width:793.333333pt;}
.x0_c01098{left:0.000000pt;}
.x3_c01098{left:119.811027pt;}
.x1_c01098{left:130.666667pt;}
.x4_c01098{left:192.288800pt;}
.x2_c01098{left:214.826933pt;}
.x5_c01098{left:384.457867pt;}
.x6_c01098{left:726.866800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b6a0363d9971ad65c1c66aa9.woff2')format("woff");}.ff1_c01099{font-family:ff1_c01099;line-height:0.789062;font-style:normal;font-weight:normal;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_178e4d1071115526a372be90.woff2')format("woff");}.ff2_c01099{font-family:ff2_c01099;line-height:0.927246;font-style:normal;font-weight:normal;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_90a67a58f621fbd50f2ebe4e.woff2')format("woff");}.ff3_c01099{font-family:ff3_c01099;line-height:0.756348;font-style:normal;font-weight:normal;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_d44acfb2a5b68aad22af6962.woff2')format("woff");}.ff4_c01099{font-family:ff4_c01099;line-height:1.155762;font-style: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;}
.ls1_c01099{letter-spacing:0.000000px;}
.ls2_c01099{letter-spacing:0.012000px;}
.ls0_c01099{letter-spacing:0.021600px;}
.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;}
}
.ws0_c01099{word-spacing:0.000000px;}
._0_c01099{margin-left:-4.622400px;}
._2_c01099{margin-left:-3.216000px;}
._1_c01099{margin-left:-1.281600px;}
.fc0_c01099{color:rgb(0,0,0);}
.fs0_c01099{font-size:54.000000px;}
.fs2_c01099{font-size:60.000000px;}
.fs1_c01099{font-size:72.000000px;}
.y0_c01099{bottom:0.000000px;}
.y2_c01099{bottom:12.000000px;}
.y6_c01099{bottom:67.500000px;}
.y4_c01099{bottom:145.500000px;}
.y3_c01099{bottom:495.000000px;}
.y1_c01099{bottom:540.000000px;}
.y5_c01099{bottom:1194.000000px;}
.h2_c01099{height:41.633789px;}
.h6_c01099{height:44.208984px;}
.h3_c01099{height:50.765625px;}
.h5_c01099{height:56.074219px;}
.h4_c01099{height:318.000000px;}
.h1_c01099{height:573.000000px;}
.h0_c01099{height:1263.000000px;}
.w1_c01099{width:684.449850px;}
.w0_c01099{width:892.500000px;}
.x0_c01099{left:0.000000px;}
.x3_c01099{left:49.748025px;}
.x1_c01099{left:61.500000px;}
.x4_c01099{left:228.786750px;}
.x2_c01099{left:337.953450px;}
@media print{
.v0_c01099{vertical-align:0.000000pt;}
.ls1_c01099{letter-spacing:0.000000pt;}
.ls2_c01099{letter-spacing:0.010667pt;}
.ls0_c01099{letter-spacing:0.019200pt;}
.ws0_c01099{word-spacing:0.000000pt;}
._0_c01099{margin-left:-4.108800pt;}
._2_c01099{margin-left:-2.858667pt;}
._1_c01099{margin-left:-1.139200pt;}
.fs0_c01099{font-size:48.000000pt;}
.fs2_c01099{font-size:53.333333pt;}
.fs1_c01099{font-size:64.000000pt;}
.y0_c01099{bottom:0.000000pt;}
.y2_c01099{bottom:10.666667pt;}
.y6_c01099{bottom:60.000000pt;}
.y4_c01099{bottom:129.333333pt;}
.y3_c01099{bottom:440.000000pt;}
.y1_c01099{bottom:480.000000pt;}
.y5_c01099{bottom:1061.333333pt;}
.h2_c01099{height:37.007812pt;}
.h6_c01099{height:39.296875pt;}
.h3_c01099{height:45.125000pt;}
.h5_c01099{height:49.843750pt;}
.h4_c01099{height:282.666667pt;}
.h1_c01099{height:509.333333pt;}
.h0_c01099{height:1122.666667pt;}
.w1_c01099{width:608.399867pt;}
.w0_c01099{width:793.333333pt;}
.x0_c01099{left:0.000000pt;}
.x3_c01099{left:44.220467pt;}
.x1_c01099{left:54.666667pt;}
.x4_c01099{left:203.366000pt;}
.x2_c01099{left:300.403067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0cb6c5640107cfe3a8868e5a.woff2')format("woff");}.ff1_c01100{font-family:ff1_c01100;line-height:0.952148;font-style:normal;font-weight:normal;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_24ac079af4945767b3a35ccc.woff2')format("woff");}.ff2_c01100{font-family:ff2_c01100;line-height:0.928223;font-style:normal;font-weight:normal;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_bd01ceb721d84d7581eb7a27.woff2')format("woff");}.ff3_c01100{font-family:ff3_c01100;line-height:0.934082;font-style:normal;font-weight:normal;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_8c0de180f1c659e66f2a7ed9.woff2')format("woff");}.ff4_c01100{font-family:ff4_c01100;line-height:1.155762;font-style: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;}
.ls3_c01100{letter-spacing:0.000000px;}
.ls1_c01100{letter-spacing:0.007200px;}
.ls2_c01100{letter-spacing:0.012000px;}
.ls0_c01100{letter-spacing:0.021600px;}
.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:0.000000px;}
._f_c01100{margin-left:-6.120000px;}
._10_c01100{margin-left:-4.864200px;}
._3_c01100{margin-left:-3.031200px;}
._5_c01100{margin-left:-1.166400px;}
._0_c01100{width:1.332000px;}
._7_c01100{width:2.426400px;}
._2_c01100{width:4.392000px;}
._1_c01100{width:6.408000px;}
._6_c01100{width:7.502400px;}
._8_c01100{width:8.978400px;}
._4_c01100{width:10.231200px;}
._9_c01100{width:11.793600px;}
._e_c01100{width:13.636800px;}
._c_c01100{width:15.436800px;}
._d_c01100{width:17.431200px;}
._a_c01100{width:18.475200px;}
._b_c01100{width:22.924800px;}
.fc0_c01100{color:rgb(0,0,0);}
.fs0_c01100{font-size:54.000000px;}
.fs3_c01100{font-size:60.000000px;}
.fs2_c01100{font-size:66.000000px;}
.fs1_c01100{font-size:72.000000px;}
.y0_c01100{bottom:0.000000px;}
.y2_c01100{bottom:12.000000px;}
.y14_c01100{bottom:67.500000px;}
.y12_c01100{bottom:141.000000px;}
.y11_c01100{bottom:177.000000px;}
.y10_c01100{bottom:214.500000px;}
.yf_c01100{bottom:252.000000px;}
.ye_c01100{bottom:289.500000px;}
.yd_c01100{bottom:327.000000px;}
.yc_c01100{bottom:363.000000px;}
.yb_c01100{bottom:400.500000px;}
.ya_c01100{bottom:447.000000px;}
.y9_c01100{bottom:495.000000px;}
.y8_c01100{bottom:522.000000px;}
.y7_c01100{bottom:549.000000px;}
.y6_c01100{bottom:576.000000px;}
.y5_c01100{bottom:603.000000px;}
.y4_c01100{bottom:630.000000px;}
.y3_c01100{bottom:676.500000px;}
.y1_c01100{bottom:742.500000px;}
.y13_c01100{bottom:1194.000000px;}
.h5_c01100{height:46.986328px;}
.h2_c01100{height:50.756836px;}
.h3_c01100{height:50.976562px;}
.h4_c01100{height:51.257812px;}
.h6_c01100{height:56.074219px;}
.h1_c01100{height:370.500000px;}
.h0_c01100{height:1263.000000px;}
.w1_c01100{width:684.449850px;}
.w0_c01100{width:892.500000px;}
.x0_c01100{left:0.000000px;}
.x3_c01100{left:134.787405px;}
.x1_c01100{left:147.000000px;}
.x2_c01100{left:272.177250px;}
.x4_c01100{left:432.515100px;}
.x5_c01100{left:817.725150px;}
@media print{
.v0_c01100{vertical-align:0.000000pt;}
.ls3_c01100{letter-spacing:0.000000pt;}
.ls1_c01100{letter-spacing:0.006400pt;}
.ls2_c01100{letter-spacing:0.010667pt;}
.ls0_c01100{letter-spacing:0.019200pt;}
.ws0_c01100{word-spacing:0.000000pt;}
._f_c01100{margin-left:-5.440000pt;}
._10_c01100{margin-left:-4.323733pt;}
._3_c01100{margin-left:-2.694400pt;}
._5_c01100{margin-left:-1.036800pt;}
._0_c01100{width:1.184000pt;}
._7_c01100{width:2.156800pt;}
._2_c01100{width:3.904000pt;}
._1_c01100{width:5.696000pt;}
._6_c01100{width:6.668800pt;}
._8_c01100{width:7.980800pt;}
._4_c01100{width:9.094400pt;}
._9_c01100{width:10.483200pt;}
._e_c01100{width:12.121600pt;}
._c_c01100{width:13.721600pt;}
._d_c01100{width:15.494400pt;}
._a_c01100{width:16.422400pt;}
._b_c01100{width:20.377600pt;}
.fs0_c01100{font-size:48.000000pt;}
.fs3_c01100{font-size:53.333333pt;}
.fs2_c01100{font-size:58.666667pt;}
.fs1_c01100{font-size:64.000000pt;}
.y0_c01100{bottom:0.000000pt;}
.y2_c01100{bottom:10.666667pt;}
.y14_c01100{bottom:60.000000pt;}
.y12_c01100{bottom:125.333333pt;}
.y11_c01100{bottom:157.333333pt;}
.y10_c01100{bottom:190.666667pt;}
.yf_c01100{bottom:224.000000pt;}
.ye_c01100{bottom:257.333333pt;}
.yd_c01100{bottom:290.666667pt;}
.yc_c01100{bottom:322.666667pt;}
.yb_c01100{bottom:356.000000pt;}
.ya_c01100{bottom:397.333333pt;}
.y9_c01100{bottom:440.000000pt;}
.y8_c01100{bottom:464.000000pt;}
.y7_c01100{bottom:488.000000pt;}
.y6_c01100{bottom:512.000000pt;}
.y5_c01100{bottom:536.000000pt;}
.y4_c01100{bottom:560.000000pt;}
.y3_c01100{bottom:601.333333pt;}
.y1_c01100{bottom:660.000000pt;}
.y13_c01100{bottom:1061.333333pt;}
.h5_c01100{height:41.765625pt;}
.h2_c01100{height:45.117188pt;}
.h3_c01100{height:45.312500pt;}
.h4_c01100{height:45.562500pt;}
.h6_c01100{height:49.843750pt;}
.h1_c01100{height:329.333333pt;}
.h0_c01100{height:1122.666667pt;}
.w1_c01100{width:608.399867pt;}
.w0_c01100{width:793.333333pt;}
.x0_c01100{left:0.000000pt;}
.x3_c01100{left:119.811027pt;}
.x1_c01100{left:130.666667pt;}
.x2_c01100{left:241.935333pt;}
.x4_c01100{left:384.457867pt;}
.x5_c01100{left:726.866800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e8588e03111503d40f9bd4c8.woff2')format("woff");}.ff1_c01101{font-family:ff1_c01101;line-height:0.934082;font-style:normal;font-weight:normal;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_0f3f2e174a7d6e6c10a6adf0.woff2')format("woff");}.ff2_c01101{font-family:ff2_c01101;line-height:0.987793;font-style:normal;font-weight:normal;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_b327045f261f8565fcbb83f9.woff2')format("woff");}.ff3_c01101{font-family:ff3_c01101;line-height:0.756836;font-style:normal;font-weight:normal;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_6df8291105956ae14d7496e4.woff2')format("woff");}.ff4_c01101{font-family:ff4_c01101;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01101;src:url('chunks/assets/font_b60c18b97d8b40c856bf6a05.woff2')format("woff");}.ff5_c01101{font-family:ff5_c01101;line-height:1.100586;font-style:normal;font-weight: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_c01101;src:url('chunks/assets/font_28e230cd43500ee2c5f33dd6.woff2')format("woff");}.ff6_c01101{font-family:ff6_c01101;line-height:0.678223;font-style: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);}
.v3_c01101{vertical-align:-33.000000px;}
.v2_c01101{vertical-align:-23.086200px;}
.v0_c01101{vertical-align:0.000000px;}
.v1_c01101{vertical-align:23.086200px;}
.ls2_c01101{letter-spacing:0.000000px;}
.ls0_c01101{letter-spacing:0.007200px;}
.ls3_c01101{letter-spacing:0.012000px;}
.ls1_c01101{letter-spacing:27.147780px;}
.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;}
}
.ws0_c01101{word-spacing:-10.000001px;}
.ws1_c01101{word-spacing:0.000000px;}
._d_c01101{margin-left:-7.142400px;}
._1a_c01101{margin-left:-6.127200px;}
._5_c01101{margin-left:-3.650400px;}
._0_c01101{margin-left:-2.577600px;}
._1_c01101{margin-left:-1.072800px;}
._2_c01101{width:1.648800px;}
._3_c01101{width:3.110400px;}
._4_c01101{width:4.219200px;}
._9_c01101{width:5.745600px;}
._11_c01101{width:7.473600px;}
._c_c01101{width:8.726400px;}
._f_c01101{width:10.224000px;}
._10_c01101{width:11.671200px;}
._e_c01101{width:13.320000px;}
._7_c01101{width:15.170400px;}
._b_c01101{width:17.140800px;}
._6_c01101{width:18.585600px;}
._16_c01101{width:20.894400px;}
._a_c01101{width:21.967200px;}
._8_c01101{width:23.212800px;}
._19_c01101{width:24.264000px;}
._17_c01101{width:25.509600px;}
._12_c01101{width:26.949600px;}
._14_c01101{width:28.274400px;}
._18_c01101{width:29.397600px;}
._13_c01101{width:30.866400px;}
._15_c01101{width:31.910400px;}
.fc0_c01101{color:rgb(0,0,0);}
.fs4_c01101{font-size:40.000002px;}
.fs1_c01101{font-size:48.000000px;}
.fs2_c01101{font-size:54.000000px;}
.fs3_c01101{font-size:60.000000px;}
.fs0_c01101{font-size:72.000000px;}
.y0_c01101{bottom:0.000000px;}
.y10_c01101{bottom:12.000000px;}
.y17_c01101{bottom:67.500000px;}
.y18_c01101{bottom:140.250000px;}
.y15_c01101{bottom:193.500000px;}
.y14_c01101{bottom:220.500000px;}
.y13_c01101{bottom:247.500000px;}
.y12_c01101{bottom:274.500000px;}
.y11_c01101{bottom:301.500000px;}
.yf_c01101{bottom:346.500000px;}
.ye_c01101{bottom:681.000000px;}
.yd_c01101{bottom:708.000000px;}
.yc_c01101{bottom:735.000000px;}
.yb_c01101{bottom:762.000000px;}
.ya_c01101{bottom:789.000000px;}
.y9_c01101{bottom:816.000000px;}
.y8_c01101{bottom:843.000000px;}
.y7_c01101{bottom:891.000000px;}
.y6_c01101{bottom:918.000000px;}
.y5_c01101{bottom:966.000000px;}
.y4_c01101{bottom:993.000000px;}
.y3_c01101{bottom:1041.000000px;}
.y2_c01101{bottom:1068.000000px;}
.y1_c01101{bottom:1095.000000px;}
.y16_c01101{bottom:1194.000000px;}
.h7_c01101{height:35.312502px;}
.h4_c01101{height:42.292969px;}
.h6_c01101{height:44.208984px;}
.h1_c01101{height:51.257812px;}
.h5_c01101{height:56.074219px;}
.h2_c01101{height:57.258075px;}
.h3_c01101{height:303.000000px;}
.h0_c01101{height:1263.000000px;}
.w1_c01101{width:684.449850px;}
.w0_c01101{width:892.500000px;}
.x0_c01101{left:0.000000px;}
.x1_c01101{left:49.748025px;}
.x2_c01101{left:61.500000px;}
.x3_c01101{left:161.108700px;}
@media print{
.v3_c01101{vertical-align:-29.333333pt;}
.v2_c01101{vertical-align:-20.521067pt;}
.v0_c01101{vertical-align:0.000000pt;}
.v1_c01101{vertical-align:20.521067pt;}
.ls2_c01101{letter-spacing:0.000000pt;}
.ls0_c01101{letter-spacing:0.006400pt;}
.ls3_c01101{letter-spacing:0.010667pt;}
.ls1_c01101{letter-spacing:24.131360pt;}
.ws0_c01101{word-spacing:-8.888889pt;}
.ws1_c01101{word-spacing:0.000000pt;}
._d_c01101{margin-left:-6.348800pt;}
._1a_c01101{margin-left:-5.446400pt;}
._5_c01101{margin-left:-3.244800pt;}
._0_c01101{margin-left:-2.291200pt;}
._1_c01101{margin-left:-0.953600pt;}
._2_c01101{width:1.465600pt;}
._3_c01101{width:2.764800pt;}
._4_c01101{width:3.750400pt;}
._9_c01101{width:5.107200pt;}
._11_c01101{width:6.643200pt;}
._c_c01101{width:7.756800pt;}
._f_c01101{width:9.088000pt;}
._10_c01101{width:10.374400pt;}
._e_c01101{width:11.840000pt;}
._7_c01101{width:13.484800pt;}
._b_c01101{width:15.236267pt;}
._6_c01101{width:16.520533pt;}
._16_c01101{width:18.572800pt;}
._a_c01101{width:19.526400pt;}
._8_c01101{width:20.633600pt;}
._19_c01101{width:21.568000pt;}
._17_c01101{width:22.675200pt;}
._12_c01101{width:23.955200pt;}
._14_c01101{width:25.132800pt;}
._18_c01101{width:26.131200pt;}
._13_c01101{width:27.436800pt;}
._15_c01101{width:28.364800pt;}
.fs4_c01101{font-size:35.555557pt;}
.fs1_c01101{font-size:42.666667pt;}
.fs2_c01101{font-size:48.000000pt;}
.fs3_c01101{font-size:53.333333pt;}
.fs0_c01101{font-size:64.000000pt;}
.y0_c01101{bottom:0.000000pt;}
.y10_c01101{bottom:10.666667pt;}
.y17_c01101{bottom:60.000000pt;}
.y18_c01101{bottom:124.666667pt;}
.y15_c01101{bottom:172.000000pt;}
.y14_c01101{bottom:196.000000pt;}
.y13_c01101{bottom:220.000000pt;}
.y12_c01101{bottom:244.000000pt;}
.y11_c01101{bottom:268.000000pt;}
.yf_c01101{bottom:308.000000pt;}
.ye_c01101{bottom:605.333333pt;}
.yd_c01101{bottom:629.333333pt;}
.yc_c01101{bottom:653.333333pt;}
.yb_c01101{bottom:677.333333pt;}
.ya_c01101{bottom:701.333333pt;}
.y9_c01101{bottom:725.333333pt;}
.y8_c01101{bottom:749.333333pt;}
.y7_c01101{bottom:792.000000pt;}
.y6_c01101{bottom:816.000000pt;}
.y5_c01101{bottom:858.666667pt;}
.y4_c01101{bottom:882.666667pt;}
.y3_c01101{bottom:925.333333pt;}
.y2_c01101{bottom:949.333333pt;}
.y1_c01101{bottom:973.333333pt;}
.y16_c01101{bottom:1061.333333pt;}
.h7_c01101{height:31.388890pt;}
.h4_c01101{height:37.593750pt;}
.h6_c01101{height:39.296875pt;}
.h1_c01101{height:45.562500pt;}
.h5_c01101{height:49.843750pt;}
.h2_c01101{height:50.896067pt;}
.h3_c01101{height:269.333333pt;}
.h0_c01101{height:1122.666667pt;}
.w1_c01101{width:608.399867pt;}
.w0_c01101{width:793.333333pt;}
.x0_c01101{left:0.000000pt;}
.x1_c01101{left:44.220467pt;}
.x2_c01101{left:54.666667pt;}
.x3_c01101{left:143.207733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f8bb3f3a3a88c47c0ec87e1d.woff2')format("woff");}.ff1_c01102{font-family:ff1_c01102;line-height:0.987793;font-style:normal;font-weight:normal;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_2598ae46b156a8153a93bbc7.woff2')format("woff");}.ff2_c01102{font-family:ff2_c01102;line-height:0.931152;font-style:normal;font-weight:normal;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_cae4bd26430d192fb41cc01b.woff2')format("woff");}.ff3_c01102{font-family:ff3_c01102;line-height:1.155762;font-style: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.014400px;}
.ls2_c01102{letter-spacing:0.000000px;}
.ls1_c01102{letter-spacing:0.012000px;}
.ls0_c01102{letter-spacing:0.021600px;}
.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;}
}
.ws0_c01102{word-spacing:0.000000px;}
._a_c01102{margin-left:-3.426000px;}
._1_c01102{margin-left:-2.138400px;}
._0_c01102{width:2.325600px;}
._5_c01102{width:3.636000px;}
._3_c01102{width:4.708800px;}
._4_c01102{width:6.897600px;}
._2_c01102{width:8.092800px;}
._9_c01102{width:29.714400px;}
._8_c01102{width:31.032000px;}
._6_c01102{width:33.328800px;}
._7_c01102{width:35.510400px;}
.fc0_c01102{color:rgb(0,0,0);}
.fs0_c01102{font-size:54.000000px;}
.fs2_c01102{font-size:60.000000px;}
.fs1_c01102{font-size:72.000000px;}
.y0_c01102{bottom:0.000000px;}
.y2_c01102{bottom:12.000000px;}
.y8_c01102{bottom:67.500000px;}
.y6_c01102{bottom:165.000000px;}
.y5_c01102{bottom:627.000000px;}
.y4_c01102{bottom:654.000000px;}
.y3_c01102{bottom:681.000000px;}
.y1_c01102{bottom:726.000000px;}
.y7_c01102{bottom:1194.000000px;}
.h2_c01102{height:42.292969px;}
.h3_c01102{height:51.187500px;}
.h5_c01102{height:56.074219px;}
.h1_c01102{height:387.000000px;}
.h4_c01102{height:430.500000px;}
.h0_c01102{height:1263.000000px;}
.w1_c01102{width:684.449850px;}
.w0_c01102{width:892.500000px;}
.x0_c01102{left:0.000000px;}
.x1_c01102{left:135.000000px;}
.x3_c01102{left:147.000000px;}
.x2_c01102{left:261.297450px;}
.x4_c01102{left:264.369300px;}
.x5_c01102{left:432.515100px;}
.x6_c01102{left:817.725150px;}
@media print{
.v0_c01102{vertical-align:0.000000pt;}
.ls3_c01102{letter-spacing:-0.012800pt;}
.ls2_c01102{letter-spacing:0.000000pt;}
.ls1_c01102{letter-spacing:0.010667pt;}
.ls0_c01102{letter-spacing:0.019200pt;}
.ws0_c01102{word-spacing:0.000000pt;}
._a_c01102{margin-left:-3.045333pt;}
._1_c01102{margin-left:-1.900800pt;}
._0_c01102{width:2.067200pt;}
._5_c01102{width:3.232000pt;}
._3_c01102{width:4.185600pt;}
._4_c01102{width:6.131200pt;}
._2_c01102{width:7.193600pt;}
._9_c01102{width:26.412800pt;}
._8_c01102{width:27.584000pt;}
._6_c01102{width:29.625600pt;}
._7_c01102{width:31.564800pt;}
.fs0_c01102{font-size:48.000000pt;}
.fs2_c01102{font-size:53.333333pt;}
.fs1_c01102{font-size:64.000000pt;}
.y0_c01102{bottom:0.000000pt;}
.y2_c01102{bottom:10.666667pt;}
.y8_c01102{bottom:60.000000pt;}
.y6_c01102{bottom:146.666667pt;}
.y5_c01102{bottom:557.333333pt;}
.y4_c01102{bottom:581.333333pt;}
.y3_c01102{bottom:605.333333pt;}
.y1_c01102{bottom:645.333333pt;}
.y7_c01102{bottom:1061.333333pt;}
.h2_c01102{height:37.593750pt;}
.h3_c01102{height:45.500000pt;}
.h5_c01102{height:49.843750pt;}
.h1_c01102{height:344.000000pt;}
.h4_c01102{height:382.666667pt;}
.h0_c01102{height:1122.666667pt;}
.w1_c01102{width:608.399867pt;}
.w0_c01102{width:793.333333pt;}
.x0_c01102{left:0.000000pt;}
.x1_c01102{left:120.000000pt;}
.x3_c01102{left:130.666667pt;}
.x2_c01102{left:232.264400pt;}
.x4_c01102{left:234.994933pt;}
.x5_c01102{left:384.457867pt;}
.x6_c01102{left:726.866800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3b430f95118ac66ee8e59d5b.woff2')format("woff");}.ff1_c01103{font-family:ff1_c01103;line-height:0.933105;font-style:normal;font-weight:normal;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_b0f557b6535cb52c5bc01011.woff2')format("woff");}.ff2_c01103{font-family:ff2_c01103;line-height:0.987793;font-style:normal;font-weight:normal;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_48f2945d573c891c395257da.woff2')format("woff");}.ff3_c01103{font-family:ff3_c01103;line-height:0.755859;font-style:normal;font-weight:normal;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_6618d601885917d08cda7cfb.woff2')format("woff");}.ff4_c01103{font-family:ff4_c01103;line-height:1.155762;font-style: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);}
.v0_c01103{vertical-align:0.000000px;}
.ls1_c01103{letter-spacing:0.000000px;}
.ls2_c01103{letter-spacing:0.012000px;}
.ls0_c01103{letter-spacing:0.021600px;}
.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:0.000000px;}
._a_c01103{margin-left:-10.555200px;}
._0_c01103{margin-left:-3.945600px;}
._b_c01103{margin-left:-2.944800px;}
._7_c01103{margin-left:-1.929600px;}
._1_c01103{width:1.540800px;}
._2_c01103{width:3.153600px;}
._3_c01103{width:4.665600px;}
._9_c01103{width:6.904800px;}
._4_c01103{width:8.676000px;}
._6_c01103{width:11.613600px;}
._5_c01103{width:13.183200px;}
._8_c01103{width:15.091200px;}
.fc0_c01103{color:rgb(0,0,0);}
.fs1_c01103{font-size:54.000000px;}
.fs2_c01103{font-size:60.000000px;}
.fs0_c01103{font-size:72.000000px;}
.y0_c01103{bottom:0.000000px;}
.y4_c01103{bottom:12.000000px;}
.yd_c01103{bottom:67.500000px;}
.yb_c01103{bottom:138.000000px;}
.ya_c01103{bottom:537.000000px;}
.y9_c01103{bottom:564.000000px;}
.y8_c01103{bottom:612.000000px;}
.y7_c01103{bottom:639.000000px;}
.y6_c01103{bottom:666.000000px;}
.y5_c01103{bottom:693.000000px;}
.y3_c01103{bottom:738.000000px;}
.y2_c01103{bottom:1068.000000px;}
.y1_c01103{bottom:1095.000000px;}
.yc_c01103{bottom:1194.000000px;}
.h3_c01103{height:42.292969px;}
.h6_c01103{height:44.208984px;}
.h1_c01103{height:51.187500px;}
.h5_c01103{height:56.074219px;}
.h2_c01103{height:298.500000px;}
.h4_c01103{height:367.500000px;}
.h0_c01103{height:1263.000000px;}
.w1_c01103{width:684.449850px;}
.w0_c01103{width:892.500000px;}
.x0_c01103{left:0.000000px;}
.x1_c01103{left:49.748025px;}
.x2_c01103{left:61.500000px;}
.x4_c01103{left:261.907200px;}
.x3_c01103{left:263.284950px;}
@media print{
.v0_c01103{vertical-align:0.000000pt;}
.ls1_c01103{letter-spacing:0.000000pt;}
.ls2_c01103{letter-spacing:0.010667pt;}
.ls0_c01103{letter-spacing:0.019200pt;}
.ws0_c01103{word-spacing:0.000000pt;}
._a_c01103{margin-left:-9.382400pt;}
._0_c01103{margin-left:-3.507200pt;}
._b_c01103{margin-left:-2.617600pt;}
._7_c01103{margin-left:-1.715200pt;}
._1_c01103{width:1.369600pt;}
._2_c01103{width:2.803200pt;}
._3_c01103{width:4.147200pt;}
._9_c01103{width:6.137600pt;}
._4_c01103{width:7.712000pt;}
._6_c01103{width:10.323200pt;}
._5_c01103{width:11.718400pt;}
._8_c01103{width:13.414400pt;}
.fs1_c01103{font-size:48.000000pt;}
.fs2_c01103{font-size:53.333333pt;}
.fs0_c01103{font-size:64.000000pt;}
.y0_c01103{bottom:0.000000pt;}
.y4_c01103{bottom:10.666667pt;}
.yd_c01103{bottom:60.000000pt;}
.yb_c01103{bottom:122.666667pt;}
.ya_c01103{bottom:477.333333pt;}
.y9_c01103{bottom:501.333333pt;}
.y8_c01103{bottom:544.000000pt;}
.y7_c01103{bottom:568.000000pt;}
.y6_c01103{bottom:592.000000pt;}
.y5_c01103{bottom:616.000000pt;}
.y3_c01103{bottom:656.000000pt;}
.y2_c01103{bottom:949.333333pt;}
.y1_c01103{bottom:973.333333pt;}
.yc_c01103{bottom:1061.333333pt;}
.h3_c01103{height:37.593750pt;}
.h6_c01103{height:39.296875pt;}
.h1_c01103{height:45.500000pt;}
.h5_c01103{height:49.843750pt;}
.h2_c01103{height:265.333333pt;}
.h4_c01103{height:326.666667pt;}
.h0_c01103{height:1122.666667pt;}
.w1_c01103{width:608.399867pt;}
.w0_c01103{width:793.333333pt;}
.x0_c01103{left:0.000000pt;}
.x1_c01103{left:44.220467pt;}
.x2_c01103{left:54.666667pt;}
.x4_c01103{left:232.806400pt;}
.x3_c01103{left:234.031067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ceb0d641950a5d1da262db32.woff2')format("woff");}.ff1_c01104{font-family:ff1_c01104;line-height:0.934082;font-style:normal;font-weight:normal;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_525864c913d37eaa9fce60fb.woff2')format("woff");}.ff2_c01104{font-family:ff2_c01104;line-height:0.931152;font-style:normal;font-weight:normal;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_64cb744f159a231d69dbd28c.woff2')format("woff");}.ff3_c01104{font-family:ff3_c01104;line-height:0.987793;font-style:normal;font-weight:normal;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_8202d34b82f53f783970cda7.woff2')format("woff");}.ff4_c01104{font-family:ff4_c01104;line-height:1.155762;font-style: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);}
.v0_c01104{vertical-align:0.000000px;}
.ls2_c01104{letter-spacing:-0.014400px;}
.ls1_c01104{letter-spacing:0.000000px;}
.ls0_c01104{letter-spacing:0.012000px;}
.ls3_c01104{letter-spacing:0.021600px;}
.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:-0.057600px;}
.ws1_c01104{word-spacing:0.000000px;}
._7_c01104{margin-left:-2.664000px;}
._3_c01104{margin-left:-1.224000px;}
._9_c01104{width:1.735200px;}
._5_c01104{width:2.952000px;}
._1_c01104{width:4.996800px;}
._c_c01104{width:6.127200px;}
._b_c01104{width:7.200180px;}
._2_c01104{width:9.388800px;}
._6_c01104{width:11.505600px;}
._a_c01104{width:12.578400px;}
._0_c01104{width:14.349600px;}
._4_c01104{width:15.609600px;}
._8_c01104{width:17.035200px;}
.fc0_c01104{color:rgb(0,0,0);}
.fs1_c01104{font-size:54.000000px;}
.fs2_c01104{font-size:60.000000px;}
.fs0_c01104{font-size:72.000000px;}
.y0_c01104{bottom:0.000000px;}
.y6_c01104{bottom:12.000000px;}
.yc_c01104{bottom:67.500000px;}
.ya_c01104{bottom:127.500000px;}
.y9_c01104{bottom:379.500000px;}
.y8_c01104{bottom:406.500000px;}
.y7_c01104{bottom:451.500000px;}
.y5_c01104{bottom:693.000000px;}
.y4_c01104{bottom:1014.000000px;}
.y3_c01104{bottom:1041.000000px;}
.y2_c01104{bottom:1068.000000px;}
.y1_c01104{bottom:1095.000000px;}
.yb_c01104{bottom:1194.000000px;}
.h3_c01104{height:42.292969px;}
.h1_c01104{height:51.257812px;}
.h6_c01104{height:56.074219px;}
.h5_c01104{height:220.500000px;}
.h4_c01104{height:222.000000px;}
.h2_c01104{height:289.500000px;}
.h0_c01104{height:1263.000000px;}
.w1_c01104{width:684.449850px;}
.w0_c01104{width:892.500000px;}
.x0_c01104{left:0.000000px;}
.x3_c01104{left:117.873135px;}
.x1_c01104{left:134.787405px;}
.x2_c01104{left:147.000000px;}
.x4_c01104{left:149.444550px;}
.x5_c01104{left:263.637600px;}
.x6_c01104{left:432.515100px;}
.x7_c01104{left:817.725150px;}
@media print{
.v0_c01104{vertical-align:0.000000pt;}
.ls2_c01104{letter-spacing:-0.012800pt;}
.ls1_c01104{letter-spacing:0.000000pt;}
.ls0_c01104{letter-spacing:0.010667pt;}
.ls3_c01104{letter-spacing:0.019200pt;}
.ws0_c01104{word-spacing:-0.051200pt;}
.ws1_c01104{word-spacing:0.000000pt;}
._7_c01104{margin-left:-2.368000pt;}
._3_c01104{margin-left:-1.088000pt;}
._9_c01104{width:1.542400pt;}
._5_c01104{width:2.624000pt;}
._1_c01104{width:4.441600pt;}
._c_c01104{width:5.446400pt;}
._b_c01104{width:6.400160pt;}
._2_c01104{width:8.345600pt;}
._6_c01104{width:10.227200pt;}
._a_c01104{width:11.180800pt;}
._0_c01104{width:12.755200pt;}
._4_c01104{width:13.875200pt;}
._8_c01104{width:15.142400pt;}
.fs1_c01104{font-size:48.000000pt;}
.fs2_c01104{font-size:53.333333pt;}
.fs0_c01104{font-size:64.000000pt;}
.y0_c01104{bottom:0.000000pt;}
.y6_c01104{bottom:10.666667pt;}
.yc_c01104{bottom:60.000000pt;}
.ya_c01104{bottom:113.333333pt;}
.y9_c01104{bottom:337.333333pt;}
.y8_c01104{bottom:361.333333pt;}
.y7_c01104{bottom:401.333333pt;}
.y5_c01104{bottom:616.000000pt;}
.y4_c01104{bottom:901.333333pt;}
.y3_c01104{bottom:925.333333pt;}
.y2_c01104{bottom:949.333333pt;}
.y1_c01104{bottom:973.333333pt;}
.yb_c01104{bottom:1061.333333pt;}
.h3_c01104{height:37.593750pt;}
.h1_c01104{height:45.562500pt;}
.h6_c01104{height:49.843750pt;}
.h5_c01104{height:196.000000pt;}
.h4_c01104{height:197.333333pt;}
.h2_c01104{height:257.333333pt;}
.h0_c01104{height:1122.666667pt;}
.w1_c01104{width:608.399867pt;}
.w0_c01104{width:793.333333pt;}
.x0_c01104{left:0.000000pt;}
.x3_c01104{left:104.776120pt;}
.x1_c01104{left:119.811027pt;}
.x2_c01104{left:130.666667pt;}
.x4_c01104{left:132.839600pt;}
.x5_c01104{left:234.344533pt;}
.x6_c01104{left:384.457867pt;}
.x7_c01104{left:726.866800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_808da54f1d181fbe13cb0f77.woff2')format("woff");}.ff1_c01105{font-family:ff1_c01105;line-height:0.934082;font-style:normal;font-weight:normal;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_aadf010aa4ad148337d82738.woff2')format("woff");}.ff2_c01105{font-family:ff2_c01105;line-height:0.987793;font-style:normal;font-weight:normal;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_8f4af162ce0b10d6f51bb7aa.woff2')format("woff");}.ff3_c01105{font-family:ff3_c01105;line-height:0.755859;font-style:normal;font-weight:normal;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_51cc8ceeafa6fb8d43395974.woff2')format("woff");}.ff4_c01105{font-family:ff4_c01105;line-height:1.155762;font-style: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;}
.ls1_c01105{letter-spacing:0.000000px;}
.ls2_c01105{letter-spacing:0.012000px;}
.ls0_c01105{letter-spacing:0.021600px;}
.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;}
}
.ws0_c01105{word-spacing:-19.800000px;}
.ws1_c01105{word-spacing:0.000000px;}
._7_c01105{margin-left:-6.228000px;}
._9_c01105{margin-left:-3.722400px;}
._2_c01105{margin-left:-1.900800px;}
._3_c01105{width:1.130400px;}
._0_c01105{width:2.325600px;}
._4_c01105{width:3.434400px;}
._1_c01105{width:4.881600px;}
._8_c01105{width:6.811200px;}
._5_c01105{width:8.157600px;}
._6_c01105{width:10.087200px;}
._a_c01105{width:11.887200px;}
._b_c01105{width:13.392000px;}
._f_c01105{width:15.451200px;}
._10_c01105{width:16.912800px;}
._e_c01105{width:18.086400px;}
._c_c01105{width:21.621600px;}
._d_c01105{width:23.587200px;}
.fc1_c01105{color:transparent;}
.fc0_c01105{color:rgb(0,0,0);}
.fs1_c01105{font-size:54.000000px;}
.fs2_c01105{font-size:60.000000px;}
.fs0_c01105{font-size:72.000000px;}
.y0_c01105{bottom:0.000000px;}
.y13_c01105{bottom:10.500000px;}
.y4_c01105{bottom:12.000000px;}
.y12_c01105{bottom:28.500000px;}
.y15_c01105{bottom:67.500000px;}
.y11_c01105{bottom:178.500000px;}
.y10_c01105{bottom:453.000000px;}
.yf_c01105{bottom:480.000000px;}
.ye_c01105{bottom:507.000000px;}
.yd_c01105{bottom:534.000000px;}
.yc_c01105{bottom:561.000000px;}
.yb_c01105{bottom:588.000000px;}
.ya_c01105{bottom:615.000000px;}
.y9_c01105{bottom:642.000000px;}
.y8_c01105{bottom:669.000000px;}
.y7_c01105{bottom:696.000000px;}
.y6_c01105{bottom:723.000000px;}
.y5_c01105{bottom:750.000000px;}
.y3_c01105{bottom:795.000000px;}
.y2_c01105{bottom:1068.000000px;}
.y1_c01105{bottom:1095.000000px;}
.y14_c01105{bottom:1194.000000px;}
.h3_c01105{height:42.292969px;}
.h6_c01105{height:44.208984px;}
.h1_c01105{height:51.257812px;}
.h5_c01105{height:56.074219px;}
.h2_c01105{height:241.500000px;}
.h4_c01105{height:243.000000px;}
.h0_c01105{height:1263.000000px;}
.w1_c01105{width:684.449850px;}
.w0_c01105{width:892.500000px;}
.x0_c01105{left:0.000000px;}
.x4_c01105{left:14.151214px;}
.x1_c01105{left:49.748025px;}
.x2_c01105{left:61.500000px;}
.x3_c01105{left:223.654950px;}
.x5_c01105{left:312.196050px;}
@media print{
.v0_c01105{vertical-align:0.000000pt;}
.ls1_c01105{letter-spacing:0.000000pt;}
.ls2_c01105{letter-spacing:0.010667pt;}
.ls0_c01105{letter-spacing:0.019200pt;}
.ws0_c01105{word-spacing:-17.600000pt;}
.ws1_c01105{word-spacing:0.000000pt;}
._7_c01105{margin-left:-5.536000pt;}
._9_c01105{margin-left:-3.308800pt;}
._2_c01105{margin-left:-1.689600pt;}
._3_c01105{width:1.004800pt;}
._0_c01105{width:2.067200pt;}
._4_c01105{width:3.052800pt;}
._1_c01105{width:4.339200pt;}
._8_c01105{width:6.054400pt;}
._5_c01105{width:7.251200pt;}
._6_c01105{width:8.966400pt;}
._a_c01105{width:10.566400pt;}
._b_c01105{width:11.904000pt;}
._f_c01105{width:13.734400pt;}
._10_c01105{width:15.033600pt;}
._e_c01105{width:16.076800pt;}
._c_c01105{width:19.219200pt;}
._d_c01105{width:20.966400pt;}
.fs1_c01105{font-size:48.000000pt;}
.fs2_c01105{font-size:53.333333pt;}
.fs0_c01105{font-size:64.000000pt;}
.y0_c01105{bottom:0.000000pt;}
.y13_c01105{bottom:9.333333pt;}
.y4_c01105{bottom:10.666667pt;}
.y12_c01105{bottom:25.333333pt;}
.y15_c01105{bottom:60.000000pt;}
.y11_c01105{bottom:158.666667pt;}
.y10_c01105{bottom:402.666667pt;}
.yf_c01105{bottom:426.666667pt;}
.ye_c01105{bottom:450.666667pt;}
.yd_c01105{bottom:474.666667pt;}
.yc_c01105{bottom:498.666667pt;}
.yb_c01105{bottom:522.666667pt;}
.ya_c01105{bottom:546.666667pt;}
.y9_c01105{bottom:570.666667pt;}
.y8_c01105{bottom:594.666667pt;}
.y7_c01105{bottom:618.666667pt;}
.y6_c01105{bottom:642.666667pt;}
.y5_c01105{bottom:666.666667pt;}
.y3_c01105{bottom:706.666667pt;}
.y2_c01105{bottom:949.333333pt;}
.y1_c01105{bottom:973.333333pt;}
.y14_c01105{bottom:1061.333333pt;}
.h3_c01105{height:37.593750pt;}
.h6_c01105{height:39.296875pt;}
.h1_c01105{height:45.562500pt;}
.h5_c01105{height:49.843750pt;}
.h2_c01105{height:214.666667pt;}
.h4_c01105{height:216.000000pt;}
.h0_c01105{height:1122.666667pt;}
.w1_c01105{width:608.399867pt;}
.w0_c01105{width:793.333333pt;}
.x0_c01105{left:0.000000pt;}
.x4_c01105{left:12.578857pt;}
.x1_c01105{left:44.220467pt;}
.x2_c01105{left:54.666667pt;}
.x3_c01105{left:198.804400pt;}
.x5_c01105{left:277.507600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9d1dbe4883df5272f5efda0a.woff2')format("woff");}.ff1_c01106{font-family:ff1_c01106;line-height:0.987793;font-style:normal;font-weight:normal;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_1cd5619d8f133196ff8f2798.woff2')format("woff");}.ff2_c01106{font-family:ff2_c01106;line-height:0.933105;font-style:normal;font-weight:normal;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_37196c6f50e5419300c27b6c.woff2')format("woff");}.ff3_c01106{font-family:ff3_c01106;line-height:1.155762;font-style: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;}
.ls1_c01106{letter-spacing:0.000000px;}
.ls0_c01106{letter-spacing:0.012000px;}
.ls2_c01106{letter-spacing:0.021600px;}
.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:0.000000px;}
._6_c01106{margin-left:-7.200000px;}
._1_c01106{margin-left:-4.140000px;}
._4_c01106{margin-left:-2.944800px;}
._3_c01106{margin-left:-1.353600px;}
._0_c01106{width:1.641600px;}
._5_c01106{width:2.808000px;}
._2_c01106{width:4.672800px;}
.fc0_c01106{color:rgb(0,0,0);}
.fs0_c01106{font-size:54.000000px;}
.fs2_c01106{font-size:60.000000px;}
.fs1_c01106{font-size:72.000000px;}
.y0_c01106{bottom:0.000000px;}
.y3_c01106{bottom:10.500000px;}
.y7_c01106{bottom:12.000000px;}
.y2_c01106{bottom:28.500000px;}
.y9_c01106{bottom:67.500000px;}
.y6_c01106{bottom:235.500000px;}
.y5_c01106{bottom:790.500000px;}
.y4_c01106{bottom:817.500000px;}
.y1_c01106{bottom:862.500000px;}
.y8_c01106{bottom:1194.000000px;}
.h2_c01106{height:42.292969px;}
.h3_c01106{height:51.187500px;}
.h5_c01106{height:56.074219px;}
.h1_c01106{height:250.500000px;}
.h4_c01106{height:523.500000px;}
.h0_c01106{height:1263.000000px;}
.w1_c01106{width:684.449850px;}
.w0_c01106{width:892.500000px;}
.x0_c01106{left:0.000000px;}
.x2_c01106{left:9.224944px;}
.x3_c01106{left:43.784640px;}
.x4_c01106{left:134.787405px;}
.x1_c01106{left:147.000000px;}
.x5_c01106{left:267.378450px;}
.x6_c01106{left:432.515100px;}
.x7_c01106{left:817.725150px;}
@media print{
.v0_c01106{vertical-align:0.000000pt;}
.ls1_c01106{letter-spacing:0.000000pt;}
.ls0_c01106{letter-spacing:0.010667pt;}
.ls2_c01106{letter-spacing:0.019200pt;}
.ws0_c01106{word-spacing:0.000000pt;}
._6_c01106{margin-left:-6.400000pt;}
._1_c01106{margin-left:-3.680000pt;}
._4_c01106{margin-left:-2.617600pt;}
._3_c01106{margin-left:-1.203200pt;}
._0_c01106{width:1.459200pt;}
._5_c01106{width:2.496000pt;}
._2_c01106{width:4.153600pt;}
.fs0_c01106{font-size:48.000000pt;}
.fs2_c01106{font-size:53.333333pt;}
.fs1_c01106{font-size:64.000000pt;}
.y0_c01106{bottom:0.000000pt;}
.y3_c01106{bottom:9.333333pt;}
.y7_c01106{bottom:10.666667pt;}
.y2_c01106{bottom:25.333333pt;}
.y9_c01106{bottom:60.000000pt;}
.y6_c01106{bottom:209.333333pt;}
.y5_c01106{bottom:702.666667pt;}
.y4_c01106{bottom:726.666667pt;}
.y1_c01106{bottom:766.666667pt;}
.y8_c01106{bottom:1061.333333pt;}
.h2_c01106{height:37.593750pt;}
.h3_c01106{height:45.500000pt;}
.h5_c01106{height:49.843750pt;}
.h1_c01106{height:222.666667pt;}
.h4_c01106{height:465.333333pt;}
.h0_c01106{height:1122.666667pt;}
.w1_c01106{width:608.399867pt;}
.w0_c01106{width:793.333333pt;}
.x0_c01106{left:0.000000pt;}
.x2_c01106{left:8.199951pt;}
.x3_c01106{left:38.919680pt;}
.x4_c01106{left:119.811027pt;}
.x1_c01106{left:130.666667pt;}
.x5_c01106{left:237.669733pt;}
.x6_c01106{left:384.457867pt;}
.x7_c01106{left:726.866800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e9fe8bc727a8ff4aa3d67bef.woff2')format("woff");}.ff1_c01107{font-family:ff1_c01107;line-height:0.987793;font-style:normal;font-weight:normal;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_98062a1896822c9c68cabf4d.woff2')format("woff");}.ff2_c01107{font-family:ff2_c01107;line-height:0.934082;font-style:normal;font-weight:normal;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_5cf565ef90f725b6e21f5d66.woff2')format("woff");}.ff3_c01107{font-family:ff3_c01107;line-height:0.755859;font-style:normal;font-weight:normal;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_188f2bda954a3c0a2a63fd42.woff2')format("woff");}.ff4_c01107{font-family:ff4_c01107;line-height:1.155762;font-style: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);}
.v0_c01107{vertical-align:0.000000px;}
.ls1_c01107{letter-spacing:0.000000px;}
.ls2_c01107{letter-spacing:0.012000px;}
.ls0_c01107{letter-spacing:0.021600px;}
.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:0.000000px;}
._9_c01107{margin-left:-3.549600px;}
._3_c01107{margin-left:-2.397600px;}
._0_c01107{margin-left:-1.252800px;}
._1_c01107{width:1.944000px;}
._2_c01107{width:3.700800px;}
._4_c01107{width:5.090400px;}
._5_c01107{width:6.228000px;}
._7_c01107{width:7.495200px;}
._6_c01107{width:8.784000px;}
._8_c01107{width:10.360800px;}
.fc0_c01107{color:rgb(0,0,0);}
.fs0_c01107{font-size:54.000000px;}
.fs2_c01107{font-size:60.000000px;}
.fs1_c01107{font-size:72.000000px;}
.y0_c01107{bottom:0.000000px;}
.y2_c01107{bottom:12.000000px;}
.ya_c01107{bottom:67.500000px;}
.y8_c01107{bottom:141.000000px;}
.y7_c01107{bottom:168.000000px;}
.y6_c01107{bottom:195.000000px;}
.y5_c01107{bottom:240.000000px;}
.y4_c01107{bottom:667.500000px;}
.y3_c01107{bottom:694.500000px;}
.y1_c01107{bottom:739.500000px;}
.y9_c01107{bottom:1194.000000px;}
.h2_c01107{height:42.292969px;}
.h6_c01107{height:44.208984px;}
.h3_c01107{height:51.257812px;}
.h5_c01107{height:56.074219px;}
.h1_c01107{height:373.500000px;}
.h4_c01107{height:396.000000px;}
.h0_c01107{height:1263.000000px;}
.w1_c01107{width:684.449850px;}
.w0_c01107{width:892.500000px;}
.x0_c01107{left:0.000000px;}
.x3_c01107{left:49.748025px;}
.x1_c01107{left:61.500000px;}
.x2_c01107{left:222.738750px;}
.x4_c01107{left:250.147500px;}
@media print{
.v0_c01107{vertical-align:0.000000pt;}
.ls1_c01107{letter-spacing:0.000000pt;}
.ls2_c01107{letter-spacing:0.010667pt;}
.ls0_c01107{letter-spacing:0.019200pt;}
.ws0_c01107{word-spacing:0.000000pt;}
._9_c01107{margin-left:-3.155200pt;}
._3_c01107{margin-left:-2.131200pt;}
._0_c01107{margin-left:-1.113600pt;}
._1_c01107{width:1.728000pt;}
._2_c01107{width:3.289600pt;}
._4_c01107{width:4.524800pt;}
._5_c01107{width:5.536000pt;}
._7_c01107{width:6.662400pt;}
._6_c01107{width:7.808000pt;}
._8_c01107{width:9.209600pt;}
.fs0_c01107{font-size:48.000000pt;}
.fs2_c01107{font-size:53.333333pt;}
.fs1_c01107{font-size:64.000000pt;}
.y0_c01107{bottom:0.000000pt;}
.y2_c01107{bottom:10.666667pt;}
.ya_c01107{bottom:60.000000pt;}
.y8_c01107{bottom:125.333333pt;}
.y7_c01107{bottom:149.333333pt;}
.y6_c01107{bottom:173.333333pt;}
.y5_c01107{bottom:213.333333pt;}
.y4_c01107{bottom:593.333333pt;}
.y3_c01107{bottom:617.333333pt;}
.y1_c01107{bottom:657.333333pt;}
.y9_c01107{bottom:1061.333333pt;}
.h2_c01107{height:37.593750pt;}
.h6_c01107{height:39.296875pt;}
.h3_c01107{height:45.562500pt;}
.h5_c01107{height:49.843750pt;}
.h1_c01107{height:332.000000pt;}
.h4_c01107{height:352.000000pt;}
.h0_c01107{height:1122.666667pt;}
.w1_c01107{width:608.399867pt;}
.w0_c01107{width:793.333333pt;}
.x0_c01107{left:0.000000pt;}
.x3_c01107{left:44.220467pt;}
.x1_c01107{left:54.666667pt;}
.x2_c01107{left:197.990000pt;}
.x4_c01107{left:222.353333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_029175a2a9debd2fc696f147.woff2')format("woff");}.ff1_c01108{font-family:ff1_c01108;line-height:0.987793;font-style:normal;font-weight:normal;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_bfafd6c68bc3b76dfc3f4de7.woff2')format("woff");}.ff2_c01108{font-family:ff2_c01108;line-height:1.163086;font-style:normal;font-weight:normal;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_7bc9a50aaf5d914bf390a1ee.woff2')format("woff");}.ff3_c01108{font-family:ff3_c01108;line-height:1.155762;font-style: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;}
.ls2_c01108{letter-spacing:0.000000px;}
.ls0_c01108{letter-spacing:0.012000px;}
.ls1_c01108{letter-spacing:0.021600px;}
.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;}
}
.ws0_c01108{word-spacing:0.000000px;}
._c_c01108{margin-left:-10.540800px;}
._0_c01108{margin-left:-6.235200px;}
._6_c01108{margin-left:-3.952800px;}
._a_c01108{margin-left:-2.872800px;}
._4_c01108{margin-left:-1.468800px;}
._3_c01108{width:1.540800px;}
._2_c01108{width:2.923200px;}
._1_c01108{width:4.420800px;}
._5_c01108{width:5.983200px;}
._d_c01108{width:7.020000px;}
._7_c01108{width:8.445600px;}
._e_c01108{width:9.597600px;}
._9_c01108{width:21.319200px;}
._b_c01108{width:24.206400px;}
._8_c01108{width:25.308000px;}
.fc0_c01108{color:rgb(0,0,0);}
.fs0_c01108{font-size:54.000000px;}
.fs2_c01108{font-size:60.000000px;}
.fs1_c01108{font-size:72.000000px;}
.y0_c01108{bottom:0.000000px;}
.y2_c01108{bottom:12.000000px;}
.ye_c01108{bottom:67.500000px;}
.yc_c01108{bottom:232.500000px;}
.yb_c01108{bottom:259.500000px;}
.ya_c01108{bottom:286.500000px;}
.y9_c01108{bottom:313.500000px;}
.y8_c01108{bottom:358.500000px;}
.y7_c01108{bottom:705.000000px;}
.y6_c01108{bottom:732.000000px;}
.y5_c01108{bottom:759.000000px;}
.y4_c01108{bottom:786.000000px;}
.y3_c01108{bottom:834.000000px;}
.y1_c01108{bottom:879.000000px;}
.yd_c01108{bottom:1194.000000px;}
.h2_c01108{height:42.292969px;}
.h5_c01108{height:56.074219px;}
.h3_c01108{height:67.746094px;}
.h1_c01108{height:234.000000px;}
.h4_c01108{height:315.000000px;}
.h0_c01108{height:1263.000000px;}
.w1_c01108{width:684.449850px;}
.w0_c01108{width:892.500000px;}
.x0_c01108{left:0.000000px;}
.x1_c01108{left:135.000000px;}
.x2_c01108{left:147.249480px;}
.x3_c01108{left:226.189500px;}
.x4_c01108{left:432.515100px;}
.x5_c01108{left:817.725150px;}
@media print{
.v0_c01108{vertical-align:0.000000pt;}
.ls2_c01108{letter-spacing:0.000000pt;}
.ls0_c01108{letter-spacing:0.010667pt;}
.ls1_c01108{letter-spacing:0.019200pt;}
.ws0_c01108{word-spacing:0.000000pt;}
._c_c01108{margin-left:-9.369600pt;}
._0_c01108{margin-left:-5.542400pt;}
._6_c01108{margin-left:-3.513600pt;}
._a_c01108{margin-left:-2.553600pt;}
._4_c01108{margin-left:-1.305600pt;}
._3_c01108{width:1.369600pt;}
._2_c01108{width:2.598400pt;}
._1_c01108{width:3.929600pt;}
._5_c01108{width:5.318400pt;}
._d_c01108{width:6.240000pt;}
._7_c01108{width:7.507200pt;}
._e_c01108{width:8.531200pt;}
._9_c01108{width:18.950400pt;}
._b_c01108{width:21.516800pt;}
._8_c01108{width:22.496000pt;}
.fs0_c01108{font-size:48.000000pt;}
.fs2_c01108{font-size:53.333333pt;}
.fs1_c01108{font-size:64.000000pt;}
.y0_c01108{bottom:0.000000pt;}
.y2_c01108{bottom:10.666667pt;}
.ye_c01108{bottom:60.000000pt;}
.yc_c01108{bottom:206.666667pt;}
.yb_c01108{bottom:230.666667pt;}
.ya_c01108{bottom:254.666667pt;}
.y9_c01108{bottom:278.666667pt;}
.y8_c01108{bottom:318.666667pt;}
.y7_c01108{bottom:626.666667pt;}
.y6_c01108{bottom:650.666667pt;}
.y5_c01108{bottom:674.666667pt;}
.y4_c01108{bottom:698.666667pt;}
.y3_c01108{bottom:741.333333pt;}
.y1_c01108{bottom:781.333333pt;}
.yd_c01108{bottom:1061.333333pt;}
.h2_c01108{height:37.593750pt;}
.h5_c01108{height:49.843750pt;}
.h3_c01108{height:60.218750pt;}
.h1_c01108{height:208.000000pt;}
.h4_c01108{height:280.000000pt;}
.h0_c01108{height:1122.666667pt;}
.w1_c01108{width:608.399867pt;}
.w0_c01108{width:793.333333pt;}
.x0_c01108{left:0.000000pt;}
.x1_c01108{left:120.000000pt;}
.x2_c01108{left:130.888427pt;}
.x3_c01108{left:201.057333pt;}
.x4_c01108{left:384.457867pt;}
.x5_c01108{left:726.866800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f397d61443871f30c0323dbf.woff2')format("woff");}.ff1_c01109{font-family:ff1_c01109;line-height:0.801270;font-style:normal;font-weight:normal;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_11e50d2c752ccfb9d9e51e31.woff2')format("woff");}.ff2_c01109{font-family:ff2_c01109;line-height:0.933105;font-style:normal;font-weight:normal;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_5128f0ce016756b57c462305.woff2')format("woff");}.ff3_c01109{font-family:ff3_c01109;line-height:0.755859;font-style:normal;font-weight:normal;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_669016ca22f8f7bee8753ab1.woff2')format("woff");}.ff4_c01109{font-family:ff4_c01109;line-height:1.155762;font-style: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);}
.v0_c01109{vertical-align:0.000000px;}
.ls1_c01109{letter-spacing:0.000000px;}
.ls2_c01109{letter-spacing:0.012000px;}
.ls0_c01109{letter-spacing:0.021600px;}
.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;}
}
.ws0_c01109{word-spacing:0.000000px;}
._c_c01109{margin-left:-5.054400px;}
._7_c01109{margin-left:-3.535200px;}
._4_c01109{margin-left:-2.412000px;}
._2_c01109{margin-left:-1.396800px;}
._1_c01109{width:1.252800px;}
._0_c01109{width:2.325600px;}
._6_c01109{width:3.585600px;}
._3_c01109{width:4.996800px;}
._5_c01109{width:6.069600px;}
._8_c01109{width:7.192800px;}
._a_c01109{width:10.404000px;}
._9_c01109{width:12.283200px;}
._b_c01109{width:14.097600px;}
._d_c01109{width:16.099200px;}
._e_c01109{width:17.107200px;}
.fc0_c01109{color:rgb(0,0,0);}
.fs0_c01109{font-size:54.000000px;}
.fs2_c01109{font-size:60.000000px;}
.fs1_c01109{font-size:72.000000px;}
.y0_c01109{bottom:0.000000px;}
.y2_c01109{bottom:12.000000px;}
.y9_c01109{bottom:67.500000px;}
.y7_c01109{bottom:138.000000px;}
.y6_c01109{bottom:165.000000px;}
.y5_c01109{bottom:210.000000px;}
.y4_c01109{bottom:661.500000px;}
.y3_c01109{bottom:688.500000px;}
.y1_c01109{bottom:733.500000px;}
.y8_c01109{bottom:1194.000000px;}
.h2_c01109{height:42.292969px;}
.h6_c01109{height:44.208984px;}
.h3_c01109{height:51.187500px;}
.h5_c01109{height:56.074219px;}
.h1_c01109{height:379.500000px;}
.h4_c01109{height:420.000000px;}
.h0_c01109{height:1263.000000px;}
.w1_c01109{width:684.449850px;}
.w0_c01109{width:892.500000px;}
.x0_c01109{left:0.000000px;}
.x3_c01109{left:49.748025px;}
.x1_c01109{left:61.500000px;}
.x2_c01109{left:137.869350px;}
.x4_c01109{left:231.749700px;}
@media print{
.v0_c01109{vertical-align:0.000000pt;}
.ls1_c01109{letter-spacing:0.000000pt;}
.ls2_c01109{letter-spacing:0.010667pt;}
.ls0_c01109{letter-spacing:0.019200pt;}
.ws0_c01109{word-spacing:0.000000pt;}
._c_c01109{margin-left:-4.492800pt;}
._7_c01109{margin-left:-3.142400pt;}
._4_c01109{margin-left:-2.144000pt;}
._2_c01109{margin-left:-1.241600pt;}
._1_c01109{width:1.113600pt;}
._0_c01109{width:2.067200pt;}
._6_c01109{width:3.187200pt;}
._3_c01109{width:4.441600pt;}
._5_c01109{width:5.395200pt;}
._8_c01109{width:6.393600pt;}
._a_c01109{width:9.248000pt;}
._9_c01109{width:10.918400pt;}
._b_c01109{width:12.531200pt;}
._d_c01109{width:14.310400pt;}
._e_c01109{width:15.206400pt;}
.fs0_c01109{font-size:48.000000pt;}
.fs2_c01109{font-size:53.333333pt;}
.fs1_c01109{font-size:64.000000pt;}
.y0_c01109{bottom:0.000000pt;}
.y2_c01109{bottom:10.666667pt;}
.y9_c01109{bottom:60.000000pt;}
.y7_c01109{bottom:122.666667pt;}
.y6_c01109{bottom:146.666667pt;}
.y5_c01109{bottom:186.666667pt;}
.y4_c01109{bottom:588.000000pt;}
.y3_c01109{bottom:612.000000pt;}
.y1_c01109{bottom:652.000000pt;}
.y8_c01109{bottom:1061.333333pt;}
.h2_c01109{height:37.593750pt;}
.h6_c01109{height:39.296875pt;}
.h3_c01109{height:45.500000pt;}
.h5_c01109{height:49.843750pt;}
.h1_c01109{height:337.333333pt;}
.h4_c01109{height:373.333333pt;}
.h0_c01109{height:1122.666667pt;}
.w1_c01109{width:608.399867pt;}
.w0_c01109{width:793.333333pt;}
.x0_c01109{left:0.000000pt;}
.x3_c01109{left:44.220467pt;}
.x1_c01109{left:54.666667pt;}
.x2_c01109{left:122.550533pt;}
.x4_c01109{left:205.999733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_96cfb61046406df473340ca4.woff2')format("woff");}.ff1_c01110{font-family:ff1_c01110;line-height:0.976074;font-style:normal;font-weight:normal;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_b58bdbaeee3a07dd6a2a1942.woff2')format("woff");}.ff2_c01110{font-family:ff2_c01110;line-height:0.934082;font-style:normal;font-weight:normal;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_5a1f421bec82fcfebc6a2ef5.woff2')format("woff");}.ff3_c01110{font-family:ff3_c01110;line-height:1.155762;font-style: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);}
.v0_c01110{vertical-align:0.000000px;}
.ls2_c01110{letter-spacing:0.000000px;}
.ls1_c01110{letter-spacing:0.012000px;}
.ls0_c01110{letter-spacing:0.021600px;}
.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;}
}
.ws0_c01110{word-spacing:0.000000px;}
._a_c01110{margin-left:-4.536000px;}
._6_c01110{margin-left:-3.477600px;}
._1_c01110{margin-left:-2.253600px;}
._3_c01110{width:1.029600px;}
._0_c01110{width:2.448000px;}
._4_c01110{width:3.895200px;}
._5_c01110{width:5.205600px;}
._8_c01110{width:6.595200px;}
._2_c01110{width:7.711200px;}
._7_c01110{width:9.367200px;}
._9_c01110{width:10.476000px;}
.fc1_c01110{color:transparent;}
.fc0_c01110{color:rgb(0,0,0);}
.fs0_c01110{font-size:54.000000px;}
.fs2_c01110{font-size:60.000000px;}
.fs1_c01110{font-size:72.000000px;}
.y0_c01110{bottom:0.000000px;}
.y2_c01110{bottom:12.000000px;}
.ya_c01110{bottom:67.500000px;}
.y8_c01110{bottom:139.500000px;}
.y7_c01110{bottom:166.500000px;}
.y6_c01110{bottom:193.500000px;}
.y5_c01110{bottom:241.500000px;}
.y4_c01110{bottom:268.500000px;}
.y3_c01110{bottom:313.500000px;}
.y1_c01110{bottom:817.500000px;}
.y9_c01110{bottom:1194.000000px;}
.h2_c01110{height:42.292969px;}
.h4_c01110{height:51.257812px;}
.h5_c01110{height:56.074219px;}
.h1_c01110{height:295.500000px;}
.h3_c01110{height:496.500000px;}
.h0_c01110{height:1263.000000px;}
.w1_c01110{width:684.449850px;}
.w0_c01110{width:892.500000px;}
.x0_c01110{left:0.000000px;}
.x4_c01110{left:134.787405px;}
.x1_c01110{left:147.000000px;}
.x2_c01110{left:265.242600px;}
.x3_c01110{left:270.127200px;}
.x5_c01110{left:432.515100px;}
.x6_c01110{left:817.725150px;}
@media print{
.v0_c01110{vertical-align:0.000000pt;}
.ls2_c01110{letter-spacing:0.000000pt;}
.ls1_c01110{letter-spacing:0.010667pt;}
.ls0_c01110{letter-spacing:0.019200pt;}
.ws0_c01110{word-spacing:0.000000pt;}
._a_c01110{margin-left:-4.032000pt;}
._6_c01110{margin-left:-3.091200pt;}
._1_c01110{margin-left:-2.003200pt;}
._3_c01110{width:0.915200pt;}
._0_c01110{width:2.176000pt;}
._4_c01110{width:3.462400pt;}
._5_c01110{width:4.627200pt;}
._8_c01110{width:5.862400pt;}
._2_c01110{width:6.854400pt;}
._7_c01110{width:8.326400pt;}
._9_c01110{width:9.312000pt;}
.fs0_c01110{font-size:48.000000pt;}
.fs2_c01110{font-size:53.333333pt;}
.fs1_c01110{font-size:64.000000pt;}
.y0_c01110{bottom:0.000000pt;}
.y2_c01110{bottom:10.666667pt;}
.ya_c01110{bottom:60.000000pt;}
.y8_c01110{bottom:124.000000pt;}
.y7_c01110{bottom:148.000000pt;}
.y6_c01110{bottom:172.000000pt;}
.y5_c01110{bottom:214.666667pt;}
.y4_c01110{bottom:238.666667pt;}
.y3_c01110{bottom:278.666667pt;}
.y1_c01110{bottom:726.666667pt;}
.y9_c01110{bottom:1061.333333pt;}
.h2_c01110{height:37.593750pt;}
.h4_c01110{height:45.562500pt;}
.h5_c01110{height:49.843750pt;}
.h1_c01110{height:262.666667pt;}
.h3_c01110{height:441.333333pt;}
.h0_c01110{height:1122.666667pt;}
.w1_c01110{width:608.399867pt;}
.w0_c01110{width:793.333333pt;}
.x0_c01110{left:0.000000pt;}
.x4_c01110{left:119.811027pt;}
.x1_c01110{left:130.666667pt;}
.x2_c01110{left:235.771200pt;}
.x3_c01110{left:240.113067pt;}
.x5_c01110{left:384.457867pt;}
.x6_c01110{left:726.866800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0e64439dd1373146684cecbf.woff2')format("woff");}.ff1_c01111{font-family:ff1_c01111;line-height:0.963867;font-style:normal;font-weight:normal;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_23aa14899886b75aff47946d.woff2')format("woff");}.ff2_c01111{font-family:ff2_c01111;line-height:0.934082;font-style:normal;font-weight:normal;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_0f0dc60aa1035fd6dce5e6cf.woff2')format("woff");}.ff3_c01111{font-family:ff3_c01111;line-height:0.936035;font-style:normal;font-weight:normal;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_869b7a630bb9166c291266e4.woff2')format("woff");}.ff4_c01111{font-family:ff4_c01111;line-height:0.756836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01111;src:url('chunks/assets/font_60f710326e24818847fe4c80.woff2')format("woff");}.ff5_c01111{font-family:ff5_c01111;line-height:1.155762;font-style: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;}
.ls3_c01111{letter-spacing:0.000000px;}
.ls2_c01111{letter-spacing:0.007200px;}
.ls4_c01111{letter-spacing:0.012000px;}
.ls0_c01111{letter-spacing:0.021600px;}
.ls1_c01111{letter-spacing:0.032400px;}
.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;}
}
.ws0_c01111{word-spacing:-19.800000px;}
.ws1_c01111{word-spacing:0.000000px;}
._10_c01111{margin-left:-7.200000px;}
._11_c01111{margin-left:-6.112800px;}
._3_c01111{margin-left:-3.996000px;}
._0_c01111{margin-left:-2.577600px;}
._4_c01111{margin-left:-1.173600px;}
._6_c01111{width:1.267200px;}
._1_c01111{width:2.750400px;}
._2_c01111{width:4.183200px;}
._5_c01111{width:5.536800px;}
._13_c01111{width:6.624000px;}
._12_c01111{width:8.265600px;}
._c_c01111{width:9.828000px;}
._b_c01111{width:11.858400px;}
._7_c01111{width:13.089600px;}
._9_c01111{width:14.983200px;}
._a_c01111{width:16.596000px;}
._8_c01111{width:18.511200px;}
._d_c01111{width:20.894400px;}
._f_c01111{width:23.745600px;}
._e_c01111{width:25.041600px;}
.fc0_c01111{color:rgb(0,0,0);}
.fs0_c01111{font-size:54.000000px;}
.fs2_c01111{font-size:60.000000px;}
.fs1_c01111{font-size:72.000000px;}
.y0_c01111{bottom:0.000000px;}
.y2_c01111{bottom:12.000000px;}
.y13_c01111{bottom:67.500000px;}
.y11_c01111{bottom:256.500000px;}
.y10_c01111{bottom:283.500000px;}
.yf_c01111{bottom:310.500000px;}
.ye_c01111{bottom:337.500000px;}
.yd_c01111{bottom:364.500000px;}
.yc_c01111{bottom:391.500000px;}
.yb_c01111{bottom:438.000000px;}
.ya_c01111{bottom:507.000000px;}
.y9_c01111{bottom:534.000000px;}
.y8_c01111{bottom:561.000000px;}
.y7_c01111{bottom:588.000000px;}
.y6_c01111{bottom:636.000000px;}
.y5_c01111{bottom:663.000000px;}
.y4_c01111{bottom:690.000000px;}
.y3_c01111{bottom:717.000000px;}
.y1_c01111{bottom:741.000000px;}
.y12_c01111{bottom:1194.000000px;}
.h2_c01111{height:41.633789px;}
.h6_c01111{height:44.208984px;}
.h3_c01111{height:51.257812px;}
.h4_c01111{height:51.539062px;}
.h5_c01111{height:56.074219px;}
.h1_c01111{height:372.000000px;}
.h0_c01111{height:1263.000000px;}
.w1_c01111{width:684.449850px;}
.w0_c01111{width:892.500000px;}
.x0_c01111{left:0.000000px;}
.x1_c01111{left:49.500000px;}
.x2_c01111{left:199.624650px;}
@media print{
.v0_c01111{vertical-align:0.000000pt;}
.ls3_c01111{letter-spacing:0.000000pt;}
.ls2_c01111{letter-spacing:0.006400pt;}
.ls4_c01111{letter-spacing:0.010667pt;}
.ls0_c01111{letter-spacing:0.019200pt;}
.ls1_c01111{letter-spacing:0.028800pt;}
.ws0_c01111{word-spacing:-17.600000pt;}
.ws1_c01111{word-spacing:0.000000pt;}
._10_c01111{margin-left:-6.400000pt;}
._11_c01111{margin-left:-5.433600pt;}
._3_c01111{margin-left:-3.552000pt;}
._0_c01111{margin-left:-2.291200pt;}
._4_c01111{margin-left:-1.043200pt;}
._6_c01111{width:1.126400pt;}
._1_c01111{width:2.444800pt;}
._2_c01111{width:3.718400pt;}
._5_c01111{width:4.921600pt;}
._13_c01111{width:5.888000pt;}
._12_c01111{width:7.347200pt;}
._c_c01111{width:8.736000pt;}
._b_c01111{width:10.540800pt;}
._7_c01111{width:11.635200pt;}
._9_c01111{width:13.318400pt;}
._a_c01111{width:14.752000pt;}
._8_c01111{width:16.454400pt;}
._d_c01111{width:18.572800pt;}
._f_c01111{width:21.107200pt;}
._e_c01111{width:22.259200pt;}
.fs0_c01111{font-size:48.000000pt;}
.fs2_c01111{font-size:53.333333pt;}
.fs1_c01111{font-size:64.000000pt;}
.y0_c01111{bottom:0.000000pt;}
.y2_c01111{bottom:10.666667pt;}
.y13_c01111{bottom:60.000000pt;}
.y11_c01111{bottom:228.000000pt;}
.y10_c01111{bottom:252.000000pt;}
.yf_c01111{bottom:276.000000pt;}
.ye_c01111{bottom:300.000000pt;}
.yd_c01111{bottom:324.000000pt;}
.yc_c01111{bottom:348.000000pt;}
.yb_c01111{bottom:389.333333pt;}
.ya_c01111{bottom:450.666667pt;}
.y9_c01111{bottom:474.666667pt;}
.y8_c01111{bottom:498.666667pt;}
.y7_c01111{bottom:522.666667pt;}
.y6_c01111{bottom:565.333333pt;}
.y5_c01111{bottom:589.333333pt;}
.y4_c01111{bottom:613.333333pt;}
.y3_c01111{bottom:637.333333pt;}
.y1_c01111{bottom:658.666667pt;}
.y12_c01111{bottom:1061.333333pt;}
.h2_c01111{height:37.007812pt;}
.h6_c01111{height:39.296875pt;}
.h3_c01111{height:45.562500pt;}
.h4_c01111{height:45.812500pt;}
.h5_c01111{height:49.843750pt;}
.h1_c01111{height:330.666667pt;}
.h0_c01111{height:1122.666667pt;}
.w1_c01111{width:608.399867pt;}
.w0_c01111{width:793.333333pt;}
.x0_c01111{left:0.000000pt;}
.x1_c01111{left:44.000000pt;}
.x2_c01111{left:177.444133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_26a912047b292dab84aca2fe.woff2')format("woff");}.ff1_c01112{font-family:ff1_c01112;line-height:0.987793;font-style:normal;font-weight:normal;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_62ad5097c483d39d73a10903.woff2')format("woff");}.ff2_c01112{font-family:ff2_c01112;line-height:1.155762;font-style: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);}
.v0_c01112{vertical-align:0.000000px;}
.ls3_c01112{letter-spacing:-0.016200px;}
.ls2_c01112{letter-spacing:0.000000px;}
.ls1_c01112{letter-spacing:0.012000px;}
.ls0_c01112{letter-spacing:0.021600px;}
.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;}
}
.ws0_c01112{word-spacing:0.000000px;}
._0_c01112{margin-left:-3.426000px;}
.fc0_c01112{color:rgb(0,0,0);}
.fs0_c01112{font-size:54.000000px;}
.fs1_c01112{font-size:60.000000px;}
.y0_c01112{bottom:0.000000px;}
.y2_c01112{bottom:12.000000px;}
.y5_c01112{bottom:67.500000px;}
.y3_c01112{bottom:390.000000px;}
.y1_c01112{bottom:760.500000px;}
.y4_c01112{bottom:1194.000000px;}
.h2_c01112{height:42.292969px;}
.h4_c01112{height:56.074219px;}
.h1_c01112{height:352.500000px;}
.h3_c01112{height:367.500000px;}
.h0_c01112{height:1263.000000px;}
.w1_c01112{width:676.500000px;}
.w0_c01112{width:892.500000px;}
.x0_c01112{left:0.000000px;}
.x1_c01112{left:150.000000px;}
.x2_c01112{left:179.941350px;}
.x3_c01112{left:239.099400px;}
.x4_c01112{left:416.782800px;}
.x5_c01112{left:801.992850px;}
@media print{
.v0_c01112{vertical-align:0.000000pt;}
.ls3_c01112{letter-spacing:-0.014400pt;}
.ls2_c01112{letter-spacing:0.000000pt;}
.ls1_c01112{letter-spacing:0.010667pt;}
.ls0_c01112{letter-spacing:0.019200pt;}
.ws0_c01112{word-spacing:0.000000pt;}
._0_c01112{margin-left:-3.045333pt;}
.fs0_c01112{font-size:48.000000pt;}
.fs1_c01112{font-size:53.333333pt;}
.y0_c01112{bottom:0.000000pt;}
.y2_c01112{bottom:10.666667pt;}
.y5_c01112{bottom:60.000000pt;}
.y3_c01112{bottom:346.666667pt;}
.y1_c01112{bottom:676.000000pt;}
.y4_c01112{bottom:1061.333333pt;}
.h2_c01112{height:37.593750pt;}
.h4_c01112{height:49.843750pt;}
.h1_c01112{height:313.333333pt;}
.h3_c01112{height:326.666667pt;}
.h0_c01112{height:1122.666667pt;}
.w1_c01112{width:601.333333pt;}
.w0_c01112{width:793.333333pt;}
.x0_c01112{left:0.000000pt;}
.x1_c01112{left:133.333333pt;}
.x2_c01112{left:159.947867pt;}
.x3_c01112{left:212.532800pt;}
.x4_c01112{left:370.473600pt;}
.x5_c01112{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_06b31ddd4906df2fce32b098.woff2')format("woff");}.ff1_c01113{font-family:ff1_c01113;line-height:0.884766;font-style:normal;font-weight:normal;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_90c2c53c5a2d8f28c458b9a1.woff2')format("woff");}.ff2_c01113{font-family:ff2_c01113;line-height:1.163086;font-style:normal;font-weight:normal;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_994b3e6e8b41d2d73cd426cf.woff2')format("woff");}.ff3_c01113{font-family:ff3_c01113;line-height:0.755859;font-style:normal;font-weight:normal;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_22c5daa003d6ed76dc7a1fc0.woff2')format("woff");}.ff4_c01113{font-family:ff4_c01113;line-height:1.155762;font-style:normal;font-weight:normal;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_34ea13a86601ab95d4d4fdf9.woff2')format("woff");}.ff5_c01113{font-family:ff5_c01113;line-height:1.115723;font-style:normal;font-weight: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_c01113;src:url('chunks/assets/font_f149ef451aa8c80521436e99.woff2')format("woff");}.ff6_c01113{font-family:ff6_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;}
.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);}
.v3_c01113{vertical-align:-33.000000px;}
.v2_c01113{vertical-align:-23.086200px;}
.v0_c01113{vertical-align:0.000000px;}
.v1_c01113{vertical-align:23.086200px;}
.ls7_c01113{letter-spacing:0.000000px;}
.ls0_c01113{letter-spacing:0.007800px;}
.ls8_c01113{letter-spacing:0.012000px;}
.ls4_c01113{letter-spacing:0.014400px;}
.ls1_c01113{letter-spacing:0.061200px;}
.ls2_c01113{letter-spacing:3.540600px;}
.ls6_c01113{letter-spacing:3.999999px;}
.ls3_c01113{letter-spacing:4.935000px;}
.ls5_c01113{letter-spacing:14.670000px;}
.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;}
}
.ws1_c01113{word-spacing:-15.000000px;}
.ws0_c01113{word-spacing:-10.000001px;}
.ws2_c01113{word-spacing:0.000000px;}
._13_c01113{margin-left:-7.627200px;}
._16_c01113{margin-left:-5.708361px;}
._8_c01113{margin-left:-4.353840px;}
._0_c01113{margin-left:-2.887200px;}
._2_c01113{margin-left:-1.735200px;}
._7_c01113{width:1.713600px;}
._5_c01113{width:2.822400px;}
._6_c01113{width:4.528800px;}
._d_c01113{width:5.616000px;}
._4_c01113{width:7.344000px;}
._3_c01113{width:9.115200px;}
._1_c01113{width:10.216800px;}
._12_c01113{width:11.635200px;}
._c_c01113{width:12.859200px;}
._a_c01113{width:14.268240px;}
._17_c01113{width:16.066761px;}
._b_c01113{width:17.159760px;}
._9_c01113{width:18.576000px;}
._11_c01113{width:21.160800px;}
._f_c01113{width:22.543200px;}
._10_c01113{width:24.516000px;}
._e_c01113{width:26.817840px;}
._14_c01113{width:28.036800px;}
._15_c01113{width:29.785680px;}
.fc1_c01113{color:rgb(255,255,255);}
.fc0_c01113{color:rgb(0,0,0);}
.fs5_c01113{font-size:40.000002px;}
.fs2_c01113{font-size:48.000000px;}
.fs4_c01113{font-size:60.000000px;}
.fs1_c01113{font-size:72.000000px;}
.fs0_c01113{font-size:78.000000px;}
.fs3_c01113{font-size:96.000000px;}
.y0_c01113{bottom:0.000000px;}
.y17_c01113{bottom:67.500000px;}
.y1e_c01113{bottom:132.000000px;}
.y1d_c01113{bottom:159.750000px;}
.y1c_c01113{bottom:201.000000px;}
.y1b_c01113{bottom:228.750000px;}
.y1a_c01113{bottom:278.250000px;}
.y19_c01113{bottom:319.500000px;}
.y18_c01113{bottom:347.250000px;}
.y14_c01113{bottom:396.000000px;}
.y13_c01113{bottom:423.000000px;}
.y12_c01113{bottom:450.000000px;}
.y11_c01113{bottom:477.000000px;}
.y10_c01113{bottom:504.000000px;}
.yf_c01113{bottom:531.000000px;}
.ye_c01113{bottom:579.000000px;}
.yd_c01113{bottom:606.000000px;}
.yc_c01113{bottom:633.000000px;}
.yb_c01113{bottom:660.000000px;}
.ya_c01113{bottom:708.000000px;}
.y9_c01113{bottom:735.000000px;}
.y8_c01113{bottom:762.000000px;}
.y7_c01113{bottom:810.000000px;}
.y6_c01113{bottom:837.000000px;}
.y5_c01113{bottom:864.000000px;}
.y4_c01113{bottom:891.000000px;}
.y3_c01113{bottom:918.000000px;}
.y2_c01113{bottom:945.000000px;}
.y1_c01113{bottom:991.500000px;}
.y15_c01113{bottom:1066.500000px;}
.y16_c01113{bottom:1194.000000px;}
.h7_c01113{height:35.878908px;}
.h6_c01113{height:44.208984px;}
.h8_c01113{height:53.818359px;}
.h1_c01113{height:55.224609px;}
.h5_c01113{height:56.074219px;}
.h2_c01113{height:67.746094px;}
.h3_c01113{height:68.250262px;}
.h4_c01113{height:90.328125px;}
.h0_c01113{height:1263.000000px;}
.w0_c01113{width:892.500000px;}
.x0_c01113{left:0.000000px;}
.x1_c01113{left:65.480310px;}
.x2_c01113{left:94.798875px;}
@media print{
.v3_c01113{vertical-align:-29.333333pt;}
.v2_c01113{vertical-align:-20.521067pt;}
.v0_c01113{vertical-align:0.000000pt;}
.v1_c01113{vertical-align:20.521067pt;}
.ls7_c01113{letter-spacing:0.000000pt;}
.ls0_c01113{letter-spacing:0.006933pt;}
.ls8_c01113{letter-spacing:0.010667pt;}
.ls4_c01113{letter-spacing:0.012800pt;}
.ls1_c01113{letter-spacing:0.054400pt;}
.ls2_c01113{letter-spacing:3.147200pt;}
.ls6_c01113{letter-spacing:3.555555pt;}
.ls3_c01113{letter-spacing:4.386667pt;}
.ls5_c01113{letter-spacing:13.040000pt;}
.ws1_c01113{word-spacing:-13.333333pt;}
.ws0_c01113{word-spacing:-8.888889pt;}
.ws2_c01113{word-spacing:0.000000pt;}
._13_c01113{margin-left:-6.779733pt;}
._16_c01113{margin-left:-5.074099pt;}
._8_c01113{margin-left:-3.870080pt;}
._0_c01113{margin-left:-2.566400pt;}
._2_c01113{margin-left:-1.542400pt;}
._7_c01113{width:1.523200pt;}
._5_c01113{width:2.508800pt;}
._6_c01113{width:4.025600pt;}
._d_c01113{width:4.992000pt;}
._4_c01113{width:6.528000pt;}
._3_c01113{width:8.102400pt;}
._1_c01113{width:9.081600pt;}
._12_c01113{width:10.342400pt;}
._c_c01113{width:11.430400pt;}
._a_c01113{width:12.682880pt;}
._17_c01113{width:14.281565pt;}
._b_c01113{width:15.253120pt;}
._9_c01113{width:16.512000pt;}
._11_c01113{width:18.809600pt;}
._f_c01113{width:20.038400pt;}
._10_c01113{width:21.792000pt;}
._e_c01113{width:23.838080pt;}
._14_c01113{width:24.921600pt;}
._15_c01113{width:26.476160pt;}
.fs5_c01113{font-size:35.555557pt;}
.fs2_c01113{font-size:42.666667pt;}
.fs4_c01113{font-size:53.333333pt;}
.fs1_c01113{font-size:64.000000pt;}
.fs0_c01113{font-size:69.333333pt;}
.fs3_c01113{font-size:85.333333pt;}
.y0_c01113{bottom:0.000000pt;}
.y17_c01113{bottom:60.000000pt;}
.y1e_c01113{bottom:117.333333pt;}
.y1d_c01113{bottom:142.000000pt;}
.y1c_c01113{bottom:178.666667pt;}
.y1b_c01113{bottom:203.333333pt;}
.y1a_c01113{bottom:247.333333pt;}
.y19_c01113{bottom:284.000000pt;}
.y18_c01113{bottom:308.666667pt;}
.y14_c01113{bottom:352.000000pt;}
.y13_c01113{bottom:376.000000pt;}
.y12_c01113{bottom:400.000000pt;}
.y11_c01113{bottom:424.000000pt;}
.y10_c01113{bottom:448.000000pt;}
.yf_c01113{bottom:472.000000pt;}
.ye_c01113{bottom:514.666667pt;}
.yd_c01113{bottom:538.666667pt;}
.yc_c01113{bottom:562.666667pt;}
.yb_c01113{bottom:586.666667pt;}
.ya_c01113{bottom:629.333333pt;}
.y9_c01113{bottom:653.333333pt;}
.y8_c01113{bottom:677.333333pt;}
.y7_c01113{bottom:720.000000pt;}
.y6_c01113{bottom:744.000000pt;}
.y5_c01113{bottom:768.000000pt;}
.y4_c01113{bottom:792.000000pt;}
.y3_c01113{bottom:816.000000pt;}
.y2_c01113{bottom:840.000000pt;}
.y1_c01113{bottom:881.333333pt;}
.y15_c01113{bottom:948.000000pt;}
.y16_c01113{bottom:1061.333333pt;}
.h7_c01113{height:31.892363pt;}
.h6_c01113{height:39.296875pt;}
.h8_c01113{height:47.838542pt;}
.h1_c01113{height:49.088542pt;}
.h5_c01113{height:49.843750pt;}
.h2_c01113{height:60.218750pt;}
.h3_c01113{height:60.666900pt;}
.h4_c01113{height:80.291667pt;}
.h0_c01113{height:1122.666667pt;}
.w0_c01113{width:793.333333pt;}
.x0_c01113{left:0.000000pt;}
.x1_c01113{left:58.204720pt;}
.x2_c01113{left:84.265667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c573c36801b33493fced4280.woff2')format("woff");}.ff1_c01114{font-family:ff1_c01114;line-height:0.934082;font-style:normal;font-weight:normal;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_a667eee36b4b795648747b24.woff2')format("woff");}.ff2_c01114{font-family:ff2_c01114;line-height:0.939453;font-style:normal;font-weight:normal;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_23a856435b735620f8b92240.woff2')format("woff");}.ff3_c01114{font-family:ff3_c01114;line-height:1.132812;font-style:normal;font-weight:normal;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_c35069409ddf2e8f0383fead.woff2')format("woff");}.ff4_c01114{font-family:ff4_c01114;line-height:1.115723;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01114;src:url('chunks/assets/font_0b86ff5070ea66fc6d3409a7.woff2')format("woff");}.ff5_c01114{font-family:ff5_c01114;line-height:1.155762;font-style:normal;font-weight: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_c01114;src:url('chunks/assets/font_aac89269b5d316ddb4383dde.woff2')format("woff");}.ff6_c01114{font-family:ff6_c01114;line-height:0.890137;font-style: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);}
.m1_c01114{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3_c01114{vertical-align:-33.000000px;}
.v2_c01114{vertical-align:-23.086200px;}
.v0_c01114{vertical-align:0.000000px;}
.v1_c01114{vertical-align:23.086200px;}
.ls6_c01114{letter-spacing:0.000000px;}
.ls0_c01114{letter-spacing:0.007800px;}
.ls4_c01114{letter-spacing:0.012000px;}
.ls2_c01114{letter-spacing:0.014400px;}
.ls3_c01114{letter-spacing:0.021600px;}
.ls5_c01114{letter-spacing:9.999999px;}
.ls1_c01114{letter-spacing:30.730800px;}
.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;}
}
.ws0_c01114{word-spacing:0.000000px;}
._e_c01114{margin-left:-9.612000px;}
._13_c01114{margin-left:-7.704000px;}
._14_c01114{margin-left:-5.780400px;}
._8_c01114{margin-left:-3.290400px;}
._4_c01114{margin-left:-1.137600px;}
._3_c01114{width:1.173600px;}
._6_c01114{width:2.980800px;}
._1_c01114{width:4.240800px;}
._d_c01114{width:6.516000px;}
._c_c01114{width:7.768800px;}
._10_c01114{width:9.302400px;}
._a_c01114{width:10.771200px;}
._b_c01114{width:11.901600px;}
._f_c01114{width:13.068000px;}
._9_c01114{width:14.083200px;}
._11_c01114{width:15.739200px;}
._2_c01114{width:17.150400px;}
._7_c01114{width:18.417600px;}
._0_c01114{width:21.391200px;}
._5_c01114{width:22.917600px;}
._12_c01114{width:24.004800px;}
.fc0_c01114{color:rgb(0,0,0);}
.fs5_c01114{font-size:40.000002px;}
.fs2_c01114{font-size:48.000000px;}
.fs3_c01114{font-size:54.000000px;}
.fs4_c01114{font-size:60.000000px;}
.fs0_c01114{font-size:72.000000px;}
.fs1_c01114{font-size:78.000000px;}
.y0_c01114{bottom:0.000000px;}
.yd_c01114{bottom:13.500000px;}
.yf_c01114{bottom:67.500000px;}
.y11_c01114{bottom:132.000000px;}
.y10_c01114{bottom:159.750000px;}
.yc_c01114{bottom:208.500000px;}
.yb_c01114{bottom:720.000000px;}
.ya_c01114{bottom:747.000000px;}
.y9_c01114{bottom:774.000000px;}
.y8_c01114{bottom:825.000000px;}
.y7_c01114{bottom:889.500000px;}
.y6_c01114{bottom:960.000000px;}
.y5_c01114{bottom:987.000000px;}
.y4_c01114{bottom:1014.000000px;}
.y3_c01114{bottom:1041.000000px;}
.y2_c01114{bottom:1068.000000px;}
.y1_c01114{bottom:1095.000000px;}
.ye_c01114{bottom:1194.000000px;}
.h8_c01114{height:35.878908px;}
.h1_c01114{height:51.257812px;}
.h3_c01114{height:51.785156px;}
.h9_c01114{height:53.818359px;}
.h7_c01114{height:56.074219px;}
.h2_c01114{height:56.100586px;}
.h4_c01114{height:57.258075px;}
.h6_c01114{height:64.582031px;}
.h5_c01114{height:480.000000px;}
.h0_c01114{height:1263.000000px;}
.w1_c01114{width:676.500000px;}
.w0_c01114{width:892.500000px;}
.x0_c01114{left:0.000000px;}
.x2_c01114{left:47.457270px;}
.x1_c01114{left:150.519750px;}
.x3_c01114{left:416.782800px;}
.x4_c01114{left:801.992850px;}
@media print{
.v3_c01114{vertical-align:-29.333333pt;}
.v2_c01114{vertical-align:-20.521067pt;}
.v0_c01114{vertical-align:0.000000pt;}
.v1_c01114{vertical-align:20.521067pt;}
.ls6_c01114{letter-spacing:0.000000pt;}
.ls0_c01114{letter-spacing:0.006933pt;}
.ls4_c01114{letter-spacing:0.010667pt;}
.ls2_c01114{letter-spacing:0.012800pt;}
.ls3_c01114{letter-spacing:0.019200pt;}
.ls5_c01114{letter-spacing:8.888888pt;}
.ls1_c01114{letter-spacing:27.316267pt;}
.ws0_c01114{word-spacing:0.000000pt;}
._e_c01114{margin-left:-8.544000pt;}
._13_c01114{margin-left:-6.848000pt;}
._14_c01114{margin-left:-5.138133pt;}
._8_c01114{margin-left:-2.924800pt;}
._4_c01114{margin-left:-1.011200pt;}
._3_c01114{width:1.043200pt;}
._6_c01114{width:2.649600pt;}
._1_c01114{width:3.769600pt;}
._d_c01114{width:5.792000pt;}
._c_c01114{width:6.905600pt;}
._10_c01114{width:8.268800pt;}
._a_c01114{width:9.574400pt;}
._b_c01114{width:10.579200pt;}
._f_c01114{width:11.616000pt;}
._9_c01114{width:12.518400pt;}
._11_c01114{width:13.990400pt;}
._2_c01114{width:15.244800pt;}
._7_c01114{width:16.371200pt;}
._0_c01114{width:19.014400pt;}
._5_c01114{width:20.371200pt;}
._12_c01114{width:21.337600pt;}
.fs5_c01114{font-size:35.555557pt;}
.fs2_c01114{font-size:42.666667pt;}
.fs3_c01114{font-size:48.000000pt;}
.fs4_c01114{font-size:53.333333pt;}
.fs0_c01114{font-size:64.000000pt;}
.fs1_c01114{font-size:69.333333pt;}
.y0_c01114{bottom:0.000000pt;}
.yd_c01114{bottom:12.000000pt;}
.yf_c01114{bottom:60.000000pt;}
.y11_c01114{bottom:117.333333pt;}
.y10_c01114{bottom:142.000000pt;}
.yc_c01114{bottom:185.333333pt;}
.yb_c01114{bottom:640.000000pt;}
.ya_c01114{bottom:664.000000pt;}
.y9_c01114{bottom:688.000000pt;}
.y8_c01114{bottom:733.333333pt;}
.y7_c01114{bottom:790.666667pt;}
.y6_c01114{bottom:853.333333pt;}
.y5_c01114{bottom:877.333333pt;}
.y4_c01114{bottom:901.333333pt;}
.y3_c01114{bottom:925.333333pt;}
.y2_c01114{bottom:949.333333pt;}
.y1_c01114{bottom:973.333333pt;}
.ye_c01114{bottom:1061.333333pt;}
.h8_c01114{height:31.892363pt;}
.h1_c01114{height:45.562500pt;}
.h3_c01114{height:46.031250pt;}
.h9_c01114{height:47.838542pt;}
.h7_c01114{height:49.843750pt;}
.h2_c01114{height:49.867188pt;}
.h4_c01114{height:50.896067pt;}
.h6_c01114{height:57.406250pt;}
.h5_c01114{height:426.666667pt;}
.h0_c01114{height:1122.666667pt;}
.w1_c01114{width:601.333333pt;}
.w0_c01114{width:793.333333pt;}
.x0_c01114{left:0.000000pt;}
.x2_c01114{left:42.184240pt;}
.x1_c01114{left:133.795333pt;}
.x3_c01114{left:370.473600pt;}
.x4_c01114{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_77764d7944d5b878e3629dbd.woff2')format("woff");}.ff1_c01115{font-family:ff1_c01115;line-height:0.933105;font-style:normal;font-weight:normal;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_af5c5bec177336e05472051e.woff2')format("woff");}.ff2_c01115{font-family:ff2_c01115;line-height:0.987793;font-style:normal;font-weight:normal;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_cc3f52587331fba40df07b83.woff2')format("woff");}.ff3_c01115{font-family:ff3_c01115;line-height:0.755859;font-style:normal;font-weight:normal;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_b8ae771035fe497521deb482.woff2')format("woff");}.ff4_c01115{font-family:ff4_c01115;line-height:1.155762;font-style:normal;font-weight:normal;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_74d32949583f0fe9898d0dd2.woff2')format("woff");}.ff5_c01115{font-family:ff5_c01115;line-height:1.112305;font-style:normal;font-weight: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_c01115;src:url('chunks/assets/font_a72a9f47ae797acaf72a353f.woff2')format("woff");}.ff6_c01115{font-family:ff6_c01115;line-height:0.890137;font-style: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);}
.v3_c01115{vertical-align:-33.000000px;}
.v2_c01115{vertical-align:-23.086200px;}
.v0_c01115{vertical-align:0.000000px;}
.v1_c01115{vertical-align:23.086200px;}
.ls1_c01115{letter-spacing:0.000000px;}
.ls2_c01115{letter-spacing:0.012000px;}
.ls0_c01115{letter-spacing:3.493800px;}
.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;}
}
.ws0_c01115{word-spacing:-10.000001px;}
.ws1_c01115{word-spacing:0.000000px;}
._6_c01115{margin-left:-5.011200px;}
._d_c01115{margin-left:-3.967200px;}
._2_c01115{margin-left:-2.858400px;}
._5_c01115{margin-left:-1.188000px;}
._1_c01115{width:1.022400px;}
._0_c01115{width:2.880000px;}
._4_c01115{width:4.795200px;}
._3_c01115{width:6.602400px;}
._7_c01115{width:8.834400px;}
._c_c01115{width:9.914400px;}
._b_c01115{width:11.030400px;}
._e_c01115{width:14.191200px;}
._9_c01115{width:21.297600px;}
._8_c01115{width:23.443200px;}
._a_c01115{width:27.057600px;}
.fc0_c01115{color:rgb(0,0,0);}
.fs4_c01115{font-size:40.000002px;}
.fs1_c01115{font-size:48.000000px;}
.fs2_c01115{font-size:54.000000px;}
.fs3_c01115{font-size:60.000000px;}
.fs0_c01115{font-size:72.000000px;}
.y0_c01115{bottom:0.000000px;}
.y5_c01115{bottom:12.000000px;}
.yb_c01115{bottom:67.500000px;}
.yc_c01115{bottom:140.250000px;}
.y9_c01115{bottom:186.000000px;}
.y8_c01115{bottom:481.500000px;}
.y7_c01115{bottom:508.500000px;}
.y6_c01115{bottom:535.500000px;}
.y4_c01115{bottom:580.500000px;}
.y3_c01115{bottom:1041.000000px;}
.y2_c01115{bottom:1068.000000px;}
.y1_c01115{bottom:1095.000000px;}
.ya_c01115{bottom:1194.000000px;}
.h8_c01115{height:35.781252px;}
.h4_c01115{height:42.292969px;}
.h7_c01115{height:44.208984px;}
.h1_c01115{height:51.187500px;}
.h6_c01115{height:56.074219px;}
.h2_c01115{height:57.211200px;}
.h5_c01115{height:264.000000px;}
.h3_c01115{height:429.000000px;}
.h0_c01115{height:1263.000000px;}
.w1_c01115{width:676.500000px;}
.w0_c01115{width:892.500000px;}
.x0_c01115{left:0.000000px;}
.x1_c01115{left:65.480310px;}
.x2_c01115{left:67.808325px;}
.x3_c01115{left:210.461400px;}
@media print{
.v3_c01115{vertical-align:-29.333333pt;}
.v2_c01115{vertical-align:-20.521067pt;}
.v0_c01115{vertical-align:0.000000pt;}
.v1_c01115{vertical-align:20.521067pt;}
.ls1_c01115{letter-spacing:0.000000pt;}
.ls2_c01115{letter-spacing:0.010667pt;}
.ls0_c01115{letter-spacing:3.105600pt;}
.ws0_c01115{word-spacing:-8.888889pt;}
.ws1_c01115{word-spacing:0.000000pt;}
._6_c01115{margin-left:-4.454400pt;}
._d_c01115{margin-left:-3.526400pt;}
._2_c01115{margin-left:-2.540800pt;}
._5_c01115{margin-left:-1.056000pt;}
._1_c01115{width:0.908800pt;}
._0_c01115{width:2.560000pt;}
._4_c01115{width:4.262400pt;}
._3_c01115{width:5.868800pt;}
._7_c01115{width:7.852800pt;}
._c_c01115{width:8.812800pt;}
._b_c01115{width:9.804800pt;}
._e_c01115{width:12.614400pt;}
._9_c01115{width:18.931200pt;}
._8_c01115{width:20.838400pt;}
._a_c01115{width:24.051200pt;}
.fs4_c01115{font-size:35.555557pt;}
.fs1_c01115{font-size:42.666667pt;}
.fs2_c01115{font-size:48.000000pt;}
.fs3_c01115{font-size:53.333333pt;}
.fs0_c01115{font-size:64.000000pt;}
.y0_c01115{bottom:0.000000pt;}
.y5_c01115{bottom:10.666667pt;}
.yb_c01115{bottom:60.000000pt;}
.yc_c01115{bottom:124.666667pt;}
.y9_c01115{bottom:165.333333pt;}
.y8_c01115{bottom:428.000000pt;}
.y7_c01115{bottom:452.000000pt;}
.y6_c01115{bottom:476.000000pt;}
.y4_c01115{bottom:516.000000pt;}
.y3_c01115{bottom:925.333333pt;}
.y2_c01115{bottom:949.333333pt;}
.y1_c01115{bottom:973.333333pt;}
.ya_c01115{bottom:1061.333333pt;}
.h8_c01115{height:31.805557pt;}
.h4_c01115{height:37.593750pt;}
.h7_c01115{height:39.296875pt;}
.h1_c01115{height:45.500000pt;}
.h6_c01115{height:49.843750pt;}
.h2_c01115{height:50.854400pt;}
.h5_c01115{height:234.666667pt;}
.h3_c01115{height:381.333333pt;}
.h0_c01115{height:1122.666667pt;}
.w1_c01115{width:601.333333pt;}
.w0_c01115{width:793.333333pt;}
.x0_c01115{left:0.000000pt;}
.x1_c01115{left:58.204720pt;}
.x2_c01115{left:60.274067pt;}
.x3_c01115{left:187.076800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_16a3fd2185e1eef0ee177162.woff2')format("woff");}.ff1_c01116{font-family:ff1_c01116;line-height:0.934082;font-style:normal;font-weight:normal;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_27da87cfc2751d1761ab59a5.woff2')format("woff");}.ff2_c01116{font-family:ff2_c01116;line-height:1.132812;font-style:normal;font-weight:normal;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_b978d2ac1b78da61e16eba59.woff2')format("woff");}.ff3_c01116{font-family:ff3_c01116;line-height:0.936035;font-style:normal;font-weight:normal;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_9193b00b245853d2e8336959.woff2')format("woff");}.ff4_c01116{font-family:ff4_c01116;line-height:1.155762;font-style: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.005400px;}
.ls2_c01116{letter-spacing:0.012000px;}
.ls1_c01116{letter-spacing:0.014400px;}
.ls4_c01116{letter-spacing:0.021600px;}
.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:-0.086400px;}
.ws0_c01116{word-spacing:-0.072000px;}
.ws2_c01116{word-spacing:0.000000px;}
._b_c01116{margin-left:-9.835200px;}
._4_c01116{margin-left:-4.111200px;}
._2_c01116{margin-left:-2.959200px;}
._7_c01116{margin-left:-1.699200px;}
._1_c01116{width:1.087200px;}
._9_c01116{width:2.728800px;}
._d_c01116{width:3.772800px;}
._a_c01116{width:4.867200px;}
._6_c01116{width:6.552000px;}
._0_c01116{width:7.603200px;}
._3_c01116{width:9.633600px;}
._5_c01116{width:11.728800px;}
._8_c01116{width:12.895200px;}
._c_c01116{width:14.666400px;}
._e_c01116{width:18.475200px;}
.fc0_c01116{color:rgb(0,0,0);}
.fs1_c01116{font-size:54.000000px;}
.fs2_c01116{font-size:60.000000px;}
.fs0_c01116{font-size:72.000000px;}
.y0_c01116{bottom:0.000000px;}
.y4_c01116{bottom:12.000000px;}
.y12_c01116{bottom:67.500000px;}
.y10_c01116{bottom:175.500000px;}
.yf_c01116{bottom:202.500000px;}
.ye_c01116{bottom:229.500000px;}
.yd_c01116{bottom:256.500000px;}
.yc_c01116{bottom:283.500000px;}
.yb_c01116{bottom:310.500000px;}
.ya_c01116{bottom:358.500000px;}
.y9_c01116{bottom:406.500000px;}
.y8_c01116{bottom:454.500000px;}
.y7_c01116{bottom:481.500000px;}
.y6_c01116{bottom:508.500000px;}
.y5_c01116{bottom:535.500000px;}
.y3_c01116{bottom:580.500000px;}
.y2_c01116{bottom:1068.000000px;}
.y1_c01116{bottom:1095.000000px;}
.y11_c01116{bottom:1194.000000px;}
.h3_c01116{height:50.756836px;}
.h1_c01116{height:51.257812px;}
.h4_c01116{height:51.539062px;}
.h5_c01116{height:56.074219px;}
.h2_c01116{height:456.000000px;}
.h0_c01116{height:1263.000000px;}
.w1_c01116{width:676.500000px;}
.w0_c01116{width:892.500000px;}
.x0_c01116{left:0.000000px;}
.x2_c01116{left:137.246340px;}
.x1_c01116{left:150.519750px;}
.x3_c01116{left:416.782800px;}
.x4_c01116{left:801.992850px;}
@media print{
.v0_c01116{vertical-align:0.000000pt;}
.ls3_c01116{letter-spacing:0.000000pt;}
.ls0_c01116{letter-spacing:0.004800pt;}
.ls2_c01116{letter-spacing:0.010667pt;}
.ls1_c01116{letter-spacing:0.012800pt;}
.ls4_c01116{letter-spacing:0.019200pt;}
.ws1_c01116{word-spacing:-0.076800pt;}
.ws0_c01116{word-spacing:-0.064000pt;}
.ws2_c01116{word-spacing:0.000000pt;}
._b_c01116{margin-left:-8.742400pt;}
._4_c01116{margin-left:-3.654400pt;}
._2_c01116{margin-left:-2.630400pt;}
._7_c01116{margin-left:-1.510400pt;}
._1_c01116{width:0.966400pt;}
._9_c01116{width:2.425600pt;}
._d_c01116{width:3.353600pt;}
._a_c01116{width:4.326400pt;}
._6_c01116{width:5.824000pt;}
._0_c01116{width:6.758400pt;}
._3_c01116{width:8.563200pt;}
._5_c01116{width:10.425600pt;}
._8_c01116{width:11.462400pt;}
._c_c01116{width:13.036800pt;}
._e_c01116{width:16.422400pt;}
.fs1_c01116{font-size:48.000000pt;}
.fs2_c01116{font-size:53.333333pt;}
.fs0_c01116{font-size:64.000000pt;}
.y0_c01116{bottom:0.000000pt;}
.y4_c01116{bottom:10.666667pt;}
.y12_c01116{bottom:60.000000pt;}
.y10_c01116{bottom:156.000000pt;}
.yf_c01116{bottom:180.000000pt;}
.ye_c01116{bottom:204.000000pt;}
.yd_c01116{bottom:228.000000pt;}
.yc_c01116{bottom:252.000000pt;}
.yb_c01116{bottom:276.000000pt;}
.ya_c01116{bottom:318.666667pt;}
.y9_c01116{bottom:361.333333pt;}
.y8_c01116{bottom:404.000000pt;}
.y7_c01116{bottom:428.000000pt;}
.y6_c01116{bottom:452.000000pt;}
.y5_c01116{bottom:476.000000pt;}
.y3_c01116{bottom:516.000000pt;}
.y2_c01116{bottom:949.333333pt;}
.y1_c01116{bottom:973.333333pt;}
.y11_c01116{bottom:1061.333333pt;}
.h3_c01116{height:45.117188pt;}
.h1_c01116{height:45.562500pt;}
.h4_c01116{height:45.812500pt;}
.h5_c01116{height:49.843750pt;}
.h2_c01116{height:405.333333pt;}
.h0_c01116{height:1122.666667pt;}
.w1_c01116{width:601.333333pt;}
.w0_c01116{width:793.333333pt;}
.x0_c01116{left:0.000000pt;}
.x2_c01116{left:121.996747pt;}
.x1_c01116{left:133.795333pt;}
.x3_c01116{left:370.473600pt;}
.x4_c01116{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1f716711d975fcc794aec671.woff2')format("woff");}.ff1_c01117{font-family:ff1_c01117;line-height:0.933105;font-style:normal;font-weight:normal;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_d2dd795e0b98c29d7e461bf7.woff2')format("woff");}.ff2_c01117{font-family:ff2_c01117;line-height:0.987793;font-style:normal;font-weight:normal;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_b7765186e161fb3a1ea67039.woff2')format("woff");}.ff3_c01117{font-family:ff3_c01117;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01117;src:url('chunks/assets/font_6c146c0924655cd22737f7e5.woff2')format("woff");}.ff4_c01117{font-family:ff4_c01117;line-height:0.755859;font-style:normal;font-weight:normal;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_ba19d6003cf5c028baffcd89.woff2')format("woff");}.ff5_c01117{font-family:ff5_c01117;line-height:1.155762;font-style: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);}
.v0_c01117{vertical-align:0.000000px;}
.ls1_c01117{letter-spacing:0.000000px;}
.ls0_c01117{letter-spacing:0.005640px;}
.ls2_c01117{letter-spacing:0.012000px;}
.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;}
}
.ws0_c01117{word-spacing:-0.072000px;}
.ws1_c01117{word-spacing:0.000000px;}
._6_c01117{margin-left:-7.912800px;}
._8_c01117{margin-left:-3.016020px;}
._0_c01117{margin-left:-1.677600px;}
._5_c01117{width:2.030400px;}
._3_c01117{width:3.117600px;}
._4_c01117{width:4.125600px;}
._7_c01117{width:5.348820px;}
._2_c01117{width:6.530400px;}
._1_c01117{width:8.208000px;}
._9_c01117{width:9.452820px;}
._a_c01117{width:14.882400px;}
._b_c01117{width:16.869600px;}
._c_c01117{width:18.633600px;}
.fc0_c01117{color:rgb(0,0,0);}
.fs1_c01117{font-size:54.000000px;}
.fs2_c01117{font-size:60.000000px;}
.fs0_c01117{font-size:72.000000px;}
.y0_c01117{bottom:0.000000px;}
.y4_c01117{bottom:12.000000px;}
.yb_c01117{bottom:67.500000px;}
.y9_c01117{bottom:129.000000px;}
.y8_c01117{bottom:513.000000px;}
.y7_c01117{bottom:540.000000px;}
.y6_c01117{bottom:567.000000px;}
.y5_c01117{bottom:594.000000px;}
.y3_c01117{bottom:639.000000px;}
.y2_c01117{bottom:1068.000000px;}
.y1_c01117{bottom:1095.000000px;}
.ya_c01117{bottom:1194.000000px;}
.h3_c01117{height:42.292969px;}
.h6_c01117{height:44.208984px;}
.h1_c01117{height:51.187500px;}
.h5_c01117{height:56.074219px;}
.h4_c01117{height:352.500000px;}
.h2_c01117{height:397.500000px;}
.h0_c01117{height:1263.000000px;}
.w1_c01117{width:676.500000px;}
.w0_c01117{width:892.500000px;}
.x0_c01117{left:0.000000px;}
.x1_c01117{left:65.480310px;}
.x3_c01117{left:241.469250px;}
.x2_c01117{left:251.821650px;}
@media print{
.v0_c01117{vertical-align:0.000000pt;}
.ls1_c01117{letter-spacing:0.000000pt;}
.ls0_c01117{letter-spacing:0.005013pt;}
.ls2_c01117{letter-spacing:0.010667pt;}
.ws0_c01117{word-spacing:-0.064000pt;}
.ws1_c01117{word-spacing:0.000000pt;}
._6_c01117{margin-left:-7.033600pt;}
._8_c01117{margin-left:-2.680907pt;}
._0_c01117{margin-left:-1.491200pt;}
._5_c01117{width:1.804800pt;}
._3_c01117{width:2.771200pt;}
._4_c01117{width:3.667200pt;}
._7_c01117{width:4.754507pt;}
._2_c01117{width:5.804800pt;}
._1_c01117{width:7.296000pt;}
._9_c01117{width:8.402507pt;}
._a_c01117{width:13.228800pt;}
._b_c01117{width:14.995200pt;}
._c_c01117{width:16.563200pt;}
.fs1_c01117{font-size:48.000000pt;}
.fs2_c01117{font-size:53.333333pt;}
.fs0_c01117{font-size:64.000000pt;}
.y0_c01117{bottom:0.000000pt;}
.y4_c01117{bottom:10.666667pt;}
.yb_c01117{bottom:60.000000pt;}
.y9_c01117{bottom:114.666667pt;}
.y8_c01117{bottom:456.000000pt;}
.y7_c01117{bottom:480.000000pt;}
.y6_c01117{bottom:504.000000pt;}
.y5_c01117{bottom:528.000000pt;}
.y3_c01117{bottom:568.000000pt;}
.y2_c01117{bottom:949.333333pt;}
.y1_c01117{bottom:973.333333pt;}
.ya_c01117{bottom:1061.333333pt;}
.h3_c01117{height:37.593750pt;}
.h6_c01117{height:39.296875pt;}
.h1_c01117{height:45.500000pt;}
.h5_c01117{height:49.843750pt;}
.h4_c01117{height:313.333333pt;}
.h2_c01117{height:353.333333pt;}
.h0_c01117{height:1122.666667pt;}
.w1_c01117{width:601.333333pt;}
.w0_c01117{width:793.333333pt;}
.x0_c01117{left:0.000000pt;}
.x1_c01117{left:58.204720pt;}
.x3_c01117{left:214.639333pt;}
.x2_c01117{left:223.841467pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1b1619ea7121417ffa8644f7.woff2')format("woff");}.ff1_c01118{font-family:ff1_c01118;line-height:0.987793;font-style:normal;font-weight:normal;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_2e595e81366ac3f6c0a275c9.woff2')format("woff");}.ff2_c01118{font-family:ff2_c01118;line-height:0.933105;font-style:normal;font-weight:normal;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_cb4a3367ac5230313cc0fec1.woff2')format("woff");}.ff3_c01118{font-family:ff3_c01118;line-height:0.936035;font-style:normal;font-weight:normal;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_ccbfca0216b391e6417174da.woff2')format("woff");}.ff4_c01118{font-family:ff4_c01118;line-height:1.155762;font-style: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);}
.v0_c01118{vertical-align:0.000000px;}
.ls3_c01118{letter-spacing:0.000000px;}
.ls0_c01118{letter-spacing:0.005400px;}
.ls2_c01118{letter-spacing:0.012000px;}
.ls1_c01118{letter-spacing:0.014400px;}
.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;}
}
.ws1_c01118{word-spacing:-0.086400px;}
.ws0_c01118{word-spacing:-0.072000px;}
.ws2_c01118{word-spacing:0.000000px;}
._7_c01118{margin-left:-3.426000px;}
._5_c01118{margin-left:-1.677600px;}
._1_c01118{width:1.317600px;}
._3_c01118{width:3.088800px;}
._4_c01118{width:5.716800px;}
._2_c01118{width:7.545600px;}
._0_c01118{width:8.778000px;}
._6_c01118{width:10.476000px;}
.fc0_c01118{color:rgb(0,0,0);}
.fs0_c01118{font-size:54.000000px;}
.fs2_c01118{font-size:60.000000px;}
.fs1_c01118{font-size:72.000000px;}
.y0_c01118{bottom:0.000000px;}
.y2_c01118{bottom:12.000000px;}
.ya_c01118{bottom:67.500000px;}
.y8_c01118{bottom:129.000000px;}
.y7_c01118{bottom:417.000000px;}
.y6_c01118{bottom:453.000000px;}
.y5_c01118{bottom:712.500000px;}
.y4_c01118{bottom:739.500000px;}
.y3_c01118{bottom:787.500000px;}
.y1_c01118{bottom:832.500000px;}
.y9_c01118{bottom:1194.000000px;}
.h2_c01118{height:42.292969px;}
.h3_c01118{height:51.187500px;}
.h4_c01118{height:51.539062px;}
.h7_c01118{height:56.074219px;}
.h5_c01118{height:228.000000px;}
.h6_c01118{height:265.500000px;}
.h1_c01118{height:280.500000px;}
.h0_c01118{height:1263.000000px;}
.w1_c01118{width:676.500000px;}
.w0_c01118{width:892.500000px;}
.x0_c01118{left:0.000000px;}
.x1_c01118{left:150.000000px;}
.x4_c01118{left:189.789600px;}
.x3_c01118{left:196.898850px;}
.x2_c01118{left:210.461400px;}
.x5_c01118{left:416.782800px;}
.x6_c01118{left:801.992850px;}
@media print{
.v0_c01118{vertical-align:0.000000pt;}
.ls3_c01118{letter-spacing:0.000000pt;}
.ls0_c01118{letter-spacing:0.004800pt;}
.ls2_c01118{letter-spacing:0.010667pt;}
.ls1_c01118{letter-spacing:0.012800pt;}
.ws1_c01118{word-spacing:-0.076800pt;}
.ws0_c01118{word-spacing:-0.064000pt;}
.ws2_c01118{word-spacing:0.000000pt;}
._7_c01118{margin-left:-3.045333pt;}
._5_c01118{margin-left:-1.491200pt;}
._1_c01118{width:1.171200pt;}
._3_c01118{width:2.745600pt;}
._4_c01118{width:5.081600pt;}
._2_c01118{width:6.707200pt;}
._0_c01118{width:7.802667pt;}
._6_c01118{width:9.312000pt;}
.fs0_c01118{font-size:48.000000pt;}
.fs2_c01118{font-size:53.333333pt;}
.fs1_c01118{font-size:64.000000pt;}
.y0_c01118{bottom:0.000000pt;}
.y2_c01118{bottom:10.666667pt;}
.ya_c01118{bottom:60.000000pt;}
.y8_c01118{bottom:114.666667pt;}
.y7_c01118{bottom:370.666667pt;}
.y6_c01118{bottom:402.666667pt;}
.y5_c01118{bottom:633.333333pt;}
.y4_c01118{bottom:657.333333pt;}
.y3_c01118{bottom:700.000000pt;}
.y1_c01118{bottom:740.000000pt;}
.y9_c01118{bottom:1061.333333pt;}
.h2_c01118{height:37.593750pt;}
.h3_c01118{height:45.500000pt;}
.h4_c01118{height:45.812500pt;}
.h7_c01118{height:49.843750pt;}
.h5_c01118{height:202.666667pt;}
.h6_c01118{height:236.000000pt;}
.h1_c01118{height:249.333333pt;}
.h0_c01118{height:1122.666667pt;}
.w1_c01118{width:601.333333pt;}
.w0_c01118{width:793.333333pt;}
.x0_c01118{left:0.000000pt;}
.x1_c01118{left:133.333333pt;}
.x4_c01118{left:168.701867pt;}
.x3_c01118{left:175.021200pt;}
.x2_c01118{left:187.076800pt;}
.x5_c01118{left:370.473600pt;}
.x6_c01118{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a893c5ee6c1bf4b5ffebcd03.woff2')format("woff");}.ff1_c01119{font-family:ff1_c01119;line-height:0.933105;font-style:normal;font-weight:normal;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_d3e0cf63535069ebf1ff6593.woff2')format("woff");}.ff2_c01119{font-family:ff2_c01119;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01119;src:url('chunks/assets/font_5cfcbe3f833a0777ee6b4ba4.woff2')format("woff");}.ff3_c01119{font-family:ff3_c01119;line-height:0.987793;font-style:normal;font-weight:normal;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_c1fc356954ac8741b8825a63.woff2')format("woff");}.ff4_c01119{font-family:ff4_c01119;line-height:0.755859;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01119;src:url('chunks/assets/font_72800c96f3fa32e31e07bd8b.woff2')format("woff");}.ff5_c01119{font-family:ff5_c01119;line-height:1.155762;font-style: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;}
.ls1_c01119{letter-spacing:0.000000px;}
.ls0_c01119{letter-spacing:0.005640px;}
.ls2_c01119{letter-spacing:0.012000px;}
.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;}
}
.ws1_c01119{word-spacing:-19.800000px;}
.ws0_c01119{word-spacing:-0.072000px;}
.ws2_c01119{word-spacing:0.000000px;}
._0_c01119{margin-left:-7.912800px;}
._c_c01119{margin-left:-4.054800px;}
._4_c01119{margin-left:-2.678400px;}
._6_c01119{margin-left:-1.381620px;}
._1_c01119{width:1.338420px;}
._9_c01119{width:2.995800px;}
._b_c01119{width:4.276800px;}
._2_c01119{width:6.012000px;}
._a_c01119{width:12.182400px;}
._8_c01119{width:13.735260px;}
._3_c01119{width:14.968800px;}
._7_c01119{width:18.577560px;}
._5_c01119{width:22.795200px;}
._10_c01119{width:25.581600px;}
._12_c01119{width:26.891400px;}
._d_c01119{width:28.519980px;}
._e_c01119{width:29.836800px;}
._f_c01119{width:32.529600px;}
._11_c01119{width:33.927600px;}
.fc0_c01119{color:rgb(0,0,0);}
.fs1_c01119{font-size:54.000000px;}
.fs2_c01119{font-size:60.000000px;}
.fs0_c01119{font-size:72.000000px;}
.y0_c01119{bottom:0.000000px;}
.y4_c01119{bottom:12.000000px;}
.yc_c01119{bottom:67.500000px;}
.ya_c01119{bottom:138.000000px;}
.y9_c01119{bottom:664.500000px;}
.y8_c01119{bottom:691.500000px;}
.y7_c01119{bottom:718.500000px;}
.y6_c01119{bottom:745.500000px;}
.y5_c01119{bottom:772.500000px;}
.y3_c01119{bottom:817.500000px;}
.y2_c01119{bottom:1068.000000px;}
.y1_c01119{bottom:1095.000000px;}
.yb_c01119{bottom:1194.000000px;}
.h3_c01119{height:42.292969px;}
.h6_c01119{height:44.208984px;}
.h1_c01119{height:51.187500px;}
.h5_c01119{height:56.074219px;}
.h2_c01119{height:219.000000px;}
.h4_c01119{height:300.000000px;}
.h0_c01119{height:1263.000000px;}
.w1_c01119{width:676.500000px;}
.w0_c01119{width:892.500000px;}
.x0_c01119{left:0.000000px;}
.x1_c01119{left:65.480310px;}
.x3_c01119{left:138.920655px;}
.x2_c01119{left:197.396400px;}
@media print{
.v0_c01119{vertical-align:0.000000pt;}
.ls1_c01119{letter-spacing:0.000000pt;}
.ls0_c01119{letter-spacing:0.005013pt;}
.ls2_c01119{letter-spacing:0.010667pt;}
.ws1_c01119{word-spacing:-17.600000pt;}
.ws0_c01119{word-spacing:-0.064000pt;}
.ws2_c01119{word-spacing:0.000000pt;}
._0_c01119{margin-left:-7.033600pt;}
._c_c01119{margin-left:-3.604267pt;}
._4_c01119{margin-left:-2.380800pt;}
._6_c01119{margin-left:-1.228107pt;}
._1_c01119{width:1.189707pt;}
._9_c01119{width:2.662933pt;}
._b_c01119{width:3.801600pt;}
._2_c01119{width:5.344000pt;}
._a_c01119{width:10.828800pt;}
._8_c01119{width:12.209120pt;}
._3_c01119{width:13.305600pt;}
._7_c01119{width:16.513387pt;}
._5_c01119{width:20.262400pt;}
._10_c01119{width:22.739200pt;}
._12_c01119{width:23.903467pt;}
._d_c01119{width:25.351093pt;}
._e_c01119{width:26.521600pt;}
._f_c01119{width:28.915200pt;}
._11_c01119{width:30.157867pt;}
.fs1_c01119{font-size:48.000000pt;}
.fs2_c01119{font-size:53.333333pt;}
.fs0_c01119{font-size:64.000000pt;}
.y0_c01119{bottom:0.000000pt;}
.y4_c01119{bottom:10.666667pt;}
.yc_c01119{bottom:60.000000pt;}
.ya_c01119{bottom:122.666667pt;}
.y9_c01119{bottom:590.666667pt;}
.y8_c01119{bottom:614.666667pt;}
.y7_c01119{bottom:638.666667pt;}
.y6_c01119{bottom:662.666667pt;}
.y5_c01119{bottom:686.666667pt;}
.y3_c01119{bottom:726.666667pt;}
.y2_c01119{bottom:949.333333pt;}
.y1_c01119{bottom:973.333333pt;}
.yb_c01119{bottom:1061.333333pt;}
.h3_c01119{height:37.593750pt;}
.h6_c01119{height:39.296875pt;}
.h1_c01119{height:45.500000pt;}
.h5_c01119{height:49.843750pt;}
.h2_c01119{height:194.666667pt;}
.h4_c01119{height:266.666667pt;}
.h0_c01119{height:1122.666667pt;}
.w1_c01119{width:601.333333pt;}
.w0_c01119{width:793.333333pt;}
.x0_c01119{left:0.000000pt;}
.x1_c01119{left:58.204720pt;}
.x3_c01119{left:123.485027pt;}
.x2_c01119{left:175.463467pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2aed3155fe8d86025b91cc62.woff2')format("woff");}.ff1_c01120{font-family:ff1_c01120;line-height:0.934082;font-style:normal;font-weight:normal;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_7215359849ff5933e0cfe0b2.woff2')format("woff");}.ff2_c01120{font-family:ff2_c01120;line-height:0.975586;font-style:normal;font-weight:normal;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_ea9e41933033a842792e6fab.woff2')format("woff");}.ff3_c01120{font-family:ff3_c01120;line-height:0.892578;font-style:normal;font-weight:normal;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_c0839705aa35e43ef272f60c.woff2')format("woff");}.ff4_c01120{font-family:ff4_c01120;line-height:1.155762;font-style:normal;font-weight:normal;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_90888994ec5b249257c0f1a2.woff2')format("woff");}.ff5_c01120{font-family:ff5_c01120;line-height:1.114746;font-style:normal;font-weight: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_c01120;src:url('chunks/assets/font_4157829b14c29429314cdac4.woff2')format("woff");}.ff6_c01120{font-family:ff6_c01120;line-height:0.891113;font-style: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);}
.v3_c01120{vertical-align:-33.000000px;}
.v2_c01120{vertical-align:-23.086200px;}
.v0_c01120{vertical-align:0.000000px;}
.v1_c01120{vertical-align:23.086200px;}
.ls3_c01120{letter-spacing:0.000000px;}
.ls2_c01120{letter-spacing:0.012000px;}
.ls0_c01120{letter-spacing:12.736800px;}
.ls1_c01120{letter-spacing:21.552000px;}
.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;}
}
.ws0_c01120{word-spacing:-10.000001px;}
.ws1_c01120{word-spacing:0.000000px;}
._10_c01120{margin-left:-10.584000px;}
._f_c01120{margin-left:-7.572000px;}
._11_c01120{margin-left:-6.379200px;}
._0_c01120{margin-left:-3.945600px;}
._6_c01120{margin-left:-2.505600px;}
._8_c01120{margin-left:-1.432800px;}
._1_c01120{width:1.540800px;}
._2_c01120{width:3.124800px;}
._4_c01120{width:4.219200px;}
._5_c01120{width:5.572800px;}
._7_c01120{width:7.171200px;}
._3_c01120{width:8.625600px;}
._c_c01120{width:9.900000px;}
._d_c01120{width:11.469600px;}
._a_c01120{width:13.003200px;}
._9_c01120{width:14.436000px;}
._b_c01120{width:15.494400px;}
._e_c01120{width:18.237600px;}
.fc0_c01120{color:rgb(0,0,0);}
.fs4_c01120{font-size:40.000002px;}
.fs2_c01120{font-size:48.000000px;}
.fs1_c01120{font-size:54.000000px;}
.fs3_c01120{font-size:60.000000px;}
.fs0_c01120{font-size:72.000000px;}
.y0_c01120{bottom:0.000000px;}
.y6_c01120{bottom:12.000000px;}
.y11_c01120{bottom:67.500000px;}
.y13_c01120{bottom:140.250000px;}
.y12_c01120{bottom:189.750000px;}
.yf_c01120{bottom:240.000000px;}
.ye_c01120{bottom:267.000000px;}
.yd_c01120{bottom:294.000000px;}
.yc_c01120{bottom:342.000000px;}
.yb_c01120{bottom:369.000000px;}
.ya_c01120{bottom:396.000000px;}
.y9_c01120{bottom:423.000000px;}
.y8_c01120{bottom:450.000000px;}
.y7_c01120{bottom:498.000000px;}
.y5_c01120{bottom:534.000000px;}
.y4_c01120{bottom:1014.000000px;}
.y3_c01120{bottom:1041.000000px;}
.y2_c01120{bottom:1068.000000px;}
.y1_c01120{bottom:1095.000000px;}
.y10_c01120{bottom:1194.000000px;}
.h7_c01120{height:35.878908px;}
.h3_c01120{height:41.633789px;}
.h1_c01120{height:51.257812px;}
.h4_c01120{height:51.539062px;}
.h6_c01120{height:56.074219px;}
.h5_c01120{height:57.258075px;}
.h2_c01120{height:448.500000px;}
.h0_c01120{height:1263.000000px;}
.w1_c01120{width:676.500000px;}
.w0_c01120{width:892.500000px;}
.x0_c01120{left:0.000000px;}
.x1_c01120{left:150.519750px;}
.x2_c01120{left:247.504050px;}
.x3_c01120{left:416.782800px;}
.x4_c01120{left:801.992850px;}
@media print{
.v3_c01120{vertical-align:-29.333333pt;}
.v2_c01120{vertical-align:-20.521067pt;}
.v0_c01120{vertical-align:0.000000pt;}
.v1_c01120{vertical-align:20.521067pt;}
.ls3_c01120{letter-spacing:0.000000pt;}
.ls2_c01120{letter-spacing:0.010667pt;}
.ls0_c01120{letter-spacing:11.321600pt;}
.ls1_c01120{letter-spacing:19.157333pt;}
.ws0_c01120{word-spacing:-8.888889pt;}
.ws1_c01120{word-spacing:0.000000pt;}
._10_c01120{margin-left:-9.408000pt;}
._f_c01120{margin-left:-6.730667pt;}
._11_c01120{margin-left:-5.670400pt;}
._0_c01120{margin-left:-3.507200pt;}
._6_c01120{margin-left:-2.227200pt;}
._8_c01120{margin-left:-1.273600pt;}
._1_c01120{width:1.369600pt;}
._2_c01120{width:2.777600pt;}
._4_c01120{width:3.750400pt;}
._5_c01120{width:4.953600pt;}
._7_c01120{width:6.374400pt;}
._3_c01120{width:7.667200pt;}
._c_c01120{width:8.800000pt;}
._d_c01120{width:10.195200pt;}
._a_c01120{width:11.558400pt;}
._9_c01120{width:12.832000pt;}
._b_c01120{width:13.772800pt;}
._e_c01120{width:16.211200pt;}
.fs4_c01120{font-size:35.555557pt;}
.fs2_c01120{font-size:42.666667pt;}
.fs1_c01120{font-size:48.000000pt;}
.fs3_c01120{font-size:53.333333pt;}
.fs0_c01120{font-size:64.000000pt;}
.y0_c01120{bottom:0.000000pt;}
.y6_c01120{bottom:10.666667pt;}
.y11_c01120{bottom:60.000000pt;}
.y13_c01120{bottom:124.666667pt;}
.y12_c01120{bottom:168.666667pt;}
.yf_c01120{bottom:213.333333pt;}
.ye_c01120{bottom:237.333333pt;}
.yd_c01120{bottom:261.333333pt;}
.yc_c01120{bottom:304.000000pt;}
.yb_c01120{bottom:328.000000pt;}
.ya_c01120{bottom:352.000000pt;}
.y9_c01120{bottom:376.000000pt;}
.y8_c01120{bottom:400.000000pt;}
.y7_c01120{bottom:442.666667pt;}
.y5_c01120{bottom:474.666667pt;}
.y4_c01120{bottom:901.333333pt;}
.y3_c01120{bottom:925.333333pt;}
.y2_c01120{bottom:949.333333pt;}
.y1_c01120{bottom:973.333333pt;}
.y10_c01120{bottom:1061.333333pt;}
.h7_c01120{height:31.892363pt;}
.h3_c01120{height:37.007812pt;}
.h1_c01120{height:45.562500pt;}
.h4_c01120{height:45.812500pt;}
.h6_c01120{height:49.843750pt;}
.h5_c01120{height:50.896067pt;}
.h2_c01120{height:398.666667pt;}
.h0_c01120{height:1122.666667pt;}
.w1_c01120{width:601.333333pt;}
.w0_c01120{width:793.333333pt;}
.x0_c01120{left:0.000000pt;}
.x1_c01120{left:133.795333pt;}
.x2_c01120{left:220.003600pt;}
.x3_c01120{left:370.473600pt;}
.x4_c01120{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d050fb253d7e0274c8466758.woff2')format("woff");}.ff1_c01121{font-family:ff1_c01121;line-height:0.976074;font-style:normal;font-weight:normal;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_90c39331e2f316d8be27f755.woff2')format("woff");}.ff2_c01121{font-family:ff2_c01121;line-height:0.931152;font-style:normal;font-weight:normal;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_90cfb9a49db37126fa3b7d8d.woff2')format("woff");}.ff3_c01121{font-family:ff3_c01121;line-height:0.756836;font-style:normal;font-weight:normal;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_13bd0e9d5d48b6d978a6046f.woff2')format("woff");}.ff4_c01121{font-family:ff4_c01121;line-height:1.155762;font-style:normal;font-weight:normal;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_d43c27842a9f137e28692bed.woff2')format("woff");}.ff5_c01121{font-family:ff5_c01121;line-height:1.112305;font-style:normal;font-weight: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_c01121;src:url('chunks/assets/font_c4fc40c6839837ac2daf42b2.woff2')format("woff");}.ff6_c01121{font-family:ff6_c01121;line-height:0.890137;font-style: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);}
.v2_c01121{vertical-align:-33.000000px;}
.v0_c01121{vertical-align:0.000000px;}
.v1_c01121{vertical-align:23.086200px;}
.ls3_c01121{letter-spacing:0.000000px;}
.ls1_c01121{letter-spacing:0.005400px;}
.ls4_c01121{letter-spacing:0.012000px;}
.ls2_c01121{letter-spacing:0.021600px;}
.ls0_c01121{letter-spacing:0.470400px;}
.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;}
}
.ws0_c01121{word-spacing:-10.000001px;}
.ws1_c01121{word-spacing:0.000000px;}
._5_c01121{margin-left:-5.162001px;}
._3_c01121{margin-left:-3.895200px;}
._1_c01121{margin-left:-2.160000px;}
._6_c01121{margin-left:-1.116000px;}
._0_c01121{width:1.044000px;}
._2_c01121{width:3.211200px;}
._4_c01121{width:4.968000px;}
.fc1_c01121{color:transparent;}
.fc0_c01121{color:rgb(0,0,0);}
.fs4_c01121{font-size:40.000002px;}
.fs2_c01121{font-size:48.000000px;}
.fs0_c01121{font-size:54.000000px;}
.fs3_c01121{font-size:60.000000px;}
.fs1_c01121{font-size:72.000000px;}
.y0_c01121{bottom:0.000000px;}
.y7_c01121{bottom:10.500000px;}
.y2_c01121{bottom:12.000000px;}
.y6_c01121{bottom:28.500000px;}
.y9_c01121{bottom:67.500000px;}
.yb_c01121{bottom:132.000000px;}
.ya_c01121{bottom:159.750000px;}
.y5_c01121{bottom:294.000000px;}
.y4_c01121{bottom:684.000000px;}
.y3_c01121{bottom:711.000000px;}
.y1_c01121{bottom:756.000000px;}
.y8_c01121{bottom:1194.000000px;}
.h8_c01121{height:35.781252px;}
.h2_c01121{height:42.292969px;}
.h7_c01121{height:44.208984px;}
.h3_c01121{height:51.187500px;}
.h9_c01121{height:53.671875px;}
.h6_c01121{height:56.074219px;}
.h4_c01121{height:57.211200px;}
.h1_c01121{height:357.000000px;}
.h5_c01121{height:358.500000px;}
.h0_c01121{height:1263.000000px;}
.w1_c01121{width:676.500000px;}
.w0_c01121{width:892.500000px;}
.x0_c01121{left:0.000000px;}
.x3_c01121{left:22.512795px;}
.x1_c01121{left:66.000000px;}
.x4_c01121{left:271.138950px;}
.x2_c01121{left:338.250000px;}
@media print{
.v2_c01121{vertical-align:-29.333333pt;}
.v0_c01121{vertical-align:0.000000pt;}
.v1_c01121{vertical-align:20.521067pt;}
.ls3_c01121{letter-spacing:0.000000pt;}
.ls1_c01121{letter-spacing:0.004800pt;}
.ls4_c01121{letter-spacing:0.010667pt;}
.ls2_c01121{letter-spacing:0.019200pt;}
.ls0_c01121{letter-spacing:0.418133pt;}
.ws0_c01121{word-spacing:-8.888889pt;}
.ws1_c01121{word-spacing:0.000000pt;}
._5_c01121{margin-left:-4.588445pt;}
._3_c01121{margin-left:-3.462400pt;}
._1_c01121{margin-left:-1.920000pt;}
._6_c01121{margin-left:-0.992000pt;}
._0_c01121{width:0.928000pt;}
._2_c01121{width:2.854400pt;}
._4_c01121{width:4.416000pt;}
.fs4_c01121{font-size:35.555557pt;}
.fs2_c01121{font-size:42.666667pt;}
.fs0_c01121{font-size:48.000000pt;}
.fs3_c01121{font-size:53.333333pt;}
.fs1_c01121{font-size:64.000000pt;}
.y0_c01121{bottom:0.000000pt;}
.y7_c01121{bottom:9.333333pt;}
.y2_c01121{bottom:10.666667pt;}
.y6_c01121{bottom:25.333333pt;}
.y9_c01121{bottom:60.000000pt;}
.yb_c01121{bottom:117.333333pt;}
.ya_c01121{bottom:142.000000pt;}
.y5_c01121{bottom:261.333333pt;}
.y4_c01121{bottom:608.000000pt;}
.y3_c01121{bottom:632.000000pt;}
.y1_c01121{bottom:672.000000pt;}
.y8_c01121{bottom:1061.333333pt;}
.h8_c01121{height:31.805557pt;}
.h2_c01121{height:37.593750pt;}
.h7_c01121{height:39.296875pt;}
.h3_c01121{height:45.500000pt;}
.h9_c01121{height:47.708333pt;}
.h6_c01121{height:49.843750pt;}
.h4_c01121{height:50.854400pt;}
.h1_c01121{height:317.333333pt;}
.h5_c01121{height:318.666667pt;}
.h0_c01121{height:1122.666667pt;}
.w1_c01121{width:601.333333pt;}
.w0_c01121{width:793.333333pt;}
.x0_c01121{left:0.000000pt;}
.x3_c01121{left:20.011373pt;}
.x1_c01121{left:58.666667pt;}
.x4_c01121{left:241.012400pt;}
.x2_c01121{left:300.666667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e3f21d86608f3686400c7c50.woff2')format("woff");}.ff1_c01122{font-family:ff1_c01122;line-height:0.987793;font-style:normal;font-weight:normal;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_3a3234ff000ebe0572cd0ab1.woff2')format("woff");}.ff2_c01122{font-family:ff2_c01122;line-height:1.155762;font-style: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;}
.ls1_c01122{letter-spacing:0.000000px;}
.ls0_c01122{letter-spacing:0.012000px;}
.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;}
}
.ws0_c01122{word-spacing:0.000000px;}
._0_c01122{margin-left:-3.426000px;}
.fc0_c01122{color:rgb(0,0,0);}
.fs0_c01122{font-size:54.000000px;}
.fs1_c01122{font-size:60.000000px;}
.y0_c01122{bottom:0.000000px;}
.y2_c01122{bottom:12.000000px;}
.y4_c01122{bottom:67.500000px;}
.y1_c01122{bottom:555.000000px;}
.y3_c01122{bottom:1194.000000px;}
.h2_c01122{height:42.292969px;}
.h3_c01122{height:56.074219px;}
.h1_c01122{height:558.000000px;}
.h0_c01122{height:1263.000000px;}
.w1_c01122{width:684.449850px;}
.w0_c01122{width:892.500000px;}
.x0_c01122{left:0.000000px;}
.x1_c01122{left:135.000000px;}
.x2_c01122{left:140.993865px;}
.x3_c01122{left:432.515100px;}
.x4_c01122{left:817.725150px;}
@media print{
.v0_c01122{vertical-align:0.000000pt;}
.ls1_c01122{letter-spacing:0.000000pt;}
.ls0_c01122{letter-spacing:0.010667pt;}
.ws0_c01122{word-spacing:0.000000pt;}
._0_c01122{margin-left:-3.045333pt;}
.fs0_c01122{font-size:48.000000pt;}
.fs1_c01122{font-size:53.333333pt;}
.y0_c01122{bottom:0.000000pt;}
.y2_c01122{bottom:10.666667pt;}
.y4_c01122{bottom:60.000000pt;}
.y1_c01122{bottom:493.333333pt;}
.y3_c01122{bottom:1061.333333pt;}
.h2_c01122{height:37.593750pt;}
.h3_c01122{height:49.843750pt;}
.h1_c01122{height:496.000000pt;}
.h0_c01122{height:1122.666667pt;}
.w1_c01122{width:608.399867pt;}
.w0_c01122{width:793.333333pt;}
.x0_c01122{left:0.000000pt;}
.x1_c01122{left:120.000000pt;}
.x2_c01122{left:125.327880pt;}
.x3_c01122{left:384.457867pt;}
.x4_c01122{left:726.866800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_10266f54ec2b8baf09558cb3.woff2')format("woff");}.ff1_c01123{font-family:ff1_c01123;line-height:0.939453;font-style:normal;font-weight:normal;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_4af3ef26d1cf85c865028c9d.woff2')format("woff");}.ff2_c01123{font-family:ff2_c01123;line-height:1.163086;font-style:normal;font-weight:normal;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_770e0d9232ab29fac85e00fd.woff2')format("woff");}.ff3_c01123{font-family:ff3_c01123;line-height:0.932129;font-style:normal;font-weight:normal;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_e2342f7c23aa5848033a888b.woff2')format("woff");}.ff4_c01123{font-family:ff4_c01123;line-height:0.755859;font-style:normal;font-weight:normal;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_d95e97f6541cc7694e0568fc.woff2')format("woff");}.ff5_c01123{font-family:ff5_c01123;line-height:1.155762;font-style:normal;font-weight: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_c01123;src:url('chunks/assets/font_6a1f144db16301ab3c2726b5.woff2')format("woff");}.ff6_c01123{font-family:ff6_c01123;line-height:0.901367;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01123;src:url('chunks/assets/font_a744ba2fa281d3bfdc8a3d4a.woff2')format("woff");}.ff7_c01123{font-family:ff7_c01123;line-height:0.892578;font-style: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);}
.v3_c01123{vertical-align:-33.000000px;}
.v2_c01123{vertical-align:-23.086200px;}
.v0_c01123{vertical-align:0.000000px;}
.v1_c01123{vertical-align:23.086200px;}
.ls3_c01123{letter-spacing:-0.007200px;}
.ls2_c01123{letter-spacing:0.000000px;}
.ls0_c01123{letter-spacing:0.007800px;}
.ls4_c01123{letter-spacing:0.012000px;}
.ls1_c01123{letter-spacing:3.999999px;}
.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;}
}
.ws1_c01123{word-spacing:-19.800000px;}
.ws0_c01123{word-spacing:-13.200000px;}
.ws2_c01123{word-spacing:0.000000px;}
._5_c01123{margin-left:-6.861600px;}
._14_c01123{margin-left:-5.335200px;}
._8_c01123{margin-left:-4.096800px;}
._3_c01123{margin-left:-2.829600px;}
._1_c01123{margin-left:-1.512000px;}
._a_c01123{width:1.072800px;}
._0_c01123{width:2.325600px;}
._9_c01123{width:3.801600px;}
._2_c01123{width:4.824000px;}
._4_c01123{width:6.660000px;}
._6_c01123{width:8.632800px;}
._12_c01123{width:9.633600px;}
._7_c01123{width:10.677600px;}
._b_c01123{width:12.009600px;}
._15_c01123{width:13.046400px;}
._13_c01123{width:14.241600px;}
._c_c01123{width:21.585600px;}
._10_c01123{width:22.845600px;}
._e_c01123{width:23.889600px;}
._d_c01123{width:25.452000px;}
._11_c01123{width:26.856000px;}
._f_c01123{width:28.044000px;}
.fc1_c01123{color:rgb(255,255,255);}
.fc0_c01123{color:rgb(0,0,0);}
.fs5_c01123{font-size:40.000002px;}
.fs2_c01123{font-size:48.000000px;}
.fs4_c01123{font-size:60.000000px;}
.fs1_c01123{font-size:72.000000px;}
.fs0_c01123{font-size:78.000000px;}
.fs3_c01123{font-size:96.000000px;}
.y0_c01123{bottom:0.000000px;}
.y18_c01123{bottom:67.500000px;}
.y1a_c01123{bottom:132.000000px;}
.y19_c01123{bottom:159.750000px;}
.y15_c01123{bottom:331.500000px;}
.y14_c01123{bottom:358.500000px;}
.y13_c01123{bottom:385.500000px;}
.y12_c01123{bottom:433.500000px;}
.y11_c01123{bottom:460.500000px;}
.y10_c01123{bottom:487.500000px;}
.yf_c01123{bottom:514.500000px;}
.ye_c01123{bottom:541.500000px;}
.yd_c01123{bottom:568.500000px;}
.yc_c01123{bottom:615.000000px;}
.yb_c01123{bottom:685.500000px;}
.ya_c01123{bottom:733.500000px;}
.y9_c01123{bottom:760.500000px;}
.y8_c01123{bottom:787.500000px;}
.y7_c01123{bottom:814.500000px;}
.y6_c01123{bottom:841.500000px;}
.y5_c01123{bottom:868.500000px;}
.y4_c01123{bottom:895.500000px;}
.y3_c01123{bottom:922.500000px;}
.y2_c01123{bottom:949.500000px;}
.y1_c01123{bottom:996.000000px;}
.y16_c01123{bottom:1066.500000px;}
.y17_c01123{bottom:1194.000000px;}
.h7_c01123{height:27.343751px;}
.h8_c01123{height:41.103516px;}
.h6_c01123{height:44.208984px;}
.h5_c01123{height:56.074219px;}
.h1_c01123{height:56.100586px;}
.h2_c01123{height:67.746094px;}
.h3_c01123{height:68.250262px;}
.h4_c01123{height:90.328125px;}
.h0_c01123{height:1263.000000px;}
.w0_c01123{width:892.500000px;}
.x0_c01123{left:0.000000px;}
.x1_c01123{left:49.748025px;}
.x2_c01123{left:79.798860px;}
@media print{
.v3_c01123{vertical-align:-29.333333pt;}
.v2_c01123{vertical-align:-20.521067pt;}
.v0_c01123{vertical-align:0.000000pt;}
.v1_c01123{vertical-align:20.521067pt;}
.ls3_c01123{letter-spacing:-0.006400pt;}
.ls2_c01123{letter-spacing:0.000000pt;}
.ls0_c01123{letter-spacing:0.006933pt;}
.ls4_c01123{letter-spacing:0.010667pt;}
.ls1_c01123{letter-spacing:3.555555pt;}
.ws1_c01123{word-spacing:-17.600000pt;}
.ws0_c01123{word-spacing:-11.733333pt;}
.ws2_c01123{word-spacing:0.000000pt;}
._5_c01123{margin-left:-6.099200pt;}
._14_c01123{margin-left:-4.742400pt;}
._8_c01123{margin-left:-3.641600pt;}
._3_c01123{margin-left:-2.515200pt;}
._1_c01123{margin-left:-1.344000pt;}
._a_c01123{width:0.953600pt;}
._0_c01123{width:2.067200pt;}
._9_c01123{width:3.379200pt;}
._2_c01123{width:4.288000pt;}
._4_c01123{width:5.920000pt;}
._6_c01123{width:7.673600pt;}
._12_c01123{width:8.563200pt;}
._7_c01123{width:9.491200pt;}
._b_c01123{width:10.675200pt;}
._15_c01123{width:11.596800pt;}
._13_c01123{width:12.659200pt;}
._c_c01123{width:19.187200pt;}
._10_c01123{width:20.307200pt;}
._e_c01123{width:21.235200pt;}
._d_c01123{width:22.624000pt;}
._11_c01123{width:23.872000pt;}
._f_c01123{width:24.928000pt;}
.fs5_c01123{font-size:35.555557pt;}
.fs2_c01123{font-size:42.666667pt;}
.fs4_c01123{font-size:53.333333pt;}
.fs1_c01123{font-size:64.000000pt;}
.fs0_c01123{font-size:69.333333pt;}
.fs3_c01123{font-size:85.333333pt;}
.y0_c01123{bottom:0.000000pt;}
.y18_c01123{bottom:60.000000pt;}
.y1a_c01123{bottom:117.333333pt;}
.y19_c01123{bottom:142.000000pt;}
.y15_c01123{bottom:294.666667pt;}
.y14_c01123{bottom:318.666667pt;}
.y13_c01123{bottom:342.666667pt;}
.y12_c01123{bottom:385.333333pt;}
.y11_c01123{bottom:409.333333pt;}
.y10_c01123{bottom:433.333333pt;}
.yf_c01123{bottom:457.333333pt;}
.ye_c01123{bottom:481.333333pt;}
.yd_c01123{bottom:505.333333pt;}
.yc_c01123{bottom:546.666667pt;}
.yb_c01123{bottom:609.333333pt;}
.ya_c01123{bottom:652.000000pt;}
.y9_c01123{bottom:676.000000pt;}
.y8_c01123{bottom:700.000000pt;}
.y7_c01123{bottom:724.000000pt;}
.y6_c01123{bottom:748.000000pt;}
.y5_c01123{bottom:772.000000pt;}
.y4_c01123{bottom:796.000000pt;}
.y3_c01123{bottom:820.000000pt;}
.y2_c01123{bottom:844.000000pt;}
.y1_c01123{bottom:885.333333pt;}
.y16_c01123{bottom:948.000000pt;}
.y17_c01123{bottom:1061.333333pt;}
.h7_c01123{height:24.305557pt;}
.h8_c01123{height:36.536458pt;}
.h6_c01123{height:39.296875pt;}
.h5_c01123{height:49.843750pt;}
.h1_c01123{height:49.867188pt;}
.h2_c01123{height:60.218750pt;}
.h3_c01123{height:60.666900pt;}
.h4_c01123{height:80.291667pt;}
.h0_c01123{height:1122.666667pt;}
.w0_c01123{width:793.333333pt;}
.x0_c01123{left:0.000000pt;}
.x1_c01123{left:44.220467pt;}
.x2_c01123{left:70.932320pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ad3eb6ef4ac09ea8b4480b80.woff2')format("woff");}.ff1_c01124{font-family:ff1_c01124;line-height:0.987793;font-style:normal;font-weight:normal;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_08a4cdf782bc0acbe114a303.woff2')format("woff");}.ff2_c01124{font-family:ff2_c01124;line-height:1.155762;font-style: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;}
.ls1_c01124{letter-spacing:0.000000px;}
.ls0_c01124{letter-spacing:0.012000px;}
.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;}
}
.ws0_c01124{word-spacing:-17.064000px;}
.ws1_c01124{word-spacing:0.000000px;}
._0_c01124{margin-left:-3.426000px;}
.fc0_c01124{color:rgb(0,0,0);}
.fs0_c01124{font-size:54.000000px;}
.fs1_c01124{font-size:60.000000px;}
.y0_c01124{bottom:0.000000px;}
.y5_c01124{bottom:10.500000px;}
.y2_c01124{bottom:12.000000px;}
.y4_c01124{bottom:28.500000px;}
.y7_c01124{bottom:67.500000px;}
.y3_c01124{bottom:262.500000px;}
.y1_c01124{bottom:642.000000px;}
.y6_c01124{bottom:1194.000000px;}
.h2_c01124{height:42.292969px;}
.h4_c01124{height:56.074219px;}
.h3_c01124{height:351.000000px;}
.h1_c01124{height:421.500000px;}
.h0_c01124{height:1263.000000px;}
.w1_c01124{width:684.449850px;}
.w0_c01124{width:892.500000px;}
.x0_c01124{left:0.000000px;}
.x4_c01124{left:10.113740px;}
.x1_c01124{left:135.000000px;}
.x3_c01124{left:147.000000px;}
.x2_c01124{left:273.423000px;}
.x5_c01124{left:315.798450px;}
.x6_c01124{left:432.515100px;}
.x7_c01124{left:817.725150px;}
@media print{
.v0_c01124{vertical-align:0.000000pt;}
.ls1_c01124{letter-spacing:0.000000pt;}
.ls0_c01124{letter-spacing:0.010667pt;}
.ws0_c01124{word-spacing:-15.168000pt;}
.ws1_c01124{word-spacing:0.000000pt;}
._0_c01124{margin-left:-3.045333pt;}
.fs0_c01124{font-size:48.000000pt;}
.fs1_c01124{font-size:53.333333pt;}
.y0_c01124{bottom:0.000000pt;}
.y5_c01124{bottom:9.333333pt;}
.y2_c01124{bottom:10.666667pt;}
.y4_c01124{bottom:25.333333pt;}
.y7_c01124{bottom:60.000000pt;}
.y3_c01124{bottom:233.333333pt;}
.y1_c01124{bottom:570.666667pt;}
.y6_c01124{bottom:1061.333333pt;}
.h2_c01124{height:37.593750pt;}
.h4_c01124{height:49.843750pt;}
.h3_c01124{height:312.000000pt;}
.h1_c01124{height:374.666667pt;}
.h0_c01124{height:1122.666667pt;}
.w1_c01124{width:608.399867pt;}
.w0_c01124{width:793.333333pt;}
.x0_c01124{left:0.000000pt;}
.x4_c01124{left:8.989991pt;}
.x1_c01124{left:120.000000pt;}
.x3_c01124{left:130.666667pt;}
.x2_c01124{left:243.042667pt;}
.x5_c01124{left:280.709733pt;}
.x6_c01124{left:384.457867pt;}
.x7_c01124{left:726.866800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_47f847ea66950858d60774e8.woff2')format("woff");}.ff1_c01125{font-family:ff1_c01125;line-height:0.801270;font-style:normal;font-weight:normal;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_8b8c1bc5933d996eb135cb46.woff2')format("woff");}.ff2_c01125{font-family:ff2_c01125;line-height:0.933105;font-style:normal;font-weight:normal;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_52db3b68a32c488670be183c.woff2')format("woff");}.ff3_c01125{font-family:ff3_c01125;line-height:0.755859;font-style:normal;font-weight:normal;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_2b3c9a46a1d0b23672040811.woff2')format("woff");}.ff4_c01125{font-family:ff4_c01125;line-height:1.155762;font-style: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);}
.v0_c01125{vertical-align:0.000000px;}
.ls0_c01125{letter-spacing:0.000000px;}
.ls1_c01125{letter-spacing:0.012000px;}
.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;}
}
.ws0_c01125{word-spacing:0.000000px;}
._4_c01125{margin-left:-4.284000px;}
._b_c01125{margin-left:-2.937600px;}
._2_c01125{margin-left:-1.720800px;}
._1_c01125{width:1.951200px;}
._9_c01125{width:3.369600px;}
._0_c01125{width:4.413600px;}
._6_c01125{width:6.336000px;}
._3_c01125{width:8.136000px;}
._5_c01125{width:10.605600px;}
._a_c01125{width:11.620800px;}
._7_c01125{width:13.032000px;}
._8_c01125{width:15.026400px;}
._c_c01125{width:18.669600px;}
.fc1_c01125{color:transparent;}
.fc0_c01125{color:rgb(0,0,0);}
.fs0_c01125{font-size:54.000000px;}
.fs2_c01125{font-size:60.000000px;}
.fs1_c01125{font-size:72.000000px;}
.y0_c01125{bottom:0.000000px;}
.y2_c01125{bottom:10.500000px;}
.y7_c01125{bottom:12.000000px;}
.y9_c01125{bottom:67.500000px;}
.y6_c01125{bottom:288.000000px;}
.y5_c01125{bottom:636.000000px;}
.y4_c01125{bottom:663.000000px;}
.y3_c01125{bottom:690.000000px;}
.y1_c01125{bottom:714.000000px;}
.y8_c01125{bottom:1194.000000px;}
.h2_c01125{height:42.292969px;}
.h6_c01125{height:44.208984px;}
.h3_c01125{height:51.187500px;}
.h5_c01125{height:56.074219px;}
.h4_c01125{height:316.500000px;}
.h1_c01125{height:399.000000px;}
.h0_c01125{height:1263.000000px;}
.w1_c01125{width:684.449850px;}
.w0_c01125{width:892.500000px;}
.x0_c01125{left:0.000000px;}
.x1_c01125{left:49.500000px;}
.x3_c01125{left:61.500000px;}
.x2_c01125{left:234.040350px;}
.x4_c01125{left:255.984450px;}
@media print{
.v0_c01125{vertical-align:0.000000pt;}
.ls0_c01125{letter-spacing:0.000000pt;}
.ls1_c01125{letter-spacing:0.010667pt;}
.ws0_c01125{word-spacing:0.000000pt;}
._4_c01125{margin-left:-3.808000pt;}
._b_c01125{margin-left:-2.611200pt;}
._2_c01125{margin-left:-1.529600pt;}
._1_c01125{width:1.734400pt;}
._9_c01125{width:2.995200pt;}
._0_c01125{width:3.923200pt;}
._6_c01125{width:5.632000pt;}
._3_c01125{width:7.232000pt;}
._5_c01125{width:9.427200pt;}
._a_c01125{width:10.329600pt;}
._7_c01125{width:11.584000pt;}
._8_c01125{width:13.356800pt;}
._c_c01125{width:16.595200pt;}
.fs0_c01125{font-size:48.000000pt;}
.fs2_c01125{font-size:53.333333pt;}
.fs1_c01125{font-size:64.000000pt;}
.y0_c01125{bottom:0.000000pt;}
.y2_c01125{bottom:9.333333pt;}
.y7_c01125{bottom:10.666667pt;}
.y9_c01125{bottom:60.000000pt;}
.y6_c01125{bottom:256.000000pt;}
.y5_c01125{bottom:565.333333pt;}
.y4_c01125{bottom:589.333333pt;}
.y3_c01125{bottom:613.333333pt;}
.y1_c01125{bottom:634.666667pt;}
.y8_c01125{bottom:1061.333333pt;}
.h2_c01125{height:37.593750pt;}
.h6_c01125{height:39.296875pt;}
.h3_c01125{height:45.500000pt;}
.h5_c01125{height:49.843750pt;}
.h4_c01125{height:281.333333pt;}
.h1_c01125{height:354.666667pt;}
.h0_c01125{height:1122.666667pt;}
.w1_c01125{width:608.399867pt;}
.w0_c01125{width:793.333333pt;}
.x0_c01125{left:0.000000pt;}
.x1_c01125{left:44.000000pt;}
.x3_c01125{left:54.666667pt;}
.x2_c01125{left:208.035867pt;}
.x4_c01125{left:227.541733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0444ce9b9ce6c1415958e4ff.woff2')format("woff");}.ff1_c01126{font-family:ff1_c01126;line-height:0.789062;font-style:normal;font-weight:normal;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_8de80a8451cc7ac4c72c5c61.woff2')format("woff");}.ff2_c01126{font-family:ff2_c01126;line-height:0.933105;font-style:normal;font-weight:normal;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_f7f519cf9fd5a09617413a5e.woff2')format("woff");}.ff3_c01126{font-family:ff3_c01126;line-height:1.155762;font-style: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);}
.v0_c01126{vertical-align:0.000000px;}
.ls3_c01126{letter-spacing:0.000000px;}
.ls2_c01126{letter-spacing:0.012000px;}
.ls1_c01126{letter-spacing:0.021600px;}
.ls0_c01126{letter-spacing:0.022200px;}
.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;}
}
.ws0_c01126{word-spacing:0.000000px;}
._9_c01126{margin-left:-4.291200px;}
._1_c01126{margin-left:-2.534400px;}
._a_c01126{margin-left:-1.404000px;}
._7_c01126{width:1.274400px;}
._3_c01126{width:2.563200px;}
._5_c01126{width:3.715200px;}
._6_c01126{width:12.168000px;}
._4_c01126{width:13.348800px;}
._8_c01126{width:14.587200px;}
._0_c01126{width:15.883200px;}
._2_c01126{width:18.460800px;}
.fc0_c01126{color:rgb(0,0,0);}
.fs0_c01126{font-size:54.000000px;}
.fs2_c01126{font-size:60.000000px;}
.fs1_c01126{font-size:72.000000px;}
.y0_c01126{bottom:0.000000px;}
.y2_c01126{bottom:12.000000px;}
.y8_c01126{bottom:67.500000px;}
.y6_c01126{bottom:225.000000px;}
.y5_c01126{bottom:570.000000px;}
.y4_c01126{bottom:597.000000px;}
.y3_c01126{bottom:624.000000px;}
.y1_c01126{bottom:669.000000px;}
.y7_c01126{bottom:1194.000000px;}
.h2_c01126{height:41.633789px;}
.h3_c01126{height:51.187500px;}
.h5_c01126{height:56.074219px;}
.h4_c01126{height:313.500000px;}
.h1_c01126{height:444.000000px;}
.h0_c01126{height:1263.000000px;}
.w1_c01126{width:684.449850px;}
.w0_c01126{width:892.500000px;}
.x0_c01126{left:0.000000px;}
.x3_c01126{left:134.787405px;}
.x1_c01126{left:147.000000px;}
.x4_c01126{left:268.040850px;}
.x2_c01126{left:308.478300px;}
.x5_c01126{left:432.515100px;}
.x6_c01126{left:817.725150px;}
@media print{
.v0_c01126{vertical-align:0.000000pt;}
.ls3_c01126{letter-spacing:0.000000pt;}
.ls2_c01126{letter-spacing:0.010667pt;}
.ls1_c01126{letter-spacing:0.019200pt;}
.ls0_c01126{letter-spacing:0.019733pt;}
.ws0_c01126{word-spacing:0.000000pt;}
._9_c01126{margin-left:-3.814400pt;}
._1_c01126{margin-left:-2.252800pt;}
._a_c01126{margin-left:-1.248000pt;}
._7_c01126{width:1.132800pt;}
._3_c01126{width:2.278400pt;}
._5_c01126{width:3.302400pt;}
._6_c01126{width:10.816000pt;}
._4_c01126{width:11.865600pt;}
._8_c01126{width:12.966400pt;}
._0_c01126{width:14.118400pt;}
._2_c01126{width:16.409600pt;}
.fs0_c01126{font-size:48.000000pt;}
.fs2_c01126{font-size:53.333333pt;}
.fs1_c01126{font-size:64.000000pt;}
.y0_c01126{bottom:0.000000pt;}
.y2_c01126{bottom:10.666667pt;}
.y8_c01126{bottom:60.000000pt;}
.y6_c01126{bottom:200.000000pt;}
.y5_c01126{bottom:506.666667pt;}
.y4_c01126{bottom:530.666667pt;}
.y3_c01126{bottom:554.666667pt;}
.y1_c01126{bottom:594.666667pt;}
.y7_c01126{bottom:1061.333333pt;}
.h2_c01126{height:37.007812pt;}
.h3_c01126{height:45.500000pt;}
.h5_c01126{height:49.843750pt;}
.h4_c01126{height:278.666667pt;}
.h1_c01126{height:394.666667pt;}
.h0_c01126{height:1122.666667pt;}
.w1_c01126{width:608.399867pt;}
.w0_c01126{width:793.333333pt;}
.x0_c01126{left:0.000000pt;}
.x3_c01126{left:119.811027pt;}
.x1_c01126{left:130.666667pt;}
.x4_c01126{left:238.258533pt;}
.x2_c01126{left:274.202933pt;}
.x5_c01126{left:384.457867pt;}
.x6_c01126{left:726.866800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1d2d710b0af832bc33286742.woff2')format("woff");}.ff1_c01127{font-family:ff1_c01127;line-height:0.976074;font-style:normal;font-weight:normal;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_c869b34768a1b1a011eed1ce.woff2')format("woff");}.ff2_c01127{font-family:ff2_c01127;line-height:0.934082;font-style:normal;font-weight:normal;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_9a2682903f863805a5536cc9.woff2')format("woff");}.ff3_c01127{font-family:ff3_c01127;line-height:0.932129;font-style:normal;font-weight:normal;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_3f9fdbc50a1e648647b14cbc.woff2')format("woff");}.ff4_c01127{font-family:ff4_c01127;line-height:1.010254;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01127;src:url('chunks/assets/font_25489bcced15fda763222225.woff2')format("woff");}.ff5_c01127{font-family:ff5_c01127;line-height:0.755859;font-style:normal;font-weight: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_c01127;src:url('chunks/assets/font_35ad0088b3b90b435dcd0d04.woff2')format("woff");}.ff6_c01127{font-family:ff6_c01127;line-height:1.155762;font-style: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;}
.ls2_c01127{letter-spacing:0.000000px;}
.ls1_c01127{letter-spacing:0.012000px;}
.ls0_c01127{letter-spacing:0.021600px;}
.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;}
}
.ws0_c01127{word-spacing:0.000000px;}
._e_c01127{margin-left:-5.256000px;}
._8_c01127{margin-left:-3.945600px;}
._5_c01127{margin-left:-2.239200px;}
._3_c01127{margin-left:-1.209600px;}
._7_c01127{width:1.886400px;}
._1_c01127{width:2.988000px;}
._f_c01127{width:4.053600px;}
._10_c01127{width:6.048000px;}
._13_c01127{width:7.279200px;}
._d_c01127{width:8.568000px;}
._2_c01127{width:10.281600px;}
._c_c01127{width:11.649600px;}
._0_c01127{width:13.190400px;}
._4_c01127{width:14.421600px;}
._6_c01127{width:15.472800px;}
._14_c01127{width:16.740000px;}
._11_c01127{width:19.663200px;}
._12_c01127{width:20.793600px;}
._b_c01127{width:22.104000px;}
._15_c01127{width:23.709600px;}
._9_c01127{width:25.120800px;}
._a_c01127{width:27.417600px;}
.fc0_c01127{color:rgb(0,0,0);}
.fs0_c01127{font-size:54.000000px;}
.fs2_c01127{font-size:60.000000px;}
.fs1_c01127{font-size:72.000000px;}
.y0_c01127{bottom:0.000000px;}
.y2_c01127{bottom:12.000000px;}
.y15_c01127{bottom:67.500000px;}
.y13_c01127{bottom:151.500000px;}
.y12_c01127{bottom:172.500000px;}
.y11_c01127{bottom:193.500000px;}
.y10_c01127{bottom:214.500000px;}
.yf_c01127{bottom:235.500000px;}
.ye_c01127{bottom:256.500000px;}
.yd_c01127{bottom:277.500000px;}
.yc_c01127{bottom:298.500000px;}
.yb_c01127{bottom:319.500000px;}
.ya_c01127{bottom:378.000000px;}
.y9_c01127{bottom:414.000000px;}
.y8_c01127{bottom:441.000000px;}
.y7_c01127{bottom:480.000000px;}
.y6_c01127{bottom:540.000000px;}
.y5_c01127{bottom:624.000000px;}
.y4_c01127{bottom:651.000000px;}
.y3_c01127{bottom:678.000000px;}
.y1_c01127{bottom:723.000000px;}
.y14_c01127{bottom:1194.000000px;}
.h2_c01127{height:42.292969px;}
.h4_c01127{height:42.714844px;}
.h7_c01127{height:44.208984px;}
.h3_c01127{height:51.257812px;}
.h5_c01127{height:52.417969px;}
.h6_c01127{height:56.074219px;}
.h1_c01127{height:390.000000px;}
.h0_c01127{height:1263.000000px;}
.w1_c01127{width:684.449850px;}
.w0_c01127{width:892.500000px;}
.x0_c01127{left:0.000000px;}
.x3_c01127{left:49.748025px;}
.x1_c01127{left:61.500000px;}
.x2_c01127{left:217.478550px;}
@media print{
.v0_c01127{vertical-align:0.000000pt;}
.ls2_c01127{letter-spacing:0.000000pt;}
.ls1_c01127{letter-spacing:0.010667pt;}
.ls0_c01127{letter-spacing:0.019200pt;}
.ws0_c01127{word-spacing:0.000000pt;}
._e_c01127{margin-left:-4.672000pt;}
._8_c01127{margin-left:-3.507200pt;}
._5_c01127{margin-left:-1.990400pt;}
._3_c01127{margin-left:-1.075200pt;}
._7_c01127{width:1.676800pt;}
._1_c01127{width:2.656000pt;}
._f_c01127{width:3.603200pt;}
._10_c01127{width:5.376000pt;}
._13_c01127{width:6.470400pt;}
._d_c01127{width:7.616000pt;}
._2_c01127{width:9.139200pt;}
._c_c01127{width:10.355200pt;}
._0_c01127{width:11.724800pt;}
._4_c01127{width:12.819200pt;}
._6_c01127{width:13.753600pt;}
._14_c01127{width:14.880000pt;}
._11_c01127{width:17.478400pt;}
._12_c01127{width:18.483200pt;}
._b_c01127{width:19.648000pt;}
._15_c01127{width:21.075200pt;}
._9_c01127{width:22.329600pt;}
._a_c01127{width:24.371200pt;}
.fs0_c01127{font-size:48.000000pt;}
.fs2_c01127{font-size:53.333333pt;}
.fs1_c01127{font-size:64.000000pt;}
.y0_c01127{bottom:0.000000pt;}
.y2_c01127{bottom:10.666667pt;}
.y15_c01127{bottom:60.000000pt;}
.y13_c01127{bottom:134.666667pt;}
.y12_c01127{bottom:153.333333pt;}
.y11_c01127{bottom:172.000000pt;}
.y10_c01127{bottom:190.666667pt;}
.yf_c01127{bottom:209.333333pt;}
.ye_c01127{bottom:228.000000pt;}
.yd_c01127{bottom:246.666667pt;}
.yc_c01127{bottom:265.333333pt;}
.yb_c01127{bottom:284.000000pt;}
.ya_c01127{bottom:336.000000pt;}
.y9_c01127{bottom:368.000000pt;}
.y8_c01127{bottom:392.000000pt;}
.y7_c01127{bottom:426.666667pt;}
.y6_c01127{bottom:480.000000pt;}
.y5_c01127{bottom:554.666667pt;}
.y4_c01127{bottom:578.666667pt;}
.y3_c01127{bottom:602.666667pt;}
.y1_c01127{bottom:642.666667pt;}
.y14_c01127{bottom:1061.333333pt;}
.h2_c01127{height:37.593750pt;}
.h4_c01127{height:37.968750pt;}
.h7_c01127{height:39.296875pt;}
.h3_c01127{height:45.562500pt;}
.h5_c01127{height:46.593750pt;}
.h6_c01127{height:49.843750pt;}
.h1_c01127{height:346.666667pt;}
.h0_c01127{height:1122.666667pt;}
.w1_c01127{width:608.399867pt;}
.w0_c01127{width:793.333333pt;}
.x0_c01127{left:0.000000pt;}
.x3_c01127{left:44.220467pt;}
.x1_c01127{left:54.666667pt;}
.x2_c01127{left:193.314267pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_65b366ea5e206eda9777cffd.woff2')format("woff");}.ff1_c01128{font-family:ff1_c01128;line-height:1.010254;font-style:normal;font-weight:normal;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_591284337859b7207532766f.woff2')format("woff");}.ff2_c01128{font-family:ff2_c01128;line-height:0.986816;font-style:normal;font-weight:normal;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_0094e0a401413bf9481d2f82.woff2')format("woff");}.ff3_c01128{font-family:ff3_c01128;line-height:1.155762;font-style: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);}
.v0_c01128{vertical-align:0.000000px;}
.ls1_c01128{letter-spacing:0.000000px;}
.ls0_c01128{letter-spacing:0.012000px;}
.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;}
}
.ws0_c01128{word-spacing:-18.000000px;}
.ws1_c01128{word-spacing:-0.072000px;}
.ws2_c01128{word-spacing:0.000000px;}
._8_c01128{margin-left:-4.024800px;}
._5_c01128{margin-left:-2.152800px;}
._7_c01128{margin-left:-1.058400px;}
._1_c01128{width:1.612800px;}
._3_c01128{width:3.304800px;}
._4_c01128{width:5.169600px;}
._2_c01128{width:6.868800px;}
._0_c01128{width:8.438400px;}
._6_c01128{width:10.555200px;}
.fc0_c01128{color:rgb(0,0,0);}
.fs1_c01128{font-size:60.000000px;}
.fs0_c01128{font-size:72.000000px;}
.y0_c01128{bottom:0.000000px;}
.ya_c01128{bottom:67.500000px;}
.y8_c01128{bottom:907.500000px;}
.y7_c01128{bottom:928.500000px;}
.y6_c01128{bottom:949.500000px;}
.y5_c01128{bottom:970.500000px;}
.y4_c01128{bottom:1012.500000px;}
.y3_c01128{bottom:1033.500000px;}
.y2_c01128{bottom:1075.500000px;}
.y1_c01128{bottom:1096.500000px;}
.y9_c01128{bottom:1194.000000px;}
.h1_c01128{height:52.417969px;}
.h2_c01128{height:56.074219px;}
.h0_c01128{height:1263.000000px;}
.w0_c01128{width:892.500000px;}
.x0_c01128{left:0.000000px;}
.x1_c01128{left:150.519750px;}
.x2_c01128{left:416.782800px;}
.x3_c01128{left:801.992850px;}
@media print{
.v0_c01128{vertical-align:0.000000pt;}
.ls1_c01128{letter-spacing:0.000000pt;}
.ls0_c01128{letter-spacing:0.010667pt;}
.ws0_c01128{word-spacing:-16.000000pt;}
.ws1_c01128{word-spacing:-0.064000pt;}
.ws2_c01128{word-spacing:0.000000pt;}
._8_c01128{margin-left:-3.577600pt;}
._5_c01128{margin-left:-1.913600pt;}
._7_c01128{margin-left:-0.940800pt;}
._1_c01128{width:1.433600pt;}
._3_c01128{width:2.937600pt;}
._4_c01128{width:4.595200pt;}
._2_c01128{width:6.105600pt;}
._0_c01128{width:7.500800pt;}
._6_c01128{width:9.382400pt;}
.fs1_c01128{font-size:53.333333pt;}
.fs0_c01128{font-size:64.000000pt;}
.y0_c01128{bottom:0.000000pt;}
.ya_c01128{bottom:60.000000pt;}
.y8_c01128{bottom:806.666667pt;}
.y7_c01128{bottom:825.333333pt;}
.y6_c01128{bottom:844.000000pt;}
.y5_c01128{bottom:862.666667pt;}
.y4_c01128{bottom:900.000000pt;}
.y3_c01128{bottom:918.666667pt;}
.y2_c01128{bottom:956.000000pt;}
.y1_c01128{bottom:974.666667pt;}
.y9_c01128{bottom:1061.333333pt;}
.h1_c01128{height:46.593750pt;}
.h2_c01128{height:49.843750pt;}
.h0_c01128{height:1122.666667pt;}
.w0_c01128{width:793.333333pt;}
.x0_c01128{left:0.000000pt;}
.x1_c01128{left:133.795333pt;}
.x2_c01128{left:370.473600pt;}
.x3_c01128{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_432bd26f97d6d5e4e2868760.woff2')format("woff");}.ff1_c01129{font-family:ff1_c01129;line-height:0.884766;font-style:normal;font-weight:normal;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_e16cee05e3b33e1d5fe14f35.woff2')format("woff");}.ff2_c01129{font-family:ff2_c01129;line-height:0.934082;font-style:normal;font-weight:normal;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_23331dec5d890265811813a8.woff2')format("woff");}.ff3_c01129{font-family:ff3_c01129;line-height:0.755859;font-style:normal;font-weight:normal;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_f6683b4e8d3b2d8c57e964aa.woff2')format("woff");}.ff4_c01129{font-family:ff4_c01129;line-height:1.155762;font-style:normal;font-weight:normal;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_9a374bb86235243bca3b0251.woff2')format("woff");}.ff5_c01129{font-family:ff5_c01129;line-height:1.114746;font-style:normal;font-weight: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_c01129;src:url('chunks/assets/font_6cda69538ad7f34895a31487.woff2')format("woff");}.ff6_c01129{font-family:ff6_c01129;line-height:0.890137;font-style: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);}
.v2_c01129{vertical-align:-33.000000px;}
.v0_c01129{vertical-align:0.000000px;}
.v1_c01129{vertical-align:23.086200px;}
.ls3_c01129{letter-spacing:0.000000px;}
.ls0_c01129{letter-spacing:0.007800px;}
.ls4_c01129{letter-spacing:0.012000px;}
.ls1_c01129{letter-spacing:1.002000px;}
.ls2_c01129{letter-spacing:3.999999px;}
.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;}
}
.ws0_c01129{word-spacing:-22.542000px;}
.ws1_c01129{word-spacing:-13.200000px;}
.ws2_c01129{word-spacing:0.000000px;}
._7_c01129{margin-left:-10.584000px;}
._11_c01129{margin-left:-7.516800px;}
._13_c01129{margin-left:-6.320400px;}
._14_c01129{margin-left:-5.282640px;}
._10_c01129{margin-left:-4.154400px;}
._3_c01129{margin-left:-2.829600px;}
._8_c01129{margin-left:-1.605600px;}
._a_c01129{width:1.288800px;}
._0_c01129{width:2.325600px;}
._5_c01129{width:3.844800px;}
._b_c01129{width:5.472000px;}
._6_c01129{width:6.739200px;}
._1_c01129{width:8.258400px;}
._f_c01129{width:9.309600px;}
._2_c01129{width:10.648800px;}
._9_c01129{width:12.283200px;}
._4_c01129{width:13.485600px;}
._c_c01129{width:15.278400px;}
._e_c01129{width:16.718400px;}
._d_c01129{width:18.381600px;}
._12_c01129{width:21.333600px;}
.fc1_c01129{color:rgb(255,255,255);}
.fc0_c01129{color:rgb(0,0,0);}
.fs5_c01129{font-size:40.000002px;}
.fs2_c01129{font-size:48.000000px;}
.fs4_c01129{font-size:60.000000px;}
.fs1_c01129{font-size:72.000000px;}
.fs0_c01129{font-size:78.000000px;}
.fs3_c01129{font-size:96.000000px;}
.y0_c01129{bottom:0.000000px;}
.y1b_c01129{bottom:67.500000px;}
.y21_c01129{bottom:132.000000px;}
.y20_c01129{bottom:159.750000px;}
.y1f_c01129{bottom:201.000000px;}
.y1e_c01129{bottom:220.500000px;}
.y1d_c01129{bottom:240.000000px;}
.y1c_c01129{bottom:267.750000px;}
.y18_c01129{bottom:334.500000px;}
.y17_c01129{bottom:361.500000px;}
.y16_c01129{bottom:388.500000px;}
.y15_c01129{bottom:415.500000px;}
.y14_c01129{bottom:442.500000px;}
.y13_c01129{bottom:469.500000px;}
.y12_c01129{bottom:496.500000px;}
.y11_c01129{bottom:523.500000px;}
.y10_c01129{bottom:550.500000px;}
.yf_c01129{bottom:577.500000px;}
.ye_c01129{bottom:604.500000px;}
.yd_c01129{bottom:631.500000px;}
.yc_c01129{bottom:658.500000px;}
.yb_c01129{bottom:685.500000px;}
.ya_c01129{bottom:733.500000px;}
.y9_c01129{bottom:760.500000px;}
.y8_c01129{bottom:787.500000px;}
.y7_c01129{bottom:814.500000px;}
.y6_c01129{bottom:841.500000px;}
.y5_c01129{bottom:868.500000px;}
.y4_c01129{bottom:895.500000px;}
.y3_c01129{bottom:922.500000px;}
.y2_c01129{bottom:949.500000px;}
.y1_c01129{bottom:996.000000px;}
.y19_c01129{bottom:1066.500000px;}
.y1a_c01129{bottom:1194.000000px;}
.h7_c01129{height:35.878908px;}
.h6_c01129{height:44.208984px;}
.h2_c01129{height:51.257812px;}
.h8_c01129{height:53.818359px;}
.h1_c01129{height:55.224609px;}
.h5_c01129{height:56.074219px;}
.h3_c01129{height:57.258075px;}
.h4_c01129{height:68.343750px;}
.h0_c01129{height:1263.000000px;}
.w0_c01129{width:892.500000px;}
.x0_c01129{left:0.000000px;}
.x1_c01129{left:65.480310px;}
.x2_c01129{left:94.798860px;}
@media print{
.v2_c01129{vertical-align:-29.333333pt;}
.v0_c01129{vertical-align:0.000000pt;}
.v1_c01129{vertical-align:20.521067pt;}
.ls3_c01129{letter-spacing:0.000000pt;}
.ls0_c01129{letter-spacing:0.006933pt;}
.ls4_c01129{letter-spacing:0.010667pt;}
.ls1_c01129{letter-spacing:0.890667pt;}
.ls2_c01129{letter-spacing:3.555555pt;}
.ws0_c01129{word-spacing:-20.037333pt;}
.ws1_c01129{word-spacing:-11.733333pt;}
.ws2_c01129{word-spacing:0.000000pt;}
._7_c01129{margin-left:-9.408000pt;}
._11_c01129{margin-left:-6.681600pt;}
._13_c01129{margin-left:-5.618133pt;}
._14_c01129{margin-left:-4.695680pt;}
._10_c01129{margin-left:-3.692800pt;}
._3_c01129{margin-left:-2.515200pt;}
._8_c01129{margin-left:-1.427200pt;}
._a_c01129{width:1.145600pt;}
._0_c01129{width:2.067200pt;}
._5_c01129{width:3.417600pt;}
._b_c01129{width:4.864000pt;}
._6_c01129{width:5.990400pt;}
._1_c01129{width:7.340800pt;}
._f_c01129{width:8.275200pt;}
._2_c01129{width:9.465600pt;}
._9_c01129{width:10.918400pt;}
._4_c01129{width:11.987200pt;}
._c_c01129{width:13.580800pt;}
._e_c01129{width:14.860800pt;}
._d_c01129{width:16.339200pt;}
._12_c01129{width:18.963200pt;}
.fs5_c01129{font-size:35.555557pt;}
.fs2_c01129{font-size:42.666667pt;}
.fs4_c01129{font-size:53.333333pt;}
.fs1_c01129{font-size:64.000000pt;}
.fs0_c01129{font-size:69.333333pt;}
.fs3_c01129{font-size:85.333333pt;}
.y0_c01129{bottom:0.000000pt;}
.y1b_c01129{bottom:60.000000pt;}
.y21_c01129{bottom:117.333333pt;}
.y20_c01129{bottom:142.000000pt;}
.y1f_c01129{bottom:178.666667pt;}
.y1e_c01129{bottom:196.000000pt;}
.y1d_c01129{bottom:213.333333pt;}
.y1c_c01129{bottom:238.000000pt;}
.y18_c01129{bottom:297.333333pt;}
.y17_c01129{bottom:321.333333pt;}
.y16_c01129{bottom:345.333333pt;}
.y15_c01129{bottom:369.333333pt;}
.y14_c01129{bottom:393.333333pt;}
.y13_c01129{bottom:417.333333pt;}
.y12_c01129{bottom:441.333333pt;}
.y11_c01129{bottom:465.333333pt;}
.y10_c01129{bottom:489.333333pt;}
.yf_c01129{bottom:513.333333pt;}
.ye_c01129{bottom:537.333333pt;}
.yd_c01129{bottom:561.333333pt;}
.yc_c01129{bottom:585.333333pt;}
.yb_c01129{bottom:609.333333pt;}
.ya_c01129{bottom:652.000000pt;}
.y9_c01129{bottom:676.000000pt;}
.y8_c01129{bottom:700.000000pt;}
.y7_c01129{bottom:724.000000pt;}
.y6_c01129{bottom:748.000000pt;}
.y5_c01129{bottom:772.000000pt;}
.y4_c01129{bottom:796.000000pt;}
.y3_c01129{bottom:820.000000pt;}
.y2_c01129{bottom:844.000000pt;}
.y1_c01129{bottom:885.333333pt;}
.y19_c01129{bottom:948.000000pt;}
.y1a_c01129{bottom:1061.333333pt;}
.h7_c01129{height:31.892363pt;}
.h6_c01129{height:39.296875pt;}
.h2_c01129{height:45.562500pt;}
.h8_c01129{height:47.838542pt;}
.h1_c01129{height:49.088542pt;}
.h5_c01129{height:49.843750pt;}
.h3_c01129{height:50.896067pt;}
.h4_c01129{height:60.750000pt;}
.h0_c01129{height:1122.666667pt;}
.w0_c01129{width:793.333333pt;}
.x0_c01129{left:0.000000pt;}
.x1_c01129{left:58.204720pt;}
.x2_c01129{left:84.265653pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_16cacfd2fe29270e7d9cd30f.woff2')format("woff");}.ff1_c01130{font-family:ff1_c01130;line-height:0.934082;font-style:normal;font-weight:normal;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_0deffb6d2cb7af0a55a1ad55.woff2')format("woff");}.ff2_c01130{font-family:ff2_c01130;line-height:1.155762;font-style:normal;font-weight:normal;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_c7d845d0d191ae741845e60c.woff2')format("woff");}.ff3_c01130{font-family:ff3_c01130;line-height:1.114746;font-style:normal;font-weight:normal;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_dfaa093a2c03a265d59d1ab1.woff2')format("woff");}.ff4_c01130{font-family:ff4_c01130;line-height:0.890137;font-style: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);}
.m1_c01130{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4_c01130{vertical-align:-33.000000px;}
.v2_c01130{vertical-align:-23.086200px;}
.v3_c01130{vertical-align:-15.400200px;}
.v0_c01130{vertical-align:0.000000px;}
.v1_c01130{vertical-align:23.086200px;}
.ls7_c01130{letter-spacing:-4.644000px;}
.lsa_c01130{letter-spacing:-3.702000px;}
.ls9_c01130{letter-spacing:-0.014400px;}
.ls8_c01130{letter-spacing:0.000000px;}
.ls5_c01130{letter-spacing:0.005599px;}
.ls4_c01130{letter-spacing:0.012000px;}
.ls0_c01130{letter-spacing:0.014400px;}
.ls3_c01130{letter-spacing:0.352800px;}
.ls1_c01130{letter-spacing:0.394800px;}
.ls2_c01130{letter-spacing:1.664400px;}
.ls6_c01130{letter-spacing:9.999999px;}
.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;}
}
.ws0_c01130{word-spacing:-19.800000px;}
.ws1_c01130{word-spacing:-19.785600px;}
.ws2_c01130{word-spacing:-13.200000px;}
.ws3_c01130{word-spacing:-10.000001px;}
.ws4_c01130{word-spacing:0.000000px;}
._c_c01130{margin-left:-10.627200px;}
._13_c01130{margin-left:-9.595800px;}
._14_c01130{margin-left:-6.658200px;}
._d_c01130{margin-left:-4.860000px;}
._3_c01130{margin-left:-3.565800px;}
._1_c01130{margin-left:-2.448000px;}
._6_c01130{margin-left:-1.072800px;}
._4_c01130{width:1.389600px;}
._0_c01130{width:2.520000px;}
._5_c01130{width:3.981600px;}
._16_c01130{width:4.991400px;}
._7_c01130{width:5.997600px;}
._2_c01130{width:7.632000px;}
._12_c01130{width:9.043200px;}
._b_c01130{width:10.785600px;}
._8_c01130{width:11.916000px;}
._a_c01130{width:13.341600px;}
._9_c01130{width:14.421600px;}
._15_c01130{width:15.703200px;}
._17_c01130{width:17.004000px;}
._11_c01130{width:18.280800px;}
._f_c01130{width:21.607200px;}
._10_c01130{width:24.588000px;}
._e_c01130{width:26.193600px;}
.fc0_c01130{color:rgb(0,0,0);}
.fs3_c01130{font-size:40.000002px;}
.fs1_c01130{font-size:48.000000px;}
.fs2_c01130{font-size:60.000000px;}
.fs0_c01130{font-size:72.000000px;}
.y0_c01130{bottom:0.000000px;}
.y1a_c01130{bottom:67.500000px;}
.y21_c01130{bottom:140.250000px;}
.y20_c01130{bottom:189.750000px;}
.y1f_c01130{bottom:231.000000px;}
.y1e_c01130{bottom:258.750000px;}
.y1d_c01130{bottom:308.250000px;}
.y1c_c01130{bottom:349.500000px;}
.y1b_c01130{bottom:372.850050px;}
.y18_c01130{bottom:432.000000px;}
.y17_c01130{bottom:459.000000px;}
.y16_c01130{bottom:486.000000px;}
.y15_c01130{bottom:534.000000px;}
.y14_c01130{bottom:561.000000px;}
.y13_c01130{bottom:588.000000px;}
.y12_c01130{bottom:615.000000px;}
.y11_c01130{bottom:642.000000px;}
.y10_c01130{bottom:669.000000px;}
.yf_c01130{bottom:696.000000px;}
.ye_c01130{bottom:744.000000px;}
.yd_c01130{bottom:771.000000px;}
.yc_c01130{bottom:798.000000px;}
.yb_c01130{bottom:825.000000px;}
.ya_c01130{bottom:852.000000px;}
.y9_c01130{bottom:879.000000px;}
.y8_c01130{bottom:906.000000px;}
.y7_c01130{bottom:933.000000px;}
.y6_c01130{bottom:960.000000px;}
.y5_c01130{bottom:987.000000px;}
.y4_c01130{bottom:1014.000000px;}
.y3_c01130{bottom:1041.000000px;}
.y2_c01130{bottom:1068.000000px;}
.y1_c01130{bottom:1095.000000px;}
.y19_c01130{bottom:1194.000000px;}
.h6_c01130{height:35.878908px;}
.h4_c01130{height:40.674019px;}
.h2_c01130{height:51.257812px;}
.h5_c01130{height:53.818359px;}
.h3_c01130{height:56.074219px;}
.h1_c01130{height:57.258075px;}
.h0_c01130{height:1263.000000px;}
.w0_c01130{width:892.500000px;}
.x0_c01130{left:0.000000px;}
.x1_c01130{left:150.519750px;}
.x2_c01130{left:416.782800px;}
.x3_c01130{left:801.992850px;}
@media print{
.v4_c01130{vertical-align:-29.333333pt;}
.v2_c01130{vertical-align:-20.521067pt;}
.v3_c01130{vertical-align:-13.689067pt;}
.v0_c01130{vertical-align:0.000000pt;}
.v1_c01130{vertical-align:20.521067pt;}
.ls7_c01130{letter-spacing:-4.128000pt;}
.lsa_c01130{letter-spacing:-3.290667pt;}
.ls9_c01130{letter-spacing:-0.012800pt;}
.ls8_c01130{letter-spacing:0.000000pt;}
.ls5_c01130{letter-spacing:0.004977pt;}
.ls4_c01130{letter-spacing:0.010667pt;}
.ls0_c01130{letter-spacing:0.012800pt;}
.ls3_c01130{letter-spacing:0.313600pt;}
.ls1_c01130{letter-spacing:0.350933pt;}
.ls2_c01130{letter-spacing:1.479467pt;}
.ls6_c01130{letter-spacing:8.888888pt;}
.ws0_c01130{word-spacing:-17.600000pt;}
.ws1_c01130{word-spacing:-17.587200pt;}
.ws2_c01130{word-spacing:-11.733333pt;}
.ws3_c01130{word-spacing:-8.888889pt;}
.ws4_c01130{word-spacing:0.000000pt;}
._c_c01130{margin-left:-9.446400pt;}
._13_c01130{margin-left:-8.529600pt;}
._14_c01130{margin-left:-5.918400pt;}
._d_c01130{margin-left:-4.320000pt;}
._3_c01130{margin-left:-3.169600pt;}
._1_c01130{margin-left:-2.176000pt;}
._6_c01130{margin-left:-0.953600pt;}
._4_c01130{width:1.235200pt;}
._0_c01130{width:2.240000pt;}
._5_c01130{width:3.539200pt;}
._16_c01130{width:4.436800pt;}
._7_c01130{width:5.331200pt;}
._2_c01130{width:6.784000pt;}
._12_c01130{width:8.038400pt;}
._b_c01130{width:9.587200pt;}
._8_c01130{width:10.592000pt;}
._a_c01130{width:11.859200pt;}
._9_c01130{width:12.819200pt;}
._15_c01130{width:13.958400pt;}
._17_c01130{width:15.114667pt;}
._11_c01130{width:16.249600pt;}
._f_c01130{width:19.206400pt;}
._10_c01130{width:21.856000pt;}
._e_c01130{width:23.283200pt;}
.fs3_c01130{font-size:35.555557pt;}
.fs1_c01130{font-size:42.666667pt;}
.fs2_c01130{font-size:53.333333pt;}
.fs0_c01130{font-size:64.000000pt;}
.y0_c01130{bottom:0.000000pt;}
.y1a_c01130{bottom:60.000000pt;}
.y21_c01130{bottom:124.666667pt;}
.y20_c01130{bottom:168.666667pt;}
.y1f_c01130{bottom:205.333333pt;}
.y1e_c01130{bottom:230.000000pt;}
.y1d_c01130{bottom:274.000000pt;}
.y1c_c01130{bottom:310.666667pt;}
.y1b_c01130{bottom:331.422267pt;}
.y18_c01130{bottom:384.000000pt;}
.y17_c01130{bottom:408.000000pt;}
.y16_c01130{bottom:432.000000pt;}
.y15_c01130{bottom:474.666667pt;}
.y14_c01130{bottom:498.666667pt;}
.y13_c01130{bottom:522.666667pt;}
.y12_c01130{bottom:546.666667pt;}
.y11_c01130{bottom:570.666667pt;}
.y10_c01130{bottom:594.666667pt;}
.yf_c01130{bottom:618.666667pt;}
.ye_c01130{bottom:661.333333pt;}
.yd_c01130{bottom:685.333333pt;}
.yc_c01130{bottom:709.333333pt;}
.yb_c01130{bottom:733.333333pt;}
.ya_c01130{bottom:757.333333pt;}
.y9_c01130{bottom:781.333333pt;}
.y8_c01130{bottom:805.333333pt;}
.y7_c01130{bottom:829.333333pt;}
.y6_c01130{bottom:853.333333pt;}
.y5_c01130{bottom:877.333333pt;}
.y4_c01130{bottom:901.333333pt;}
.y3_c01130{bottom:925.333333pt;}
.y2_c01130{bottom:949.333333pt;}
.y1_c01130{bottom:973.333333pt;}
.y19_c01130{bottom:1061.333333pt;}
.h6_c01130{height:31.892363pt;}
.h4_c01130{height:36.154683pt;}
.h2_c01130{height:45.562500pt;}
.h5_c01130{height:47.838542pt;}
.h3_c01130{height:49.843750pt;}
.h1_c01130{height:50.896067pt;}
.h0_c01130{height:1122.666667pt;}
.w0_c01130{width:793.333333pt;}
.x0_c01130{left:0.000000pt;}
.x1_c01130{left:133.795333pt;}
.x2_c01130{left:370.473600pt;}
.x3_c01130{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_151ba2259f7418594a904ef3.woff2')format("woff");}.ff1_c01131{font-family:ff1_c01131;line-height:0.934082;font-style:normal;font-weight:normal;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_be9af252fb8ee210607a5bf2.woff2')format("woff");}.ff2_c01131{font-family:ff2_c01131;line-height:0.756836;font-style:normal;font-weight:normal;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_103f0211bd62b3cff04aad64.woff2')format("woff");}.ff3_c01131{font-family:ff3_c01131;line-height:1.155762;font-style:normal;font-weight:normal;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_a81177b80caa6995bfd5f8c2.woff2')format("woff");}.ff4_c01131{font-family:ff4_c01131;line-height:1.114746;font-style:normal;font-weight:normal;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_3d873730415847170b232c50.woff2')format("woff");}.ff5_c01131{font-family:ff5_c01131;line-height:0.890137;font-style: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);}
.v3_c01131{vertical-align:-33.000000px;}
.v2_c01131{vertical-align:-23.086200px;}
.v0_c01131{vertical-align:0.000000px;}
.v1_c01131{vertical-align:23.086200px;}
.ls6_c01131{letter-spacing:-5.106000px;}
.ls4_c01131{letter-spacing:-0.009600px;}
.ls3_c01131{letter-spacing:-0.007200px;}
.ls2_c01131{letter-spacing:0.000000px;}
.ls5_c01131{letter-spacing:0.012000px;}
.ls0_c01131{letter-spacing:0.100200px;}
.ls1_c01131{letter-spacing:3.999999px;}
.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;}
}
.ws3_c01131{word-spacing:-15.000000px;}
.ws0_c01131{word-spacing:-13.200000px;}
.ws1_c01131{word-spacing:-13.190400px;}
.ws2_c01131{word-spacing:-10.000001px;}
.ws4_c01131{word-spacing:0.000000px;}
._e_c01131{margin-left:-10.432800px;}
._f_c01131{margin-left:-7.041600px;}
._1a_c01131{margin-left:-5.955600px;}
._6_c01131{margin-left:-4.260240px;}
._2_c01131{margin-left:-2.764800px;}
._4_c01131{margin-left:-1.447200px;}
._0_c01131{width:1.375200px;}
._3_c01131{width:2.944800px;}
._1_c01131{width:4.154400px;}
._5_c01131{width:5.565600px;}
._9_c01131{width:7.452000px;}
._7_c01131{width:9.345600px;}
._8_c01131{width:11.138400px;}
._a_c01131{width:12.367440px;}
._c_c01131{width:13.608000px;}
._14_c01131{width:15.076800px;}
._b_c01131{width:16.545600px;}
._d_c01131{width:18.021600px;}
._11_c01131{width:20.880000px;}
._12_c01131{width:21.933360px;}
._13_c01131{width:23.210760px;}
._10_c01131{width:24.391440px;}
._18_c01131{width:32.752800px;}
._16_c01131{width:34.286400px;}
._15_c01131{width:35.647200px;}
._17_c01131{width:37.159200px;}
._19_c01131{width:38.253600px;}
.fc0_c01131{color:rgb(0,0,0);}
.fs3_c01131{font-size:40.000002px;}
.fs1_c01131{font-size:48.000000px;}
.fs2_c01131{font-size:60.000000px;}
.fs0_c01131{font-size:72.000000px;}
.y0_c01131{bottom:0.000000px;}
.y1a_c01131{bottom:67.500000px;}
.y1e_c01131{bottom:140.250000px;}
.y1d_c01131{bottom:189.750000px;}
.y1c_c01131{bottom:231.000000px;}
.y1b_c01131{bottom:258.750000px;}
.y18_c01131{bottom:411.000000px;}
.y17_c01131{bottom:438.000000px;}
.y16_c01131{bottom:465.000000px;}
.y15_c01131{bottom:492.000000px;}
.y14_c01131{bottom:519.000000px;}
.y13_c01131{bottom:546.000000px;}
.y12_c01131{bottom:573.000000px;}
.y11_c01131{bottom:600.000000px;}
.y10_c01131{bottom:648.000000px;}
.yf_c01131{bottom:675.000000px;}
.ye_c01131{bottom:702.000000px;}
.yd_c01131{bottom:729.000000px;}
.yc_c01131{bottom:756.000000px;}
.yb_c01131{bottom:783.000000px;}
.ya_c01131{bottom:810.000000px;}
.y9_c01131{bottom:858.000000px;}
.y8_c01131{bottom:885.000000px;}
.y7_c01131{bottom:912.000000px;}
.y6_c01131{bottom:960.000000px;}
.y5_c01131{bottom:987.000000px;}
.y4_c01131{bottom:1014.000000px;}
.y3_c01131{bottom:1041.000000px;}
.y2_c01131{bottom:1068.000000px;}
.y1_c01131{bottom:1095.000000px;}
.y19_c01131{bottom:1194.000000px;}
.h5_c01131{height:35.878908px;}
.h4_c01131{height:44.208984px;}
.h1_c01131{height:51.257812px;}
.h6_c01131{height:53.818359px;}
.h3_c01131{height:56.074219px;}
.h2_c01131{height:57.258075px;}
.h0_c01131{height:1263.000000px;}
.w0_c01131{width:892.500000px;}
.x0_c01131{left:0.000000px;}
.x1_c01131{left:65.480310px;}
@media print{
.v3_c01131{vertical-align:-29.333333pt;}
.v2_c01131{vertical-align:-20.521067pt;}
.v0_c01131{vertical-align:0.000000pt;}
.v1_c01131{vertical-align:20.521067pt;}
.ls6_c01131{letter-spacing:-4.538667pt;}
.ls4_c01131{letter-spacing:-0.008533pt;}
.ls3_c01131{letter-spacing:-0.006400pt;}
.ls2_c01131{letter-spacing:0.000000pt;}
.ls5_c01131{letter-spacing:0.010667pt;}
.ls0_c01131{letter-spacing:0.089067pt;}
.ls1_c01131{letter-spacing:3.555555pt;}
.ws3_c01131{word-spacing:-13.333333pt;}
.ws0_c01131{word-spacing:-11.733333pt;}
.ws1_c01131{word-spacing:-11.724800pt;}
.ws2_c01131{word-spacing:-8.888889pt;}
.ws4_c01131{word-spacing:0.000000pt;}
._e_c01131{margin-left:-9.273600pt;}
._f_c01131{margin-left:-6.259200pt;}
._1a_c01131{margin-left:-5.293867pt;}
._6_c01131{margin-left:-3.786880pt;}
._2_c01131{margin-left:-2.457600pt;}
._4_c01131{margin-left:-1.286400pt;}
._0_c01131{width:1.222400pt;}
._3_c01131{width:2.617600pt;}
._1_c01131{width:3.692800pt;}
._5_c01131{width:4.947200pt;}
._9_c01131{width:6.624000pt;}
._7_c01131{width:8.307200pt;}
._8_c01131{width:9.900800pt;}
._a_c01131{width:10.993280pt;}
._c_c01131{width:12.096000pt;}
._14_c01131{width:13.401600pt;}
._b_c01131{width:14.707200pt;}
._d_c01131{width:16.019200pt;}
._11_c01131{width:18.560000pt;}
._12_c01131{width:19.496320pt;}
._13_c01131{width:20.631787pt;}
._10_c01131{width:21.681280pt;}
._18_c01131{width:29.113600pt;}
._16_c01131{width:30.476800pt;}
._15_c01131{width:31.686400pt;}
._17_c01131{width:33.030400pt;}
._19_c01131{width:34.003200pt;}
.fs3_c01131{font-size:35.555557pt;}
.fs1_c01131{font-size:42.666667pt;}
.fs2_c01131{font-size:53.333333pt;}
.fs0_c01131{font-size:64.000000pt;}
.y0_c01131{bottom:0.000000pt;}
.y1a_c01131{bottom:60.000000pt;}
.y1e_c01131{bottom:124.666667pt;}
.y1d_c01131{bottom:168.666667pt;}
.y1c_c01131{bottom:205.333333pt;}
.y1b_c01131{bottom:230.000000pt;}
.y18_c01131{bottom:365.333333pt;}
.y17_c01131{bottom:389.333333pt;}
.y16_c01131{bottom:413.333333pt;}
.y15_c01131{bottom:437.333333pt;}
.y14_c01131{bottom:461.333333pt;}
.y13_c01131{bottom:485.333333pt;}
.y12_c01131{bottom:509.333333pt;}
.y11_c01131{bottom:533.333333pt;}
.y10_c01131{bottom:576.000000pt;}
.yf_c01131{bottom:600.000000pt;}
.ye_c01131{bottom:624.000000pt;}
.yd_c01131{bottom:648.000000pt;}
.yc_c01131{bottom:672.000000pt;}
.yb_c01131{bottom:696.000000pt;}
.ya_c01131{bottom:720.000000pt;}
.y9_c01131{bottom:762.666667pt;}
.y8_c01131{bottom:786.666667pt;}
.y7_c01131{bottom:810.666667pt;}
.y6_c01131{bottom:853.333333pt;}
.y5_c01131{bottom:877.333333pt;}
.y4_c01131{bottom:901.333333pt;}
.y3_c01131{bottom:925.333333pt;}
.y2_c01131{bottom:949.333333pt;}
.y1_c01131{bottom:973.333333pt;}
.y19_c01131{bottom:1061.333333pt;}
.h5_c01131{height:31.892363pt;}
.h4_c01131{height:39.296875pt;}
.h1_c01131{height:45.562500pt;}
.h6_c01131{height:47.838542pt;}
.h3_c01131{height:49.843750pt;}
.h2_c01131{height:50.896067pt;}
.h0_c01131{height:1122.666667pt;}
.w0_c01131{width:793.333333pt;}
.x0_c01131{left:0.000000pt;}
.x1_c01131{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_08256186fda88b603f4097f5.woff2')format("woff");}.ff1_c01132{font-family:ff1_c01132;line-height:0.934082;font-style:normal;font-weight:normal;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_5ec6e7e31aaf410abdfbdc50.woff2')format("woff");}.ff2_c01132{font-family:ff2_c01132;line-height:1.155762;font-style:normal;font-weight:normal;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_5e50fe3405114c3ea0c18627.woff2')format("woff");}.ff3_c01132{font-family:ff3_c01132;line-height:1.114746;font-style:normal;font-weight:normal;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_f4524f9e0c6bd0ae35899220.woff2')format("woff");}.ff4_c01132{font-family:ff4_c01132;line-height:0.890137;font-style: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);}
.m1_c01132{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3_c01132{vertical-align:-33.000000px;}
.v2_c01132{vertical-align:-23.086200px;}
.v0_c01132{vertical-align:0.000000px;}
.v1_c01132{vertical-align:23.086200px;}
.ls3_c01132{letter-spacing:-3.654000px;}
.ls2_c01132{letter-spacing:-0.009600px;}
.ls1_c01132{letter-spacing:0.000000px;}
.ls0_c01132{letter-spacing:0.012000px;}
.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;}
}
.ws0_c01132{word-spacing:-19.800000px;}
.ws1_c01132{word-spacing:-13.190400px;}
.ws2_c01132{word-spacing:-10.000001px;}
.ws3_c01132{word-spacing:0.000000px;}
._a_c01132{margin-left:-10.216800px;}
._19_c01132{margin-left:-5.755002px;}
._0_c01132{margin-left:-4.485600px;}
._4_c01132{margin-left:-3.060000px;}
._3_c01132{margin-left:-1.180800px;}
._6_c01132{width:1.656000px;}
._2_c01132{width:2.793600px;}
._5_c01132{width:4.665600px;}
._1_c01132{width:6.033600px;}
._e_c01132{width:7.221600px;}
._b_c01132{width:9.086400px;}
._7_c01132{width:10.951200px;}
._8_c01132{width:12.650400px;}
._c_c01132{width:14.040000px;}
._9_c01132{width:15.688800px;}
._d_c01132{width:17.949600px;}
._17_c01132{width:22.500000px;}
._16_c01132{width:23.644800px;}
._18_c01132{width:25.034400px;}
._14_c01132{width:29.462400px;}
._15_c01132{width:31.348800px;}
._10_c01132{width:32.551200px;}
._12_c01132{width:34.164000px;}
._f_c01132{width:35.301600px;}
._11_c01132{width:37.209600px;}
._13_c01132{width:38.620800px;}
.fc0_c01132{color:rgb(0,0,0);}
.fs3_c01132{font-size:40.000002px;}
.fs1_c01132{font-size:48.000000px;}
.fs2_c01132{font-size:60.000000px;}
.fs0_c01132{font-size:72.000000px;}
.y0_c01132{bottom:0.000000px;}
.y1a_c01132{bottom:67.500000px;}
.y20_c01132{bottom:132.000000px;}
.y1f_c01132{bottom:159.750000px;}
.y1e_c01132{bottom:209.250000px;}
.y1d_c01132{bottom:258.750000px;}
.y1c_c01132{bottom:300.000000px;}
.y1b_c01132{bottom:327.750000px;}
.y18_c01132{bottom:369.000000px;}
.y17_c01132{bottom:396.000000px;}
.y16_c01132{bottom:423.000000px;}
.y15_c01132{bottom:450.000000px;}
.y14_c01132{bottom:477.000000px;}
.y13_c01132{bottom:504.000000px;}
.y12_c01132{bottom:531.000000px;}
.y11_c01132{bottom:558.000000px;}
.y10_c01132{bottom:606.000000px;}
.yf_c01132{bottom:633.000000px;}
.ye_c01132{bottom:660.000000px;}
.yd_c01132{bottom:687.000000px;}
.yc_c01132{bottom:735.000000px;}
.yb_c01132{bottom:762.000000px;}
.ya_c01132{bottom:810.000000px;}
.y9_c01132{bottom:837.000000px;}
.y8_c01132{bottom:864.000000px;}
.y7_c01132{bottom:912.000000px;}
.y6_c01132{bottom:939.000000px;}
.y5_c01132{bottom:966.000000px;}
.y4_c01132{bottom:993.000000px;}
.y3_c01132{bottom:1020.000000px;}
.y2_c01132{bottom:1068.000000px;}
.y1_c01132{bottom:1095.000000px;}
.y19_c01132{bottom:1194.000000px;}
.h4_c01132{height:35.878908px;}
.h1_c01132{height:51.257812px;}
.h5_c01132{height:53.818359px;}
.h3_c01132{height:56.074219px;}
.h2_c01132{height:57.258075px;}
.h0_c01132{height:1263.000000px;}
.w0_c01132{width:892.500000px;}
.x0_c01132{left:0.000000px;}
.x1_c01132{left:150.519750px;}
.x2_c01132{left:416.782800px;}
.x3_c01132{left:801.992850px;}
@media print{
.v3_c01132{vertical-align:-29.333333pt;}
.v2_c01132{vertical-align:-20.521067pt;}
.v0_c01132{vertical-align:0.000000pt;}
.v1_c01132{vertical-align:20.521067pt;}
.ls3_c01132{letter-spacing:-3.248000pt;}
.ls2_c01132{letter-spacing:-0.008533pt;}
.ls1_c01132{letter-spacing:0.000000pt;}
.ls0_c01132{letter-spacing:0.010667pt;}
.ws0_c01132{word-spacing:-17.600000pt;}
.ws1_c01132{word-spacing:-11.724800pt;}
.ws2_c01132{word-spacing:-8.888889pt;}
.ws3_c01132{word-spacing:0.000000pt;}
._a_c01132{margin-left:-9.081600pt;}
._19_c01132{margin-left:-5.115557pt;}
._0_c01132{margin-left:-3.987200pt;}
._4_c01132{margin-left:-2.720000pt;}
._3_c01132{margin-left:-1.049600pt;}
._6_c01132{width:1.472000pt;}
._2_c01132{width:2.483200pt;}
._5_c01132{width:4.147200pt;}
._1_c01132{width:5.363200pt;}
._e_c01132{width:6.419200pt;}
._b_c01132{width:8.076800pt;}
._7_c01132{width:9.734400pt;}
._8_c01132{width:11.244800pt;}
._c_c01132{width:12.480000pt;}
._9_c01132{width:13.945600pt;}
._d_c01132{width:15.955200pt;}
._17_c01132{width:20.000000pt;}
._16_c01132{width:21.017600pt;}
._18_c01132{width:22.252800pt;}
._14_c01132{width:26.188800pt;}
._15_c01132{width:27.865600pt;}
._10_c01132{width:28.934400pt;}
._12_c01132{width:30.368000pt;}
._f_c01132{width:31.379200pt;}
._11_c01132{width:33.075200pt;}
._13_c01132{width:34.329600pt;}
.fs3_c01132{font-size:35.555557pt;}
.fs1_c01132{font-size:42.666667pt;}
.fs2_c01132{font-size:53.333333pt;}
.fs0_c01132{font-size:64.000000pt;}
.y0_c01132{bottom:0.000000pt;}
.y1a_c01132{bottom:60.000000pt;}
.y20_c01132{bottom:117.333333pt;}
.y1f_c01132{bottom:142.000000pt;}
.y1e_c01132{bottom:186.000000pt;}
.y1d_c01132{bottom:230.000000pt;}
.y1c_c01132{bottom:266.666667pt;}
.y1b_c01132{bottom:291.333333pt;}
.y18_c01132{bottom:328.000000pt;}
.y17_c01132{bottom:352.000000pt;}
.y16_c01132{bottom:376.000000pt;}
.y15_c01132{bottom:400.000000pt;}
.y14_c01132{bottom:424.000000pt;}
.y13_c01132{bottom:448.000000pt;}
.y12_c01132{bottom:472.000000pt;}
.y11_c01132{bottom:496.000000pt;}
.y10_c01132{bottom:538.666667pt;}
.yf_c01132{bottom:562.666667pt;}
.ye_c01132{bottom:586.666667pt;}
.yd_c01132{bottom:610.666667pt;}
.yc_c01132{bottom:653.333333pt;}
.yb_c01132{bottom:677.333333pt;}
.ya_c01132{bottom:720.000000pt;}
.y9_c01132{bottom:744.000000pt;}
.y8_c01132{bottom:768.000000pt;}
.y7_c01132{bottom:810.666667pt;}
.y6_c01132{bottom:834.666667pt;}
.y5_c01132{bottom:858.666667pt;}
.y4_c01132{bottom:882.666667pt;}
.y3_c01132{bottom:906.666667pt;}
.y2_c01132{bottom:949.333333pt;}
.y1_c01132{bottom:973.333333pt;}
.y19_c01132{bottom:1061.333333pt;}
.h4_c01132{height:31.892363pt;}
.h1_c01132{height:45.562500pt;}
.h5_c01132{height:47.838542pt;}
.h3_c01132{height:49.843750pt;}
.h2_c01132{height:50.896067pt;}
.h0_c01132{height:1122.666667pt;}
.w0_c01132{width:793.333333pt;}
.x0_c01132{left:0.000000pt;}
.x1_c01132{left:133.795333pt;}
.x2_c01132{left:370.473600pt;}
.x3_c01132{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e39b14314e4ed0f6dd670c51.woff2')format("woff");}.ff1_c01133{font-family:ff1_c01133;line-height:0.934082;font-style:normal;font-weight:normal;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_07966bda4b6d54e79d71870c.woff2')format("woff");}.ff2_c01133{font-family:ff2_c01133;line-height:0.939453;font-style:normal;font-weight:normal;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_4dc70c3cf2c121ddc37c9177.woff2')format("woff");}.ff3_c01133{font-family:ff3_c01133;line-height:0.755859;font-style:normal;font-weight:normal;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_ff4bca84b6818cab7d13c5bb.woff2')format("woff");}.ff4_c01133{font-family:ff4_c01133;line-height:1.155762;font-style:normal;font-weight:normal;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_27cdf9366b333a3b42dbf72f.woff2')format("woff");}.ff5_c01133{font-family:ff5_c01133;line-height:0.904785;font-style:normal;font-weight: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_c01133;src:url('chunks/assets/font_88e4ffe63206a4c5091384e1.woff2')format("woff");}.ff6_c01133{font-family:ff6_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;}
.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);}
.v2_c01133{vertical-align:-33.000000px;}
.v0_c01133{vertical-align:0.000000px;}
.v1_c01133{vertical-align:23.086200px;}
.ls3_c01133{letter-spacing:-0.009600px;}
.ls2_c01133{letter-spacing:0.000000px;}
.ls1_c01133{letter-spacing:0.007200px;}
.ls0_c01133{letter-spacing:0.007800px;}
.ls4_c01133{letter-spacing:0.012000px;}
.ls5_c01133{letter-spacing:2.064000px;}
.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;}
}
.ws0_c01133{word-spacing:-10.000001px;}
.ws1_c01133{word-spacing:0.000000px;}
._8_c01133{margin-left:-10.584000px;}
._b_c01133{margin-left:-7.920000px;}
._18_c01133{margin-left:-5.936802px;}
._0_c01133{margin-left:-4.910400px;}
._15_c01133{margin-left:-3.780000px;}
._1_c01133{margin-left:-2.570400px;}
._2_c01133{margin-left:-1.180800px;}
._4_c01133{width:1.015200px;}
._3_c01133{width:2.750400px;}
._a_c01133{width:4.694400px;}
._11_c01133{width:5.745600px;}
._10_c01133{width:7.034400px;}
._e_c01133{width:8.553600px;}
._c_c01133{width:9.597600px;}
._f_c01133{width:10.792800px;}
._d_c01133{width:12.196800px;}
._17_c01133{width:13.759200px;}
._14_c01133{width:15.112800px;}
._12_c01133{width:16.135200px;}
._16_c01133{width:17.452800px;}
._13_c01133{width:18.633600px;}
._9_c01133{width:21.088800px;}
._5_c01133{width:22.824000px;}
._7_c01133{width:23.860800px;}
._6_c01133{width:26.431200px;}
.fc0_c01133{color:rgb(0,0,0);}
.fs4_c01133{font-size:40.000002px;}
.fs1_c01133{font-size:48.000000px;}
.fs3_c01133{font-size:60.000000px;}
.fs0_c01133{font-size:72.000000px;}
.fs2_c01133{font-size:78.000000px;}
.y0_c01133{bottom:0.000000px;}
.y1a_c01133{bottom:67.500000px;}
.y1c_c01133{bottom:132.000000px;}
.y1b_c01133{bottom:159.750000px;}
.y18_c01133{bottom:216.000000px;}
.y17_c01133{bottom:243.000000px;}
.y16_c01133{bottom:291.000000px;}
.y15_c01133{bottom:318.000000px;}
.y14_c01133{bottom:345.000000px;}
.y13_c01133{bottom:372.000000px;}
.y12_c01133{bottom:420.000000px;}
.y11_c01133{bottom:447.000000px;}
.y10_c01133{bottom:474.000000px;}
.yf_c01133{bottom:520.500000px;}
.ye_c01133{bottom:571.500000px;}
.yd_c01133{bottom:642.000000px;}
.yc_c01133{bottom:669.000000px;}
.yb_c01133{bottom:696.000000px;}
.ya_c01133{bottom:744.000000px;}
.y9_c01133{bottom:783.000000px;}
.y8_c01133{bottom:822.000000px;}
.y7_c01133{bottom:861.000000px;}
.y6_c01133{bottom:900.000000px;}
.y5_c01133{bottom:939.000000px;}
.y4_c01133{bottom:978.000000px;}
.y3_c01133{bottom:1017.000000px;}
.y2_c01133{bottom:1056.000000px;}
.y1_c01133{bottom:1095.000000px;}
.y19_c01133{bottom:1194.000000px;}
.h7_c01133{height:27.480470px;}
.h8_c01133{height:41.220703px;}
.h6_c01133{height:44.208984px;}
.h1_c01133{height:51.257812px;}
.h4_c01133{height:51.785156px;}
.h5_c01133{height:56.074219px;}
.h3_c01133{height:56.100586px;}
.h2_c01133{height:57.258075px;}
.h0_c01133{height:1263.000000px;}
.w0_c01133{width:892.500000px;}
.x0_c01133{left:0.000000px;}
.x1_c01133{left:65.480310px;}
@media print{
.v2_c01133{vertical-align:-29.333333pt;}
.v0_c01133{vertical-align:0.000000pt;}
.v1_c01133{vertical-align:20.521067pt;}
.ls3_c01133{letter-spacing:-0.008533pt;}
.ls2_c01133{letter-spacing:0.000000pt;}
.ls1_c01133{letter-spacing:0.006400pt;}
.ls0_c01133{letter-spacing:0.006933pt;}
.ls4_c01133{letter-spacing:0.010667pt;}
.ls5_c01133{letter-spacing:1.834667pt;}
.ws0_c01133{word-spacing:-8.888889pt;}
.ws1_c01133{word-spacing:0.000000pt;}
._8_c01133{margin-left:-9.408000pt;}
._b_c01133{margin-left:-7.040000pt;}
._18_c01133{margin-left:-5.277157pt;}
._0_c01133{margin-left:-4.364800pt;}
._15_c01133{margin-left:-3.360000pt;}
._1_c01133{margin-left:-2.284800pt;}
._2_c01133{margin-left:-1.049600pt;}
._4_c01133{width:0.902400pt;}
._3_c01133{width:2.444800pt;}
._a_c01133{width:4.172800pt;}
._11_c01133{width:5.107200pt;}
._10_c01133{width:6.252800pt;}
._e_c01133{width:7.603200pt;}
._c_c01133{width:8.531200pt;}
._f_c01133{width:9.593600pt;}
._d_c01133{width:10.841600pt;}
._17_c01133{width:12.230400pt;}
._14_c01133{width:13.433600pt;}
._12_c01133{width:14.342400pt;}
._16_c01133{width:15.513600pt;}
._13_c01133{width:16.563200pt;}
._9_c01133{width:18.745600pt;}
._5_c01133{width:20.288000pt;}
._7_c01133{width:21.209600pt;}
._6_c01133{width:23.494400pt;}
.fs4_c01133{font-size:35.555557pt;}
.fs1_c01133{font-size:42.666667pt;}
.fs3_c01133{font-size:53.333333pt;}
.fs0_c01133{font-size:64.000000pt;}
.fs2_c01133{font-size:69.333333pt;}
.y0_c01133{bottom:0.000000pt;}
.y1a_c01133{bottom:60.000000pt;}
.y1c_c01133{bottom:117.333333pt;}
.y1b_c01133{bottom:142.000000pt;}
.y18_c01133{bottom:192.000000pt;}
.y17_c01133{bottom:216.000000pt;}
.y16_c01133{bottom:258.666667pt;}
.y15_c01133{bottom:282.666667pt;}
.y14_c01133{bottom:306.666667pt;}
.y13_c01133{bottom:330.666667pt;}
.y12_c01133{bottom:373.333333pt;}
.y11_c01133{bottom:397.333333pt;}
.y10_c01133{bottom:421.333333pt;}
.yf_c01133{bottom:462.666667pt;}
.ye_c01133{bottom:508.000000pt;}
.yd_c01133{bottom:570.666667pt;}
.yc_c01133{bottom:594.666667pt;}
.yb_c01133{bottom:618.666667pt;}
.ya_c01133{bottom:661.333333pt;}
.y9_c01133{bottom:696.000000pt;}
.y8_c01133{bottom:730.666667pt;}
.y7_c01133{bottom:765.333333pt;}
.y6_c01133{bottom:800.000000pt;}
.y5_c01133{bottom:834.666667pt;}
.y4_c01133{bottom:869.333333pt;}
.y3_c01133{bottom:904.000000pt;}
.y2_c01133{bottom:938.666667pt;}
.y1_c01133{bottom:973.333333pt;}
.y19_c01133{bottom:1061.333333pt;}
.h7_c01133{height:24.427085pt;}
.h8_c01133{height:36.640625pt;}
.h6_c01133{height:39.296875pt;}
.h1_c01133{height:45.562500pt;}
.h4_c01133{height:46.031250pt;}
.h5_c01133{height:49.843750pt;}
.h3_c01133{height:49.867188pt;}
.h2_c01133{height:50.896067pt;}
.h0_c01133{height:1122.666667pt;}
.w0_c01133{width:793.333333pt;}
.x0_c01133{left:0.000000pt;}
.x1_c01133{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9090b580aafee382884c01cc.woff2')format("woff");}.ff1_c01134{font-family:ff1_c01134;line-height:0.934082;font-style:normal;font-weight:normal;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_cb86f617b41fc63492508022.woff2')format("woff");}.ff2_c01134{font-family:ff2_c01134;line-height:1.155762;font-style:normal;font-weight:normal;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_2b4ba0be29cf6f88c513ac75.woff2')format("woff");}.ff3_c01134{font-family:ff3_c01134;line-height:1.114746;font-style:normal;font-weight:normal;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_aa1d80aa626fc06aa17571c1.woff2')format("woff");}.ff4_c01134{font-family:ff4_c01134;line-height:0.890137;font-style: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);}
.v3_c01134{vertical-align:-33.000000px;}
.v2_c01134{vertical-align:-23.086200px;}
.v0_c01134{vertical-align:0.000000px;}
.v1_c01134{vertical-align:23.086200px;}
.ls3_c01134{letter-spacing:-0.014400px;}
.ls2_c01134{letter-spacing:-0.009600px;}
.ls1_c01134{letter-spacing:0.000000px;}
.ls0_c01134{letter-spacing:0.012000px;}
.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;}
}
.ws2_c01134{word-spacing:-15.000000px;}
.ws0_c01134{word-spacing:-13.190400px;}
.ws1_c01134{word-spacing:-10.000001px;}
.ws3_c01134{word-spacing:0.000000px;}
._e_c01134{margin-left:-11.260800px;}
._19_c01134{margin-left:-7.243200px;}
._1a_c01134{margin-left:-5.553402px;}
._8_c01134{margin-left:-4.377600px;}
._0_c01134{margin-left:-3.261600px;}
._3_c01134{margin-left:-2.188800px;}
._10_c01134{margin-left:-1.130400px;}
._5_c01134{width:1.699200px;}
._2_c01134{width:2.901600px;}
._11_c01134{width:4.017600px;}
._4_c01134{width:5.018400px;}
._1_c01134{width:6.199200px;}
._d_c01134{width:7.344000px;}
._f_c01134{width:8.524800px;}
._b_c01134{width:9.540000px;}
._12_c01134{width:10.692000px;}
._c_c01134{width:11.692800px;}
._13_c01134{width:13.240800px;}
._14_c01134{width:14.320800px;}
._18_c01134{width:16.315800px;}
._15_c01134{width:17.820000px;}
._6_c01134{width:21.808800px;}
._7_c01134{width:23.875200px;}
._a_c01134{width:24.984000px;}
._9_c01134{width:26.150400px;}
._16_c01134{width:28.051200px;}
._17_c01134{width:29.203200px;}
.fc0_c01134{color:rgb(0,0,0);}
.fs3_c01134{font-size:40.000002px;}
.fs1_c01134{font-size:48.000000px;}
.fs2_c01134{font-size:60.000000px;}
.fs0_c01134{font-size:72.000000px;}
.y0_c01134{bottom:0.000000px;}
.y1a_c01134{bottom:67.500000px;}
.y20_c01134{bottom:140.250000px;}
.y1f_c01134{bottom:189.750000px;}
.y1e_c01134{bottom:231.000000px;}
.y1d_c01134{bottom:258.750000px;}
.y1c_c01134{bottom:308.250000px;}
.y1b_c01134{bottom:357.750000px;}
.y18_c01134{bottom:432.000000px;}
.y17_c01134{bottom:459.000000px;}
.y16_c01134{bottom:486.000000px;}
.y15_c01134{bottom:513.000000px;}
.y14_c01134{bottom:540.000000px;}
.y13_c01134{bottom:567.000000px;}
.y12_c01134{bottom:594.000000px;}
.y11_c01134{bottom:621.000000px;}
.y10_c01134{bottom:648.000000px;}
.yf_c01134{bottom:675.000000px;}
.ye_c01134{bottom:702.000000px;}
.yd_c01134{bottom:729.000000px;}
.yc_c01134{bottom:756.000000px;}
.yb_c01134{bottom:804.000000px;}
.ya_c01134{bottom:831.000000px;}
.y9_c01134{bottom:858.000000px;}
.y8_c01134{bottom:885.000000px;}
.y7_c01134{bottom:912.000000px;}
.y6_c01134{bottom:960.000000px;}
.y5_c01134{bottom:987.000000px;}
.y4_c01134{bottom:1014.000000px;}
.y3_c01134{bottom:1041.000000px;}
.y2_c01134{bottom:1068.000000px;}
.y1_c01134{bottom:1095.000000px;}
.y19_c01134{bottom:1194.000000px;}
.h4_c01134{height:35.878908px;}
.h1_c01134{height:51.257812px;}
.h5_c01134{height:53.818359px;}
.h3_c01134{height:56.074219px;}
.h2_c01134{height:57.258075px;}
.h0_c01134{height:1263.000000px;}
.w0_c01134{width:892.500000px;}
.x0_c01134{left:0.000000px;}
.x1_c01134{left:150.519750px;}
.x2_c01134{left:416.782800px;}
.x3_c01134{left:801.992850px;}
@media print{
.v3_c01134{vertical-align:-29.333333pt;}
.v2_c01134{vertical-align:-20.521067pt;}
.v0_c01134{vertical-align:0.000000pt;}
.v1_c01134{vertical-align:20.521067pt;}
.ls3_c01134{letter-spacing:-0.012800pt;}
.ls2_c01134{letter-spacing:-0.008533pt;}
.ls1_c01134{letter-spacing:0.000000pt;}
.ls0_c01134{letter-spacing:0.010667pt;}
.ws2_c01134{word-spacing:-13.333333pt;}
.ws0_c01134{word-spacing:-11.724800pt;}
.ws1_c01134{word-spacing:-8.888889pt;}
.ws3_c01134{word-spacing:0.000000pt;}
._e_c01134{margin-left:-10.009600pt;}
._19_c01134{margin-left:-6.438400pt;}
._1a_c01134{margin-left:-4.936357pt;}
._8_c01134{margin-left:-3.891200pt;}
._0_c01134{margin-left:-2.899200pt;}
._3_c01134{margin-left:-1.945600pt;}
._10_c01134{margin-left:-1.004800pt;}
._5_c01134{width:1.510400pt;}
._2_c01134{width:2.579200pt;}
._11_c01134{width:3.571200pt;}
._4_c01134{width:4.460800pt;}
._1_c01134{width:5.510400pt;}
._d_c01134{width:6.528000pt;}
._f_c01134{width:7.577600pt;}
._b_c01134{width:8.480000pt;}
._12_c01134{width:9.504000pt;}
._c_c01134{width:10.393600pt;}
._13_c01134{width:11.769600pt;}
._14_c01134{width:12.729600pt;}
._18_c01134{width:14.502933pt;}
._15_c01134{width:15.840000pt;}
._6_c01134{width:19.385600pt;}
._7_c01134{width:21.222400pt;}
._a_c01134{width:22.208000pt;}
._9_c01134{width:23.244800pt;}
._16_c01134{width:24.934400pt;}
._17_c01134{width:25.958400pt;}
.fs3_c01134{font-size:35.555557pt;}
.fs1_c01134{font-size:42.666667pt;}
.fs2_c01134{font-size:53.333333pt;}
.fs0_c01134{font-size:64.000000pt;}
.y0_c01134{bottom:0.000000pt;}
.y1a_c01134{bottom:60.000000pt;}
.y20_c01134{bottom:124.666667pt;}
.y1f_c01134{bottom:168.666667pt;}
.y1e_c01134{bottom:205.333333pt;}
.y1d_c01134{bottom:230.000000pt;}
.y1c_c01134{bottom:274.000000pt;}
.y1b_c01134{bottom:318.000000pt;}
.y18_c01134{bottom:384.000000pt;}
.y17_c01134{bottom:408.000000pt;}
.y16_c01134{bottom:432.000000pt;}
.y15_c01134{bottom:456.000000pt;}
.y14_c01134{bottom:480.000000pt;}
.y13_c01134{bottom:504.000000pt;}
.y12_c01134{bottom:528.000000pt;}
.y11_c01134{bottom:552.000000pt;}
.y10_c01134{bottom:576.000000pt;}
.yf_c01134{bottom:600.000000pt;}
.ye_c01134{bottom:624.000000pt;}
.yd_c01134{bottom:648.000000pt;}
.yc_c01134{bottom:672.000000pt;}
.yb_c01134{bottom:714.666667pt;}
.ya_c01134{bottom:738.666667pt;}
.y9_c01134{bottom:762.666667pt;}
.y8_c01134{bottom:786.666667pt;}
.y7_c01134{bottom:810.666667pt;}
.y6_c01134{bottom:853.333333pt;}
.y5_c01134{bottom:877.333333pt;}
.y4_c01134{bottom:901.333333pt;}
.y3_c01134{bottom:925.333333pt;}
.y2_c01134{bottom:949.333333pt;}
.y1_c01134{bottom:973.333333pt;}
.y19_c01134{bottom:1061.333333pt;}
.h4_c01134{height:31.892363pt;}
.h1_c01134{height:45.562500pt;}
.h5_c01134{height:47.838542pt;}
.h3_c01134{height:49.843750pt;}
.h2_c01134{height:50.896067pt;}
.h0_c01134{height:1122.666667pt;}
.w0_c01134{width:793.333333pt;}
.x0_c01134{left:0.000000pt;}
.x1_c01134{left:133.795333pt;}
.x2_c01134{left:370.473600pt;}
.x3_c01134{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ff4adf8e11060702451eada4.woff2')format("woff");}.ff1_c01135{font-family:ff1_c01135;line-height:0.987793;font-style:normal;font-weight:normal;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_7e0ce682749ebcf43c1361a5.woff2')format("woff");}.ff2_c01135{font-family:ff2_c01135;line-height:0.933105;font-style:normal;font-weight:normal;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_1b8548c0a10a543b88a151aa.woff2')format("woff");}.ff3_c01135{font-family:ff3_c01135;line-height:0.755859;font-style:normal;font-weight:normal;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_868242b845010c884e6bff49.woff2')format("woff");}.ff4_c01135{font-family:ff4_c01135;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01135;src:url('chunks/assets/font_3743c3442de83f5411948079.woff2')format("woff");}.ff5_c01135{font-family:ff5_c01135;line-height:0.904297;font-style:normal;font-weight: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_c01135;src:url('chunks/assets/font_125fcdd262706bb3ff2783b7.woff2')format("woff");}.ff6_c01135{font-family:ff6_c01135;line-height:0.890137;font-style: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);}
.m1_c01135{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c01135{vertical-align:-33.000000px;}
.v0_c01135{vertical-align:0.000000px;}
.v1_c01135{vertical-align:23.086200px;}
.ls4_c01135{letter-spacing:-2.682000px;}
.ls2_c01135{letter-spacing:-0.009600px;}
.ls0_c01135{letter-spacing:0.000000px;}
.ls3_c01135{letter-spacing:0.012000px;}
.ls1_c01135{letter-spacing:0.021600px;}
.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;}
}
.ws0_c01135{word-spacing:-13.190400px;}
.ws1_c01135{word-spacing:-10.000001px;}
.ws2_c01135{word-spacing:0.000000px;}
._16_c01135{margin-left:-6.028638px;}
._15_c01135{margin-left:-4.879200px;}
._9_c01135{margin-left:-3.196800px;}
._0_c01135{margin-left:-2.044800px;}
._14_c01135{margin-left:-1.002402px;}
._5_c01135{width:1.224000px;}
._7_c01135{width:2.498400px;}
._3_c01135{width:3.556800px;}
._b_c01135{width:4.557600px;}
._c_c01135{width:6.501600px;}
._4_c01135{width:7.567200px;}
._8_c01135{width:8.589600px;}
._6_c01135{width:9.820800px;}
._2_c01135{width:11.052000px;}
._12_c01135{width:12.067200px;}
._1_c01135{width:13.132800px;}
._a_c01135{width:14.328000px;}
._11_c01135{width:15.825600px;}
._13_c01135{width:17.380800px;}
._e_c01135{width:21.751200px;}
._10_c01135{width:24.487200px;}
._d_c01135{width:26.100000px;}
._f_c01135{width:28.562400px;}
.fc0_c01135{color:rgb(0,0,0);}
.fs4_c01135{font-size:40.000002px;}
.fs2_c01135{font-size:48.000000px;}
.fs0_c01135{font-size:54.000000px;}
.fs3_c01135{font-size:60.000000px;}
.fs1_c01135{font-size:72.000000px;}
.y0_c01135{bottom:0.000000px;}
.y3_c01135{bottom:10.500000px;}
.y2_c01135{bottom:28.500000px;}
.y12_c01135{bottom:67.500000px;}
.y16_c01135{bottom:132.000000px;}
.y15_c01135{bottom:159.750000px;}
.y14_c01135{bottom:201.000000px;}
.y13_c01135{bottom:228.750000px;}
.y10_c01135{bottom:289.500000px;}
.yf_c01135{bottom:316.500000px;}
.ye_c01135{bottom:343.500000px;}
.yd_c01135{bottom:370.500000px;}
.yc_c01135{bottom:418.500000px;}
.yb_c01135{bottom:445.500000px;}
.ya_c01135{bottom:472.500000px;}
.y9_c01135{bottom:499.500000px;}
.y8_c01135{bottom:526.500000px;}
.y7_c01135{bottom:553.500000px;}
.y6_c01135{bottom:580.500000px;}
.y5_c01135{bottom:607.500000px;}
.y4_c01135{bottom:634.500000px;}
.y1_c01135{bottom:679.500000px;}
.y11_c01135{bottom:1194.000000px;}
.h7_c01135{height:27.421876px;}
.h8_c01135{height:41.132812px;}
.h2_c01135{height:42.292969px;}
.h6_c01135{height:44.208984px;}
.h3_c01135{height:51.187500px;}
.h5_c01135{height:56.074219px;}
.h4_c01135{height:57.211200px;}
.h1_c01135{height:433.500000px;}
.h0_c01135{height:1263.000000px;}
.w1_c01135{width:676.500000px;}
.w0_c01135{width:892.500000px;}
.x0_c01135{left:0.000000px;}
.x2_c01135{left:30.376815px;}
.x1_c01135{left:66.000000px;}
.x3_c01135{left:100.473975px;}
@media print{
.v2_c01135{vertical-align:-29.333333pt;}
.v0_c01135{vertical-align:0.000000pt;}
.v1_c01135{vertical-align:20.521067pt;}
.ls4_c01135{letter-spacing:-2.384000pt;}
.ls2_c01135{letter-spacing:-0.008533pt;}
.ls0_c01135{letter-spacing:0.000000pt;}
.ls3_c01135{letter-spacing:0.010667pt;}
.ls1_c01135{letter-spacing:0.019200pt;}
.ws0_c01135{word-spacing:-11.724800pt;}
.ws1_c01135{word-spacing:-8.888889pt;}
.ws2_c01135{word-spacing:0.000000pt;}
._16_c01135{margin-left:-5.358789pt;}
._15_c01135{margin-left:-4.337067pt;}
._9_c01135{margin-left:-2.841600pt;}
._0_c01135{margin-left:-1.817600pt;}
._14_c01135{margin-left:-0.891024pt;}
._5_c01135{width:1.088000pt;}
._7_c01135{width:2.220800pt;}
._3_c01135{width:3.161600pt;}
._b_c01135{width:4.051200pt;}
._c_c01135{width:5.779200pt;}
._4_c01135{width:6.726400pt;}
._8_c01135{width:7.635200pt;}
._6_c01135{width:8.729600pt;}
._2_c01135{width:9.824000pt;}
._12_c01135{width:10.726400pt;}
._1_c01135{width:11.673600pt;}
._a_c01135{width:12.736000pt;}
._11_c01135{width:14.067200pt;}
._13_c01135{width:15.449600pt;}
._e_c01135{width:19.334400pt;}
._10_c01135{width:21.766400pt;}
._d_c01135{width:23.200000pt;}
._f_c01135{width:25.388800pt;}
.fs4_c01135{font-size:35.555557pt;}
.fs2_c01135{font-size:42.666667pt;}
.fs0_c01135{font-size:48.000000pt;}
.fs3_c01135{font-size:53.333333pt;}
.fs1_c01135{font-size:64.000000pt;}
.y0_c01135{bottom:0.000000pt;}
.y3_c01135{bottom:9.333333pt;}
.y2_c01135{bottom:25.333333pt;}
.y12_c01135{bottom:60.000000pt;}
.y16_c01135{bottom:117.333333pt;}
.y15_c01135{bottom:142.000000pt;}
.y14_c01135{bottom:178.666667pt;}
.y13_c01135{bottom:203.333333pt;}
.y10_c01135{bottom:257.333333pt;}
.yf_c01135{bottom:281.333333pt;}
.ye_c01135{bottom:305.333333pt;}
.yd_c01135{bottom:329.333333pt;}
.yc_c01135{bottom:372.000000pt;}
.yb_c01135{bottom:396.000000pt;}
.ya_c01135{bottom:420.000000pt;}
.y9_c01135{bottom:444.000000pt;}
.y8_c01135{bottom:468.000000pt;}
.y7_c01135{bottom:492.000000pt;}
.y6_c01135{bottom:516.000000pt;}
.y5_c01135{bottom:540.000000pt;}
.y4_c01135{bottom:564.000000pt;}
.y1_c01135{bottom:604.000000pt;}
.y11_c01135{bottom:1061.333333pt;}
.h7_c01135{height:24.375001pt;}
.h8_c01135{height:36.562500pt;}
.h2_c01135{height:37.593750pt;}
.h6_c01135{height:39.296875pt;}
.h3_c01135{height:45.500000pt;}
.h5_c01135{height:49.843750pt;}
.h4_c01135{height:50.854400pt;}
.h1_c01135{height:385.333333pt;}
.h0_c01135{height:1122.666667pt;}
.w1_c01135{width:601.333333pt;}
.w0_c01135{width:793.333333pt;}
.x0_c01135{left:0.000000pt;}
.x2_c01135{left:27.001613pt;}
.x1_c01135{left:58.666667pt;}
.x3_c01135{left:89.310200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_07cc666b9ee2d37a294598b4.woff2')format("woff");}.ff1_c01136{font-family:ff1_c01136;line-height:0.934082;font-style:normal;font-weight:normal;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_bfb0c32586b9d77fb96b1759.woff2')format("woff");}.ff2_c01136{font-family:ff2_c01136;line-height:0.936035;font-style:normal;font-weight:normal;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_42db20ee6a62435317f70d71.woff2')format("woff");}.ff3_c01136{font-family:ff3_c01136;line-height:1.155762;font-style:normal;font-weight:normal;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_a44af5f1edcd5bf68ec22600.woff2')format("woff");}.ff4_c01136{font-family:ff4_c01136;line-height:0.904785;font-style:normal;font-weight:normal;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_fba02589ae8d1e584e11c6fc.woff2')format("woff");}.ff5_c01136{font-family:ff5_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;}
.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);}
.v2_c01136{vertical-align:-33.000000px;}
.v0_c01136{vertical-align:0.000000px;}
.v1_c01136{vertical-align:23.086200px;}
.ls3_c01136{letter-spacing:-0.009600px;}
.ls2_c01136{letter-spacing:0.000000px;}
.ls0_c01136{letter-spacing:0.007200px;}
.ls1_c01136{letter-spacing:0.012000px;}
.ls4_c01136{letter-spacing:2.064000px;}
.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;}
}
.ws0_c01136{word-spacing:-13.190400px;}
.ws1_c01136{word-spacing:-10.000001px;}
.ws2_c01136{word-spacing:0.000000px;}
._11_c01136{margin-left:-6.868800px;}
._15_c01136{margin-left:-5.792802px;}
._9_c01136{margin-left:-4.226400px;}
._0_c01136{margin-left:-2.577600px;}
._5_c01136{margin-left:-1.195200px;}
._2_c01136{width:1.562400px;}
._4_c01136{width:2.577600px;}
._1_c01136{width:4.262400px;}
._3_c01136{width:5.760000px;}
._7_c01136{width:6.854400px;}
._6_c01136{width:8.308800px;}
._8_c01136{width:9.475200px;}
._10_c01136{width:10.512000px;}
._a_c01136{width:11.808000px;}
._d_c01136{width:13.651200px;}
._e_c01136{width:14.659200px;}
._b_c01136{width:16.207200px;}
._f_c01136{width:17.452800px;}
._c_c01136{width:18.727200px;}
._13_c01136{width:21.340800px;}
._14_c01136{width:22.356000px;}
._12_c01136{width:24.415200px;}
.fc0_c01136{color:rgb(0,0,0);}
.fs3_c01136{font-size:40.000002px;}
.fs1_c01136{font-size:48.000000px;}
.fs2_c01136{font-size:60.000000px;}
.fs0_c01136{font-size:72.000000px;}
.y0_c01136{bottom:0.000000px;}
.y1d_c01136{bottom:67.500000px;}
.y1f_c01136{bottom:132.000000px;}
.y1e_c01136{bottom:159.750000px;}
.y1b_c01136{bottom:226.500000px;}
.y1a_c01136{bottom:274.500000px;}
.y19_c01136{bottom:301.500000px;}
.y18_c01136{bottom:328.500000px;}
.y17_c01136{bottom:355.500000px;}
.y16_c01136{bottom:382.500000px;}
.y15_c01136{bottom:409.500000px;}
.y14_c01136{bottom:457.500000px;}
.y13_c01136{bottom:484.500000px;}
.y12_c01136{bottom:511.500000px;}
.y11_c01136{bottom:559.500000px;}
.y10_c01136{bottom:586.500000px;}
.yf_c01136{bottom:613.500000px;}
.ye_c01136{bottom:640.500000px;}
.yd_c01136{bottom:667.500000px;}
.yc_c01136{bottom:694.500000px;}
.yb_c01136{bottom:721.500000px;}
.ya_c01136{bottom:769.500000px;}
.y9_c01136{bottom:796.500000px;}
.y8_c01136{bottom:823.500000px;}
.y7_c01136{bottom:871.500000px;}
.y6_c01136{bottom:898.500000px;}
.y5_c01136{bottom:945.000000px;}
.y4_c01136{bottom:1014.000000px;}
.y3_c01136{bottom:1041.000000px;}
.y2_c01136{bottom:1068.000000px;}
.y1_c01136{bottom:1095.000000px;}
.y1c_c01136{bottom:1194.000000px;}
.h5_c01136{height:27.480470px;}
.h6_c01136{height:41.220703px;}
.h1_c01136{height:51.257812px;}
.h2_c01136{height:51.539062px;}
.h4_c01136{height:56.074219px;}
.h3_c01136{height:57.258075px;}
.h0_c01136{height:1263.000000px;}
.w0_c01136{width:892.500000px;}
.x0_c01136{left:0.000000px;}
.x1_c01136{left:150.519750px;}
.x2_c01136{left:416.782800px;}
.x3_c01136{left:801.992850px;}
@media print{
.v2_c01136{vertical-align:-29.333333pt;}
.v0_c01136{vertical-align:0.000000pt;}
.v1_c01136{vertical-align:20.521067pt;}
.ls3_c01136{letter-spacing:-0.008533pt;}
.ls2_c01136{letter-spacing:0.000000pt;}
.ls0_c01136{letter-spacing:0.006400pt;}
.ls1_c01136{letter-spacing:0.010667pt;}
.ls4_c01136{letter-spacing:1.834667pt;}
.ws0_c01136{word-spacing:-11.724800pt;}
.ws1_c01136{word-spacing:-8.888889pt;}
.ws2_c01136{word-spacing:0.000000pt;}
._11_c01136{margin-left:-6.105600pt;}
._15_c01136{margin-left:-5.149157pt;}
._9_c01136{margin-left:-3.756800pt;}
._0_c01136{margin-left:-2.291200pt;}
._5_c01136{margin-left:-1.062400pt;}
._2_c01136{width:1.388800pt;}
._4_c01136{width:2.291200pt;}
._1_c01136{width:3.788800pt;}
._3_c01136{width:5.120000pt;}
._7_c01136{width:6.092800pt;}
._6_c01136{width:7.385600pt;}
._8_c01136{width:8.422400pt;}
._10_c01136{width:9.344000pt;}
._a_c01136{width:10.496000pt;}
._d_c01136{width:12.134400pt;}
._e_c01136{width:13.030400pt;}
._b_c01136{width:14.406400pt;}
._f_c01136{width:15.513600pt;}
._c_c01136{width:16.646400pt;}
._13_c01136{width:18.969600pt;}
._14_c01136{width:19.872000pt;}
._12_c01136{width:21.702400pt;}
.fs3_c01136{font-size:35.555557pt;}
.fs1_c01136{font-size:42.666667pt;}
.fs2_c01136{font-size:53.333333pt;}
.fs0_c01136{font-size:64.000000pt;}
.y0_c01136{bottom:0.000000pt;}
.y1d_c01136{bottom:60.000000pt;}
.y1f_c01136{bottom:117.333333pt;}
.y1e_c01136{bottom:142.000000pt;}
.y1b_c01136{bottom:201.333333pt;}
.y1a_c01136{bottom:244.000000pt;}
.y19_c01136{bottom:268.000000pt;}
.y18_c01136{bottom:292.000000pt;}
.y17_c01136{bottom:316.000000pt;}
.y16_c01136{bottom:340.000000pt;}
.y15_c01136{bottom:364.000000pt;}
.y14_c01136{bottom:406.666667pt;}
.y13_c01136{bottom:430.666667pt;}
.y12_c01136{bottom:454.666667pt;}
.y11_c01136{bottom:497.333333pt;}
.y10_c01136{bottom:521.333333pt;}
.yf_c01136{bottom:545.333333pt;}
.ye_c01136{bottom:569.333333pt;}
.yd_c01136{bottom:593.333333pt;}
.yc_c01136{bottom:617.333333pt;}
.yb_c01136{bottom:641.333333pt;}
.ya_c01136{bottom:684.000000pt;}
.y9_c01136{bottom:708.000000pt;}
.y8_c01136{bottom:732.000000pt;}
.y7_c01136{bottom:774.666667pt;}
.y6_c01136{bottom:798.666667pt;}
.y5_c01136{bottom:840.000000pt;}
.y4_c01136{bottom:901.333333pt;}
.y3_c01136{bottom:925.333333pt;}
.y2_c01136{bottom:949.333333pt;}
.y1_c01136{bottom:973.333333pt;}
.y1c_c01136{bottom:1061.333333pt;}
.h5_c01136{height:24.427085pt;}
.h6_c01136{height:36.640625pt;}
.h1_c01136{height:45.562500pt;}
.h2_c01136{height:45.812500pt;}
.h4_c01136{height:49.843750pt;}
.h3_c01136{height:50.896067pt;}
.h0_c01136{height:1122.666667pt;}
.w0_c01136{width:793.333333pt;}
.x0_c01136{left:0.000000pt;}
.x1_c01136{left:133.795333pt;}
.x2_c01136{left:370.473600pt;}
.x3_c01136{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bbe67a41b320350d4713ff2a.woff2')format("woff");}.ff1_c01137{font-family:ff1_c01137;line-height:0.934082;font-style:normal;font-weight:normal;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_6d1b4d6f5e82a6455e6e4783.woff2')format("woff");}.ff2_c01137{font-family:ff2_c01137;line-height:0.755859;font-style:normal;font-weight:normal;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_36f3109a7b4b857d9f3b1ca5.woff2')format("woff");}.ff3_c01137{font-family:ff3_c01137;line-height:1.155762;font-style:normal;font-weight:normal;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_4d9833f00236a865a969c8d9.woff2')format("woff");}.ff4_c01137{font-family:ff4_c01137;line-height:0.904785;font-style:normal;font-weight:normal;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_a2026a34a85f1cd541738dc0.woff2')format("woff");}.ff5_c01137{font-family:ff5_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;}
.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);}
.v3_c01137{vertical-align:-33.000000px;}
.v2_c01137{vertical-align:-23.086200px;}
.v0_c01137{vertical-align:0.000000px;}
.v1_c01137{vertical-align:23.086200px;}
.ls1_c01137{letter-spacing:-0.009600px;}
.ls0_c01137{letter-spacing:0.000000px;}
.ls2_c01137{letter-spacing:0.012000px;}
.ls3_c01137{letter-spacing:2.064000px;}
.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;}
}
.ws0_c01137{word-spacing:-13.190400px;}
.ws1_c01137{word-spacing:-10.000001px;}
.ws2_c01137{word-spacing:0.000000px;}
._c_c01137{margin-left:-10.598400px;}
._b_c01137{margin-left:-7.329600px;}
._10_c01137{margin-left:-6.035202px;}
._3_c01137{margin-left:-4.154400px;}
._4_c01137{margin-left:-2.527200px;}
._1_c01137{margin-left:-1.022400px;}
._0_c01137{width:1.195200px;}
._8_c01137{width:2.476800px;}
._2_c01137{width:4.255200px;}
._f_c01137{width:6.436800px;}
._e_c01137{width:7.992000px;}
._d_c01137{width:9.475200px;}
._9_c01137{width:10.944000px;}
._5_c01137{width:13.406400px;}
._7_c01137{width:14.544000px;}
._6_c01137{width:15.962400px;}
._a_c01137{width:17.604000px;}
.fc0_c01137{color:rgb(0,0,0);}
.fs3_c01137{font-size:40.000002px;}
.fs1_c01137{font-size:48.000000px;}
.fs2_c01137{font-size:60.000000px;}
.fs0_c01137{font-size:72.000000px;}
.y0_c01137{bottom:0.000000px;}
.y14_c01137{bottom:67.500000px;}
.y16_c01137{bottom:132.000000px;}
.y15_c01137{bottom:159.750000px;}
.y12_c01137{bottom:405.000000px;}
.y11_c01137{bottom:453.000000px;}
.y10_c01137{bottom:480.000000px;}
.yf_c01137{bottom:507.000000px;}
.ye_c01137{bottom:555.000000px;}
.yd_c01137{bottom:594.000000px;}
.yc_c01137{bottom:633.000000px;}
.yb_c01137{bottom:672.000000px;}
.ya_c01137{bottom:711.000000px;}
.y9_c01137{bottom:789.000000px;}
.y8_c01137{bottom:828.000000px;}
.y7_c01137{bottom:867.000000px;}
.y6_c01137{bottom:894.000000px;}
.y5_c01137{bottom:933.000000px;}
.y4_c01137{bottom:972.000000px;}
.y3_c01137{bottom:1020.000000px;}
.y2_c01137{bottom:1068.000000px;}
.y1_c01137{bottom:1095.000000px;}
.y13_c01137{bottom:1194.000000px;}
.h5_c01137{height:27.480470px;}
.h6_c01137{height:41.220703px;}
.h4_c01137{height:44.208984px;}
.h1_c01137{height:51.257812px;}
.h3_c01137{height:56.074219px;}
.h2_c01137{height:57.258075px;}
.h0_c01137{height:1263.000000px;}
.w0_c01137{width:892.500000px;}
.x0_c01137{left:0.000000px;}
.x1_c01137{left:65.480310px;}
@media print{
.v3_c01137{vertical-align:-29.333333pt;}
.v2_c01137{vertical-align:-20.521067pt;}
.v0_c01137{vertical-align:0.000000pt;}
.v1_c01137{vertical-align:20.521067pt;}
.ls1_c01137{letter-spacing:-0.008533pt;}
.ls0_c01137{letter-spacing:0.000000pt;}
.ls2_c01137{letter-spacing:0.010667pt;}
.ls3_c01137{letter-spacing:1.834667pt;}
.ws0_c01137{word-spacing:-11.724800pt;}
.ws1_c01137{word-spacing:-8.888889pt;}
.ws2_c01137{word-spacing:0.000000pt;}
._c_c01137{margin-left:-9.420800pt;}
._b_c01137{margin-left:-6.515200pt;}
._10_c01137{margin-left:-5.364624pt;}
._3_c01137{margin-left:-3.692800pt;}
._4_c01137{margin-left:-2.246400pt;}
._1_c01137{margin-left:-0.908800pt;}
._0_c01137{width:1.062400pt;}
._8_c01137{width:2.201600pt;}
._2_c01137{width:3.782400pt;}
._f_c01137{width:5.721600pt;}
._e_c01137{width:7.104000pt;}
._d_c01137{width:8.422400pt;}
._9_c01137{width:9.728000pt;}
._5_c01137{width:11.916800pt;}
._7_c01137{width:12.928000pt;}
._6_c01137{width:14.188800pt;}
._a_c01137{width:15.648000pt;}
.fs3_c01137{font-size:35.555557pt;}
.fs1_c01137{font-size:42.666667pt;}
.fs2_c01137{font-size:53.333333pt;}
.fs0_c01137{font-size:64.000000pt;}
.y0_c01137{bottom:0.000000pt;}
.y14_c01137{bottom:60.000000pt;}
.y16_c01137{bottom:117.333333pt;}
.y15_c01137{bottom:142.000000pt;}
.y12_c01137{bottom:360.000000pt;}
.y11_c01137{bottom:402.666667pt;}
.y10_c01137{bottom:426.666667pt;}
.yf_c01137{bottom:450.666667pt;}
.ye_c01137{bottom:493.333333pt;}
.yd_c01137{bottom:528.000000pt;}
.yc_c01137{bottom:562.666667pt;}
.yb_c01137{bottom:597.333333pt;}
.ya_c01137{bottom:632.000000pt;}
.y9_c01137{bottom:701.333333pt;}
.y8_c01137{bottom:736.000000pt;}
.y7_c01137{bottom:770.666667pt;}
.y6_c01137{bottom:794.666667pt;}
.y5_c01137{bottom:829.333333pt;}
.y4_c01137{bottom:864.000000pt;}
.y3_c01137{bottom:906.666667pt;}
.y2_c01137{bottom:949.333333pt;}
.y1_c01137{bottom:973.333333pt;}
.y13_c01137{bottom:1061.333333pt;}
.h5_c01137{height:24.427085pt;}
.h6_c01137{height:36.640625pt;}
.h4_c01137{height:39.296875pt;}
.h1_c01137{height:45.562500pt;}
.h3_c01137{height:49.843750pt;}
.h2_c01137{height:50.896067pt;}
.h0_c01137{height:1122.666667pt;}
.w0_c01137{width:793.333333pt;}
.x0_c01137{left:0.000000pt;}
.x1_c01137{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_67c5ea102474fd24abed9dfa.woff2')format("woff");}.ff1_c01138{font-family:ff1_c01138;line-height:0.884766;font-style:normal;font-weight:normal;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_333b400448662930f9ec4f64.woff2')format("woff");}.ff2_c01138{font-family:ff2_c01138;line-height:1.163086;font-style:normal;font-weight:normal;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_c2524cb32a0096f1552a4926.woff2')format("woff");}.ff3_c01138{font-family:ff3_c01138;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01138;src:url('chunks/assets/font_2a531dcd36070870eaeba870.woff2')format("woff");}.ff4_c01138{font-family:ff4_c01138;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01138;src:url('chunks/assets/font_c44beedc37774c8d7dc4e2b4.woff2')format("woff");}.ff5_c01138{font-family:ff5_c01138;line-height:1.100098;font-style:normal;font-weight: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_c01138;src:url('chunks/assets/font_23bbce011a8b9aced195f981.woff2')format("woff");}.ff6_c01138{font-family:ff6_c01138;line-height:0.893555;font-style: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);}
.m1_c01138{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3_c01138{vertical-align:-33.000000px;}
.v2_c01138{vertical-align:-23.086200px;}
.v0_c01138{vertical-align:0.000000px;}
.v1_c01138{vertical-align:23.086200px;}
.ls6_c01138{letter-spacing:0.000000px;}
.ls0_c01138{letter-spacing:0.007800px;}
.ls4_c01138{letter-spacing:0.012000px;}
.ls1_c01138{letter-spacing:0.568200px;}
.ls5_c01138{letter-spacing:3.999999px;}
.ls2_c01138{letter-spacing:7.031400px;}
.ls3_c01138{letter-spacing:38.182200px;}
.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;}
}
.ws0_c01138{word-spacing:-19.800000px;}
.ws2_c01138{word-spacing:-13.200000px;}
.ws3_c01138{word-spacing:-10.000001px;}
.ws1_c01138{word-spacing:-0.072000px;}
.ws4_c01138{word-spacing:0.000000px;}
._7_c01138{margin-left:-10.975380px;}
._18_c01138{margin-left:-8.532000px;}
._11_c01138{margin-left:-7.250400px;}
._b_c01138{margin-left:-5.085780px;}
._8_c01138{margin-left:-3.638580px;}
._5_c01138{margin-left:-2.013420px;}
._9_c01138{margin-left:-1.008000px;}
._6_c01138{width:1.296000px;}
._0_c01138{width:2.325600px;}
._3_c01138{width:4.161600px;}
._a_c01138{width:6.184800px;}
._4_c01138{width:7.668000px;}
._1_c01138{width:9.633600px;}
._10_c01138{width:10.814400px;}
._2_c01138{width:12.031200px;}
._c_c01138{width:13.495380px;}
._f_c01138{width:14.805780px;}
._e_c01138{width:16.423200px;}
._d_c01138{width:18.429420px;}
._17_c01138{width:22.161600px;}
._13_c01138{width:25.048800px;}
._14_c01138{width:26.330400px;}
._12_c01138{width:28.286220px;}
._16_c01138{width:29.968980px;}
._15_c01138{width:31.401780px;}
.fc1_c01138{color:rgb(255,255,255);}
.fc0_c01138{color:rgb(0,0,0);}
.fs5_c01138{font-size:40.000002px;}
.fs2_c01138{font-size:48.000000px;}
.fs4_c01138{font-size:60.000000px;}
.fs1_c01138{font-size:72.000000px;}
.fs0_c01138{font-size:78.000000px;}
.fs3_c01138{font-size:96.000000px;}
.y0_c01138{bottom:0.000000px;}
.y18_c01138{bottom:67.500000px;}
.y1e_c01138{bottom:140.250000px;}
.y1d_c01138{bottom:189.750000px;}
.y1c_c01138{bottom:231.000000px;}
.y1b_c01138{bottom:258.750000px;}
.y1a_c01138{bottom:300.000000px;}
.y19_c01138{bottom:327.750000px;}
.y15_c01138{bottom:372.000000px;}
.y14_c01138{bottom:399.000000px;}
.y13_c01138{bottom:447.000000px;}
.y12_c01138{bottom:474.000000px;}
.y11_c01138{bottom:501.000000px;}
.y10_c01138{bottom:528.000000px;}
.yf_c01138{bottom:576.000000px;}
.ye_c01138{bottom:603.000000px;}
.yd_c01138{bottom:630.000000px;}
.yc_c01138{bottom:657.000000px;}
.yb_c01138{bottom:684.000000px;}
.ya_c01138{bottom:711.000000px;}
.y9_c01138{bottom:738.000000px;}
.y8_c01138{bottom:765.000000px;}
.y7_c01138{bottom:792.000000px;}
.y6_c01138{bottom:840.000000px;}
.y5_c01138{bottom:867.000000px;}
.y4_c01138{bottom:894.000000px;}
.y3_c01138{bottom:921.000000px;}
.y2_c01138{bottom:948.000000px;}
.y1_c01138{bottom:994.500000px;}
.y16_c01138{bottom:1066.500000px;}
.y17_c01138{bottom:1194.000000px;}
.h6_c01138{height:35.292971px;}
.h7_c01138{height:52.939453px;}
.h1_c01138{height:55.224609px;}
.h5_c01138{height:56.074219px;}
.h2_c01138{height:67.746094px;}
.h3_c01138{height:68.250262px;}
.h4_c01138{height:90.328125px;}
.h0_c01138{height:1263.000000px;}
.w0_c01138{width:892.500000px;}
.x0_c01138{left:0.000000px;}
.x1_c01138{left:134.787405px;}
.x2_c01138{left:163.798875px;}
.x3_c01138{left:416.782800px;}
.x4_c01138{left:801.992850px;}
@media print{
.v3_c01138{vertical-align:-29.333333pt;}
.v2_c01138{vertical-align:-20.521067pt;}
.v0_c01138{vertical-align:0.000000pt;}
.v1_c01138{vertical-align:20.521067pt;}
.ls6_c01138{letter-spacing:0.000000pt;}
.ls0_c01138{letter-spacing:0.006933pt;}
.ls4_c01138{letter-spacing:0.010667pt;}
.ls1_c01138{letter-spacing:0.505067pt;}
.ls5_c01138{letter-spacing:3.555555pt;}
.ls2_c01138{letter-spacing:6.250133pt;}
.ls3_c01138{letter-spacing:33.939733pt;}
.ws0_c01138{word-spacing:-17.600000pt;}
.ws2_c01138{word-spacing:-11.733333pt;}
.ws3_c01138{word-spacing:-8.888889pt;}
.ws1_c01138{word-spacing:-0.064000pt;}
.ws4_c01138{word-spacing:0.000000pt;}
._7_c01138{margin-left:-9.755893pt;}
._18_c01138{margin-left:-7.584000pt;}
._11_c01138{margin-left:-6.444800pt;}
._b_c01138{margin-left:-4.520693pt;}
._8_c01138{margin-left:-3.234293pt;}
._5_c01138{margin-left:-1.789707pt;}
._9_c01138{margin-left:-0.896000pt;}
._6_c01138{width:1.152000pt;}
._0_c01138{width:2.067200pt;}
._3_c01138{width:3.699200pt;}
._a_c01138{width:5.497600pt;}
._4_c01138{width:6.816000pt;}
._1_c01138{width:8.563200pt;}
._10_c01138{width:9.612800pt;}
._2_c01138{width:10.694400pt;}
._c_c01138{width:11.995893pt;}
._f_c01138{width:13.160693pt;}
._e_c01138{width:14.598400pt;}
._d_c01138{width:16.381707pt;}
._17_c01138{width:19.699200pt;}
._13_c01138{width:22.265600pt;}
._14_c01138{width:23.404800pt;}
._12_c01138{width:25.143307pt;}
._16_c01138{width:26.639093pt;}
._15_c01138{width:27.912693pt;}
.fs5_c01138{font-size:35.555557pt;}
.fs2_c01138{font-size:42.666667pt;}
.fs4_c01138{font-size:53.333333pt;}
.fs1_c01138{font-size:64.000000pt;}
.fs0_c01138{font-size:69.333333pt;}
.fs3_c01138{font-size:85.333333pt;}
.y0_c01138{bottom:0.000000pt;}
.y18_c01138{bottom:60.000000pt;}
.y1e_c01138{bottom:124.666667pt;}
.y1d_c01138{bottom:168.666667pt;}
.y1c_c01138{bottom:205.333333pt;}
.y1b_c01138{bottom:230.000000pt;}
.y1a_c01138{bottom:266.666667pt;}
.y19_c01138{bottom:291.333333pt;}
.y15_c01138{bottom:330.666667pt;}
.y14_c01138{bottom:354.666667pt;}
.y13_c01138{bottom:397.333333pt;}
.y12_c01138{bottom:421.333333pt;}
.y11_c01138{bottom:445.333333pt;}
.y10_c01138{bottom:469.333333pt;}
.yf_c01138{bottom:512.000000pt;}
.ye_c01138{bottom:536.000000pt;}
.yd_c01138{bottom:560.000000pt;}
.yc_c01138{bottom:584.000000pt;}
.yb_c01138{bottom:608.000000pt;}
.ya_c01138{bottom:632.000000pt;}
.y9_c01138{bottom:656.000000pt;}
.y8_c01138{bottom:680.000000pt;}
.y7_c01138{bottom:704.000000pt;}
.y6_c01138{bottom:746.666667pt;}
.y5_c01138{bottom:770.666667pt;}
.y4_c01138{bottom:794.666667pt;}
.y3_c01138{bottom:818.666667pt;}
.y2_c01138{bottom:842.666667pt;}
.y1_c01138{bottom:884.000000pt;}
.y16_c01138{bottom:948.000000pt;}
.y17_c01138{bottom:1061.333333pt;}
.h6_c01138{height:31.371529pt;}
.h7_c01138{height:47.057292pt;}
.h1_c01138{height:49.088542pt;}
.h5_c01138{height:49.843750pt;}
.h2_c01138{height:60.218750pt;}
.h3_c01138{height:60.666900pt;}
.h4_c01138{height:80.291667pt;}
.h0_c01138{height:1122.666667pt;}
.w0_c01138{width:793.333333pt;}
.x0_c01138{left:0.000000pt;}
.x1_c01138{left:119.811027pt;}
.x2_c01138{left:145.599000pt;}
.x3_c01138{left:370.473600pt;}
.x4_c01138{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eb7167c0b239946213468819.woff2')format("woff");}.ff1_c01139{font-family:ff1_c01139;line-height:0.939453;font-style:normal;font-weight:normal;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_cc578f48bc10e820887b18fa.woff2')format("woff");}.ff2_c01139{font-family:ff2_c01139;line-height:0.933105;font-style:normal;font-weight:normal;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_7ee736e80f5d0cf2b9180af4.woff2')format("woff");}.ff3_c01139{font-family:ff3_c01139;line-height:0.987793;font-style:normal;font-weight:normal;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_c95b6b5ee2bf1f87cdb5f0ba.woff2')format("woff");}.ff4_c01139{font-family:ff4_c01139;line-height:0.755859;font-style:normal;font-weight:normal;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_e4ee287c32cea01a2f99fd7b.woff2')format("woff");}.ff5_c01139{font-family:ff5_c01139;line-height:1.155762;font-style:normal;font-weight: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_c01139;src:url('chunks/assets/font_948e18054f89f45ccf85c733.woff2')format("woff");}.ff6_c01139{font-family:ff6_c01139;line-height:0.904785;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01139;src:url('chunks/assets/font_3395c2cc5e028f281eb55af5.woff2')format("woff");}.ff7_c01139{font-family:ff7_c01139;line-height:0.892578;font-style: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);}
.v2_c01139{vertical-align:-33.000000px;}
.v0_c01139{vertical-align:0.000000px;}
.v1_c01139{vertical-align:23.086200px;}
.ls1_c01139{letter-spacing:0.000000px;}
.ls0_c01139{letter-spacing:0.007800px;}
.ls3_c01139{letter-spacing:0.012000px;}
.ls2_c01139{letter-spacing:0.021600px;}
.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;}
}
.ws0_c01139{word-spacing:-19.800000px;}
.ws1_c01139{word-spacing:-13.200000px;}
.ws2_c01139{word-spacing:-10.000001px;}
.ws3_c01139{word-spacing:0.000000px;}
._3_c01139{margin-left:-10.533600px;}
._13_c01139{margin-left:-5.811621px;}
._d_c01139{margin-left:-4.341600px;}
._6_c01139{margin-left:-2.966400px;}
._4_c01139{margin-left:-1.101600px;}
._9_c01139{width:1.159200px;}
._0_c01139{width:2.325600px;}
._e_c01139{width:3.664800px;}
._8_c01139{width:4.780800px;}
._1_c01139{width:6.386400px;}
._a_c01139{width:7.452000px;}
._2_c01139{width:8.726400px;}
._5_c01139{width:9.900000px;}
._7_c01139{width:11.728800px;}
._b_c01139{width:13.190400px;}
._c_c01139{width:14.796000px;}
._12_c01139{width:21.492000px;}
._11_c01139{width:22.636800px;}
._10_c01139{width:23.652000px;}
._f_c01139{width:26.964000px;}
.fc0_c01139{color:rgb(0,0,0);}
.fs5_c01139{font-size:40.000002px;}
.fs3_c01139{font-size:48.000000px;}
.fs2_c01139{font-size:54.000000px;}
.fs4_c01139{font-size:60.000000px;}
.fs1_c01139{font-size:72.000000px;}
.fs0_c01139{font-size:78.000000px;}
.y0_c01139{bottom:0.000000px;}
.y7_c01139{bottom:12.000000px;}
.yf_c01139{bottom:67.500000px;}
.y10_c01139{bottom:140.250000px;}
.yd_c01139{bottom:180.000000px;}
.yc_c01139{bottom:480.000000px;}
.yb_c01139{bottom:507.000000px;}
.ya_c01139{bottom:534.000000px;}
.y9_c01139{bottom:561.000000px;}
.y8_c01139{bottom:588.000000px;}
.y6_c01139{bottom:633.000000px;}
.y5_c01139{bottom:966.000000px;}
.y4_c01139{bottom:993.000000px;}
.y3_c01139{bottom:1020.000000px;}
.y2_c01139{bottom:1047.000000px;}
.y1_c01139{bottom:1093.500000px;}
.ye_c01139{bottom:1194.000000px;}
.h9_c01139{height:27.480470px;}
.h4_c01139{height:42.292969px;}
.h8_c01139{height:44.208984px;}
.h2_c01139{height:51.187500px;}
.h7_c01139{height:56.074219px;}
.h1_c01139{height:56.100586px;}
.h5_c01139{height:57.211200px;}
.h6_c01139{height:268.500000px;}
.h3_c01139{height:301.500000px;}
.h0_c01139{height:1263.000000px;}
.w1_c01139{width:684.449850px;}
.w0_c01139{width:892.500000px;}
.x0_c01139{left:0.000000px;}
.x1_c01139{left:65.480310px;}
.x2_c01139{left:69.000000px;}
.x4_c01139{left:81.232635px;}
.x3_c01139{left:218.905650px;}
@media print{
.v2_c01139{vertical-align:-29.333333pt;}
.v0_c01139{vertical-align:0.000000pt;}
.v1_c01139{vertical-align:20.521067pt;}
.ls1_c01139{letter-spacing:0.000000pt;}
.ls0_c01139{letter-spacing:0.006933pt;}
.ls3_c01139{letter-spacing:0.010667pt;}
.ls2_c01139{letter-spacing:0.019200pt;}
.ws0_c01139{word-spacing:-17.600000pt;}
.ws1_c01139{word-spacing:-11.733333pt;}
.ws2_c01139{word-spacing:-8.888889pt;}
.ws3_c01139{word-spacing:0.000000pt;}
._3_c01139{margin-left:-9.363200pt;}
._13_c01139{margin-left:-5.165885pt;}
._d_c01139{margin-left:-3.859200pt;}
._6_c01139{margin-left:-2.636800pt;}
._4_c01139{margin-left:-0.979200pt;}
._9_c01139{width:1.030400pt;}
._0_c01139{width:2.067200pt;}
._e_c01139{width:3.257600pt;}
._8_c01139{width:4.249600pt;}
._1_c01139{width:5.676800pt;}
._a_c01139{width:6.624000pt;}
._2_c01139{width:7.756800pt;}
._5_c01139{width:8.800000pt;}
._7_c01139{width:10.425600pt;}
._b_c01139{width:11.724800pt;}
._c_c01139{width:13.152000pt;}
._12_c01139{width:19.104000pt;}
._11_c01139{width:20.121600pt;}
._10_c01139{width:21.024000pt;}
._f_c01139{width:23.968000pt;}
.fs5_c01139{font-size:35.555557pt;}
.fs3_c01139{font-size:42.666667pt;}
.fs2_c01139{font-size:48.000000pt;}
.fs4_c01139{font-size:53.333333pt;}
.fs1_c01139{font-size:64.000000pt;}
.fs0_c01139{font-size:69.333333pt;}
.y0_c01139{bottom:0.000000pt;}
.y7_c01139{bottom:10.666667pt;}
.yf_c01139{bottom:60.000000pt;}
.y10_c01139{bottom:124.666667pt;}
.yd_c01139{bottom:160.000000pt;}
.yc_c01139{bottom:426.666667pt;}
.yb_c01139{bottom:450.666667pt;}
.ya_c01139{bottom:474.666667pt;}
.y9_c01139{bottom:498.666667pt;}
.y8_c01139{bottom:522.666667pt;}
.y6_c01139{bottom:562.666667pt;}
.y5_c01139{bottom:858.666667pt;}
.y4_c01139{bottom:882.666667pt;}
.y3_c01139{bottom:906.666667pt;}
.y2_c01139{bottom:930.666667pt;}
.y1_c01139{bottom:972.000000pt;}
.ye_c01139{bottom:1061.333333pt;}
.h9_c01139{height:24.427085pt;}
.h4_c01139{height:37.593750pt;}
.h8_c01139{height:39.296875pt;}
.h2_c01139{height:45.500000pt;}
.h7_c01139{height:49.843750pt;}
.h1_c01139{height:49.867188pt;}
.h5_c01139{height:50.854400pt;}
.h6_c01139{height:238.666667pt;}
.h3_c01139{height:268.000000pt;}
.h0_c01139{height:1122.666667pt;}
.w1_c01139{width:608.399867pt;}
.w0_c01139{width:793.333333pt;}
.x0_c01139{left:0.000000pt;}
.x1_c01139{left:58.204720pt;}
.x2_c01139{left:61.333333pt;}
.x4_c01139{left:72.206787pt;}
.x3_c01139{left:194.582800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f24e8be2f7bd9b0f3322dcb2.woff2')format("woff");}.ff1_c01140{font-family:ff1_c01140;line-height:0.976074;font-style:normal;font-weight:normal;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_524b0e6ebcd8e9ef98d32437.woff2')format("woff");}.ff2_c01140{font-family:ff2_c01140;line-height:0.934082;font-style:normal;font-weight:normal;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_7fed3a304b6aacfee23eb60a.woff2')format("woff");}.ff3_c01140{font-family:ff3_c01140;line-height:1.155762;font-style:normal;font-weight:normal;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_654e24bdea0eaf4d01fbb7af.woff2')format("woff");}.ff4_c01140{font-family:ff4_c01140;line-height:0.901367;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01140;src:url('chunks/assets/font_bb030f1bb7b2e53d6b18c8b3.woff2')format("woff");}.ff5_c01140{font-family:ff5_c01140;line-height:0.889648;font-style: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);}
.m1_c01140{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3_c01140{vertical-align:-33.000000px;}
.v2_c01140{vertical-align:-23.086200px;}
.v0_c01140{vertical-align:0.000000px;}
.v1_c01140{vertical-align:23.086200px;}
.ls4_c01140{letter-spacing:0.000000px;}
.ls2_c01140{letter-spacing:0.012000px;}
.ls0_c01140{letter-spacing:0.016200px;}
.ls3_c01140{letter-spacing:0.021600px;}
.ls1_c01140{letter-spacing:1.372200px;}
.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;}
}
.ws0_c01140{word-spacing:-10.000001px;}
.ws1_c01140{word-spacing:0.000000px;}
._8_c01140{margin-left:-5.642421px;}
._6_c01140{margin-left:-3.880800px;}
._0_c01140{margin-left:-2.376000px;}
._3_c01140{margin-left:-1.274400px;}
._2_c01140{width:2.044800px;}
._1_c01140{width:4.104000px;}
._5_c01140{width:5.292000px;}
._4_c01140{width:7.682400px;}
._7_c01140{width:10.130400px;}
.fc0_c01140{color:rgb(0,0,0);}
.fs4_c01140{font-size:40.000002px;}
.fs2_c01140{font-size:48.000000px;}
.fs0_c01140{font-size:54.000000px;}
.fs3_c01140{font-size:60.000000px;}
.fs1_c01140{font-size:72.000000px;}
.y0_c01140{bottom:0.000000px;}
.y2_c01140{bottom:12.000000px;}
.y8_c01140{bottom:67.500000px;}
.y9_c01140{bottom:140.250000px;}
.y6_c01140{bottom:178.500000px;}
.y5_c01140{bottom:628.500000px;}
.y4_c01140{bottom:655.500000px;}
.y3_c01140{bottom:682.500000px;}
.y1_c01140{bottom:727.500000px;}
.y7_c01140{bottom:1194.000000px;}
.h7_c01140{height:27.343751px;}
.h2_c01140{height:42.292969px;}
.h3_c01140{height:51.257812px;}
.h6_c01140{height:56.074219px;}
.h4_c01140{height:57.258075px;}
.h1_c01140{height:385.500000px;}
.h5_c01140{height:418.500000px;}
.h0_c01140{height:1263.000000px;}
.w1_c01140{width:684.449850px;}
.w0_c01140{width:892.500000px;}
.x0_c01140{left:0.000000px;}
.x1_c01140{left:135.000000px;}
.x3_c01140{left:138.000000px;}
.x4_c01140{left:214.090350px;}
.x2_c01140{left:271.201650px;}
.x5_c01140{left:416.782800px;}
.x6_c01140{left:801.992850px;}
@media print{
.v3_c01140{vertical-align:-29.333333pt;}
.v2_c01140{vertical-align:-20.521067pt;}
.v0_c01140{vertical-align:0.000000pt;}
.v1_c01140{vertical-align:20.521067pt;}
.ls4_c01140{letter-spacing:0.000000pt;}
.ls2_c01140{letter-spacing:0.010667pt;}
.ls0_c01140{letter-spacing:0.014400pt;}
.ls3_c01140{letter-spacing:0.019200pt;}
.ls1_c01140{letter-spacing:1.219733pt;}
.ws0_c01140{word-spacing:-8.888889pt;}
.ws1_c01140{word-spacing:0.000000pt;}
._8_c01140{margin-left:-5.015485pt;}
._6_c01140{margin-left:-3.449600pt;}
._0_c01140{margin-left:-2.112000pt;}
._3_c01140{margin-left:-1.132800pt;}
._2_c01140{width:1.817600pt;}
._1_c01140{width:3.648000pt;}
._5_c01140{width:4.704000pt;}
._4_c01140{width:6.828800pt;}
._7_c01140{width:9.004800pt;}
.fs4_c01140{font-size:35.555557pt;}
.fs2_c01140{font-size:42.666667pt;}
.fs0_c01140{font-size:48.000000pt;}
.fs3_c01140{font-size:53.333333pt;}
.fs1_c01140{font-size:64.000000pt;}
.y0_c01140{bottom:0.000000pt;}
.y2_c01140{bottom:10.666667pt;}
.y8_c01140{bottom:60.000000pt;}
.y9_c01140{bottom:124.666667pt;}
.y6_c01140{bottom:158.666667pt;}
.y5_c01140{bottom:558.666667pt;}
.y4_c01140{bottom:582.666667pt;}
.y3_c01140{bottom:606.666667pt;}
.y1_c01140{bottom:646.666667pt;}
.y7_c01140{bottom:1061.333333pt;}
.h7_c01140{height:24.305557pt;}
.h2_c01140{height:37.593750pt;}
.h3_c01140{height:45.562500pt;}
.h6_c01140{height:49.843750pt;}
.h4_c01140{height:50.896067pt;}
.h1_c01140{height:342.666667pt;}
.h5_c01140{height:372.000000pt;}
.h0_c01140{height:1122.666667pt;}
.w1_c01140{width:608.399867pt;}
.w0_c01140{width:793.333333pt;}
.x0_c01140{left:0.000000pt;}
.x1_c01140{left:120.000000pt;}
.x3_c01140{left:122.666667pt;}
.x4_c01140{left:190.302533pt;}
.x2_c01140{left:241.068133pt;}
.x5_c01140{left:370.473600pt;}
.x6_c01140{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f5a1fde56ec8118534d929c9.woff2')format("woff");}.ff1_c01141{font-family:ff1_c01141;line-height:0.933105;font-style:normal;font-weight:normal;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_27538fa57c6b5e54bb9b71d5.woff2')format("woff");}.ff2_c01141{font-family:ff2_c01141;line-height:0.987793;font-style:normal;font-weight:normal;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_0a6d720a000b68b206851b53.woff2')format("woff");}.ff3_c01141{font-family:ff3_c01141;line-height:0.756836;font-style:normal;font-weight:normal;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_9891cc1045c054d4e873870b.woff2')format("woff");}.ff4_c01141{font-family:ff4_c01141;line-height:1.155762;font-style: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);}
.v0_c01141{vertical-align:0.000000px;}
.ls0_c01141{letter-spacing:0.000000px;}
.ls2_c01141{letter-spacing:0.012000px;}
.ls1_c01141{letter-spacing:0.021600px;}
.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;}
}
.ws0_c01141{word-spacing:0.000000px;}
._7_c01141{margin-left:-3.520800px;}
._1_c01141{margin-left:-1.260000px;}
._3_c01141{width:1.130400px;}
._5_c01141{width:2.887200px;}
._6_c01141{width:4.176000px;}
._4_c01141{width:5.968800px;}
._0_c01141{width:7.048800px;}
._2_c01141{width:8.416800px;}
._8_c01141{width:10.418400px;}
.fc0_c01141{color:rgb(0,0,0);}
.fs1_c01141{font-size:54.000000px;}
.fs2_c01141{font-size:60.000000px;}
.fs0_c01141{font-size:72.000000px;}
.y0_c01141{bottom:0.000000px;}
.y5_c01141{bottom:12.000000px;}
.yb_c01141{bottom:67.500000px;}
.y9_c01141{bottom:130.500000px;}
.y8_c01141{bottom:589.500000px;}
.y7_c01141{bottom:616.500000px;}
.y6_c01141{bottom:643.500000px;}
.y4_c01141{bottom:688.500000px;}
.y3_c01141{bottom:1041.000000px;}
.y2_c01141{bottom:1068.000000px;}
.y1_c01141{bottom:1095.000000px;}
.ya_c01141{bottom:1194.000000px;}
.h3_c01141{height:42.292969px;}
.h6_c01141{height:44.208984px;}
.h1_c01141{height:51.187500px;}
.h5_c01141{height:56.074219px;}
.h2_c01141{height:321.000000px;}
.h4_c01141{height:427.500000px;}
.h0_c01141{height:1263.000000px;}
.w1_c01141{width:684.449850px;}
.w0_c01141{width:892.500000px;}
.x0_c01141{left:0.000000px;}
.x1_c01141{left:65.480310px;}
.x2_c01141{left:69.000000px;}
.x4_c01141{left:227.946300px;}
.x3_c01141{left:239.666400px;}
@media print{
.v0_c01141{vertical-align:0.000000pt;}
.ls0_c01141{letter-spacing:0.000000pt;}
.ls2_c01141{letter-spacing:0.010667pt;}
.ls1_c01141{letter-spacing:0.019200pt;}
.ws0_c01141{word-spacing:0.000000pt;}
._7_c01141{margin-left:-3.129600pt;}
._1_c01141{margin-left:-1.120000pt;}
._3_c01141{width:1.004800pt;}
._5_c01141{width:2.566400pt;}
._6_c01141{width:3.712000pt;}
._4_c01141{width:5.305600pt;}
._0_c01141{width:6.265600pt;}
._2_c01141{width:7.481600pt;}
._8_c01141{width:9.260800pt;}
.fs1_c01141{font-size:48.000000pt;}
.fs2_c01141{font-size:53.333333pt;}
.fs0_c01141{font-size:64.000000pt;}
.y0_c01141{bottom:0.000000pt;}
.y5_c01141{bottom:10.666667pt;}
.yb_c01141{bottom:60.000000pt;}
.y9_c01141{bottom:116.000000pt;}
.y8_c01141{bottom:524.000000pt;}
.y7_c01141{bottom:548.000000pt;}
.y6_c01141{bottom:572.000000pt;}
.y4_c01141{bottom:612.000000pt;}
.y3_c01141{bottom:925.333333pt;}
.y2_c01141{bottom:949.333333pt;}
.y1_c01141{bottom:973.333333pt;}
.ya_c01141{bottom:1061.333333pt;}
.h3_c01141{height:37.593750pt;}
.h6_c01141{height:39.296875pt;}
.h1_c01141{height:45.500000pt;}
.h5_c01141{height:49.843750pt;}
.h2_c01141{height:285.333333pt;}
.h4_c01141{height:380.000000pt;}
.h0_c01141{height:1122.666667pt;}
.w1_c01141{width:608.399867pt;}
.w0_c01141{width:793.333333pt;}
.x0_c01141{left:0.000000pt;}
.x1_c01141{left:58.204720pt;}
.x2_c01141{left:61.333333pt;}
.x4_c01141{left:202.618933pt;}
.x3_c01141{left:213.036800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d8c268b94dcf4d73719c0ee3.woff2')format("woff");}.ff1_c01142{font-family:ff1_c01142;line-height:0.934082;font-style:normal;font-weight:normal;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_20a41f7499fec2c7327c5a43.woff2')format("woff");}.ff2_c01142{font-family:ff2_c01142;line-height:0.976074;font-style:normal;font-weight:normal;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_cb8fbb87c45150870898e052.woff2')format("woff");}.ff3_c01142{font-family:ff3_c01142;line-height:1.155762;font-style:normal;font-weight:normal;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_fd7934e5223883f9e85d08ad.woff2')format("woff");}.ff4_c01142{font-family:ff4_c01142;line-height:1.112305;font-style:normal;font-weight:normal;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_1047122c4422522eef2ec2fa.woff2')format("woff");}.ff5_c01142{font-family:ff5_c01142;line-height:0.889648;font-style: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);}
.v3_c01142{vertical-align:-33.000000px;}
.v2_c01142{vertical-align:-23.086200px;}
.v0_c01142{vertical-align:0.000000px;}
.v1_c01142{vertical-align:23.086200px;}
.ls4_c01142{letter-spacing:0.000000px;}
.ls2_c01142{letter-spacing:0.012000px;}
.ls1_c01142{letter-spacing:0.021600px;}
.ls3_c01142{letter-spacing:3.999999px;}
.ls0_c01142{letter-spacing:8.514600px;}
.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;}
}
.ws0_c01142{word-spacing:0.000000px;}
._6_c01142{margin-left:-8.330220px;}
._9_c01142{margin-left:-6.710400px;}
._c_c01142{margin-left:-4.094400px;}
._1_c01142{margin-left:-2.973600px;}
._4_c01142{margin-left:-1.144800px;}
._5_c01142{width:1.274400px;}
._0_c01142{width:2.995200px;}
._3_c01142{width:4.003200px;}
._2_c01142{width:5.594400px;}
._7_c01142{width:6.904800px;}
._8_c01142{width:8.460000px;}
._a_c01142{width:9.813600px;}
._b_c01142{width:11.059200px;}
.fc0_c01142{color:rgb(0,0,0);}
.fs4_c01142{font-size:40.000002px;}
.fs1_c01142{font-size:48.000000px;}
.fs2_c01142{font-size:54.000000px;}
.fs3_c01142{font-size:60.000000px;}
.fs0_c01142{font-size:72.000000px;}
.y0_c01142{bottom:0.000000px;}
.y8_c01142{bottom:12.000000px;}
.yb_c01142{bottom:67.500000px;}
.yd_c01142{bottom:132.000000px;}
.yc_c01142{bottom:159.750000px;}
.y9_c01142{bottom:196.500000px;}
.y7_c01142{bottom:583.500000px;}
.y6_c01142{bottom:939.000000px;}
.y5_c01142{bottom:966.000000px;}
.y4_c01142{bottom:993.000000px;}
.y3_c01142{bottom:1041.000000px;}
.y2_c01142{bottom:1068.000000px;}
.y1_c01142{bottom:1095.000000px;}
.ya_c01142{bottom:1194.000000px;}
.h7_c01142{height:35.781252px;}
.h4_c01142{height:42.292969px;}
.h1_c01142{height:51.257812px;}
.h8_c01142{height:53.671875px;}
.h6_c01142{height:56.074219px;}
.h2_c01142{height:57.258075px;}
.h3_c01142{height:324.000000px;}
.h5_c01142{height:358.500000px;}
.h0_c01142{height:1263.000000px;}
.w1_c01142{width:684.449850px;}
.w0_c01142{width:892.500000px;}
.x0_c01142{left:0.000000px;}
.x2_c01142{left:41.952120px;}
.x1_c01142{left:134.787405px;}
.x3_c01142{left:138.000000px;}
.x4_c01142{left:298.880550px;}
.x5_c01142{left:416.782800px;}
.x6_c01142{left:801.992850px;}
@media print{
.v3_c01142{vertical-align:-29.333333pt;}
.v2_c01142{vertical-align:-20.521067pt;}
.v0_c01142{vertical-align:0.000000pt;}
.v1_c01142{vertical-align:20.521067pt;}
.ls4_c01142{letter-spacing:0.000000pt;}
.ls2_c01142{letter-spacing:0.010667pt;}
.ls1_c01142{letter-spacing:0.019200pt;}
.ls3_c01142{letter-spacing:3.555555pt;}
.ls0_c01142{letter-spacing:7.568533pt;}
.ws0_c01142{word-spacing:0.000000pt;}
._6_c01142{margin-left:-7.404640pt;}
._9_c01142{margin-left:-5.964800pt;}
._c_c01142{margin-left:-3.639467pt;}
._1_c01142{margin-left:-2.643200pt;}
._4_c01142{margin-left:-1.017600pt;}
._5_c01142{width:1.132800pt;}
._0_c01142{width:2.662400pt;}
._3_c01142{width:3.558400pt;}
._2_c01142{width:4.972800pt;}
._7_c01142{width:6.137600pt;}
._8_c01142{width:7.520000pt;}
._a_c01142{width:8.723200pt;}
._b_c01142{width:9.830400pt;}
.fs4_c01142{font-size:35.555557pt;}
.fs1_c01142{font-size:42.666667pt;}
.fs2_c01142{font-size:48.000000pt;}
.fs3_c01142{font-size:53.333333pt;}
.fs0_c01142{font-size:64.000000pt;}
.y0_c01142{bottom:0.000000pt;}
.y8_c01142{bottom:10.666667pt;}
.yb_c01142{bottom:60.000000pt;}
.yd_c01142{bottom:117.333333pt;}
.yc_c01142{bottom:142.000000pt;}
.y9_c01142{bottom:174.666667pt;}
.y7_c01142{bottom:518.666667pt;}
.y6_c01142{bottom:834.666667pt;}
.y5_c01142{bottom:858.666667pt;}
.y4_c01142{bottom:882.666667pt;}
.y3_c01142{bottom:925.333333pt;}
.y2_c01142{bottom:949.333333pt;}
.y1_c01142{bottom:973.333333pt;}
.ya_c01142{bottom:1061.333333pt;}
.h7_c01142{height:31.805557pt;}
.h4_c01142{height:37.593750pt;}
.h1_c01142{height:45.562500pt;}
.h8_c01142{height:47.708333pt;}
.h6_c01142{height:49.843750pt;}
.h2_c01142{height:50.896067pt;}
.h3_c01142{height:288.000000pt;}
.h5_c01142{height:318.666667pt;}
.h0_c01142{height:1122.666667pt;}
.w1_c01142{width:608.399867pt;}
.w0_c01142{width:793.333333pt;}
.x0_c01142{left:0.000000pt;}
.x2_c01142{left:37.290773pt;}
.x1_c01142{left:119.811027pt;}
.x3_c01142{left:122.666667pt;}
.x4_c01142{left:265.671600pt;}
.x5_c01142{left:370.473600pt;}
.x6_c01142{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f16ba2c1100a53668029fb7d.woff2')format("woff");}.ff1_c01143{font-family:ff1_c01143;line-height:0.987793;font-style:normal;font-weight:normal;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_bf7d455f207a2e739ff30237.woff2')format("woff");}.ff2_c01143{font-family:ff2_c01143;line-height:0.933105;font-style:normal;font-weight:normal;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_6fee72c27fd44b3ae5a5dbd2.woff2')format("woff");}.ff3_c01143{font-family:ff3_c01143;line-height:0.755859;font-style:normal;font-weight:normal;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_1fe5c55afaa10acfb3af45cd.woff2')format("woff");}.ff4_c01143{font-family:ff4_c01143;line-height:1.155762;font-style: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;}
.ls0_c01143{letter-spacing:0.000000px;}
.ls1_c01143{letter-spacing:0.012000px;}
.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;}
}
.ws0_c01143{word-spacing:0.000000px;}
._5_c01143{margin-left:-3.715200px;}
._b_c01143{margin-left:-2.397600px;}
._1_c01143{margin-left:-1.260000px;}
._3_c01143{width:1.137600px;}
._2_c01143{width:2.937600px;}
._0_c01143{width:4.032000px;}
._4_c01143{width:5.299200px;}
._6_c01143{width:7.682400px;}
._8_c01143{width:9.813600px;}
._7_c01143{width:10.929600px;}
._a_c01143{width:12.556800px;}
._9_c01143{width:14.644800px;}
.fc0_c01143{color:rgb(0,0,0);}
.fs0_c01143{font-size:54.000000px;}
.fs2_c01143{font-size:60.000000px;}
.fs1_c01143{font-size:72.000000px;}
.y0_c01143{bottom:0.000000px;}
.y2_c01143{bottom:12.000000px;}
.ya_c01143{bottom:67.500000px;}
.y8_c01143{bottom:145.500000px;}
.y7_c01143{bottom:172.500000px;}
.y6_c01143{bottom:199.500000px;}
.y5_c01143{bottom:244.500000px;}
.y4_c01143{bottom:672.000000px;}
.y3_c01143{bottom:699.000000px;}
.y1_c01143{bottom:723.000000px;}
.y9_c01143{bottom:1194.000000px;}
.h2_c01143{height:42.292969px;}
.h6_c01143{height:44.208984px;}
.h3_c01143{height:51.187500px;}
.h5_c01143{height:56.074219px;}
.h1_c01143{height:390.000000px;}
.h4_c01143{height:396.000000px;}
.h0_c01143{height:1263.000000px;}
.w1_c01143{width:684.449850px;}
.w0_c01143{width:892.500000px;}
.x0_c01143{left:0.000000px;}
.x1_c01143{left:66.000000px;}
.x3_c01143{left:69.000000px;}
.x4_c01143{left:196.308900px;}
.x2_c01143{left:272.684850px;}
@media print{
.v0_c01143{vertical-align:0.000000pt;}
.ls0_c01143{letter-spacing:0.000000pt;}
.ls1_c01143{letter-spacing:0.010667pt;}
.ws0_c01143{word-spacing:0.000000pt;}
._5_c01143{margin-left:-3.302400pt;}
._b_c01143{margin-left:-2.131200pt;}
._1_c01143{margin-left:-1.120000pt;}
._3_c01143{width:1.011200pt;}
._2_c01143{width:2.611200pt;}
._0_c01143{width:3.584000pt;}
._4_c01143{width:4.710400pt;}
._6_c01143{width:6.828800pt;}
._8_c01143{width:8.723200pt;}
._7_c01143{width:9.715200pt;}
._a_c01143{width:11.161600pt;}
._9_c01143{width:13.017600pt;}
.fs0_c01143{font-size:48.000000pt;}
.fs2_c01143{font-size:53.333333pt;}
.fs1_c01143{font-size:64.000000pt;}
.y0_c01143{bottom:0.000000pt;}
.y2_c01143{bottom:10.666667pt;}
.ya_c01143{bottom:60.000000pt;}
.y8_c01143{bottom:129.333333pt;}
.y7_c01143{bottom:153.333333pt;}
.y6_c01143{bottom:177.333333pt;}
.y5_c01143{bottom:217.333333pt;}
.y4_c01143{bottom:597.333333pt;}
.y3_c01143{bottom:621.333333pt;}
.y1_c01143{bottom:642.666667pt;}
.y9_c01143{bottom:1061.333333pt;}
.h2_c01143{height:37.593750pt;}
.h6_c01143{height:39.296875pt;}
.h3_c01143{height:45.500000pt;}
.h5_c01143{height:49.843750pt;}
.h1_c01143{height:346.666667pt;}
.h4_c01143{height:352.000000pt;}
.h0_c01143{height:1122.666667pt;}
.w1_c01143{width:608.399867pt;}
.w0_c01143{width:793.333333pt;}
.x0_c01143{left:0.000000pt;}
.x1_c01143{left:58.666667pt;}
.x3_c01143{left:61.333333pt;}
.x4_c01143{left:174.496800pt;}
.x2_c01143{left:242.386533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_49f47a3ea513f3b9fdaf3ceb.woff2')format("woff");}.ff1_c01144{font-family:ff1_c01144;line-height:0.934082;font-style:normal;font-weight:normal;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_a6881b45826bb36fd020c5d7.woff2')format("woff");}.ff2_c01144{font-family:ff2_c01144;line-height:0.975586;font-style:normal;font-weight:normal;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_313c38141a18e19035149425.woff2')format("woff");}.ff3_c01144{font-family:ff3_c01144;line-height:0.932129;font-style:normal;font-weight:normal;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_5437c498a7fa430f5c0e8f8f.woff2')format("woff");}.ff4_c01144{font-family:ff4_c01144;line-height:1.009766;font-style:normal;font-weight:normal;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_5a27777304d3768f1db29075.woff2')format("woff");}.ff5_c01144{font-family:ff5_c01144;line-height:1.155762;font-style: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);}
.v0_c01144{vertical-align:0.000000px;}
.ls2_c01144{letter-spacing:0.000000px;}
.ls0_c01144{letter-spacing:0.006000px;}
.ls1_c01144{letter-spacing:0.012000px;}
.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;}
}
.ws0_c01144{word-spacing:-19.800000px;}
.ws1_c01144{word-spacing:0.000000px;}
._9_c01144{margin-left:-4.514400px;}
._5_c01144{margin-left:-2.995200px;}
._4_c01144{margin-left:-1.267200px;}
._1_c01144{width:1.072800px;}
._2_c01144{width:2.174400px;}
._0_c01144{width:3.232800px;}
._3_c01144{width:4.752000px;}
._6_c01144{width:6.436800px;}
._f_c01144{width:7.776000px;}
._d_c01144{width:9.885600px;}
._e_c01144{width:11.174400px;}
._10_c01144{width:12.600000px;}
._c_c01144{width:24.040800px;}
._7_c01144{width:26.589600px;}
._8_c01144{width:27.756000px;}
._b_c01144{width:29.664000px;}
._a_c01144{width:32.378400px;}
.fc0_c01144{color:rgb(0,0,0);}
.fs1_c01144{font-size:54.000000px;}
.fs2_c01144{font-size:60.000000px;}
.fs0_c01144{font-size:72.000000px;}
.y0_c01144{bottom:0.000000px;}
.y7_c01144{bottom:12.000000px;}
.y10_c01144{bottom:67.500000px;}
.ye_c01144{bottom:151.500000px;}
.yd_c01144{bottom:172.500000px;}
.yc_c01144{bottom:217.500000px;}
.yb_c01144{bottom:238.500000px;}
.ya_c01144{bottom:273.000000px;}
.y9_c01144{bottom:312.000000px;}
.y8_c01144{bottom:390.000000px;}
.y6_c01144{bottom:474.000000px;}
.y5_c01144{bottom:987.000000px;}
.y4_c01144{bottom:1014.000000px;}
.y3_c01144{bottom:1041.000000px;}
.y2_c01144{bottom:1068.000000px;}
.y1_c01144{bottom:1095.000000px;}
.yf_c01144{bottom:1194.000000px;}
.h3_c01144{height:41.633789px;}
.h4_c01144{height:42.714844px;}
.h1_c01144{height:51.257812px;}
.h5_c01144{height:52.382812px;}
.h6_c01144{height:56.074219px;}
.h2_c01144{height:481.500000px;}
.h0_c01144{height:1263.000000px;}
.w1_c01144{width:684.449850px;}
.w0_c01144{width:892.500000px;}
.x0_c01144{left:0.000000px;}
.x1_c01144{left:134.787405px;}
.x2_c01144{left:163.092900px;}
.x3_c01144{left:416.782800px;}
.x4_c01144{left:801.992850px;}
@media print{
.v0_c01144{vertical-align:0.000000pt;}
.ls2_c01144{letter-spacing:0.000000pt;}
.ls0_c01144{letter-spacing:0.005333pt;}
.ls1_c01144{letter-spacing:0.010667pt;}
.ws0_c01144{word-spacing:-17.600000pt;}
.ws1_c01144{word-spacing:0.000000pt;}
._9_c01144{margin-left:-4.012800pt;}
._5_c01144{margin-left:-2.662400pt;}
._4_c01144{margin-left:-1.126400pt;}
._1_c01144{width:0.953600pt;}
._2_c01144{width:1.932800pt;}
._0_c01144{width:2.873600pt;}
._3_c01144{width:4.224000pt;}
._6_c01144{width:5.721600pt;}
._f_c01144{width:6.912000pt;}
._d_c01144{width:8.787200pt;}
._e_c01144{width:9.932800pt;}
._10_c01144{width:11.200000pt;}
._c_c01144{width:21.369600pt;}
._7_c01144{width:23.635200pt;}
._8_c01144{width:24.672000pt;}
._b_c01144{width:26.368000pt;}
._a_c01144{width:28.780800pt;}
.fs1_c01144{font-size:48.000000pt;}
.fs2_c01144{font-size:53.333333pt;}
.fs0_c01144{font-size:64.000000pt;}
.y0_c01144{bottom:0.000000pt;}
.y7_c01144{bottom:10.666667pt;}
.y10_c01144{bottom:60.000000pt;}
.ye_c01144{bottom:134.666667pt;}
.yd_c01144{bottom:153.333333pt;}
.yc_c01144{bottom:193.333333pt;}
.yb_c01144{bottom:212.000000pt;}
.ya_c01144{bottom:242.666667pt;}
.y9_c01144{bottom:277.333333pt;}
.y8_c01144{bottom:346.666667pt;}
.y6_c01144{bottom:421.333333pt;}
.y5_c01144{bottom:877.333333pt;}
.y4_c01144{bottom:901.333333pt;}
.y3_c01144{bottom:925.333333pt;}
.y2_c01144{bottom:949.333333pt;}
.y1_c01144{bottom:973.333333pt;}
.yf_c01144{bottom:1061.333333pt;}
.h3_c01144{height:37.007812pt;}
.h4_c01144{height:37.968750pt;}
.h1_c01144{height:45.562500pt;}
.h5_c01144{height:46.562500pt;}
.h6_c01144{height:49.843750pt;}
.h2_c01144{height:428.000000pt;}
.h0_c01144{height:1122.666667pt;}
.w1_c01144{width:608.399867pt;}
.w0_c01144{width:793.333333pt;}
.x0_c01144{left:0.000000pt;}
.x1_c01144{left:119.811027pt;}
.x2_c01144{left:144.971467pt;}
.x3_c01144{left:370.473600pt;}
.x4_c01144{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_98e68bd6cf8ed4849247d7b9.woff2')format("woff");}.ff1_c01145{font-family:ff1_c01145;line-height:1.010254;font-style:normal;font-weight:normal;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_4d121e9ee77404222d20f3eb.woff2')format("woff");}.ff2_c01145{font-family:ff2_c01145;line-height:0.755859;font-style:normal;font-weight:normal;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_d508ee9f0c6d5d34fdea4e31.woff2')format("woff");}.ff3_c01145{font-family:ff3_c01145;line-height:1.155762;font-style: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);}
.v0_c01145{vertical-align:0.000000px;}
.ls2_c01145{letter-spacing:0.000000px;}
.ls3_c01145{letter-spacing:0.012000px;}
.ls0_c01145{letter-spacing:1.368000px;}
.ls1_c01145{letter-spacing:2.145600px;}
.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;}
}
.ws0_c01145{word-spacing:0.000000px;}
._9_c01145{margin-left:-7.970400px;}
._e_c01145{margin-left:-6.602400px;}
._15_c01145{margin-left:-4.752000px;}
._a_c01145{margin-left:-3.715200px;}
._2_c01145{margin-left:-2.448000px;}
._5_c01145{margin-left:-1.188000px;}
._0_c01145{width:1.512000px;}
._1_c01145{width:3.096000px;}
._3_c01145{width:4.096800px;}
._11_c01145{width:6.040800px;}
._12_c01145{width:7.704000px;}
._f_c01145{width:9.194400px;}
._10_c01145{width:10.404000px;}
._13_c01145{width:11.714400px;}
._14_c01145{width:12.909600px;}
._1a_c01145{width:14.608800px;}
._d_c01145{width:16.164000px;}
._c_c01145{width:19.670400px;}
._7_c01145{width:21.441600px;}
._b_c01145{width:22.680000px;}
._4_c01145{width:24.544800px;}
._6_c01145{width:25.732800px;}
._8_c01145{width:26.870400px;}
._17_c01145{width:27.900000px;}
._16_c01145{width:29.476800px;}
._1b_c01145{width:30.715200px;}
._18_c01145{width:31.831200px;}
._19_c01145{width:33.213600px;}
._1c_c01145{width:35.100000px;}
._1d_c01145{width:36.360000px;}
._1e_c01145{width:37.512000px;}
.fc0_c01145{color:rgb(0,0,0);}
.fs1_c01145{font-size:60.000000px;}
.fs0_c01145{font-size:72.000000px;}
.y0_c01145{bottom:0.000000px;}
.y30_c01145{bottom:67.500000px;}
.y2e_c01145{bottom:151.500000px;}
.y2d_c01145{bottom:172.500000px;}
.y2c_c01145{bottom:193.500000px;}
.y2b_c01145{bottom:214.500000px;}
.y2a_c01145{bottom:235.500000px;}
.y29_c01145{bottom:256.500000px;}
.y28_c01145{bottom:277.500000px;}
.y27_c01145{bottom:298.500000px;}
.y26_c01145{bottom:319.500000px;}
.y25_c01145{bottom:340.500000px;}
.y24_c01145{bottom:361.500000px;}
.y23_c01145{bottom:382.500000px;}
.y22_c01145{bottom:403.500000px;}
.y21_c01145{bottom:424.500000px;}
.y20_c01145{bottom:445.500000px;}
.y1f_c01145{bottom:466.500000px;}
.y1e_c01145{bottom:487.500000px;}
.y1d_c01145{bottom:508.500000px;}
.y1c_c01145{bottom:529.500000px;}
.y1b_c01145{bottom:550.500000px;}
.y1a_c01145{bottom:571.500000px;}
.y19_c01145{bottom:592.500000px;}
.y18_c01145{bottom:613.500000px;}
.y17_c01145{bottom:634.500000px;}
.y16_c01145{bottom:655.500000px;}
.y15_c01145{bottom:676.500000px;}
.y14_c01145{bottom:697.500000px;}
.y13_c01145{bottom:718.500000px;}
.y12_c01145{bottom:739.500000px;}
.y11_c01145{bottom:760.500000px;}
.y10_c01145{bottom:781.500000px;}
.yf_c01145{bottom:802.500000px;}
.ye_c01145{bottom:823.500000px;}
.yd_c01145{bottom:844.500000px;}
.yc_c01145{bottom:865.500000px;}
.yb_c01145{bottom:886.500000px;}
.ya_c01145{bottom:907.500000px;}
.y9_c01145{bottom:928.500000px;}
.y8_c01145{bottom:949.500000px;}
.y7_c01145{bottom:970.500000px;}
.y6_c01145{bottom:991.500000px;}
.y5_c01145{bottom:1012.500000px;}
.y4_c01145{bottom:1033.500000px;}
.y3_c01145{bottom:1054.500000px;}
.y2_c01145{bottom:1075.500000px;}
.y1_c01145{bottom:1096.500000px;}
.y2f_c01145{bottom:1194.000000px;}
.h3_c01145{height:44.208984px;}
.h1_c01145{height:52.417969px;}
.h2_c01145{height:56.074219px;}
.h0_c01145{height:1263.000000px;}
.w0_c01145{width:892.500000px;}
.x0_c01145{left:0.000000px;}
.x1_c01145{left:65.480310px;}
@media print{
.v0_c01145{vertical-align:0.000000pt;}
.ls2_c01145{letter-spacing:0.000000pt;}
.ls3_c01145{letter-spacing:0.010667pt;}
.ls0_c01145{letter-spacing:1.216000pt;}
.ls1_c01145{letter-spacing:1.907200pt;}
.ws0_c01145{word-spacing:0.000000pt;}
._9_c01145{margin-left:-7.084800pt;}
._e_c01145{margin-left:-5.868800pt;}
._15_c01145{margin-left:-4.224000pt;}
._a_c01145{margin-left:-3.302400pt;}
._2_c01145{margin-left:-2.176000pt;}
._5_c01145{margin-left:-1.056000pt;}
._0_c01145{width:1.344000pt;}
._1_c01145{width:2.752000pt;}
._3_c01145{width:3.641600pt;}
._11_c01145{width:5.369600pt;}
._12_c01145{width:6.848000pt;}
._f_c01145{width:8.172800pt;}
._10_c01145{width:9.248000pt;}
._13_c01145{width:10.412800pt;}
._14_c01145{width:11.475200pt;}
._1a_c01145{width:12.985600pt;}
._d_c01145{width:14.368000pt;}
._c_c01145{width:17.484800pt;}
._7_c01145{width:19.059200pt;}
._b_c01145{width:20.160000pt;}
._4_c01145{width:21.817600pt;}
._6_c01145{width:22.873600pt;}
._8_c01145{width:23.884800pt;}
._17_c01145{width:24.800000pt;}
._16_c01145{width:26.201600pt;}
._1b_c01145{width:27.302400pt;}
._18_c01145{width:28.294400pt;}
._19_c01145{width:29.523200pt;}
._1c_c01145{width:31.200000pt;}
._1d_c01145{width:32.320000pt;}
._1e_c01145{width:33.344000pt;}
.fs1_c01145{font-size:53.333333pt;}
.fs0_c01145{font-size:64.000000pt;}
.y0_c01145{bottom:0.000000pt;}
.y30_c01145{bottom:60.000000pt;}
.y2e_c01145{bottom:134.666667pt;}
.y2d_c01145{bottom:153.333333pt;}
.y2c_c01145{bottom:172.000000pt;}
.y2b_c01145{bottom:190.666667pt;}
.y2a_c01145{bottom:209.333333pt;}
.y29_c01145{bottom:228.000000pt;}
.y28_c01145{bottom:246.666667pt;}
.y27_c01145{bottom:265.333333pt;}
.y26_c01145{bottom:284.000000pt;}
.y25_c01145{bottom:302.666667pt;}
.y24_c01145{bottom:321.333333pt;}
.y23_c01145{bottom:340.000000pt;}
.y22_c01145{bottom:358.666667pt;}
.y21_c01145{bottom:377.333333pt;}
.y20_c01145{bottom:396.000000pt;}
.y1f_c01145{bottom:414.666667pt;}
.y1e_c01145{bottom:433.333333pt;}
.y1d_c01145{bottom:452.000000pt;}
.y1c_c01145{bottom:470.666667pt;}
.y1b_c01145{bottom:489.333333pt;}
.y1a_c01145{bottom:508.000000pt;}
.y19_c01145{bottom:526.666667pt;}
.y18_c01145{bottom:545.333333pt;}
.y17_c01145{bottom:564.000000pt;}
.y16_c01145{bottom:582.666667pt;}
.y15_c01145{bottom:601.333333pt;}
.y14_c01145{bottom:620.000000pt;}
.y13_c01145{bottom:638.666667pt;}
.y12_c01145{bottom:657.333333pt;}
.y11_c01145{bottom:676.000000pt;}
.y10_c01145{bottom:694.666667pt;}
.yf_c01145{bottom:713.333333pt;}
.ye_c01145{bottom:732.000000pt;}
.yd_c01145{bottom:750.666667pt;}
.yc_c01145{bottom:769.333333pt;}
.yb_c01145{bottom:788.000000pt;}
.ya_c01145{bottom:806.666667pt;}
.y9_c01145{bottom:825.333333pt;}
.y8_c01145{bottom:844.000000pt;}
.y7_c01145{bottom:862.666667pt;}
.y6_c01145{bottom:881.333333pt;}
.y5_c01145{bottom:900.000000pt;}
.y4_c01145{bottom:918.666667pt;}
.y3_c01145{bottom:937.333333pt;}
.y2_c01145{bottom:956.000000pt;}
.y1_c01145{bottom:974.666667pt;}
.y2f_c01145{bottom:1061.333333pt;}
.h3_c01145{height:39.296875pt;}
.h1_c01145{height:46.593750pt;}
.h2_c01145{height:49.843750pt;}
.h0_c01145{height:1122.666667pt;}
.w0_c01145{width:793.333333pt;}
.x0_c01145{left:0.000000pt;}
.x1_c01145{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d0d3bbd421c818dae6b3c4d4.woff2')format("woff");}.ff1_c01146{font-family:ff1_c01146;line-height:1.010254;font-style:normal;font-weight:normal;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_d2d0f4fd8fb9e0ff9382f5c4.woff2')format("woff");}.ff2_c01146{font-family:ff2_c01146;line-height:0.986816;font-style:normal;font-weight:normal;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_b030f4acd875fab658b8d336.woff2')format("woff");}.ff3_c01146{font-family:ff3_c01146;line-height:1.155762;font-style: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;}
.ls1_c01146{letter-spacing:0.000000px;}
.ls0_c01146{letter-spacing:0.012000px;}
.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;}
}
.ws0_c01146{word-spacing:-0.072000px;}
.ws1_c01146{word-spacing:0.000000px;}
._15_c01146{margin-left:-7.970400px;}
._13_c01146{margin-left:-5.781600px;}
._4_c01146{margin-left:-4.262400px;}
._8_c01146{margin-left:-2.678400px;}
._0_c01146{margin-left:-1.375200px;}
._2_c01146{width:1.368000px;}
._3_c01146{width:3.067200px;}
._1_c01146{width:4.960800px;}
._a_c01146{width:6.796800px;}
._5_c01146{width:8.049600px;}
._f_c01146{width:9.244800px;}
._d_c01146{width:11.181600px;}
._10_c01146{width:12.751200px;}
._e_c01146{width:13.874400px;}
._7_c01146{width:15.472800px;}
._16_c01146{width:16.876800px;}
._6_c01146{width:19.036800px;}
._c_c01146{width:20.059200px;}
._9_c01146{width:21.304800px;}
._b_c01146{width:23.292000px;}
._11_c01146{width:24.732000px;}
._12_c01146{width:26.560800px;}
._17_c01146{width:28.044000px;}
._14_c01146{width:30.952800px;}
.fc0_c01146{color:rgb(0,0,0);}
.fs1_c01146{font-size:60.000000px;}
.fs0_c01146{font-size:72.000000px;}
.y0_c01146{bottom:0.000000px;}
.y28_c01146{bottom:67.500000px;}
.y26_c01146{bottom:277.500000px;}
.y25_c01146{bottom:298.500000px;}
.y24_c01146{bottom:319.500000px;}
.y23_c01146{bottom:340.500000px;}
.y22_c01146{bottom:361.500000px;}
.y21_c01146{bottom:382.500000px;}
.y20_c01146{bottom:403.500000px;}
.y1f_c01146{bottom:424.500000px;}
.y1e_c01146{bottom:445.500000px;}
.y1d_c01146{bottom:466.500000px;}
.y1c_c01146{bottom:487.500000px;}
.y1b_c01146{bottom:529.500000px;}
.y1a_c01146{bottom:550.500000px;}
.y19_c01146{bottom:571.500000px;}
.y18_c01146{bottom:592.500000px;}
.y17_c01146{bottom:613.500000px;}
.y16_c01146{bottom:634.500000px;}
.y15_c01146{bottom:655.500000px;}
.y14_c01146{bottom:697.500000px;}
.y13_c01146{bottom:718.500000px;}
.y12_c01146{bottom:739.500000px;}
.y11_c01146{bottom:760.500000px;}
.y10_c01146{bottom:781.500000px;}
.yf_c01146{bottom:802.500000px;}
.ye_c01146{bottom:823.500000px;}
.yd_c01146{bottom:844.500000px;}
.yc_c01146{bottom:865.500000px;}
.yb_c01146{bottom:886.500000px;}
.ya_c01146{bottom:907.500000px;}
.y9_c01146{bottom:928.500000px;}
.y8_c01146{bottom:949.500000px;}
.y7_c01146{bottom:970.500000px;}
.y6_c01146{bottom:991.500000px;}
.y5_c01146{bottom:1012.500000px;}
.y4_c01146{bottom:1033.500000px;}
.y3_c01146{bottom:1054.500000px;}
.y2_c01146{bottom:1075.500000px;}
.y1_c01146{bottom:1096.500000px;}
.y27_c01146{bottom:1194.000000px;}
.h1_c01146{height:52.417969px;}
.h2_c01146{height:56.074219px;}
.h0_c01146{height:1263.000000px;}
.w0_c01146{width:892.500000px;}
.x0_c01146{left:0.000000px;}
.x1_c01146{left:134.787405px;}
.x2_c01146{left:432.515100px;}
.x3_c01146{left:817.725150px;}
@media print{
.v0_c01146{vertical-align:0.000000pt;}
.ls1_c01146{letter-spacing:0.000000pt;}
.ls0_c01146{letter-spacing:0.010667pt;}
.ws0_c01146{word-spacing:-0.064000pt;}
.ws1_c01146{word-spacing:0.000000pt;}
._15_c01146{margin-left:-7.084800pt;}
._13_c01146{margin-left:-5.139200pt;}
._4_c01146{margin-left:-3.788800pt;}
._8_c01146{margin-left:-2.380800pt;}
._0_c01146{margin-left:-1.222400pt;}
._2_c01146{width:1.216000pt;}
._3_c01146{width:2.726400pt;}
._1_c01146{width:4.409600pt;}
._a_c01146{width:6.041600pt;}
._5_c01146{width:7.155200pt;}
._f_c01146{width:8.217600pt;}
._d_c01146{width:9.939200pt;}
._10_c01146{width:11.334400pt;}
._e_c01146{width:12.332800pt;}
._7_c01146{width:13.753600pt;}
._16_c01146{width:15.001600pt;}
._6_c01146{width:16.921600pt;}
._c_c01146{width:17.830400pt;}
._9_c01146{width:18.937600pt;}
._b_c01146{width:20.704000pt;}
._11_c01146{width:21.984000pt;}
._12_c01146{width:23.609600pt;}
._17_c01146{width:24.928000pt;}
._14_c01146{width:27.513600pt;}
.fs1_c01146{font-size:53.333333pt;}
.fs0_c01146{font-size:64.000000pt;}
.y0_c01146{bottom:0.000000pt;}
.y28_c01146{bottom:60.000000pt;}
.y26_c01146{bottom:246.666667pt;}
.y25_c01146{bottom:265.333333pt;}
.y24_c01146{bottom:284.000000pt;}
.y23_c01146{bottom:302.666667pt;}
.y22_c01146{bottom:321.333333pt;}
.y21_c01146{bottom:340.000000pt;}
.y20_c01146{bottom:358.666667pt;}
.y1f_c01146{bottom:377.333333pt;}
.y1e_c01146{bottom:396.000000pt;}
.y1d_c01146{bottom:414.666667pt;}
.y1c_c01146{bottom:433.333333pt;}
.y1b_c01146{bottom:470.666667pt;}
.y1a_c01146{bottom:489.333333pt;}
.y19_c01146{bottom:508.000000pt;}
.y18_c01146{bottom:526.666667pt;}
.y17_c01146{bottom:545.333333pt;}
.y16_c01146{bottom:564.000000pt;}
.y15_c01146{bottom:582.666667pt;}
.y14_c01146{bottom:620.000000pt;}
.y13_c01146{bottom:638.666667pt;}
.y12_c01146{bottom:657.333333pt;}
.y11_c01146{bottom:676.000000pt;}
.y10_c01146{bottom:694.666667pt;}
.yf_c01146{bottom:713.333333pt;}
.ye_c01146{bottom:732.000000pt;}
.yd_c01146{bottom:750.666667pt;}
.yc_c01146{bottom:769.333333pt;}
.yb_c01146{bottom:788.000000pt;}
.ya_c01146{bottom:806.666667pt;}
.y9_c01146{bottom:825.333333pt;}
.y8_c01146{bottom:844.000000pt;}
.y7_c01146{bottom:862.666667pt;}
.y6_c01146{bottom:881.333333pt;}
.y5_c01146{bottom:900.000000pt;}
.y4_c01146{bottom:918.666667pt;}
.y3_c01146{bottom:937.333333pt;}
.y2_c01146{bottom:956.000000pt;}
.y1_c01146{bottom:974.666667pt;}
.y27_c01146{bottom:1061.333333pt;}
.h1_c01146{height:46.593750pt;}
.h2_c01146{height:49.843750pt;}
.h0_c01146{height:1122.666667pt;}
.w0_c01146{width:793.333333pt;}
.x0_c01146{left:0.000000pt;}
.x1_c01146{left:119.811027pt;}
.x2_c01146{left:384.457867pt;}
.x3_c01146{left:726.866800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6c85b6df6bffd75b6a5d49a1.woff2')format("woff");}.ff1_c01147{font-family:ff1_c01147;line-height:0.884766;font-style:normal;font-weight:normal;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_ca6a6d2a92b34a4e860bbc06.woff2')format("woff");}.ff2_c01147{font-family:ff2_c01147;line-height:0.934082;font-style:normal;font-weight:normal;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_0f8b59eb22edfa704129452d.woff2')format("woff");}.ff3_c01147{font-family:ff3_c01147;line-height:0.755859;font-style:normal;font-weight:normal;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_6cb83264e2ce07c6faca30f0.woff2')format("woff");}.ff4_c01147{font-family:ff4_c01147;line-height:1.155762;font-style:normal;font-weight:normal;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_2258d54aab229dbd90bcc75b.woff2')format("woff");}.ff5_c01147{font-family:ff5_c01147;line-height:1.115723;font-style:normal;font-weight: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_c01147;src:url('chunks/assets/font_7cad6c66677ac551a73a9865.woff2')format("woff");}.ff6_c01147{font-family:ff6_c01147;line-height:0.889648;font-style: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);}
.v3_c01147{vertical-align:-33.000000px;}
.v2_c01147{vertical-align:-23.086200px;}
.v0_c01147{vertical-align:0.000000px;}
.v1_c01147{vertical-align:23.086200px;}
.lsa_c01147{letter-spacing:-1.554000px;}
.ls8_c01147{letter-spacing:0.000000px;}
.ls0_c01147{letter-spacing:0.007800px;}
.ls9_c01147{letter-spacing:0.012000px;}
.ls3_c01147{letter-spacing:2.485800px;}
.ls4_c01147{letter-spacing:3.526800px;}
.ls7_c01147{letter-spacing:3.999999px;}
.ls1_c01147{letter-spacing:6.398460px;}
.ls6_c01147{letter-spacing:9.999999px;}
.ls5_c01147{letter-spacing:16.736400px;}
.ls2_c01147{letter-spacing:21.807000px;}
.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;}
}
.ws0_c01147{word-spacing:-10.000001px;}
.ws1_c01147{word-spacing:0.000000px;}
._7_c01147{margin-left:-7.795200px;}
._3_c01147{margin-left:-5.860800px;}
._8_c01147{margin-left:-4.644000px;}
._1_c01147{margin-left:-2.779200px;}
._4_c01147{margin-left:-1.605600px;}
._5_c01147{width:1.029600px;}
._0_c01147{width:2.325600px;}
._2_c01147{width:4.132800px;}
._6_c01147{width:6.069600px;}
._9_c01147{width:7.862400px;}
._13_c01147{width:9.011700px;}
._a_c01147{width:10.116000px;}
._12_c01147{width:11.122200px;}
._11_c01147{width:13.000500px;}
._10_c01147{width:14.061600px;}
._f_c01147{width:15.170400px;}
._b_c01147{width:16.365600px;}
._e_c01147{width:17.416800px;}
._d_c01147{width:18.676800px;}
._19_c01147{width:20.263200px;}
._c_c01147{width:21.456000px;}
._15_c01147{width:23.112000px;}
._18_c01147{width:24.897600px;}
._16_c01147{width:27.244800px;}
._17_c01147{width:29.080800px;}
._14_c01147{width:31.838400px;}
.fc1_c01147{color:rgb(255,255,255);}
.fc0_c01147{color:rgb(0,0,0);}
.fs5_c01147{font-size:40.000002px;}
.fs2_c01147{font-size:48.000000px;}
.fs4_c01147{font-size:60.000000px;}
.fs1_c01147{font-size:72.000000px;}
.fs0_c01147{font-size:78.000000px;}
.fs3_c01147{font-size:96.000000px;}
.y0_c01147{bottom:0.000000px;}
.y12_c01147{bottom:67.500000px;}
.y1c_c01147{bottom:132.000000px;}
.y1b_c01147{bottom:159.750000px;}
.y1a_c01147{bottom:201.000000px;}
.y19_c01147{bottom:228.750000px;}
.y18_c01147{bottom:270.000000px;}
.y17_c01147{bottom:289.500000px;}
.y16_c01147{bottom:317.250000px;}
.y15_c01147{bottom:366.750000px;}
.y14_c01147{bottom:408.000000px;}
.y13_c01147{bottom:435.750000px;}
.yf_c01147{bottom:556.500000px;}
.ye_c01147{bottom:583.500000px;}
.yd_c01147{bottom:631.500000px;}
.yc_c01147{bottom:658.500000px;}
.yb_c01147{bottom:685.500000px;}
.ya_c01147{bottom:712.500000px;}
.y9_c01147{bottom:739.500000px;}
.y8_c01147{bottom:766.500000px;}
.y7_c01147{bottom:814.500000px;}
.y6_c01147{bottom:841.500000px;}
.y5_c01147{bottom:868.500000px;}
.y4_c01147{bottom:895.500000px;}
.y3_c01147{bottom:922.500000px;}
.y2_c01147{bottom:949.500000px;}
.y1_c01147{bottom:996.000000px;}
.y10_c01147{bottom:1066.500000px;}
.y11_c01147{bottom:1194.000000px;}
.h7_c01147{height:35.878908px;}
.h6_c01147{height:44.208984px;}
.h2_c01147{height:51.257812px;}
.h8_c01147{height:53.818359px;}
.h1_c01147{height:55.224609px;}
.h5_c01147{height:56.074219px;}
.h3_c01147{height:57.258075px;}
.h4_c01147{height:68.343750px;}
.h0_c01147{height:1263.000000px;}
.w0_c01147{width:892.500000px;}
.x0_c01147{left:0.000000px;}
.x1_c01147{left:49.748025px;}
.x2_c01147{left:79.798860px;}
@media print{
.v3_c01147{vertical-align:-29.333333pt;}
.v2_c01147{vertical-align:-20.521067pt;}
.v0_c01147{vertical-align:0.000000pt;}
.v1_c01147{vertical-align:20.521067pt;}
.lsa_c01147{letter-spacing:-1.381333pt;}
.ls8_c01147{letter-spacing:0.000000pt;}
.ls0_c01147{letter-spacing:0.006933pt;}
.ls9_c01147{letter-spacing:0.010667pt;}
.ls3_c01147{letter-spacing:2.209600pt;}
.ls4_c01147{letter-spacing:3.134933pt;}
.ls7_c01147{letter-spacing:3.555555pt;}
.ls1_c01147{letter-spacing:5.687520pt;}
.ls6_c01147{letter-spacing:8.888888pt;}
.ls5_c01147{letter-spacing:14.876800pt;}
.ls2_c01147{letter-spacing:19.384000pt;}
.ws0_c01147{word-spacing:-8.888889pt;}
.ws1_c01147{word-spacing:0.000000pt;}
._7_c01147{margin-left:-6.929067pt;}
._3_c01147{margin-left:-5.209600pt;}
._8_c01147{margin-left:-4.128000pt;}
._1_c01147{margin-left:-2.470400pt;}
._4_c01147{margin-left:-1.427200pt;}
._5_c01147{width:0.915200pt;}
._0_c01147{width:2.067200pt;}
._2_c01147{width:3.673600pt;}
._6_c01147{width:5.395200pt;}
._9_c01147{width:6.988800pt;}
._13_c01147{width:8.010400pt;}
._a_c01147{width:8.992000pt;}
._12_c01147{width:9.886400pt;}
._11_c01147{width:11.556000pt;}
._10_c01147{width:12.499200pt;}
._f_c01147{width:13.484800pt;}
._b_c01147{width:14.547200pt;}
._e_c01147{width:15.481600pt;}
._d_c01147{width:16.601600pt;}
._19_c01147{width:18.011733pt;}
._c_c01147{width:19.072000pt;}
._15_c01147{width:20.544000pt;}
._18_c01147{width:22.131200pt;}
._16_c01147{width:24.217600pt;}
._17_c01147{width:25.849600pt;}
._14_c01147{width:28.300800pt;}
.fs5_c01147{font-size:35.555557pt;}
.fs2_c01147{font-size:42.666667pt;}
.fs4_c01147{font-size:53.333333pt;}
.fs1_c01147{font-size:64.000000pt;}
.fs0_c01147{font-size:69.333333pt;}
.fs3_c01147{font-size:85.333333pt;}
.y0_c01147{bottom:0.000000pt;}
.y12_c01147{bottom:60.000000pt;}
.y1c_c01147{bottom:117.333333pt;}
.y1b_c01147{bottom:142.000000pt;}
.y1a_c01147{bottom:178.666667pt;}
.y19_c01147{bottom:203.333333pt;}
.y18_c01147{bottom:240.000000pt;}
.y17_c01147{bottom:257.333333pt;}
.y16_c01147{bottom:282.000000pt;}
.y15_c01147{bottom:326.000000pt;}
.y14_c01147{bottom:362.666667pt;}
.y13_c01147{bottom:387.333333pt;}
.yf_c01147{bottom:494.666667pt;}
.ye_c01147{bottom:518.666667pt;}
.yd_c01147{bottom:561.333333pt;}
.yc_c01147{bottom:585.333333pt;}
.yb_c01147{bottom:609.333333pt;}
.ya_c01147{bottom:633.333333pt;}
.y9_c01147{bottom:657.333333pt;}
.y8_c01147{bottom:681.333333pt;}
.y7_c01147{bottom:724.000000pt;}
.y6_c01147{bottom:748.000000pt;}
.y5_c01147{bottom:772.000000pt;}
.y4_c01147{bottom:796.000000pt;}
.y3_c01147{bottom:820.000000pt;}
.y2_c01147{bottom:844.000000pt;}
.y1_c01147{bottom:885.333333pt;}
.y10_c01147{bottom:948.000000pt;}
.y11_c01147{bottom:1061.333333pt;}
.h7_c01147{height:31.892363pt;}
.h6_c01147{height:39.296875pt;}
.h2_c01147{height:45.562500pt;}
.h8_c01147{height:47.838542pt;}
.h1_c01147{height:49.088542pt;}
.h5_c01147{height:49.843750pt;}
.h3_c01147{height:50.896067pt;}
.h4_c01147{height:60.750000pt;}
.h0_c01147{height:1122.666667pt;}
.w0_c01147{width:793.333333pt;}
.x0_c01147{left:0.000000pt;}
.x1_c01147{left:44.220467pt;}
.x2_c01147{left:70.932320pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c690c697462c8b00a49b024d.woff2')format("woff");}.ff1_c01148{font-family:ff1_c01148;line-height:0.939453;font-style:normal;font-weight:normal;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_59b2a64e9d42d94b6d26aa31.woff2')format("woff");}.ff2_c01148{font-family:ff2_c01148;line-height:0.934082;font-style:normal;font-weight:normal;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_1a909237f80041118af64d05.woff2')format("woff");}.ff3_c01148{font-family:ff3_c01148;line-height:1.132812;font-style:normal;font-weight:normal;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_1ff6bbfbc4aa73d62afe774d.woff2')format("woff");}.ff4_c01148{font-family:ff4_c01148;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01148;src:url('chunks/assets/font_9f637c06d2249b3e91bc0c0c.woff2')format("woff");}.ff5_c01148{font-family:ff5_c01148;line-height:1.155762;font-style: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.007800px;}
.ls2_c01148{letter-spacing:0.012000px;}
.ls4_c01148{letter-spacing:0.021600px;}
.ls1_c01148{letter-spacing:0.252000px;}
.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;}
}
.ws0_c01148{word-spacing:-19.800000px;}
.ws1_c01148{word-spacing:0.000000px;}
._6_c01148{margin-left:-4.608000px;}
._13_c01148{margin-left:-3.355200px;}
._1_c01148{margin-left:-2.066400px;}
._4_c01148{width:1.015200px;}
._d_c01148{width:2.196000px;}
._5_c01148{width:3.376800px;}
._3_c01148{width:4.435200px;}
._b_c01148{width:5.536800px;}
._e_c01148{width:7.747200px;}
._0_c01148{width:8.906400px;}
._f_c01148{width:9.950400px;}
._2_c01148{width:11.001600px;}
._10_c01148{width:12.189600px;}
._11_c01148{width:13.269600px;}
._12_c01148{width:14.968800px;}
._c_c01148{width:16.531200px;}
._9_c01148{width:18.050400px;}
._8_c01148{width:21.448800px;}
._a_c01148{width:23.522400px;}
._7_c01148{width:26.121600px;}
._14_c01148{width:34.552800px;}
._15_c01148{width:35.640000px;}
._16_c01148{width:37.778400px;}
._17_c01148{width:38.995200px;}
.fc0_c01148{color:rgb(0,0,0);}
.fs2_c01148{font-size:54.000000px;}
.fs3_c01148{font-size:60.000000px;}
.fs1_c01148{font-size:72.000000px;}
.fs0_c01148{font-size:78.000000px;}
.y0_c01148{bottom:0.000000px;}
.yd_c01148{bottom:13.500000px;}
.yf_c01148{bottom:67.500000px;}
.yc_c01148{bottom:252.000000px;}
.yb_c01148{bottom:760.500000px;}
.ya_c01148{bottom:787.500000px;}
.y9_c01148{bottom:835.500000px;}
.y8_c01148{bottom:862.500000px;}
.y7_c01148{bottom:889.500000px;}
.y6_c01148{bottom:916.500000px;}
.y5_c01148{bottom:943.500000px;}
.y4_c01148{bottom:991.500000px;}
.y3_c01148{bottom:1018.500000px;}
.y2_c01148{bottom:1045.500000px;}
.y1_c01148{bottom:1093.500000px;}
.ye_c01148{bottom:1194.000000px;}
.h4_c01148{height:50.756836px;}
.h2_c01148{height:51.257812px;}
.h5_c01148{height:56.074219px;}
.h1_c01148{height:56.100586px;}
.h3_c01148{height:475.500000px;}
.h0_c01148{height:1263.000000px;}
.w1_c01148{width:684.449850px;}
.w0_c01148{width:892.500000px;}
.x0_c01148{left:0.000000px;}
.x2_c01148{left:51.432225px;}
.x1_c01148{left:134.787405px;}
.x3_c01148{left:432.515100px;}
.x4_c01148{left:817.725150px;}
@media print{
.v0_c01148{vertical-align:0.000000pt;}
.ls3_c01148{letter-spacing:0.000000pt;}
.ls0_c01148{letter-spacing:0.006933pt;}
.ls2_c01148{letter-spacing:0.010667pt;}
.ls4_c01148{letter-spacing:0.019200pt;}
.ls1_c01148{letter-spacing:0.224000pt;}
.ws0_c01148{word-spacing:-17.600000pt;}
.ws1_c01148{word-spacing:0.000000pt;}
._6_c01148{margin-left:-4.096000pt;}
._13_c01148{margin-left:-2.982400pt;}
._1_c01148{margin-left:-1.836800pt;}
._4_c01148{width:0.902400pt;}
._d_c01148{width:1.952000pt;}
._5_c01148{width:3.001600pt;}
._3_c01148{width:3.942400pt;}
._b_c01148{width:4.921600pt;}
._e_c01148{width:6.886400pt;}
._0_c01148{width:7.916800pt;}
._f_c01148{width:8.844800pt;}
._2_c01148{width:9.779200pt;}
._10_c01148{width:10.835200pt;}
._11_c01148{width:11.795200pt;}
._12_c01148{width:13.305600pt;}
._c_c01148{width:14.694400pt;}
._9_c01148{width:16.044800pt;}
._8_c01148{width:19.065600pt;}
._a_c01148{width:20.908800pt;}
._7_c01148{width:23.219200pt;}
._14_c01148{width:30.713600pt;}
._15_c01148{width:31.680000pt;}
._16_c01148{width:33.580800pt;}
._17_c01148{width:34.662400pt;}
.fs2_c01148{font-size:48.000000pt;}
.fs3_c01148{font-size:53.333333pt;}
.fs1_c01148{font-size:64.000000pt;}
.fs0_c01148{font-size:69.333333pt;}
.y0_c01148{bottom:0.000000pt;}
.yd_c01148{bottom:12.000000pt;}
.yf_c01148{bottom:60.000000pt;}
.yc_c01148{bottom:224.000000pt;}
.yb_c01148{bottom:676.000000pt;}
.ya_c01148{bottom:700.000000pt;}
.y9_c01148{bottom:742.666667pt;}
.y8_c01148{bottom:766.666667pt;}
.y7_c01148{bottom:790.666667pt;}
.y6_c01148{bottom:814.666667pt;}
.y5_c01148{bottom:838.666667pt;}
.y4_c01148{bottom:881.333333pt;}
.y3_c01148{bottom:905.333333pt;}
.y2_c01148{bottom:929.333333pt;}
.y1_c01148{bottom:972.000000pt;}
.ye_c01148{bottom:1061.333333pt;}
.h4_c01148{height:45.117188pt;}
.h2_c01148{height:45.562500pt;}
.h5_c01148{height:49.843750pt;}
.h1_c01148{height:49.867188pt;}
.h3_c01148{height:422.666667pt;}
.h0_c01148{height:1122.666667pt;}
.w1_c01148{width:608.399867pt;}
.w0_c01148{width:793.333333pt;}
.x0_c01148{left:0.000000pt;}
.x2_c01148{left:45.717533pt;}
.x1_c01148{left:119.811027pt;}
.x3_c01148{left:384.457867pt;}
.x4_c01148{left:726.866800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_461de2035c58daace71b1b3f.woff2')format("woff");}.ff1_c01149{font-family:ff1_c01149;line-height:0.987793;font-style:normal;font-weight:normal;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_745f8a04ebf7edb8fd8c85ca.woff2')format("woff");}.ff2_c01149{font-family:ff2_c01149;line-height:0.934082;font-style:normal;font-weight:normal;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_be056e41dedc8636a8dcf99d.woff2')format("woff");}.ff3_c01149{font-family:ff3_c01149;line-height:0.755859;font-style:normal;font-weight:normal;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_1fb9a6a9c4fd9af05dfee5c8.woff2')format("woff");}.ff4_c01149{font-family:ff4_c01149;line-height:1.155762;font-style:normal;font-weight:normal;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_b86a800ad37461bcc82b42ca.woff2')format("woff");}.ff5_c01149{font-family:ff5_c01149;line-height:0.894531;font-style:normal;font-weight: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_c01149;src:url('chunks/assets/font_13103da3d3252516879fef84.woff2')format("woff");}.ff6_c01149{font-family:ff6_c01149;line-height:0.889648;font-style: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);}
.v4_c01149{vertical-align:-33.000000px;}
.v2_c01149{vertical-align:-23.086200px;}
.v3_c01149{vertical-align:-15.400200px;}
.v0_c01149{vertical-align:0.000000px;}
.v1_c01149{vertical-align:23.086200px;}
.ls4_c01149{letter-spacing:-0.007200px;}
.ls3_c01149{letter-spacing:0.000000px;}
.ls1_c01149{letter-spacing:0.006019px;}
.ls5_c01149{letter-spacing:0.012000px;}
.ls2_c01149{letter-spacing:0.021600px;}
.ls0_c01149{letter-spacing:1.595400px;}
.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;}
}
.ws1_c01149{word-spacing:-19.800000px;}
.ws0_c01149{word-spacing:-13.200000px;}
.ws2_c01149{word-spacing:-10.000001px;}
.ws3_c01149{word-spacing:0.000000px;}
._a_c01149{margin-left:-4.888800px;}
._f_c01149{margin-left:-3.736800px;}
._5_c01149{margin-left:-2.397600px;}
._3_c01149{margin-left:-1.245600px;}
._1_c01149{width:1.951200px;}
._2_c01149{width:3.693600px;}
._0_c01149{width:4.896000px;}
._4_c01149{width:6.055200px;}
._6_c01149{width:7.178400px;}
._b_c01149{width:8.474400px;}
._c_c01149{width:10.396800px;}
._e_c01149{width:11.635200px;}
._d_c01149{width:12.808800px;}
._10_c01149{width:14.277600px;}
._7_c01149{width:15.472800px;}
._8_c01149{width:17.402400px;}
._9_c01149{width:18.741600px;}
.fc0_c01149{color:rgb(0,0,0);}
.fs4_c01149{font-size:40.000002px;}
.fs2_c01149{font-size:48.000000px;}
.fs0_c01149{font-size:54.000000px;}
.fs3_c01149{font-size:60.000000px;}
.fs1_c01149{font-size:72.000000px;}
.y0_c01149{bottom:0.000000px;}
.y3_c01149{bottom:10.500000px;}
.y2_c01149{bottom:28.500000px;}
.y10_c01149{bottom:67.500000px;}
.y12_c01149{bottom:140.250000px;}
.y11_c01149{bottom:185.350050px;}
.ye_c01149{bottom:262.500000px;}
.yd_c01149{bottom:289.500000px;}
.yc_c01149{bottom:316.500000px;}
.yb_c01149{bottom:343.500000px;}
.ya_c01149{bottom:391.500000px;}
.y9_c01149{bottom:418.500000px;}
.y8_c01149{bottom:445.500000px;}
.y7_c01149{bottom:493.500000px;}
.y6_c01149{bottom:520.500000px;}
.y5_c01149{bottom:547.500000px;}
.y4_c01149{bottom:574.500000px;}
.y1_c01149{bottom:619.500000px;}
.yf_c01149{bottom:1194.000000px;}
.h8_c01149{height:27.070314px;}
.h7_c01149{height:29.472658px;}
.h2_c01149{height:42.292969px;}
.h6_c01149{height:44.208984px;}
.h3_c01149{height:51.257812px;}
.h5_c01149{height:56.074219px;}
.h4_c01149{height:57.258075px;}
.h1_c01149{height:493.500000px;}
.h0_c01149{height:1263.000000px;}
.w1_c01149{width:684.449850px;}
.w0_c01149{width:892.500000px;}
.x0_c01149{left:0.000000px;}
.x2_c01149{left:12.473602px;}
.x1_c01149{left:49.500000px;}
.x3_c01149{left:213.025800px;}
@media print{
.v4_c01149{vertical-align:-29.333333pt;}
.v2_c01149{vertical-align:-20.521067pt;}
.v3_c01149{vertical-align:-13.689067pt;}
.v0_c01149{vertical-align:0.000000pt;}
.v1_c01149{vertical-align:20.521067pt;}
.ls4_c01149{letter-spacing:-0.006400pt;}
.ls3_c01149{letter-spacing:0.000000pt;}
.ls1_c01149{letter-spacing:0.005350pt;}
.ls5_c01149{letter-spacing:0.010667pt;}
.ls2_c01149{letter-spacing:0.019200pt;}
.ls0_c01149{letter-spacing:1.418133pt;}
.ws1_c01149{word-spacing:-17.600000pt;}
.ws0_c01149{word-spacing:-11.733333pt;}
.ws2_c01149{word-spacing:-8.888889pt;}
.ws3_c01149{word-spacing:0.000000pt;}
._a_c01149{margin-left:-4.345600pt;}
._f_c01149{margin-left:-3.321600pt;}
._5_c01149{margin-left:-2.131200pt;}
._3_c01149{margin-left:-1.107200pt;}
._1_c01149{width:1.734400pt;}
._2_c01149{width:3.283200pt;}
._0_c01149{width:4.352000pt;}
._4_c01149{width:5.382400pt;}
._6_c01149{width:6.380800pt;}
._b_c01149{width:7.532800pt;}
._c_c01149{width:9.241600pt;}
._e_c01149{width:10.342400pt;}
._d_c01149{width:11.385600pt;}
._10_c01149{width:12.691200pt;}
._7_c01149{width:13.753600pt;}
._8_c01149{width:15.468800pt;}
._9_c01149{width:16.659200pt;}
.fs4_c01149{font-size:35.555557pt;}
.fs2_c01149{font-size:42.666667pt;}
.fs0_c01149{font-size:48.000000pt;}
.fs3_c01149{font-size:53.333333pt;}
.fs1_c01149{font-size:64.000000pt;}
.y0_c01149{bottom:0.000000pt;}
.y3_c01149{bottom:9.333333pt;}
.y2_c01149{bottom:25.333333pt;}
.y10_c01149{bottom:60.000000pt;}
.y12_c01149{bottom:124.666667pt;}
.y11_c01149{bottom:164.755600pt;}
.ye_c01149{bottom:233.333333pt;}
.yd_c01149{bottom:257.333333pt;}
.yc_c01149{bottom:281.333333pt;}
.yb_c01149{bottom:305.333333pt;}
.ya_c01149{bottom:348.000000pt;}
.y9_c01149{bottom:372.000000pt;}
.y8_c01149{bottom:396.000000pt;}
.y7_c01149{bottom:438.666667pt;}
.y6_c01149{bottom:462.666667pt;}
.y5_c01149{bottom:486.666667pt;}
.y4_c01149{bottom:510.666667pt;}
.y1_c01149{bottom:550.666667pt;}
.yf_c01149{bottom:1061.333333pt;}
.h8_c01149{height:24.062501pt;}
.h7_c01149{height:26.197918pt;}
.h2_c01149{height:37.593750pt;}
.h6_c01149{height:39.296875pt;}
.h3_c01149{height:45.562500pt;}
.h5_c01149{height:49.843750pt;}
.h4_c01149{height:50.896067pt;}
.h1_c01149{height:438.666667pt;}
.h0_c01149{height:1122.666667pt;}
.w1_c01149{width:608.399867pt;}
.w0_c01149{width:793.333333pt;}
.x0_c01149{left:0.000000pt;}
.x2_c01149{left:11.087647pt;}
.x1_c01149{left:44.000000pt;}
.x3_c01149{left:189.356267pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_56d9ece1748e31e2c66cf913.woff2')format("woff");}.ff1_c01150{font-family:ff1_c01150;line-height:0.987793;font-style:normal;font-weight:normal;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_23016d6dc9a41c63aaf327a7.woff2')format("woff");}.ff2_c01150{font-family:ff2_c01150;line-height:1.155762;font-style: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);}
.v0_c01150{vertical-align:0.000000px;}
.ls2_c01150{letter-spacing:0.000000px;}
.ls0_c01150{letter-spacing:0.012000px;}
.ls1_c01150{letter-spacing:0.021600px;}
.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;}
}
.ws0_c01150{word-spacing:0.000000px;}
._0_c01150{margin-left:-3.426000px;}
.fc0_c01150{color:rgb(0,0,0);}
.fs0_c01150{font-size:54.000000px;}
.fs1_c01150{font-size:60.000000px;}
.y0_c01150{bottom:0.000000px;}
.y2_c01150{bottom:12.000000px;}
.y4_c01150{bottom:67.500000px;}
.y1_c01150{bottom:640.500000px;}
.y3_c01150{bottom:1194.000000px;}
.h2_c01150{height:42.292969px;}
.h3_c01150{height:56.074219px;}
.h1_c01150{height:472.500000px;}
.h0_c01150{height:1263.000000px;}
.w1_c01150{width:684.449850px;}
.w0_c01150{width:892.500000px;}
.x0_c01150{left:0.000000px;}
.x2_c01150{left:11.933075px;}
.x1_c01150{left:135.000000px;}
.x3_c01150{left:432.515100px;}
.x4_c01150{left:817.725150px;}
@media print{
.v0_c01150{vertical-align:0.000000pt;}
.ls2_c01150{letter-spacing:0.000000pt;}
.ls0_c01150{letter-spacing:0.010667pt;}
.ls1_c01150{letter-spacing:0.019200pt;}
.ws0_c01150{word-spacing:0.000000pt;}
._0_c01150{margin-left:-3.045333pt;}
.fs0_c01150{font-size:48.000000pt;}
.fs1_c01150{font-size:53.333333pt;}
.y0_c01150{bottom:0.000000pt;}
.y2_c01150{bottom:10.666667pt;}
.y4_c01150{bottom:60.000000pt;}
.y1_c01150{bottom:569.333333pt;}
.y3_c01150{bottom:1061.333333pt;}
.h2_c01150{height:37.593750pt;}
.h3_c01150{height:49.843750pt;}
.h1_c01150{height:420.000000pt;}
.h0_c01150{height:1122.666667pt;}
.w1_c01150{width:608.399867pt;}
.w0_c01150{width:793.333333pt;}
.x0_c01150{left:0.000000pt;}
.x2_c01150{left:10.607177pt;}
.x1_c01150{left:120.000000pt;}
.x3_c01150{left:384.457867pt;}
.x4_c01150{left:726.866800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_64f57c4f4303018b52c096bf.woff2')format("woff");}.ff1_c01151{font-family:ff1_c01151;line-height:0.939453;font-style:normal;font-weight:normal;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_599a252ca57a5647a26c97bf.woff2')format("woff");}.ff2_c01151{font-family:ff2_c01151;line-height:1.163086;font-style:normal;font-weight:normal;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_856128cde095cf3cc13ed445.woff2')format("woff");}.ff3_c01151{font-family:ff3_c01151;line-height:0.924316;font-style:normal;font-weight:normal;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_8c6e1ebc722ce644516856eb.woff2')format("woff");}.ff4_c01151{font-family:ff4_c01151;line-height:0.756836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01151;src:url('chunks/assets/font_e3788a1ae6f1ded1a69facbc.woff2')format("woff");}.ff5_c01151{font-family:ff5_c01151;line-height:1.155762;font-style:normal;font-weight: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_c01151;src:url('chunks/assets/font_a4b9795f25a127edeec869fb.woff2')format("woff");}.ff6_c01151{font-family:ff6_c01151;line-height:0.901367;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01151;src:url('chunks/assets/font_73fb5ba7d0170cace9ac51a0.woff2')format("woff");}.ff7_c01151{font-family:ff7_c01151;line-height:0.892578;font-style: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);}
.m1_c01151{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3_c01151{vertical-align:-33.000000px;}
.v2_c01151{vertical-align:-23.086200px;}
.v0_c01151{vertical-align:0.000000px;}
.v1_c01151{vertical-align:23.086200px;}
.ls5_c01151{letter-spacing:-0.007200px;}
.ls3_c01151{letter-spacing:0.000000px;}
.ls4_c01151{letter-spacing:0.007200px;}
.ls0_c01151{letter-spacing:0.007800px;}
.ls6_c01151{letter-spacing:0.012000px;}
.ls2_c01151{letter-spacing:9.999999px;}
.ls1_c01151{letter-spacing:12.895200px;}
.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;}
}
.ws0_c01151{word-spacing:-15.000000px;}
.ws1_c01151{word-spacing:0.000000px;}
._14_c01151{margin-left:-7.725900px;}
._12_c01151{margin-left:-5.536800px;}
._9_c01151{margin-left:-3.938400px;}
._2_c01151{margin-left:-2.908800px;}
._4_c01151{margin-left:-1.490400px;}
._8_c01151{width:1.000800px;}
._0_c01151{width:2.325600px;}
._b_c01151{width:3.585600px;}
._1_c01151{width:4.586400px;}
._5_c01151{width:6.163200px;}
._3_c01151{width:7.502400px;}
._6_c01151{width:9.712800px;}
._a_c01151{width:11.490900px;}
._7_c01151{width:12.902400px;}
._11_c01151{width:14.148000px;}
._10_c01151{width:15.472800px;}
._d_c01151{width:16.596000px;}
._c_c01151{width:17.985600px;}
._13_c01151{width:19.110300px;}
._e_c01151{width:21.852000px;}
._f_c01151{width:22.874400px;}
._15_c01151{width:24.085200px;}
._16_c01151{width:25.167000px;}
.fc1_c01151{color:rgb(255,255,255);}
.fc0_c01151{color:rgb(0,0,0);}
.fs5_c01151{font-size:40.000002px;}
.fs2_c01151{font-size:48.000000px;}
.fs4_c01151{font-size:60.000000px;}
.fs1_c01151{font-size:72.000000px;}
.fs0_c01151{font-size:78.000000px;}
.fs3_c01151{font-size:96.000000px;}
.y0_c01151{bottom:0.000000px;}
.y1a_c01151{bottom:67.500000px;}
.y1c_c01151{bottom:132.000000px;}
.y1b_c01151{bottom:159.750000px;}
.y17_c01151{bottom:273.000000px;}
.y16_c01151{bottom:300.000000px;}
.y15_c01151{bottom:327.000000px;}
.y14_c01151{bottom:354.000000px;}
.y13_c01151{bottom:381.000000px;}
.y12_c01151{bottom:408.000000px;}
.y11_c01151{bottom:435.000000px;}
.y10_c01151{bottom:483.000000px;}
.yf_c01151{bottom:510.000000px;}
.ye_c01151{bottom:556.500000px;}
.yd_c01151{bottom:627.000000px;}
.yc_c01151{bottom:654.000000px;}
.yb_c01151{bottom:681.000000px;}
.ya_c01151{bottom:708.000000px;}
.y9_c01151{bottom:756.000000px;}
.y8_c01151{bottom:783.000000px;}
.y7_c01151{bottom:810.000000px;}
.y6_c01151{bottom:837.000000px;}
.y5_c01151{bottom:864.000000px;}
.y4_c01151{bottom:891.000000px;}
.y3_c01151{bottom:918.000000px;}
.y2_c01151{bottom:945.000000px;}
.y1_c01151{bottom:991.500000px;}
.y18_c01151{bottom:1066.500000px;}
.y19_c01151{bottom:1194.000000px;}
.h7_c01151{height:27.343751px;}
.h8_c01151{height:41.015625px;}
.h6_c01151{height:44.208984px;}
.h5_c01151{height:56.074219px;}
.h1_c01151{height:56.100586px;}
.h2_c01151{height:67.746094px;}
.h3_c01151{height:68.250262px;}
.h4_c01151{height:90.328125px;}
.h0_c01151{height:1263.000000px;}
.w0_c01151{width:892.500000px;}
.x0_c01151{left:0.000000px;}
.x1_c01151{left:49.748025px;}
.x2_c01151{left:79.798875px;}
@media print{
.v3_c01151{vertical-align:-29.333333pt;}
.v2_c01151{vertical-align:-20.521067pt;}
.v0_c01151{vertical-align:0.000000pt;}
.v1_c01151{vertical-align:20.521067pt;}
.ls5_c01151{letter-spacing:-0.006400pt;}
.ls3_c01151{letter-spacing:0.000000pt;}
.ls4_c01151{letter-spacing:0.006400pt;}
.ls0_c01151{letter-spacing:0.006933pt;}
.ls6_c01151{letter-spacing:0.010667pt;}
.ls2_c01151{letter-spacing:8.888888pt;}
.ls1_c01151{letter-spacing:11.462400pt;}
.ws0_c01151{word-spacing:-13.333333pt;}
.ws1_c01151{word-spacing:0.000000pt;}
._14_c01151{margin-left:-6.867467pt;}
._12_c01151{margin-left:-4.921600pt;}
._9_c01151{margin-left:-3.500800pt;}
._2_c01151{margin-left:-2.585600pt;}
._4_c01151{margin-left:-1.324800pt;}
._8_c01151{width:0.889600pt;}
._0_c01151{width:2.067200pt;}
._b_c01151{width:3.187200pt;}
._1_c01151{width:4.076800pt;}
._5_c01151{width:5.478400pt;}
._3_c01151{width:6.668800pt;}
._6_c01151{width:8.633600pt;}
._a_c01151{width:10.214133pt;}
._7_c01151{width:11.468800pt;}
._11_c01151{width:12.576000pt;}
._10_c01151{width:13.753600pt;}
._d_c01151{width:14.752000pt;}
._c_c01151{width:15.987200pt;}
._13_c01151{width:16.986933pt;}
._e_c01151{width:19.424000pt;}
._f_c01151{width:20.332800pt;}
._15_c01151{width:21.409067pt;}
._16_c01151{width:22.370667pt;}
.fs5_c01151{font-size:35.555557pt;}
.fs2_c01151{font-size:42.666667pt;}
.fs4_c01151{font-size:53.333333pt;}
.fs1_c01151{font-size:64.000000pt;}
.fs0_c01151{font-size:69.333333pt;}
.fs3_c01151{font-size:85.333333pt;}
.y0_c01151{bottom:0.000000pt;}
.y1a_c01151{bottom:60.000000pt;}
.y1c_c01151{bottom:117.333333pt;}
.y1b_c01151{bottom:142.000000pt;}
.y17_c01151{bottom:242.666667pt;}
.y16_c01151{bottom:266.666667pt;}
.y15_c01151{bottom:290.666667pt;}
.y14_c01151{bottom:314.666667pt;}
.y13_c01151{bottom:338.666667pt;}
.y12_c01151{bottom:362.666667pt;}
.y11_c01151{bottom:386.666667pt;}
.y10_c01151{bottom:429.333333pt;}
.yf_c01151{bottom:453.333333pt;}
.ye_c01151{bottom:494.666667pt;}
.yd_c01151{bottom:557.333333pt;}
.yc_c01151{bottom:581.333333pt;}
.yb_c01151{bottom:605.333333pt;}
.ya_c01151{bottom:629.333333pt;}
.y9_c01151{bottom:672.000000pt;}
.y8_c01151{bottom:696.000000pt;}
.y7_c01151{bottom:720.000000pt;}
.y6_c01151{bottom:744.000000pt;}
.y5_c01151{bottom:768.000000pt;}
.y4_c01151{bottom:792.000000pt;}
.y3_c01151{bottom:816.000000pt;}
.y2_c01151{bottom:840.000000pt;}
.y1_c01151{bottom:881.333333pt;}
.y18_c01151{bottom:948.000000pt;}
.y19_c01151{bottom:1061.333333pt;}
.h7_c01151{height:24.305557pt;}
.h8_c01151{height:36.458333pt;}
.h6_c01151{height:39.296875pt;}
.h5_c01151{height:49.843750pt;}
.h1_c01151{height:49.867188pt;}
.h2_c01151{height:60.218750pt;}
.h3_c01151{height:60.666900pt;}
.h4_c01151{height:80.291667pt;}
.h0_c01151{height:1122.666667pt;}
.w0_c01151{width:793.333333pt;}
.x0_c01151{left:0.000000pt;}
.x1_c01151{left:44.220467pt;}
.x2_c01151{left:70.932333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_98e1f1ab8f3d0be1c07d62cb.woff2')format("woff");}.ff1_c01152{font-family:ff1_c01152;line-height:0.987793;font-style:normal;font-weight:normal;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_0a858fa0ebb4532fb64b3dc0.woff2')format("woff");}.ff2_c01152{font-family:ff2_c01152;line-height:1.155762;font-style: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);}
.v0_c01152{vertical-align:0.000000px;}
.ls2_c01152{letter-spacing:0.000000px;}
.ls1_c01152{letter-spacing:0.012000px;}
.ls0_c01152{letter-spacing:0.021600px;}
.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;}
}
.ws0_c01152{word-spacing:0.000000px;}
._0_c01152{margin-left:-3.426000px;}
.fc0_c01152{color:rgb(0,0,0);}
.fs0_c01152{font-size:54.000000px;}
.fs1_c01152{font-size:60.000000px;}
.y0_c01152{bottom:0.000000px;}
.y2_c01152{bottom:12.000000px;}
.y5_c01152{bottom:67.500000px;}
.y3_c01152{bottom:213.000000px;}
.y1_c01152{bottom:709.500000px;}
.y4_c01152{bottom:1194.000000px;}
.h2_c01152{height:42.292969px;}
.h4_c01152{height:56.074219px;}
.h1_c01152{height:403.500000px;}
.h3_c01152{height:468.000000px;}
.h0_c01152{height:1263.000000px;}
.w1_c01152{width:684.449850px;}
.w0_c01152{width:892.500000px;}
.x0_c01152{left:0.000000px;}
.x1_c01152{left:147.000000px;}
.x3_c01152{left:248.934600px;}
.x2_c01152{left:309.783450px;}
.x4_c01152{left:432.515100px;}
.x5_c01152{left:817.725150px;}
@media print{
.v0_c01152{vertical-align:0.000000pt;}
.ls2_c01152{letter-spacing:0.000000pt;}
.ls1_c01152{letter-spacing:0.010667pt;}
.ls0_c01152{letter-spacing:0.019200pt;}
.ws0_c01152{word-spacing:0.000000pt;}
._0_c01152{margin-left:-3.045333pt;}
.fs0_c01152{font-size:48.000000pt;}
.fs1_c01152{font-size:53.333333pt;}
.y0_c01152{bottom:0.000000pt;}
.y2_c01152{bottom:10.666667pt;}
.y5_c01152{bottom:60.000000pt;}
.y3_c01152{bottom:189.333333pt;}
.y1_c01152{bottom:630.666667pt;}
.y4_c01152{bottom:1061.333333pt;}
.h2_c01152{height:37.593750pt;}
.h4_c01152{height:49.843750pt;}
.h1_c01152{height:358.666667pt;}
.h3_c01152{height:416.000000pt;}
.h0_c01152{height:1122.666667pt;}
.w1_c01152{width:608.399867pt;}
.w0_c01152{width:793.333333pt;}
.x0_c01152{left:0.000000pt;}
.x1_c01152{left:130.666667pt;}
.x3_c01152{left:221.275200pt;}
.x2_c01152{left:275.363067pt;}
.x4_c01152{left:384.457867pt;}
.x5_c01152{left:726.866800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_dc9b1f40196eaf888d8a7099.woff2')format("woff");}.ff1_c01153{font-family:ff1_c01153;line-height:1.144531;font-style:normal;font-weight:normal;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_04ddd871cbf9596e00365cb8.woff2')format("woff");}.ff2_c01153{font-family:ff2_c01153;line-height:0.931152;font-style:normal;font-weight:normal;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_25989772fbfdf6099c2c46e1.woff2')format("woff");}.ff3_c01153{font-family:ff3_c01153;line-height:0.755859;font-style:normal;font-weight:normal;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_ce898eb7c756fdd10732045e.woff2')format("woff");}.ff4_c01153{font-family:ff4_c01153;line-height:1.155762;font-style: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);}
.v0_c01153{vertical-align:0.000000px;}
.ls1_c01153{letter-spacing:0.000000px;}
.ls2_c01153{letter-spacing:0.012000px;}
.ls0_c01153{letter-spacing:0.021600px;}
.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;}
}
.ws0_c01153{word-spacing:0.000000px;}
._5_c01153{margin-left:-4.276800px;}
._1_c01153{margin-left:-2.577600px;}
._4_c01153{width:1.108800px;}
._0_c01153{width:2.721600px;}
._3_c01153{width:5.349600px;}
._2_c01153{width:7.804800px;}
.fc0_c01153{color:rgb(0,0,0);}
.fs0_c01153{font-size:54.000000px;}
.fs2_c01153{font-size:60.000000px;}
.fs1_c01153{font-size:72.000000px;}
.y0_c01153{bottom:0.000000px;}
.y2_c01153{bottom:12.000000px;}
.y7_c01153{bottom:67.500000px;}
.y5_c01153{bottom:214.500000px;}
.y4_c01153{bottom:241.500000px;}
.y3_c01153{bottom:286.500000px;}
.y1_c01153{bottom:810.000000px;}
.y6_c01153{bottom:1194.000000px;}
.h6_c01153{height:44.208984px;}
.h2_c01153{height:50.756836px;}
.h4_c01153{height:51.187500px;}
.h5_c01153{height:56.074219px;}
.h1_c01153{height:303.000000px;}
.h3_c01153{height:495.000000px;}
.h0_c01153{height:1263.000000px;}
.w1_c01153{width:684.449850px;}
.w0_c01153{width:892.500000px;}
.x0_c01153{left:0.000000px;}
.x4_c01153{left:49.748025px;}
.x2_c01153{left:55.155480px;}
.x1_c01153{left:61.500000px;}
.x3_c01153{left:130.107510px;}
@media print{
.v0_c01153{vertical-align:0.000000pt;}
.ls1_c01153{letter-spacing:0.000000pt;}
.ls2_c01153{letter-spacing:0.010667pt;}
.ls0_c01153{letter-spacing:0.019200pt;}
.ws0_c01153{word-spacing:0.000000pt;}
._5_c01153{margin-left:-3.801600pt;}
._1_c01153{margin-left:-2.291200pt;}
._4_c01153{width:0.985600pt;}
._0_c01153{width:2.419200pt;}
._3_c01153{width:4.755200pt;}
._2_c01153{width:6.937600pt;}
.fs0_c01153{font-size:48.000000pt;}
.fs2_c01153{font-size:53.333333pt;}
.fs1_c01153{font-size:64.000000pt;}
.y0_c01153{bottom:0.000000pt;}
.y2_c01153{bottom:10.666667pt;}
.y7_c01153{bottom:60.000000pt;}
.y5_c01153{bottom:190.666667pt;}
.y4_c01153{bottom:214.666667pt;}
.y3_c01153{bottom:254.666667pt;}
.y1_c01153{bottom:720.000000pt;}
.y6_c01153{bottom:1061.333333pt;}
.h6_c01153{height:39.296875pt;}
.h2_c01153{height:45.117188pt;}
.h4_c01153{height:45.500000pt;}
.h5_c01153{height:49.843750pt;}
.h1_c01153{height:269.333333pt;}
.h3_c01153{height:440.000000pt;}
.h0_c01153{height:1122.666667pt;}
.w1_c01153{width:608.399867pt;}
.w0_c01153{width:793.333333pt;}
.x0_c01153{left:0.000000pt;}
.x4_c01153{left:44.220467pt;}
.x2_c01153{left:49.027093pt;}
.x1_c01153{left:54.666667pt;}
.x3_c01153{left:115.651120pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_02d4b19db6d3b8ac2e5bc08b.woff2')format("woff");}.ff1_c01154{font-family:ff1_c01154;line-height:0.932129;font-style:normal;font-weight:normal;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_64980eaf923c557d4bd70521.woff2')format("woff");}.ff2_c01154{font-family:ff2_c01154;line-height:0.932129;font-style:normal;font-weight:normal;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_50628a0d26bd654afcb12893.woff2')format("woff");}.ff3_c01154{font-family:ff3_c01154;line-height:1.010254;font-style:normal;font-weight:normal;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_65a7b0319279262cce627706.woff2')format("woff");}.ff4_c01154{font-family:ff4_c01154;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01154;src:url('chunks/assets/font_cf57bd84239de456bc91648a.woff2')format("woff");}.ff5_c01154{font-family:ff5_c01154;line-height:1.155762;font-style: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;}
.ls3_c01154{letter-spacing:-0.006000px;}
.ls2_c01154{letter-spacing:0.000000px;}
.ls0_c01154{letter-spacing:0.000540px;}
.ls1_c01154{letter-spacing:0.012000px;}
.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;}
}
.ws0_c01154{word-spacing:-0.072000px;}
.ws1_c01154{word-spacing:0.000000px;}
._d_c01154{margin-left:-7.072800px;}
._12_c01154{margin-left:-5.378400px;}
._c_c01154{margin-left:-4.112940px;}
._9_c01154{margin-left:-2.952180px;}
._0_c01154{margin-left:-1.432800px;}
._2_c01154{width:1.044000px;}
._4_c01154{width:2.262000px;}
._6_c01154{width:3.370800px;}
._8_c01154{width:4.740000px;}
._7_c01154{width:6.462180px;}
._e_c01154{width:7.464360px;}
._5_c01154{width:8.556000px;}
._3_c01154{width:9.798000px;}
._1_c01154{width:10.836000px;}
._b_c01154{width:12.147420px;}
._a_c01154{width:13.308000px;}
._16_c01154{width:15.465780px;}
._1a_c01154{width:16.894800px;}
._17_c01154{width:19.166400px;}
._18_c01154{width:20.224800px;}
._1b_c01154{width:21.774540px;}
._19_c01154{width:23.284980px;}
._1d_c01154{width:24.732000px;}
._1c_c01154{width:26.117040px;}
._1e_c01154{width:28.008000px;}
._10_c01154{width:31.808400px;}
._11_c01154{width:33.062400px;}
._f_c01154{width:34.077600px;}
._14_c01154{width:35.532000px;}
._15_c01154{width:36.892980px;}
._13_c01154{width:39.470400px;}
.fc0_c01154{color:rgb(0,0,0);}
.fs1_c01154{font-size:60.000000px;}
.fs0_c01154{font-size:72.000000px;}
.y0_c01154{bottom:0.000000px;}
.y29_c01154{bottom:67.500000px;}
.y27_c01154{bottom:150.000000px;}
.y26_c01154{bottom:171.000000px;}
.y25_c01154{bottom:192.000000px;}
.y24_c01154{bottom:213.000000px;}
.y23_c01154{bottom:234.000000px;}
.y22_c01154{bottom:255.000000px;}
.y21_c01154{bottom:276.000000px;}
.y20_c01154{bottom:318.000000px;}
.y1f_c01154{bottom:339.000000px;}
.y1e_c01154{bottom:360.000000px;}
.y1d_c01154{bottom:381.000000px;}
.y1c_c01154{bottom:402.000000px;}
.y1b_c01154{bottom:423.000000px;}
.y1a_c01154{bottom:444.000000px;}
.y19_c01154{bottom:465.000000px;}
.y18_c01154{bottom:486.000000px;}
.y17_c01154{bottom:507.000000px;}
.y16_c01154{bottom:528.000000px;}
.y15_c01154{bottom:549.000000px;}
.y14_c01154{bottom:570.000000px;}
.y13_c01154{bottom:591.000000px;}
.y12_c01154{bottom:612.000000px;}
.y11_c01154{bottom:633.000000px;}
.y10_c01154{bottom:654.000000px;}
.yf_c01154{bottom:675.000000px;}
.ye_c01154{bottom:696.000000px;}
.yd_c01154{bottom:717.000000px;}
.yc_c01154{bottom:738.000000px;}
.yb_c01154{bottom:759.000000px;}
.ya_c01154{bottom:780.000000px;}
.y9_c01154{bottom:801.000000px;}
.y8_c01154{bottom:822.000000px;}
.y7_c01154{bottom:843.000000px;}
.y6_c01154{bottom:864.000000px;}
.y5_c01154{bottom:921.000000px;}
.y4_c01154{bottom:942.000000px;}
.y3_c01154{bottom:978.000000px;}
.y2_c01154{bottom:1017.000000px;}
.y1_c01154{bottom:1095.000000px;}
.y28_c01154{bottom:1194.000000px;}
.h2_c01154{height:42.714844px;}
.h1_c01154{height:51.257812px;}
.h3_c01154{height:52.417969px;}
.h4_c01154{height:56.074219px;}
.h0_c01154{height:1263.000000px;}
.w0_c01154{width:892.500000px;}
.x0_c01154{left:0.000000px;}
.x1_c01154{left:134.787405px;}
.x2_c01154{left:432.515100px;}
.x3_c01154{left:817.725150px;}
@media print{
.v0_c01154{vertical-align:0.000000pt;}
.ls3_c01154{letter-spacing:-0.005333pt;}
.ls2_c01154{letter-spacing:0.000000pt;}
.ls0_c01154{letter-spacing:0.000480pt;}
.ls1_c01154{letter-spacing:0.010667pt;}
.ws0_c01154{word-spacing:-0.064000pt;}
.ws1_c01154{word-spacing:0.000000pt;}
._d_c01154{margin-left:-6.286933pt;}
._12_c01154{margin-left:-4.780800pt;}
._c_c01154{margin-left:-3.655947pt;}
._9_c01154{margin-left:-2.624160pt;}
._0_c01154{margin-left:-1.273600pt;}
._2_c01154{width:0.928000pt;}
._4_c01154{width:2.010667pt;}
._6_c01154{width:2.996267pt;}
._8_c01154{width:4.213333pt;}
._7_c01154{width:5.744160pt;}
._e_c01154{width:6.634987pt;}
._5_c01154{width:7.605333pt;}
._3_c01154{width:8.709333pt;}
._1_c01154{width:9.632000pt;}
._b_c01154{width:10.797707pt;}
._a_c01154{width:11.829333pt;}
._16_c01154{width:13.747360pt;}
._1a_c01154{width:15.017600pt;}
._17_c01154{width:17.036800pt;}
._18_c01154{width:17.977600pt;}
._1b_c01154{width:19.355147pt;}
._19_c01154{width:20.697760pt;}
._1d_c01154{width:21.984000pt;}
._1c_c01154{width:23.215147pt;}
._1e_c01154{width:24.896000pt;}
._10_c01154{width:28.274133pt;}
._11_c01154{width:29.388800pt;}
._f_c01154{width:30.291200pt;}
._14_c01154{width:31.584000pt;}
._15_c01154{width:32.793760pt;}
._13_c01154{width:35.084800pt;}
.fs1_c01154{font-size:53.333333pt;}
.fs0_c01154{font-size:64.000000pt;}
.y0_c01154{bottom:0.000000pt;}
.y29_c01154{bottom:60.000000pt;}
.y27_c01154{bottom:133.333333pt;}
.y26_c01154{bottom:152.000000pt;}
.y25_c01154{bottom:170.666667pt;}
.y24_c01154{bottom:189.333333pt;}
.y23_c01154{bottom:208.000000pt;}
.y22_c01154{bottom:226.666667pt;}
.y21_c01154{bottom:245.333333pt;}
.y20_c01154{bottom:282.666667pt;}
.y1f_c01154{bottom:301.333333pt;}
.y1e_c01154{bottom:320.000000pt;}
.y1d_c01154{bottom:338.666667pt;}
.y1c_c01154{bottom:357.333333pt;}
.y1b_c01154{bottom:376.000000pt;}
.y1a_c01154{bottom:394.666667pt;}
.y19_c01154{bottom:413.333333pt;}
.y18_c01154{bottom:432.000000pt;}
.y17_c01154{bottom:450.666667pt;}
.y16_c01154{bottom:469.333333pt;}
.y15_c01154{bottom:488.000000pt;}
.y14_c01154{bottom:506.666667pt;}
.y13_c01154{bottom:525.333333pt;}
.y12_c01154{bottom:544.000000pt;}
.y11_c01154{bottom:562.666667pt;}
.y10_c01154{bottom:581.333333pt;}
.yf_c01154{bottom:600.000000pt;}
.ye_c01154{bottom:618.666667pt;}
.yd_c01154{bottom:637.333333pt;}
.yc_c01154{bottom:656.000000pt;}
.yb_c01154{bottom:674.666667pt;}
.ya_c01154{bottom:693.333333pt;}
.y9_c01154{bottom:712.000000pt;}
.y8_c01154{bottom:730.666667pt;}
.y7_c01154{bottom:749.333333pt;}
.y6_c01154{bottom:768.000000pt;}
.y5_c01154{bottom:818.666667pt;}
.y4_c01154{bottom:837.333333pt;}
.y3_c01154{bottom:869.333333pt;}
.y2_c01154{bottom:904.000000pt;}
.y1_c01154{bottom:973.333333pt;}
.y28_c01154{bottom:1061.333333pt;}
.h2_c01154{height:37.968750pt;}
.h1_c01154{height:45.562500pt;}
.h3_c01154{height:46.593750pt;}
.h4_c01154{height:49.843750pt;}
.h0_c01154{height:1122.666667pt;}
.w0_c01154{width:793.333333pt;}
.x0_c01154{left:0.000000pt;}
.x1_c01154{left:119.811027pt;}
.x2_c01154{left:384.457867pt;}
.x3_c01154{left:726.866800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_630948cd3af19d9c05b54224.woff2')format("woff");}.ff1_c01155{font-family:ff1_c01155;line-height:1.010254;font-style:normal;font-weight:normal;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_c1d8eeebd65f992ca062acfd.woff2')format("woff");}.ff2_c01155{font-family:ff2_c01155;line-height:0.738770;font-style:normal;font-weight:normal;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_d50f7cf25f0b8045b6376be6.woff2')format("woff");}.ff3_c01155{font-family:ff3_c01155;line-height:0.755859;font-style:normal;font-weight:normal;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_70c1db46da440426c44e6f7b.woff2')format("woff");}.ff4_c01155{font-family:ff4_c01155;line-height:1.155762;font-style: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);}
.v0_c01155{vertical-align:0.000000px;}
.ls0_c01155{letter-spacing:0.000000px;}
.ls1_c01155{letter-spacing:0.012000px;}
.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;}
}
.ws0_c01155{word-spacing:-18.000000px;}
.ws1_c01155{word-spacing:0.000000px;}
._4_c01155{margin-left:-5.256900px;}
._7_c01155{margin-left:-3.405600px;}
._1_c01155{margin-left:-1.728000px;}
._3_c01155{width:1.281600px;}
._2_c01155{width:2.354400px;}
._0_c01155{width:4.053600px;}
._c_c01155{width:5.068800px;}
._6_c01155{width:6.214500px;}
._5_c01155{width:7.884000px;}
._f_c01155{width:9.590400px;}
._d_c01155{width:12.124800px;}
._e_c01155{width:14.300100px;}
._11_c01155{width:15.558300px;}
._10_c01155{width:16.941600px;}
._a_c01155{width:19.166400px;}
._9_c01155{width:20.570400px;}
._8_c01155{width:22.291200px;}
._b_c01155{width:24.465600px;}
.fc0_c01155{color:rgb(0,0,0);}
.fs1_c01155{font-size:60.000000px;}
.fs0_c01155{font-size:72.000000px;}
.y0_c01155{bottom:0.000000px;}
.y1a_c01155{bottom:67.500000px;}
.y18_c01155{bottom:508.500000px;}
.y17_c01155{bottom:529.500000px;}
.y16_c01155{bottom:550.500000px;}
.y15_c01155{bottom:571.500000px;}
.y14_c01155{bottom:592.500000px;}
.y13_c01155{bottom:613.500000px;}
.y12_c01155{bottom:655.500000px;}
.y11_c01155{bottom:676.500000px;}
.y10_c01155{bottom:697.500000px;}
.yf_c01155{bottom:718.500000px;}
.ye_c01155{bottom:760.500000px;}
.yd_c01155{bottom:781.500000px;}
.yc_c01155{bottom:802.500000px;}
.yb_c01155{bottom:823.500000px;}
.ya_c01155{bottom:865.500000px;}
.y9_c01155{bottom:886.500000px;}
.y8_c01155{bottom:907.500000px;}
.y7_c01155{bottom:949.500000px;}
.y6_c01155{bottom:970.500000px;}
.y5_c01155{bottom:991.500000px;}
.y4_c01155{bottom:1033.500000px;}
.y3_c01155{bottom:1054.500000px;}
.y2_c01155{bottom:1075.500000px;}
.y1_c01155{bottom:1096.500000px;}
.y19_c01155{bottom:1194.000000px;}
.h3_c01155{height:44.208984px;}
.h1_c01155{height:52.417969px;}
.h2_c01155{height:56.074219px;}
.h0_c01155{height:1263.000000px;}
.w0_c01155{width:892.500000px;}
.x0_c01155{left:0.000000px;}
.x1_c01155{left:49.748025px;}
@media print{
.v0_c01155{vertical-align:0.000000pt;}
.ls0_c01155{letter-spacing:0.000000pt;}
.ls1_c01155{letter-spacing:0.010667pt;}
.ws0_c01155{word-spacing:-16.000000pt;}
.ws1_c01155{word-spacing:0.000000pt;}
._4_c01155{margin-left:-4.672800pt;}
._7_c01155{margin-left:-3.027200pt;}
._1_c01155{margin-left:-1.536000pt;}
._3_c01155{width:1.139200pt;}
._2_c01155{width:2.092800pt;}
._0_c01155{width:3.603200pt;}
._c_c01155{width:4.505600pt;}
._6_c01155{width:5.524000pt;}
._5_c01155{width:7.008000pt;}
._f_c01155{width:8.524800pt;}
._d_c01155{width:10.777600pt;}
._e_c01155{width:12.711200pt;}
._11_c01155{width:13.829600pt;}
._10_c01155{width:15.059200pt;}
._a_c01155{width:17.036800pt;}
._9_c01155{width:18.284800pt;}
._8_c01155{width:19.814400pt;}
._b_c01155{width:21.747200pt;}
.fs1_c01155{font-size:53.333333pt;}
.fs0_c01155{font-size:64.000000pt;}
.y0_c01155{bottom:0.000000pt;}
.y1a_c01155{bottom:60.000000pt;}
.y18_c01155{bottom:452.000000pt;}
.y17_c01155{bottom:470.666667pt;}
.y16_c01155{bottom:489.333333pt;}
.y15_c01155{bottom:508.000000pt;}
.y14_c01155{bottom:526.666667pt;}
.y13_c01155{bottom:545.333333pt;}
.y12_c01155{bottom:582.666667pt;}
.y11_c01155{bottom:601.333333pt;}
.y10_c01155{bottom:620.000000pt;}
.yf_c01155{bottom:638.666667pt;}
.ye_c01155{bottom:676.000000pt;}
.yd_c01155{bottom:694.666667pt;}
.yc_c01155{bottom:713.333333pt;}
.yb_c01155{bottom:732.000000pt;}
.ya_c01155{bottom:769.333333pt;}
.y9_c01155{bottom:788.000000pt;}
.y8_c01155{bottom:806.666667pt;}
.y7_c01155{bottom:844.000000pt;}
.y6_c01155{bottom:862.666667pt;}
.y5_c01155{bottom:881.333333pt;}
.y4_c01155{bottom:918.666667pt;}
.y3_c01155{bottom:937.333333pt;}
.y2_c01155{bottom:956.000000pt;}
.y1_c01155{bottom:974.666667pt;}
.y19_c01155{bottom:1061.333333pt;}
.h3_c01155{height:39.296875pt;}
.h1_c01155{height:46.593750pt;}
.h2_c01155{height:49.843750pt;}
.h0_c01155{height:1122.666667pt;}
.w0_c01155{width:793.333333pt;}
.x0_c01155{left:0.000000pt;}
.x1_c01155{left:44.220467pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cdd964ce98cca72143bea63b.woff2')format("woff");}.ff1_c01156{font-family:ff1_c01156;line-height:0.939453;font-style:normal;font-weight:normal;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_717e88024f2146b72cb2f42f.woff2')format("woff");}.ff2_c01156{font-family:ff2_c01156;line-height:1.163086;font-style:normal;font-weight:normal;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_41b8574f3ede028052a51c7f.woff2')format("woff");}.ff3_c01156{font-family:ff3_c01156;line-height:1.155762;font-style:normal;font-weight:normal;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_743386e56fa19ae2ac000df0.woff2')format("woff");}.ff4_c01156{font-family:ff4_c01156;line-height:0.903320;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01156;src:url('chunks/assets/font_8f077bed35aa75266541648e.woff2')format("woff");}.ff5_c01156{font-family:ff5_c01156;line-height:0.892578;font-style: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);}
.m1_c01156{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3_c01156{vertical-align:-33.000000px;}
.v2_c01156{vertical-align:-23.086200px;}
.v0_c01156{vertical-align:0.000000px;}
.v1_c01156{vertical-align:23.086200px;}
.ls3_c01156{letter-spacing:0.000000px;}
.ls0_c01156{letter-spacing:0.007800px;}
.ls2_c01156{letter-spacing:0.012000px;}
.ls1_c01156{letter-spacing:7.525200px;}
.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;}
}
.ws0_c01156{word-spacing:-13.200000px;}
.ws1_c01156{word-spacing:-10.000001px;}
.ws2_c01156{word-spacing:0.000000px;}
._14_c01156{margin-left:-10.389600px;}
._11_c01156{margin-left:-7.142400px;}
._13_c01156{margin-left:-5.788800px;}
._15_c01156{margin-left:-4.764021px;}
._5_c01156{margin-left:-3.513600px;}
._3_c01156{margin-left:-2.304000px;}
._a_c01156{margin-left:-1.058400px;}
._7_c01156{width:1.216800px;}
._1_c01156{width:2.232000px;}
._2_c01156{width:4.053600px;}
._12_c01156{width:5.054400px;}
._0_c01156{width:6.220800px;}
._8_c01156{width:7.552800px;}
._4_c01156{width:8.582400px;}
._6_c01156{width:9.741600px;}
._10_c01156{width:11.059200px;}
._9_c01156{width:12.182400px;}
._b_c01156{width:13.233600px;}
._c_c01156{width:15.091200px;}
._e_c01156{width:16.912800px;}
._d_c01156{width:18.532800px;}
._f_c01156{width:21.729600px;}
.fc1_c01156{color:rgb(255,255,255);}
.fc0_c01156{color:rgb(0,0,0);}
.fs5_c01156{font-size:40.000002px;}
.fs2_c01156{font-size:48.000000px;}
.fs4_c01156{font-size:60.000000px;}
.fs1_c01156{font-size:72.000000px;}
.fs0_c01156{font-size:78.000000px;}
.fs3_c01156{font-size:96.000000px;}
.y0_c01156{bottom:0.000000px;}
.y17_c01156{bottom:67.500000px;}
.y19_c01156{bottom:140.250000px;}
.y18_c01156{bottom:189.750000px;}
.y14_c01156{bottom:331.500000px;}
.y13_c01156{bottom:358.500000px;}
.y12_c01156{bottom:405.000000px;}
.y11_c01156{bottom:475.500000px;}
.y10_c01156{bottom:502.500000px;}
.yf_c01156{bottom:529.500000px;}
.ye_c01156{bottom:556.500000px;}
.yd_c01156{bottom:604.500000px;}
.yc_c01156{bottom:631.500000px;}
.yb_c01156{bottom:658.500000px;}
.ya_c01156{bottom:685.500000px;}
.y9_c01156{bottom:733.500000px;}
.y8_c01156{bottom:760.500000px;}
.y7_c01156{bottom:787.500000px;}
.y6_c01156{bottom:835.500000px;}
.y5_c01156{bottom:862.500000px;}
.y4_c01156{bottom:889.500000px;}
.y3_c01156{bottom:916.500000px;}
.y2_c01156{bottom:943.500000px;}
.y1_c01156{bottom:990.000000px;}
.y15_c01156{bottom:1066.500000px;}
.y16_c01156{bottom:1194.000000px;}
.h6_c01156{height:27.421876px;}
.h5_c01156{height:56.074219px;}
.h1_c01156{height:56.100586px;}
.h2_c01156{height:67.746094px;}
.h3_c01156{height:68.250262px;}
.h4_c01156{height:90.328125px;}
.h0_c01156{height:1263.000000px;}
.w0_c01156{width:892.500000px;}
.x0_c01156{left:0.000000px;}
.x1_c01156{left:134.787405px;}
.x2_c01156{left:163.798875px;}
.x3_c01156{left:432.515100px;}
.x4_c01156{left:817.725150px;}
@media print{
.v3_c01156{vertical-align:-29.333333pt;}
.v2_c01156{vertical-align:-20.521067pt;}
.v0_c01156{vertical-align:0.000000pt;}
.v1_c01156{vertical-align:20.521067pt;}
.ls3_c01156{letter-spacing:0.000000pt;}
.ls0_c01156{letter-spacing:0.006933pt;}
.ls2_c01156{letter-spacing:0.010667pt;}
.ls1_c01156{letter-spacing:6.689067pt;}
.ws0_c01156{word-spacing:-11.733333pt;}
.ws1_c01156{word-spacing:-8.888889pt;}
.ws2_c01156{word-spacing:0.000000pt;}
._14_c01156{margin-left:-9.235200pt;}
._11_c01156{margin-left:-6.348800pt;}
._13_c01156{margin-left:-5.145600pt;}
._15_c01156{margin-left:-4.234685pt;}
._5_c01156{margin-left:-3.123200pt;}
._3_c01156{margin-left:-2.048000pt;}
._a_c01156{margin-left:-0.940800pt;}
._7_c01156{width:1.081600pt;}
._1_c01156{width:1.984000pt;}
._2_c01156{width:3.603200pt;}
._12_c01156{width:4.492800pt;}
._0_c01156{width:5.529600pt;}
._8_c01156{width:6.713600pt;}
._4_c01156{width:7.628800pt;}
._6_c01156{width:8.659200pt;}
._10_c01156{width:9.830400pt;}
._9_c01156{width:10.828800pt;}
._b_c01156{width:11.763200pt;}
._c_c01156{width:13.414400pt;}
._e_c01156{width:15.033600pt;}
._d_c01156{width:16.473600pt;}
._f_c01156{width:19.315200pt;}
.fs5_c01156{font-size:35.555557pt;}
.fs2_c01156{font-size:42.666667pt;}
.fs4_c01156{font-size:53.333333pt;}
.fs1_c01156{font-size:64.000000pt;}
.fs0_c01156{font-size:69.333333pt;}
.fs3_c01156{font-size:85.333333pt;}
.y0_c01156{bottom:0.000000pt;}
.y17_c01156{bottom:60.000000pt;}
.y19_c01156{bottom:124.666667pt;}
.y18_c01156{bottom:168.666667pt;}
.y14_c01156{bottom:294.666667pt;}
.y13_c01156{bottom:318.666667pt;}
.y12_c01156{bottom:360.000000pt;}
.y11_c01156{bottom:422.666667pt;}
.y10_c01156{bottom:446.666667pt;}
.yf_c01156{bottom:470.666667pt;}
.ye_c01156{bottom:494.666667pt;}
.yd_c01156{bottom:537.333333pt;}
.yc_c01156{bottom:561.333333pt;}
.yb_c01156{bottom:585.333333pt;}
.ya_c01156{bottom:609.333333pt;}
.y9_c01156{bottom:652.000000pt;}
.y8_c01156{bottom:676.000000pt;}
.y7_c01156{bottom:700.000000pt;}
.y6_c01156{bottom:742.666667pt;}
.y5_c01156{bottom:766.666667pt;}
.y4_c01156{bottom:790.666667pt;}
.y3_c01156{bottom:814.666667pt;}
.y2_c01156{bottom:838.666667pt;}
.y1_c01156{bottom:880.000000pt;}
.y15_c01156{bottom:948.000000pt;}
.y16_c01156{bottom:1061.333333pt;}
.h6_c01156{height:24.375001pt;}
.h5_c01156{height:49.843750pt;}
.h1_c01156{height:49.867188pt;}
.h2_c01156{height:60.218750pt;}
.h3_c01156{height:60.666900pt;}
.h4_c01156{height:80.291667pt;}
.h0_c01156{height:1122.666667pt;}
.w0_c01156{width:793.333333pt;}
.x0_c01156{left:0.000000pt;}
.x1_c01156{left:119.811027pt;}
.x2_c01156{left:145.599000pt;}
.x3_c01156{left:384.457867pt;}
.x4_c01156{left:726.866800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_adf085cb89b0e2169d23e2ed.woff2')format("woff");}.ff1_c01157{font-family:ff1_c01157;line-height:0.933105;font-style:normal;font-weight:normal;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_67fdaa6524e3e7ad4cf2010d.woff2')format("woff");}.ff2_c01157{font-family:ff2_c01157;line-height:0.976074;font-style:normal;font-weight:normal;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_ee1c9f1ee43a500f7d476250.woff2')format("woff");}.ff3_c01157{font-family:ff3_c01157;line-height:0.755859;font-style:normal;font-weight:normal;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_453e39c685c1e424459ece7a.woff2')format("woff");}.ff4_c01157{font-family:ff4_c01157;line-height:1.155762;font-style:normal;font-weight:normal;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_16925813c7d27fbc59cf2870.woff2')format("woff");}.ff5_c01157{font-family:ff5_c01157;line-height:1.100586;font-style:normal;font-weight: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_c01157;src:url('chunks/assets/font_098db4cd2e3e0e6f9bb16ec3.woff2')format("woff");}.ff6_c01157{font-family:ff6_c01157;line-height:0.891113;font-style: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);}
.v3_c01157{vertical-align:-33.000000px;}
.v2_c01157{vertical-align:-23.086200px;}
.v0_c01157{vertical-align:0.000000px;}
.v1_c01157{vertical-align:23.086200px;}
.ls2_c01157{letter-spacing:0.000000px;}
.ls3_c01157{letter-spacing:0.012000px;}
.ls0_c01157{letter-spacing:2.790300px;}
.ls1_c01157{letter-spacing:3.999999px;}
.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;}
}
.ws0_c01157{word-spacing:0.000000px;}
._13_c01157{margin-left:-10.512000px;}
._14_c01157{margin-left:-5.114400px;}
._e_c01157{margin-left:-4.024800px;}
._0_c01157{margin-left:-2.138400px;}
._6_c01157{margin-left:-1.137600px;}
._2_c01157{width:1.094400px;}
._4_c01157{width:2.203200px;}
._5_c01157{width:4.233600px;}
._3_c01157{width:5.385600px;}
._8_c01157{width:6.465600px;}
._7_c01157{width:7.610400px;}
._1_c01157{width:8.611200px;}
._15_c01157{width:9.863700px;}
._11_c01157{width:11.116800px;}
._10_c01157{width:12.139200px;}
._12_c01157{width:14.227200px;}
._c_c01157{width:15.969600px;}
._d_c01157{width:17.020800px;}
._f_c01157{width:21.060000px;}
._a_c01157{width:22.068000px;}
._9_c01157{width:23.198400px;}
._b_c01157{width:24.861600px;}
.fc0_c01157{color:rgb(0,0,0);}
.fs4_c01157{font-size:40.000002px;}
.fs1_c01157{font-size:48.000000px;}
.fs2_c01157{font-size:54.000000px;}
.fs3_c01157{font-size:60.000000px;}
.fs0_c01157{font-size:72.000000px;}
.y0_c01157{bottom:0.000000px;}
.yc_c01157{bottom:12.000000px;}
.ye_c01157{bottom:67.500000px;}
.y10_c01157{bottom:132.000000px;}
.yf_c01157{bottom:159.750000px;}
.yb_c01157{bottom:274.500000px;}
.ya_c01157{bottom:831.000000px;}
.y9_c01157{bottom:858.000000px;}
.y8_c01157{bottom:885.000000px;}
.y7_c01157{bottom:912.000000px;}
.y6_c01157{bottom:939.000000px;}
.y5_c01157{bottom:966.000000px;}
.y4_c01157{bottom:993.000000px;}
.y3_c01157{bottom:1020.000000px;}
.y2_c01157{bottom:1068.000000px;}
.y1_c01157{bottom:1095.000000px;}
.yd_c01157{bottom:1194.000000px;}
.h7_c01157{height:35.312502px;}
.h4_c01157{height:42.292969px;}
.h6_c01157{height:44.208984px;}
.h1_c01157{height:51.187500px;}
.h8_c01157{height:52.968750px;}
.h5_c01157{height:56.074219px;}
.h2_c01157{height:57.211200px;}
.h3_c01157{height:525.000000px;}
.h0_c01157{height:1263.000000px;}
.w1_c01157{width:684.449850px;}
.w0_c01157{width:892.500000px;}
.x0_c01157{left:0.000000px;}
.x1_c01157{left:49.748025px;}
.x2_c01157{left:186.193800px;}
@media print{
.v3_c01157{vertical-align:-29.333333pt;}
.v2_c01157{vertical-align:-20.521067pt;}
.v0_c01157{vertical-align:0.000000pt;}
.v1_c01157{vertical-align:20.521067pt;}
.ls2_c01157{letter-spacing:0.000000pt;}
.ls3_c01157{letter-spacing:0.010667pt;}
.ls0_c01157{letter-spacing:2.480267pt;}
.ls1_c01157{letter-spacing:3.555555pt;}
.ws0_c01157{word-spacing:0.000000pt;}
._13_c01157{margin-left:-9.344000pt;}
._14_c01157{margin-left:-4.546133pt;}
._e_c01157{margin-left:-3.577600pt;}
._0_c01157{margin-left:-1.900800pt;}
._6_c01157{margin-left:-1.011200pt;}
._2_c01157{width:0.972800pt;}
._4_c01157{width:1.958400pt;}
._5_c01157{width:3.763200pt;}
._3_c01157{width:4.787200pt;}
._8_c01157{width:5.747200pt;}
._7_c01157{width:6.764800pt;}
._1_c01157{width:7.654400pt;}
._15_c01157{width:8.767733pt;}
._11_c01157{width:9.881600pt;}
._10_c01157{width:10.790400pt;}
._12_c01157{width:12.646400pt;}
._c_c01157{width:14.195200pt;}
._d_c01157{width:15.129600pt;}
._f_c01157{width:18.720000pt;}
._a_c01157{width:19.616000pt;}
._9_c01157{width:20.620800pt;}
._b_c01157{width:22.099200pt;}
.fs4_c01157{font-size:35.555557pt;}
.fs1_c01157{font-size:42.666667pt;}
.fs2_c01157{font-size:48.000000pt;}
.fs3_c01157{font-size:53.333333pt;}
.fs0_c01157{font-size:64.000000pt;}
.y0_c01157{bottom:0.000000pt;}
.yc_c01157{bottom:10.666667pt;}
.ye_c01157{bottom:60.000000pt;}
.y10_c01157{bottom:117.333333pt;}
.yf_c01157{bottom:142.000000pt;}
.yb_c01157{bottom:244.000000pt;}
.ya_c01157{bottom:738.666667pt;}
.y9_c01157{bottom:762.666667pt;}
.y8_c01157{bottom:786.666667pt;}
.y7_c01157{bottom:810.666667pt;}
.y6_c01157{bottom:834.666667pt;}
.y5_c01157{bottom:858.666667pt;}
.y4_c01157{bottom:882.666667pt;}
.y3_c01157{bottom:906.666667pt;}
.y2_c01157{bottom:949.333333pt;}
.y1_c01157{bottom:973.333333pt;}
.yd_c01157{bottom:1061.333333pt;}
.h7_c01157{height:31.388890pt;}
.h4_c01157{height:37.593750pt;}
.h6_c01157{height:39.296875pt;}
.h1_c01157{height:45.500000pt;}
.h8_c01157{height:47.083333pt;}
.h5_c01157{height:49.843750pt;}
.h2_c01157{height:50.854400pt;}
.h3_c01157{height:466.666667pt;}
.h0_c01157{height:1122.666667pt;}
.w1_c01157{width:608.399867pt;}
.w0_c01157{width:793.333333pt;}
.x0_c01157{left:0.000000pt;}
.x1_c01157{left:44.220467pt;}
.x2_c01157{left:165.505600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_82e7e922f45301a3d0d34fe0.woff2')format("woff");}.ff1_c01158{font-family:ff1_c01158;line-height:0.987793;font-style:normal;font-weight:normal;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_2854fc154d8b8f7c820e3516.woff2')format("woff");}.ff2_c01158{font-family:ff2_c01158;line-height:0.933105;font-style:normal;font-weight:normal;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_eb683e0952caffafbe179d1c.woff2')format("woff");}.ff3_c01158{font-family:ff3_c01158;line-height:1.155762;font-style: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);}
.v0_c01158{vertical-align:0.000000px;}
.ls1_c01158{letter-spacing:0.000000px;}
.ls0_c01158{letter-spacing:0.012000px;}
.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;}
}
.ws0_c01158{word-spacing:0.000000px;}
._b_c01158{margin-left:-3.426000px;}
._2_c01158{margin-left:-2.318400px;}
._a_c01158{margin-left:-1.288800px;}
._5_c01158{width:1.260000px;}
._0_c01158{width:2.325600px;}
._9_c01158{width:5.018400px;}
._7_c01158{width:7.084800px;}
._6_c01158{width:8.222400px;}
._1_c01158{width:9.324000px;}
._8_c01158{width:10.598400px;}
._4_c01158{width:11.599200px;}
._3_c01158{width:14.068800px;}
.fc0_c01158{color:rgb(0,0,0);}
.fs0_c01158{font-size:54.000000px;}
.fs2_c01158{font-size:60.000000px;}
.fs1_c01158{font-size:72.000000px;}
.y0_c01158{bottom:0.000000px;}
.y2_c01158{bottom:12.000000px;}
.y8_c01158{bottom:67.500000px;}
.y6_c01158{bottom:139.500000px;}
.y5_c01158{bottom:166.500000px;}
.y4_c01158{bottom:193.500000px;}
.y3_c01158{bottom:238.500000px;}
.y1_c01158{bottom:654.000000px;}
.y7_c01158{bottom:1194.000000px;}
.h2_c01158{height:42.292969px;}
.h4_c01158{height:51.187500px;}
.h5_c01158{height:56.074219px;}
.h3_c01158{height:387.000000px;}
.h1_c01158{height:459.000000px;}
.h0_c01158{height:1263.000000px;}
.w1_c01158{width:684.449850px;}
.w0_c01158{width:892.500000px;}
.x0_c01158{left:0.000000px;}
.x3_c01158{left:30.423060px;}
.x4_c01158{left:134.787405px;}
.x1_c01158{left:147.000000px;}
.x2_c01158{left:199.416900px;}
.x5_c01158{left:432.515100px;}
.x6_c01158{left:817.725150px;}
@media print{
.v0_c01158{vertical-align:0.000000pt;}
.ls1_c01158{letter-spacing:0.000000pt;}
.ls0_c01158{letter-spacing:0.010667pt;}
.ws0_c01158{word-spacing:0.000000pt;}
._b_c01158{margin-left:-3.045333pt;}
._2_c01158{margin-left:-2.060800pt;}
._a_c01158{margin-left:-1.145600pt;}
._5_c01158{width:1.120000pt;}
._0_c01158{width:2.067200pt;}
._9_c01158{width:4.460800pt;}
._7_c01158{width:6.297600pt;}
._6_c01158{width:7.308800pt;}
._1_c01158{width:8.288000pt;}
._8_c01158{width:9.420800pt;}
._4_c01158{width:10.310400pt;}
._3_c01158{width:12.505600pt;}
.fs0_c01158{font-size:48.000000pt;}
.fs2_c01158{font-size:53.333333pt;}
.fs1_c01158{font-size:64.000000pt;}
.y0_c01158{bottom:0.000000pt;}
.y2_c01158{bottom:10.666667pt;}
.y8_c01158{bottom:60.000000pt;}
.y6_c01158{bottom:124.000000pt;}
.y5_c01158{bottom:148.000000pt;}
.y4_c01158{bottom:172.000000pt;}
.y3_c01158{bottom:212.000000pt;}
.y1_c01158{bottom:581.333333pt;}
.y7_c01158{bottom:1061.333333pt;}
.h2_c01158{height:37.593750pt;}
.h4_c01158{height:45.500000pt;}
.h5_c01158{height:49.843750pt;}
.h3_c01158{height:344.000000pt;}
.h1_c01158{height:408.000000pt;}
.h0_c01158{height:1122.666667pt;}
.w1_c01158{width:608.399867pt;}
.w0_c01158{width:793.333333pt;}
.x0_c01158{left:0.000000pt;}
.x3_c01158{left:27.042720pt;}
.x4_c01158{left:119.811027pt;}
.x1_c01158{left:130.666667pt;}
.x2_c01158{left:177.259467pt;}
.x5_c01158{left:384.457867pt;}
.x6_c01158{left:726.866800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_910098e59a331b25e7d6c9eb.woff2')format("woff");}.ff1_c01159{font-family:ff1_c01159;line-height:0.783203;font-style:normal;font-weight:normal;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_a7a6001c5f070d31057e08e6.woff2')format("woff");}.ff2_c01159{font-family:ff2_c01159;line-height:0.933105;font-style:normal;font-weight:normal;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_b96e56e70af53b6b4fdae381.woff2')format("woff");}.ff3_c01159{font-family:ff3_c01159;line-height:0.755859;font-style:normal;font-weight:normal;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_b8bbc140ae9db96891a97f9d.woff2')format("woff");}.ff4_c01159{font-family:ff4_c01159;line-height:1.155762;font-style: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;}
.ls0_c01159{letter-spacing:0.000000px;}
.ls1_c01159{letter-spacing:0.012000px;}
.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;}
}
.ws0_c01159{word-spacing:0.000000px;}
._a_c01159{margin-left:-5.112000px;}
._4_c01159{margin-left:-3.247200px;}
._1_c01159{margin-left:-1.353600px;}
._2_c01159{width:1.058400px;}
._0_c01159{width:2.325600px;}
._3_c01159{width:3.664800px;}
._5_c01159{width:4.809600px;}
._8_c01159{width:6.004800px;}
._7_c01159{width:7.012800px;}
._6_c01159{width:8.913600px;}
._9_c01159{width:11.304000px;}
._b_c01159{width:12.398400px;}
._c_c01159{width:13.831200px;}
._f_c01159{width:16.488000px;}
._d_c01159{width:18.007200px;}
._e_c01159{width:21.189600px;}
.fc0_c01159{color:rgb(0,0,0);}
.fs0_c01159{font-size:54.000000px;}
.fs2_c01159{font-size:60.000000px;}
.fs1_c01159{font-size:72.000000px;}
.y0_c01159{bottom:0.000000px;}
.y2_c01159{bottom:12.000000px;}
.y9_c01159{bottom:67.500000px;}
.y7_c01159{bottom:178.500000px;}
.y6_c01159{bottom:205.500000px;}
.y5_c01159{bottom:232.500000px;}
.y4_c01159{bottom:259.500000px;}
.y3_c01159{bottom:286.500000px;}
.y1_c01159{bottom:331.500000px;}
.y8_c01159{bottom:1194.000000px;}
.h2_c01159{height:41.633789px;}
.h5_c01159{height:44.208984px;}
.h3_c01159{height:51.187500px;}
.h4_c01159{height:56.074219px;}
.h1_c01159{height:781.500000px;}
.h0_c01159{height:1263.000000px;}
.w1_c01159{width:684.449850px;}
.w0_c01159{width:892.500000px;}
.x0_c01159{left:0.000000px;}
.x3_c01159{left:49.748025px;}
.x1_c01159{left:61.500000px;}
.x2_c01159{left:295.340850px;}
@media print{
.v0_c01159{vertical-align:0.000000pt;}
.ls0_c01159{letter-spacing:0.000000pt;}
.ls1_c01159{letter-spacing:0.010667pt;}
.ws0_c01159{word-spacing:0.000000pt;}
._a_c01159{margin-left:-4.544000pt;}
._4_c01159{margin-left:-2.886400pt;}
._1_c01159{margin-left:-1.203200pt;}
._2_c01159{width:0.940800pt;}
._0_c01159{width:2.067200pt;}
._3_c01159{width:3.257600pt;}
._5_c01159{width:4.275200pt;}
._8_c01159{width:5.337600pt;}
._7_c01159{width:6.233600pt;}
._6_c01159{width:7.923200pt;}
._9_c01159{width:10.048000pt;}
._b_c01159{width:11.020800pt;}
._c_c01159{width:12.294400pt;}
._f_c01159{width:14.656000pt;}
._d_c01159{width:16.006400pt;}
._e_c01159{width:18.835200pt;}
.fs0_c01159{font-size:48.000000pt;}
.fs2_c01159{font-size:53.333333pt;}
.fs1_c01159{font-size:64.000000pt;}
.y0_c01159{bottom:0.000000pt;}
.y2_c01159{bottom:10.666667pt;}
.y9_c01159{bottom:60.000000pt;}
.y7_c01159{bottom:158.666667pt;}
.y6_c01159{bottom:182.666667pt;}
.y5_c01159{bottom:206.666667pt;}
.y4_c01159{bottom:230.666667pt;}
.y3_c01159{bottom:254.666667pt;}
.y1_c01159{bottom:294.666667pt;}
.y8_c01159{bottom:1061.333333pt;}
.h2_c01159{height:37.007812pt;}
.h5_c01159{height:39.296875pt;}
.h3_c01159{height:45.500000pt;}
.h4_c01159{height:49.843750pt;}
.h1_c01159{height:694.666667pt;}
.h0_c01159{height:1122.666667pt;}
.w1_c01159{width:608.399867pt;}
.w0_c01159{width:793.333333pt;}
.x0_c01159{left:0.000000pt;}
.x3_c01159{left:44.220467pt;}
.x1_c01159{left:54.666667pt;}
.x2_c01159{left:262.525200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_618a514548861596b7122156.woff2')format("woff");}.ff1_c01160{font-family:ff1_c01160;line-height:0.987793;font-style:normal;font-weight:normal;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_70ab694a55c108386605f47d.woff2')format("woff");}.ff2_c01160{font-family:ff2_c01160;line-height:0.933105;font-style:normal;font-weight:normal;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_07f517c89cfc01aa148c8fff.woff2')format("woff");}.ff3_c01160{font-family:ff3_c01160;line-height:1.155762;font-style: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);}
.v0_c01160{vertical-align:0.000000px;}
.ls1_c01160{letter-spacing:0.000000px;}
.ls0_c01160{letter-spacing:0.012000px;}
.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;}
}
.ws0_c01160{word-spacing:0.000000px;}
._7_c01160{margin-left:-3.426000px;}
._3_c01160{margin-left:-1.800000px;}
._5_c01160{width:1.216800px;}
._1_c01160{width:2.340000px;}
._2_c01160{width:4.010400px;}
._6_c01160{width:5.162400px;}
._0_c01160{width:6.429600px;}
._4_c01160{width:8.287200px;}
.fc0_c01160{color:rgb(0,0,0);}
.fs0_c01160{font-size:54.000000px;}
.fs2_c01160{font-size:60.000000px;}
.fs1_c01160{font-size:72.000000px;}
.y0_c01160{bottom:0.000000px;}
.y2_c01160{bottom:12.000000px;}
.y7_c01160{bottom:67.500000px;}
.y5_c01160{bottom:207.000000px;}
.y4_c01160{bottom:648.000000px;}
.y3_c01160{bottom:675.000000px;}
.y1_c01160{bottom:720.000000px;}
.y6_c01160{bottom:1194.000000px;}
.h2_c01160{height:42.292969px;}
.h3_c01160{height:51.187500px;}
.h5_c01160{height:56.074219px;}
.h1_c01160{height:393.000000px;}
.h4_c01160{height:409.500000px;}
.h0_c01160{height:1263.000000px;}
.w1_c01160{width:684.449850px;}
.w0_c01160{width:892.500000px;}
.x0_c01160{left:0.000000px;}
.x3_c01160{left:134.787405px;}
.x1_c01160{left:147.000000px;}
.x4_c01160{left:193.339350px;}
.x2_c01160{left:200.448600px;}
.x5_c01160{left:432.515100px;}
.x6_c01160{left:817.725150px;}
@media print{
.v0_c01160{vertical-align:0.000000pt;}
.ls1_c01160{letter-spacing:0.000000pt;}
.ls0_c01160{letter-spacing:0.010667pt;}
.ws0_c01160{word-spacing:0.000000pt;}
._7_c01160{margin-left:-3.045333pt;}
._3_c01160{margin-left:-1.600000pt;}
._5_c01160{width:1.081600pt;}
._1_c01160{width:2.080000pt;}
._2_c01160{width:3.564800pt;}
._6_c01160{width:4.588800pt;}
._0_c01160{width:5.715200pt;}
._4_c01160{width:7.366400pt;}
.fs0_c01160{font-size:48.000000pt;}
.fs2_c01160{font-size:53.333333pt;}
.fs1_c01160{font-size:64.000000pt;}
.y0_c01160{bottom:0.000000pt;}
.y2_c01160{bottom:10.666667pt;}
.y7_c01160{bottom:60.000000pt;}
.y5_c01160{bottom:184.000000pt;}
.y4_c01160{bottom:576.000000pt;}
.y3_c01160{bottom:600.000000pt;}
.y1_c01160{bottom:640.000000pt;}
.y6_c01160{bottom:1061.333333pt;}
.h2_c01160{height:37.593750pt;}
.h3_c01160{height:45.500000pt;}
.h5_c01160{height:49.843750pt;}
.h1_c01160{height:349.333333pt;}
.h4_c01160{height:364.000000pt;}
.h0_c01160{height:1122.666667pt;}
.w1_c01160{width:608.399867pt;}
.w0_c01160{width:793.333333pt;}
.x0_c01160{left:0.000000pt;}
.x3_c01160{left:119.811027pt;}
.x1_c01160{left:130.666667pt;}
.x4_c01160{left:171.857200pt;}
.x2_c01160{left:178.176533pt;}
.x5_c01160{left:384.457867pt;}
.x6_c01160{left:726.866800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2118422c59d45ef5b18cea36.woff2')format("woff");}.ff1_c01161{font-family:ff1_c01161;line-height:0.933105;font-style:normal;font-weight:normal;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_83b1561b4389aea970ca8e1b.woff2')format("woff");}.ff2_c01161{font-family:ff2_c01161;line-height:0.987793;font-style:normal;font-weight:normal;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_0fdf32ca29f456255ec36967.woff2')format("woff");}.ff3_c01161{font-family:ff3_c01161;line-height:0.756836;font-style:normal;font-weight:normal;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_cb15e356909e7571c51ae55a.woff2')format("woff");}.ff4_c01161{font-family:ff4_c01161;line-height:1.155762;font-style: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);}
.v0_c01161{vertical-align:0.000000px;}
.ls0_c01161{letter-spacing:0.000000px;}
.ls1_c01161{letter-spacing:0.012000px;}
.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;}
}
.ws0_c01161{word-spacing:0.000000px;}
._1_c01161{margin-left:-3.384000px;}
._3_c01161{margin-left:-1.648800px;}
._9_c01161{width:1.036800px;}
._5_c01161{width:2.116800px;}
._7_c01161{width:3.708000px;}
._b_c01161{width:5.652000px;}
._8_c01161{width:7.394400px;}
._6_c01161{width:8.949600px;}
._a_c01161{width:9.957600px;}
._0_c01161{width:11.016000px;}
._4_c01161{width:12.715200px;}
._2_c01161{width:14.443200px;}
.fc0_c01161{color:rgb(0,0,0);}
.fs1_c01161{font-size:54.000000px;}
.fs2_c01161{font-size:60.000000px;}
.fs0_c01161{font-size:72.000000px;}
.y0_c01161{bottom:0.000000px;}
.y5_c01161{bottom:12.000000px;}
.ya_c01161{bottom:67.500000px;}
.y8_c01161{bottom:153.000000px;}
.y7_c01161{bottom:525.000000px;}
.y6_c01161{bottom:552.000000px;}
.y4_c01161{bottom:597.000000px;}
.y3_c01161{bottom:1041.000000px;}
.y2_c01161{bottom:1068.000000px;}
.y1_c01161{bottom:1095.000000px;}
.y9_c01161{bottom:1194.000000px;}
.h3_c01161{height:42.292969px;}
.h6_c01161{height:44.208984px;}
.h1_c01161{height:51.187500px;}
.h5_c01161{height:56.074219px;}
.h4_c01161{height:340.500000px;}
.h2_c01161{height:412.500000px;}
.h0_c01161{height:1263.000000px;}
.w1_c01161{width:684.449850px;}
.w0_c01161{width:892.500000px;}
.x0_c01161{left:0.000000px;}
.x1_c01161{left:49.748025px;}
.x2_c01161{left:61.500000px;}
.x4_c01161{left:193.764450px;}
.x3_c01161{left:200.873700px;}
@media print{
.v0_c01161{vertical-align:0.000000pt;}
.ls0_c01161{letter-spacing:0.000000pt;}
.ls1_c01161{letter-spacing:0.010667pt;}
.ws0_c01161{word-spacing:0.000000pt;}
._1_c01161{margin-left:-3.008000pt;}
._3_c01161{margin-left:-1.465600pt;}
._9_c01161{width:0.921600pt;}
._5_c01161{width:1.881600pt;}
._7_c01161{width:3.296000pt;}
._b_c01161{width:5.024000pt;}
._8_c01161{width:6.572800pt;}
._6_c01161{width:7.955200pt;}
._a_c01161{width:8.851200pt;}
._0_c01161{width:9.792000pt;}
._4_c01161{width:11.302400pt;}
._2_c01161{width:12.838400pt;}
.fs1_c01161{font-size:48.000000pt;}
.fs2_c01161{font-size:53.333333pt;}
.fs0_c01161{font-size:64.000000pt;}
.y0_c01161{bottom:0.000000pt;}
.y5_c01161{bottom:10.666667pt;}
.ya_c01161{bottom:60.000000pt;}
.y8_c01161{bottom:136.000000pt;}
.y7_c01161{bottom:466.666667pt;}
.y6_c01161{bottom:490.666667pt;}
.y4_c01161{bottom:530.666667pt;}
.y3_c01161{bottom:925.333333pt;}
.y2_c01161{bottom:949.333333pt;}
.y1_c01161{bottom:973.333333pt;}
.y9_c01161{bottom:1061.333333pt;}
.h3_c01161{height:37.593750pt;}
.h6_c01161{height:39.296875pt;}
.h1_c01161{height:45.500000pt;}
.h5_c01161{height:49.843750pt;}
.h4_c01161{height:302.666667pt;}
.h2_c01161{height:366.666667pt;}
.h0_c01161{height:1122.666667pt;}
.w1_c01161{width:608.399867pt;}
.w0_c01161{width:793.333333pt;}
.x0_c01161{left:0.000000pt;}
.x1_c01161{left:44.220467pt;}
.x2_c01161{left:54.666667pt;}
.x4_c01161{left:172.235067pt;}
.x3_c01161{left:178.554400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e7974551167c6eb80f40fa68.woff2')format("woff");}.ff1_c01162{font-family:ff1_c01162;line-height:0.934082;font-style:normal;font-weight:normal;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_755e0e9a10ee549ae6d96db3.woff2')format("woff");}.ff2_c01162{font-family:ff2_c01162;line-height:0.975586;font-style:normal;font-weight:normal;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_ed1165b14cbdf15e9a8befa1.woff2')format("woff");}.ff3_c01162{font-family:ff3_c01162;line-height:1.155762;font-style: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;}
.ls1_c01162{letter-spacing:0.000000px;}
.ls0_c01162{letter-spacing:0.012000px;}
.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;}
}
.ws0_c01162{word-spacing:0.000000px;}
._1_c01162{margin-left:-4.204800px;}
._b_c01162{margin-left:-2.498400px;}
._4_c01162{margin-left:-1.000800px;}
._3_c01162{width:1.022400px;}
._5_c01162{width:2.023200px;}
._0_c01162{width:3.031200px;}
._6_c01162{width:4.118400px;}
._e_c01162{width:5.788800px;}
._2_c01162{width:7.250400px;}
._8_c01162{width:8.582400px;}
._9_c01162{width:9.705600px;}
._d_c01162{width:10.706400px;}
._a_c01162{width:12.708000px;}
._c_c01162{width:15.177600px;}
._7_c01162{width:16.920000px;}
.fc0_c01162{color:rgb(0,0,0);}
.fs1_c01162{font-size:54.000000px;}
.fs2_c01162{font-size:60.000000px;}
.fs0_c01162{font-size:72.000000px;}
.y0_c01162{bottom:0.000000px;}
.y5_c01162{bottom:12.000000px;}
.ya_c01162{bottom:67.500000px;}
.y8_c01162{bottom:157.500000px;}
.y7_c01162{bottom:184.500000px;}
.y6_c01162{bottom:211.500000px;}
.y4_c01162{bottom:256.500000px;}
.y3_c01162{bottom:1041.000000px;}
.y2_c01162{bottom:1068.000000px;}
.y1_c01162{bottom:1095.000000px;}
.y9_c01162{bottom:1194.000000px;}
.h3_c01162{height:41.633789px;}
.h1_c01162{height:51.257812px;}
.h4_c01162{height:56.074219px;}
.h2_c01162{height:753.000000px;}
.h0_c01162{height:1263.000000px;}
.w1_c01162{width:684.449850px;}
.w0_c01162{width:892.500000px;}
.x0_c01162{left:0.000000px;}
.x1_c01162{left:134.787405px;}
.x2_c01162{left:147.000000px;}
.x3_c01162{left:233.542650px;}
.x4_c01162{left:432.515100px;}
.x5_c01162{left:817.725150px;}
@media print{
.v0_c01162{vertical-align:0.000000pt;}
.ls1_c01162{letter-spacing:0.000000pt;}
.ls0_c01162{letter-spacing:0.010667pt;}
.ws0_c01162{word-spacing:0.000000pt;}
._1_c01162{margin-left:-3.737600pt;}
._b_c01162{margin-left:-2.220800pt;}
._4_c01162{margin-left:-0.889600pt;}
._3_c01162{width:0.908800pt;}
._5_c01162{width:1.798400pt;}
._0_c01162{width:2.694400pt;}
._6_c01162{width:3.660800pt;}
._e_c01162{width:5.145600pt;}
._2_c01162{width:6.444800pt;}
._8_c01162{width:7.628800pt;}
._9_c01162{width:8.627200pt;}
._d_c01162{width:9.516800pt;}
._a_c01162{width:11.296000pt;}
._c_c01162{width:13.491200pt;}
._7_c01162{width:15.040000pt;}
.fs1_c01162{font-size:48.000000pt;}
.fs2_c01162{font-size:53.333333pt;}
.fs0_c01162{font-size:64.000000pt;}
.y0_c01162{bottom:0.000000pt;}
.y5_c01162{bottom:10.666667pt;}
.ya_c01162{bottom:60.000000pt;}
.y8_c01162{bottom:140.000000pt;}
.y7_c01162{bottom:164.000000pt;}
.y6_c01162{bottom:188.000000pt;}
.y4_c01162{bottom:228.000000pt;}
.y3_c01162{bottom:925.333333pt;}
.y2_c01162{bottom:949.333333pt;}
.y1_c01162{bottom:973.333333pt;}
.y9_c01162{bottom:1061.333333pt;}
.h3_c01162{height:37.007812pt;}
.h1_c01162{height:45.562500pt;}
.h4_c01162{height:49.843750pt;}
.h2_c01162{height:669.333333pt;}
.h0_c01162{height:1122.666667pt;}
.w1_c01162{width:608.399867pt;}
.w0_c01162{width:793.333333pt;}
.x0_c01162{left:0.000000pt;}
.x1_c01162{left:119.811027pt;}
.x2_c01162{left:130.666667pt;}
.x3_c01162{left:207.593467pt;}
.x4_c01162{left:384.457867pt;}
.x5_c01162{left:726.866800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_352661c49cc045e7e5896420.woff2')format("woff");}.ff1_c01163{font-family:ff1_c01163;line-height:0.933105;font-style:normal;font-weight:normal;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_145ae27ff1f885d3af4f95ec.woff2')format("woff");}.ff2_c01163{font-family:ff2_c01163;line-height:0.987793;font-style:normal;font-weight:normal;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_7619ee2094bd1b91cd5ac248.woff2')format("woff");}.ff3_c01163{font-family:ff3_c01163;line-height:0.755859;font-style:normal;font-weight:normal;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_117e69438838cc22d7e4a41d.woff2')format("woff");}.ff4_c01163{font-family:ff4_c01163;line-height:1.155762;font-style:normal;font-weight:normal;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_5541a30fe6153d5a4d1410e2.woff2')format("woff");}.ff5_c01163{font-family:ff5_c01163;line-height:1.100586;font-style:normal;font-weight: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_c01163;src:url('chunks/assets/font_b502f7705a28c41d9d4fae43.woff2')format("woff");}.ff6_c01163{font-family:ff6_c01163;line-height:0.889648;font-style: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);}
.v2_c01163{vertical-align:-33.000000px;}
.v0_c01163{vertical-align:0.000000px;}
.v1_c01163{vertical-align:23.086200px;}
.ls1_c01163{letter-spacing:0.000000px;}
.ls2_c01163{letter-spacing:0.012000px;}
.ls0_c01163{letter-spacing:21.706200px;}
.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;}
}
.ws0_c01163{word-spacing:-10.000001px;}
.ws1_c01163{word-spacing:0.000000px;}
._d_c01163{margin-left:-10.584000px;}
._12_c01163{margin-left:-4.903101px;}
._5_c01163{margin-left:-3.362400px;}
._3_c01163{margin-left:-2.282400px;}
._10_c01163{margin-left:-1.008000px;}
._8_c01163{width:1.245600px;}
._2_c01163{width:2.383200px;}
._1_c01163{width:3.412800px;}
._7_c01163{width:4.536000px;}
._0_c01163{width:5.752800px;}
._4_c01163{width:8.085600px;}
._6_c01163{width:9.136800px;}
._f_c01163{width:10.252800px;}
._e_c01163{width:11.541600px;}
._b_c01163{width:13.086900px;}
._11_c01163{width:14.232600px;}
._c_c01163{width:15.523200px;}
._a_c01163{width:16.682400px;}
._9_c01163{width:17.906400px;}
.fc0_c01163{color:rgb(0,0,0);}
.fs4_c01163{font-size:40.000002px;}
.fs1_c01163{font-size:48.000000px;}
.fs2_c01163{font-size:54.000000px;}
.fs3_c01163{font-size:60.000000px;}
.fs0_c01163{font-size:72.000000px;}
.y0_c01163{bottom:0.000000px;}
.y5_c01163{bottom:12.000000px;}
.yd_c01163{bottom:67.500000px;}
.yf_c01163{bottom:132.000000px;}
.ye_c01163{bottom:159.750000px;}
.yb_c01163{bottom:198.000000px;}
.ya_c01163{bottom:547.500000px;}
.y9_c01163{bottom:574.500000px;}
.y8_c01163{bottom:601.500000px;}
.y7_c01163{bottom:628.500000px;}
.y6_c01163{bottom:655.500000px;}
.y4_c01163{bottom:700.500000px;}
.y3_c01163{bottom:1041.000000px;}
.y2_c01163{bottom:1068.000000px;}
.y1_c01163{bottom:1095.000000px;}
.yc_c01163{bottom:1194.000000px;}
.h8_c01163{height:35.312502px;}
.h4_c01163{height:42.292969px;}
.h7_c01163{height:44.208984px;}
.h1_c01163{height:51.187500px;}
.h9_c01163{height:52.968750px;}
.h6_c01163{height:56.074219px;}
.h2_c01163{height:57.211200px;}
.h3_c01163{height:309.000000px;}
.h5_c01163{height:318.000000px;}
.h0_c01163{height:1263.000000px;}
.w1_c01163{width:684.449850px;}
.w0_c01163{width:892.500000px;}
.x0_c01163{left:0.000000px;}
.x1_c01163{left:49.748025px;}
.x2_c01163{left:61.500000px;}
.x4_c01163{left:102.566985px;}
.x3_c01163{left:255.882300px;}
@media print{
.v2_c01163{vertical-align:-29.333333pt;}
.v0_c01163{vertical-align:0.000000pt;}
.v1_c01163{vertical-align:20.521067pt;}
.ls1_c01163{letter-spacing:0.000000pt;}
.ls2_c01163{letter-spacing:0.010667pt;}
.ls0_c01163{letter-spacing:19.294400pt;}
.ws0_c01163{word-spacing:-8.888889pt;}
.ws1_c01163{word-spacing:0.000000pt;}
._d_c01163{margin-left:-9.408000pt;}
._12_c01163{margin-left:-4.358312pt;}
._5_c01163{margin-left:-2.988800pt;}
._3_c01163{margin-left:-2.028800pt;}
._10_c01163{margin-left:-0.896000pt;}
._8_c01163{width:1.107200pt;}
._2_c01163{width:2.118400pt;}
._1_c01163{width:3.033600pt;}
._7_c01163{width:4.032000pt;}
._0_c01163{width:5.113600pt;}
._4_c01163{width:7.187200pt;}
._6_c01163{width:8.121600pt;}
._f_c01163{width:9.113600pt;}
._e_c01163{width:10.259200pt;}
._b_c01163{width:11.632800pt;}
._11_c01163{width:12.651200pt;}
._c_c01163{width:13.798400pt;}
._a_c01163{width:14.828800pt;}
._9_c01163{width:15.916800pt;}
.fs4_c01163{font-size:35.555557pt;}
.fs1_c01163{font-size:42.666667pt;}
.fs2_c01163{font-size:48.000000pt;}
.fs3_c01163{font-size:53.333333pt;}
.fs0_c01163{font-size:64.000000pt;}
.y0_c01163{bottom:0.000000pt;}
.y5_c01163{bottom:10.666667pt;}
.yd_c01163{bottom:60.000000pt;}
.yf_c01163{bottom:117.333333pt;}
.ye_c01163{bottom:142.000000pt;}
.yb_c01163{bottom:176.000000pt;}
.ya_c01163{bottom:486.666667pt;}
.y9_c01163{bottom:510.666667pt;}
.y8_c01163{bottom:534.666667pt;}
.y7_c01163{bottom:558.666667pt;}
.y6_c01163{bottom:582.666667pt;}
.y4_c01163{bottom:622.666667pt;}
.y3_c01163{bottom:925.333333pt;}
.y2_c01163{bottom:949.333333pt;}
.y1_c01163{bottom:973.333333pt;}
.yc_c01163{bottom:1061.333333pt;}
.h8_c01163{height:31.388890pt;}
.h4_c01163{height:37.593750pt;}
.h7_c01163{height:39.296875pt;}
.h1_c01163{height:45.500000pt;}
.h9_c01163{height:47.083333pt;}
.h6_c01163{height:49.843750pt;}
.h2_c01163{height:50.854400pt;}
.h3_c01163{height:274.666667pt;}
.h5_c01163{height:282.666667pt;}
.h0_c01163{height:1122.666667pt;}
.w1_c01163{width:608.399867pt;}
.w0_c01163{width:793.333333pt;}
.x0_c01163{left:0.000000pt;}
.x1_c01163{left:44.220467pt;}
.x2_c01163{left:54.666667pt;}
.x4_c01163{left:91.170653pt;}
.x3_c01163{left:227.450933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4a4b0ef3975d254cd336bbc1.woff2')format("woff");}.ff1_c01164{font-family:ff1_c01164;line-height:0.976074;font-style:normal;font-weight:normal;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_35eb1d103505ce353a9f7430.woff2')format("woff");}.ff2_c01164{font-family:ff2_c01164;line-height:1.161133;font-style:normal;font-weight:normal;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_7c9d1b5a05707f66045be479.woff2')format("woff");}.ff3_c01164{font-family:ff3_c01164;line-height:0.932129;font-style:normal;font-weight:normal;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_8f392e52cc29798db468bb7a.woff2')format("woff");}.ff4_c01164{font-family:ff4_c01164;line-height:1.010254;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01164;src:url('chunks/assets/font_85973210120b56952d75b0ea.woff2')format("woff");}.ff5_c01164{font-family:ff5_c01164;line-height:1.005371;font-style:normal;font-weight: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_c01164;src:url('chunks/assets/font_9be4989d78d6ae2f248b93ec.woff2')format("woff");}.ff6_c01164{font-family:ff6_c01164;line-height:1.155762;font-style: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;}
.ls2_c01164{letter-spacing:-0.006000px;}
.ls1_c01164{letter-spacing:0.000000px;}
.ls0_c01164{letter-spacing:0.012000px;}
.ls3_c01164{letter-spacing:0.014400px;}
.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;}
}
.ws0_c01164{word-spacing:-0.086400px;}
.ws1_c01164{word-spacing:-0.072000px;}
.ws2_c01164{word-spacing:0.000000px;}
._a_c01164{margin-left:-4.810380px;}
._5_c01164{margin-left:-2.937600px;}
._3_c01164{margin-left:-1.353600px;}
._1_c01164{width:1.252800px;}
._0_c01164{width:2.808000px;}
._2_c01164{width:4.132800px;}
._4_c01164{width:5.400000px;}
._6_c01164{width:6.890400px;}
._9_c01164{width:8.127180px;}
._7_c01164{width:9.558000px;}
._8_c01164{width:10.753200px;}
._c_c01164{width:12.453600px;}
._b_c01164{width:14.364000px;}
._d_c01164{width:15.544800px;}
._f_c01164{width:19.144800px;}
._e_c01164{width:21.651180px;}
.fc0_c01164{color:rgb(0,0,0);}
.fs0_c01164{font-size:54.000000px;}
.fs2_c01164{font-size:60.000000px;}
.fs1_c01164{font-size:72.000000px;}
.y0_c01164{bottom:0.000000px;}
.y2_c01164{bottom:12.000000px;}
.y15_c01164{bottom:67.500000px;}
.y13_c01164{bottom:145.500000px;}
.y12_c01164{bottom:166.500000px;}
.y11_c01164{bottom:187.500000px;}
.y10_c01164{bottom:208.500000px;}
.yf_c01164{bottom:229.500000px;}
.ye_c01164{bottom:250.500000px;}
.yd_c01164{bottom:271.500000px;}
.yc_c01164{bottom:292.500000px;}
.yb_c01164{bottom:313.500000px;}
.ya_c01164{bottom:358.500000px;}
.y9_c01164{bottom:379.500000px;}
.y8_c01164{bottom:402.000000px;}
.y7_c01164{bottom:445.500000px;}
.y6_c01164{bottom:493.500000px;}
.y5_c01164{bottom:541.500000px;}
.y4_c01164{bottom:637.500000px;}
.y3_c01164{bottom:664.500000px;}
.y1_c01164{bottom:709.500000px;}
.y14_c01164{bottom:1194.000000px;}
.h2_c01164{height:42.292969px;}
.h4_c01164{height:51.257812px;}
.h6_c01164{height:52.417969px;}
.h7_c01164{height:56.074219px;}
.h5_c01164{height:56.455078px;}
.h3_c01164{height:67.746094px;}
.h1_c01164{height:403.500000px;}
.h0_c01164{height:1263.000000px;}
.w1_c01164{width:684.449850px;}
.w0_c01164{width:892.500000px;}
.x0_c01164{left:0.000000px;}
.x2_c01164{left:40.356900px;}
.x3_c01164{left:134.787405px;}
.x1_c01164{left:147.000000px;}
.x4_c01164{left:432.515100px;}
.x5_c01164{left:817.725150px;}
@media print{
.v0_c01164{vertical-align:0.000000pt;}
.ls2_c01164{letter-spacing:-0.005333pt;}
.ls1_c01164{letter-spacing:0.000000pt;}
.ls0_c01164{letter-spacing:0.010667pt;}
.ls3_c01164{letter-spacing:0.012800pt;}
.ws0_c01164{word-spacing:-0.076800pt;}
.ws1_c01164{word-spacing:-0.064000pt;}
.ws2_c01164{word-spacing:0.000000pt;}
._a_c01164{margin-left:-4.275893pt;}
._5_c01164{margin-left:-2.611200pt;}
._3_c01164{margin-left:-1.203200pt;}
._1_c01164{width:1.113600pt;}
._0_c01164{width:2.496000pt;}
._2_c01164{width:3.673600pt;}
._4_c01164{width:4.800000pt;}
._6_c01164{width:6.124800pt;}
._9_c01164{width:7.224160pt;}
._7_c01164{width:8.496000pt;}
._8_c01164{width:9.558400pt;}
._c_c01164{width:11.069867pt;}
._b_c01164{width:12.768000pt;}
._d_c01164{width:13.817600pt;}
._f_c01164{width:17.017600pt;}
._e_c01164{width:19.245493pt;}
.fs0_c01164{font-size:48.000000pt;}
.fs2_c01164{font-size:53.333333pt;}
.fs1_c01164{font-size:64.000000pt;}
.y0_c01164{bottom:0.000000pt;}
.y2_c01164{bottom:10.666667pt;}
.y15_c01164{bottom:60.000000pt;}
.y13_c01164{bottom:129.333333pt;}
.y12_c01164{bottom:148.000000pt;}
.y11_c01164{bottom:166.666667pt;}
.y10_c01164{bottom:185.333333pt;}
.yf_c01164{bottom:204.000000pt;}
.ye_c01164{bottom:222.666667pt;}
.yd_c01164{bottom:241.333333pt;}
.yc_c01164{bottom:260.000000pt;}
.yb_c01164{bottom:278.666667pt;}
.ya_c01164{bottom:318.666667pt;}
.y9_c01164{bottom:337.333333pt;}
.y8_c01164{bottom:357.333333pt;}
.y7_c01164{bottom:396.000000pt;}
.y6_c01164{bottom:438.666667pt;}
.y5_c01164{bottom:481.333333pt;}
.y4_c01164{bottom:566.666667pt;}
.y3_c01164{bottom:590.666667pt;}
.y1_c01164{bottom:630.666667pt;}
.y14_c01164{bottom:1061.333333pt;}
.h2_c01164{height:37.593750pt;}
.h4_c01164{height:45.562500pt;}
.h6_c01164{height:46.593750pt;}
.h7_c01164{height:49.843750pt;}
.h5_c01164{height:50.182292pt;}
.h3_c01164{height:60.218750pt;}
.h1_c01164{height:358.666667pt;}
.h0_c01164{height:1122.666667pt;}
.w1_c01164{width:608.399867pt;}
.w0_c01164{width:793.333333pt;}
.x0_c01164{left:0.000000pt;}
.x2_c01164{left:35.872800pt;}
.x3_c01164{left:119.811027pt;}
.x1_c01164{left:130.666667pt;}
.x4_c01164{left:384.457867pt;}
.x5_c01164{left:726.866800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_aecbb2ace85535c8ebb8c074.woff2')format("woff");}.ff1_c01165{font-family:ff1_c01165;line-height:1.010254;font-style:normal;font-weight:normal;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_fd3ea4706c5d8bbb4f0fd984.woff2')format("woff");}.ff2_c01165{font-family:ff2_c01165;line-height:1.005371;font-style:normal;font-weight:normal;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_b255004e55d23ce43cf83e9c.woff2')format("woff");}.ff3_c01165{font-family:ff3_c01165;line-height:0.755859;font-style:normal;font-weight:normal;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_6df5b4b6fd3c00275ca9e437.woff2')format("woff");}.ff4_c01165{font-family:ff4_c01165;line-height:1.155762;font-style: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;}
.ls4_c01165{letter-spacing:0.000000px;}
.ls5_c01165{letter-spacing:0.012000px;}
.ls0_c01165{letter-spacing:0.014400px;}
.ls1_c01165{letter-spacing:1.209600px;}
.ls3_c01165{letter-spacing:1.216800px;}
.ls2_c01165{letter-spacing:1.224000px;}
.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;}
}
.ws3_c01165{word-spacing:-19.224000px;}
.ws2_c01165{word-spacing:-19.209600px;}
.ws1_c01165{word-spacing:-18.014400px;}
.ws0_c01165{word-spacing:-18.000000px;}
.ws4_c01165{word-spacing:0.000000px;}
._a_c01165{margin-left:-6.350400px;}
._d_c01165{margin-left:-4.984500px;}
._14_c01165{margin-left:-3.721500px;}
._3_c01165{margin-left:-2.296800px;}
._5_c01165{margin-left:-1.108800px;}
._1_c01165{width:1.015200px;}
._9_c01165{width:2.781300px;}
._7_c01165{width:4.356000px;}
._8_c01165{width:6.012000px;}
._c_c01165{width:7.053900px;}
._b_c01165{width:8.215200px;}
._2_c01165{width:9.324000px;}
._0_c01165{width:10.324800px;}
._6_c01165{width:11.426400px;}
._4_c01165{width:12.643200px;}
._e_c01165{width:13.653300px;}
._f_c01165{width:16.308900px;}
._11_c01165{width:19.257600px;}
._10_c01165{width:20.956200px;}
._12_c01165{width:34.112100px;}
._13_c01165{width:36.496800px;}
.fc0_c01165{color:rgb(0,0,0);}
.fs1_c01165{font-size:60.000000px;}
.fs0_c01165{font-size:72.000000px;}
.y0_c01165{bottom:0.000000px;}
.y10_c01165{bottom:67.500000px;}
.ye_c01165{bottom:781.500000px;}
.yd_c01165{bottom:802.500000px;}
.yc_c01165{bottom:823.500000px;}
.yb_c01165{bottom:844.500000px;}
.ya_c01165{bottom:865.500000px;}
.y9_c01165{bottom:886.500000px;}
.y8_c01165{bottom:928.500000px;}
.y7_c01165{bottom:949.500000px;}
.y6_c01165{bottom:991.500000px;}
.y5_c01165{bottom:1012.500000px;}
.y4_c01165{bottom:1033.500000px;}
.y3_c01165{bottom:1054.500000px;}
.y2_c01165{bottom:1075.500000px;}
.y1_c01165{bottom:1096.500000px;}
.yf_c01165{bottom:1194.000000px;}
.h3_c01165{height:44.208984px;}
.h1_c01165{height:52.417969px;}
.h2_c01165{height:56.074219px;}
.h0_c01165{height:1263.000000px;}
.w0_c01165{width:892.500000px;}
.x0_c01165{left:0.000000px;}
.x1_c01165{left:49.748025px;}
@media print{
.v0_c01165{vertical-align:0.000000pt;}
.ls4_c01165{letter-spacing:0.000000pt;}
.ls5_c01165{letter-spacing:0.010667pt;}
.ls0_c01165{letter-spacing:0.012800pt;}
.ls1_c01165{letter-spacing:1.075200pt;}
.ls3_c01165{letter-spacing:1.081600pt;}
.ls2_c01165{letter-spacing:1.088000pt;}
.ws3_c01165{word-spacing:-17.088000pt;}
.ws2_c01165{word-spacing:-17.075200pt;}
.ws1_c01165{word-spacing:-16.012800pt;}
.ws0_c01165{word-spacing:-16.000000pt;}
.ws4_c01165{word-spacing:0.000000pt;}
._a_c01165{margin-left:-5.644800pt;}
._d_c01165{margin-left:-4.430667pt;}
._14_c01165{margin-left:-3.308000pt;}
._3_c01165{margin-left:-2.041600pt;}
._5_c01165{margin-left:-0.985600pt;}
._1_c01165{width:0.902400pt;}
._9_c01165{width:2.472267pt;}
._7_c01165{width:3.872000pt;}
._8_c01165{width:5.344000pt;}
._c_c01165{width:6.270133pt;}
._b_c01165{width:7.302400pt;}
._2_c01165{width:8.288000pt;}
._0_c01165{width:9.177600pt;}
._6_c01165{width:10.156800pt;}
._4_c01165{width:11.238400pt;}
._e_c01165{width:12.136267pt;}
._f_c01165{width:14.496800pt;}
._11_c01165{width:17.117867pt;}
._10_c01165{width:18.627733pt;}
._12_c01165{width:30.321867pt;}
._13_c01165{width:32.441600pt;}
.fs1_c01165{font-size:53.333333pt;}
.fs0_c01165{font-size:64.000000pt;}
.y0_c01165{bottom:0.000000pt;}
.y10_c01165{bottom:60.000000pt;}
.ye_c01165{bottom:694.666667pt;}
.yd_c01165{bottom:713.333333pt;}
.yc_c01165{bottom:732.000000pt;}
.yb_c01165{bottom:750.666667pt;}
.ya_c01165{bottom:769.333333pt;}
.y9_c01165{bottom:788.000000pt;}
.y8_c01165{bottom:825.333333pt;}
.y7_c01165{bottom:844.000000pt;}
.y6_c01165{bottom:881.333333pt;}
.y5_c01165{bottom:900.000000pt;}
.y4_c01165{bottom:918.666667pt;}
.y3_c01165{bottom:937.333333pt;}
.y2_c01165{bottom:956.000000pt;}
.y1_c01165{bottom:974.666667pt;}
.yf_c01165{bottom:1061.333333pt;}
.h3_c01165{height:39.296875pt;}
.h1_c01165{height:46.593750pt;}
.h2_c01165{height:49.843750pt;}
.h0_c01165{height:1122.666667pt;}
.w0_c01165{width:793.333333pt;}
.x0_c01165{left:0.000000pt;}
.x1_c01165{left:44.220467pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4e98ee96bef8c74973b28bbb.woff2')format("woff");}.ff1_c01166{font-family:ff1_c01166;line-height:0.884766;font-style:normal;font-weight:normal;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_231a324286e4b378b22ee5e3.woff2')format("woff");}.ff2_c01166{font-family:ff2_c01166;line-height:1.163086;font-style:normal;font-weight:normal;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_0b06ac6c3c0fadc8ff9d4cf5.woff2')format("woff");}.ff3_c01166{font-family:ff3_c01166;line-height:1.155762;font-style:normal;font-weight:normal;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_179f86894c448951878e97a8.woff2')format("woff");}.ff4_c01166{font-family:ff4_c01166;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01166;src:url('chunks/assets/font_52e36bea38413828ee933a52.woff2')format("woff");}.ff5_c01166{font-family:ff5_c01166;line-height:0.891113;font-style: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);}
.v3_c01166{vertical-align:-33.000000px;}
.v2_c01166{vertical-align:-23.086200px;}
.v0_c01166{vertical-align:0.000000px;}
.v1_c01166{vertical-align:23.086200px;}
.ls8_c01166{letter-spacing:-0.014400px;}
.ls9_c01166{letter-spacing:-0.007200px;}
.ls7_c01166{letter-spacing:0.000000px;}
.ls0_c01166{letter-spacing:0.007800px;}
.ls4_c01166{letter-spacing:0.012000px;}
.ls3_c01166{letter-spacing:0.014400px;}
.lsb_c01166{letter-spacing:2.496000px;}
.ls2_c01166{letter-spacing:3.394800px;}
.ls5_c01166{letter-spacing:3.999999px;}
.lsa_c01166{letter-spacing:8.402400px;}
.ls6_c01166{letter-spacing:9.999999px;}
.ls1_c01166{letter-spacing:15.552000px;}
.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;}
}
.ws2_c01166{word-spacing:-19.800000px;}
.ws0_c01166{word-spacing:-19.785600px;}
.ws4_c01166{word-spacing:-15.000000px;}
.ws1_c01166{word-spacing:-13.200000px;}
.ws3_c01166{word-spacing:-10.000001px;}
.ws5_c01166{word-spacing:0.000000px;}
._a_c01166{margin-left:-10.051200px;}
._d_c01166{margin-left:-8.690220px;}
._f_c01166{margin-left:-7.639920px;}
._e_c01166{margin-left:-5.889960px;}
._b_c01166{margin-left:-4.276800px;}
._0_c01166{margin-left:-2.887200px;}
._7_c01166{margin-left:-1.281600px;}
._5_c01166{width:1.152000px;}
._3_c01166{width:2.865600px;}
._8_c01166{width:4.478400px;}
._4_c01166{width:5.673600px;}
._6_c01166{width:7.358400px;}
._2_c01166{width:8.532000px;}
._9_c01166{width:9.547200px;}
._1_c01166{width:11.376000px;}
._c_c01166{width:12.693600px;}
._12_c01166{width:14.097600px;}
._1a_c01166{width:15.422400px;}
._10_c01166{width:16.524000px;}
._11_c01166{width:17.848800px;}
._15_c01166{width:21.009600px;}
._13_c01166{width:22.622400px;}
._18_c01166{width:24.451200px;}
._14_c01166{width:25.488000px;}
._16_c01166{width:27.069780px;}
._19_c01166{width:28.468800px;}
._17_c01166{width:29.800800px;}
._1d_c01166{width:31.665600px;}
._1c_c01166{width:33.213600px;}
._1b_c01166{width:34.531200px;}
._1e_c01166{width:35.899200px;}
.fc1_c01166{color:rgb(255,255,255);}
.fc0_c01166{color:rgb(0,0,0);}
.fs5_c01166{font-size:40.000002px;}
.fs2_c01166{font-size:48.000000px;}
.fs4_c01166{font-size:60.000000px;}
.fs1_c01166{font-size:72.000000px;}
.fs0_c01166{font-size:78.000000px;}
.fs3_c01166{font-size:96.000000px;}
.y0_c01166{bottom:0.000000px;}
.y15_c01166{bottom:67.500000px;}
.y1d_c01166{bottom:140.250000px;}
.y1c_c01166{bottom:181.500000px;}
.y1b_c01166{bottom:201.000000px;}
.y1a_c01166{bottom:228.750000px;}
.y19_c01166{bottom:270.000000px;}
.y18_c01166{bottom:297.750000px;}
.y17_c01166{bottom:339.000000px;}
.y16_c01166{bottom:366.750000px;}
.y12_c01166{bottom:450.000000px;}
.y11_c01166{bottom:477.000000px;}
.y10_c01166{bottom:525.000000px;}
.yf_c01166{bottom:552.000000px;}
.ye_c01166{bottom:579.000000px;}
.yd_c01166{bottom:606.000000px;}
.yc_c01166{bottom:633.000000px;}
.yb_c01166{bottom:681.000000px;}
.ya_c01166{bottom:708.000000px;}
.y9_c01166{bottom:735.000000px;}
.y8_c01166{bottom:762.000000px;}
.y7_c01166{bottom:789.000000px;}
.y6_c01166{bottom:816.000000px;}
.y5_c01166{bottom:843.000000px;}
.y4_c01166{bottom:870.000000px;}
.y3_c01166{bottom:918.000000px;}
.y2_c01166{bottom:945.000000px;}
.y1_c01166{bottom:991.500000px;}
.y13_c01166{bottom:1066.500000px;}
.y14_c01166{bottom:1194.000000px;}
.h6_c01166{height:35.781252px;}
.h7_c01166{height:53.671875px;}
.h1_c01166{height:55.224609px;}
.h5_c01166{height:56.074219px;}
.h2_c01166{height:67.746094px;}
.h3_c01166{height:68.250262px;}
.h4_c01166{height:90.328125px;}
.h0_c01166{height:1263.000000px;}
.w0_c01166{width:892.500000px;}
.x0_c01166{left:0.000000px;}
.x1_c01166{left:134.787405px;}
.x2_c01166{left:163.798875px;}
.x3_c01166{left:432.515100px;}
.x4_c01166{left:817.725150px;}
@media print{
.v3_c01166{vertical-align:-29.333333pt;}
.v2_c01166{vertical-align:-20.521067pt;}
.v0_c01166{vertical-align:0.000000pt;}
.v1_c01166{vertical-align:20.521067pt;}
.ls8_c01166{letter-spacing:-0.012800pt;}
.ls9_c01166{letter-spacing:-0.006400pt;}
.ls7_c01166{letter-spacing:0.000000pt;}
.ls0_c01166{letter-spacing:0.006933pt;}
.ls4_c01166{letter-spacing:0.010667pt;}
.ls3_c01166{letter-spacing:0.012800pt;}
.lsb_c01166{letter-spacing:2.218667pt;}
.ls2_c01166{letter-spacing:3.017600pt;}
.ls5_c01166{letter-spacing:3.555555pt;}
.lsa_c01166{letter-spacing:7.468800pt;}
.ls6_c01166{letter-spacing:8.888888pt;}
.ls1_c01166{letter-spacing:13.824000pt;}
.ws2_c01166{word-spacing:-17.600000pt;}
.ws0_c01166{word-spacing:-17.587200pt;}
.ws4_c01166{word-spacing:-13.333333pt;}
.ws1_c01166{word-spacing:-11.733333pt;}
.ws3_c01166{word-spacing:-8.888889pt;}
.ws5_c01166{word-spacing:0.000000pt;}
._a_c01166{margin-left:-8.934400pt;}
._d_c01166{margin-left:-7.724640pt;}
._f_c01166{margin-left:-6.791040pt;}
._e_c01166{margin-left:-5.235520pt;}
._b_c01166{margin-left:-3.801600pt;}
._0_c01166{margin-left:-2.566400pt;}
._7_c01166{margin-left:-1.139200pt;}
._5_c01166{width:1.024000pt;}
._3_c01166{width:2.547200pt;}
._8_c01166{width:3.980800pt;}
._4_c01166{width:5.043200pt;}
._6_c01166{width:6.540800pt;}
._2_c01166{width:7.584000pt;}
._9_c01166{width:8.486400pt;}
._1_c01166{width:10.112000pt;}
._c_c01166{width:11.283200pt;}
._12_c01166{width:12.531200pt;}
._1a_c01166{width:13.708800pt;}
._10_c01166{width:14.688000pt;}
._11_c01166{width:15.865600pt;}
._15_c01166{width:18.675200pt;}
._13_c01166{width:20.108800pt;}
._18_c01166{width:21.734400pt;}
._14_c01166{width:22.656000pt;}
._16_c01166{width:24.062027pt;}
._19_c01166{width:25.305600pt;}
._17_c01166{width:26.489600pt;}
._1d_c01166{width:28.147200pt;}
._1c_c01166{width:29.523200pt;}
._1b_c01166{width:30.694400pt;}
._1e_c01166{width:31.910400pt;}
.fs5_c01166{font-size:35.555557pt;}
.fs2_c01166{font-size:42.666667pt;}
.fs4_c01166{font-size:53.333333pt;}
.fs1_c01166{font-size:64.000000pt;}
.fs0_c01166{font-size:69.333333pt;}
.fs3_c01166{font-size:85.333333pt;}
.y0_c01166{bottom:0.000000pt;}
.y15_c01166{bottom:60.000000pt;}
.y1d_c01166{bottom:124.666667pt;}
.y1c_c01166{bottom:161.333333pt;}
.y1b_c01166{bottom:178.666667pt;}
.y1a_c01166{bottom:203.333333pt;}
.y19_c01166{bottom:240.000000pt;}
.y18_c01166{bottom:264.666667pt;}
.y17_c01166{bottom:301.333333pt;}
.y16_c01166{bottom:326.000000pt;}
.y12_c01166{bottom:400.000000pt;}
.y11_c01166{bottom:424.000000pt;}
.y10_c01166{bottom:466.666667pt;}
.yf_c01166{bottom:490.666667pt;}
.ye_c01166{bottom:514.666667pt;}
.yd_c01166{bottom:538.666667pt;}
.yc_c01166{bottom:562.666667pt;}
.yb_c01166{bottom:605.333333pt;}
.ya_c01166{bottom:629.333333pt;}
.y9_c01166{bottom:653.333333pt;}
.y8_c01166{bottom:677.333333pt;}
.y7_c01166{bottom:701.333333pt;}
.y6_c01166{bottom:725.333333pt;}
.y5_c01166{bottom:749.333333pt;}
.y4_c01166{bottom:773.333333pt;}
.y3_c01166{bottom:816.000000pt;}
.y2_c01166{bottom:840.000000pt;}
.y1_c01166{bottom:881.333333pt;}
.y13_c01166{bottom:948.000000pt;}
.y14_c01166{bottom:1061.333333pt;}
.h6_c01166{height:31.805557pt;}
.h7_c01166{height:47.708333pt;}
.h1_c01166{height:49.088542pt;}
.h5_c01166{height:49.843750pt;}
.h2_c01166{height:60.218750pt;}
.h3_c01166{height:60.666900pt;}
.h4_c01166{height:80.291667pt;}
.h0_c01166{height:1122.666667pt;}
.w0_c01166{width:793.333333pt;}
.x0_c01166{left:0.000000pt;}
.x1_c01166{left:119.811027pt;}
.x2_c01166{left:145.599000pt;}
.x3_c01166{left:384.457867pt;}
.x4_c01166{left:726.866800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_dc35b21a5b16acc6121f0861.woff2')format("woff");}.ff1_c01167{font-family:ff1_c01167;line-height:0.934082;font-style:normal;font-weight:normal;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_26dc1a382e126836b820d2f0.woff2')format("woff");}.ff2_c01167{font-family:ff2_c01167;line-height:0.939453;font-style:normal;font-weight:normal;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_a19ea3d0256c2cd9cec0015a.woff2')format("woff");}.ff3_c01167{font-family:ff3_c01167;line-height:0.755859;font-style:normal;font-weight:normal;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_7e5f253eaeec0f479d65f647.woff2')format("woff");}.ff4_c01167{font-family:ff4_c01167;line-height:1.155762;font-style:normal;font-weight:normal;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_6d943dd85b7d6b8a9397fdc9.woff2')format("woff");}.ff5_c01167{font-family:ff5_c01167;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01167;src:url('chunks/assets/font_90c554d17869a3ed5022b469.woff2')format("woff");}.ff6_c01167{font-family:ff6_c01167;line-height:0.889648;font-style: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);}
.m1_c01167{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3_c01167{vertical-align:-33.000000px;}
.v2_c01167{vertical-align:-23.086200px;}
.v0_c01167{vertical-align:0.000000px;}
.v1_c01167{vertical-align:23.086200px;}
.ls6_c01167{letter-spacing:-3.270000px;}
.ls4_c01167{letter-spacing:0.000000px;}
.ls1_c01167{letter-spacing:0.007800px;}
.ls5_c01167{letter-spacing:0.012000px;}
.ls3_c01167{letter-spacing:3.999999px;}
.ls0_c01167{letter-spacing:4.431000px;}
.ls2_c01167{letter-spacing:15.552000px;}
.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:-19.800000px;}
.ws0_c01167{word-spacing:-13.200000px;}
.ws2_c01167{word-spacing:-10.000001px;}
.ws3_c01167{word-spacing:0.000000px;}
._13_c01167{margin-left:-7.016400px;}
._14_c01167{margin-left:-5.180400px;}
._0_c01167{margin-left:-3.988800px;}
._7_c01167{margin-left:-2.937600px;}
._5_c01167{margin-left:-1.915200px;}
._4_c01167{width:1.188000px;}
._2_c01167{width:2.404800px;}
._f_c01167{width:4.197600px;}
._d_c01167{width:5.299200px;}
._e_c01167{width:6.667200px;}
._10_c01167{width:7.761600px;}
._a_c01167{width:9.583200px;}
._b_c01167{width:10.850400px;}
._9_c01167{width:12.009600px;}
._c_c01167{width:13.867200px;}
._12_c01167{width:14.889600px;}
._11_c01167{width:16.509600px;}
._3_c01167{width:17.697600px;}
._6_c01167{width:21.117600px;}
._8_c01167{width:22.348800px;}
._1_c01167{width:24.667200px;}
.fc0_c01167{color:rgb(0,0,0);}
.fs4_c01167{font-size:40.000002px;}
.fs1_c01167{font-size:48.000000px;}
.fs3_c01167{font-size:60.000000px;}
.fs0_c01167{font-size:72.000000px;}
.fs2_c01167{font-size:78.000000px;}
.y0_c01167{bottom:0.000000px;}
.y18_c01167{bottom:67.500000px;}
.y1e_c01167{bottom:132.000000px;}
.y1d_c01167{bottom:151.500000px;}
.y1c_c01167{bottom:179.250000px;}
.y1b_c01167{bottom:228.750000px;}
.y1a_c01167{bottom:270.000000px;}
.y19_c01167{bottom:297.750000px;}
.y16_c01167{bottom:390.000000px;}
.y15_c01167{bottom:417.000000px;}
.y14_c01167{bottom:444.000000px;}
.y13_c01167{bottom:471.000000px;}
.y12_c01167{bottom:498.000000px;}
.y11_c01167{bottom:546.000000px;}
.y10_c01167{bottom:573.000000px;}
.yf_c01167{bottom:600.000000px;}
.ye_c01167{bottom:648.000000px;}
.yd_c01167{bottom:675.000000px;}
.yc_c01167{bottom:702.000000px;}
.yb_c01167{bottom:729.000000px;}
.ya_c01167{bottom:756.000000px;}
.y9_c01167{bottom:802.500000px;}
.y8_c01167{bottom:864.000000px;}
.y7_c01167{bottom:912.000000px;}
.y6_c01167{bottom:939.000000px;}
.y5_c01167{bottom:966.000000px;}
.y4_c01167{bottom:993.000000px;}
.y3_c01167{bottom:1020.000000px;}
.y2_c01167{bottom:1068.000000px;}
.y1_c01167{bottom:1095.000000px;}
.y17_c01167{bottom:1194.000000px;}
.h6_c01167{height:35.781252px;}
.h5_c01167{height:44.208984px;}
.h1_c01167{height:51.257812px;}
.h7_c01167{height:53.671875px;}
.h4_c01167{height:56.074219px;}
.h3_c01167{height:56.100586px;}
.h2_c01167{height:57.258075px;}
.h0_c01167{height:1263.000000px;}
.w0_c01167{width:892.500000px;}
.x0_c01167{left:0.000000px;}
.x1_c01167{left:49.748025px;}
@media print{
.v3_c01167{vertical-align:-29.333333pt;}
.v2_c01167{vertical-align:-20.521067pt;}
.v0_c01167{vertical-align:0.000000pt;}
.v1_c01167{vertical-align:20.521067pt;}
.ls6_c01167{letter-spacing:-2.906667pt;}
.ls4_c01167{letter-spacing:0.000000pt;}
.ls1_c01167{letter-spacing:0.006933pt;}
.ls5_c01167{letter-spacing:0.010667pt;}
.ls3_c01167{letter-spacing:3.555555pt;}
.ls0_c01167{letter-spacing:3.938667pt;}
.ls2_c01167{letter-spacing:13.824000pt;}
.ws1_c01167{word-spacing:-17.600000pt;}
.ws0_c01167{word-spacing:-11.733333pt;}
.ws2_c01167{word-spacing:-8.888889pt;}
.ws3_c01167{word-spacing:0.000000pt;}
._13_c01167{margin-left:-6.236800pt;}
._14_c01167{margin-left:-4.604800pt;}
._0_c01167{margin-left:-3.545600pt;}
._7_c01167{margin-left:-2.611200pt;}
._5_c01167{margin-left:-1.702400pt;}
._4_c01167{width:1.056000pt;}
._2_c01167{width:2.137600pt;}
._f_c01167{width:3.731200pt;}
._d_c01167{width:4.710400pt;}
._e_c01167{width:5.926400pt;}
._10_c01167{width:6.899200pt;}
._a_c01167{width:8.518400pt;}
._b_c01167{width:9.644800pt;}
._9_c01167{width:10.675200pt;}
._c_c01167{width:12.326400pt;}
._12_c01167{width:13.235200pt;}
._11_c01167{width:14.675200pt;}
._3_c01167{width:15.731200pt;}
._6_c01167{width:18.771200pt;}
._8_c01167{width:19.865600pt;}
._1_c01167{width:21.926400pt;}
.fs4_c01167{font-size:35.555557pt;}
.fs1_c01167{font-size:42.666667pt;}
.fs3_c01167{font-size:53.333333pt;}
.fs0_c01167{font-size:64.000000pt;}
.fs2_c01167{font-size:69.333333pt;}
.y0_c01167{bottom:0.000000pt;}
.y18_c01167{bottom:60.000000pt;}
.y1e_c01167{bottom:117.333333pt;}
.y1d_c01167{bottom:134.666667pt;}
.y1c_c01167{bottom:159.333333pt;}
.y1b_c01167{bottom:203.333333pt;}
.y1a_c01167{bottom:240.000000pt;}
.y19_c01167{bottom:264.666667pt;}
.y16_c01167{bottom:346.666667pt;}
.y15_c01167{bottom:370.666667pt;}
.y14_c01167{bottom:394.666667pt;}
.y13_c01167{bottom:418.666667pt;}
.y12_c01167{bottom:442.666667pt;}
.y11_c01167{bottom:485.333333pt;}
.y10_c01167{bottom:509.333333pt;}
.yf_c01167{bottom:533.333333pt;}
.ye_c01167{bottom:576.000000pt;}
.yd_c01167{bottom:600.000000pt;}
.yc_c01167{bottom:624.000000pt;}
.yb_c01167{bottom:648.000000pt;}
.ya_c01167{bottom:672.000000pt;}
.y9_c01167{bottom:713.333333pt;}
.y8_c01167{bottom:768.000000pt;}
.y7_c01167{bottom:810.666667pt;}
.y6_c01167{bottom:834.666667pt;}
.y5_c01167{bottom:858.666667pt;}
.y4_c01167{bottom:882.666667pt;}
.y3_c01167{bottom:906.666667pt;}
.y2_c01167{bottom:949.333333pt;}
.y1_c01167{bottom:973.333333pt;}
.y17_c01167{bottom:1061.333333pt;}
.h6_c01167{height:31.805557pt;}
.h5_c01167{height:39.296875pt;}
.h1_c01167{height:45.562500pt;}
.h7_c01167{height:47.708333pt;}
.h4_c01167{height:49.843750pt;}
.h3_c01167{height:49.867188pt;}
.h2_c01167{height:50.896067pt;}
.h0_c01167{height:1122.666667pt;}
.w0_c01167{width:793.333333pt;}
.x0_c01167{left:0.000000pt;}
.x1_c01167{left:44.220467pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4d2b930ee153a584eb819250.woff2')format("woff");}.ff1_c01168{font-family:ff1_c01168;line-height:0.934082;font-style:normal;font-weight:normal;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_15a044cafc75f8a480d77c40.woff2')format("woff");}.ff2_c01168{font-family:ff2_c01168;line-height:1.155762;font-style:normal;font-weight:normal;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_ab67ff7abfe4649301684819.woff2')format("woff");}.ff3_c01168{font-family:ff3_c01168;line-height:1.059082;font-style:normal;font-weight:normal;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_ecca8b8e1bb56ec6b0fe0eb5.woff2')format("woff");}.ff4_c01168{font-family:ff4_c01168;line-height:0.889648;font-style: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);}
.v3_c01168{vertical-align:-33.000000px;}
.v2_c01168{vertical-align:-23.086200px;}
.v0_c01168{vertical-align:0.000000px;}
.v1_c01168{vertical-align:23.086200px;}
.ls6_c01168{letter-spacing:-0.009600px;}
.ls4_c01168{letter-spacing:0.000000px;}
.ls2_c01168{letter-spacing:0.012000px;}
.ls5_c01168{letter-spacing:0.014400px;}
.ls1_c01168{letter-spacing:2.415000px;}
.ls3_c01168{letter-spacing:3.999999px;}
.ls0_c01168{letter-spacing:28.308600px;}
.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;}
}
.ws2_c01168{word-spacing:-15.000000px;}
.ws0_c01168{word-spacing:-13.190400px;}
.ws1_c01168{word-spacing:-10.000001px;}
.ws3_c01168{word-spacing:0.000000px;}
._16_c01168{margin-left:-10.080000px;}
._c_c01168{margin-left:-6.768000px;}
._17_c01168{margin-left:-5.205600px;}
._2_c01168{margin-left:-4.132800px;}
._13_c01168{margin-left:-2.923200px;}
._4_c01168{margin-left:-1.828800px;}
._1_c01168{width:1.188000px;}
._0_c01168{width:2.296800px;}
._15_c01168{width:3.297600px;}
._5_c01168{width:4.341600px;}
._14_c01168{width:5.385600px;}
._3_c01168{width:6.386400px;}
._b_c01168{width:8.200800px;}
._a_c01168{width:9.417600px;}
._12_c01168{width:11.167200px;}
._7_c01168{width:12.405600px;}
._9_c01168{width:13.521600px;}
._8_c01168{width:14.724000px;}
._6_c01168{width:16.538400px;}
._10_c01168{width:17.868360px;}
._f_c01168{width:21.261600px;}
._e_c01168{width:22.754040px;}
._d_c01168{width:24.115380px;}
._1b_c01168{width:25.504980px;}
._11_c01168{width:27.011820px;}
._1a_c01168{width:29.940180px;}
._18_c01168{width:31.939200px;}
._19_c01168{width:33.033600px;}
.fc0_c01168{color:rgb(0,0,0);}
.fs3_c01168{font-size:40.000002px;}
.fs1_c01168{font-size:48.000000px;}
.fs2_c01168{font-size:60.000000px;}
.fs0_c01168{font-size:72.000000px;}
.y0_c01168{bottom:0.000000px;}
.y1c_c01168{bottom:67.500000px;}
.y20_c01168{bottom:140.250000px;}
.y1f_c01168{bottom:181.500000px;}
.y1e_c01168{bottom:209.250000px;}
.y1d_c01168{bottom:258.750000px;}
.y1a_c01168{bottom:357.000000px;}
.y19_c01168{bottom:384.000000px;}
.y18_c01168{bottom:411.000000px;}
.y17_c01168{bottom:438.000000px;}
.y16_c01168{bottom:465.000000px;}
.y15_c01168{bottom:492.000000px;}
.y14_c01168{bottom:519.000000px;}
.y13_c01168{bottom:546.000000px;}
.y12_c01168{bottom:573.000000px;}
.y11_c01168{bottom:600.000000px;}
.y10_c01168{bottom:627.000000px;}
.yf_c01168{bottom:654.000000px;}
.ye_c01168{bottom:702.000000px;}
.yd_c01168{bottom:729.000000px;}
.yc_c01168{bottom:777.000000px;}
.yb_c01168{bottom:804.000000px;}
.ya_c01168{bottom:831.000000px;}
.y9_c01168{bottom:858.000000px;}
.y8_c01168{bottom:906.000000px;}
.y7_c01168{bottom:933.000000px;}
.y6_c01168{bottom:960.000000px;}
.y5_c01168{bottom:987.000000px;}
.y4_c01168{bottom:1014.000000px;}
.y3_c01168{bottom:1041.000000px;}
.y2_c01168{bottom:1068.000000px;}
.y1_c01168{bottom:1095.000000px;}
.y1b_c01168{bottom:1194.000000px;}
.h4_c01168{height:33.652345px;}
.h5_c01168{height:50.478516px;}
.h1_c01168{height:51.257812px;}
.h3_c01168{height:56.074219px;}
.h2_c01168{height:57.258075px;}
.h0_c01168{height:1263.000000px;}
.w0_c01168{width:892.500000px;}
.x0_c01168{left:0.000000px;}
.x1_c01168{left:134.787405px;}
.x2_c01168{left:432.515100px;}
.x3_c01168{left:817.725150px;}
@media print{
.v3_c01168{vertical-align:-29.333333pt;}
.v2_c01168{vertical-align:-20.521067pt;}
.v0_c01168{vertical-align:0.000000pt;}
.v1_c01168{vertical-align:20.521067pt;}
.ls6_c01168{letter-spacing:-0.008533pt;}
.ls4_c01168{letter-spacing:0.000000pt;}
.ls2_c01168{letter-spacing:0.010667pt;}
.ls5_c01168{letter-spacing:0.012800pt;}
.ls1_c01168{letter-spacing:2.146667pt;}
.ls3_c01168{letter-spacing:3.555555pt;}
.ls0_c01168{letter-spacing:25.163200pt;}
.ws2_c01168{word-spacing:-13.333333pt;}
.ws0_c01168{word-spacing:-11.724800pt;}
.ws1_c01168{word-spacing:-8.888889pt;}
.ws3_c01168{word-spacing:0.000000pt;}
._16_c01168{margin-left:-8.960000pt;}
._c_c01168{margin-left:-6.016000pt;}
._17_c01168{margin-left:-4.627200pt;}
._2_c01168{margin-left:-3.673600pt;}
._13_c01168{margin-left:-2.598400pt;}
._4_c01168{margin-left:-1.625600pt;}
._1_c01168{width:1.056000pt;}
._0_c01168{width:2.041600pt;}
._15_c01168{width:2.931200pt;}
._5_c01168{width:3.859200pt;}
._14_c01168{width:4.787200pt;}
._3_c01168{width:5.676800pt;}
._b_c01168{width:7.289600pt;}
._a_c01168{width:8.371200pt;}
._12_c01168{width:9.926400pt;}
._7_c01168{width:11.027200pt;}
._9_c01168{width:12.019200pt;}
._8_c01168{width:13.088000pt;}
._6_c01168{width:14.700800pt;}
._10_c01168{width:15.882987pt;}
._f_c01168{width:18.899200pt;}
._e_c01168{width:20.225813pt;}
._d_c01168{width:21.435893pt;}
._1b_c01168{width:22.671093pt;}
._11_c01168{width:24.010507pt;}
._1a_c01168{width:26.613493pt;}
._18_c01168{width:28.390400pt;}
._19_c01168{width:29.363200pt;}
.fs3_c01168{font-size:35.555557pt;}
.fs1_c01168{font-size:42.666667pt;}
.fs2_c01168{font-size:53.333333pt;}
.fs0_c01168{font-size:64.000000pt;}
.y0_c01168{bottom:0.000000pt;}
.y1c_c01168{bottom:60.000000pt;}
.y20_c01168{bottom:124.666667pt;}
.y1f_c01168{bottom:161.333333pt;}
.y1e_c01168{bottom:186.000000pt;}
.y1d_c01168{bottom:230.000000pt;}
.y1a_c01168{bottom:317.333333pt;}
.y19_c01168{bottom:341.333333pt;}
.y18_c01168{bottom:365.333333pt;}
.y17_c01168{bottom:389.333333pt;}
.y16_c01168{bottom:413.333333pt;}
.y15_c01168{bottom:437.333333pt;}
.y14_c01168{bottom:461.333333pt;}
.y13_c01168{bottom:485.333333pt;}
.y12_c01168{bottom:509.333333pt;}
.y11_c01168{bottom:533.333333pt;}
.y10_c01168{bottom:557.333333pt;}
.yf_c01168{bottom:581.333333pt;}
.ye_c01168{bottom:624.000000pt;}
.yd_c01168{bottom:648.000000pt;}
.yc_c01168{bottom:690.666667pt;}
.yb_c01168{bottom:714.666667pt;}
.ya_c01168{bottom:738.666667pt;}
.y9_c01168{bottom:762.666667pt;}
.y8_c01168{bottom:805.333333pt;}
.y7_c01168{bottom:829.333333pt;}
.y6_c01168{bottom:853.333333pt;}
.y5_c01168{bottom:877.333333pt;}
.y4_c01168{bottom:901.333333pt;}
.y3_c01168{bottom:925.333333pt;}
.y2_c01168{bottom:949.333333pt;}
.y1_c01168{bottom:973.333333pt;}
.y1b_c01168{bottom:1061.333333pt;}
.h4_c01168{height:29.913196pt;}
.h5_c01168{height:44.869792pt;}
.h1_c01168{height:45.562500pt;}
.h3_c01168{height:49.843750pt;}
.h2_c01168{height:50.896067pt;}
.h0_c01168{height:1122.666667pt;}
.w0_c01168{width:793.333333pt;}
.x0_c01168{left:0.000000pt;}
.x1_c01168{left:119.811027pt;}
.x2_c01168{left:384.457867pt;}
.x3_c01168{left:726.866800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bb9ba108784af7e4acb2d7e8.woff2')format("woff");}.ff1_c01169{font-family:ff1_c01169;line-height:1.163086;font-style:normal;font-weight:normal;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_9b4706e46c4f3a93d6a596ab.woff2')format("woff");}.ff2_c01169{font-family:ff2_c01169;line-height:0.987793;font-style:normal;font-weight:normal;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_c28eae2a166d86c010fe22e7.woff2')format("woff");}.ff3_c01169{font-family:ff3_c01169;line-height:0.755859;font-style:normal;font-weight:normal;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_7844bc55a7c4c3a05a5e1a6c.woff2')format("woff");}.ff4_c01169{font-family:ff4_c01169;line-height:1.155762;font-style:normal;font-weight:normal;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_38c11fa7a02ea8c517ce33ce.woff2')format("woff");}.ff5_c01169{font-family:ff5_c01169;line-height:1.112305;font-style:normal;font-weight: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_fb91fc260d5c68951b252785.woff2')format("woff");}.ff6_c01169{font-family:ff6_c01169;line-height:0.888672;font-style: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);}
.v3_c01169{vertical-align:-33.000000px;}
.v2_c01169{vertical-align:-23.086200px;}
.v0_c01169{vertical-align:0.000000px;}
.v1_c01169{vertical-align:23.086200px;}
.ls1_c01169{letter-spacing:-0.009600px;}
.ls2_c01169{letter-spacing:-0.007200px;}
.ls0_c01169{letter-spacing:0.000000px;}
.ls4_c01169{letter-spacing:0.012000px;}
.ls3_c01169{letter-spacing:0.021600px;}
.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;}
}
.ws0_c01169{word-spacing:-17.064000px;}
.ws1_c01169{word-spacing:-13.190400px;}
.ws2_c01169{word-spacing:-10.000001px;}
.ws3_c01169{word-spacing:0.000000px;}
._13_c01169{margin-left:-6.642042px;}
._a_c01169{margin-left:-3.578400px;}
._6_c01169{margin-left:-2.534400px;}
._1_c01169{margin-left:-1.015200px;}
._3_c01169{width:1.087200px;}
._0_c01169{width:2.692800px;}
._e_c01169{width:3.909600px;}
._4_c01169{width:5.076000px;}
._5_c01169{width:6.163200px;}
._2_c01169{width:7.941600px;}
._7_c01169{width:9.590400px;}
._11_c01169{width:10.893600px;}
._10_c01169{width:12.168000px;}
._12_c01169{width:14.608800px;}
._d_c01169{width:22.010400px;}
._f_c01169{width:24.177600px;}
._c_c01169{width:26.020800px;}
._9_c01169{width:27.050400px;}
._8_c01169{width:29.671200px;}
._b_c01169{width:30.693600px;}
.fc1_c01169{color:transparent;}
.fc0_c01169{color:rgb(0,0,0);}
.fs4_c01169{font-size:40.000002px;}
.fs2_c01169{font-size:48.000000px;}
.fs1_c01169{font-size:54.000000px;}
.fs3_c01169{font-size:60.000000px;}
.fs0_c01169{font-size:72.000000px;}
.y0_c01169{bottom:0.000000px;}
.y8_c01169{bottom:10.500000px;}
.yc_c01169{bottom:12.000000px;}
.y7_c01169{bottom:27.000000px;}
.ye_c01169{bottom:67.500000px;}
.yf_c01169{bottom:140.250000px;}
.yb_c01169{bottom:177.000000px;}
.ya_c01169{bottom:564.000000px;}
.y9_c01169{bottom:591.000000px;}
.y6_c01169{bottom:636.000000px;}
.y5_c01169{bottom:987.000000px;}
.y4_c01169{bottom:1014.000000px;}
.y3_c01169{bottom:1041.000000px;}
.y2_c01169{bottom:1068.000000px;}
.y1_c01169{bottom:1095.000000px;}
.yd_c01169{bottom:1194.000000px;}
.h8_c01169{height:35.781252px;}
.h3_c01169{height:42.292969px;}
.h7_c01169{height:44.208984px;}
.h6_c01169{height:56.074219px;}
.h1_c01169{height:67.746094px;}
.h4_c01169{height:68.250262px;}
.h2_c01169{height:319.500000px;}
.h5_c01169{height:355.500000px;}
.h0_c01169{height:1263.000000px;}
.w1_c01169{width:684.449850px;}
.w0_c01169{width:892.500000px;}
.x0_c01169{left:0.000000px;}
.x2_c01169{left:8.287812px;}
.x1_c01169{left:49.748025px;}
.x4_c01169{left:61.500000px;}
.x5_c01169{left:190.626750px;}
.x3_c01169{left:222.217950px;}
@media print{
.v3_c01169{vertical-align:-29.333333pt;}
.v2_c01169{vertical-align:-20.521067pt;}
.v0_c01169{vertical-align:0.000000pt;}
.v1_c01169{vertical-align:20.521067pt;}
.ls1_c01169{letter-spacing:-0.008533pt;}
.ls2_c01169{letter-spacing:-0.006400pt;}
.ls0_c01169{letter-spacing:0.000000pt;}
.ls4_c01169{letter-spacing:0.010667pt;}
.ls3_c01169{letter-spacing:0.019200pt;}
.ws0_c01169{word-spacing:-15.168000pt;}
.ws1_c01169{word-spacing:-11.724800pt;}
.ws2_c01169{word-spacing:-8.888889pt;}
.ws3_c01169{word-spacing:0.000000pt;}
._13_c01169{margin-left:-5.904037pt;}
._a_c01169{margin-left:-3.180800pt;}
._6_c01169{margin-left:-2.252800pt;}
._1_c01169{margin-left:-0.902400pt;}
._3_c01169{width:0.966400pt;}
._0_c01169{width:2.393600pt;}
._e_c01169{width:3.475200pt;}
._4_c01169{width:4.512000pt;}
._5_c01169{width:5.478400pt;}
._2_c01169{width:7.059200pt;}
._7_c01169{width:8.524800pt;}
._11_c01169{width:9.683200pt;}
._10_c01169{width:10.816000pt;}
._12_c01169{width:12.985600pt;}
._d_c01169{width:19.564800pt;}
._f_c01169{width:21.491200pt;}
._c_c01169{width:23.129600pt;}
._9_c01169{width:24.044800pt;}
._8_c01169{width:26.374400pt;}
._b_c01169{width:27.283200pt;}
.fs4_c01169{font-size:35.555557pt;}
.fs2_c01169{font-size:42.666667pt;}
.fs1_c01169{font-size:48.000000pt;}
.fs3_c01169{font-size:53.333333pt;}
.fs0_c01169{font-size:64.000000pt;}
.y0_c01169{bottom:0.000000pt;}
.y8_c01169{bottom:9.333333pt;}
.yc_c01169{bottom:10.666667pt;}
.y7_c01169{bottom:24.000000pt;}
.ye_c01169{bottom:60.000000pt;}
.yf_c01169{bottom:124.666667pt;}
.yb_c01169{bottom:157.333333pt;}
.ya_c01169{bottom:501.333333pt;}
.y9_c01169{bottom:525.333333pt;}
.y6_c01169{bottom:565.333333pt;}
.y5_c01169{bottom:877.333333pt;}
.y4_c01169{bottom:901.333333pt;}
.y3_c01169{bottom:925.333333pt;}
.y2_c01169{bottom:949.333333pt;}
.y1_c01169{bottom:973.333333pt;}
.yd_c01169{bottom:1061.333333pt;}
.h8_c01169{height:31.805557pt;}
.h3_c01169{height:37.593750pt;}
.h7_c01169{height:39.296875pt;}
.h6_c01169{height:49.843750pt;}
.h1_c01169{height:60.218750pt;}
.h4_c01169{height:60.666900pt;}
.h2_c01169{height:284.000000pt;}
.h5_c01169{height:316.000000pt;}
.h0_c01169{height:1122.666667pt;}
.w1_c01169{width:608.399867pt;}
.w0_c01169{width:793.333333pt;}
.x0_c01169{left:0.000000pt;}
.x2_c01169{left:7.366944pt;}
.x1_c01169{left:44.220467pt;}
.x4_c01169{left:54.666667pt;}
.x5_c01169{left:169.446000pt;}
.x3_c01169{left:197.527067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_98dbdbc96caa859d3ba79822.woff2')format("woff");}.ff1_c01170{font-family:ff1_c01170;line-height:0.934082;font-style:normal;font-weight:normal;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_4af56376369bbded3038d447.woff2')format("woff");}.ff2_c01170{font-family:ff2_c01170;line-height:0.976074;font-style:normal;font-weight:normal;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_5a29818b89c2cc7dc585b208.woff2')format("woff");}.ff3_c01170{font-family:ff3_c01170;line-height:1.155762;font-style:normal;font-weight:normal;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_579186dba258b90a978fa4f8.woff2')format("woff");}.ff4_c01170{font-family:ff4_c01170;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01170;src:url('chunks/assets/font_6df070266dd56e7d1bbe75ca.woff2')format("woff");}.ff5_c01170{font-family:ff5_c01170;line-height:0.889648;font-style: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);}
.m1_c01170{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3_c01170{vertical-align:-33.000000px;}
.v2_c01170{vertical-align:-23.086200px;}
.v0_c01170{vertical-align:0.000000px;}
.v1_c01170{vertical-align:23.086200px;}
.ls6_c01170{letter-spacing:-1.734000px;}
.ls3_c01170{letter-spacing:-0.009600px;}
.ls4_c01170{letter-spacing:-0.007200px;}
.ls2_c01170{letter-spacing:0.000000px;}
.ls0_c01170{letter-spacing:0.010800px;}
.ls1_c01170{letter-spacing:0.012000px;}
.ls5_c01170{letter-spacing:0.021600px;}
.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;}
}
.ws0_c01170{word-spacing:-13.190400px;}
.ws1_c01170{word-spacing:-10.000001px;}
.ws2_c01170{word-spacing:0.000000px;}
._9_c01170{margin-left:-15.399618px;}
._8_c01170{margin-left:-5.328000px;}
._6_c01170{margin-left:-3.988800px;}
._0_c01170{margin-left:-2.541600px;}
._5_c01170{margin-left:-1.260000px;}
._3_c01170{width:1.634400px;}
._4_c01170{width:3.441600px;}
._2_c01170{width:4.593600px;}
._1_c01170{width:6.530400px;}
._7_c01170{width:8.140398px;}
.fc0_c01170{color:rgb(0,0,0);}
.fs4_c01170{font-size:40.000002px;}
.fs1_c01170{font-size:48.000000px;}
.fs2_c01170{font-size:54.000000px;}
.fs3_c01170{font-size:60.000000px;}
.fs0_c01170{font-size:72.000000px;}
.y0_c01170{bottom:0.000000px;}
.y7_c01170{bottom:10.500000px;}
.y9_c01170{bottom:12.000000px;}
.y6_c01170{bottom:28.500000px;}
.yb_c01170{bottom:67.500000px;}
.ye_c01170{bottom:132.000000px;}
.yd_c01170{bottom:151.500000px;}
.yc_c01170{bottom:179.250000px;}
.y8_c01170{bottom:247.500000px;}
.y5_c01170{bottom:580.500000px;}
.y4_c01170{bottom:1014.000000px;}
.y3_c01170{bottom:1041.000000px;}
.y2_c01170{bottom:1068.000000px;}
.y1_c01170{bottom:1095.000000px;}
.ya_c01170{bottom:1194.000000px;}
.h7_c01170{height:35.781252px;}
.h4_c01170{height:42.292969px;}
.h1_c01170{height:51.257812px;}
.h8_c01170{height:53.671875px;}
.h6_c01170{height:56.074219px;}
.h2_c01170{height:57.258075px;}
.h5_c01170{height:304.500000px;}
.h3_c01170{height:402.000000px;}
.h0_c01170{height:1263.000000px;}
.w1_c01170{width:684.449850px;}
.w0_c01170{width:892.500000px;}
.x0_c01170{left:0.000000px;}
.x3_c01170{left:14.882904px;}
.x1_c01170{left:134.787405px;}
.x2_c01170{left:147.000000px;}
.x4_c01170{left:281.128950px;}
.x5_c01170{left:432.515100px;}
.x6_c01170{left:817.725150px;}
@media print{
.v3_c01170{vertical-align:-29.333333pt;}
.v2_c01170{vertical-align:-20.521067pt;}
.v0_c01170{vertical-align:0.000000pt;}
.v1_c01170{vertical-align:20.521067pt;}
.ls6_c01170{letter-spacing:-1.541333pt;}
.ls3_c01170{letter-spacing:-0.008533pt;}
.ls4_c01170{letter-spacing:-0.006400pt;}
.ls2_c01170{letter-spacing:0.000000pt;}
.ls0_c01170{letter-spacing:0.009600pt;}
.ls1_c01170{letter-spacing:0.010667pt;}
.ls5_c01170{letter-spacing:0.019200pt;}
.ws0_c01170{word-spacing:-11.724800pt;}
.ws1_c01170{word-spacing:-8.888889pt;}
.ws2_c01170{word-spacing:0.000000pt;}
._9_c01170{margin-left:-13.688549pt;}
._8_c01170{margin-left:-4.736000pt;}
._6_c01170{margin-left:-3.545600pt;}
._0_c01170{margin-left:-2.259200pt;}
._5_c01170{margin-left:-1.120000pt;}
._3_c01170{width:1.452800pt;}
._4_c01170{width:3.059200pt;}
._2_c01170{width:4.083200pt;}
._1_c01170{width:5.804800pt;}
._7_c01170{width:7.235909pt;}
.fs4_c01170{font-size:35.555557pt;}
.fs1_c01170{font-size:42.666667pt;}
.fs2_c01170{font-size:48.000000pt;}
.fs3_c01170{font-size:53.333333pt;}
.fs0_c01170{font-size:64.000000pt;}
.y0_c01170{bottom:0.000000pt;}
.y7_c01170{bottom:9.333333pt;}
.y9_c01170{bottom:10.666667pt;}
.y6_c01170{bottom:25.333333pt;}
.yb_c01170{bottom:60.000000pt;}
.ye_c01170{bottom:117.333333pt;}
.yd_c01170{bottom:134.666667pt;}
.yc_c01170{bottom:159.333333pt;}
.y8_c01170{bottom:220.000000pt;}
.y5_c01170{bottom:516.000000pt;}
.y4_c01170{bottom:901.333333pt;}
.y3_c01170{bottom:925.333333pt;}
.y2_c01170{bottom:949.333333pt;}
.y1_c01170{bottom:973.333333pt;}
.ya_c01170{bottom:1061.333333pt;}
.h7_c01170{height:31.805557pt;}
.h4_c01170{height:37.593750pt;}
.h1_c01170{height:45.562500pt;}
.h8_c01170{height:47.708333pt;}
.h6_c01170{height:49.843750pt;}
.h2_c01170{height:50.896067pt;}
.h5_c01170{height:270.666667pt;}
.h3_c01170{height:357.333333pt;}
.h0_c01170{height:1122.666667pt;}
.w1_c01170{width:608.399867pt;}
.w0_c01170{width:793.333333pt;}
.x0_c01170{left:0.000000pt;}
.x3_c01170{left:13.229248pt;}
.x1_c01170{left:119.811027pt;}
.x2_c01170{left:130.666667pt;}
.x4_c01170{left:249.892400pt;}
.x5_c01170{left:384.457867pt;}
.x6_c01170{left:726.866800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bd71c47fee28f151f8b982c7.woff2')format("woff");}.ff1_c01171{font-family:ff1_c01171;line-height:0.976074;font-style:normal;font-weight:normal;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_52c5931e7ea3c1154f6933c6.woff2')format("woff");}.ff2_c01171{font-family:ff2_c01171;line-height:0.933105;font-style:normal;font-weight:normal;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_be7dfb816adf58729468bf3c.woff2')format("woff");}.ff3_c01171{font-family:ff3_c01171;line-height:0.756836;font-style:normal;font-weight:normal;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_61fe3d1cfa2624ad09c281a8.woff2')format("woff");}.ff4_c01171{font-family:ff4_c01171;line-height:1.155762;font-style: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);}
.v0_c01171{vertical-align:0.000000px;}
.ls0_c01171{letter-spacing:0.000000px;}
.ls2_c01171{letter-spacing:0.012000px;}
.ls1_c01171{letter-spacing:0.021600px;}
.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;}
}
.ws0_c01171{word-spacing:0.000000px;}
._d_c01171{margin-left:-10.584000px;}
._a_c01171{margin-left:-4.125600px;}
._f_c01171{margin-left:-2.700000px;}
._4_c01171{margin-left:-1.238400px;}
._1_c01171{width:1.389600px;}
._2_c01171{width:2.916000px;}
._6_c01171{width:4.456800px;}
._e_c01171{width:6.559200px;}
._b_c01171{width:8.971200px;}
._9_c01171{width:11.088000px;}
._8_c01171{width:12.578400px;}
._c_c01171{width:13.795200px;}
._11_c01171{width:14.846400px;}
._10_c01171{width:15.940800px;}
._7_c01171{width:17.395200px;}
._3_c01171{width:18.799200px;}
._0_c01171{width:21.441600px;}
._5_c01171{width:22.550400px;}
.fc0_c01171{color:rgb(0,0,0);}
.fs0_c01171{font-size:54.000000px;}
.fs2_c01171{font-size:60.000000px;}
.fs1_c01171{font-size:72.000000px;}
.y0_c01171{bottom:0.000000px;}
.y2_c01171{bottom:12.000000px;}
.yc_c01171{bottom:67.500000px;}
.ya_c01171{bottom:165.000000px;}
.y9_c01171{bottom:192.000000px;}
.y8_c01171{bottom:219.000000px;}
.y7_c01171{bottom:246.000000px;}
.y6_c01171{bottom:291.000000px;}
.y5_c01171{bottom:727.500000px;}
.y4_c01171{bottom:754.500000px;}
.y3_c01171{bottom:781.500000px;}
.y1_c01171{bottom:826.500000px;}
.yb_c01171{bottom:1194.000000px;}
.h2_c01171{height:42.292969px;}
.h6_c01171{height:44.208984px;}
.h3_c01171{height:51.187500px;}
.h5_c01171{height:56.074219px;}
.h1_c01171{height:286.500000px;}
.h4_c01171{height:405.000000px;}
.h0_c01171{height:1263.000000px;}
.w1_c01171{width:684.449850px;}
.w0_c01171{width:892.500000px;}
.x0_c01171{left:0.000000px;}
.x4_c01171{left:23.261085px;}
.x3_c01171{left:49.748025px;}
.x1_c01171{left:61.500000px;}
.x2_c01171{left:93.644985px;}
@media print{
.v0_c01171{vertical-align:0.000000pt;}
.ls0_c01171{letter-spacing:0.000000pt;}
.ls2_c01171{letter-spacing:0.010667pt;}
.ls1_c01171{letter-spacing:0.019200pt;}
.ws0_c01171{word-spacing:0.000000pt;}
._d_c01171{margin-left:-9.408000pt;}
._a_c01171{margin-left:-3.667200pt;}
._f_c01171{margin-left:-2.400000pt;}
._4_c01171{margin-left:-1.100800pt;}
._1_c01171{width:1.235200pt;}
._2_c01171{width:2.592000pt;}
._6_c01171{width:3.961600pt;}
._e_c01171{width:5.830400pt;}
._b_c01171{width:7.974400pt;}
._9_c01171{width:9.856000pt;}
._8_c01171{width:11.180800pt;}
._c_c01171{width:12.262400pt;}
._11_c01171{width:13.196800pt;}
._10_c01171{width:14.169600pt;}
._7_c01171{width:15.462400pt;}
._3_c01171{width:16.710400pt;}
._0_c01171{width:19.059200pt;}
._5_c01171{width:20.044800pt;}
.fs0_c01171{font-size:48.000000pt;}
.fs2_c01171{font-size:53.333333pt;}
.fs1_c01171{font-size:64.000000pt;}
.y0_c01171{bottom:0.000000pt;}
.y2_c01171{bottom:10.666667pt;}
.yc_c01171{bottom:60.000000pt;}
.ya_c01171{bottom:146.666667pt;}
.y9_c01171{bottom:170.666667pt;}
.y8_c01171{bottom:194.666667pt;}
.y7_c01171{bottom:218.666667pt;}
.y6_c01171{bottom:258.666667pt;}
.y5_c01171{bottom:646.666667pt;}
.y4_c01171{bottom:670.666667pt;}
.y3_c01171{bottom:694.666667pt;}
.y1_c01171{bottom:734.666667pt;}
.yb_c01171{bottom:1061.333333pt;}
.h2_c01171{height:37.593750pt;}
.h6_c01171{height:39.296875pt;}
.h3_c01171{height:45.500000pt;}
.h5_c01171{height:49.843750pt;}
.h1_c01171{height:254.666667pt;}
.h4_c01171{height:360.000000pt;}
.h0_c01171{height:1122.666667pt;}
.w1_c01171{width:608.399867pt;}
.w0_c01171{width:793.333333pt;}
.x0_c01171{left:0.000000pt;}
.x4_c01171{left:20.676520pt;}
.x3_c01171{left:44.220467pt;}
.x1_c01171{left:54.666667pt;}
.x2_c01171{left:83.239987pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_38b878910aa1306e28cf155d.woff2')format("woff");}.ff1_c01172{font-family:ff1_c01172;line-height:0.987793;font-style:normal;font-weight:normal;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_7ca600ed8420da3d4aa21e2f.woff2')format("woff");}.ff2_c01172{font-family:ff2_c01172;line-height:1.155762;font-style: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;}
.ls2_c01172{letter-spacing:0.000000px;}
.ls1_c01172{letter-spacing:0.012000px;}
.ls0_c01172{letter-spacing:0.021600px;}
.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;}
}
.ws0_c01172{word-spacing:-17.064000px;}
.ws1_c01172{word-spacing:0.000000px;}
._0_c01172{margin-left:-3.426000px;}
.fc2_c01172{color:transparent;}
.fc1_c01172{color:rgb(0,0,153);}
.fc0_c01172{color:rgb(0,0,0);}
.fs0_c01172{font-size:54.000000px;}
.fs1_c01172{font-size:60.000000px;}
.y0_c01172{bottom:0.000000px;}
.y4_c01172{bottom:10.500000px;}
.y6_c01172{bottom:12.000000px;}
.y3_c01172{bottom:27.000000px;}
.y2_c01172{bottom:43.500000px;}
.y8_c01172{bottom:67.500000px;}
.y5_c01172{bottom:207.000000px;}
.y1_c01172{bottom:553.500000px;}
.y7_c01172{bottom:1194.000000px;}
.h2_c01172{height:42.292969px;}
.h4_c01172{height:56.074219px;}
.h3_c01172{height:318.000000px;}
.h1_c01172{height:559.500000px;}
.h0_c01172{height:1263.000000px;}
.w1_c01172{width:684.449850px;}
.w0_c01172{width:892.500000px;}
.x0_c01172{left:0.000000px;}
.x2_c01172{left:27.097500px;}
.x3_c01172{left:31.949070px;}
.x4_c01172{left:38.745210px;}
.x1_c01172{left:135.000000px;}
.x5_c01172{left:147.000000px;}
.x6_c01172{left:166.283250px;}
.x7_c01172{left:432.515100px;}
.x8_c01172{left:817.725150px;}
@media print{
.v0_c01172{vertical-align:0.000000pt;}
.ls2_c01172{letter-spacing:0.000000pt;}
.ls1_c01172{letter-spacing:0.010667pt;}
.ls0_c01172{letter-spacing:0.019200pt;}
.ws0_c01172{word-spacing:-15.168000pt;}
.ws1_c01172{word-spacing:0.000000pt;}
._0_c01172{margin-left:-3.045333pt;}
.fs0_c01172{font-size:48.000000pt;}
.fs1_c01172{font-size:53.333333pt;}
.y0_c01172{bottom:0.000000pt;}
.y4_c01172{bottom:9.333333pt;}
.y6_c01172{bottom:10.666667pt;}
.y3_c01172{bottom:24.000000pt;}
.y2_c01172{bottom:38.666667pt;}
.y8_c01172{bottom:60.000000pt;}
.y5_c01172{bottom:184.000000pt;}
.y1_c01172{bottom:492.000000pt;}
.y7_c01172{bottom:1061.333333pt;}
.h2_c01172{height:37.593750pt;}
.h4_c01172{height:49.843750pt;}
.h3_c01172{height:282.666667pt;}
.h1_c01172{height:497.333333pt;}
.h0_c01172{height:1122.666667pt;}
.w1_c01172{width:608.399867pt;}
.w0_c01172{width:793.333333pt;}
.x0_c01172{left:0.000000pt;}
.x2_c01172{left:24.086667pt;}
.x3_c01172{left:28.399173pt;}
.x4_c01172{left:34.440187pt;}
.x1_c01172{left:120.000000pt;}
.x5_c01172{left:130.666667pt;}
.x6_c01172{left:147.807333pt;}
.x7_c01172{left:384.457867pt;}
.x8_c01172{left:726.866800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_efe0f21080c398e1ebf56755.woff2')format("woff");}.ff1_c01173{font-family:ff1_c01173;line-height:0.934082;font-style:normal;font-weight:normal;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_093beafdd813837da0298599.woff2')format("woff");}.ff2_c01173{font-family:ff2_c01173;line-height:0.976074;font-style:normal;font-weight:normal;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_a21febc033155db112afc771.woff2')format("woff");}.ff3_c01173{font-family:ff3_c01173;line-height:0.755859;font-style:normal;font-weight:normal;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_f5840df3fa58c007e65ad629.woff2')format("woff");}.ff4_c01173{font-family:ff4_c01173;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01173;src:url('chunks/assets/font_238fa5f548b8e57dd814b349.woff2')format("woff");}.ff5_c01173{font-family:ff5_c01173;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01173;src:url('chunks/assets/font_fcfcc3131d005adebaa9af18.woff2')format("woff");}.ff6_c01173{font-family:ff6_c01173;line-height:0.889648;font-style: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);}
.m1_c01173{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3_c01173{vertical-align:-33.000000px;}
.v2_c01173{vertical-align:-23.086200px;}
.v0_c01173{vertical-align:0.000000px;}
.v1_c01173{vertical-align:23.086200px;}
.ls1_c01173{letter-spacing:-0.009600px;}
.ls0_c01173{letter-spacing:0.000000px;}
.ls2_c01173{letter-spacing:0.012000px;}
.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;}
}
.ws4_c01173{word-spacing:-15.000000px;}
.ws1_c01173{word-spacing:-13.190400px;}
.ws3_c01173{word-spacing:-10.000001px;}
.ws2_c01173{word-spacing:-4.567200px;}
.ws5_c01173{word-spacing:0.000000px;}
.ws0_c01173{word-spacing:2.811600px;}
._e_c01173{margin-left:-10.798500px;}
._f_c01173{margin-left:-7.920000px;}
._10_c01173{margin-left:-6.127200px;}
._8_c01173{margin-left:-4.989600px;}
._3_c01173{margin-left:-3.117600px;}
._7_c01173{margin-left:-2.102400px;}
._11_c01173{margin-left:-1.008000px;}
._5_c01173{width:1.173600px;}
._0_c01173{width:2.325600px;}
._9_c01173{width:3.909600px;}
._1_c01173{width:5.709600px;}
._6_c01173{width:6.955200px;}
._2_c01173{width:8.042400px;}
._a_c01173{width:9.324000px;}
._4_c01173{width:11.160000px;}
._c_c01173{width:12.655500px;}
._b_c01173{width:13.754100px;}
._d_c01173{width:15.040800px;}
.fc1_c01173{color:transparent;}
.fc0_c01173{color:rgb(0,0,0);}
.fs4_c01173{font-size:40.000002px;}
.fs1_c01173{font-size:48.000000px;}
.fs2_c01173{font-size:54.000000px;}
.fs3_c01173{font-size:60.000000px;}
.fs0_c01173{font-size:72.000000px;}
.y0_c01173{bottom:0.000000px;}
.y5_c01173{bottom:12.000000px;}
.y12_c01173{bottom:67.500000px;}
.y18_c01173{bottom:132.000000px;}
.y17_c01173{bottom:159.750000px;}
.y16_c01173{bottom:201.000000px;}
.y15_c01173{bottom:228.750000px;}
.y14_c01173{bottom:278.250000px;}
.y13_c01173{bottom:327.750000px;}
.y10_c01173{bottom:370.500000px;}
.yf_c01173{bottom:397.500000px;}
.ye_c01173{bottom:424.500000px;}
.yd_c01173{bottom:451.500000px;}
.yc_c01173{bottom:478.500000px;}
.yb_c01173{bottom:505.500000px;}
.ya_c01173{bottom:553.500000px;}
.y9_c01173{bottom:580.500000px;}
.y8_c01173{bottom:607.500000px;}
.y7_c01173{bottom:634.500000px;}
.y6_c01173{bottom:661.500000px;}
.y4_c01173{bottom:706.500000px;}
.y3_c01173{bottom:1041.000000px;}
.y2_c01173{bottom:1068.000000px;}
.y1_c01173{bottom:1095.000000px;}
.y11_c01173{bottom:1194.000000px;}
.h7_c01173{height:35.781252px;}
.h4_c01173{height:42.292969px;}
.h6_c01173{height:44.208984px;}
.h1_c01173{height:51.257812px;}
.h8_c01173{height:53.671875px;}
.h5_c01173{height:56.074219px;}
.h2_c01173{height:57.258075px;}
.h3_c01173{height:303.000000px;}
.h0_c01173{height:1263.000000px;}
.w1_c01173{width:684.449850px;}
.w0_c01173{width:892.500000px;}
.x0_c01173{left:0.000000px;}
.x1_c01173{left:49.748025px;}
.x2_c01173{left:61.500000px;}
.x3_c01173{left:181.039050px;}
@media print{
.v3_c01173{vertical-align:-29.333333pt;}
.v2_c01173{vertical-align:-20.521067pt;}
.v0_c01173{vertical-align:0.000000pt;}
.v1_c01173{vertical-align:20.521067pt;}
.ls1_c01173{letter-spacing:-0.008533pt;}
.ls0_c01173{letter-spacing:0.000000pt;}
.ls2_c01173{letter-spacing:0.010667pt;}
.ws4_c01173{word-spacing:-13.333333pt;}
.ws1_c01173{word-spacing:-11.724800pt;}
.ws3_c01173{word-spacing:-8.888889pt;}
.ws2_c01173{word-spacing:-4.059733pt;}
.ws5_c01173{word-spacing:0.000000pt;}
.ws0_c01173{word-spacing:2.499200pt;}
._e_c01173{margin-left:-9.598667pt;}
._f_c01173{margin-left:-7.040000pt;}
._10_c01173{margin-left:-5.446400pt;}
._8_c01173{margin-left:-4.435200pt;}
._3_c01173{margin-left:-2.771200pt;}
._7_c01173{margin-left:-1.868800pt;}
._11_c01173{margin-left:-0.896000pt;}
._5_c01173{width:1.043200pt;}
._0_c01173{width:2.067200pt;}
._9_c01173{width:3.475200pt;}
._1_c01173{width:5.075200pt;}
._6_c01173{width:6.182400pt;}
._2_c01173{width:7.148800pt;}
._a_c01173{width:8.288000pt;}
._4_c01173{width:9.920000pt;}
._c_c01173{width:11.249333pt;}
._b_c01173{width:12.225867pt;}
._d_c01173{width:13.369600pt;}
.fs4_c01173{font-size:35.555557pt;}
.fs1_c01173{font-size:42.666667pt;}
.fs2_c01173{font-size:48.000000pt;}
.fs3_c01173{font-size:53.333333pt;}
.fs0_c01173{font-size:64.000000pt;}
.y0_c01173{bottom:0.000000pt;}
.y5_c01173{bottom:10.666667pt;}
.y12_c01173{bottom:60.000000pt;}
.y18_c01173{bottom:117.333333pt;}
.y17_c01173{bottom:142.000000pt;}
.y16_c01173{bottom:178.666667pt;}
.y15_c01173{bottom:203.333333pt;}
.y14_c01173{bottom:247.333333pt;}
.y13_c01173{bottom:291.333333pt;}
.y10_c01173{bottom:329.333333pt;}
.yf_c01173{bottom:353.333333pt;}
.ye_c01173{bottom:377.333333pt;}
.yd_c01173{bottom:401.333333pt;}
.yc_c01173{bottom:425.333333pt;}
.yb_c01173{bottom:449.333333pt;}
.ya_c01173{bottom:492.000000pt;}
.y9_c01173{bottom:516.000000pt;}
.y8_c01173{bottom:540.000000pt;}
.y7_c01173{bottom:564.000000pt;}
.y6_c01173{bottom:588.000000pt;}
.y4_c01173{bottom:628.000000pt;}
.y3_c01173{bottom:925.333333pt;}
.y2_c01173{bottom:949.333333pt;}
.y1_c01173{bottom:973.333333pt;}
.y11_c01173{bottom:1061.333333pt;}
.h7_c01173{height:31.805557pt;}
.h4_c01173{height:37.593750pt;}
.h6_c01173{height:39.296875pt;}
.h1_c01173{height:45.562500pt;}
.h8_c01173{height:47.708333pt;}
.h5_c01173{height:49.843750pt;}
.h2_c01173{height:50.896067pt;}
.h3_c01173{height:269.333333pt;}
.h0_c01173{height:1122.666667pt;}
.w1_c01173{width:608.399867pt;}
.w0_c01173{width:793.333333pt;}
.x0_c01173{left:0.000000pt;}
.x1_c01173{left:44.220467pt;}
.x2_c01173{left:54.666667pt;}
.x3_c01173{left:160.923600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0a8303fa13c3902f4c08198a.woff2')format("woff");}.ff1_c01174{font-family:ff1_c01174;line-height:0.975586;font-style:normal;font-weight:normal;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_eb076a0a161f0a20f4ffe61b.woff2')format("woff");}.ff2_c01174{font-family:ff2_c01174;line-height:1.059082;font-style:normal;font-weight:normal;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_d279434d4a5940e47b3e75c5.woff2')format("woff");}.ff3_c01174{font-family:ff3_c01174;line-height:0.934082;font-style:normal;font-weight:normal;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_75604c3274b8af8c7a964c16.woff2')format("woff");}.ff4_c01174{font-family:ff4_c01174;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01174;src:url('chunks/assets/font_71833e1eba9f313496cbde68.woff2')format("woff");}.ff5_c01174{font-family:ff5_c01174;line-height:0.888672;font-style: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);}
.m1_c01174{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3_c01174{vertical-align:-33.000000px;}
.v2_c01174{vertical-align:-23.086200px;}
.v0_c01174{vertical-align:0.000000px;}
.v1_c01174{vertical-align:23.086200px;}
.ls2_c01174{letter-spacing:-0.009600px;}
.ls1_c01174{letter-spacing:0.000000px;}
.ls0_c01174{letter-spacing:0.012000px;}
.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:-17.064000px;}
.ws1_c01174{word-spacing:-13.190400px;}
.ws2_c01174{word-spacing:-10.000001px;}
.ws3_c01174{word-spacing:0.000000px;}
._e_c01174{margin-left:-10.584000px;}
._8_c01174{margin-left:-7.653600px;}
._7_c01174{margin-left:-6.544800px;}
._16_c01174{margin-left:-5.432802px;}
._1_c01174{margin-left:-3.700800px;}
._5_c01174{margin-left:-1.850400px;}
._3_c01174{width:1.706400px;}
._4_c01174{width:3.276000px;}
._0_c01174{width:4.996800px;}
._6_c01174{width:6.753600px;}
._2_c01174{width:8.690400px;}
._9_c01174{width:10.641600px;}
._13_c01174{width:11.944800px;}
._15_c01174{width:13.680000px;}
._14_c01174{width:14.925600px;}
._11_c01174{width:16.372800px;}
._f_c01174{width:17.964000px;}
._12_c01174{width:21.549600px;}
._10_c01174{width:23.414400px;}
._d_c01174{width:30.016800px;}
._c_c01174{width:31.622400px;}
._a_c01174{width:33.501600px;}
._b_c01174{width:35.258400px;}
.fc0_c01174{color:rgb(0,0,0);}
.fs4_c01174{font-size:40.000002px;}
.fs2_c01174{font-size:48.000000px;}
.fs0_c01174{font-size:54.000000px;}
.fs3_c01174{font-size:60.000000px;}
.fs1_c01174{font-size:72.000000px;}
.y0_c01174{bottom:0.000000px;}
.y3_c01174{bottom:10.500000px;}
.y2_c01174{bottom:28.500000px;}
.y12_c01174{bottom:67.500000px;}
.y14_c01174{bottom:132.000000px;}
.y13_c01174{bottom:159.750000px;}
.y10_c01174{bottom:205.500000px;}
.yf_c01174{bottom:232.500000px;}
.ye_c01174{bottom:280.500000px;}
.yd_c01174{bottom:307.500000px;}
.yc_c01174{bottom:334.500000px;}
.yb_c01174{bottom:382.500000px;}
.ya_c01174{bottom:409.500000px;}
.y9_c01174{bottom:436.500000px;}
.y8_c01174{bottom:463.500000px;}
.y7_c01174{bottom:490.500000px;}
.y6_c01174{bottom:517.500000px;}
.y5_c01174{bottom:544.500000px;}
.y4_c01174{bottom:571.500000px;}
.y1_c01174{bottom:616.500000px;}
.y11_c01174{bottom:1194.000000px;}
.h7_c01174{height:33.652345px;}
.h3_c01174{height:41.633789px;}
.h8_c01174{height:50.478516px;}
.h4_c01174{height:51.257812px;}
.h6_c01174{height:56.074219px;}
.h5_c01174{height:57.258075px;}
.h2_c01174{height:60.574219px;}
.h1_c01174{height:496.500000px;}
.h0_c01174{height:1263.000000px;}
.w1_c01174{width:684.449850px;}
.w0_c01174{width:892.500000px;}
.x0_c01174{left:0.000000px;}
.x2_c01174{left:8.437226px;}
.x1_c01174{left:135.000000px;}
.x3_c01174{left:292.351350px;}
.x4_c01174{left:432.515100px;}
.x5_c01174{left:817.725150px;}
@media print{
.v3_c01174{vertical-align:-29.333333pt;}
.v2_c01174{vertical-align:-20.521067pt;}
.v0_c01174{vertical-align:0.000000pt;}
.v1_c01174{vertical-align:20.521067pt;}
.ls2_c01174{letter-spacing:-0.008533pt;}
.ls1_c01174{letter-spacing:0.000000pt;}
.ls0_c01174{letter-spacing:0.010667pt;}
.ws0_c01174{word-spacing:-15.168000pt;}
.ws1_c01174{word-spacing:-11.724800pt;}
.ws2_c01174{word-spacing:-8.888889pt;}
.ws3_c01174{word-spacing:0.000000pt;}
._e_c01174{margin-left:-9.408000pt;}
._8_c01174{margin-left:-6.803200pt;}
._7_c01174{margin-left:-5.817600pt;}
._16_c01174{margin-left:-4.829157pt;}
._1_c01174{margin-left:-3.289600pt;}
._5_c01174{margin-left:-1.644800pt;}
._3_c01174{width:1.516800pt;}
._4_c01174{width:2.912000pt;}
._0_c01174{width:4.441600pt;}
._6_c01174{width:6.003200pt;}
._2_c01174{width:7.724800pt;}
._9_c01174{width:9.459200pt;}
._13_c01174{width:10.617600pt;}
._15_c01174{width:12.160000pt;}
._14_c01174{width:13.267200pt;}
._11_c01174{width:14.553600pt;}
._f_c01174{width:15.968000pt;}
._12_c01174{width:19.155200pt;}
._10_c01174{width:20.812800pt;}
._d_c01174{width:26.681600pt;}
._c_c01174{width:28.108800pt;}
._a_c01174{width:29.779200pt;}
._b_c01174{width:31.340800pt;}
.fs4_c01174{font-size:35.555557pt;}
.fs2_c01174{font-size:42.666667pt;}
.fs0_c01174{font-size:48.000000pt;}
.fs3_c01174{font-size:53.333333pt;}
.fs1_c01174{font-size:64.000000pt;}
.y0_c01174{bottom:0.000000pt;}
.y3_c01174{bottom:9.333333pt;}
.y2_c01174{bottom:25.333333pt;}
.y12_c01174{bottom:60.000000pt;}
.y14_c01174{bottom:117.333333pt;}
.y13_c01174{bottom:142.000000pt;}
.y10_c01174{bottom:182.666667pt;}
.yf_c01174{bottom:206.666667pt;}
.ye_c01174{bottom:249.333333pt;}
.yd_c01174{bottom:273.333333pt;}
.yc_c01174{bottom:297.333333pt;}
.yb_c01174{bottom:340.000000pt;}
.ya_c01174{bottom:364.000000pt;}
.y9_c01174{bottom:388.000000pt;}
.y8_c01174{bottom:412.000000pt;}
.y7_c01174{bottom:436.000000pt;}
.y6_c01174{bottom:460.000000pt;}
.y5_c01174{bottom:484.000000pt;}
.y4_c01174{bottom:508.000000pt;}
.y1_c01174{bottom:548.000000pt;}
.y11_c01174{bottom:1061.333333pt;}
.h7_c01174{height:29.913196pt;}
.h3_c01174{height:37.007812pt;}
.h8_c01174{height:44.869792pt;}
.h4_c01174{height:45.562500pt;}
.h6_c01174{height:49.843750pt;}
.h5_c01174{height:50.896067pt;}
.h2_c01174{height:53.843750pt;}
.h1_c01174{height:441.333333pt;}
.h0_c01174{height:1122.666667pt;}
.w1_c01174{width:608.399867pt;}
.w0_c01174{width:793.333333pt;}
.x0_c01174{left:0.000000pt;}
.x2_c01174{left:7.499756pt;}
.x1_c01174{left:120.000000pt;}
.x3_c01174{left:259.867867pt;}
.x4_c01174{left:384.457867pt;}
.x5_c01174{left:726.866800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ee2b9a0791b41aafef69d209.woff2')format("woff");}.ff1_c01175{font-family:ff1_c01175;line-height:0.934082;font-style:normal;font-weight:normal;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_08250a49d41a850ca506086e.woff2')format("woff");}.ff2_c01175{font-family:ff2_c01175;line-height:0.756836;font-style:normal;font-weight:normal;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_cf782b276dade78d992fd4f2.woff2')format("woff");}.ff3_c01175{font-family:ff3_c01175;line-height:1.155762;font-style:normal;font-weight:normal;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_6a40868832441a7051d45de6.woff2')format("woff");}.ff4_c01175{font-family:ff4_c01175;line-height:0.904297;font-style:normal;font-weight:normal;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_613222817de2b2cc9d3cce8a.woff2')format("woff");}.ff5_c01175{font-family:ff5_c01175;line-height:0.888672;font-style: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);}
.v2_c01175{vertical-align:-15.400200px;}
.v0_c01175{vertical-align:0.000000px;}
.v1_c01175{vertical-align:23.086200px;}
.ls1_c01175{letter-spacing:-0.009600px;}
.ls0_c01175{letter-spacing:0.000000px;}
.ls3_c01175{letter-spacing:0.008000px;}
.ls2_c01175{letter-spacing:0.012000px;}
.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;}
}
.ws0_c01175{word-spacing:-13.190400px;}
.ws1_c01175{word-spacing:-11.128001px;}
.ws2_c01175{word-spacing:0.000000px;}
._12_c01175{margin-left:-7.875300px;}
._0_c01175{margin-left:-6.256800px;}
._f_c01175{margin-left:-4.176000px;}
._d_c01175{margin-left:-3.031200px;}
._4_c01175{margin-left:-1.274400px;}
._8_c01175{width:1.519200px;}
._1_c01175{width:2.707200px;}
._6_c01175{width:4.140000px;}
._e_c01175{width:6.508800px;}
._10_c01175{width:7.927200px;}
._11_c01175{width:9.014400px;}
._c_c01175{width:11.613600px;}
._a_c01175{width:13.118400px;}
._b_c01175{width:14.277600px;}
._9_c01175{width:15.782400px;}
._7_c01175{width:17.229600px;}
._2_c01175{width:18.684000px;}
._3_c01175{width:21.427200px;}
._5_c01175{width:22.788000px;}
.fc0_c01175{color:rgb(0,0,0);}
.fs3_c01175{font-size:40.000002px;}
.fs1_c01175{font-size:48.000000px;}
.fs2_c01175{font-size:60.000000px;}
.fs0_c01175{font-size:72.000000px;}
.y0_c01175{bottom:0.000000px;}
.y8_c01175{bottom:67.500000px;}
.ya_c01175{bottom:132.000000px;}
.y9_c01175{bottom:155.350050px;}
.y6_c01175{bottom:939.000000px;}
.y5_c01175{bottom:966.000000px;}
.y4_c01175{bottom:993.000000px;}
.y3_c01175{bottom:1020.000000px;}
.y2_c01175{bottom:1068.000000px;}
.y1_c01175{bottom:1095.000000px;}
.y7_c01175{bottom:1194.000000px;}
.h5_c01175{height:29.472658px;}
.h6_c01175{height:41.132812px;}
.h4_c01175{height:44.208984px;}
.h1_c01175{height:51.257812px;}
.h3_c01175{height:56.074219px;}
.h2_c01175{height:57.258075px;}
.h0_c01175{height:1263.000000px;}
.w0_c01175{width:892.500000px;}
.x0_c01175{left:0.000000px;}
.x1_c01175{left:49.748025px;}
@media print{
.v2_c01175{vertical-align:-13.689067pt;}
.v0_c01175{vertical-align:0.000000pt;}
.v1_c01175{vertical-align:20.521067pt;}
.ls1_c01175{letter-spacing:-0.008533pt;}
.ls0_c01175{letter-spacing:0.000000pt;}
.ls3_c01175{letter-spacing:0.007111pt;}
.ls2_c01175{letter-spacing:0.010667pt;}
.ws0_c01175{word-spacing:-11.724800pt;}
.ws1_c01175{word-spacing:-9.891556pt;}
.ws2_c01175{word-spacing:0.000000pt;}
._12_c01175{margin-left:-7.000267pt;}
._0_c01175{margin-left:-5.561600pt;}
._f_c01175{margin-left:-3.712000pt;}
._d_c01175{margin-left:-2.694400pt;}
._4_c01175{margin-left:-1.132800pt;}
._8_c01175{width:1.350400pt;}
._1_c01175{width:2.406400pt;}
._6_c01175{width:3.680000pt;}
._e_c01175{width:5.785600pt;}
._10_c01175{width:7.046400pt;}
._11_c01175{width:8.012800pt;}
._c_c01175{width:10.323200pt;}
._a_c01175{width:11.660800pt;}
._b_c01175{width:12.691200pt;}
._9_c01175{width:14.028800pt;}
._7_c01175{width:15.315200pt;}
._2_c01175{width:16.608000pt;}
._3_c01175{width:19.046400pt;}
._5_c01175{width:20.256000pt;}
.fs3_c01175{font-size:35.555557pt;}
.fs1_c01175{font-size:42.666667pt;}
.fs2_c01175{font-size:53.333333pt;}
.fs0_c01175{font-size:64.000000pt;}
.y0_c01175{bottom:0.000000pt;}
.y8_c01175{bottom:60.000000pt;}
.ya_c01175{bottom:117.333333pt;}
.y9_c01175{bottom:138.088933pt;}
.y6_c01175{bottom:834.666667pt;}
.y5_c01175{bottom:858.666667pt;}
.y4_c01175{bottom:882.666667pt;}
.y3_c01175{bottom:906.666667pt;}
.y2_c01175{bottom:949.333333pt;}
.y1_c01175{bottom:973.333333pt;}
.y7_c01175{bottom:1061.333333pt;}
.h5_c01175{height:26.197918pt;}
.h6_c01175{height:36.562500pt;}
.h4_c01175{height:39.296875pt;}
.h1_c01175{height:45.562500pt;}
.h3_c01175{height:49.843750pt;}
.h2_c01175{height:50.896067pt;}
.h0_c01175{height:1122.666667pt;}
.w0_c01175{width:793.333333pt;}
.x0_c01175{left:0.000000pt;}
.x1_c01175{left:44.220467pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b4e02bc3286a031602e2201e.woff2')format("woff");}.ff1_c01176{font-family:ff1_c01176;line-height:0.884766;font-style:normal;font-weight:normal;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_187ebc2d7645a73e58a72f7a.woff2')format("woff");}.ff2_c01176{font-family:ff2_c01176;line-height:0.934082;font-style:normal;font-weight:normal;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_1a2edaeed1d85168e91e0f82.woff2')format("woff");}.ff3_c01176{font-family:ff3_c01176;line-height:1.155762;font-style:normal;font-weight:normal;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_4499bc2f2d6e1dc19287e3d2.woff2')format("woff");}.ff4_c01176{font-family:ff4_c01176;line-height:1.115723;font-style:normal;font-weight:normal;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_539b05bd57ba39457f4c9137.woff2')format("woff");}.ff5_c01176{font-family:ff5_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;}
.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);}
.m1_c01176{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3_c01176{vertical-align:-33.000000px;}
.v2_c01176{vertical-align:-23.086200px;}
.v0_c01176{vertical-align:0.000000px;}
.v1_c01176{vertical-align:23.086200px;}
.ls7_c01176{letter-spacing:0.000000px;}
.ls0_c01176{letter-spacing:0.007800px;}
.ls5_c01176{letter-spacing:0.012000px;}
.ls3_c01176{letter-spacing:0.493200px;}
.ls6_c01176{letter-spacing:3.999999px;}
.ls1_c01176{letter-spacing:5.142600px;}
.ls2_c01176{letter-spacing:19.814400px;}
.ls4_c01176{letter-spacing:30.559200px;}
.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;}
}
.ws0_c01176{word-spacing:-13.200000px;}
.ws1_c01176{word-spacing:-10.000001px;}
.ws2_c01176{word-spacing:0.000000px;}
._11_c01176{margin-left:-10.958400px;}
._4_c01176{margin-left:-9.410400px;}
._10_c01176{margin-left:-6.760800px;}
._17_c01176{margin-left:-5.176800px;}
._a_c01176{margin-left:-3.859200px;}
._1_c01176{margin-left:-2.412000px;}
._5_c01176{margin-left:-1.303200px;}
._0_c01176{width:1.483200px;}
._e_c01176{width:2.491200px;}
._3_c01176{width:3.556800px;}
._2_c01176{width:5.220000px;}
._6_c01176{width:6.343200px;}
._9_c01176{width:8.244000px;}
._7_c01176{width:10.166400px;}
._8_c01176{width:11.167200px;}
._b_c01176{width:12.218400px;}
._f_c01176{width:13.788000px;}
._c_c01176{width:15.566400px;}
._d_c01176{width:17.092800px;}
._12_c01176{width:18.144000px;}
._14_c01176{width:20.937600px;}
._13_c01176{width:22.867200px;}
._15_c01176{width:25.044000px;}
._16_c01176{width:26.748000px;}
.fc1_c01176{color:rgb(255,255,255);}
.fc0_c01176{color:rgb(0,0,0);}
.fs5_c01176{font-size:40.000002px;}
.fs2_c01176{font-size:48.000000px;}
.fs4_c01176{font-size:60.000000px;}
.fs1_c01176{font-size:72.000000px;}
.fs0_c01176{font-size:78.000000px;}
.fs3_c01176{font-size:96.000000px;}
.y0_c01176{bottom:0.000000px;}
.y15_c01176{bottom:67.500000px;}
.y1d_c01176{bottom:140.250000px;}
.y1c_c01176{bottom:189.750000px;}
.y1b_c01176{bottom:231.000000px;}
.y1a_c01176{bottom:250.500000px;}
.y19_c01176{bottom:278.250000px;}
.y18_c01176{bottom:327.750000px;}
.y17_c01176{bottom:369.000000px;}
.y16_c01176{bottom:396.750000px;}
.y12_c01176{bottom:450.000000px;}
.y11_c01176{bottom:477.000000px;}
.y10_c01176{bottom:525.000000px;}
.yf_c01176{bottom:552.000000px;}
.ye_c01176{bottom:579.000000px;}
.yd_c01176{bottom:606.000000px;}
.yc_c01176{bottom:654.000000px;}
.yb_c01176{bottom:681.000000px;}
.ya_c01176{bottom:708.000000px;}
.y9_c01176{bottom:735.000000px;}
.y8_c01176{bottom:762.000000px;}
.y7_c01176{bottom:789.000000px;}
.y6_c01176{bottom:816.000000px;}
.y5_c01176{bottom:864.000000px;}
.y4_c01176{bottom:891.000000px;}
.y3_c01176{bottom:918.000000px;}
.y2_c01176{bottom:945.000000px;}
.y1_c01176{bottom:991.500000px;}
.y13_c01176{bottom:1066.500000px;}
.y14_c01176{bottom:1194.000000px;}
.h6_c01176{height:35.878908px;}
.h2_c01176{height:51.257812px;}
.h7_c01176{height:53.818359px;}
.h1_c01176{height:55.224609px;}
.h5_c01176{height:56.074219px;}
.h3_c01176{height:57.258075px;}
.h4_c01176{height:68.343750px;}
.h0_c01176{height:1263.000000px;}
.w0_c01176{width:892.500000px;}
.x0_c01176{left:0.000000px;}
.x1_c01176{left:150.519750px;}
.x2_c01176{left:180.298875px;}
.x3_c01176{left:416.782800px;}
.x4_c01176{left:801.992850px;}
@media print{
.v3_c01176{vertical-align:-29.333333pt;}
.v2_c01176{vertical-align:-20.521067pt;}
.v0_c01176{vertical-align:0.000000pt;}
.v1_c01176{vertical-align:20.521067pt;}
.ls7_c01176{letter-spacing:0.000000pt;}
.ls0_c01176{letter-spacing:0.006933pt;}
.ls5_c01176{letter-spacing:0.010667pt;}
.ls3_c01176{letter-spacing:0.438400pt;}
.ls6_c01176{letter-spacing:3.555555pt;}
.ls1_c01176{letter-spacing:4.571200pt;}
.ls2_c01176{letter-spacing:17.612800pt;}
.ls4_c01176{letter-spacing:27.163733pt;}
.ws0_c01176{word-spacing:-11.733333pt;}
.ws1_c01176{word-spacing:-8.888889pt;}
.ws2_c01176{word-spacing:0.000000pt;}
._11_c01176{margin-left:-9.740800pt;}
._4_c01176{margin-left:-8.364800pt;}
._10_c01176{margin-left:-6.009600pt;}
._17_c01176{margin-left:-4.601600pt;}
._a_c01176{margin-left:-3.430400pt;}
._1_c01176{margin-left:-2.144000pt;}
._5_c01176{margin-left:-1.158400pt;}
._0_c01176{width:1.318400pt;}
._e_c01176{width:2.214400pt;}
._3_c01176{width:3.161600pt;}
._2_c01176{width:4.640000pt;}
._6_c01176{width:5.638400pt;}
._9_c01176{width:7.328000pt;}
._7_c01176{width:9.036800pt;}
._8_c01176{width:9.926400pt;}
._b_c01176{width:10.860800pt;}
._f_c01176{width:12.256000pt;}
._c_c01176{width:13.836800pt;}
._d_c01176{width:15.193600pt;}
._12_c01176{width:16.128000pt;}
._14_c01176{width:18.611200pt;}
._13_c01176{width:20.326400pt;}
._15_c01176{width:22.261333pt;}
._16_c01176{width:23.776000pt;}
.fs5_c01176{font-size:35.555557pt;}
.fs2_c01176{font-size:42.666667pt;}
.fs4_c01176{font-size:53.333333pt;}
.fs1_c01176{font-size:64.000000pt;}
.fs0_c01176{font-size:69.333333pt;}
.fs3_c01176{font-size:85.333333pt;}
.y0_c01176{bottom:0.000000pt;}
.y15_c01176{bottom:60.000000pt;}
.y1d_c01176{bottom:124.666667pt;}
.y1c_c01176{bottom:168.666667pt;}
.y1b_c01176{bottom:205.333333pt;}
.y1a_c01176{bottom:222.666667pt;}
.y19_c01176{bottom:247.333333pt;}
.y18_c01176{bottom:291.333333pt;}
.y17_c01176{bottom:328.000000pt;}
.y16_c01176{bottom:352.666667pt;}
.y12_c01176{bottom:400.000000pt;}
.y11_c01176{bottom:424.000000pt;}
.y10_c01176{bottom:466.666667pt;}
.yf_c01176{bottom:490.666667pt;}
.ye_c01176{bottom:514.666667pt;}
.yd_c01176{bottom:538.666667pt;}
.yc_c01176{bottom:581.333333pt;}
.yb_c01176{bottom:605.333333pt;}
.ya_c01176{bottom:629.333333pt;}
.y9_c01176{bottom:653.333333pt;}
.y8_c01176{bottom:677.333333pt;}
.y7_c01176{bottom:701.333333pt;}
.y6_c01176{bottom:725.333333pt;}
.y5_c01176{bottom:768.000000pt;}
.y4_c01176{bottom:792.000000pt;}
.y3_c01176{bottom:816.000000pt;}
.y2_c01176{bottom:840.000000pt;}
.y1_c01176{bottom:881.333333pt;}
.y13_c01176{bottom:948.000000pt;}
.y14_c01176{bottom:1061.333333pt;}
.h6_c01176{height:31.892363pt;}
.h2_c01176{height:45.562500pt;}
.h7_c01176{height:47.838542pt;}
.h1_c01176{height:49.088542pt;}
.h5_c01176{height:49.843750pt;}
.h3_c01176{height:50.896067pt;}
.h4_c01176{height:60.750000pt;}
.h0_c01176{height:1122.666667pt;}
.w0_c01176{width:793.333333pt;}
.x0_c01176{left:0.000000pt;}
.x1_c01176{left:133.795333pt;}
.x2_c01176{left:160.265667pt;}
.x3_c01176{left:370.473600pt;}
.x4_c01176{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_250fbfd012c22bd59d2fe950.woff2')format("woff");}.ff1_c01177{font-family:ff1_c01177;line-height:0.934082;font-style:normal;font-weight:normal;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_a04ca5f9cdec22a3e6177e01.woff2')format("woff");}.ff2_c01177{font-family:ff2_c01177;line-height:0.939453;font-style:normal;font-weight:normal;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_e2c06148fbe160594c734f9d.woff2')format("woff");}.ff3_c01177{font-family:ff3_c01177;line-height:0.756348;font-style:normal;font-weight:normal;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_b37963d0435aca458df500e5.woff2')format("woff");}.ff4_c01177{font-family:ff4_c01177;line-height:1.155762;font-style:normal;font-weight:normal;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_155dd2c5c35338ed489e8b6b.woff2')format("woff");}.ff5_c01177{font-family:ff5_c01177;line-height:1.112305;font-style:normal;font-weight: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_72f501dfbf61689c7f6daec2.woff2')format("woff");}.ff6_c01177{font-family:ff6_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;}
.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);}
.v3_c01177{vertical-align:-33.000000px;}
.v2_c01177{vertical-align:-23.086200px;}
.v4_c01177{vertical-align:-15.400200px;}
.v0_c01177{vertical-align:0.000000px;}
.v1_c01177{vertical-align:23.086200px;}
.ls7_c01177{letter-spacing:-0.014400px;}
.ls6_c01177{letter-spacing:-0.007200px;}
.ls5_c01177{letter-spacing:0.000000px;}
.ls1_c01177{letter-spacing:0.007800px;}
.ls8_c01177{letter-spacing:0.012000px;}
.ls4_c01177{letter-spacing:2.370000px;}
.ls2_c01177{letter-spacing:6.627000px;}
.ls3_c01177{letter-spacing:7.759999px;}
.ls0_c01177{letter-spacing:13.690860px;}
.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;}
}
.ws0_c01177{word-spacing:-13.200000px;}
.ws1_c01177{word-spacing:-10.000001px;}
.ws2_c01177{word-spacing:0.000000px;}
._17_c01177{margin-left:-10.485600px;}
._19_c01177{margin-left:-8.447781px;}
._b_c01177{margin-left:-7.214640px;}
._1a_c01177{margin-left:-5.066400px;}
._2_c01177{margin-left:-3.945600px;}
._0_c01177{margin-left:-1.893600px;}
._8_c01177{width:1.012800px;}
._7_c01177{width:2.666400px;}
._3_c01177{width:4.015200px;}
._4_c01177{width:5.445600px;}
._6_c01177{width:6.696000px;}
._1_c01177{width:8.630400px;}
._5_c01177{width:10.329600px;}
._a_c01177{width:12.859200px;}
._9_c01177{width:14.680800px;}
._1d_c01177{width:17.025000px;}
._1b_c01177{width:18.699600px;}
._1c_c01177{width:19.772760px;}
._13_c01177{width:21.948000px;}
._12_c01177{width:22.968000px;}
._11_c01177{width:24.861600px;}
._18_c01177{width:26.436000px;}
._c_c01177{width:30.156000px;}
._10_c01177{width:31.461600px;}
._e_c01177{width:33.136800px;}
._d_c01177{width:34.164000px;}
._16_c01177{width:36.132000px;}
._f_c01177{width:38.109600px;}
._15_c01177{width:39.218400px;}
._14_c01177{width:41.155200px;}
.fc0_c01177{color:rgb(0,0,0);}
.fs4_c01177{font-size:40.000002px;}
.fs1_c01177{font-size:48.000000px;}
.fs3_c01177{font-size:60.000000px;}
.fs0_c01177{font-size:72.000000px;}
.fs2_c01177{font-size:78.000000px;}
.y0_c01177{bottom:0.000000px;}
.y17_c01177{bottom:67.500000px;}
.y1c_c01177{bottom:132.000000px;}
.y1b_c01177{bottom:155.350050px;}
.y1a_c01177{bottom:204.750000px;}
.y19_c01177{bottom:254.250000px;}
.y18_c01177{bottom:303.750000px;}
.y15_c01177{bottom:450.000000px;}
.y14_c01177{bottom:477.000000px;}
.y13_c01177{bottom:504.000000px;}
.y12_c01177{bottom:531.000000px;}
.y11_c01177{bottom:558.000000px;}
.y10_c01177{bottom:606.000000px;}
.yf_c01177{bottom:633.000000px;}
.ye_c01177{bottom:660.000000px;}
.yd_c01177{bottom:687.000000px;}
.yc_c01177{bottom:714.000000px;}
.yb_c01177{bottom:741.000000px;}
.ya_c01177{bottom:768.000000px;}
.y9_c01177{bottom:816.000000px;}
.y8_c01177{bottom:843.000000px;}
.y7_c01177{bottom:870.000000px;}
.y6_c01177{bottom:897.000000px;}
.y5_c01177{bottom:924.000000px;}
.y4_c01177{bottom:970.500000px;}
.y3_c01177{bottom:1041.000000px;}
.y2_c01177{bottom:1068.000000px;}
.y1_c01177{bottom:1095.000000px;}
.y16_c01177{bottom:1194.000000px;}
.h6_c01177{height:35.781252px;}
.h7_c01177{height:38.271675px;}
.h5_c01177{height:44.208984px;}
.h2_c01177{height:51.257812px;}
.h8_c01177{height:53.671875px;}
.h4_c01177{height:56.074219px;}
.h3_c01177{height:56.100586px;}
.h1_c01177{height:57.258075px;}
.h0_c01177{height:1263.000000px;}
.w0_c01177{width:892.500000px;}
.x0_c01177{left:0.000000px;}
.x1_c01177{left:65.480310px;}
@media print{
.v3_c01177{vertical-align:-29.333333pt;}
.v2_c01177{vertical-align:-20.521067pt;}
.v4_c01177{vertical-align:-13.689067pt;}
.v0_c01177{vertical-align:0.000000pt;}
.v1_c01177{vertical-align:20.521067pt;}
.ls7_c01177{letter-spacing:-0.012800pt;}
.ls6_c01177{letter-spacing:-0.006400pt;}
.ls5_c01177{letter-spacing:0.000000pt;}
.ls1_c01177{letter-spacing:0.006933pt;}
.ls8_c01177{letter-spacing:0.010667pt;}
.ls4_c01177{letter-spacing:2.106667pt;}
.ls2_c01177{letter-spacing:5.890667pt;}
.ls3_c01177{letter-spacing:6.897777pt;}
.ls0_c01177{letter-spacing:12.169653pt;}
.ws0_c01177{word-spacing:-11.733333pt;}
.ws1_c01177{word-spacing:-8.888889pt;}
.ws2_c01177{word-spacing:0.000000pt;}
._17_c01177{margin-left:-9.320533pt;}
._19_c01177{margin-left:-7.509139pt;}
._b_c01177{margin-left:-6.413013pt;}
._1a_c01177{margin-left:-4.503467pt;}
._2_c01177{margin-left:-3.507200pt;}
._0_c01177{margin-left:-1.683200pt;}
._8_c01177{width:0.900267pt;}
._7_c01177{width:2.370133pt;}
._3_c01177{width:3.569067pt;}
._4_c01177{width:4.840533pt;}
._6_c01177{width:5.952000pt;}
._1_c01177{width:7.671467pt;}
._5_c01177{width:9.181867pt;}
._a_c01177{width:11.430400pt;}
._9_c01177{width:13.049600pt;}
._1d_c01177{width:15.133333pt;}
._1b_c01177{width:16.621867pt;}
._1c_c01177{width:17.575787pt;}
._13_c01177{width:19.509333pt;}
._12_c01177{width:20.416000pt;}
._11_c01177{width:22.099200pt;}
._18_c01177{width:23.498667pt;}
._c_c01177{width:26.805333pt;}
._10_c01177{width:27.965867pt;}
._e_c01177{width:29.454933pt;}
._d_c01177{width:30.368000pt;}
._16_c01177{width:32.117333pt;}
._f_c01177{width:33.875200pt;}
._15_c01177{width:34.860800pt;}
._14_c01177{width:36.582400pt;}
.fs4_c01177{font-size:35.555557pt;}
.fs1_c01177{font-size:42.666667pt;}
.fs3_c01177{font-size:53.333333pt;}
.fs0_c01177{font-size:64.000000pt;}
.fs2_c01177{font-size:69.333333pt;}
.y0_c01177{bottom:0.000000pt;}
.y17_c01177{bottom:60.000000pt;}
.y1c_c01177{bottom:117.333333pt;}
.y1b_c01177{bottom:138.088933pt;}
.y1a_c01177{bottom:182.000000pt;}
.y19_c01177{bottom:226.000000pt;}
.y18_c01177{bottom:270.000000pt;}
.y15_c01177{bottom:400.000000pt;}
.y14_c01177{bottom:424.000000pt;}
.y13_c01177{bottom:448.000000pt;}
.y12_c01177{bottom:472.000000pt;}
.y11_c01177{bottom:496.000000pt;}
.y10_c01177{bottom:538.666667pt;}
.yf_c01177{bottom:562.666667pt;}
.ye_c01177{bottom:586.666667pt;}
.yd_c01177{bottom:610.666667pt;}
.yc_c01177{bottom:634.666667pt;}
.yb_c01177{bottom:658.666667pt;}
.ya_c01177{bottom:682.666667pt;}
.y9_c01177{bottom:725.333333pt;}
.y8_c01177{bottom:749.333333pt;}
.y7_c01177{bottom:773.333333pt;}
.y6_c01177{bottom:797.333333pt;}
.y5_c01177{bottom:821.333333pt;}
.y4_c01177{bottom:862.666667pt;}
.y3_c01177{bottom:925.333333pt;}
.y2_c01177{bottom:949.333333pt;}
.y1_c01177{bottom:973.333333pt;}
.y16_c01177{bottom:1061.333333pt;}
.h6_c01177{height:31.805557pt;}
.h7_c01177{height:34.019267pt;}
.h5_c01177{height:39.296875pt;}
.h2_c01177{height:45.562500pt;}
.h8_c01177{height:47.708333pt;}
.h4_c01177{height:49.843750pt;}
.h3_c01177{height:49.867188pt;}
.h1_c01177{height:50.896067pt;}
.h0_c01177{height:1122.666667pt;}
.w0_c01177{width:793.333333pt;}
.x0_c01177{left:0.000000pt;}
.x1_c01177{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fb3ea18cd65bd6dc36f1ab83.woff2')format("woff");}.ff1_c01178{font-family:ff1_c01178;line-height:0.783203;font-style:normal;font-weight:normal;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_837536a269cd615b7faddc53.woff2')format("woff");}.ff2_c01178{font-family:ff2_c01178;line-height:1.155762;font-style: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);}
.v0_c01178{vertical-align:0.000000px;}
.ls2_c01178{letter-spacing:0.000000px;}
.ls1_c01178{letter-spacing:0.012000px;}
.ls0_c01178{letter-spacing:0.021600px;}
.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;}
}
.ws0_c01178{word-spacing:0.000000px;}
._0_c01178{margin-left:-3.426000px;}
.fc0_c01178{color:rgb(0,0,0);}
.fs0_c01178{font-size:54.000000px;}
.fs1_c01178{font-size:60.000000px;}
.y0_c01178{bottom:0.000000px;}
.y2_c01178{bottom:12.000000px;}
.y5_c01178{bottom:67.500000px;}
.y3_c01178{bottom:214.500000px;}
.y1_c01178{bottom:673.500000px;}
.y4_c01178{bottom:1194.000000px;}
.h2_c01178{height:41.633789px;}
.h4_c01178{height:56.074219px;}
.h3_c01178{height:430.500000px;}
.h1_c01178{height:439.500000px;}
.h0_c01178{height:1263.000000px;}
.w1_c01178{width:676.500000px;}
.w0_c01178{width:892.500000px;}
.x0_c01178{left:0.000000px;}
.x1_c01178{left:150.000000px;}
.x3_c01178{left:208.582800px;}
.x2_c01178{left:292.331550px;}
.x4_c01178{left:416.782800px;}
.x5_c01178{left:801.992850px;}
@media print{
.v0_c01178{vertical-align:0.000000pt;}
.ls2_c01178{letter-spacing:0.000000pt;}
.ls1_c01178{letter-spacing:0.010667pt;}
.ls0_c01178{letter-spacing:0.019200pt;}
.ws0_c01178{word-spacing:0.000000pt;}
._0_c01178{margin-left:-3.045333pt;}
.fs0_c01178{font-size:48.000000pt;}
.fs1_c01178{font-size:53.333333pt;}
.y0_c01178{bottom:0.000000pt;}
.y2_c01178{bottom:10.666667pt;}
.y5_c01178{bottom:60.000000pt;}
.y3_c01178{bottom:190.666667pt;}
.y1_c01178{bottom:598.666667pt;}
.y4_c01178{bottom:1061.333333pt;}
.h2_c01178{height:37.007812pt;}
.h4_c01178{height:49.843750pt;}
.h3_c01178{height:382.666667pt;}
.h1_c01178{height:390.666667pt;}
.h0_c01178{height:1122.666667pt;}
.w1_c01178{width:601.333333pt;}
.w0_c01178{width:793.333333pt;}
.x0_c01178{left:0.000000pt;}
.x1_c01178{left:133.333333pt;}
.x3_c01178{left:185.406933pt;}
.x2_c01178{left:259.850267pt;}
.x4_c01178{left:370.473600pt;}
.x5_c01178{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_82113d41dba9cba89ecccb31.woff2')format("woff");}.ff1_c01179{font-family:ff1_c01179;line-height:1.144531;font-style:normal;font-weight:normal;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_9d85d88c9822734b96ebb609.woff2')format("woff");}.ff2_c01179{font-family:ff2_c01179;line-height:0.933105;font-style:normal;font-weight:normal;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_7cd6728eec568b229d0630c1.woff2')format("woff");}.ff3_c01179{font-family:ff3_c01179;line-height:0.755859;font-style:normal;font-weight:normal;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_9bada4d34fd9f13ce10d8f99.woff2')format("woff");}.ff4_c01179{font-family:ff4_c01179;line-height:1.155762;font-style:normal;font-weight:normal;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_7f35fc4a4696179cb9887ea2.woff2')format("woff");}.ff5_c01179{font-family:ff5_c01179;line-height:0.900391;font-style:normal;font-weight: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_c01179;src:url('chunks/assets/font_4dc1e561a8bc6853bafe99ef.woff2')format("woff");}.ff6_c01179{font-family:ff6_c01179;line-height:0.892578;font-style: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);}
.m1_c01179{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3_c01179{vertical-align:-33.000000px;}
.v2_c01179{vertical-align:-23.086200px;}
.v0_c01179{vertical-align:0.000000px;}
.v1_c01179{vertical-align:23.086200px;}
.ls3_c01179{letter-spacing:-0.009600px;}
.ls2_c01179{letter-spacing:0.000000px;}
.ls4_c01179{letter-spacing:0.012000px;}
.ls0_c01179{letter-spacing:0.016200px;}
.ls1_c01179{letter-spacing:0.021600px;}
.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;}
}
.ws0_c01179{word-spacing:-13.190400px;}
.ws1_c01179{word-spacing:-10.000001px;}
.ws2_c01179{word-spacing:0.000000px;}
._6_c01179{margin-left:-9.028800px;}
._12_c01179{margin-left:-5.977242px;}
._13_c01179{margin-left:-4.788000px;}
._9_c01179{margin-left:-2.800800px;}
._4_c01179{margin-left:-1.058400px;}
._d_c01179{width:1.144800px;}
._3_c01179{width:2.203200px;}
._11_c01179{width:3.225600px;}
._1_c01179{width:4.456800px;}
._f_c01179{width:5.601600px;}
._e_c01179{width:10.785600px;}
._8_c01179{width:11.858400px;}
._10_c01179{width:13.096800px;}
._7_c01179{width:14.313600px;}
._5_c01179{width:15.998400px;}
._2_c01179{width:17.575200px;}
._c_c01179{width:20.822400px;}
._0_c01179{width:21.967200px;}
._a_c01179{width:23.241600px;}
._b_c01179{width:26.013600px;}
.fc0_c01179{color:rgb(0,0,0);}
.fs4_c01179{font-size:40.000002px;}
.fs2_c01179{font-size:48.000000px;}
.fs0_c01179{font-size:54.000000px;}
.fs3_c01179{font-size:60.000000px;}
.fs1_c01179{font-size:72.000000px;}
.y0_c01179{bottom:0.000000px;}
.y4_c01179{bottom:10.500000px;}
.y6_c01179{bottom:12.000000px;}
.y3_c01179{bottom:27.000000px;}
.y2_c01179{bottom:43.500000px;}
.yd_c01179{bottom:67.500000px;}
.ye_c01179{bottom:140.250000px;}
.yb_c01179{bottom:201.000000px;}
.ya_c01179{bottom:228.000000px;}
.y9_c01179{bottom:255.000000px;}
.y8_c01179{bottom:282.000000px;}
.y7_c01179{bottom:309.000000px;}
.y5_c01179{bottom:354.000000px;}
.y1_c01179{bottom:681.000000px;}
.yc_c01179{bottom:1194.000000px;}
.h8_c01179{height:27.304689px;}
.h7_c01179{height:44.208984px;}
.h2_c01179{height:50.756836px;}
.h4_c01179{height:51.187500px;}
.h6_c01179{height:56.074219px;}
.h5_c01179{height:57.211200px;}
.h3_c01179{height:298.500000px;}
.h1_c01179{height:432.000000px;}
.h0_c01179{height:1263.000000px;}
.w1_c01179{width:676.500000px;}
.w0_c01179{width:892.500000px;}
.x0_c01179{left:0.000000px;}
.x3_c01179{left:17.562360px;}
.x4_c01179{left:22.525980px;}
.x1_c01179{left:66.000000px;}
.x5_c01179{left:74.255130px;}
.x2_c01179{left:583.078050px;}
@media print{
.v3_c01179{vertical-align:-29.333333pt;}
.v2_c01179{vertical-align:-20.521067pt;}
.v0_c01179{vertical-align:0.000000pt;}
.v1_c01179{vertical-align:20.521067pt;}
.ls3_c01179{letter-spacing:-0.008533pt;}
.ls2_c01179{letter-spacing:0.000000pt;}
.ls4_c01179{letter-spacing:0.010667pt;}
.ls0_c01179{letter-spacing:0.014400pt;}
.ls1_c01179{letter-spacing:0.019200pt;}
.ws0_c01179{word-spacing:-11.724800pt;}
.ws1_c01179{word-spacing:-8.888889pt;}
.ws2_c01179{word-spacing:0.000000pt;}
._6_c01179{margin-left:-8.025600pt;}
._12_c01179{margin-left:-5.313104pt;}
._13_c01179{margin-left:-4.256000pt;}
._9_c01179{margin-left:-2.489600pt;}
._4_c01179{margin-left:-0.940800pt;}
._d_c01179{width:1.017600pt;}
._3_c01179{width:1.958400pt;}
._11_c01179{width:2.867200pt;}
._1_c01179{width:3.961600pt;}
._f_c01179{width:4.979200pt;}
._e_c01179{width:9.587200pt;}
._8_c01179{width:10.540800pt;}
._10_c01179{width:11.641600pt;}
._7_c01179{width:12.723200pt;}
._5_c01179{width:14.220800pt;}
._2_c01179{width:15.622400pt;}
._c_c01179{width:18.508800pt;}
._0_c01179{width:19.526400pt;}
._a_c01179{width:20.659200pt;}
._b_c01179{width:23.123200pt;}
.fs4_c01179{font-size:35.555557pt;}
.fs2_c01179{font-size:42.666667pt;}
.fs0_c01179{font-size:48.000000pt;}
.fs3_c01179{font-size:53.333333pt;}
.fs1_c01179{font-size:64.000000pt;}
.y0_c01179{bottom:0.000000pt;}
.y4_c01179{bottom:9.333333pt;}
.y6_c01179{bottom:10.666667pt;}
.y3_c01179{bottom:24.000000pt;}
.y2_c01179{bottom:38.666667pt;}
.yd_c01179{bottom:60.000000pt;}
.ye_c01179{bottom:124.666667pt;}
.yb_c01179{bottom:178.666667pt;}
.ya_c01179{bottom:202.666667pt;}
.y9_c01179{bottom:226.666667pt;}
.y8_c01179{bottom:250.666667pt;}
.y7_c01179{bottom:274.666667pt;}
.y5_c01179{bottom:314.666667pt;}
.y1_c01179{bottom:605.333333pt;}
.yc_c01179{bottom:1061.333333pt;}
.h8_c01179{height:24.270835pt;}
.h7_c01179{height:39.296875pt;}
.h2_c01179{height:45.117188pt;}
.h4_c01179{height:45.500000pt;}
.h6_c01179{height:49.843750pt;}
.h5_c01179{height:50.854400pt;}
.h3_c01179{height:265.333333pt;}
.h1_c01179{height:384.000000pt;}
.h0_c01179{height:1122.666667pt;}
.w1_c01179{width:601.333333pt;}
.w0_c01179{width:793.333333pt;}
.x0_c01179{left:0.000000pt;}
.x3_c01179{left:15.610987pt;}
.x4_c01179{left:20.023093pt;}
.x1_c01179{left:58.666667pt;}
.x5_c01179{left:66.004560pt;}
.x2_c01179{left:518.291600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_26d3a9b5884a78acb847498a.woff2')format("woff");}.ff1_c01180{font-family:ff1_c01180;line-height:0.933105;font-style:normal;font-weight:normal;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_15a43b93f2110a56968f581c.woff2')format("woff");}.ff2_c01180{font-family:ff2_c01180;line-height:0.987793;font-style:normal;font-weight:normal;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_9fa67e6968620ea844adc93f.woff2')format("woff");}.ff3_c01180{font-family:ff3_c01180;line-height:1.155762;font-style: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);}
.v0_c01180{vertical-align:0.000000px;}
.ls1_c01180{letter-spacing:0.000000px;}
.ls0_c01180{letter-spacing:0.012000px;}
.ls2_c01180{letter-spacing:0.021600px;}
.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;}
}
.ws0_c01180{word-spacing:0.000000px;}
._7_c01180{margin-left:-3.426000px;}
._2_c01180{margin-left:-2.167200px;}
._5_c01180{width:2.570400px;}
._0_c01180{width:4.730400px;}
._1_c01180{width:6.357600px;}
._6_c01180{width:8.539200px;}
._4_c01180{width:11.174400px;}
._3_c01180{width:13.291200px;}
.fc0_c01180{color:rgb(0,0,0);}
.fs1_c01180{font-size:54.000000px;}
.fs2_c01180{font-size:60.000000px;}
.fs0_c01180{font-size:72.000000px;}
.y0_c01180{bottom:0.000000px;}
.y5_c01180{bottom:10.500000px;}
.y4_c01180{bottom:28.500000px;}
.y8_c01180{bottom:67.500000px;}
.y6_c01180{bottom:303.000000px;}
.y3_c01180{bottom:648.000000px;}
.y2_c01180{bottom:1068.000000px;}
.y1_c01180{bottom:1095.000000px;}
.y7_c01180{bottom:1194.000000px;}
.h3_c01180{height:42.292969px;}
.h1_c01180{height:51.187500px;}
.h5_c01180{height:56.074219px;}
.h4_c01180{height:325.500000px;}
.h2_c01180{height:388.500000px;}
.h0_c01180{height:1263.000000px;}
.w1_c01180{width:676.500000px;}
.w0_c01180{width:892.500000px;}
.x0_c01180{left:0.000000px;}
.x4_c01180{left:8.249977px;}
.x2_c01180{left:17.456880px;}
.x5_c01180{left:122.665260px;}
.x3_c01180{left:141.649635px;}
.x1_c01180{left:150.519750px;}
.x6_c01180{left:416.782800px;}
.x7_c01180{left:801.992850px;}
@media print{
.v0_c01180{vertical-align:0.000000pt;}
.ls1_c01180{letter-spacing:0.000000pt;}
.ls0_c01180{letter-spacing:0.010667pt;}
.ls2_c01180{letter-spacing:0.019200pt;}
.ws0_c01180{word-spacing:0.000000pt;}
._7_c01180{margin-left:-3.045333pt;}
._2_c01180{margin-left:-1.926400pt;}
._5_c01180{width:2.284800pt;}
._0_c01180{width:4.204800pt;}
._1_c01180{width:5.651200pt;}
._6_c01180{width:7.590400pt;}
._4_c01180{width:9.932800pt;}
._3_c01180{width:11.814400pt;}
.fs1_c01180{font-size:48.000000pt;}
.fs2_c01180{font-size:53.333333pt;}
.fs0_c01180{font-size:64.000000pt;}
.y0_c01180{bottom:0.000000pt;}
.y5_c01180{bottom:9.333333pt;}
.y4_c01180{bottom:25.333333pt;}
.y8_c01180{bottom:60.000000pt;}
.y6_c01180{bottom:269.333333pt;}
.y3_c01180{bottom:576.000000pt;}
.y2_c01180{bottom:949.333333pt;}
.y1_c01180{bottom:973.333333pt;}
.y7_c01180{bottom:1061.333333pt;}
.h3_c01180{height:37.593750pt;}
.h1_c01180{height:45.500000pt;}
.h5_c01180{height:49.843750pt;}
.h4_c01180{height:289.333333pt;}
.h2_c01180{height:345.333333pt;}
.h0_c01180{height:1122.666667pt;}
.w1_c01180{width:601.333333pt;}
.w0_c01180{width:793.333333pt;}
.x0_c01180{left:0.000000pt;}
.x4_c01180{left:7.333313pt;}
.x2_c01180{left:15.517227pt;}
.x5_c01180{left:109.035787pt;}
.x3_c01180{left:125.910787pt;}
.x1_c01180{left:133.795333pt;}
.x6_c01180{left:370.473600pt;}
.x7_c01180{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1fad8f34c5fbbff18127f371.woff2')format("woff");}.ff1_c01181{font-family:ff1_c01181;line-height:0.987793;font-style:normal;font-weight:normal;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_cf82cf995beb35139beac119.woff2')format("woff");}.ff2_c01181{font-family:ff2_c01181;line-height:0.756836;font-style:normal;font-weight:normal;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_45d21b342b670d1ef74adaa3.woff2')format("woff");}.ff3_c01181{font-family:ff3_c01181;line-height:1.155762;font-style: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);}
.v0_c01181{vertical-align:0.000000px;}
.ls0_c01181{letter-spacing:0.000000px;}
.ls2_c01181{letter-spacing:0.012000px;}
.ls1_c01181{letter-spacing:0.021600px;}
.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;}
}
.ws0_c01181{word-spacing:0.000000px;}
._1_c01181{margin-left:-17.064000px;}
._2_c01181{margin-left:-3.216000px;}
._0_c01181{width:1.858260px;}
.fc0_c01181{color:rgb(0,0,0);}
.fs0_c01181{font-size:54.000000px;}
.fs1_c01181{font-size:60.000000px;}
.y0_c01181{bottom:0.000000px;}
.y5_c01181{bottom:10.500000px;}
.y2_c01181{bottom:12.000000px;}
.y4_c01181{bottom:28.500000px;}
.y7_c01181{bottom:67.500000px;}
.y3_c01181{bottom:249.000000px;}
.y1_c01181{bottom:559.500000px;}
.y6_c01181{bottom:1194.000000px;}
.h2_c01181{height:42.292969px;}
.h5_c01181{height:44.208984px;}
.h4_c01181{height:56.074219px;}
.h3_c01181{height:307.500000px;}
.h1_c01181{height:553.500000px;}
.h0_c01181{height:1263.000000px;}
.w1_c01181{width:676.500000px;}
.w0_c01181{width:892.500000px;}
.x0_c01181{left:0.000000px;}
.x3_c01181{left:7.500000px;}
.x2_c01181{left:43.998780px;}
.x1_c01181{left:66.000000px;}
.x4_c01181{left:158.494950px;}
@media print{
.v0_c01181{vertical-align:0.000000pt;}
.ls0_c01181{letter-spacing:0.000000pt;}
.ls2_c01181{letter-spacing:0.010667pt;}
.ls1_c01181{letter-spacing:0.019200pt;}
.ws0_c01181{word-spacing:0.000000pt;}
._1_c01181{margin-left:-15.168000pt;}
._2_c01181{margin-left:-2.858667pt;}
._0_c01181{width:1.651787pt;}
.fs0_c01181{font-size:48.000000pt;}
.fs1_c01181{font-size:53.333333pt;}
.y0_c01181{bottom:0.000000pt;}
.y5_c01181{bottom:9.333333pt;}
.y2_c01181{bottom:10.666667pt;}
.y4_c01181{bottom:25.333333pt;}
.y7_c01181{bottom:60.000000pt;}
.y3_c01181{bottom:221.333333pt;}
.y1_c01181{bottom:497.333333pt;}
.y6_c01181{bottom:1061.333333pt;}
.h2_c01181{height:37.593750pt;}
.h5_c01181{height:39.296875pt;}
.h4_c01181{height:49.843750pt;}
.h3_c01181{height:273.333333pt;}
.h1_c01181{height:492.000000pt;}
.h0_c01181{height:1122.666667pt;}
.w1_c01181{width:601.333333pt;}
.w0_c01181{width:793.333333pt;}
.x0_c01181{left:0.000000pt;}
.x3_c01181{left:6.666667pt;}
.x2_c01181{left:39.110027pt;}
.x1_c01181{left:58.666667pt;}
.x4_c01181{left:140.884400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fc3a3c15e56a0ce4afd6e9d5.woff2')format("woff");}.ff1_c01182{font-family:ff1_c01182;line-height:0.975586;font-style:normal;font-weight:normal;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_e24ee6ad75a3218af6e5ab72.woff2')format("woff");}.ff2_c01182{font-family:ff2_c01182;line-height:0.934082;font-style:normal;font-weight:normal;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_5e1a70b84b88ef694e1ad49a.woff2')format("woff");}.ff3_c01182{font-family:ff3_c01182;line-height:0.932129;font-style:normal;font-weight:normal;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_fb5363c96f12b1c99b8b5035.woff2')format("woff");}.ff4_c01182{font-family:ff4_c01182;line-height:1.010254;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01182;src:url('chunks/assets/font_b327f914e58f6860c0ea7e65.woff2')format("woff");}.ff5_c01182{font-family:ff5_c01182;line-height:1.155762;font-style: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.006000px;}
.ls3_c01182{letter-spacing:0.000000px;}
.ls0_c01182{letter-spacing:0.006000px;}
.ls1_c01182{letter-spacing:0.012000px;}
.ls2_c01182{letter-spacing:0.021600px;}
.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;}
}
.ws0_c01182{word-spacing:0.000000px;}
._8_c01182{margin-left:-6.040200px;}
._6_c01182{margin-left:-4.290000px;}
._4_c01182{margin-left:-2.941800px;}
._0_c01182{margin-left:-1.445400px;}
._2_c01182{width:1.044000px;}
._1_c01182{width:2.448000px;}
._3_c01182{width:4.211400px;}
._5_c01182{width:5.519400px;}
._7_c01182{width:7.296000px;}
.fc0_c01182{color:rgb(0,0,0);}
.fs0_c01182{font-size:54.000000px;}
.fs2_c01182{font-size:60.000000px;}
.fs1_c01182{font-size:66.000000px;}
.fs3_c01182{font-size:72.000000px;}
.y0_c01182{bottom:0.000000px;}
.y2_c01182{bottom:12.000000px;}
.yc_c01182{bottom:67.500000px;}
.ya_c01182{bottom:147.000000px;}
.y9_c01182{bottom:168.000000px;}
.y8_c01182{bottom:205.500000px;}
.y7_c01182{bottom:223.500000px;}
.y6_c01182{bottom:241.500000px;}
.y5_c01182{bottom:282.000000px;}
.y4_c01182{bottom:324.000000px;}
.y3_c01182{bottom:366.000000px;}
.y1_c01182{bottom:426.000000px;}
.yb_c01182{bottom:1194.000000px;}
.h2_c01182{height:41.633789px;}
.h4_c01182{height:42.714844px;}
.h3_c01182{height:46.986328px;}
.h5_c01182{height:52.417969px;}
.h6_c01182{height:56.074219px;}
.h1_c01182{height:687.000000px;}
.h0_c01182{height:1263.000000px;}
.w1_c01182{width:676.500000px;}
.w0_c01182{width:892.500000px;}
.x0_c01182{left:0.000000px;}
.x2_c01182{left:114.811140px;}
.x1_c01182{left:150.000000px;}
.x3_c01182{left:416.782800px;}
.x4_c01182{left:801.992850px;}
@media print{
.v0_c01182{vertical-align:0.000000pt;}
.ls4_c01182{letter-spacing:-0.005333pt;}
.ls3_c01182{letter-spacing:0.000000pt;}
.ls0_c01182{letter-spacing:0.005333pt;}
.ls1_c01182{letter-spacing:0.010667pt;}
.ls2_c01182{letter-spacing:0.019200pt;}
.ws0_c01182{word-spacing:0.000000pt;}
._8_c01182{margin-left:-5.369067pt;}
._6_c01182{margin-left:-3.813333pt;}
._4_c01182{margin-left:-2.614933pt;}
._0_c01182{margin-left:-1.284800pt;}
._2_c01182{width:0.928000pt;}
._1_c01182{width:2.176000pt;}
._3_c01182{width:3.743467pt;}
._5_c01182{width:4.906133pt;}
._7_c01182{width:6.485333pt;}
.fs0_c01182{font-size:48.000000pt;}
.fs2_c01182{font-size:53.333333pt;}
.fs1_c01182{font-size:58.666667pt;}
.fs3_c01182{font-size:64.000000pt;}
.y0_c01182{bottom:0.000000pt;}
.y2_c01182{bottom:10.666667pt;}
.yc_c01182{bottom:60.000000pt;}
.ya_c01182{bottom:130.666667pt;}
.y9_c01182{bottom:149.333333pt;}
.y8_c01182{bottom:182.666667pt;}
.y7_c01182{bottom:198.666667pt;}
.y6_c01182{bottom:214.666667pt;}
.y5_c01182{bottom:250.666667pt;}
.y4_c01182{bottom:288.000000pt;}
.y3_c01182{bottom:325.333333pt;}
.y1_c01182{bottom:378.666667pt;}
.yb_c01182{bottom:1061.333333pt;}
.h2_c01182{height:37.007812pt;}
.h4_c01182{height:37.968750pt;}
.h3_c01182{height:41.765625pt;}
.h5_c01182{height:46.593750pt;}
.h6_c01182{height:49.843750pt;}
.h1_c01182{height:610.666667pt;}
.h0_c01182{height:1122.666667pt;}
.w1_c01182{width:601.333333pt;}
.w0_c01182{width:793.333333pt;}
.x0_c01182{left:0.000000pt;}
.x2_c01182{left:102.054347pt;}
.x1_c01182{left:133.333333pt;}
.x3_c01182{left:370.473600pt;}
.x4_c01182{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_10b1cb4b87d5d75266745357.woff2')format("woff");}.ff1_c01183{font-family:ff1_c01183;line-height:1.010254;font-style:normal;font-weight:normal;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_954777ee40766637eb759d70.woff2')format("woff");}.ff2_c01183{font-family:ff2_c01183;line-height:0.756836;font-style:normal;font-weight:normal;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_1c6a2bd5cf042bfa8c5eb0c6.woff2')format("woff");}.ff3_c01183{font-family:ff3_c01183;line-height:1.155762;font-style: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;}
.ls1_c01183{letter-spacing:0.000000px;}
.ls2_c01183{letter-spacing:0.012000px;}
.ls0_c01183{letter-spacing:3.038400px;}
.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:0.000000px;}
._7_c01183{margin-left:-7.977600px;}
._b_c01183{margin-left:-6.631200px;}
._15_c01183{margin-left:-4.658400px;}
._5_c01183{margin-left:-3.499200px;}
._c_c01183{margin-left:-2.462400px;}
._8_c01183{margin-left:-1.425600px;}
._a_c01183{width:1.432800px;}
._1_c01183{width:2.520000px;}
._3_c01183{width:4.492800px;}
._14_c01183{width:5.515200px;}
._12_c01183{width:6.638400px;}
._16_c01183{width:8.568000px;}
._9_c01183{width:10.476000px;}
._4_c01183{width:11.750400px;}
._2_c01183{width:13.629600px;}
._13_c01183{width:14.796000px;}
._0_c01183{width:16.214400px;}
._6_c01183{width:19.699200px;}
._1b_c01183{width:21.261600px;}
._1a_c01183{width:22.543200px;}
._19_c01183{width:24.004800px;}
._17_c01183{width:26.251200px;}
._18_c01183{width:27.662400px;}
._11_c01183{width:29.959200px;}
._d_c01183{width:31.190400px;}
._10_c01183{width:33.163200px;}
._e_c01183{width:34.963200px;}
._f_c01183{width:37.994400px;}
.fc0_c01183{color:rgb(0,0,0);}
.fs1_c01183{font-size:60.000000px;}
.fs0_c01183{font-size:72.000000px;}
.y0_c01183{bottom:0.000000px;}
.y2d_c01183{bottom:67.500000px;}
.y2b_c01183{bottom:193.500000px;}
.y2a_c01183{bottom:214.500000px;}
.y29_c01183{bottom:235.500000px;}
.y28_c01183{bottom:256.500000px;}
.y27_c01183{bottom:277.500000px;}
.y26_c01183{bottom:298.500000px;}
.y25_c01183{bottom:319.500000px;}
.y24_c01183{bottom:340.500000px;}
.y23_c01183{bottom:361.500000px;}
.y22_c01183{bottom:382.500000px;}
.y21_c01183{bottom:403.500000px;}
.y20_c01183{bottom:424.500000px;}
.y1f_c01183{bottom:445.500000px;}
.y1e_c01183{bottom:466.500000px;}
.y1d_c01183{bottom:487.500000px;}
.y1c_c01183{bottom:508.500000px;}
.y1b_c01183{bottom:529.500000px;}
.y1a_c01183{bottom:550.500000px;}
.y19_c01183{bottom:571.500000px;}
.y18_c01183{bottom:592.500000px;}
.y17_c01183{bottom:613.500000px;}
.y16_c01183{bottom:634.500000px;}
.y15_c01183{bottom:655.500000px;}
.y14_c01183{bottom:676.500000px;}
.y13_c01183{bottom:697.500000px;}
.y12_c01183{bottom:718.500000px;}
.y11_c01183{bottom:739.500000px;}
.y10_c01183{bottom:760.500000px;}
.yf_c01183{bottom:781.500000px;}
.ye_c01183{bottom:802.500000px;}
.yd_c01183{bottom:823.500000px;}
.yc_c01183{bottom:844.500000px;}
.yb_c01183{bottom:865.500000px;}
.ya_c01183{bottom:886.500000px;}
.y9_c01183{bottom:928.500000px;}
.y8_c01183{bottom:949.500000px;}
.y7_c01183{bottom:970.500000px;}
.y6_c01183{bottom:991.500000px;}
.y5_c01183{bottom:1012.500000px;}
.y4_c01183{bottom:1033.500000px;}
.y3_c01183{bottom:1054.500000px;}
.y2_c01183{bottom:1075.500000px;}
.y1_c01183{bottom:1096.500000px;}
.y2c_c01183{bottom:1194.000000px;}
.h3_c01183{height:44.208984px;}
.h1_c01183{height:52.417969px;}
.h2_c01183{height:56.074219px;}
.h0_c01183{height:1263.000000px;}
.w0_c01183{width:892.500000px;}
.x0_c01183{left:0.000000px;}
.x1_c01183{left:65.480310px;}
@media print{
.v0_c01183{vertical-align:0.000000pt;}
.ls1_c01183{letter-spacing:0.000000pt;}
.ls2_c01183{letter-spacing:0.010667pt;}
.ls0_c01183{letter-spacing:2.700800pt;}
.ws0_c01183{word-spacing:0.000000pt;}
._7_c01183{margin-left:-7.091200pt;}
._b_c01183{margin-left:-5.894400pt;}
._15_c01183{margin-left:-4.140800pt;}
._5_c01183{margin-left:-3.110400pt;}
._c_c01183{margin-left:-2.188800pt;}
._8_c01183{margin-left:-1.267200pt;}
._a_c01183{width:1.273600pt;}
._1_c01183{width:2.240000pt;}
._3_c01183{width:3.993600pt;}
._14_c01183{width:4.902400pt;}
._12_c01183{width:5.900800pt;}
._16_c01183{width:7.616000pt;}
._9_c01183{width:9.312000pt;}
._4_c01183{width:10.444800pt;}
._2_c01183{width:12.115200pt;}
._13_c01183{width:13.152000pt;}
._0_c01183{width:14.412800pt;}
._6_c01183{width:17.510400pt;}
._1b_c01183{width:18.899200pt;}
._1a_c01183{width:20.038400pt;}
._19_c01183{width:21.337600pt;}
._17_c01183{width:23.334400pt;}
._18_c01183{width:24.588800pt;}
._11_c01183{width:26.630400pt;}
._d_c01183{width:27.724800pt;}
._10_c01183{width:29.478400pt;}
._e_c01183{width:31.078400pt;}
._f_c01183{width:33.772800pt;}
.fs1_c01183{font-size:53.333333pt;}
.fs0_c01183{font-size:64.000000pt;}
.y0_c01183{bottom:0.000000pt;}
.y2d_c01183{bottom:60.000000pt;}
.y2b_c01183{bottom:172.000000pt;}
.y2a_c01183{bottom:190.666667pt;}
.y29_c01183{bottom:209.333333pt;}
.y28_c01183{bottom:228.000000pt;}
.y27_c01183{bottom:246.666667pt;}
.y26_c01183{bottom:265.333333pt;}
.y25_c01183{bottom:284.000000pt;}
.y24_c01183{bottom:302.666667pt;}
.y23_c01183{bottom:321.333333pt;}
.y22_c01183{bottom:340.000000pt;}
.y21_c01183{bottom:358.666667pt;}
.y20_c01183{bottom:377.333333pt;}
.y1f_c01183{bottom:396.000000pt;}
.y1e_c01183{bottom:414.666667pt;}
.y1d_c01183{bottom:433.333333pt;}
.y1c_c01183{bottom:452.000000pt;}
.y1b_c01183{bottom:470.666667pt;}
.y1a_c01183{bottom:489.333333pt;}
.y19_c01183{bottom:508.000000pt;}
.y18_c01183{bottom:526.666667pt;}
.y17_c01183{bottom:545.333333pt;}
.y16_c01183{bottom:564.000000pt;}
.y15_c01183{bottom:582.666667pt;}
.y14_c01183{bottom:601.333333pt;}
.y13_c01183{bottom:620.000000pt;}
.y12_c01183{bottom:638.666667pt;}
.y11_c01183{bottom:657.333333pt;}
.y10_c01183{bottom:676.000000pt;}
.yf_c01183{bottom:694.666667pt;}
.ye_c01183{bottom:713.333333pt;}
.yd_c01183{bottom:732.000000pt;}
.yc_c01183{bottom:750.666667pt;}
.yb_c01183{bottom:769.333333pt;}
.ya_c01183{bottom:788.000000pt;}
.y9_c01183{bottom:825.333333pt;}
.y8_c01183{bottom:844.000000pt;}
.y7_c01183{bottom:862.666667pt;}
.y6_c01183{bottom:881.333333pt;}
.y5_c01183{bottom:900.000000pt;}
.y4_c01183{bottom:918.666667pt;}
.y3_c01183{bottom:937.333333pt;}
.y2_c01183{bottom:956.000000pt;}
.y1_c01183{bottom:974.666667pt;}
.y2c_c01183{bottom:1061.333333pt;}
.h3_c01183{height:39.296875pt;}
.h1_c01183{height:46.593750pt;}
.h2_c01183{height:49.843750pt;}
.h0_c01183{height:1122.666667pt;}
.w0_c01183{width:793.333333pt;}
.x0_c01183{left:0.000000pt;}
.x1_c01183{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f4c8e206cef4021827902da1.woff2')format("woff");}.ff1_c01184{font-family:ff1_c01184;line-height:1.010254;font-style:normal;font-weight:normal;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_a42943110e70062565035ec1.woff2')format("woff");}.ff2_c01184{font-family:ff2_c01184;line-height:1.155762;font-style: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);}
.v0_c01184{vertical-align:0.000000px;}
.ls2_c01184{letter-spacing:0.000000px;}
.ls1_c01184{letter-spacing:0.012000px;}
.ls0_c01184{letter-spacing:0.280800px;}
.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;}
}
.ws0_c01184{word-spacing:-18.000000px;}
.ws1_c01184{word-spacing:0.000000px;}
._10_c01184{margin-left:-7.970400px;}
._4_c01184{margin-left:-5.176800px;}
._0_c01184{margin-left:-4.132800px;}
._8_c01184{margin-left:-2.779200px;}
._6_c01184{margin-left:-1.526400px;}
._12_c01184{width:1.044000px;}
._2_c01184{width:2.404800px;}
._a_c01184{width:4.298400px;}
._16_c01184{width:5.652000px;}
._3_c01184{width:7.164000px;}
._b_c01184{width:8.164800px;}
._18_c01184{width:9.482400px;}
._7_c01184{width:10.548000px;}
._9_c01184{width:12.326400px;}
._1_c01184{width:13.716000px;}
._5_c01184{width:14.752800px;}
._17_c01184{width:16.826400px;}
._e_c01184{width:19.411200px;}
._11_c01184{width:20.541600px;}
._f_c01184{width:22.089600px;}
._d_c01184{width:23.284800px;}
._c_c01184{width:24.609600px;}
._1d_c01184{width:25.920000px;}
._13_c01184{width:27.244800px;}
._15_c01184{width:30.844800px;}
._14_c01184{width:33.595200px;}
._19_c01184{width:35.798400px;}
._1a_c01184{width:37.094400px;}
._1b_c01184{width:38.188800px;}
._1c_c01184{width:39.967200px;}
.fc0_c01184{color:rgb(0,0,0);}
.fs1_c01184{font-size:60.000000px;}
.fs0_c01184{font-size:72.000000px;}
.y0_c01184{bottom:0.000000px;}
.y23_c01184{bottom:67.500000px;}
.y21_c01184{bottom:382.500000px;}
.y20_c01184{bottom:403.500000px;}
.y1f_c01184{bottom:424.500000px;}
.y1e_c01184{bottom:466.500000px;}
.y1d_c01184{bottom:487.500000px;}
.y1c_c01184{bottom:508.500000px;}
.y1b_c01184{bottom:529.500000px;}
.y1a_c01184{bottom:550.500000px;}
.y19_c01184{bottom:571.500000px;}
.y18_c01184{bottom:592.500000px;}
.y17_c01184{bottom:613.500000px;}
.y16_c01184{bottom:634.500000px;}
.y15_c01184{bottom:655.500000px;}
.y14_c01184{bottom:697.500000px;}
.y13_c01184{bottom:718.500000px;}
.y12_c01184{bottom:739.500000px;}
.y11_c01184{bottom:760.500000px;}
.y10_c01184{bottom:781.500000px;}
.yf_c01184{bottom:802.500000px;}
.ye_c01184{bottom:823.500000px;}
.yd_c01184{bottom:844.500000px;}
.yc_c01184{bottom:865.500000px;}
.yb_c01184{bottom:886.500000px;}
.ya_c01184{bottom:907.500000px;}
.y9_c01184{bottom:928.500000px;}
.y8_c01184{bottom:949.500000px;}
.y7_c01184{bottom:970.500000px;}
.y6_c01184{bottom:991.500000px;}
.y5_c01184{bottom:1012.500000px;}
.y4_c01184{bottom:1033.500000px;}
.y3_c01184{bottom:1054.500000px;}
.y2_c01184{bottom:1075.500000px;}
.y1_c01184{bottom:1096.500000px;}
.y22_c01184{bottom:1194.000000px;}
.h1_c01184{height:52.417969px;}
.h2_c01184{height:56.074219px;}
.h0_c01184{height:1263.000000px;}
.w0_c01184{width:892.500000px;}
.x0_c01184{left:0.000000px;}
.x1_c01184{left:150.519750px;}
.x2_c01184{left:416.782800px;}
.x3_c01184{left:801.992850px;}
@media print{
.v0_c01184{vertical-align:0.000000pt;}
.ls2_c01184{letter-spacing:0.000000pt;}
.ls1_c01184{letter-spacing:0.010667pt;}
.ls0_c01184{letter-spacing:0.249600pt;}
.ws0_c01184{word-spacing:-16.000000pt;}
.ws1_c01184{word-spacing:0.000000pt;}
._10_c01184{margin-left:-7.084800pt;}
._4_c01184{margin-left:-4.601600pt;}
._0_c01184{margin-left:-3.673600pt;}
._8_c01184{margin-left:-2.470400pt;}
._6_c01184{margin-left:-1.356800pt;}
._12_c01184{width:0.928000pt;}
._2_c01184{width:2.137600pt;}
._a_c01184{width:3.820800pt;}
._16_c01184{width:5.024000pt;}
._3_c01184{width:6.368000pt;}
._b_c01184{width:7.257600pt;}
._18_c01184{width:8.428800pt;}
._7_c01184{width:9.376000pt;}
._9_c01184{width:10.956800pt;}
._1_c01184{width:12.192000pt;}
._5_c01184{width:13.113600pt;}
._17_c01184{width:14.956800pt;}
._e_c01184{width:17.254400pt;}
._11_c01184{width:18.259200pt;}
._f_c01184{width:19.635200pt;}
._d_c01184{width:20.697600pt;}
._c_c01184{width:21.875200pt;}
._1d_c01184{width:23.040000pt;}
._13_c01184{width:24.217600pt;}
._15_c01184{width:27.417600pt;}
._14_c01184{width:29.862400pt;}
._19_c01184{width:31.820800pt;}
._1a_c01184{width:32.972800pt;}
._1b_c01184{width:33.945600pt;}
._1c_c01184{width:35.526400pt;}
.fs1_c01184{font-size:53.333333pt;}
.fs0_c01184{font-size:64.000000pt;}
.y0_c01184{bottom:0.000000pt;}
.y23_c01184{bottom:60.000000pt;}
.y21_c01184{bottom:340.000000pt;}
.y20_c01184{bottom:358.666667pt;}
.y1f_c01184{bottom:377.333333pt;}
.y1e_c01184{bottom:414.666667pt;}
.y1d_c01184{bottom:433.333333pt;}
.y1c_c01184{bottom:452.000000pt;}
.y1b_c01184{bottom:470.666667pt;}
.y1a_c01184{bottom:489.333333pt;}
.y19_c01184{bottom:508.000000pt;}
.y18_c01184{bottom:526.666667pt;}
.y17_c01184{bottom:545.333333pt;}
.y16_c01184{bottom:564.000000pt;}
.y15_c01184{bottom:582.666667pt;}
.y14_c01184{bottom:620.000000pt;}
.y13_c01184{bottom:638.666667pt;}
.y12_c01184{bottom:657.333333pt;}
.y11_c01184{bottom:676.000000pt;}
.y10_c01184{bottom:694.666667pt;}
.yf_c01184{bottom:713.333333pt;}
.ye_c01184{bottom:732.000000pt;}
.yd_c01184{bottom:750.666667pt;}
.yc_c01184{bottom:769.333333pt;}
.yb_c01184{bottom:788.000000pt;}
.ya_c01184{bottom:806.666667pt;}
.y9_c01184{bottom:825.333333pt;}
.y8_c01184{bottom:844.000000pt;}
.y7_c01184{bottom:862.666667pt;}
.y6_c01184{bottom:881.333333pt;}
.y5_c01184{bottom:900.000000pt;}
.y4_c01184{bottom:918.666667pt;}
.y3_c01184{bottom:937.333333pt;}
.y2_c01184{bottom:956.000000pt;}
.y1_c01184{bottom:974.666667pt;}
.y22_c01184{bottom:1061.333333pt;}
.h1_c01184{height:46.593750pt;}
.h2_c01184{height:49.843750pt;}
.h0_c01184{height:1122.666667pt;}
.w0_c01184{width:793.333333pt;}
.x0_c01184{left:0.000000pt;}
.x1_c01184{left:133.795333pt;}
.x2_c01184{left:370.473600pt;}
.x3_c01184{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7b8c7594ff95a8e13b6d5976.woff2')format("woff");}.ff1_c01185{font-family:ff1_c01185;line-height:0.939453;font-style:normal;font-weight:normal;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_9f60d74b8862214e695467eb.woff2')format("woff");}.ff2_c01185{font-family:ff2_c01185;line-height:0.934082;font-style:normal;font-weight:normal;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_f731e45b62ae9a42d6573bad.woff2')format("woff");}.ff3_c01185{font-family:ff3_c01185;line-height:0.756836;font-style:normal;font-weight:normal;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_c5af1e09224530ade3cf703e.woff2')format("woff");}.ff4_c01185{font-family:ff4_c01185;line-height:1.155762;font-style:normal;font-weight:normal;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_255592ab955e959e621f0588.woff2')format("woff");}.ff5_c01185{font-family:ff5_c01185;line-height:0.901367;font-style:normal;font-weight: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_c01185;src:url('chunks/assets/font_607f3546e91e3a9d947aa919.woff2')format("woff");}.ff6_c01185{font-family:ff6_c01185;line-height:0.892578;font-style: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);}
.v3_c01185{vertical-align:-33.000000px;}
.v2_c01185{vertical-align:-23.086200px;}
.v0_c01185{vertical-align:0.000000px;}
.v1_c01185{vertical-align:23.086200px;}
.ls5_c01185{letter-spacing:-0.014400px;}
.ls4_c01185{letter-spacing:0.000000px;}
.ls0_c01185{letter-spacing:0.007800px;}
.ls6_c01185{letter-spacing:0.012000px;}
.ls2_c01185{letter-spacing:1.243800px;}
.ls3_c01185{letter-spacing:3.999999px;}
.ls1_c01185{letter-spacing:4.524660px;}
.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;}
}
.ws0_c01185{word-spacing:-15.000000px;}
.ws1_c01185{word-spacing:0.000000px;}
._16_c01185{margin-left:-10.584000px;}
._1a_c01185{margin-left:-7.041240px;}
._19_c01185{margin-left:-5.908800px;}
._7_c01185{margin-left:-4.363200px;}
._12_c01185{margin-left:-2.988000px;}
._3_c01185{margin-left:-1.706400px;}
._f_c01185{width:1.281600px;}
._0_c01185{width:2.325600px;}
._5_c01185{width:3.398400px;}
._c_c01185{width:4.442400px;}
._13_c01185{width:5.644800px;}
._10_c01185{width:6.724800px;}
._15_c01185{width:8.301600px;}
._11_c01185{width:10.188000px;}
._14_c01185{width:11.894400px;}
._9_c01185{width:13.874400px;}
._e_c01185{width:15.451200px;}
._17_c01185{width:16.509600px;}
._b_c01185{width:17.654400px;}
._d_c01185{width:18.676800px;}
._18_c01185{width:20.923200px;}
._a_c01185{width:22.046400px;}
._6_c01185{width:23.220000px;}
._1_c01185{width:24.350400px;}
._2_c01185{width:26.798400px;}
._4_c01185{width:28.317600px;}
._8_c01185{width:31.111200px;}
.fc1_c01185{color:rgb(255,255,255);}
.fc0_c01185{color:rgb(0,0,0);}
.fs5_c01185{font-size:40.000002px;}
.fs2_c01185{font-size:48.000000px;}
.fs4_c01185{font-size:60.000000px;}
.fs1_c01185{font-size:72.000000px;}
.fs0_c01185{font-size:78.000000px;}
.fs3_c01185{font-size:96.000000px;}
.y0_c01185{bottom:0.000000px;}
.y15_c01185{bottom:67.500000px;}
.y19_c01185{bottom:132.000000px;}
.y18_c01185{bottom:159.750000px;}
.y17_c01185{bottom:201.000000px;}
.y16_c01185{bottom:228.750000px;}
.y12_c01185{bottom:385.500000px;}
.y11_c01185{bottom:412.500000px;}
.y10_c01185{bottom:439.500000px;}
.yf_c01185{bottom:466.500000px;}
.ye_c01185{bottom:514.500000px;}
.yd_c01185{bottom:541.500000px;}
.yc_c01185{bottom:568.500000px;}
.yb_c01185{bottom:595.500000px;}
.ya_c01185{bottom:643.500000px;}
.y9_c01185{bottom:670.500000px;}
.y8_c01185{bottom:697.500000px;}
.y7_c01185{bottom:744.000000px;}
.y6_c01185{bottom:814.500000px;}
.y5_c01185{bottom:862.500000px;}
.y4_c01185{bottom:889.500000px;}
.y3_c01185{bottom:916.500000px;}
.y2_c01185{bottom:943.500000px;}
.y1_c01185{bottom:990.000000px;}
.y13_c01185{bottom:1066.500000px;}
.y14_c01185{bottom:1194.000000px;}
.h7_c01185{height:27.343751px;}
.h8_c01185{height:41.015625px;}
.h6_c01185{height:44.208984px;}
.h2_c01185{height:51.257812px;}
.h5_c01185{height:56.074219px;}
.h1_c01185{height:56.100586px;}
.h3_c01185{height:57.258075px;}
.h4_c01185{height:68.343750px;}
.h0_c01185{height:1263.000000px;}
.w0_c01185{width:892.500000px;}
.x0_c01185{left:0.000000px;}
.x1_c01185{left:65.480310px;}
.x2_c01185{left:94.798875px;}
@media print{
.v3_c01185{vertical-align:-29.333333pt;}
.v2_c01185{vertical-align:-20.521067pt;}
.v0_c01185{vertical-align:0.000000pt;}
.v1_c01185{vertical-align:20.521067pt;}
.ls5_c01185{letter-spacing:-0.012800pt;}
.ls4_c01185{letter-spacing:0.000000pt;}
.ls0_c01185{letter-spacing:0.006933pt;}
.ls6_c01185{letter-spacing:0.010667pt;}
.ls2_c01185{letter-spacing:1.105600pt;}
.ls3_c01185{letter-spacing:3.555555pt;}
.ls1_c01185{letter-spacing:4.021920pt;}
.ws0_c01185{word-spacing:-13.333333pt;}
.ws1_c01185{word-spacing:0.000000pt;}
._16_c01185{margin-left:-9.408000pt;}
._1a_c01185{margin-left:-6.258880pt;}
._19_c01185{margin-left:-5.252267pt;}
._7_c01185{margin-left:-3.878400pt;}
._12_c01185{margin-left:-2.656000pt;}
._3_c01185{margin-left:-1.516800pt;}
._f_c01185{width:1.139200pt;}
._0_c01185{width:2.067200pt;}
._5_c01185{width:3.020800pt;}
._c_c01185{width:3.948800pt;}
._13_c01185{width:5.017600pt;}
._10_c01185{width:5.977600pt;}
._15_c01185{width:7.379200pt;}
._11_c01185{width:9.056000pt;}
._14_c01185{width:10.572800pt;}
._9_c01185{width:12.332800pt;}
._e_c01185{width:13.734400pt;}
._17_c01185{width:14.675200pt;}
._b_c01185{width:15.692800pt;}
._d_c01185{width:16.601600pt;}
._18_c01185{width:18.598400pt;}
._a_c01185{width:19.596800pt;}
._6_c01185{width:20.640000pt;}
._1_c01185{width:21.644800pt;}
._2_c01185{width:23.820800pt;}
._4_c01185{width:25.171200pt;}
._8_c01185{width:27.654400pt;}
.fs5_c01185{font-size:35.555557pt;}
.fs2_c01185{font-size:42.666667pt;}
.fs4_c01185{font-size:53.333333pt;}
.fs1_c01185{font-size:64.000000pt;}
.fs0_c01185{font-size:69.333333pt;}
.fs3_c01185{font-size:85.333333pt;}
.y0_c01185{bottom:0.000000pt;}
.y15_c01185{bottom:60.000000pt;}
.y19_c01185{bottom:117.333333pt;}
.y18_c01185{bottom:142.000000pt;}
.y17_c01185{bottom:178.666667pt;}
.y16_c01185{bottom:203.333333pt;}
.y12_c01185{bottom:342.666667pt;}
.y11_c01185{bottom:366.666667pt;}
.y10_c01185{bottom:390.666667pt;}
.yf_c01185{bottom:414.666667pt;}
.ye_c01185{bottom:457.333333pt;}
.yd_c01185{bottom:481.333333pt;}
.yc_c01185{bottom:505.333333pt;}
.yb_c01185{bottom:529.333333pt;}
.ya_c01185{bottom:572.000000pt;}
.y9_c01185{bottom:596.000000pt;}
.y8_c01185{bottom:620.000000pt;}
.y7_c01185{bottom:661.333333pt;}
.y6_c01185{bottom:724.000000pt;}
.y5_c01185{bottom:766.666667pt;}
.y4_c01185{bottom:790.666667pt;}
.y3_c01185{bottom:814.666667pt;}
.y2_c01185{bottom:838.666667pt;}
.y1_c01185{bottom:880.000000pt;}
.y13_c01185{bottom:948.000000pt;}
.y14_c01185{bottom:1061.333333pt;}
.h7_c01185{height:24.305557pt;}
.h8_c01185{height:36.458333pt;}
.h6_c01185{height:39.296875pt;}
.h2_c01185{height:45.562500pt;}
.h5_c01185{height:49.843750pt;}
.h1_c01185{height:49.867188pt;}
.h3_c01185{height:50.896067pt;}
.h4_c01185{height:60.750000pt;}
.h0_c01185{height:1122.666667pt;}
.w0_c01185{width:793.333333pt;}
.x0_c01185{left:0.000000pt;}
.x1_c01185{left:58.204720pt;}
.x2_c01185{left:84.265667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_aa440d65ca9d60f31c015e25.woff2')format("woff");}.ff1_c01186{font-family:ff1_c01186;line-height:0.987793;font-style:normal;font-weight:normal;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_c36425b467083c976a00e919.woff2')format("woff");}.ff2_c01186{font-family:ff2_c01186;line-height:1.155762;font-style: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;}
.ls1_c01186{letter-spacing:0.000000px;}
.ls0_c01186{letter-spacing:0.012000px;}
.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;}
}
.ws0_c01186{word-spacing:0.000000px;}
._0_c01186{margin-left:-3.426000px;}
.fc0_c01186{color:rgb(0,0,0);}
.fs0_c01186{font-size:54.000000px;}
.fs1_c01186{font-size:60.000000px;}
.y0_c01186{bottom:0.000000px;}
.y2_c01186{bottom:12.000000px;}
.y5_c01186{bottom:67.500000px;}
.y3_c01186{bottom:171.000000px;}
.y1_c01186{bottom:580.500000px;}
.y4_c01186{bottom:1194.000000px;}
.h2_c01186{height:42.292969px;}
.h4_c01186{height:56.074219px;}
.h3_c01186{height:381.000000px;}
.h1_c01186{height:532.500000px;}
.h0_c01186{height:1263.000000px;}
.w1_c01186{width:676.500000px;}
.w0_c01186{width:892.500000px;}
.x0_c01186{left:0.000000px;}
.x3_c01186{left:46.632180px;}
.x1_c01186{left:150.000000px;}
.x2_c01186{left:262.190550px;}
.x4_c01186{left:416.782800px;}
.x5_c01186{left:801.992850px;}
@media print{
.v0_c01186{vertical-align:0.000000pt;}
.ls1_c01186{letter-spacing:0.000000pt;}
.ls0_c01186{letter-spacing:0.010667pt;}
.ws0_c01186{word-spacing:0.000000pt;}
._0_c01186{margin-left:-3.045333pt;}
.fs0_c01186{font-size:48.000000pt;}
.fs1_c01186{font-size:53.333333pt;}
.y0_c01186{bottom:0.000000pt;}
.y2_c01186{bottom:10.666667pt;}
.y5_c01186{bottom:60.000000pt;}
.y3_c01186{bottom:152.000000pt;}
.y1_c01186{bottom:516.000000pt;}
.y4_c01186{bottom:1061.333333pt;}
.h2_c01186{height:37.593750pt;}
.h4_c01186{height:49.843750pt;}
.h3_c01186{height:338.666667pt;}
.h1_c01186{height:473.333333pt;}
.h0_c01186{height:1122.666667pt;}
.w1_c01186{width:601.333333pt;}
.w0_c01186{width:793.333333pt;}
.x0_c01186{left:0.000000pt;}
.x3_c01186{left:41.450827pt;}
.x1_c01186{left:133.333333pt;}
.x2_c01186{left:233.058267pt;}
.x4_c01186{left:370.473600pt;}
.x5_c01186{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b35cb2abd34dc465c98bc2e4.woff2')format("woff");}.ff1_c01187{font-family:ff1_c01187;line-height:0.987793;font-style:normal;font-weight:normal;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_0f3277a78e0c67e1c6e12aaf.woff2')format("woff");}.ff2_c01187{font-family:ff2_c01187;line-height:0.933105;font-style:normal;font-weight:normal;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_dab5ee7b21116f36fa248c94.woff2')format("woff");}.ff3_c01187{font-family:ff3_c01187;line-height:0.756836;font-style:normal;font-weight:normal;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_1b02b9797f1ec294b558ccea.woff2')format("woff");}.ff4_c01187{font-family:ff4_c01187;line-height:1.155762;font-style: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);}
.v0_c01187{vertical-align:0.000000px;}
.ls1_c01187{letter-spacing:0.000000px;}
.ls2_c01187{letter-spacing:0.012000px;}
.ls0_c01187{letter-spacing:0.021600px;}
.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;}
}
.ws0_c01187{word-spacing:0.000000px;}
._10_c01187{margin-left:-7.200000px;}
._e_c01187{margin-left:-3.700800px;}
._2_c01187{margin-left:-2.181600px;}
._11_c01187{margin-left:-1.065600px;}
._5_c01187{width:1.166400px;}
._0_c01187{width:2.325600px;}
._7_c01187{width:3.837600px;}
._8_c01187{width:6.364800px;}
._1_c01187{width:7.869600px;}
._6_c01187{width:9.050400px;}
._4_c01187{width:10.224000px;}
._3_c01187{width:12.427200px;}
._d_c01187{width:24.804000px;}
._a_c01187{width:26.294400px;}
._9_c01187{width:27.518400px;}
._b_c01187{width:28.612800px;}
._c_c01187{width:30.852000px;}
._f_c01187{width:32.457600px;}
.fc0_c01187{color:rgb(0,0,0);}
.fs0_c01187{font-size:54.000000px;}
.fs2_c01187{font-size:60.000000px;}
.fs1_c01187{font-size:72.000000px;}
.y0_c01187{bottom:0.000000px;}
.y3_c01187{bottom:10.500000px;}
.y5_c01187{bottom:12.000000px;}
.y2_c01187{bottom:28.500000px;}
.yc_c01187{bottom:67.500000px;}
.ya_c01187{bottom:144.000000px;}
.y9_c01187{bottom:171.000000px;}
.y8_c01187{bottom:219.000000px;}
.y7_c01187{bottom:246.000000px;}
.y6_c01187{bottom:273.000000px;}
.y4_c01187{bottom:318.000000px;}
.y1_c01187{bottom:763.500000px;}
.yb_c01187{bottom:1194.000000px;}
.h2_c01187{height:42.292969px;}
.h6_c01187{height:44.208984px;}
.h4_c01187{height:51.187500px;}
.h5_c01187{height:56.074219px;}
.h1_c01187{height:349.500000px;}
.h3_c01187{height:417.000000px;}
.h0_c01187{height:1263.000000px;}
.w1_c01187{width:676.500000px;}
.w0_c01187{width:892.500000px;}
.x0_c01187{left:0.000000px;}
.x2_c01187{left:26.804055px;}
.x1_c01187{left:66.000000px;}
.x4_c01187{left:131.916870px;}
.x3_c01187{left:144.645600px;}
@media print{
.v0_c01187{vertical-align:0.000000pt;}
.ls1_c01187{letter-spacing:0.000000pt;}
.ls2_c01187{letter-spacing:0.010667pt;}
.ls0_c01187{letter-spacing:0.019200pt;}
.ws0_c01187{word-spacing:0.000000pt;}
._10_c01187{margin-left:-6.400000pt;}
._e_c01187{margin-left:-3.289600pt;}
._2_c01187{margin-left:-1.939200pt;}
._11_c01187{margin-left:-0.947200pt;}
._5_c01187{width:1.036800pt;}
._0_c01187{width:2.067200pt;}
._7_c01187{width:3.411200pt;}
._8_c01187{width:5.657600pt;}
._1_c01187{width:6.995200pt;}
._6_c01187{width:8.044800pt;}
._4_c01187{width:9.088000pt;}
._3_c01187{width:11.046400pt;}
._d_c01187{width:22.048000pt;}
._a_c01187{width:23.372800pt;}
._9_c01187{width:24.460800pt;}
._b_c01187{width:25.433600pt;}
._c_c01187{width:27.424000pt;}
._f_c01187{width:28.851200pt;}
.fs0_c01187{font-size:48.000000pt;}
.fs2_c01187{font-size:53.333333pt;}
.fs1_c01187{font-size:64.000000pt;}
.y0_c01187{bottom:0.000000pt;}
.y3_c01187{bottom:9.333333pt;}
.y5_c01187{bottom:10.666667pt;}
.y2_c01187{bottom:25.333333pt;}
.yc_c01187{bottom:60.000000pt;}
.ya_c01187{bottom:128.000000pt;}
.y9_c01187{bottom:152.000000pt;}
.y8_c01187{bottom:194.666667pt;}
.y7_c01187{bottom:218.666667pt;}
.y6_c01187{bottom:242.666667pt;}
.y4_c01187{bottom:282.666667pt;}
.y1_c01187{bottom:678.666667pt;}
.yb_c01187{bottom:1061.333333pt;}
.h2_c01187{height:37.593750pt;}
.h6_c01187{height:39.296875pt;}
.h4_c01187{height:45.500000pt;}
.h5_c01187{height:49.843750pt;}
.h1_c01187{height:310.666667pt;}
.h3_c01187{height:370.666667pt;}
.h0_c01187{height:1122.666667pt;}
.w1_c01187{width:601.333333pt;}
.w0_c01187{width:793.333333pt;}
.x0_c01187{left:0.000000pt;}
.x2_c01187{left:23.825827pt;}
.x1_c01187{left:58.666667pt;}
.x4_c01187{left:117.259440pt;}
.x3_c01187{left:128.573867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_80d4ba9b0a26119db5b2d1a6.woff2')format("woff");}.ff1_c01188{font-family:ff1_c01188;line-height:0.934082;font-style:normal;font-weight:normal;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_f8d201522add526b90ac0f77.woff2')format("woff");}.ff2_c01188{font-family:ff2_c01188;line-height:0.952148;font-style:normal;font-weight:normal;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_011de9a93726b2838ce9126b.woff2')format("woff");}.ff3_c01188{font-family:ff3_c01188;line-height:1.155762;font-style: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);}
.v0_c01188{vertical-align:0.000000px;}
.ls3_c01188{letter-spacing:-0.014400px;}
.ls2_c01188{letter-spacing:0.000000px;}
.ls1_c01188{letter-spacing:0.012000px;}
.ls0_c01188{letter-spacing:0.021600px;}
.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;}
}
.ws0_c01188{word-spacing:0.000000px;}
._9_c01188{margin-left:-7.200000px;}
._c_c01188{margin-left:-4.953600px;}
._8_c01188{margin-left:-3.938400px;}
._3_c01188{margin-left:-2.887200px;}
._a_c01188{margin-left:-1.821600px;}
._1_c01188{width:1.684800px;}
._5_c01188{width:3.319200px;}
._e_c01188{width:4.363200px;}
._d_c01188{width:6.112800px;}
._7_c01188{width:9.345600px;}
._6_c01188{width:11.894400px;}
._2_c01188{width:14.428800px;}
._0_c01188{width:16.142400px;}
._b_c01188{width:17.625600px;}
._4_c01188{width:18.784800px;}
._13_c01188{width:22.096800px;}
._10_c01188{width:23.227200px;}
._f_c01188{width:24.840000px;}
._11_c01188{width:26.539200px;}
._12_c01188{width:28.418400px;}
.fc0_c01188{color:rgb(0,0,0);}
.fs1_c01188{font-size:54.000000px;}
.fs2_c01188{font-size:60.000000px;}
.fs0_c01188{font-size:72.000000px;}
.y0_c01188{bottom:0.000000px;}
.y4_c01188{bottom:12.000000px;}
.yc_c01188{bottom:67.500000px;}
.ya_c01188{bottom:157.500000px;}
.y9_c01188{bottom:184.500000px;}
.y8_c01188{bottom:211.500000px;}
.y7_c01188{bottom:238.500000px;}
.y6_c01188{bottom:265.500000px;}
.y5_c01188{bottom:313.500000px;}
.y3_c01188{bottom:358.500000px;}
.y2_c01188{bottom:1068.000000px;}
.y1_c01188{bottom:1095.000000px;}
.yb_c01188{bottom:1194.000000px;}
.h3_c01188{height:50.756836px;}
.h1_c01188{height:51.257812px;}
.h4_c01188{height:56.074219px;}
.h2_c01188{height:678.000000px;}
.h0_c01188{height:1263.000000px;}
.w1_c01188{width:676.500000px;}
.w0_c01188{width:892.500000px;}
.x0_c01188{left:0.000000px;}
.x1_c01188{left:150.519750px;}
.x2_c01188{left:309.536100px;}
.x3_c01188{left:416.782800px;}
.x4_c01188{left:801.992850px;}
@media print{
.v0_c01188{vertical-align:0.000000pt;}
.ls3_c01188{letter-spacing:-0.012800pt;}
.ls2_c01188{letter-spacing:0.000000pt;}
.ls1_c01188{letter-spacing:0.010667pt;}
.ls0_c01188{letter-spacing:0.019200pt;}
.ws0_c01188{word-spacing:0.000000pt;}
._9_c01188{margin-left:-6.400000pt;}
._c_c01188{margin-left:-4.403200pt;}
._8_c01188{margin-left:-3.500800pt;}
._3_c01188{margin-left:-2.566400pt;}
._a_c01188{margin-left:-1.619200pt;}
._1_c01188{width:1.497600pt;}
._5_c01188{width:2.950400pt;}
._e_c01188{width:3.878400pt;}
._d_c01188{width:5.433600pt;}
._7_c01188{width:8.307200pt;}
._6_c01188{width:10.572800pt;}
._2_c01188{width:12.825600pt;}
._0_c01188{width:14.348800pt;}
._b_c01188{width:15.667200pt;}
._4_c01188{width:16.697600pt;}
._13_c01188{width:19.641600pt;}
._10_c01188{width:20.646400pt;}
._f_c01188{width:22.080000pt;}
._11_c01188{width:23.590400pt;}
._12_c01188{width:25.260800pt;}
.fs1_c01188{font-size:48.000000pt;}
.fs2_c01188{font-size:53.333333pt;}
.fs0_c01188{font-size:64.000000pt;}
.y0_c01188{bottom:0.000000pt;}
.y4_c01188{bottom:10.666667pt;}
.yc_c01188{bottom:60.000000pt;}
.ya_c01188{bottom:140.000000pt;}
.y9_c01188{bottom:164.000000pt;}
.y8_c01188{bottom:188.000000pt;}
.y7_c01188{bottom:212.000000pt;}
.y6_c01188{bottom:236.000000pt;}
.y5_c01188{bottom:278.666667pt;}
.y3_c01188{bottom:318.666667pt;}
.y2_c01188{bottom:949.333333pt;}
.y1_c01188{bottom:973.333333pt;}
.yb_c01188{bottom:1061.333333pt;}
.h3_c01188{height:45.117188pt;}
.h1_c01188{height:45.562500pt;}
.h4_c01188{height:49.843750pt;}
.h2_c01188{height:602.666667pt;}
.h0_c01188{height:1122.666667pt;}
.w1_c01188{width:601.333333pt;}
.w0_c01188{width:793.333333pt;}
.x0_c01188{left:0.000000pt;}
.x1_c01188{left:133.795333pt;}
.x2_c01188{left:275.143200pt;}
.x3_c01188{left:370.473600pt;}
.x4_c01188{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d71f0b388ca566737cf6825a.woff2')format("woff");}.ff1_c01189{font-family:ff1_c01189;line-height:0.963867;font-style:normal;font-weight:normal;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_147db61209e5547e0c2eadf9.woff2')format("woff");}.ff2_c01189{font-family:ff2_c01189;line-height:0.933105;font-style:normal;font-weight:normal;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_ea20229475cefb3ff2790f7b.woff2')format("woff");}.ff3_c01189{font-family:ff3_c01189;line-height:0.756836;font-style:normal;font-weight:normal;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_9f76906a101f7e5da110d504.woff2')format("woff");}.ff4_c01189{font-family:ff4_c01189;line-height:1.155762;font-style: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;}
.ls1_c01189{letter-spacing:0.000000px;}
.ls2_c01189{letter-spacing:0.012000px;}
.ls0_c01189{letter-spacing:0.021600px;}
.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;}
}
.ws0_c01189{word-spacing:0.000000px;}
._c_c01189{margin-left:-10.584000px;}
._5_c01189{margin-left:-3.542400px;}
._0_c01189{margin-left:-1.152000px;}
._8_c01189{width:1.454400px;}
._7_c01189{width:2.815200px;}
._a_c01189{width:4.140000px;}
._3_c01189{width:5.205600px;}
._e_c01189{width:11.980800px;}
._d_c01189{width:13.932000px;}
._b_c01189{width:15.141600px;}
._4_c01189{width:16.358400px;}
._9_c01189{width:18.230400px;}
._2_c01189{width:21.607200px;}
._1_c01189{width:22.752000px;}
._6_c01189{width:25.171200px;}
.fc0_c01189{color:rgb(0,0,0);}
.fs0_c01189{font-size:54.000000px;}
.fs2_c01189{font-size:60.000000px;}
.fs1_c01189{font-size:72.000000px;}
.y0_c01189{bottom:0.000000px;}
.y3_c01189{bottom:10.500000px;}
.yb_c01189{bottom:12.000000px;}
.y2_c01189{bottom:28.500000px;}
.yd_c01189{bottom:67.500000px;}
.ya_c01189{bottom:127.500000px;}
.y9_c01189{bottom:526.500000px;}
.y8_c01189{bottom:553.500000px;}
.y7_c01189{bottom:601.500000px;}
.y6_c01189{bottom:628.500000px;}
.y5_c01189{bottom:655.500000px;}
.y4_c01189{bottom:682.500000px;}
.y1_c01189{bottom:727.500000px;}
.yc_c01189{bottom:1194.000000px;}
.h2_c01189{height:41.633789px;}
.h6_c01189{height:44.208984px;}
.h3_c01189{height:51.187500px;}
.h5_c01189{height:56.074219px;}
.h4_c01189{height:367.500000px;}
.h1_c01189{height:385.500000px;}
.h0_c01189{height:1263.000000px;}
.w1_c01189{width:676.500000px;}
.w0_c01189{width:892.500000px;}
.x0_c01189{left:0.000000px;}
.x2_c01189{left:23.300520px;}
.x1_c01189{left:66.000000px;}
.x4_c01189{left:272.236500px;}
.x3_c01189{left:297.848850px;}
@media print{
.v0_c01189{vertical-align:0.000000pt;}
.ls1_c01189{letter-spacing:0.000000pt;}
.ls2_c01189{letter-spacing:0.010667pt;}
.ls0_c01189{letter-spacing:0.019200pt;}
.ws0_c01189{word-spacing:0.000000pt;}
._c_c01189{margin-left:-9.408000pt;}
._5_c01189{margin-left:-3.148800pt;}
._0_c01189{margin-left:-1.024000pt;}
._8_c01189{width:1.292800pt;}
._7_c01189{width:2.502400pt;}
._a_c01189{width:3.680000pt;}
._3_c01189{width:4.627200pt;}
._e_c01189{width:10.649600pt;}
._d_c01189{width:12.384000pt;}
._b_c01189{width:13.459200pt;}
._4_c01189{width:14.540800pt;}
._9_c01189{width:16.204800pt;}
._2_c01189{width:19.206400pt;}
._1_c01189{width:20.224000pt;}
._6_c01189{width:22.374400pt;}
.fs0_c01189{font-size:48.000000pt;}
.fs2_c01189{font-size:53.333333pt;}
.fs1_c01189{font-size:64.000000pt;}
.y0_c01189{bottom:0.000000pt;}
.y3_c01189{bottom:9.333333pt;}
.yb_c01189{bottom:10.666667pt;}
.y2_c01189{bottom:25.333333pt;}
.yd_c01189{bottom:60.000000pt;}
.ya_c01189{bottom:113.333333pt;}
.y9_c01189{bottom:468.000000pt;}
.y8_c01189{bottom:492.000000pt;}
.y7_c01189{bottom:534.666667pt;}
.y6_c01189{bottom:558.666667pt;}
.y5_c01189{bottom:582.666667pt;}
.y4_c01189{bottom:606.666667pt;}
.y1_c01189{bottom:646.666667pt;}
.yc_c01189{bottom:1061.333333pt;}
.h2_c01189{height:37.007812pt;}
.h6_c01189{height:39.296875pt;}
.h3_c01189{height:45.500000pt;}
.h5_c01189{height:49.843750pt;}
.h4_c01189{height:326.666667pt;}
.h1_c01189{height:342.666667pt;}
.h0_c01189{height:1122.666667pt;}
.w1_c01189{width:601.333333pt;}
.w0_c01189{width:793.333333pt;}
.x0_c01189{left:0.000000pt;}
.x2_c01189{left:20.711573pt;}
.x1_c01189{left:58.666667pt;}
.x4_c01189{left:241.988000pt;}
.x3_c01189{left:264.754533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_413e3b2aab3826515c49c275.woff2')format("woff");}.ff1_c01190{font-family:ff1_c01190;line-height:0.933105;font-style:normal;font-weight:normal;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_2465551cebf37d4abd08275e.woff2')format("woff");}.ff2_c01190{font-family:ff2_c01190;line-height:0.987793;font-style:normal;font-weight:normal;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_a51c0a385d8f700c9f8a8411.woff2')format("woff");}.ff3_c01190{font-family:ff3_c01190;line-height:1.155762;font-style: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);}
.v0_c01190{vertical-align:0.000000px;}
.ls1_c01190{letter-spacing:0.000000px;}
.ls0_c01190{letter-spacing:0.012000px;}
.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;}
}
.ws0_c01190{word-spacing:0.000000px;}
._12_c01190{margin-left:-10.209600px;}
._5_c01190{margin-left:-3.844800px;}
._3_c01190{margin-left:-2.433600px;}
._6_c01190{margin-left:-1.209600px;}
._1_c01190{width:1.850400px;}
._2_c01190{width:3.686400px;}
._0_c01190{width:5.500800px;}
._11_c01190{width:6.804000px;}
._4_c01190{width:8.006400px;}
._10_c01190{width:9.136800px;}
._e_c01190{width:11.160000px;}
._f_c01190{width:12.772800px;}
._d_c01190{width:14.853600px;}
._c_c01190{width:17.524800px;}
._9_c01190{width:18.640800px;}
._b_c01190{width:21.175200px;}
._a_c01190{width:22.356000px;}
._7_c01190{width:24.775200px;}
._8_c01190{width:26.172000px;}
.fc0_c01190{color:rgb(0,0,0);}
.fs1_c01190{font-size:54.000000px;}
.fs2_c01190{font-size:60.000000px;}
.fs0_c01190{font-size:72.000000px;}
.y0_c01190{bottom:0.000000px;}
.y9_c01190{bottom:12.000000px;}
.yc_c01190{bottom:67.500000px;}
.ya_c01190{bottom:144.000000px;}
.y8_c01190{bottom:447.000000px;}
.y7_c01190{bottom:912.000000px;}
.y6_c01190{bottom:939.000000px;}
.y5_c01190{bottom:966.000000px;}
.y4_c01190{bottom:993.000000px;}
.y3_c01190{bottom:1020.000000px;}
.y2_c01190{bottom:1068.000000px;}
.y1_c01190{bottom:1095.000000px;}
.yb_c01190{bottom:1194.000000px;}
.h3_c01190{height:42.292969px;}
.h1_c01190{height:51.187500px;}
.h5_c01190{height:56.074219px;}
.h4_c01190{height:283.500000px;}
.h2_c01190{height:433.500000px;}
.h0_c01190{height:1263.000000px;}
.w1_c01190{width:676.500000px;}
.w0_c01190{width:892.500000px;}
.x0_c01190{left:0.000000px;}
.x2_c01190{left:69.176130px;}
.x3_c01190{left:142.757055px;}
.x1_c01190{left:150.519750px;}
.x4_c01190{left:416.782800px;}
.x5_c01190{left:801.992850px;}
@media print{
.v0_c01190{vertical-align:0.000000pt;}
.ls1_c01190{letter-spacing:0.000000pt;}
.ls0_c01190{letter-spacing:0.010667pt;}
.ws0_c01190{word-spacing:0.000000pt;}
._12_c01190{margin-left:-9.075200pt;}
._5_c01190{margin-left:-3.417600pt;}
._3_c01190{margin-left:-2.163200pt;}
._6_c01190{margin-left:-1.075200pt;}
._1_c01190{width:1.644800pt;}
._2_c01190{width:3.276800pt;}
._0_c01190{width:4.889600pt;}
._11_c01190{width:6.048000pt;}
._4_c01190{width:7.116800pt;}
._10_c01190{width:8.121600pt;}
._e_c01190{width:9.920000pt;}
._f_c01190{width:11.353600pt;}
._d_c01190{width:13.203200pt;}
._c_c01190{width:15.577600pt;}
._9_c01190{width:16.569600pt;}
._b_c01190{width:18.822400pt;}
._a_c01190{width:19.872000pt;}
._7_c01190{width:22.022400pt;}
._8_c01190{width:23.264000pt;}
.fs1_c01190{font-size:48.000000pt;}
.fs2_c01190{font-size:53.333333pt;}
.fs0_c01190{font-size:64.000000pt;}
.y0_c01190{bottom:0.000000pt;}
.y9_c01190{bottom:10.666667pt;}
.yc_c01190{bottom:60.000000pt;}
.ya_c01190{bottom:128.000000pt;}
.y8_c01190{bottom:397.333333pt;}
.y7_c01190{bottom:810.666667pt;}
.y6_c01190{bottom:834.666667pt;}
.y5_c01190{bottom:858.666667pt;}
.y4_c01190{bottom:882.666667pt;}
.y3_c01190{bottom:906.666667pt;}
.y2_c01190{bottom:949.333333pt;}
.y1_c01190{bottom:973.333333pt;}
.yb_c01190{bottom:1061.333333pt;}
.h3_c01190{height:37.593750pt;}
.h1_c01190{height:45.500000pt;}
.h5_c01190{height:49.843750pt;}
.h4_c01190{height:252.000000pt;}
.h2_c01190{height:385.333333pt;}
.h0_c01190{height:1122.666667pt;}
.w1_c01190{width:601.333333pt;}
.w0_c01190{width:793.333333pt;}
.x0_c01190{left:0.000000pt;}
.x2_c01190{left:61.489893pt;}
.x3_c01190{left:126.895160pt;}
.x1_c01190{left:133.795333pt;}
.x4_c01190{left:370.473600pt;}
.x5_c01190{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3f335e4f6c5cf4eea33fd54d.woff2')format("woff");}.ff1_c01191{font-family:ff1_c01191;line-height:0.934082;font-style:normal;font-weight:normal;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_9effda4c179e63ca5a8baf8c.woff2')format("woff");}.ff2_c01191{font-family:ff2_c01191;line-height:0.932129;font-style:normal;font-weight:normal;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_a8bb274bcb6371dfbbdf7dc0.woff2')format("woff");}.ff3_c01191{font-family:ff3_c01191;line-height:1.010254;font-style:normal;font-weight:normal;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_156aa8c32739c23e1472af14.woff2')format("woff");}.ff4_c01191{font-family:ff4_c01191;line-height:0.986816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01191;src:url('chunks/assets/font_35e71c189f01d9c85e6fa9dc.woff2')format("woff");}.ff5_c01191{font-family:ff5_c01191;line-height:0.756836;font-style:normal;font-weight: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_c01191;src:url('chunks/assets/font_ef068e8b93d32b5a4ceedf12.woff2')format("woff");}.ff6_c01191{font-family:ff6_c01191;line-height:1.155762;font-style: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;}
.ls6_c01191{letter-spacing:-0.006000px;}
.ls5_c01191{letter-spacing:0.000000px;}
.ls7_c01191{letter-spacing:0.012000px;}
.ls0_c01191{letter-spacing:0.014400px;}
.ls1_c01191{letter-spacing:0.547200px;}
.ls2_c01191{letter-spacing:1.267200px;}
.ls4_c01191{letter-spacing:1.274400px;}
.ls3_c01191{letter-spacing:1.288800px;}
.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:-19.267200px;}
.ws4_c01191{word-spacing:-18.000000px;}
.ws2_c01191{word-spacing:-1.360800px;}
.ws0_c01191{word-spacing:-0.086400px;}
.ws3_c01191{word-spacing:-0.072000px;}
.ws5_c01191{word-spacing:0.000000px;}
._1e_c01191{margin-left:-6.508800px;}
._f_c01191{margin-left:-5.501640px;}
._e_c01191{margin-left:-4.428000px;}
._5_c01191{margin-left:-2.937600px;}
._1_c01191{margin-left:-1.260000px;}
._3_c01191{width:1.353600px;}
._9_c01191{width:2.707200px;}
._8_c01191{width:3.801600px;}
._a_c01191{width:5.313600px;}
._13_c01191{width:7.199160px;}
._11_c01191{width:9.352800px;}
._14_c01191{width:10.728000px;}
._10_c01191{width:12.081600px;}
._16_c01191{width:13.491000px;}
._15_c01191{width:14.997600px;}
._12_c01191{width:16.056840px;}
._b_c01191{width:18.684000px;}
._1b_c01191{width:19.900800px;}
._7_c01191{width:21.801600px;}
._c_c01191{width:23.169600px;}
._d_c01191{width:24.400800px;}
._1c_c01191{width:25.675200px;}
._4_c01191{width:26.740800px;}
._0_c01191{width:28.072800px;}
._2_c01191{width:29.347200px;}
._6_c01191{width:31.046400px;}
._19_c01191{width:32.616000px;}
._18_c01191{width:34.020000px;}
._17_c01191{width:35.287200px;}
._1d_c01191{width:36.302400px;}
._1a_c01191{width:38.440800px;}
.fc0_c01191{color:rgb(0,0,0);}
.fs1_c01191{font-size:60.000000px;}
.fs0_c01191{font-size:72.000000px;}
.y0_c01191{bottom:0.000000px;}
.y28_c01191{bottom:67.500000px;}
.y26_c01191{bottom:135.000000px;}
.y25_c01191{bottom:156.000000px;}
.y24_c01191{bottom:198.000000px;}
.y23_c01191{bottom:219.000000px;}
.y22_c01191{bottom:240.000000px;}
.y21_c01191{bottom:261.000000px;}
.y20_c01191{bottom:282.000000px;}
.y1f_c01191{bottom:303.000000px;}
.y1e_c01191{bottom:324.000000px;}
.y1d_c01191{bottom:345.000000px;}
.y1c_c01191{bottom:366.000000px;}
.y1b_c01191{bottom:387.000000px;}
.y1a_c01191{bottom:408.000000px;}
.y19_c01191{bottom:429.000000px;}
.y18_c01191{bottom:450.000000px;}
.y17_c01191{bottom:471.000000px;}
.y16_c01191{bottom:492.000000px;}
.y15_c01191{bottom:513.000000px;}
.y14_c01191{bottom:534.000000px;}
.y13_c01191{bottom:555.000000px;}
.y12_c01191{bottom:576.000000px;}
.y11_c01191{bottom:597.000000px;}
.y10_c01191{bottom:618.000000px;}
.yf_c01191{bottom:639.000000px;}
.ye_c01191{bottom:660.000000px;}
.yd_c01191{bottom:681.000000px;}
.yc_c01191{bottom:702.000000px;}
.yb_c01191{bottom:723.000000px;}
.ya_c01191{bottom:744.000000px;}
.y9_c01191{bottom:765.000000px;}
.y8_c01191{bottom:808.500000px;}
.y7_c01191{bottom:829.500000px;}
.y6_c01191{bottom:874.500000px;}
.y5_c01191{bottom:901.500000px;}
.y4_c01191{bottom:949.500000px;}
.y3_c01191{bottom:1020.000000px;}
.y2_c01191{bottom:1068.000000px;}
.y1_c01191{bottom:1095.000000px;}
.y27_c01191{bottom:1194.000000px;}
.h2_c01191{height:42.714844px;}
.h5_c01191{height:44.208984px;}
.h1_c01191{height:51.257812px;}
.h3_c01191{height:52.417969px;}
.h4_c01191{height:56.074219px;}
.h0_c01191{height:1263.000000px;}
.w0_c01191{width:892.500000px;}
.x0_c01191{left:0.000000px;}
.x1_c01191{left:65.480310px;}
@media print{
.v0_c01191{vertical-align:0.000000pt;}
.ls6_c01191{letter-spacing:-0.005333pt;}
.ls5_c01191{letter-spacing:0.000000pt;}
.ls7_c01191{letter-spacing:0.010667pt;}
.ls0_c01191{letter-spacing:0.012800pt;}
.ls1_c01191{letter-spacing:0.486400pt;}
.ls2_c01191{letter-spacing:1.126400pt;}
.ls4_c01191{letter-spacing:1.132800pt;}
.ls3_c01191{letter-spacing:1.145600pt;}
.ws1_c01191{word-spacing:-17.126400pt;}
.ws4_c01191{word-spacing:-16.000000pt;}
.ws2_c01191{word-spacing:-1.209600pt;}
.ws0_c01191{word-spacing:-0.076800pt;}
.ws3_c01191{word-spacing:-0.064000pt;}
.ws5_c01191{word-spacing:0.000000pt;}
._1e_c01191{margin-left:-5.785600pt;}
._f_c01191{margin-left:-4.890347pt;}
._e_c01191{margin-left:-3.936000pt;}
._5_c01191{margin-left:-2.611200pt;}
._1_c01191{margin-left:-1.120000pt;}
._3_c01191{width:1.203200pt;}
._9_c01191{width:2.406400pt;}
._8_c01191{width:3.379200pt;}
._a_c01191{width:4.723200pt;}
._13_c01191{width:6.399253pt;}
._11_c01191{width:8.313600pt;}
._14_c01191{width:9.536000pt;}
._10_c01191{width:10.739200pt;}
._16_c01191{width:11.992000pt;}
._15_c01191{width:13.331200pt;}
._12_c01191{width:14.272747pt;}
._b_c01191{width:16.608000pt;}
._1b_c01191{width:17.689600pt;}
._7_c01191{width:19.379200pt;}
._c_c01191{width:20.595200pt;}
._d_c01191{width:21.689600pt;}
._1c_c01191{width:22.822400pt;}
._4_c01191{width:23.769600pt;}
._0_c01191{width:24.953600pt;}
._2_c01191{width:26.086400pt;}
._6_c01191{width:27.596800pt;}
._19_c01191{width:28.992000pt;}
._18_c01191{width:30.240000pt;}
._17_c01191{width:31.366400pt;}
._1d_c01191{width:32.268800pt;}
._1a_c01191{width:34.169600pt;}
.fs1_c01191{font-size:53.333333pt;}
.fs0_c01191{font-size:64.000000pt;}
.y0_c01191{bottom:0.000000pt;}
.y28_c01191{bottom:60.000000pt;}
.y26_c01191{bottom:120.000000pt;}
.y25_c01191{bottom:138.666667pt;}
.y24_c01191{bottom:176.000000pt;}
.y23_c01191{bottom:194.666667pt;}
.y22_c01191{bottom:213.333333pt;}
.y21_c01191{bottom:232.000000pt;}
.y20_c01191{bottom:250.666667pt;}
.y1f_c01191{bottom:269.333333pt;}
.y1e_c01191{bottom:288.000000pt;}
.y1d_c01191{bottom:306.666667pt;}
.y1c_c01191{bottom:325.333333pt;}
.y1b_c01191{bottom:344.000000pt;}
.y1a_c01191{bottom:362.666667pt;}
.y19_c01191{bottom:381.333333pt;}
.y18_c01191{bottom:400.000000pt;}
.y17_c01191{bottom:418.666667pt;}
.y16_c01191{bottom:437.333333pt;}
.y15_c01191{bottom:456.000000pt;}
.y14_c01191{bottom:474.666667pt;}
.y13_c01191{bottom:493.333333pt;}
.y12_c01191{bottom:512.000000pt;}
.y11_c01191{bottom:530.666667pt;}
.y10_c01191{bottom:549.333333pt;}
.yf_c01191{bottom:568.000000pt;}
.ye_c01191{bottom:586.666667pt;}
.yd_c01191{bottom:605.333333pt;}
.yc_c01191{bottom:624.000000pt;}
.yb_c01191{bottom:642.666667pt;}
.ya_c01191{bottom:661.333333pt;}
.y9_c01191{bottom:680.000000pt;}
.y8_c01191{bottom:718.666667pt;}
.y7_c01191{bottom:737.333333pt;}
.y6_c01191{bottom:777.333333pt;}
.y5_c01191{bottom:801.333333pt;}
.y4_c01191{bottom:844.000000pt;}
.y3_c01191{bottom:906.666667pt;}
.y2_c01191{bottom:949.333333pt;}
.y1_c01191{bottom:973.333333pt;}
.y27_c01191{bottom:1061.333333pt;}
.h2_c01191{height:37.968750pt;}
.h5_c01191{height:39.296875pt;}
.h1_c01191{height:45.562500pt;}
.h3_c01191{height:46.593750pt;}
.h4_c01191{height:49.843750pt;}
.h0_c01191{height:1122.666667pt;}
.w0_c01191{width:793.333333pt;}
.x0_c01191{left:0.000000pt;}
.x1_c01191{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c190082984dd2958f9852f3f.woff2')format("woff");}.ff1_c01192{font-family:ff1_c01192;line-height:1.010254;font-style:normal;font-weight:normal;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_4c8752ba572ec51db139266c.woff2')format("woff");}.ff2_c01192{font-family:ff2_c01192;line-height:0.986816;font-style:normal;font-weight:normal;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_905db1f9acb284200f663e26.woff2')format("woff");}.ff3_c01192{font-family:ff3_c01192;line-height:1.155762;font-style: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;}
.ls1_c01192{letter-spacing:0.000000px;}
.ls0_c01192{letter-spacing:0.012000px;}
.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;}
}
.ws1_c01192{word-spacing:-18.000000px;}
.ws0_c01192{word-spacing:-0.072000px;}
.ws2_c01192{word-spacing:0.000000px;}
._a_c01192{margin-left:-5.704800px;}
._c_c01192{margin-left:-3.038400px;}
._4_c01192{margin-left:-1.893600px;}
._0_c01192{width:1.483200px;}
._2_c01192{width:2.757600px;}
._3_c01192{width:4.060800px;}
._1_c01192{width:5.284800px;}
._6_c01192{width:6.753600px;}
._5_c01192{width:8.740800px;}
._8_c01192{width:10.130400px;}
._7_c01192{width:11.527200px;}
._9_c01192{width:13.471200px;}
._d_c01192{width:14.536800px;}
._b_c01192{width:15.703200px;}
.fc0_c01192{color:rgb(0,0,0);}
.fs1_c01192{font-size:60.000000px;}
.fs0_c01192{font-size:72.000000px;}
.y0_c01192{bottom:0.000000px;}
.ya_c01192{bottom:67.500000px;}
.y8_c01192{bottom:907.500000px;}
.y7_c01192{bottom:928.500000px;}
.y6_c01192{bottom:949.500000px;}
.y5_c01192{bottom:970.500000px;}
.y4_c01192{bottom:1012.500000px;}
.y3_c01192{bottom:1033.500000px;}
.y2_c01192{bottom:1075.500000px;}
.y1_c01192{bottom:1096.500000px;}
.y9_c01192{bottom:1194.000000px;}
.h1_c01192{height:52.417969px;}
.h2_c01192{height:56.074219px;}
.h0_c01192{height:1263.000000px;}
.w0_c01192{width:892.500000px;}
.x0_c01192{left:0.000000px;}
.x1_c01192{left:150.519750px;}
.x2_c01192{left:416.782800px;}
.x3_c01192{left:801.992850px;}
@media print{
.v0_c01192{vertical-align:0.000000pt;}
.ls1_c01192{letter-spacing:0.000000pt;}
.ls0_c01192{letter-spacing:0.010667pt;}
.ws1_c01192{word-spacing:-16.000000pt;}
.ws0_c01192{word-spacing:-0.064000pt;}
.ws2_c01192{word-spacing:0.000000pt;}
._a_c01192{margin-left:-5.070933pt;}
._c_c01192{margin-left:-2.700800pt;}
._4_c01192{margin-left:-1.683200pt;}
._0_c01192{width:1.318400pt;}
._2_c01192{width:2.451200pt;}
._3_c01192{width:3.609600pt;}
._1_c01192{width:4.697600pt;}
._6_c01192{width:6.003200pt;}
._5_c01192{width:7.769600pt;}
._8_c01192{width:9.004800pt;}
._7_c01192{width:10.246400pt;}
._9_c01192{width:11.974400pt;}
._d_c01192{width:12.921600pt;}
._b_c01192{width:13.958400pt;}
.fs1_c01192{font-size:53.333333pt;}
.fs0_c01192{font-size:64.000000pt;}
.y0_c01192{bottom:0.000000pt;}
.ya_c01192{bottom:60.000000pt;}
.y8_c01192{bottom:806.666667pt;}
.y7_c01192{bottom:825.333333pt;}
.y6_c01192{bottom:844.000000pt;}
.y5_c01192{bottom:862.666667pt;}
.y4_c01192{bottom:900.000000pt;}
.y3_c01192{bottom:918.666667pt;}
.y2_c01192{bottom:956.000000pt;}
.y1_c01192{bottom:974.666667pt;}
.y9_c01192{bottom:1061.333333pt;}
.h1_c01192{height:46.593750pt;}
.h2_c01192{height:49.843750pt;}
.h0_c01192{height:1122.666667pt;}
.w0_c01192{width:793.333333pt;}
.x0_c01192{left:0.000000pt;}
.x1_c01192{left:133.795333pt;}
.x2_c01192{left:370.473600pt;}
.x3_c01192{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d44c76140d72c307f8569817.woff2')format("woff");}.ff1_c01193{font-family:ff1_c01193;line-height:0.884766;font-style:normal;font-weight:normal;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_41e78bf1996c80cf0528cc60.woff2')format("woff");}.ff2_c01193{font-family:ff2_c01193;line-height:1.163086;font-style:normal;font-weight:normal;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_9924021c42fbd9ab95b6d303.woff2')format("woff");}.ff3_c01193{font-family:ff3_c01193;line-height:0.756348;font-style:normal;font-weight:normal;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_826d946b64dd5ccb7c86d631.woff2')format("woff");}.ff4_c01193{font-family:ff4_c01193;line-height:1.155762;font-style:normal;font-weight:normal;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_749b74674b692e4c24b0ff7f.woff2')format("woff");}.ff5_c01193{font-family:ff5_c01193;line-height:1.100586;font-style:normal;font-weight: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_c01193;src:url('chunks/assets/font_049205bbd8f3e485a261614a.woff2')format("woff");}.ff6_c01193{font-family:ff6_c01193;line-height:0.892578;font-style: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);}
.v3_c01193{vertical-align:-33.000000px;}
.v2_c01193{vertical-align:-23.086200px;}
.v0_c01193{vertical-align:0.000000px;}
.v1_c01193{vertical-align:23.086200px;}
.ls4_c01193{letter-spacing:0.000000px;}
.ls0_c01193{letter-spacing:0.007800px;}
.ls5_c01193{letter-spacing:0.012000px;}
.ls1_c01193{letter-spacing:0.891600px;}
.ls2_c01193{letter-spacing:3.999999px;}
.ls3_c01193{letter-spacing:9.999999px;}
.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;}
}
.ws2_c01193{word-spacing:-15.000000px;}
.ws0_c01193{word-spacing:-13.200000px;}
.ws1_c01193{word-spacing:-10.000001px;}
.ws3_c01193{word-spacing:0.000000px;}
._16_c01193{margin-left:-8.094840px;}
._12_c01193{margin-left:-6.206400px;}
._e_c01193{margin-left:-3.852000px;}
._2_c01193{margin-left:-2.800800px;}
._4_c01193{margin-left:-1.504800px;}
._c_c01193{width:1.152000px;}
._0_c01193{width:2.210400px;}
._1_c01193{width:3.528000px;}
._d_c01193{width:4.593600px;}
._6_c01193{width:5.688000px;}
._5_c01193{width:7.214400px;}
._3_c01193{width:8.416800px;}
._f_c01193{width:9.489600px;}
._10_c01193{width:10.936800px;}
._11_c01193{width:12.304800px;}
._13_c01193{width:13.334400px;}
._b_c01193{width:15.084000px;}
._a_c01193{width:16.567200px;}
._7_c01193{width:17.863200px;}
._8_c01193{width:21.571200px;}
._9_c01193{width:22.888800px;}
._15_c01193{width:25.632000px;}
._14_c01193{width:27.957600px;}
.fc1_c01193{color:rgb(255,255,255);}
.fc0_c01193{color:rgb(0,0,0);}
.fs5_c01193{font-size:40.000002px;}
.fs2_c01193{font-size:48.000000px;}
.fs4_c01193{font-size:60.000000px;}
.fs1_c01193{font-size:72.000000px;}
.fs0_c01193{font-size:78.000000px;}
.fs3_c01193{font-size:96.000000px;}
.y0_c01193{bottom:0.000000px;}
.y17_c01193{bottom:67.500000px;}
.y1f_c01193{bottom:132.000000px;}
.y1e_c01193{bottom:151.500000px;}
.y1d_c01193{bottom:179.250000px;}
.y1c_c01193{bottom:220.500000px;}
.y1b_c01193{bottom:248.250000px;}
.y1a_c01193{bottom:289.500000px;}
.y19_c01193{bottom:317.250000px;}
.y18_c01193{bottom:366.750000px;}
.y14_c01193{bottom:415.500000px;}
.y13_c01193{bottom:442.500000px;}
.y12_c01193{bottom:490.500000px;}
.y11_c01193{bottom:517.500000px;}
.y10_c01193{bottom:544.500000px;}
.yf_c01193{bottom:571.500000px;}
.ye_c01193{bottom:598.500000px;}
.yd_c01193{bottom:646.500000px;}
.yc_c01193{bottom:673.500000px;}
.yb_c01193{bottom:700.500000px;}
.ya_c01193{bottom:727.500000px;}
.y9_c01193{bottom:754.500000px;}
.y8_c01193{bottom:781.500000px;}
.y7_c01193{bottom:808.500000px;}
.y6_c01193{bottom:835.500000px;}
.y5_c01193{bottom:862.500000px;}
.y4_c01193{bottom:889.500000px;}
.y3_c01193{bottom:916.500000px;}
.y2_c01193{bottom:943.500000px;}
.y1_c01193{bottom:990.000000px;}
.y15_c01193{bottom:1066.500000px;}
.y16_c01193{bottom:1194.000000px;}
.h7_c01193{height:35.312502px;}
.h6_c01193{height:44.208984px;}
.h8_c01193{height:52.968750px;}
.h1_c01193{height:55.224609px;}
.h5_c01193{height:56.074219px;}
.h2_c01193{height:67.746094px;}
.h3_c01193{height:68.250262px;}
.h4_c01193{height:90.328125px;}
.h0_c01193{height:1263.000000px;}
.w0_c01193{width:892.500000px;}
.x0_c01193{left:0.000000px;}
.x1_c01193{left:65.480310px;}
.x2_c01193{left:94.798875px;}
@media print{
.v3_c01193{vertical-align:-29.333333pt;}
.v2_c01193{vertical-align:-20.521067pt;}
.v0_c01193{vertical-align:0.000000pt;}
.v1_c01193{vertical-align:20.521067pt;}
.ls4_c01193{letter-spacing:0.000000pt;}
.ls0_c01193{letter-spacing:0.006933pt;}
.ls5_c01193{letter-spacing:0.010667pt;}
.ls1_c01193{letter-spacing:0.792533pt;}
.ls2_c01193{letter-spacing:3.555555pt;}
.ls3_c01193{letter-spacing:8.888888pt;}
.ws2_c01193{word-spacing:-13.333333pt;}
.ws0_c01193{word-spacing:-11.733333pt;}
.ws1_c01193{word-spacing:-8.888889pt;}
.ws3_c01193{word-spacing:0.000000pt;}
._16_c01193{margin-left:-7.195413pt;}
._12_c01193{margin-left:-5.516800pt;}
._e_c01193{margin-left:-3.424000pt;}
._2_c01193{margin-left:-2.489600pt;}
._4_c01193{margin-left:-1.337600pt;}
._c_c01193{width:1.024000pt;}
._0_c01193{width:1.964800pt;}
._1_c01193{width:3.136000pt;}
._d_c01193{width:4.083200pt;}
._6_c01193{width:5.056000pt;}
._5_c01193{width:6.412800pt;}
._3_c01193{width:7.481600pt;}
._f_c01193{width:8.435200pt;}
._10_c01193{width:9.721600pt;}
._11_c01193{width:10.937600pt;}
._13_c01193{width:11.852800pt;}
._b_c01193{width:13.408000pt;}
._a_c01193{width:14.726400pt;}
._7_c01193{width:15.878400pt;}
._8_c01193{width:19.174400pt;}
._9_c01193{width:20.345600pt;}
._15_c01193{width:22.784000pt;}
._14_c01193{width:24.851200pt;}
.fs5_c01193{font-size:35.555557pt;}
.fs2_c01193{font-size:42.666667pt;}
.fs4_c01193{font-size:53.333333pt;}
.fs1_c01193{font-size:64.000000pt;}
.fs0_c01193{font-size:69.333333pt;}
.fs3_c01193{font-size:85.333333pt;}
.y0_c01193{bottom:0.000000pt;}
.y17_c01193{bottom:60.000000pt;}
.y1f_c01193{bottom:117.333333pt;}
.y1e_c01193{bottom:134.666667pt;}
.y1d_c01193{bottom:159.333333pt;}
.y1c_c01193{bottom:196.000000pt;}
.y1b_c01193{bottom:220.666667pt;}
.y1a_c01193{bottom:257.333333pt;}
.y19_c01193{bottom:282.000000pt;}
.y18_c01193{bottom:326.000000pt;}
.y14_c01193{bottom:369.333333pt;}
.y13_c01193{bottom:393.333333pt;}
.y12_c01193{bottom:436.000000pt;}
.y11_c01193{bottom:460.000000pt;}
.y10_c01193{bottom:484.000000pt;}
.yf_c01193{bottom:508.000000pt;}
.ye_c01193{bottom:532.000000pt;}
.yd_c01193{bottom:574.666667pt;}
.yc_c01193{bottom:598.666667pt;}
.yb_c01193{bottom:622.666667pt;}
.ya_c01193{bottom:646.666667pt;}
.y9_c01193{bottom:670.666667pt;}
.y8_c01193{bottom:694.666667pt;}
.y7_c01193{bottom:718.666667pt;}
.y6_c01193{bottom:742.666667pt;}
.y5_c01193{bottom:766.666667pt;}
.y4_c01193{bottom:790.666667pt;}
.y3_c01193{bottom:814.666667pt;}
.y2_c01193{bottom:838.666667pt;}
.y1_c01193{bottom:880.000000pt;}
.y15_c01193{bottom:948.000000pt;}
.y16_c01193{bottom:1061.333333pt;}
.h7_c01193{height:31.388890pt;}
.h6_c01193{height:39.296875pt;}
.h8_c01193{height:47.083333pt;}
.h1_c01193{height:49.088542pt;}
.h5_c01193{height:49.843750pt;}
.h2_c01193{height:60.218750pt;}
.h3_c01193{height:60.666900pt;}
.h4_c01193{height:80.291667pt;}
.h0_c01193{height:1122.666667pt;}
.w0_c01193{width:793.333333pt;}
.x0_c01193{left:0.000000pt;}
.x1_c01193{left:58.204720pt;}
.x2_c01193{left:84.265667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_df6165eb8c701e610b8d04e6.woff2')format("woff");}.ff1_c01194{font-family:ff1_c01194;line-height:1.163086;font-style:normal;font-weight:normal;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_38ace85a329679fe3fc0578f.woff2')format("woff");}.ff2_c01194{font-family:ff2_c01194;line-height:1.155762;font-style:normal;font-weight:normal;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_80ea0b1af97e002d56b3f693.woff2')format("woff");}.ff3_c01194{font-family:ff3_c01194;line-height:0.904785;font-style:normal;font-weight:normal;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_4834b3cedf0646843b874949.woff2')format("woff");}.ff4_c01194{font-family:ff4_c01194;line-height:0.892090;font-style: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);}
.v3_c01194{vertical-align:-33.000000px;}
.v2_c01194{vertical-align:-23.086200px;}
.v0_c01194{vertical-align:0.000000px;}
.v1_c01194{vertical-align:23.086200px;}
.ls4_c01194{letter-spacing:0.000000px;}
.ls2_c01194{letter-spacing:0.012000px;}
.ls0_c01194{letter-spacing:1.600200px;}
.ls3_c01194{letter-spacing:3.999999px;}
.ls1_c01194{letter-spacing:5.521800px;}
.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;}
}
.ws1_c01194{word-spacing:-15.000000px;}
.ws0_c01194{word-spacing:-13.200000px;}
.ws2_c01194{word-spacing:0.000000px;}
._c_c01194{margin-left:-10.245600px;}
._18_c01194{margin-left:-4.888800px;}
._4_c01194{margin-left:-3.859200px;}
._0_c01194{margin-left:-2.520000px;}
._b_c01194{margin-left:-1.029600px;}
._8_c01194{width:1.137600px;}
._6_c01194{width:2.966400px;}
._2_c01194{width:4.514400px;}
._16_c01194{width:6.033600px;}
._15_c01194{width:7.236000px;}
._14_c01194{width:8.294400px;}
._3_c01194{width:9.727200px;}
._7_c01194{width:11.260800px;}
._9_c01194{width:13.075200px;}
._a_c01194{width:14.234400px;}
._13_c01194{width:15.465600px;}
._1_c01194{width:16.747200px;}
._5_c01194{width:18.057600px;}
._17_c01194{width:21.052800px;}
._12_c01194{width:26.344800px;}
._d_c01194{width:27.914400px;}
._e_c01194{width:30.844800px;}
._11_c01194{width:31.917600px;}
._10_c01194{width:33.379200px;}
._f_c01194{width:34.826400px;}
.fc0_c01194{color:rgb(0,0,0);}
.fs3_c01194{font-size:40.000002px;}
.fs1_c01194{font-size:48.000000px;}
.fs2_c01194{font-size:60.000000px;}
.fs0_c01194{font-size:72.000000px;}
.y0_c01194{bottom:0.000000px;}
.y1a_c01194{bottom:67.500000px;}
.y20_c01194{bottom:132.000000px;}
.y1f_c01194{bottom:159.750000px;}
.y1e_c01194{bottom:201.000000px;}
.y1d_c01194{bottom:228.750000px;}
.y1c_c01194{bottom:270.000000px;}
.y1b_c01194{bottom:297.750000px;}
.y18_c01194{bottom:432.000000px;}
.y17_c01194{bottom:459.000000px;}
.y16_c01194{bottom:486.000000px;}
.y15_c01194{bottom:513.000000px;}
.y14_c01194{bottom:540.000000px;}
.y13_c01194{bottom:567.000000px;}
.y12_c01194{bottom:594.000000px;}
.y11_c01194{bottom:621.000000px;}
.y10_c01194{bottom:669.000000px;}
.yf_c01194{bottom:696.000000px;}
.ye_c01194{bottom:723.000000px;}
.yd_c01194{bottom:750.000000px;}
.yc_c01194{bottom:777.000000px;}
.yb_c01194{bottom:804.000000px;}
.ya_c01194{bottom:831.000000px;}
.y9_c01194{bottom:858.000000px;}
.y8_c01194{bottom:906.000000px;}
.y7_c01194{bottom:933.000000px;}
.y6_c01194{bottom:960.000000px;}
.y5_c01194{bottom:987.000000px;}
.y4_c01194{bottom:1014.000000px;}
.y3_c01194{bottom:1041.000000px;}
.y2_c01194{bottom:1068.000000px;}
.y1_c01194{bottom:1095.000000px;}
.y19_c01194{bottom:1194.000000px;}
.h4_c01194{height:27.480470px;}
.h5_c01194{height:41.220703px;}
.h3_c01194{height:56.074219px;}
.h1_c01194{height:67.746094px;}
.h2_c01194{height:68.250262px;}
.h0_c01194{height:1263.000000px;}
.w0_c01194{width:892.500000px;}
.x0_c01194{left:0.000000px;}
.x1_c01194{left:150.519750px;}
.x2_c01194{left:416.782800px;}
.x3_c01194{left:801.992850px;}
@media print{
.v3_c01194{vertical-align:-29.333333pt;}
.v2_c01194{vertical-align:-20.521067pt;}
.v0_c01194{vertical-align:0.000000pt;}
.v1_c01194{vertical-align:20.521067pt;}
.ls4_c01194{letter-spacing:0.000000pt;}
.ls2_c01194{letter-spacing:0.010667pt;}
.ls0_c01194{letter-spacing:1.422400pt;}
.ls3_c01194{letter-spacing:3.555555pt;}
.ls1_c01194{letter-spacing:4.908267pt;}
.ws1_c01194{word-spacing:-13.333333pt;}
.ws0_c01194{word-spacing:-11.733333pt;}
.ws2_c01194{word-spacing:0.000000pt;}
._c_c01194{margin-left:-9.107200pt;}
._18_c01194{margin-left:-4.345600pt;}
._4_c01194{margin-left:-3.430400pt;}
._0_c01194{margin-left:-2.240000pt;}
._b_c01194{margin-left:-0.915200pt;}
._8_c01194{width:1.011200pt;}
._6_c01194{width:2.636800pt;}
._2_c01194{width:4.012800pt;}
._16_c01194{width:5.363200pt;}
._15_c01194{width:6.432000pt;}
._14_c01194{width:7.372800pt;}
._3_c01194{width:8.646400pt;}
._7_c01194{width:10.009600pt;}
._9_c01194{width:11.622400pt;}
._a_c01194{width:12.652800pt;}
._13_c01194{width:13.747200pt;}
._1_c01194{width:14.886400pt;}
._5_c01194{width:16.051200pt;}
._17_c01194{width:18.713600pt;}
._12_c01194{width:23.417600pt;}
._d_c01194{width:24.812800pt;}
._e_c01194{width:27.417600pt;}
._11_c01194{width:28.371200pt;}
._10_c01194{width:29.670400pt;}
._f_c01194{width:30.956800pt;}
.fs3_c01194{font-size:35.555557pt;}
.fs1_c01194{font-size:42.666667pt;}
.fs2_c01194{font-size:53.333333pt;}
.fs0_c01194{font-size:64.000000pt;}
.y0_c01194{bottom:0.000000pt;}
.y1a_c01194{bottom:60.000000pt;}
.y20_c01194{bottom:117.333333pt;}
.y1f_c01194{bottom:142.000000pt;}
.y1e_c01194{bottom:178.666667pt;}
.y1d_c01194{bottom:203.333333pt;}
.y1c_c01194{bottom:240.000000pt;}
.y1b_c01194{bottom:264.666667pt;}
.y18_c01194{bottom:384.000000pt;}
.y17_c01194{bottom:408.000000pt;}
.y16_c01194{bottom:432.000000pt;}
.y15_c01194{bottom:456.000000pt;}
.y14_c01194{bottom:480.000000pt;}
.y13_c01194{bottom:504.000000pt;}
.y12_c01194{bottom:528.000000pt;}
.y11_c01194{bottom:552.000000pt;}
.y10_c01194{bottom:594.666667pt;}
.yf_c01194{bottom:618.666667pt;}
.ye_c01194{bottom:642.666667pt;}
.yd_c01194{bottom:666.666667pt;}
.yc_c01194{bottom:690.666667pt;}
.yb_c01194{bottom:714.666667pt;}
.ya_c01194{bottom:738.666667pt;}
.y9_c01194{bottom:762.666667pt;}
.y8_c01194{bottom:805.333333pt;}
.y7_c01194{bottom:829.333333pt;}
.y6_c01194{bottom:853.333333pt;}
.y5_c01194{bottom:877.333333pt;}
.y4_c01194{bottom:901.333333pt;}
.y3_c01194{bottom:925.333333pt;}
.y2_c01194{bottom:949.333333pt;}
.y1_c01194{bottom:973.333333pt;}
.y19_c01194{bottom:1061.333333pt;}
.h4_c01194{height:24.427085pt;}
.h5_c01194{height:36.640625pt;}
.h3_c01194{height:49.843750pt;}
.h1_c01194{height:60.218750pt;}
.h2_c01194{height:60.666900pt;}
.h0_c01194{height:1122.666667pt;}
.w0_c01194{width:793.333333pt;}
.x0_c01194{left:0.000000pt;}
.x1_c01194{left:133.795333pt;}
.x2_c01194{left:370.473600pt;}
.x3_c01194{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_59301b8a560f3130327fabb8.woff2')format("woff");}.ff1_c01195{font-family:ff1_c01195;line-height:0.934082;font-style:normal;font-weight:normal;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_be16221f90ed7af3c8625ff1.woff2')format("woff");}.ff2_c01195{font-family:ff2_c01195;line-height:0.756348;font-style:normal;font-weight:normal;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_103584ab80c43dfde657df91.woff2')format("woff");}.ff3_c01195{font-family:ff3_c01195;line-height:1.155762;font-style:normal;font-weight:normal;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_77e442454d54a26e68d94119.woff2')format("woff");}.ff4_c01195{font-family:ff4_c01195;line-height:0.904785;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01195;src:url('chunks/assets/font_4b789af1b8ffdefe9629a87a.woff2')format("woff");}.ff5_c01195{font-family:ff5_c01195;line-height:0.892090;font-style: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);}
.m1_c01195{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3_c01195{vertical-align:-33.000000px;}
.v2_c01195{vertical-align:-23.086200px;}
.v0_c01195{vertical-align:0.000000px;}
.v1_c01195{vertical-align:23.086200px;}
.ls4_c01195{letter-spacing:-0.009600px;}
.ls3_c01195{letter-spacing:0.000000px;}
.ls5_c01195{letter-spacing:0.012000px;}
.ls1_c01195{letter-spacing:0.216000px;}
.ls2_c01195{letter-spacing:3.999999px;}
.ls0_c01195{letter-spacing:4.612200px;}
.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;}
}
.ws1_c01195{word-spacing:-19.800000px;}
.ws3_c01195{word-spacing:-15.000000px;}
.ws0_c01195{word-spacing:-13.200000px;}
.ws2_c01195{word-spacing:-13.190400px;}
.ws4_c01195{word-spacing:-10.000001px;}
.ws5_c01195{word-spacing:0.000000px;}
._0_c01195{margin-left:-10.584000px;}
._9_c01195{margin-left:-6.991200px;}
._1a_c01195{margin-left:-4.600800px;}
._2_c01195{margin-left:-3.463200px;}
._4_c01195{margin-left:-2.282400px;}
._3_c01195{margin-left:-1.224000px;}
._8_c01195{width:1.324800px;}
._5_c01195{width:2.376000px;}
._1_c01195{width:3.571200px;}
._6_c01195{width:4.831200px;}
._7_c01195{width:6.242400px;}
._1b_c01195{width:7.401600px;}
._f_c01195{width:8.503200px;}
._e_c01195{width:10.180800px;}
._15_c01195{width:11.232000px;}
._a_c01195{width:12.304800px;}
._d_c01195{width:13.615200px;}
._c_c01195{width:14.853600px;}
._b_c01195{width:17.136000px;}
._13_c01195{width:18.626400px;}
._12_c01195{width:20.988000px;}
._10_c01195{width:22.276800px;}
._11_c01195{width:24.552000px;}
._14_c01195{width:25.783200px;}
._19_c01195{width:34.992000px;}
._16_c01195{width:36.525600px;}
._18_c01195{width:38.167200px;}
._1c_c01195{width:39.405600px;}
._17_c01195{width:40.917600px;}
.fc0_c01195{color:rgb(0,0,0);}
.fs3_c01195{font-size:40.000002px;}
.fs1_c01195{font-size:48.000000px;}
.fs2_c01195{font-size:60.000000px;}
.fs0_c01195{font-size:72.000000px;}
.y0_c01195{bottom:0.000000px;}
.y1b_c01195{bottom:67.500000px;}
.y21_c01195{bottom:132.000000px;}
.y20_c01195{bottom:159.750000px;}
.y1f_c01195{bottom:201.000000px;}
.y1e_c01195{bottom:228.750000px;}
.y1d_c01195{bottom:270.000000px;}
.y1c_c01195{bottom:297.750000px;}
.y19_c01195{bottom:384.000000px;}
.y18_c01195{bottom:411.000000px;}
.y17_c01195{bottom:438.000000px;}
.y16_c01195{bottom:465.000000px;}
.y15_c01195{bottom:492.000000px;}
.y14_c01195{bottom:519.000000px;}
.y13_c01195{bottom:546.000000px;}
.y12_c01195{bottom:573.000000px;}
.y11_c01195{bottom:600.000000px;}
.y10_c01195{bottom:627.000000px;}
.yf_c01195{bottom:654.000000px;}
.ye_c01195{bottom:681.000000px;}
.yd_c01195{bottom:729.000000px;}
.yc_c01195{bottom:756.000000px;}
.yb_c01195{bottom:783.000000px;}
.ya_c01195{bottom:810.000000px;}
.y9_c01195{bottom:837.000000px;}
.y8_c01195{bottom:864.000000px;}
.y7_c01195{bottom:891.000000px;}
.y6_c01195{bottom:939.000000px;}
.y5_c01195{bottom:966.000000px;}
.y4_c01195{bottom:993.000000px;}
.y3_c01195{bottom:1041.000000px;}
.y2_c01195{bottom:1068.000000px;}
.y1_c01195{bottom:1095.000000px;}
.y1a_c01195{bottom:1194.000000px;}
.h5_c01195{height:27.480470px;}
.h6_c01195{height:41.220703px;}
.h4_c01195{height:44.208984px;}
.h1_c01195{height:51.257812px;}
.h3_c01195{height:56.074219px;}
.h2_c01195{height:57.258075px;}
.h0_c01195{height:1263.000000px;}
.w0_c01195{width:892.500000px;}
.x0_c01195{left:0.000000px;}
.x1_c01195{left:65.480310px;}
@media print{
.v3_c01195{vertical-align:-29.333333pt;}
.v2_c01195{vertical-align:-20.521067pt;}
.v0_c01195{vertical-align:0.000000pt;}
.v1_c01195{vertical-align:20.521067pt;}
.ls4_c01195{letter-spacing:-0.008533pt;}
.ls3_c01195{letter-spacing:0.000000pt;}
.ls5_c01195{letter-spacing:0.010667pt;}
.ls1_c01195{letter-spacing:0.192000pt;}
.ls2_c01195{letter-spacing:3.555555pt;}
.ls0_c01195{letter-spacing:4.099733pt;}
.ws1_c01195{word-spacing:-17.600000pt;}
.ws3_c01195{word-spacing:-13.333333pt;}
.ws0_c01195{word-spacing:-11.733333pt;}
.ws2_c01195{word-spacing:-11.724800pt;}
.ws4_c01195{word-spacing:-8.888889pt;}
.ws5_c01195{word-spacing:0.000000pt;}
._0_c01195{margin-left:-9.408000pt;}
._9_c01195{margin-left:-6.214400pt;}
._1a_c01195{margin-left:-4.089600pt;}
._2_c01195{margin-left:-3.078400pt;}
._4_c01195{margin-left:-2.028800pt;}
._3_c01195{margin-left:-1.088000pt;}
._8_c01195{width:1.177600pt;}
._5_c01195{width:2.112000pt;}
._1_c01195{width:3.174400pt;}
._6_c01195{width:4.294400pt;}
._7_c01195{width:5.548800pt;}
._1b_c01195{width:6.579200pt;}
._f_c01195{width:7.558400pt;}
._e_c01195{width:9.049600pt;}
._15_c01195{width:9.984000pt;}
._a_c01195{width:10.937600pt;}
._d_c01195{width:12.102400pt;}
._c_c01195{width:13.203200pt;}
._b_c01195{width:15.232000pt;}
._13_c01195{width:16.556800pt;}
._12_c01195{width:18.656000pt;}
._10_c01195{width:19.801600pt;}
._11_c01195{width:21.824000pt;}
._14_c01195{width:22.918400pt;}
._19_c01195{width:31.104000pt;}
._16_c01195{width:32.467200pt;}
._18_c01195{width:33.926400pt;}
._1c_c01195{width:35.027200pt;}
._17_c01195{width:36.371200pt;}
.fs3_c01195{font-size:35.555557pt;}
.fs1_c01195{font-size:42.666667pt;}
.fs2_c01195{font-size:53.333333pt;}
.fs0_c01195{font-size:64.000000pt;}
.y0_c01195{bottom:0.000000pt;}
.y1b_c01195{bottom:60.000000pt;}
.y21_c01195{bottom:117.333333pt;}
.y20_c01195{bottom:142.000000pt;}
.y1f_c01195{bottom:178.666667pt;}
.y1e_c01195{bottom:203.333333pt;}
.y1d_c01195{bottom:240.000000pt;}
.y1c_c01195{bottom:264.666667pt;}
.y19_c01195{bottom:341.333333pt;}
.y18_c01195{bottom:365.333333pt;}
.y17_c01195{bottom:389.333333pt;}
.y16_c01195{bottom:413.333333pt;}
.y15_c01195{bottom:437.333333pt;}
.y14_c01195{bottom:461.333333pt;}
.y13_c01195{bottom:485.333333pt;}
.y12_c01195{bottom:509.333333pt;}
.y11_c01195{bottom:533.333333pt;}
.y10_c01195{bottom:557.333333pt;}
.yf_c01195{bottom:581.333333pt;}
.ye_c01195{bottom:605.333333pt;}
.yd_c01195{bottom:648.000000pt;}
.yc_c01195{bottom:672.000000pt;}
.yb_c01195{bottom:696.000000pt;}
.ya_c01195{bottom:720.000000pt;}
.y9_c01195{bottom:744.000000pt;}
.y8_c01195{bottom:768.000000pt;}
.y7_c01195{bottom:792.000000pt;}
.y6_c01195{bottom:834.666667pt;}
.y5_c01195{bottom:858.666667pt;}
.y4_c01195{bottom:882.666667pt;}
.y3_c01195{bottom:925.333333pt;}
.y2_c01195{bottom:949.333333pt;}
.y1_c01195{bottom:973.333333pt;}
.y1a_c01195{bottom:1061.333333pt;}
.h5_c01195{height:24.427085pt;}
.h6_c01195{height:36.640625pt;}
.h4_c01195{height:39.296875pt;}
.h1_c01195{height:45.562500pt;}
.h3_c01195{height:49.843750pt;}
.h2_c01195{height:50.896067pt;}
.h0_c01195{height:1122.666667pt;}
.w0_c01195{width:793.333333pt;}
.x0_c01195{left:0.000000pt;}
.x1_c01195{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_18660014fce2208478e914e9.woff2')format("woff");}.ff1_c01196{font-family:ff1_c01196;line-height:0.934082;font-style:normal;font-weight:normal;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_a911456c467cc2fee22ba864.woff2')format("woff");}.ff2_c01196{font-family:ff2_c01196;line-height:0.939453;font-style:normal;font-weight:normal;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_848a2b1fe7103fff3c70388e.woff2')format("woff");}.ff3_c01196{font-family:ff3_c01196;line-height:0.932129;font-style:normal;font-weight:normal;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_41275074e3f7fa7475039ad4.woff2')format("woff");}.ff4_c01196{font-family:ff4_c01196;line-height:1.155762;font-style:normal;font-weight:normal;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_25bf5270c11e5329616e5a2b.woff2')format("woff");}.ff5_c01196{font-family:ff5_c01196;line-height:0.904785;font-style:normal;font-weight: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_c01196;src:url('chunks/assets/font_22b1c144acdadfc716da4818.woff2')format("woff");}.ff6_c01196{font-family:ff6_c01196;line-height:0.892090;font-style: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);}
.v3_c01196{vertical-align:-33.000000px;}
.v2_c01196{vertical-align:-23.086200px;}
.v0_c01196{vertical-align:0.000000px;}
.v1_c01196{vertical-align:23.086200px;}
.ls5_c01196{letter-spacing:-0.009600px;}
.ls3_c01196{letter-spacing:0.000000px;}
.ls0_c01196{letter-spacing:0.007800px;}
.ls2_c01196{letter-spacing:0.012000px;}
.ls1_c01196{letter-spacing:0.014400px;}
.ls4_c01196{letter-spacing:9.064800px;}
.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;}
}
.ws2_c01196{word-spacing:-15.000000px;}
.ws0_c01196{word-spacing:-13.190400px;}
.ws1_c01196{word-spacing:-10.000001px;}
.ws3_c01196{word-spacing:0.000000px;}
._12_c01196{margin-left:-10.584000px;}
._19_c01196{margin-left:-9.019800px;}
._13_c01196{margin-left:-6.206400px;}
._7_c01196{margin-left:-4.356000px;}
._5_c01196{margin-left:-2.728800px;}
._a_c01196{margin-left:-1.591200px;}
._9_c01196{width:1.051200px;}
._0_c01196{width:2.325600px;}
._3_c01196{width:4.240800px;}
._b_c01196{width:5.846400px;}
._14_c01196{width:7.092000px;}
._15_c01196{width:8.784000px;}
._e_c01196{width:9.835200px;}
._c_c01196{width:11.714400px;}
._d_c01196{width:12.967200px;}
._10_c01196{width:14.054400px;}
._f_c01196{width:15.652800px;}
._11_c01196{width:16.711200px;}
._16_c01196{width:18.122400px;}
._17_c01196{width:21.024000px;}
._18_c01196{width:22.298400px;}
._4_c01196{width:24.112800px;}
._1_c01196{width:25.977600px;}
._2_c01196{width:28.382400px;}
._6_c01196{width:30.873600px;}
._8_c01196{width:32.666400px;}
.fc0_c01196{color:rgb(0,0,0);}
.fs4_c01196{font-size:40.000002px;}
.fs2_c01196{font-size:48.000000px;}
.fs3_c01196{font-size:60.000000px;}
.fs0_c01196{font-size:72.000000px;}
.fs1_c01196{font-size:78.000000px;}
.y0_c01196{bottom:0.000000px;}
.y16_c01196{bottom:67.500000px;}
.y19_c01196{bottom:140.250000px;}
.y18_c01196{bottom:181.500000px;}
.y17_c01196{bottom:209.250000px;}
.y14_c01196{bottom:477.000000px;}
.y13_c01196{bottom:504.000000px;}
.y12_c01196{bottom:531.000000px;}
.y11_c01196{bottom:558.000000px;}
.y10_c01196{bottom:606.000000px;}
.yf_c01196{bottom:633.000000px;}
.ye_c01196{bottom:660.000000px;}
.yd_c01196{bottom:687.000000px;}
.yc_c01196{bottom:714.000000px;}
.yb_c01196{bottom:741.000000px;}
.ya_c01196{bottom:789.000000px;}
.y9_c01196{bottom:816.000000px;}
.y8_c01196{bottom:843.000000px;}
.y7_c01196{bottom:870.000000px;}
.y6_c01196{bottom:897.000000px;}
.y5_c01196{bottom:943.500000px;}
.y4_c01196{bottom:1014.000000px;}
.y3_c01196{bottom:1041.000000px;}
.y2_c01196{bottom:1068.000000px;}
.y1_c01196{bottom:1095.000000px;}
.y15_c01196{bottom:1194.000000px;}
.h5_c01196{height:27.480470px;}
.h6_c01196{height:41.220703px;}
.h1_c01196{height:51.257812px;}
.h4_c01196{height:56.074219px;}
.h2_c01196{height:56.100586px;}
.h3_c01196{height:57.258075px;}
.h0_c01196{height:1263.000000px;}
.w0_c01196{width:892.500000px;}
.x0_c01196{left:0.000000px;}
.x1_c01196{left:150.519750px;}
.x2_c01196{left:416.782800px;}
.x3_c01196{left:801.992850px;}
@media print{
.v3_c01196{vertical-align:-29.333333pt;}
.v2_c01196{vertical-align:-20.521067pt;}
.v0_c01196{vertical-align:0.000000pt;}
.v1_c01196{vertical-align:20.521067pt;}
.ls5_c01196{letter-spacing:-0.008533pt;}
.ls3_c01196{letter-spacing:0.000000pt;}
.ls0_c01196{letter-spacing:0.006933pt;}
.ls2_c01196{letter-spacing:0.010667pt;}
.ls1_c01196{letter-spacing:0.012800pt;}
.ls4_c01196{letter-spacing:8.057600pt;}
.ws2_c01196{word-spacing:-13.333333pt;}
.ws0_c01196{word-spacing:-11.724800pt;}
.ws1_c01196{word-spacing:-8.888889pt;}
.ws3_c01196{word-spacing:0.000000pt;}
._12_c01196{margin-left:-9.408000pt;}
._19_c01196{margin-left:-8.017600pt;}
._13_c01196{margin-left:-5.516800pt;}
._7_c01196{margin-left:-3.872000pt;}
._5_c01196{margin-left:-2.425600pt;}
._a_c01196{margin-left:-1.414400pt;}
._9_c01196{width:0.934400pt;}
._0_c01196{width:2.067200pt;}
._3_c01196{width:3.769600pt;}
._b_c01196{width:5.196800pt;}
._14_c01196{width:6.304000pt;}
._15_c01196{width:7.808000pt;}
._e_c01196{width:8.742400pt;}
._c_c01196{width:10.412800pt;}
._d_c01196{width:11.526400pt;}
._10_c01196{width:12.492800pt;}
._f_c01196{width:13.913600pt;}
._11_c01196{width:14.854400pt;}
._16_c01196{width:16.108800pt;}
._17_c01196{width:18.688000pt;}
._18_c01196{width:19.820800pt;}
._4_c01196{width:21.433600pt;}
._1_c01196{width:23.091200pt;}
._2_c01196{width:25.228800pt;}
._6_c01196{width:27.443200pt;}
._8_c01196{width:29.036800pt;}
.fs4_c01196{font-size:35.555557pt;}
.fs2_c01196{font-size:42.666667pt;}
.fs3_c01196{font-size:53.333333pt;}
.fs0_c01196{font-size:64.000000pt;}
.fs1_c01196{font-size:69.333333pt;}
.y0_c01196{bottom:0.000000pt;}
.y16_c01196{bottom:60.000000pt;}
.y19_c01196{bottom:124.666667pt;}
.y18_c01196{bottom:161.333333pt;}
.y17_c01196{bottom:186.000000pt;}
.y14_c01196{bottom:424.000000pt;}
.y13_c01196{bottom:448.000000pt;}
.y12_c01196{bottom:472.000000pt;}
.y11_c01196{bottom:496.000000pt;}
.y10_c01196{bottom:538.666667pt;}
.yf_c01196{bottom:562.666667pt;}
.ye_c01196{bottom:586.666667pt;}
.yd_c01196{bottom:610.666667pt;}
.yc_c01196{bottom:634.666667pt;}
.yb_c01196{bottom:658.666667pt;}
.ya_c01196{bottom:701.333333pt;}
.y9_c01196{bottom:725.333333pt;}
.y8_c01196{bottom:749.333333pt;}
.y7_c01196{bottom:773.333333pt;}
.y6_c01196{bottom:797.333333pt;}
.y5_c01196{bottom:838.666667pt;}
.y4_c01196{bottom:901.333333pt;}
.y3_c01196{bottom:925.333333pt;}
.y2_c01196{bottom:949.333333pt;}
.y1_c01196{bottom:973.333333pt;}
.y15_c01196{bottom:1061.333333pt;}
.h5_c01196{height:24.427085pt;}
.h6_c01196{height:36.640625pt;}
.h1_c01196{height:45.562500pt;}
.h4_c01196{height:49.843750pt;}
.h2_c01196{height:49.867188pt;}
.h3_c01196{height:50.896067pt;}
.h0_c01196{height:1122.666667pt;}
.w0_c01196{width:793.333333pt;}
.x0_c01196{left:0.000000pt;}
.x1_c01196{left:133.795333pt;}
.x2_c01196{left:370.473600pt;}
.x3_c01196{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_029bfaffec511d2174577249.woff2')format("woff");}.ff1_c01197{font-family:ff1_c01197;line-height:0.783203;font-style:normal;font-weight:normal;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_67f76df30f3be2504ceca02a.woff2')format("woff");}.ff2_c01197{font-family:ff2_c01197;line-height:0.934082;font-style:normal;font-weight:normal;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_3fe781afd29fab2f922ae8cc.woff2')format("woff");}.ff3_c01197{font-family:ff3_c01197;line-height:0.756348;font-style:normal;font-weight:normal;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_ccd2789d979f4237ef9bfdb4.woff2')format("woff");}.ff4_c01197{font-family:ff4_c01197;line-height:1.155762;font-style: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);}
.v0_c01197{vertical-align:0.000000px;}
.ls0_c01197{letter-spacing:0.000000px;}
.ls1_c01197{letter-spacing:0.012000px;}
.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;}
}
.ws0_c01197{word-spacing:0.000000px;}
._12_c01197{margin-left:-10.612800px;}
._10_c01197{margin-left:-7.171200px;}
._0_c01197{margin-left:-3.945600px;}
._6_c01197{margin-left:-2.023200px;}
._b_c01197{margin-left:-1.000800px;}
._1_c01197{width:1.540800px;}
._4_c01197{width:2.916000px;}
._a_c01197{width:4.125600px;}
._d_c01197{width:5.450400px;}
._f_c01197{width:7.034400px;}
._e_c01197{width:8.438400px;}
._13_c01197{width:10.252800px;}
._5_c01197{width:11.311200px;}
._2_c01197{width:12.643200px;}
._3_c01197{width:14.169600px;}
._7_c01197{width:16.257600px;}
._8_c01197{width:18.122400px;}
._c_c01197{width:20.901600px;}
._9_c01197{width:22.802400px;}
._11_c01197{width:25.012800px;}
.fc0_c01197{color:rgb(0,0,0);}
.fs0_c01197{font-size:54.000000px;}
.fs2_c01197{font-size:60.000000px;}
.fs1_c01197{font-size:72.000000px;}
.y0_c01197{bottom:0.000000px;}
.y2_c01197{bottom:12.000000px;}
.y13_c01197{bottom:67.500000px;}
.y11_c01197{bottom:180.000000px;}
.y10_c01197{bottom:207.000000px;}
.yf_c01197{bottom:234.000000px;}
.ye_c01197{bottom:261.000000px;}
.yd_c01197{bottom:288.000000px;}
.yc_c01197{bottom:336.000000px;}
.yb_c01197{bottom:363.000000px;}
.ya_c01197{bottom:390.000000px;}
.y9_c01197{bottom:438.000000px;}
.y8_c01197{bottom:465.000000px;}
.y7_c01197{bottom:492.000000px;}
.y6_c01197{bottom:540.000000px;}
.y5_c01197{bottom:567.000000px;}
.y4_c01197{bottom:594.000000px;}
.y3_c01197{bottom:621.000000px;}
.y1_c01197{bottom:666.000000px;}
.y12_c01197{bottom:1194.000000px;}
.h2_c01197{height:41.633789px;}
.h5_c01197{height:44.208984px;}
.h3_c01197{height:51.257812px;}
.h4_c01197{height:56.074219px;}
.h1_c01197{height:447.000000px;}
.h0_c01197{height:1263.000000px;}
.w1_c01197{width:676.500000px;}
.w0_c01197{width:892.500000px;}
.x0_c01197{left:0.000000px;}
.x1_c01197{left:66.000000px;}
.x2_c01197{left:213.460650px;}
@media print{
.v0_c01197{vertical-align:0.000000pt;}
.ls0_c01197{letter-spacing:0.000000pt;}
.ls1_c01197{letter-spacing:0.010667pt;}
.ws0_c01197{word-spacing:0.000000pt;}
._12_c01197{margin-left:-9.433600pt;}
._10_c01197{margin-left:-6.374400pt;}
._0_c01197{margin-left:-3.507200pt;}
._6_c01197{margin-left:-1.798400pt;}
._b_c01197{margin-left:-0.889600pt;}
._1_c01197{width:1.369600pt;}
._4_c01197{width:2.592000pt;}
._a_c01197{width:3.667200pt;}
._d_c01197{width:4.844800pt;}
._f_c01197{width:6.252800pt;}
._e_c01197{width:7.500800pt;}
._13_c01197{width:9.113600pt;}
._5_c01197{width:10.054400pt;}
._2_c01197{width:11.238400pt;}
._3_c01197{width:12.595200pt;}
._7_c01197{width:14.451200pt;}
._8_c01197{width:16.108800pt;}
._c_c01197{width:18.579200pt;}
._9_c01197{width:20.268800pt;}
._11_c01197{width:22.233600pt;}
.fs0_c01197{font-size:48.000000pt;}
.fs2_c01197{font-size:53.333333pt;}
.fs1_c01197{font-size:64.000000pt;}
.y0_c01197{bottom:0.000000pt;}
.y2_c01197{bottom:10.666667pt;}
.y13_c01197{bottom:60.000000pt;}
.y11_c01197{bottom:160.000000pt;}
.y10_c01197{bottom:184.000000pt;}
.yf_c01197{bottom:208.000000pt;}
.ye_c01197{bottom:232.000000pt;}
.yd_c01197{bottom:256.000000pt;}
.yc_c01197{bottom:298.666667pt;}
.yb_c01197{bottom:322.666667pt;}
.ya_c01197{bottom:346.666667pt;}
.y9_c01197{bottom:389.333333pt;}
.y8_c01197{bottom:413.333333pt;}
.y7_c01197{bottom:437.333333pt;}
.y6_c01197{bottom:480.000000pt;}
.y5_c01197{bottom:504.000000pt;}
.y4_c01197{bottom:528.000000pt;}
.y3_c01197{bottom:552.000000pt;}
.y1_c01197{bottom:592.000000pt;}
.y12_c01197{bottom:1061.333333pt;}
.h2_c01197{height:37.007812pt;}
.h5_c01197{height:39.296875pt;}
.h3_c01197{height:45.562500pt;}
.h4_c01197{height:49.843750pt;}
.h1_c01197{height:397.333333pt;}
.h0_c01197{height:1122.666667pt;}
.w1_c01197{width:601.333333pt;}
.w0_c01197{width:793.333333pt;}
.x0_c01197{left:0.000000pt;}
.x1_c01197{left:58.666667pt;}
.x2_c01197{left:189.742800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_225a6c3f9efb78b054c2d683.woff2')format("woff");}.ff1_c01198{font-family:ff1_c01198;line-height:0.934082;font-style:normal;font-weight:normal;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_68d404728ba24cd53b4f6d94.woff2')format("woff");}.ff2_c01198{font-family:ff2_c01198;line-height:0.958008;font-style:normal;font-weight:normal;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_4343877884cf6bd7209628c6.woff2')format("woff");}.ff3_c01198{font-family:ff3_c01198;line-height:1.155762;font-style: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;}
.ls1_c01198{letter-spacing:0.000000px;}
.ls0_c01198{letter-spacing:0.012000px;}
.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;}
}
.ws0_c01198{word-spacing:-19.800000px;}
.ws1_c01198{word-spacing:0.000000px;}
._d_c01198{margin-left:-10.404000px;}
._7_c01198{margin-left:-4.665600px;}
._11_c01198{margin-left:-3.426000px;}
._e_c01198{margin-left:-2.383200px;}
._9_c01198{margin-left:-1.173600px;}
._3_c01198{width:1.152000px;}
._0_c01198{width:2.541600px;}
._10_c01198{width:3.664800px;}
._5_c01198{width:4.766400px;}
._6_c01198{width:6.300000px;}
._1_c01198{width:8.539200px;}
._4_c01198{width:9.928800px;}
._2_c01198{width:11.059200px;}
._a_c01198{width:12.283200px;}
._f_c01198{width:14.414400px;}
._8_c01198{width:15.703200px;}
._c_c01198{width:17.193600px;}
._b_c01198{width:18.288000px;}
.fc0_c01198{color:rgb(0,0,0);}
.fs1_c01198{font-size:54.000000px;}
.fs2_c01198{font-size:60.000000px;}
.fs0_c01198{font-size:72.000000px;}
.y0_c01198{bottom:0.000000px;}
.y4_c01198{bottom:12.000000px;}
.yf_c01198{bottom:67.500000px;}
.yd_c01198{bottom:142.500000px;}
.yc_c01198{bottom:169.500000px;}
.yb_c01198{bottom:196.500000px;}
.ya_c01198{bottom:244.500000px;}
.y9_c01198{bottom:271.500000px;}
.y8_c01198{bottom:319.500000px;}
.y7_c01198{bottom:346.500000px;}
.y6_c01198{bottom:373.500000px;}
.y5_c01198{bottom:400.500000px;}
.y3_c01198{bottom:445.500000px;}
.y2_c01198{bottom:1068.000000px;}
.y1_c01198{bottom:1095.000000px;}
.ye_c01198{bottom:1194.000000px;}
.h3_c01198{height:50.756836px;}
.h1_c01198{height:51.257812px;}
.h4_c01198{height:56.074219px;}
.h2_c01198{height:591.000000px;}
.h0_c01198{height:1263.000000px;}
.w1_c01198{width:676.500000px;}
.w0_c01198{width:892.500000px;}
.x0_c01198{left:0.000000px;}
.x1_c01198{left:150.519750px;}
.x2_c01198{left:243.341250px;}
.x3_c01198{left:416.782800px;}
.x4_c01198{left:801.992850px;}
@media print{
.v0_c01198{vertical-align:0.000000pt;}
.ls1_c01198{letter-spacing:0.000000pt;}
.ls0_c01198{letter-spacing:0.010667pt;}
.ws0_c01198{word-spacing:-17.600000pt;}
.ws1_c01198{word-spacing:0.000000pt;}
._d_c01198{margin-left:-9.248000pt;}
._7_c01198{margin-left:-4.147200pt;}
._11_c01198{margin-left:-3.045333pt;}
._e_c01198{margin-left:-2.118400pt;}
._9_c01198{margin-left:-1.043200pt;}
._3_c01198{width:1.024000pt;}
._0_c01198{width:2.259200pt;}
._10_c01198{width:3.257600pt;}
._5_c01198{width:4.236800pt;}
._6_c01198{width:5.600000pt;}
._1_c01198{width:7.590400pt;}
._4_c01198{width:8.825600pt;}
._2_c01198{width:9.830400pt;}
._a_c01198{width:10.918400pt;}
._f_c01198{width:12.812800pt;}
._8_c01198{width:13.958400pt;}
._c_c01198{width:15.283200pt;}
._b_c01198{width:16.256000pt;}
.fs1_c01198{font-size:48.000000pt;}
.fs2_c01198{font-size:53.333333pt;}
.fs0_c01198{font-size:64.000000pt;}
.y0_c01198{bottom:0.000000pt;}
.y4_c01198{bottom:10.666667pt;}
.yf_c01198{bottom:60.000000pt;}
.yd_c01198{bottom:126.666667pt;}
.yc_c01198{bottom:150.666667pt;}
.yb_c01198{bottom:174.666667pt;}
.ya_c01198{bottom:217.333333pt;}
.y9_c01198{bottom:241.333333pt;}
.y8_c01198{bottom:284.000000pt;}
.y7_c01198{bottom:308.000000pt;}
.y6_c01198{bottom:332.000000pt;}
.y5_c01198{bottom:356.000000pt;}
.y3_c01198{bottom:396.000000pt;}
.y2_c01198{bottom:949.333333pt;}
.y1_c01198{bottom:973.333333pt;}
.ye_c01198{bottom:1061.333333pt;}
.h3_c01198{height:45.117188pt;}
.h1_c01198{height:45.562500pt;}
.h4_c01198{height:49.843750pt;}
.h2_c01198{height:525.333333pt;}
.h0_c01198{height:1122.666667pt;}
.w1_c01198{width:601.333333pt;}
.w0_c01198{width:793.333333pt;}
.x0_c01198{left:0.000000pt;}
.x1_c01198{left:133.795333pt;}
.x2_c01198{left:216.303333pt;}
.x3_c01198{left:370.473600pt;}
.x4_c01198{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ef7e7ddee436111f753b6a2f.woff2')format("woff");}.ff1_c01199{font-family:ff1_c01199;line-height:0.934082;font-style:normal;font-weight:normal;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_4dac6640143501567db5f89c.woff2')format("woff");}.ff2_c01199{font-family:ff2_c01199;line-height:0.987793;font-style:normal;font-weight:normal;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_ca32f682cc5fee9cf109b7de.woff2')format("woff");}.ff3_c01199{font-family:ff3_c01199;line-height:0.756348;font-style:normal;font-weight:normal;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_c5a46636d74702400fb290c1.woff2')format("woff");}.ff4_c01199{font-family:ff4_c01199;line-height:1.155762;font-style: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);}
.v0_c01199{vertical-align:0.000000px;}
.ls1_c01199{letter-spacing:0.000000px;}
.ls2_c01199{letter-spacing:0.012000px;}
.ls0_c01199{letter-spacing:0.021600px;}
.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;}
}
.ws0_c01199{word-spacing:0.000000px;}
._3_c01199{margin-left:-3.837600px;}
._0_c01199{margin-left:-2.620800px;}
._a_c01199{margin-left:-1.260000px;}
._2_c01199{width:1.627200px;}
._1_c01199{width:3.441600px;}
._4_c01199{width:4.752000px;}
._12_c01199{width:5.940000px;}
._8_c01199{width:9.511200px;}
._7_c01199{width:11.376000px;}
._5_c01199{width:12.981600px;}
._c_c01199{width:14.601600px;}
._9_c01199{width:15.638400px;}
._6_c01199{width:16.855200px;}
._b_c01199{width:18.014400px;}
._e_c01199{width:25.711200px;}
._d_c01199{width:27.568800px;}
._f_c01199{width:29.167200px;}
._10_c01199{width:31.773600px;}
._11_c01199{width:32.983200px;}
.fc0_c01199{color:rgb(0,0,0);}
.fs1_c01199{font-size:54.000000px;}
.fs2_c01199{font-size:60.000000px;}
.fs0_c01199{font-size:72.000000px;}
.y0_c01199{bottom:0.000000px;}
.y7_c01199{bottom:12.000000px;}
.yd_c01199{bottom:67.500000px;}
.yb_c01199{bottom:133.500000px;}
.ya_c01199{bottom:447.000000px;}
.y9_c01199{bottom:474.000000px;}
.y8_c01199{bottom:501.000000px;}
.y6_c01199{bottom:546.000000px;}
.y5_c01199{bottom:987.000000px;}
.y4_c01199{bottom:1014.000000px;}
.y3_c01199{bottom:1041.000000px;}
.y2_c01199{bottom:1068.000000px;}
.y1_c01199{bottom:1095.000000px;}
.yc_c01199{bottom:1194.000000px;}
.h3_c01199{height:42.292969px;}
.h6_c01199{height:44.208984px;}
.h1_c01199{height:51.257812px;}
.h5_c01199{height:56.074219px;}
.h4_c01199{height:282.000000px;}
.h2_c01199{height:409.500000px;}
.h0_c01199{height:1263.000000px;}
.w1_c01199{width:676.500000px;}
.w0_c01199{width:892.500000px;}
.x0_c01199{left:0.000000px;}
.x1_c01199{left:65.480310px;}
.x2_c01199{left:97.652715px;}
.x3_c01199{left:226.581600px;}
@media print{
.v0_c01199{vertical-align:0.000000pt;}
.ls1_c01199{letter-spacing:0.000000pt;}
.ls2_c01199{letter-spacing:0.010667pt;}
.ls0_c01199{letter-spacing:0.019200pt;}
.ws0_c01199{word-spacing:0.000000pt;}
._3_c01199{margin-left:-3.411200pt;}
._0_c01199{margin-left:-2.329600pt;}
._a_c01199{margin-left:-1.120000pt;}
._2_c01199{width:1.446400pt;}
._1_c01199{width:3.059200pt;}
._4_c01199{width:4.224000pt;}
._12_c01199{width:5.280000pt;}
._8_c01199{width:8.454400pt;}
._7_c01199{width:10.112000pt;}
._5_c01199{width:11.539200pt;}
._c_c01199{width:12.979200pt;}
._9_c01199{width:13.900800pt;}
._6_c01199{width:14.982400pt;}
._b_c01199{width:16.012800pt;}
._e_c01199{width:22.854400pt;}
._d_c01199{width:24.505600pt;}
._f_c01199{width:25.926400pt;}
._10_c01199{width:28.243200pt;}
._11_c01199{width:29.318400pt;}
.fs1_c01199{font-size:48.000000pt;}
.fs2_c01199{font-size:53.333333pt;}
.fs0_c01199{font-size:64.000000pt;}
.y0_c01199{bottom:0.000000pt;}
.y7_c01199{bottom:10.666667pt;}
.yd_c01199{bottom:60.000000pt;}
.yb_c01199{bottom:118.666667pt;}
.ya_c01199{bottom:397.333333pt;}
.y9_c01199{bottom:421.333333pt;}
.y8_c01199{bottom:445.333333pt;}
.y6_c01199{bottom:485.333333pt;}
.y5_c01199{bottom:877.333333pt;}
.y4_c01199{bottom:901.333333pt;}
.y3_c01199{bottom:925.333333pt;}
.y2_c01199{bottom:949.333333pt;}
.y1_c01199{bottom:973.333333pt;}
.yc_c01199{bottom:1061.333333pt;}
.h3_c01199{height:37.593750pt;}
.h6_c01199{height:39.296875pt;}
.h1_c01199{height:45.562500pt;}
.h5_c01199{height:49.843750pt;}
.h4_c01199{height:250.666667pt;}
.h2_c01199{height:364.000000pt;}
.h0_c01199{height:1122.666667pt;}
.w1_c01199{width:601.333333pt;}
.w0_c01199{width:793.333333pt;}
.x0_c01199{left:0.000000pt;}
.x1_c01199{left:58.204720pt;}
.x2_c01199{left:86.802413pt;}
.x3_c01199{left:201.405867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0c71e43df35805ac6fe34068.woff2')format("woff");}.ff1_c01200{font-family:ff1_c01200;line-height:0.934082;font-style:normal;font-weight:normal;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_c27d3c642f1a95cb9190c901.woff2')format("woff");}.ff2_c01200{font-family:ff2_c01200;line-height:0.976074;font-style:normal;font-weight:normal;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_77d40784fe5a468b51920bbe.woff2')format("woff");}.ff3_c01200{font-family:ff3_c01200;line-height:1.155762;font-style: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;}
.ls2_c01200{letter-spacing:0.000000px;}
.ls1_c01200{letter-spacing:0.012000px;}
.ls0_c01200{letter-spacing:0.021600px;}
.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;}
}
.ws0_c01200{word-spacing:0.000000px;}
._10_c01200{margin-left:-10.584000px;}
._d_c01200{margin-left:-6.422400px;}
._2_c01200{margin-left:-3.636000px;}
._f_c01200{margin-left:-2.592000px;}
._0_c01200{margin-left:-1.490400px;}
._5_c01200{width:1.735200px;}
._4_c01200{width:3.088800px;}
._1_c01200{width:4.572000px;}
._c_c01200{width:5.659200px;}
._3_c01200{width:6.753600px;}
._b_c01200{width:8.647200px;}
._e_c01200{width:10.000800px;}
._a_c01200{width:13.622400px;}
._6_c01200{width:18.475200px;}
._8_c01200{width:21.499200px;}
._7_c01200{width:23.227200px;}
._9_c01200{width:24.962400px;}
.fc0_c01200{color:rgb(0,0,0);}
.fs1_c01200{font-size:54.000000px;}
.fs2_c01200{font-size:60.000000px;}
.fs0_c01200{font-size:72.000000px;}
.y0_c01200{bottom:0.000000px;}
.y8_c01200{bottom:12.000000px;}
.yc_c01200{bottom:67.500000px;}
.ya_c01200{bottom:127.500000px;}
.y9_c01200{bottom:520.500000px;}
.y7_c01200{bottom:565.500000px;}
.y6_c01200{bottom:960.000000px;}
.y5_c01200{bottom:987.000000px;}
.y4_c01200{bottom:1014.000000px;}
.y3_c01200{bottom:1041.000000px;}
.y2_c01200{bottom:1068.000000px;}
.y1_c01200{bottom:1095.000000px;}
.yb_c01200{bottom:1194.000000px;}
.h3_c01200{height:42.292969px;}
.h1_c01200{height:51.257812px;}
.h5_c01200{height:56.074219px;}
.h4_c01200{height:361.500000px;}
.h2_c01200{height:363.000000px;}
.h0_c01200{height:1263.000000px;}
.w1_c01200{width:676.500000px;}
.w0_c01200{width:892.500000px;}
.x0_c01200{left:0.000000px;}
.x3_c01200{left:119.712135px;}
.x1_c01200{left:150.519750px;}
.x2_c01200{left:281.069400px;}
.x4_c01200{left:416.782800px;}
.x5_c01200{left:801.992850px;}
@media print{
.v0_c01200{vertical-align:0.000000pt;}
.ls2_c01200{letter-spacing:0.000000pt;}
.ls1_c01200{letter-spacing:0.010667pt;}
.ls0_c01200{letter-spacing:0.019200pt;}
.ws0_c01200{word-spacing:0.000000pt;}
._10_c01200{margin-left:-9.408000pt;}
._d_c01200{margin-left:-5.708800pt;}
._2_c01200{margin-left:-3.232000pt;}
._f_c01200{margin-left:-2.304000pt;}
._0_c01200{margin-left:-1.324800pt;}
._5_c01200{width:1.542400pt;}
._4_c01200{width:2.745600pt;}
._1_c01200{width:4.064000pt;}
._c_c01200{width:5.030400pt;}
._3_c01200{width:6.003200pt;}
._b_c01200{width:7.686400pt;}
._e_c01200{width:8.889600pt;}
._a_c01200{width:12.108800pt;}
._6_c01200{width:16.422400pt;}
._8_c01200{width:19.110400pt;}
._7_c01200{width:20.646400pt;}
._9_c01200{width:22.188800pt;}
.fs1_c01200{font-size:48.000000pt;}
.fs2_c01200{font-size:53.333333pt;}
.fs0_c01200{font-size:64.000000pt;}
.y0_c01200{bottom:0.000000pt;}
.y8_c01200{bottom:10.666667pt;}
.yc_c01200{bottom:60.000000pt;}
.ya_c01200{bottom:113.333333pt;}
.y9_c01200{bottom:462.666667pt;}
.y7_c01200{bottom:502.666667pt;}
.y6_c01200{bottom:853.333333pt;}
.y5_c01200{bottom:877.333333pt;}
.y4_c01200{bottom:901.333333pt;}
.y3_c01200{bottom:925.333333pt;}
.y2_c01200{bottom:949.333333pt;}
.y1_c01200{bottom:973.333333pt;}
.yb_c01200{bottom:1061.333333pt;}
.h3_c01200{height:37.593750pt;}
.h1_c01200{height:45.562500pt;}
.h5_c01200{height:49.843750pt;}
.h4_c01200{height:321.333333pt;}
.h2_c01200{height:322.666667pt;}
.h0_c01200{height:1122.666667pt;}
.w1_c01200{width:601.333333pt;}
.w0_c01200{width:793.333333pt;}
.x0_c01200{left:0.000000pt;}
.x3_c01200{left:106.410787pt;}
.x1_c01200{left:133.795333pt;}
.x2_c01200{left:249.839467pt;}
.x4_c01200{left:370.473600pt;}
.x5_c01200{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_564749d512f1f0710f0ec567.woff2')format("woff");}.ff1_c01201{font-family:ff1_c01201;line-height:0.934082;font-style:normal;font-weight:normal;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_df9d854855cfd40c020216c6.woff2')format("woff");}.ff2_c01201{font-family:ff2_c01201;line-height:1.144531;font-style:normal;font-weight:normal;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_402ac152091c73923321bb90.woff2')format("woff");}.ff3_c01201{font-family:ff3_c01201;line-height:0.756836;font-style:normal;font-weight:normal;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_39c0ab89a9171d654d635571.woff2')format("woff");}.ff4_c01201{font-family:ff4_c01201;line-height:1.155762;font-style: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;}
.ls0_c01201{letter-spacing:0.000000px;}
.ls2_c01201{letter-spacing:0.012000px;}
.ls1_c01201{letter-spacing:0.021600px;}
.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:0.000000px;}
._e_c01201{margin-left:-6.364800px;}
._4_c01201{margin-left:-4.334400px;}
._18_c01201{margin-left:-3.312000px;}
._2_c01201{margin-left:-2.304000px;}
._a_c01201{margin-left:-1.260000px;}
._7_c01201{width:1.332000px;}
._0_c01201{width:2.347200px;}
._1_c01201{width:3.420000px;}
._16_c01201{width:4.615200px;}
._6_c01201{width:5.745600px;}
._d_c01201{width:6.933600px;}
._3_c01201{width:7.941600px;}
._17_c01201{width:8.942400px;}
._5_c01201{width:10.044000px;}
._9_c01201{width:12.002400px;}
._b_c01201{width:13.881600px;}
._8_c01201{width:15.026400px;}
._c_c01201{width:17.114400px;}
._14_c01201{width:18.532800px;}
._13_c01201{width:21.808800px;}
._15_c01201{width:23.068800px;}
._f_c01201{width:24.379200px;}
._10_c01201{width:25.689600px;}
._11_c01201{width:28.022400px;}
._12_c01201{width:29.138400px;}
.fc0_c01201{color:rgb(0,0,0);}
.fs1_c01201{font-size:54.000000px;}
.fs2_c01201{font-size:60.000000px;}
.fs0_c01201{font-size:72.000000px;}
.y0_c01201{bottom:0.000000px;}
.yc_c01201{bottom:12.000000px;}
.y16_c01201{bottom:67.500000px;}
.y14_c01201{bottom:136.500000px;}
.y13_c01201{bottom:163.500000px;}
.y12_c01201{bottom:190.500000px;}
.y11_c01201{bottom:217.500000px;}
.y10_c01201{bottom:244.500000px;}
.yf_c01201{bottom:271.500000px;}
.ye_c01201{bottom:319.500000px;}
.yd_c01201{bottom:346.500000px;}
.yb_c01201{bottom:391.500000px;}
.ya_c01201{bottom:852.000000px;}
.y9_c01201{bottom:879.000000px;}
.y8_c01201{bottom:906.000000px;}
.y7_c01201{bottom:933.000000px;}
.y6_c01201{bottom:960.000000px;}
.y5_c01201{bottom:987.000000px;}
.y4_c01201{bottom:1014.000000px;}
.y3_c01201{bottom:1041.000000px;}
.y2_c01201{bottom:1068.000000px;}
.y1_c01201{bottom:1095.000000px;}
.y15_c01201{bottom:1194.000000px;}
.h5_c01201{height:44.208984px;}
.h3_c01201{height:50.756836px;}
.h1_c01201{height:51.257812px;}
.h4_c01201{height:56.074219px;}
.h2_c01201{height:429.000000px;}
.h0_c01201{height:1263.000000px;}
.w1_c01201{width:676.500000px;}
.w0_c01201{width:892.500000px;}
.x0_c01201{left:0.000000px;}
.x2_c01201{left:44.849115px;}
.x1_c01201{left:65.480310px;}
@media print{
.v0_c01201{vertical-align:0.000000pt;}
.ls0_c01201{letter-spacing:0.000000pt;}
.ls2_c01201{letter-spacing:0.010667pt;}
.ls1_c01201{letter-spacing:0.019200pt;}
.ws0_c01201{word-spacing:0.000000pt;}
._e_c01201{margin-left:-5.657600pt;}
._4_c01201{margin-left:-3.852800pt;}
._18_c01201{margin-left:-2.944000pt;}
._2_c01201{margin-left:-2.048000pt;}
._a_c01201{margin-left:-1.120000pt;}
._7_c01201{width:1.184000pt;}
._0_c01201{width:2.086400pt;}
._1_c01201{width:3.040000pt;}
._16_c01201{width:4.102400pt;}
._6_c01201{width:5.107200pt;}
._d_c01201{width:6.163200pt;}
._3_c01201{width:7.059200pt;}
._17_c01201{width:7.948800pt;}
._5_c01201{width:8.928000pt;}
._9_c01201{width:10.668800pt;}
._b_c01201{width:12.339200pt;}
._8_c01201{width:13.356800pt;}
._c_c01201{width:15.212800pt;}
._14_c01201{width:16.473600pt;}
._13_c01201{width:19.385600pt;}
._15_c01201{width:20.505600pt;}
._f_c01201{width:21.670400pt;}
._10_c01201{width:22.835200pt;}
._11_c01201{width:24.908800pt;}
._12_c01201{width:25.900800pt;}
.fs1_c01201{font-size:48.000000pt;}
.fs2_c01201{font-size:53.333333pt;}
.fs0_c01201{font-size:64.000000pt;}
.y0_c01201{bottom:0.000000pt;}
.yc_c01201{bottom:10.666667pt;}
.y16_c01201{bottom:60.000000pt;}
.y14_c01201{bottom:121.333333pt;}
.y13_c01201{bottom:145.333333pt;}
.y12_c01201{bottom:169.333333pt;}
.y11_c01201{bottom:193.333333pt;}
.y10_c01201{bottom:217.333333pt;}
.yf_c01201{bottom:241.333333pt;}
.ye_c01201{bottom:284.000000pt;}
.yd_c01201{bottom:308.000000pt;}
.yb_c01201{bottom:348.000000pt;}
.ya_c01201{bottom:757.333333pt;}
.y9_c01201{bottom:781.333333pt;}
.y8_c01201{bottom:805.333333pt;}
.y7_c01201{bottom:829.333333pt;}
.y6_c01201{bottom:853.333333pt;}
.y5_c01201{bottom:877.333333pt;}
.y4_c01201{bottom:901.333333pt;}
.y3_c01201{bottom:925.333333pt;}
.y2_c01201{bottom:949.333333pt;}
.y1_c01201{bottom:973.333333pt;}
.y15_c01201{bottom:1061.333333pt;}
.h5_c01201{height:39.296875pt;}
.h3_c01201{height:45.117188pt;}
.h1_c01201{height:45.562500pt;}
.h4_c01201{height:49.843750pt;}
.h2_c01201{height:381.333333pt;}
.h0_c01201{height:1122.666667pt;}
.w1_c01201{width:601.333333pt;}
.w0_c01201{width:793.333333pt;}
.x0_c01201{left:0.000000pt;}
.x2_c01201{left:39.865880pt;}
.x1_c01201{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d24d1d4e4e89acb14b8bf4ba.woff2')format("woff");}.ff1_c01202{font-family:ff1_c01202;line-height:0.987793;font-style:normal;font-weight:normal;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_839cbcfe5e8f0985f9cfe67b.woff2')format("woff");}.ff2_c01202{font-family:ff2_c01202;line-height:0.932129;font-style:normal;font-weight:normal;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_d238d1a4c0e2f3debba1d53e.woff2')format("woff");}.ff3_c01202{font-family:ff3_c01202;line-height:1.155762;font-style: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);}
.v0_c01202{vertical-align:0.000000px;}
.ls2_c01202{letter-spacing:0.000000px;}
.ls1_c01202{letter-spacing:0.012000px;}
.ls0_c01202{letter-spacing:0.021600px;}
.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;}
}
.ws0_c01202{word-spacing:-17.085600px;}
.ws1_c01202{word-spacing:0.000000px;}
._9_c01202{margin-left:-9.655200px;}
._8_c01202{margin-left:-4.147200px;}
._1_c01202{margin-left:-3.074400px;}
._4_c01202{margin-left:-1.101600px;}
._a_c01202{width:1.080000px;}
._0_c01202{width:2.325600px;}
._6_c01202{width:3.549600px;}
._b_c01202{width:4.608000px;}
._7_c01202{width:5.644800px;}
._3_c01202{width:22.183200px;}
._5_c01202{width:23.349600px;}
._2_c01202{width:25.264800px;}
.fc0_c01202{color:rgb(0,0,0);}
.fs0_c01202{font-size:54.000000px;}
.fs2_c01202{font-size:60.000000px;}
.fs1_c01202{font-size:72.000000px;}
.y0_c01202{bottom:0.000000px;}
.y5_c01202{bottom:10.500000px;}
.y2_c01202{bottom:12.000000px;}
.y4_c01202{bottom:28.500000px;}
.ya_c01202{bottom:67.500000px;}
.y8_c01202{bottom:138.000000px;}
.y7_c01202{bottom:165.000000px;}
.y6_c01202{bottom:192.000000px;}
.y3_c01202{bottom:237.000000px;}
.y1_c01202{bottom:678.000000px;}
.y9_c01202{bottom:1194.000000px;}
.h2_c01202{height:42.292969px;}
.h4_c01202{height:51.257812px;}
.h5_c01202{height:56.074219px;}
.h3_c01202{height:412.500000px;}
.h1_c01202{height:435.000000px;}
.h0_c01202{height:1263.000000px;}
.w1_c01202{width:676.500000px;}
.w0_c01202{width:892.500000px;}
.x0_c01202{left:0.000000px;}
.x3_c01202{left:28.198215px;}
.x2_c01202{left:122.566410px;}
.x1_c01202{left:150.000000px;}
.x4_c01202{left:293.053350px;}
.x5_c01202{left:416.782800px;}
.x6_c01202{left:801.992850px;}
@media print{
.v0_c01202{vertical-align:0.000000pt;}
.ls2_c01202{letter-spacing:0.000000pt;}
.ls1_c01202{letter-spacing:0.010667pt;}
.ls0_c01202{letter-spacing:0.019200pt;}
.ws0_c01202{word-spacing:-15.187200pt;}
.ws1_c01202{word-spacing:0.000000pt;}
._9_c01202{margin-left:-8.582400pt;}
._8_c01202{margin-left:-3.686400pt;}
._1_c01202{margin-left:-2.732800pt;}
._4_c01202{margin-left:-0.979200pt;}
._a_c01202{width:0.960000pt;}
._0_c01202{width:2.067200pt;}
._6_c01202{width:3.155200pt;}
._b_c01202{width:4.096000pt;}
._7_c01202{width:5.017600pt;}
._3_c01202{width:19.718400pt;}
._5_c01202{width:20.755200pt;}
._2_c01202{width:22.457600pt;}
.fs0_c01202{font-size:48.000000pt;}
.fs2_c01202{font-size:53.333333pt;}
.fs1_c01202{font-size:64.000000pt;}
.y0_c01202{bottom:0.000000pt;}
.y5_c01202{bottom:9.333333pt;}
.y2_c01202{bottom:10.666667pt;}
.y4_c01202{bottom:25.333333pt;}
.ya_c01202{bottom:60.000000pt;}
.y8_c01202{bottom:122.666667pt;}
.y7_c01202{bottom:146.666667pt;}
.y6_c01202{bottom:170.666667pt;}
.y3_c01202{bottom:210.666667pt;}
.y1_c01202{bottom:602.666667pt;}
.y9_c01202{bottom:1061.333333pt;}
.h2_c01202{height:37.593750pt;}
.h4_c01202{height:45.562500pt;}
.h5_c01202{height:49.843750pt;}
.h3_c01202{height:366.666667pt;}
.h1_c01202{height:386.666667pt;}
.h0_c01202{height:1122.666667pt;}
.w1_c01202{width:601.333333pt;}
.w0_c01202{width:793.333333pt;}
.x0_c01202{left:0.000000pt;}
.x3_c01202{left:25.065080pt;}
.x2_c01202{left:108.947920pt;}
.x1_c01202{left:133.333333pt;}
.x4_c01202{left:260.491867pt;}
.x5_c01202{left:370.473600pt;}
.x6_c01202{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_121a7bc46b2c01c25bb51ef2.woff2')format("woff");}.ff1_c01203{font-family:ff1_c01203;line-height:0.934082;font-style:normal;font-weight:normal;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_39f49f623e62f02bfc9911ae.woff2')format("woff");}.ff2_c01203{font-family:ff2_c01203;line-height:0.987793;font-style:normal;font-weight:normal;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_2d1d6e4d7083fc35459f0ea1.woff2')format("woff");}.ff3_c01203{font-family:ff3_c01203;line-height:0.755859;font-style:normal;font-weight:normal;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_6055db073516fea6682ec4c2.woff2')format("woff");}.ff4_c01203{font-family:ff4_c01203;line-height:1.155762;font-style: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);}
.v0_c01203{vertical-align:0.000000px;}
.ls0_c01203{letter-spacing:0.000000px;}
.ls1_c01203{letter-spacing:0.012000px;}
.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;}
}
.ws0_c01203{word-spacing:0.000000px;}
._d_c01203{margin-left:-6.732000px;}
._e_c01203{margin-left:-5.061600px;}
._11_c01203{margin-left:-3.924000px;}
._9_c01203{margin-left:-2.858400px;}
._2_c01203{margin-left:-1.634400px;}
._4_c01203{width:1.267200px;}
._5_c01203{width:2.772000px;}
._b_c01203{width:3.852000px;}
._0_c01203{width:5.184000px;}
._6_c01203{width:6.825600px;}
._c_c01203{width:7.956000px;}
._7_c01203{width:8.964000px;}
._1_c01203{width:10.116000px;}
._3_c01203{width:11.872800px;}
._8_c01203{width:12.996000px;}
._a_c01203{width:14.961600px;}
._f_c01203{width:16.401600px;}
._10_c01203{width:18.662400px;}
.fc0_c01203{color:rgb(0,0,0);}
.fs1_c01203{font-size:54.000000px;}
.fs2_c01203{font-size:60.000000px;}
.fs0_c01203{font-size:72.000000px;}
.y0_c01203{bottom:0.000000px;}
.y6_c01203{bottom:10.500000px;}
.y5_c01203{bottom:28.500000px;}
.y12_c01203{bottom:67.500000px;}
.y10_c01203{bottom:207.000000px;}
.yf_c01203{bottom:234.000000px;}
.ye_c01203{bottom:261.000000px;}
.yd_c01203{bottom:288.000000px;}
.yc_c01203{bottom:315.000000px;}
.yb_c01203{bottom:342.000000px;}
.ya_c01203{bottom:369.000000px;}
.y9_c01203{bottom:417.000000px;}
.y8_c01203{bottom:444.000000px;}
.y7_c01203{bottom:471.000000px;}
.y4_c01203{bottom:516.000000px;}
.y3_c01203{bottom:1041.000000px;}
.y2_c01203{bottom:1068.000000px;}
.y1_c01203{bottom:1095.000000px;}
.y11_c01203{bottom:1194.000000px;}
.h3_c01203{height:42.292969px;}
.h5_c01203{height:44.208984px;}
.h1_c01203{height:51.257812px;}
.h4_c01203{height:56.074219px;}
.h2_c01203{height:493.500000px;}
.h0_c01203{height:1263.000000px;}
.w1_c01203{width:676.500000px;}
.w0_c01203{width:892.500000px;}
.x0_c01203{left:0.000000px;}
.x2_c01203{left:9.000000px;}
.x1_c01203{left:65.480310px;}
.x3_c01203{left:195.646350px;}
@media print{
.v0_c01203{vertical-align:0.000000pt;}
.ls0_c01203{letter-spacing:0.000000pt;}
.ls1_c01203{letter-spacing:0.010667pt;}
.ws0_c01203{word-spacing:0.000000pt;}
._d_c01203{margin-left:-5.984000pt;}
._e_c01203{margin-left:-4.499200pt;}
._11_c01203{margin-left:-3.488000pt;}
._9_c01203{margin-left:-2.540800pt;}
._2_c01203{margin-left:-1.452800pt;}
._4_c01203{width:1.126400pt;}
._5_c01203{width:2.464000pt;}
._b_c01203{width:3.424000pt;}
._0_c01203{width:4.608000pt;}
._6_c01203{width:6.067200pt;}
._c_c01203{width:7.072000pt;}
._7_c01203{width:7.968000pt;}
._1_c01203{width:8.992000pt;}
._3_c01203{width:10.553600pt;}
._8_c01203{width:11.552000pt;}
._a_c01203{width:13.299200pt;}
._f_c01203{width:14.579200pt;}
._10_c01203{width:16.588800pt;}
.fs1_c01203{font-size:48.000000pt;}
.fs2_c01203{font-size:53.333333pt;}
.fs0_c01203{font-size:64.000000pt;}
.y0_c01203{bottom:0.000000pt;}
.y6_c01203{bottom:9.333333pt;}
.y5_c01203{bottom:25.333333pt;}
.y12_c01203{bottom:60.000000pt;}
.y10_c01203{bottom:184.000000pt;}
.yf_c01203{bottom:208.000000pt;}
.ye_c01203{bottom:232.000000pt;}
.yd_c01203{bottom:256.000000pt;}
.yc_c01203{bottom:280.000000pt;}
.yb_c01203{bottom:304.000000pt;}
.ya_c01203{bottom:328.000000pt;}
.y9_c01203{bottom:370.666667pt;}
.y8_c01203{bottom:394.666667pt;}
.y7_c01203{bottom:418.666667pt;}
.y4_c01203{bottom:458.666667pt;}
.y3_c01203{bottom:925.333333pt;}
.y2_c01203{bottom:949.333333pt;}
.y1_c01203{bottom:973.333333pt;}
.y11_c01203{bottom:1061.333333pt;}
.h3_c01203{height:37.593750pt;}
.h5_c01203{height:39.296875pt;}
.h1_c01203{height:45.562500pt;}
.h4_c01203{height:49.843750pt;}
.h2_c01203{height:438.666667pt;}
.h0_c01203{height:1122.666667pt;}
.w1_c01203{width:601.333333pt;}
.w0_c01203{width:793.333333pt;}
.x0_c01203{left:0.000000pt;}
.x2_c01203{left:8.000000pt;}
.x1_c01203{left:58.204720pt;}
.x3_c01203{left:173.907867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ce62c62e2531073070ffed01.woff2')format("woff");}.ff1_c01204{font-family:ff1_c01204;line-height:0.987793;font-style:normal;font-weight:normal;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_3c229e9c5e6470c396a216fb.woff2')format("woff");}.ff2_c01204{font-family:ff2_c01204;line-height:1.155762;font-style: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;}
.ls2_c01204{letter-spacing:0.000000px;}
.ls0_c01204{letter-spacing:0.012000px;}
.ls1_c01204{letter-spacing:0.021600px;}
.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;}
}
.ws0_c01204{word-spacing:0.000000px;}
._0_c01204{margin-left:-3.426000px;}
.fc0_c01204{color:rgb(0,0,0);}
.fs0_c01204{font-size:54.000000px;}
.fs1_c01204{font-size:60.000000px;}
.y0_c01204{bottom:0.000000px;}
.y2_c01204{bottom:12.000000px;}
.y5_c01204{bottom:67.500000px;}
.y3_c01204{bottom:165.000000px;}
.y1_c01204{bottom:663.000000px;}
.y4_c01204{bottom:1194.000000px;}
.h2_c01204{height:42.292969px;}
.h4_c01204{height:56.074219px;}
.h1_c01204{height:450.000000px;}
.h3_c01204{height:469.500000px;}
.h0_c01204{height:1263.000000px;}
.w1_c01204{width:676.500000px;}
.w0_c01204{width:892.500000px;}
.x0_c01204{left:0.000000px;}
.x3_c01204{left:25.347285px;}
.x2_c01204{left:96.083835px;}
.x1_c01204{left:150.000000px;}
.x4_c01204{left:416.782800px;}
.x5_c01204{left:801.992850px;}
@media print{
.v0_c01204{vertical-align:0.000000pt;}
.ls2_c01204{letter-spacing:0.000000pt;}
.ls0_c01204{letter-spacing:0.010667pt;}
.ls1_c01204{letter-spacing:0.019200pt;}
.ws0_c01204{word-spacing:0.000000pt;}
._0_c01204{margin-left:-3.045333pt;}
.fs0_c01204{font-size:48.000000pt;}
.fs1_c01204{font-size:53.333333pt;}
.y0_c01204{bottom:0.000000pt;}
.y2_c01204{bottom:10.666667pt;}
.y5_c01204{bottom:60.000000pt;}
.y3_c01204{bottom:146.666667pt;}
.y1_c01204{bottom:589.333333pt;}
.y4_c01204{bottom:1061.333333pt;}
.h2_c01204{height:37.593750pt;}
.h4_c01204{height:49.843750pt;}
.h1_c01204{height:400.000000pt;}
.h3_c01204{height:417.333333pt;}
.h0_c01204{height:1122.666667pt;}
.w1_c01204{width:601.333333pt;}
.w0_c01204{width:793.333333pt;}
.x0_c01204{left:0.000000pt;}
.x3_c01204{left:22.530920pt;}
.x2_c01204{left:85.407853pt;}
.x1_c01204{left:133.333333pt;}
.x4_c01204{left:370.473600pt;}
.x5_c01204{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f60c14250ea4dbca2787a9cb.woff2')format("woff");}.ff1_c01205{font-family:ff1_c01205;line-height:0.932129;font-style:normal;font-weight:normal;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_87d330ca5e2facd034ee3ae9.woff2')format("woff");}.ff2_c01205{font-family:ff2_c01205;line-height:0.932129;font-style:normal;font-weight:normal;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_450209041a04c16a58666b0a.woff2')format("woff");}.ff3_c01205{font-family:ff3_c01205;line-height:1.010254;font-style:normal;font-weight:normal;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_745992fc594202852c7d198c.woff2')format("woff");}.ff4_c01205{font-family:ff4_c01205;line-height:0.755859;font-style:normal;font-weight:normal;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_c6698ceb89bd1429dadfe64d.woff2')format("woff");}.ff5_c01205{font-family:ff5_c01205;line-height:1.155762;font-style: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);}
.v0_c01205{vertical-align:0.000000px;}
.ls2_c01205{letter-spacing:-0.006000px;}
.ls3_c01205{letter-spacing:-0.005400px;}
.ls1_c01205{letter-spacing:0.000000px;}
.ls4_c01205{letter-spacing:0.012000px;}
.ls0_c01205{letter-spacing:1.843200px;}
.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;}
}
.ws0_c01205{word-spacing:-13.494600px;}
.ws1_c01205{word-spacing:0.000000px;}
._1b_c01205{margin-left:-5.401200px;}
._1_c01205{margin-left:-4.240800px;}
._5_c01205{margin-left:-2.454000px;}
._0_c01205{margin-left:-1.245600px;}
._2_c01205{width:1.164000px;}
._3_c01205{width:2.415600px;}
._4_c01205{width:3.600000px;}
._6_c01205{width:5.480760px;}
._7_c01205{width:7.099680px;}
._17_c01205{width:8.167200px;}
._8_c01205{width:9.525600px;}
._9_c01205{width:11.666280px;}
._16_c01205{width:13.521600px;}
._e_c01205{width:15.616800px;}
._d_c01205{width:16.680840px;}
._b_c01205{width:19.249200px;}
._a_c01205{width:20.508000px;}
._f_c01205{width:21.556800px;}
._18_c01205{width:22.671600px;}
._c_c01205{width:23.730000px;}
._19_c01205{width:24.854400px;}
._12_c01205{width:25.893600px;}
._11_c01205{width:27.694800px;}
._10_c01205{width:29.204400px;}
._1d_c01205{width:30.733200px;}
._1a_c01205{width:32.100000px;}
._13_c01205{width:33.379200px;}
._15_c01205{width:35.186400px;}
._14_c01205{width:37.035600px;}
._1c_c01205{width:38.520000px;}
.fc0_c01205{color:rgb(0,0,0);}
.fs2_c01205{font-size:54.000000px;}
.fs1_c01205{font-size:60.000000px;}
.fs0_c01205{font-size:72.000000px;}
.y0_c01205{bottom:0.000000px;}
.y24_c01205{bottom:67.500000px;}
.y22_c01205{bottom:145.500000px;}
.y21_c01205{bottom:171.000000px;}
.y20_c01205{bottom:196.500000px;}
.y1f_c01205{bottom:220.500000px;}
.y1e_c01205{bottom:246.000000px;}
.y1d_c01205{bottom:271.500000px;}
.y1c_c01205{bottom:297.000000px;}
.y1b_c01205{bottom:322.500000px;}
.y1a_c01205{bottom:346.500000px;}
.y19_c01205{bottom:397.500000px;}
.y18_c01205{bottom:423.000000px;}
.y17_c01205{bottom:448.500000px;}
.y16_c01205{bottom:472.500000px;}
.y15_c01205{bottom:498.000000px;}
.y14_c01205{bottom:523.500000px;}
.y13_c01205{bottom:549.000000px;}
.y12_c01205{bottom:574.500000px;}
.y11_c01205{bottom:598.500000px;}
.y10_c01205{bottom:624.000000px;}
.yf_c01205{bottom:649.500000px;}
.ye_c01205{bottom:675.000000px;}
.yd_c01205{bottom:700.500000px;}
.yc_c01205{bottom:724.500000px;}
.yb_c01205{bottom:750.000000px;}
.ya_c01205{bottom:775.500000px;}
.y9_c01205{bottom:801.000000px;}
.y8_c01205{bottom:826.500000px;}
.y7_c01205{bottom:850.500000px;}
.y6_c01205{bottom:876.000000px;}
.y5_c01205{bottom:921.000000px;}
.y4_c01205{bottom:942.000000px;}
.y3_c01205{bottom:978.000000px;}
.y2_c01205{bottom:1017.000000px;}
.y1_c01205{bottom:1095.000000px;}
.y23_c01205{bottom:1194.000000px;}
.h2_c01205{height:42.714844px;}
.h5_c01205{height:44.208984px;}
.h1_c01205{height:51.257812px;}
.h3_c01205{height:52.417969px;}
.h4_c01205{height:56.074219px;}
.h0_c01205{height:1263.000000px;}
.w0_c01205{width:892.500000px;}
.x0_c01205{left:0.000000px;}
.x1_c01205{left:65.480310px;}
@media print{
.v0_c01205{vertical-align:0.000000pt;}
.ls2_c01205{letter-spacing:-0.005333pt;}
.ls3_c01205{letter-spacing:-0.004800pt;}
.ls1_c01205{letter-spacing:0.000000pt;}
.ls4_c01205{letter-spacing:0.010667pt;}
.ls0_c01205{letter-spacing:1.638400pt;}
.ws0_c01205{word-spacing:-11.995200pt;}
.ws1_c01205{word-spacing:0.000000pt;}
._1b_c01205{margin-left:-4.801067pt;}
._1_c01205{margin-left:-3.769600pt;}
._5_c01205{margin-left:-2.181333pt;}
._0_c01205{margin-left:-1.107200pt;}
._2_c01205{width:1.034667pt;}
._3_c01205{width:2.147200pt;}
._4_c01205{width:3.200000pt;}
._6_c01205{width:4.871787pt;}
._7_c01205{width:6.310827pt;}
._17_c01205{width:7.259733pt;}
._8_c01205{width:8.467200pt;}
._9_c01205{width:10.370027pt;}
._16_c01205{width:12.019200pt;}
._e_c01205{width:13.881600pt;}
._d_c01205{width:14.827413pt;}
._b_c01205{width:17.110400pt;}
._a_c01205{width:18.229333pt;}
._f_c01205{width:19.161600pt;}
._18_c01205{width:20.152533pt;}
._c_c01205{width:21.093333pt;}
._19_c01205{width:22.092800pt;}
._12_c01205{width:23.016533pt;}
._11_c01205{width:24.617600pt;}
._10_c01205{width:25.959467pt;}
._1d_c01205{width:27.318400pt;}
._1a_c01205{width:28.533333pt;}
._13_c01205{width:29.670400pt;}
._15_c01205{width:31.276800pt;}
._14_c01205{width:32.920533pt;}
._1c_c01205{width:34.240000pt;}
.fs2_c01205{font-size:48.000000pt;}
.fs1_c01205{font-size:53.333333pt;}
.fs0_c01205{font-size:64.000000pt;}
.y0_c01205{bottom:0.000000pt;}
.y24_c01205{bottom:60.000000pt;}
.y22_c01205{bottom:129.333333pt;}
.y21_c01205{bottom:152.000000pt;}
.y20_c01205{bottom:174.666667pt;}
.y1f_c01205{bottom:196.000000pt;}
.y1e_c01205{bottom:218.666667pt;}
.y1d_c01205{bottom:241.333333pt;}
.y1c_c01205{bottom:264.000000pt;}
.y1b_c01205{bottom:286.666667pt;}
.y1a_c01205{bottom:308.000000pt;}
.y19_c01205{bottom:353.333333pt;}
.y18_c01205{bottom:376.000000pt;}
.y17_c01205{bottom:398.666667pt;}
.y16_c01205{bottom:420.000000pt;}
.y15_c01205{bottom:442.666667pt;}
.y14_c01205{bottom:465.333333pt;}
.y13_c01205{bottom:488.000000pt;}
.y12_c01205{bottom:510.666667pt;}
.y11_c01205{bottom:532.000000pt;}
.y10_c01205{bottom:554.666667pt;}
.yf_c01205{bottom:577.333333pt;}
.ye_c01205{bottom:600.000000pt;}
.yd_c01205{bottom:622.666667pt;}
.yc_c01205{bottom:644.000000pt;}
.yb_c01205{bottom:666.666667pt;}
.ya_c01205{bottom:689.333333pt;}
.y9_c01205{bottom:712.000000pt;}
.y8_c01205{bottom:734.666667pt;}
.y7_c01205{bottom:756.000000pt;}
.y6_c01205{bottom:778.666667pt;}
.y5_c01205{bottom:818.666667pt;}
.y4_c01205{bottom:837.333333pt;}
.y3_c01205{bottom:869.333333pt;}
.y2_c01205{bottom:904.000000pt;}
.y1_c01205{bottom:973.333333pt;}
.y23_c01205{bottom:1061.333333pt;}
.h2_c01205{height:37.968750pt;}
.h5_c01205{height:39.296875pt;}
.h1_c01205{height:45.562500pt;}
.h3_c01205{height:46.593750pt;}
.h4_c01205{height:49.843750pt;}
.h0_c01205{height:1122.666667pt;}
.w0_c01205{width:793.333333pt;}
.x0_c01205{left:0.000000pt;}
.x1_c01205{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_24eb0e2b31ea12b2e743a631.woff2')format("woff");}.ff1_c01206{font-family:ff1_c01206;line-height:1.010254;font-style:normal;font-weight:normal;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_412b805751a5e41948ec671b.woff2')format("woff");}.ff2_c01206{font-family:ff2_c01206;line-height:1.155762;font-style: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);}
.v0_c01206{vertical-align:0.000000px;}
.ls1_c01206{letter-spacing:0.000000px;}
.ls0_c01206{letter-spacing:0.012000px;}
.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;}
}
.ws0_c01206{word-spacing:-18.000000px;}
.ws1_c01206{word-spacing:0.000000px;}
._14_c01206{margin-left:-8.143200px;}
._e_c01206{margin-left:-5.529600px;}
._a_c01206{margin-left:-3.398400px;}
._0_c01206{margin-left:-1.432800px;}
._5_c01206{width:1.022400px;}
._3_c01206{width:2.440800px;}
._7_c01206{width:4.348800px;}
._9_c01206{width:5.551200px;}
._b_c01206{width:7.156800px;}
._11_c01206{width:8.532000px;}
._10_c01206{width:9.612000px;}
._c_c01206{width:10.944000px;}
._d_c01206{width:12.902400px;}
._13_c01206{width:14.054400px;}
._f_c01206{width:15.062400px;}
._12_c01206{width:16.963200px;}
._8_c01206{width:19.584000px;}
._4_c01206{width:21.463200px;}
._6_c01206{width:22.896000px;}
._2_c01206{width:23.911200px;}
._1_c01206{width:25.286400px;}
.fc0_c01206{color:rgb(0,0,0);}
.fs1_c01206{font-size:60.000000px;}
.fs0_c01206{font-size:72.000000px;}
.y0_c01206{bottom:0.000000px;}
.y21_c01206{bottom:67.500000px;}
.y1f_c01206{bottom:139.500000px;}
.y1e_c01206{bottom:165.000000px;}
.y1d_c01206{bottom:214.500000px;}
.y1c_c01206{bottom:240.000000px;}
.y1b_c01206{bottom:265.500000px;}
.y1a_c01206{bottom:316.500000px;}
.y19_c01206{bottom:340.500000px;}
.y18_c01206{bottom:366.000000px;}
.y17_c01206{bottom:391.500000px;}
.y16_c01206{bottom:442.500000px;}
.y15_c01206{bottom:466.500000px;}
.y14_c01206{bottom:492.000000px;}
.y13_c01206{bottom:543.000000px;}
.y12_c01206{bottom:568.500000px;}
.y11_c01206{bottom:592.500000px;}
.y10_c01206{bottom:618.000000px;}
.yf_c01206{bottom:643.500000px;}
.ye_c01206{bottom:669.000000px;}
.yd_c01206{bottom:694.500000px;}
.yc_c01206{bottom:744.000000px;}
.yb_c01206{bottom:769.500000px;}
.ya_c01206{bottom:820.500000px;}
.y9_c01206{bottom:844.500000px;}
.y8_c01206{bottom:870.000000px;}
.y7_c01206{bottom:921.000000px;}
.y6_c01206{bottom:946.500000px;}
.y5_c01206{bottom:970.500000px;}
.y4_c01206{bottom:996.000000px;}
.y3_c01206{bottom:1047.000000px;}
.y2_c01206{bottom:1072.500000px;}
.y1_c01206{bottom:1096.500000px;}
.y20_c01206{bottom:1194.000000px;}
.h1_c01206{height:52.417969px;}
.h2_c01206{height:56.074219px;}
.h0_c01206{height:1263.000000px;}
.w0_c01206{width:892.500000px;}
.x0_c01206{left:0.000000px;}
.x1_c01206{left:150.519750px;}
.x2_c01206{left:416.782800px;}
.x3_c01206{left:801.992850px;}
@media print{
.v0_c01206{vertical-align:0.000000pt;}
.ls1_c01206{letter-spacing:0.000000pt;}
.ls0_c01206{letter-spacing:0.010667pt;}
.ws0_c01206{word-spacing:-16.000000pt;}
.ws1_c01206{word-spacing:0.000000pt;}
._14_c01206{margin-left:-7.238400pt;}
._e_c01206{margin-left:-4.915200pt;}
._a_c01206{margin-left:-3.020800pt;}
._0_c01206{margin-left:-1.273600pt;}
._5_c01206{width:0.908800pt;}
._3_c01206{width:2.169600pt;}
._7_c01206{width:3.865600pt;}
._9_c01206{width:4.934400pt;}
._b_c01206{width:6.361600pt;}
._11_c01206{width:7.584000pt;}
._10_c01206{width:8.544000pt;}
._c_c01206{width:9.728000pt;}
._d_c01206{width:11.468800pt;}
._13_c01206{width:12.492800pt;}
._f_c01206{width:13.388800pt;}
._12_c01206{width:15.078400pt;}
._8_c01206{width:17.408000pt;}
._4_c01206{width:19.078400pt;}
._6_c01206{width:20.352000pt;}
._2_c01206{width:21.254400pt;}
._1_c01206{width:22.476800pt;}
.fs1_c01206{font-size:53.333333pt;}
.fs0_c01206{font-size:64.000000pt;}
.y0_c01206{bottom:0.000000pt;}
.y21_c01206{bottom:60.000000pt;}
.y1f_c01206{bottom:124.000000pt;}
.y1e_c01206{bottom:146.666667pt;}
.y1d_c01206{bottom:190.666667pt;}
.y1c_c01206{bottom:213.333333pt;}
.y1b_c01206{bottom:236.000000pt;}
.y1a_c01206{bottom:281.333333pt;}
.y19_c01206{bottom:302.666667pt;}
.y18_c01206{bottom:325.333333pt;}
.y17_c01206{bottom:348.000000pt;}
.y16_c01206{bottom:393.333333pt;}
.y15_c01206{bottom:414.666667pt;}
.y14_c01206{bottom:437.333333pt;}
.y13_c01206{bottom:482.666667pt;}
.y12_c01206{bottom:505.333333pt;}
.y11_c01206{bottom:526.666667pt;}
.y10_c01206{bottom:549.333333pt;}
.yf_c01206{bottom:572.000000pt;}
.ye_c01206{bottom:594.666667pt;}
.yd_c01206{bottom:617.333333pt;}
.yc_c01206{bottom:661.333333pt;}
.yb_c01206{bottom:684.000000pt;}
.ya_c01206{bottom:729.333333pt;}
.y9_c01206{bottom:750.666667pt;}
.y8_c01206{bottom:773.333333pt;}
.y7_c01206{bottom:818.666667pt;}
.y6_c01206{bottom:841.333333pt;}
.y5_c01206{bottom:862.666667pt;}
.y4_c01206{bottom:885.333333pt;}
.y3_c01206{bottom:930.666667pt;}
.y2_c01206{bottom:953.333333pt;}
.y1_c01206{bottom:974.666667pt;}
.y20_c01206{bottom:1061.333333pt;}
.h1_c01206{height:46.593750pt;}
.h2_c01206{height:49.843750pt;}
.h0_c01206{height:1122.666667pt;}
.w0_c01206{width:793.333333pt;}
.x0_c01206{left:0.000000pt;}
.x1_c01206{left:133.795333pt;}
.x2_c01206{left:370.473600pt;}
.x3_c01206{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6d1fc44dabbe16009c7b0124.woff2')format("woff");}.ff1_c01207{font-family:ff1_c01207;line-height:1.010254;font-style:normal;font-weight:normal;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_a6e6b30a6ac6b22f701dd2b6.woff2')format("woff");}.ff2_c01207{font-family:ff2_c01207;line-height:0.755859;font-style:normal;font-weight:normal;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_18f672d86746be243f393656.woff2')format("woff");}.ff3_c01207{font-family:ff3_c01207;line-height:1.155762;font-style: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;}
.ls0_c01207{letter-spacing:0.000000px;}
.ls1_c01207{letter-spacing:0.012000px;}
.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;}
}
.ws0_c01207{word-spacing:0.000000px;}
._14_c01207{margin-left:-4.744800px;}
._5_c01207{margin-left:-3.643200px;}
._3_c01207{margin-left:-2.102400px;}
._10_c01207{margin-left:-1.080000px;}
._6_c01207{width:1.000800px;}
._1_c01207{width:2.145600px;}
._9_c01207{width:3.175200px;}
._0_c01207{width:4.528800px;}
._b_c01207{width:5.572800px;}
._2_c01207{width:6.717600px;}
._4_c01207{width:8.596800px;}
._8_c01207{width:9.806400px;}
._c_c01207{width:10.879200px;}
._7_c01207{width:11.916000px;}
._a_c01207{width:13.276800px;}
._f_c01207{width:14.860800px;}
._d_c01207{width:15.984000px;}
._12_c01207{width:19.029600px;}
._e_c01207{width:20.138400px;}
._11_c01207{width:21.758400px;}
._13_c01207{width:23.068800px;}
._15_c01207{width:24.991200px;}
._16_c01207{width:28.353600px;}
.fc0_c01207{color:rgb(0,0,0);}
.fs1_c01207{font-size:60.000000px;}
.fs0_c01207{font-size:72.000000px;}
.y0_c01207{bottom:0.000000px;}
.y24_c01207{bottom:67.500000px;}
.y22_c01207{bottom:139.500000px;}
.y21_c01207{bottom:190.500000px;}
.y20_c01207{bottom:214.500000px;}
.y1f_c01207{bottom:240.000000px;}
.y1e_c01207{bottom:265.500000px;}
.y1d_c01207{bottom:291.000000px;}
.y1c_c01207{bottom:316.500000px;}
.y1b_c01207{bottom:340.500000px;}
.y1a_c01207{bottom:366.000000px;}
.y19_c01207{bottom:391.500000px;}
.y18_c01207{bottom:417.000000px;}
.y17_c01207{bottom:442.500000px;}
.y16_c01207{bottom:466.500000px;}
.y15_c01207{bottom:492.000000px;}
.y14_c01207{bottom:517.500000px;}
.y13_c01207{bottom:543.000000px;}
.y12_c01207{bottom:568.500000px;}
.y11_c01207{bottom:592.500000px;}
.y10_c01207{bottom:618.000000px;}
.yf_c01207{bottom:669.000000px;}
.ye_c01207{bottom:694.500000px;}
.yd_c01207{bottom:718.500000px;}
.yc_c01207{bottom:744.000000px;}
.yb_c01207{bottom:795.000000px;}
.ya_c01207{bottom:820.500000px;}
.y9_c01207{bottom:844.500000px;}
.y8_c01207{bottom:895.500000px;}
.y7_c01207{bottom:921.000000px;}
.y6_c01207{bottom:946.500000px;}
.y5_c01207{bottom:970.500000px;}
.y4_c01207{bottom:996.000000px;}
.y3_c01207{bottom:1047.000000px;}
.y2_c01207{bottom:1072.500000px;}
.y1_c01207{bottom:1096.500000px;}
.y23_c01207{bottom:1194.000000px;}
.h3_c01207{height:44.208984px;}
.h1_c01207{height:52.417969px;}
.h2_c01207{height:56.074219px;}
.h0_c01207{height:1263.000000px;}
.w0_c01207{width:892.500000px;}
.x0_c01207{left:0.000000px;}
.x1_c01207{left:65.480310px;}
@media print{
.v0_c01207{vertical-align:0.000000pt;}
.ls0_c01207{letter-spacing:0.000000pt;}
.ls1_c01207{letter-spacing:0.010667pt;}
.ws0_c01207{word-spacing:0.000000pt;}
._14_c01207{margin-left:-4.217600pt;}
._5_c01207{margin-left:-3.238400pt;}
._3_c01207{margin-left:-1.868800pt;}
._10_c01207{margin-left:-0.960000pt;}
._6_c01207{width:0.889600pt;}
._1_c01207{width:1.907200pt;}
._9_c01207{width:2.822400pt;}
._0_c01207{width:4.025600pt;}
._b_c01207{width:4.953600pt;}
._2_c01207{width:5.971200pt;}
._4_c01207{width:7.641600pt;}
._8_c01207{width:8.716800pt;}
._c_c01207{width:9.670400pt;}
._7_c01207{width:10.592000pt;}
._a_c01207{width:11.801600pt;}
._f_c01207{width:13.209600pt;}
._d_c01207{width:14.208000pt;}
._12_c01207{width:16.915200pt;}
._e_c01207{width:17.900800pt;}
._11_c01207{width:19.340800pt;}
._13_c01207{width:20.505600pt;}
._15_c01207{width:22.214400pt;}
._16_c01207{width:25.203200pt;}
.fs1_c01207{font-size:53.333333pt;}
.fs0_c01207{font-size:64.000000pt;}
.y0_c01207{bottom:0.000000pt;}
.y24_c01207{bottom:60.000000pt;}
.y22_c01207{bottom:124.000000pt;}
.y21_c01207{bottom:169.333333pt;}
.y20_c01207{bottom:190.666667pt;}
.y1f_c01207{bottom:213.333333pt;}
.y1e_c01207{bottom:236.000000pt;}
.y1d_c01207{bottom:258.666667pt;}
.y1c_c01207{bottom:281.333333pt;}
.y1b_c01207{bottom:302.666667pt;}
.y1a_c01207{bottom:325.333333pt;}
.y19_c01207{bottom:348.000000pt;}
.y18_c01207{bottom:370.666667pt;}
.y17_c01207{bottom:393.333333pt;}
.y16_c01207{bottom:414.666667pt;}
.y15_c01207{bottom:437.333333pt;}
.y14_c01207{bottom:460.000000pt;}
.y13_c01207{bottom:482.666667pt;}
.y12_c01207{bottom:505.333333pt;}
.y11_c01207{bottom:526.666667pt;}
.y10_c01207{bottom:549.333333pt;}
.yf_c01207{bottom:594.666667pt;}
.ye_c01207{bottom:617.333333pt;}
.yd_c01207{bottom:638.666667pt;}
.yc_c01207{bottom:661.333333pt;}
.yb_c01207{bottom:706.666667pt;}
.ya_c01207{bottom:729.333333pt;}
.y9_c01207{bottom:750.666667pt;}
.y8_c01207{bottom:796.000000pt;}
.y7_c01207{bottom:818.666667pt;}
.y6_c01207{bottom:841.333333pt;}
.y5_c01207{bottom:862.666667pt;}
.y4_c01207{bottom:885.333333pt;}
.y3_c01207{bottom:930.666667pt;}
.y2_c01207{bottom:953.333333pt;}
.y1_c01207{bottom:974.666667pt;}
.y23_c01207{bottom:1061.333333pt;}
.h3_c01207{height:39.296875pt;}
.h1_c01207{height:46.593750pt;}
.h2_c01207{height:49.843750pt;}
.h0_c01207{height:1122.666667pt;}
.w0_c01207{width:793.333333pt;}
.x0_c01207{left:0.000000pt;}
.x1_c01207{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fe7ab34078bd3245b22f5a2b.woff2')format("woff");}.ff1_c01208{font-family:ff1_c01208;line-height:1.010254;font-style:normal;font-weight:normal;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_1251af59d5a109ed3f4f13b4.woff2')format("woff");}.ff2_c01208{font-family:ff2_c01208;line-height:0.986816;font-style:normal;font-weight:normal;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_3f3da193456f2232c183aff6.woff2')format("woff");}.ff3_c01208{font-family:ff3_c01208;line-height:0.932129;font-style:normal;font-weight:normal;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_387f3431f4c395e6554d566a.woff2')format("woff");}.ff4_c01208{font-family:ff4_c01208;line-height:0.932129;font-style:normal;font-weight:normal;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_7b060a263992496f2b268cd7.woff2')format("woff");}.ff5_c01208{font-family:ff5_c01208;line-height:1.155762;font-style: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);}
.v0_c01208{vertical-align:0.000000px;}
.ls1_c01208{letter-spacing:0.000000px;}
.ls0_c01208{letter-spacing:0.012000px;}
.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:-19.800000px;}
.ws0_c01208{word-spacing:-18.000000px;}
.ws1_c01208{word-spacing:-0.072000px;}
.ws3_c01208{word-spacing:0.000000px;}
._16_c01208{margin-left:-10.584000px;}
._3_c01208{margin-left:-9.302400px;}
._2_c01208{margin-left:-6.645600px;}
._8_c01208{margin-left:-5.392800px;}
._4_c01208{margin-left:-4.003200px;}
._1_c01208{margin-left:-2.671200px;}
._0_c01208{margin-left:-1.274400px;}
._7_c01208{width:1.476000px;}
._5_c01208{width:2.664000px;}
._6_c01208{width:4.262400px;}
._10_c01208{width:5.709600px;}
._9_c01208{width:6.789600px;}
._f_c01208{width:7.977600px;}
._11_c01208{width:9.408000px;}
._e_c01208{width:10.634400px;}
._19_c01208{width:11.724000px;}
._a_c01208{width:12.924000px;}
._18_c01208{width:14.145600px;}
._d_c01208{width:15.149400px;}
._c_c01208{width:16.956000px;}
._12_c01208{width:19.240800px;}
._b_c01208{width:20.821800px;}
._17_c01208{width:22.017600px;}
._13_c01208{width:23.717400px;}
._14_c01208{width:25.271400px;}
._1a_c01208{width:26.496000px;}
._15_c01208{width:27.747600px;}
._1f_c01208{width:29.289600px;}
._1b_c01208{width:30.600600px;}
._1c_c01208{width:32.047200px;}
._1d_c01208{width:33.458400px;}
._1e_c01208{width:34.783200px;}
.fc0_c01208{color:rgb(0,0,0);}
.fs1_c01208{font-size:60.000000px;}
.fs0_c01208{font-size:72.000000px;}
.y0_c01208{bottom:0.000000px;}
.y1e_c01208{bottom:67.500000px;}
.y1c_c01208{bottom:138.000000px;}
.y1b_c01208{bottom:163.500000px;}
.y1a_c01208{bottom:187.500000px;}
.y19_c01208{bottom:213.000000px;}
.y18_c01208{bottom:238.500000px;}
.y17_c01208{bottom:264.000000px;}
.y16_c01208{bottom:309.000000px;}
.y15_c01208{bottom:330.000000px;}
.y14_c01208{bottom:379.500000px;}
.y13_c01208{bottom:406.500000px;}
.y12_c01208{bottom:460.500000px;}
.y11_c01208{bottom:514.500000px;}
.y10_c01208{bottom:592.500000px;}
.yf_c01208{bottom:643.500000px;}
.ye_c01208{bottom:669.000000px;}
.yd_c01208{bottom:694.500000px;}
.yc_c01208{bottom:744.000000px;}
.yb_c01208{bottom:769.500000px;}
.ya_c01208{bottom:795.000000px;}
.y9_c01208{bottom:844.500000px;}
.y8_c01208{bottom:870.000000px;}
.y7_c01208{bottom:921.000000px;}
.y6_c01208{bottom:946.500000px;}
.y5_c01208{bottom:970.500000px;}
.y4_c01208{bottom:996.000000px;}
.y3_c01208{bottom:1021.500000px;}
.y2_c01208{bottom:1047.000000px;}
.y1_c01208{bottom:1096.500000px;}
.y1d_c01208{bottom:1194.000000px;}
.h3_c01208{height:42.714844px;}
.h2_c01208{height:51.257812px;}
.h1_c01208{height:52.417969px;}
.h4_c01208{height:56.074219px;}
.h0_c01208{height:1263.000000px;}
.w0_c01208{width:892.500000px;}
.x0_c01208{left:0.000000px;}
.x1_c01208{left:150.519750px;}
.x2_c01208{left:416.782800px;}
.x3_c01208{left:801.992850px;}
@media print{
.v0_c01208{vertical-align:0.000000pt;}
.ls1_c01208{letter-spacing:0.000000pt;}
.ls0_c01208{letter-spacing:0.010667pt;}
.ws2_c01208{word-spacing:-17.600000pt;}
.ws0_c01208{word-spacing:-16.000000pt;}
.ws1_c01208{word-spacing:-0.064000pt;}
.ws3_c01208{word-spacing:0.000000pt;}
._16_c01208{margin-left:-9.408000pt;}
._3_c01208{margin-left:-8.268800pt;}
._2_c01208{margin-left:-5.907200pt;}
._8_c01208{margin-left:-4.793600pt;}
._4_c01208{margin-left:-3.558400pt;}
._1_c01208{margin-left:-2.374400pt;}
._0_c01208{margin-left:-1.132800pt;}
._7_c01208{width:1.312000pt;}
._5_c01208{width:2.368000pt;}
._6_c01208{width:3.788800pt;}
._10_c01208{width:5.075200pt;}
._9_c01208{width:6.035200pt;}
._f_c01208{width:7.091200pt;}
._11_c01208{width:8.362667pt;}
._e_c01208{width:9.452800pt;}
._19_c01208{width:10.421333pt;}
._a_c01208{width:11.488000pt;}
._18_c01208{width:12.573867pt;}
._d_c01208{width:13.466133pt;}
._c_c01208{width:15.072000pt;}
._12_c01208{width:17.102933pt;}
._b_c01208{width:18.508267pt;}
._17_c01208{width:19.571200pt;}
._13_c01208{width:21.082133pt;}
._14_c01208{width:22.463467pt;}
._1a_c01208{width:23.552000pt;}
._15_c01208{width:24.664533pt;}
._1f_c01208{width:26.035200pt;}
._1b_c01208{width:27.200533pt;}
._1c_c01208{width:28.486400pt;}
._1d_c01208{width:29.740800pt;}
._1e_c01208{width:30.918400pt;}
.fs1_c01208{font-size:53.333333pt;}
.fs0_c01208{font-size:64.000000pt;}
.y0_c01208{bottom:0.000000pt;}
.y1e_c01208{bottom:60.000000pt;}
.y1c_c01208{bottom:122.666667pt;}
.y1b_c01208{bottom:145.333333pt;}
.y1a_c01208{bottom:166.666667pt;}
.y19_c01208{bottom:189.333333pt;}
.y18_c01208{bottom:212.000000pt;}
.y17_c01208{bottom:234.666667pt;}
.y16_c01208{bottom:274.666667pt;}
.y15_c01208{bottom:293.333333pt;}
.y14_c01208{bottom:337.333333pt;}
.y13_c01208{bottom:361.333333pt;}
.y12_c01208{bottom:409.333333pt;}
.y11_c01208{bottom:457.333333pt;}
.y10_c01208{bottom:526.666667pt;}
.yf_c01208{bottom:572.000000pt;}
.ye_c01208{bottom:594.666667pt;}
.yd_c01208{bottom:617.333333pt;}
.yc_c01208{bottom:661.333333pt;}
.yb_c01208{bottom:684.000000pt;}
.ya_c01208{bottom:706.666667pt;}
.y9_c01208{bottom:750.666667pt;}
.y8_c01208{bottom:773.333333pt;}
.y7_c01208{bottom:818.666667pt;}
.y6_c01208{bottom:841.333333pt;}
.y5_c01208{bottom:862.666667pt;}
.y4_c01208{bottom:885.333333pt;}
.y3_c01208{bottom:908.000000pt;}
.y2_c01208{bottom:930.666667pt;}
.y1_c01208{bottom:974.666667pt;}
.y1d_c01208{bottom:1061.333333pt;}
.h3_c01208{height:37.968750pt;}
.h2_c01208{height:45.562500pt;}
.h1_c01208{height:46.593750pt;}
.h4_c01208{height:49.843750pt;}
.h0_c01208{height:1122.666667pt;}
.w0_c01208{width:793.333333pt;}
.x0_c01208{left:0.000000pt;}
.x1_c01208{left:133.795333pt;}
.x2_c01208{left:370.473600pt;}
.x3_c01208{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_60e19137fe5b1d98ba52d742.woff2')format("woff");}.ff1_c01209{font-family:ff1_c01209;line-height:1.010254;font-style:normal;font-weight:normal;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_a36a1f0b3ce95c118e0652b6.woff2')format("woff");}.ff2_c01209{font-family:ff2_c01209;line-height:0.755859;font-style:normal;font-weight:normal;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_9cb59e6fce1a09712bd6b31f.woff2')format("woff");}.ff3_c01209{font-family:ff3_c01209;line-height:1.155762;font-style: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;}
.ls0_c01209{letter-spacing:0.000000px;}
.ls1_c01209{letter-spacing:0.012000px;}
.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;}
}
.ws0_c01209{word-spacing:-18.000000px;}
.ws1_c01209{word-spacing:0.000000px;}
._1e_c01209{margin-left:-9.288000px;}
._17_c01209{margin-left:-5.637600px;}
._19_c01209{margin-left:-4.600800px;}
._0_c01209{margin-left:-3.513600px;}
._5_c01209{margin-left:-2.282400px;}
._a_c01209{margin-left:-1.130400px;}
._7_c01209{width:1.087200px;}
._3_c01209{width:2.131200px;}
._14_c01209{width:3.297600px;}
._b_c01209{width:4.327200px;}
._15_c01209{width:5.752800px;}
._13_c01209{width:7.574400px;}
._4_c01209{width:9.453600px;}
._8_c01209{width:10.461600px;}
._2_c01209{width:11.613600px;}
._9_c01209{width:12.708000px;}
._6_c01209{width:13.903200px;}
._1_c01209{width:15.084000px;}
._18_c01209{width:16.840800px;}
._1d_c01209{width:19.375200px;}
._1b_c01209{width:20.397600px;}
._1a_c01209{width:21.448800px;}
._1c_c01209{width:22.608000px;}
._11_c01209{width:23.702400px;}
._10_c01209{width:26.056800px;}
._12_c01209{width:27.367200px;}
._16_c01209{width:29.620800px;}
._e_c01209{width:30.859200px;}
._d_c01209{width:31.960800px;}
._f_c01209{width:32.983200px;}
._c_c01209{width:35.402400px;}
._1f_c01209{width:36.540000px;}
._21_c01209{width:38.484000px;}
._20_c01209{width:40.168800px;}
.fc0_c01209{color:rgb(0,0,0);}
.fs1_c01209{font-size:60.000000px;}
.fs0_c01209{font-size:72.000000px;}
.y0_c01209{bottom:0.000000px;}
.y1e_c01209{bottom:67.500000px;}
.y1c_c01209{bottom:391.500000px;}
.y1b_c01209{bottom:417.000000px;}
.y1a_c01209{bottom:442.500000px;}
.y19_c01209{bottom:466.500000px;}
.y18_c01209{bottom:492.000000px;}
.y17_c01209{bottom:517.500000px;}
.y16_c01209{bottom:543.000000px;}
.y15_c01209{bottom:568.500000px;}
.y14_c01209{bottom:592.500000px;}
.y13_c01209{bottom:618.000000px;}
.y12_c01209{bottom:643.500000px;}
.y11_c01209{bottom:694.500000px;}
.y10_c01209{bottom:718.500000px;}
.yf_c01209{bottom:744.000000px;}
.ye_c01209{bottom:769.500000px;}
.yd_c01209{bottom:795.000000px;}
.yc_c01209{bottom:820.500000px;}
.yb_c01209{bottom:844.500000px;}
.ya_c01209{bottom:870.000000px;}
.y9_c01209{bottom:895.500000px;}
.y8_c01209{bottom:921.000000px;}
.y7_c01209{bottom:946.500000px;}
.y6_c01209{bottom:970.500000px;}
.y5_c01209{bottom:996.000000px;}
.y4_c01209{bottom:1021.500000px;}
.y3_c01209{bottom:1047.000000px;}
.y2_c01209{bottom:1072.500000px;}
.y1_c01209{bottom:1096.500000px;}
.y1d_c01209{bottom:1194.000000px;}
.h3_c01209{height:44.208984px;}
.h1_c01209{height:52.417969px;}
.h2_c01209{height:56.074219px;}
.h0_c01209{height:1263.000000px;}
.w0_c01209{width:892.500000px;}
.x0_c01209{left:0.000000px;}
.x1_c01209{left:65.480310px;}
@media print{
.v0_c01209{vertical-align:0.000000pt;}
.ls0_c01209{letter-spacing:0.000000pt;}
.ls1_c01209{letter-spacing:0.010667pt;}
.ws0_c01209{word-spacing:-16.000000pt;}
.ws1_c01209{word-spacing:0.000000pt;}
._1e_c01209{margin-left:-8.256000pt;}
._17_c01209{margin-left:-5.011200pt;}
._19_c01209{margin-left:-4.089600pt;}
._0_c01209{margin-left:-3.123200pt;}
._5_c01209{margin-left:-2.028800pt;}
._a_c01209{margin-left:-1.004800pt;}
._7_c01209{width:0.966400pt;}
._3_c01209{width:1.894400pt;}
._14_c01209{width:2.931200pt;}
._b_c01209{width:3.846400pt;}
._15_c01209{width:5.113600pt;}
._13_c01209{width:6.732800pt;}
._4_c01209{width:8.403200pt;}
._8_c01209{width:9.299200pt;}
._2_c01209{width:10.323200pt;}
._9_c01209{width:11.296000pt;}
._6_c01209{width:12.358400pt;}
._1_c01209{width:13.408000pt;}
._18_c01209{width:14.969600pt;}
._1d_c01209{width:17.222400pt;}
._1b_c01209{width:18.131200pt;}
._1a_c01209{width:19.065600pt;}
._1c_c01209{width:20.096000pt;}
._11_c01209{width:21.068800pt;}
._10_c01209{width:23.161600pt;}
._12_c01209{width:24.326400pt;}
._16_c01209{width:26.329600pt;}
._e_c01209{width:27.430400pt;}
._d_c01209{width:28.409600pt;}
._f_c01209{width:29.318400pt;}
._c_c01209{width:31.468800pt;}
._1f_c01209{width:32.480000pt;}
._21_c01209{width:34.208000pt;}
._20_c01209{width:35.705600pt;}
.fs1_c01209{font-size:53.333333pt;}
.fs0_c01209{font-size:64.000000pt;}
.y0_c01209{bottom:0.000000pt;}
.y1e_c01209{bottom:60.000000pt;}
.y1c_c01209{bottom:348.000000pt;}
.y1b_c01209{bottom:370.666667pt;}
.y1a_c01209{bottom:393.333333pt;}
.y19_c01209{bottom:414.666667pt;}
.y18_c01209{bottom:437.333333pt;}
.y17_c01209{bottom:460.000000pt;}
.y16_c01209{bottom:482.666667pt;}
.y15_c01209{bottom:505.333333pt;}
.y14_c01209{bottom:526.666667pt;}
.y13_c01209{bottom:549.333333pt;}
.y12_c01209{bottom:572.000000pt;}
.y11_c01209{bottom:617.333333pt;}
.y10_c01209{bottom:638.666667pt;}
.yf_c01209{bottom:661.333333pt;}
.ye_c01209{bottom:684.000000pt;}
.yd_c01209{bottom:706.666667pt;}
.yc_c01209{bottom:729.333333pt;}
.yb_c01209{bottom:750.666667pt;}
.ya_c01209{bottom:773.333333pt;}
.y9_c01209{bottom:796.000000pt;}
.y8_c01209{bottom:818.666667pt;}
.y7_c01209{bottom:841.333333pt;}
.y6_c01209{bottom:862.666667pt;}
.y5_c01209{bottom:885.333333pt;}
.y4_c01209{bottom:908.000000pt;}
.y3_c01209{bottom:930.666667pt;}
.y2_c01209{bottom:953.333333pt;}
.y1_c01209{bottom:974.666667pt;}
.y1d_c01209{bottom:1061.333333pt;}
.h3_c01209{height:39.296875pt;}
.h1_c01209{height:46.593750pt;}
.h2_c01209{height:49.843750pt;}
.h0_c01209{height:1122.666667pt;}
.w0_c01209{width:793.333333pt;}
.x0_c01209{left:0.000000pt;}
.x1_c01209{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_da67ddd9c2c231ff78527eed.woff2')format("woff");}.ff1_c01210{font-family:ff1_c01210;line-height:0.884766;font-style:normal;font-weight:normal;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_120bd6dc470303a7de085e31.woff2')format("woff");}.ff2_c01210{font-family:ff2_c01210;line-height:1.163086;font-style:normal;font-weight:normal;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_af1f10bcbd8c0a384b737d60.woff2')format("woff");}.ff3_c01210{font-family:ff3_c01210;line-height:1.155762;font-style:normal;font-weight:normal;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_13818b69be32f45bff32381f.woff2')format("woff");}.ff4_c01210{font-family:ff4_c01210;line-height:1.114746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01210;src:url('chunks/assets/font_f3e7e1e0af1a568dd4774da8.woff2')format("woff");}.ff5_c01210{font-family:ff5_c01210;line-height:0.889648;font-style: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);}
.m1_c01210{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3_c01210{vertical-align:-33.000000px;}
.v2_c01210{vertical-align:-23.086200px;}
.v0_c01210{vertical-align:0.000000px;}
.v1_c01210{vertical-align:23.086200px;}
.ls7_c01210{letter-spacing:-0.019200px;}
.ls6_c01210{letter-spacing:-0.007200px;}
.ls5_c01210{letter-spacing:0.000000px;}
.ls0_c01210{letter-spacing:0.007800px;}
.ls3_c01210{letter-spacing:0.012000px;}
.ls1_c01210{letter-spacing:1.126200px;}
.ls2_c01210{letter-spacing:1.770600px;}
.ls4_c01210{letter-spacing:9.999999px;}
.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;}
}
.ws0_c01210{word-spacing:-13.200000px;}
.ws1_c01210{word-spacing:-10.000001px;}
.ws2_c01210{word-spacing:0.000000px;}
._c_c01210{margin-left:-10.965600px;}
._1c_c01210{margin-left:-5.325621px;}
._7_c01210{margin-left:-4.190400px;}
._9_c01210{margin-left:-2.743200px;}
._3_c01210{margin-left:-1.706400px;}
._a_c01210{width:1.828800px;}
._1_c01210{width:3.002400px;}
._5_c01210{width:4.924800px;}
._d_c01210{width:6.292800px;}
._e_c01210{width:7.394400px;}
._f_c01210{width:9.396000px;}
._10_c01210{width:11.131200px;}
._6_c01210{width:12.456000px;}
._2_c01210{width:14.450400px;}
._b_c01210{width:16.012800px;}
._0_c01210{width:17.409600px;}
._4_c01210{width:18.424800px;}
._1d_c01210{width:19.800042px;}
._8_c01210{width:21.621600px;}
._12_c01210{width:22.939200px;}
._16_c01210{width:24.904800px;}
._14_c01210{width:26.056800px;}
._17_c01210{width:27.216000px;}
._13_c01210{width:28.368000px;}
._11_c01210{width:29.606400px;}
._15_c01210{width:31.197600px;}
._19_c01210{width:33.112800px;}
._18_c01210{width:34.941600px;}
._1a_c01210{width:37.022400px;}
._1b_c01210{width:38.030400px;}
.fc1_c01210{color:rgb(255,255,255);}
.fc0_c01210{color:rgb(0,0,0);}
.fs5_c01210{font-size:40.000002px;}
.fs2_c01210{font-size:48.000000px;}
.fs4_c01210{font-size:60.000000px;}
.fs1_c01210{font-size:72.000000px;}
.fs0_c01210{font-size:78.000000px;}
.fs3_c01210{font-size:96.000000px;}
.y0_c01210{bottom:0.000000px;}
.y16_c01210{bottom:67.500000px;}
.y1b_c01210{bottom:132.000000px;}
.y1a_c01210{bottom:159.750000px;}
.y19_c01210{bottom:209.250000px;}
.y18_c01210{bottom:258.750000px;}
.y17_c01210{bottom:308.250000px;}
.y13_c01210{bottom:423.000000px;}
.y12_c01210{bottom:450.000000px;}
.y11_c01210{bottom:477.000000px;}
.y10_c01210{bottom:525.000000px;}
.yf_c01210{bottom:552.000000px;}
.ye_c01210{bottom:579.000000px;}
.yd_c01210{bottom:627.000000px;}
.yc_c01210{bottom:654.000000px;}
.yb_c01210{bottom:681.000000px;}
.ya_c01210{bottom:708.000000px;}
.y9_c01210{bottom:735.000000px;}
.y8_c01210{bottom:762.000000px;}
.y7_c01210{bottom:789.000000px;}
.y6_c01210{bottom:837.000000px;}
.y5_c01210{bottom:864.000000px;}
.y4_c01210{bottom:891.000000px;}
.y3_c01210{bottom:918.000000px;}
.y2_c01210{bottom:945.000000px;}
.y1_c01210{bottom:991.500000px;}
.y14_c01210{bottom:1066.500000px;}
.y15_c01210{bottom:1194.000000px;}
.h6_c01210{height:35.878908px;}
.h7_c01210{height:53.818359px;}
.h1_c01210{height:55.224609px;}
.h5_c01210{height:56.074219px;}
.h2_c01210{height:67.746094px;}
.h3_c01210{height:68.250262px;}
.h4_c01210{height:90.328125px;}
.h0_c01210{height:1263.000000px;}
.w0_c01210{width:892.500000px;}
.x0_c01210{left:0.000000px;}
.x1_c01210{left:134.787405px;}
.x2_c01210{left:163.798875px;}
.x3_c01210{left:432.515100px;}
.x4_c01210{left:817.725150px;}
@media print{
.v3_c01210{vertical-align:-29.333333pt;}
.v2_c01210{vertical-align:-20.521067pt;}
.v0_c01210{vertical-align:0.000000pt;}
.v1_c01210{vertical-align:20.521067pt;}
.ls7_c01210{letter-spacing:-0.017067pt;}
.ls6_c01210{letter-spacing:-0.006400pt;}
.ls5_c01210{letter-spacing:0.000000pt;}
.ls0_c01210{letter-spacing:0.006933pt;}
.ls3_c01210{letter-spacing:0.010667pt;}
.ls1_c01210{letter-spacing:1.001067pt;}
.ls2_c01210{letter-spacing:1.573867pt;}
.ls4_c01210{letter-spacing:8.888888pt;}
.ws0_c01210{word-spacing:-11.733333pt;}
.ws1_c01210{word-spacing:-8.888889pt;}
.ws2_c01210{word-spacing:0.000000pt;}
._c_c01210{margin-left:-9.747200pt;}
._1c_c01210{margin-left:-4.733885pt;}
._7_c01210{margin-left:-3.724800pt;}
._9_c01210{margin-left:-2.438400pt;}
._3_c01210{margin-left:-1.516800pt;}
._a_c01210{width:1.625600pt;}
._1_c01210{width:2.668800pt;}
._5_c01210{width:4.377600pt;}
._d_c01210{width:5.593600pt;}
._e_c01210{width:6.572800pt;}
._f_c01210{width:8.352000pt;}
._10_c01210{width:9.894400pt;}
._6_c01210{width:11.072000pt;}
._2_c01210{width:12.844800pt;}
._b_c01210{width:14.233600pt;}
._0_c01210{width:15.475200pt;}
._4_c01210{width:16.377600pt;}
._1d_c01210{width:17.600037pt;}
._8_c01210{width:19.219200pt;}
._12_c01210{width:20.390400pt;}
._16_c01210{width:22.137600pt;}
._14_c01210{width:23.161600pt;}
._17_c01210{width:24.192000pt;}
._13_c01210{width:25.216000pt;}
._11_c01210{width:26.316800pt;}
._15_c01210{width:27.731200pt;}
._19_c01210{width:29.433600pt;}
._18_c01210{width:31.059200pt;}
._1a_c01210{width:32.908800pt;}
._1b_c01210{width:33.804800pt;}
.fs5_c01210{font-size:35.555557pt;}
.fs2_c01210{font-size:42.666667pt;}
.fs4_c01210{font-size:53.333333pt;}
.fs1_c01210{font-size:64.000000pt;}
.fs0_c01210{font-size:69.333333pt;}
.fs3_c01210{font-size:85.333333pt;}
.y0_c01210{bottom:0.000000pt;}
.y16_c01210{bottom:60.000000pt;}
.y1b_c01210{bottom:117.333333pt;}
.y1a_c01210{bottom:142.000000pt;}
.y19_c01210{bottom:186.000000pt;}
.y18_c01210{bottom:230.000000pt;}
.y17_c01210{bottom:274.000000pt;}
.y13_c01210{bottom:376.000000pt;}
.y12_c01210{bottom:400.000000pt;}
.y11_c01210{bottom:424.000000pt;}
.y10_c01210{bottom:466.666667pt;}
.yf_c01210{bottom:490.666667pt;}
.ye_c01210{bottom:514.666667pt;}
.yd_c01210{bottom:557.333333pt;}
.yc_c01210{bottom:581.333333pt;}
.yb_c01210{bottom:605.333333pt;}
.ya_c01210{bottom:629.333333pt;}
.y9_c01210{bottom:653.333333pt;}
.y8_c01210{bottom:677.333333pt;}
.y7_c01210{bottom:701.333333pt;}
.y6_c01210{bottom:744.000000pt;}
.y5_c01210{bottom:768.000000pt;}
.y4_c01210{bottom:792.000000pt;}
.y3_c01210{bottom:816.000000pt;}
.y2_c01210{bottom:840.000000pt;}
.y1_c01210{bottom:881.333333pt;}
.y14_c01210{bottom:948.000000pt;}
.y15_c01210{bottom:1061.333333pt;}
.h6_c01210{height:31.892363pt;}
.h7_c01210{height:47.838542pt;}
.h1_c01210{height:49.088542pt;}
.h5_c01210{height:49.843750pt;}
.h2_c01210{height:60.218750pt;}
.h3_c01210{height:60.666900pt;}
.h4_c01210{height:80.291667pt;}
.h0_c01210{height:1122.666667pt;}
.w0_c01210{width:793.333333pt;}
.x0_c01210{left:0.000000pt;}
.x1_c01210{left:119.811027pt;}
.x2_c01210{left:145.599000pt;}
.x3_c01210{left:384.457867pt;}
.x4_c01210{left:726.866800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b1242f88b9e56810530c5981.woff2')format("woff");}.ff1_c01211{font-family:ff1_c01211;line-height:1.163086;font-style:normal;font-weight:normal;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_ee0524dcd5f127a9fb6866f8.woff2')format("woff");}.ff2_c01211{font-family:ff2_c01211;line-height:0.756836;font-style:normal;font-weight:normal;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_5dde6a2bcef26144616100d7.woff2')format("woff");}.ff3_c01211{font-family:ff3_c01211;line-height:1.155762;font-style:normal;font-weight:normal;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_01055b0b60578018a38c9732.woff2')format("woff");}.ff4_c01211{font-family:ff4_c01211;line-height:1.114746;font-style:normal;font-weight:normal;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_8c5c2cbb099247e13fb17295.woff2')format("woff");}.ff5_c01211{font-family:ff5_c01211;line-height:0.890137;font-style: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);}
.v3_c01211{vertical-align:-33.000000px;}
.v2_c01211{vertical-align:-23.086200px;}
.v0_c01211{vertical-align:0.000000px;}
.v1_c01211{vertical-align:23.086200px;}
.ls5_c01211{letter-spacing:0.000000px;}
.ls6_c01211{letter-spacing:0.012000px;}
.ls1_c01211{letter-spacing:0.556560px;}
.ls0_c01211{letter-spacing:2.145780px;}
.ls3_c01211{letter-spacing:2.265600px;}
.ls2_c01211{letter-spacing:2.641800px;}
.ls4_c01211{letter-spacing:9.999999px;}
.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;}
}
.ws0_c01211{word-spacing:-19.800000px;}
.ws1_c01211{word-spacing:-13.200000px;}
.ws2_c01211{word-spacing:-10.000001px;}
.ws3_c01211{word-spacing:0.000000px;}
._b_c01211{margin-left:-10.648800px;}
._0_c01211{margin-left:-9.280800px;}
._15_c01211{margin-left:-6.314400px;}
._c_c01211{margin-left:-4.464000px;}
._11_c01211{margin-left:-3.268800px;}
._2_c01211{margin-left:-1.454400px;}
._6_c01211{width:1.447200px;}
._8_c01211{width:2.750400px;}
._a_c01211{width:3.909600px;}
._4_c01211{width:5.068800px;}
._d_c01211{width:6.768000px;}
._5_c01211{width:8.532000px;}
._18_c01211{width:9.576000px;}
._9_c01211{width:10.828800px;}
._7_c01211{width:12.124800px;}
._1_c01211{width:13.586400px;}
._3_c01211{width:15.091200px;}
._12_c01211{width:16.250400px;}
._10_c01211{width:17.452800px;}
._1c_c01211{width:20.385300px;}
._14_c01211{width:22.147200px;}
._13_c01211{width:23.774400px;}
._e_c01211{width:25.228800px;}
._f_c01211{width:26.640000px;}
._16_c01211{width:28.440000px;}
._19_c01211{width:29.980800px;}
._17_c01211{width:31.478400px;}
._1a_c01211{width:32.745600px;}
._1b_c01211{width:35.143200px;}
.fc0_c01211{color:rgb(0,0,0);}
.fs3_c01211{font-size:40.000002px;}
.fs1_c01211{font-size:48.000000px;}
.fs2_c01211{font-size:60.000000px;}
.fs0_c01211{font-size:72.000000px;}
.y0_c01211{bottom:0.000000px;}
.y1b_c01211{bottom:67.500000px;}
.y21_c01211{bottom:140.250000px;}
.y20_c01211{bottom:189.750000px;}
.y1f_c01211{bottom:239.250000px;}
.y1e_c01211{bottom:288.750000px;}
.y1d_c01211{bottom:330.000000px;}
.y1c_c01211{bottom:357.750000px;}
.y19_c01211{bottom:405.000000px;}
.y18_c01211{bottom:432.000000px;}
.y17_c01211{bottom:459.000000px;}
.y16_c01211{bottom:486.000000px;}
.y15_c01211{bottom:513.000000px;}
.y14_c01211{bottom:561.000000px;}
.y13_c01211{bottom:588.000000px;}
.y12_c01211{bottom:615.000000px;}
.y11_c01211{bottom:642.000000px;}
.y10_c01211{bottom:669.000000px;}
.yf_c01211{bottom:696.000000px;}
.ye_c01211{bottom:723.000000px;}
.yd_c01211{bottom:750.000000px;}
.yc_c01211{bottom:777.000000px;}
.yb_c01211{bottom:804.000000px;}
.ya_c01211{bottom:831.000000px;}
.y9_c01211{bottom:858.000000px;}
.y8_c01211{bottom:906.000000px;}
.y7_c01211{bottom:933.000000px;}
.y6_c01211{bottom:960.000000px;}
.y5_c01211{bottom:987.000000px;}
.y4_c01211{bottom:1014.000000px;}
.y3_c01211{bottom:1041.000000px;}
.y2_c01211{bottom:1068.000000px;}
.y1_c01211{bottom:1095.000000px;}
.y1a_c01211{bottom:1194.000000px;}
.h5_c01211{height:35.878908px;}
.h4_c01211{height:44.208984px;}
.h6_c01211{height:53.818359px;}
.h3_c01211{height:56.074219px;}
.h1_c01211{height:67.746094px;}
.h2_c01211{height:68.250262px;}
.h0_c01211{height:1263.000000px;}
.w0_c01211{width:892.500000px;}
.x0_c01211{left:0.000000px;}
.x1_c01211{left:49.748025px;}
@media print{
.v3_c01211{vertical-align:-29.333333pt;}
.v2_c01211{vertical-align:-20.521067pt;}
.v0_c01211{vertical-align:0.000000pt;}
.v1_c01211{vertical-align:20.521067pt;}
.ls5_c01211{letter-spacing:0.000000pt;}
.ls6_c01211{letter-spacing:0.010667pt;}
.ls1_c01211{letter-spacing:0.494720pt;}
.ls0_c01211{letter-spacing:1.907360pt;}
.ls3_c01211{letter-spacing:2.013867pt;}
.ls2_c01211{letter-spacing:2.348267pt;}
.ls4_c01211{letter-spacing:8.888888pt;}
.ws0_c01211{word-spacing:-17.600000pt;}
.ws1_c01211{word-spacing:-11.733333pt;}
.ws2_c01211{word-spacing:-8.888889pt;}
.ws3_c01211{word-spacing:0.000000pt;}
._b_c01211{margin-left:-9.465600pt;}
._0_c01211{margin-left:-8.249600pt;}
._15_c01211{margin-left:-5.612800pt;}
._c_c01211{margin-left:-3.968000pt;}
._11_c01211{margin-left:-2.905600pt;}
._2_c01211{margin-left:-1.292800pt;}
._6_c01211{width:1.286400pt;}
._8_c01211{width:2.444800pt;}
._a_c01211{width:3.475200pt;}
._4_c01211{width:4.505600pt;}
._d_c01211{width:6.016000pt;}
._5_c01211{width:7.584000pt;}
._18_c01211{width:8.512000pt;}
._9_c01211{width:9.625600pt;}
._7_c01211{width:10.777600pt;}
._1_c01211{width:12.076800pt;}
._3_c01211{width:13.414400pt;}
._12_c01211{width:14.444800pt;}
._10_c01211{width:15.513600pt;}
._1c_c01211{width:18.120267pt;}
._14_c01211{width:19.686400pt;}
._13_c01211{width:21.132800pt;}
._e_c01211{width:22.425600pt;}
._f_c01211{width:23.680000pt;}
._16_c01211{width:25.280000pt;}
._19_c01211{width:26.649600pt;}
._17_c01211{width:27.980800pt;}
._1a_c01211{width:29.107200pt;}
._1b_c01211{width:31.238400pt;}
.fs3_c01211{font-size:35.555557pt;}
.fs1_c01211{font-size:42.666667pt;}
.fs2_c01211{font-size:53.333333pt;}
.fs0_c01211{font-size:64.000000pt;}
.y0_c01211{bottom:0.000000pt;}
.y1b_c01211{bottom:60.000000pt;}
.y21_c01211{bottom:124.666667pt;}
.y20_c01211{bottom:168.666667pt;}
.y1f_c01211{bottom:212.666667pt;}
.y1e_c01211{bottom:256.666667pt;}
.y1d_c01211{bottom:293.333333pt;}
.y1c_c01211{bottom:318.000000pt;}
.y19_c01211{bottom:360.000000pt;}
.y18_c01211{bottom:384.000000pt;}
.y17_c01211{bottom:408.000000pt;}
.y16_c01211{bottom:432.000000pt;}
.y15_c01211{bottom:456.000000pt;}
.y14_c01211{bottom:498.666667pt;}
.y13_c01211{bottom:522.666667pt;}
.y12_c01211{bottom:546.666667pt;}
.y11_c01211{bottom:570.666667pt;}
.y10_c01211{bottom:594.666667pt;}
.yf_c01211{bottom:618.666667pt;}
.ye_c01211{bottom:642.666667pt;}
.yd_c01211{bottom:666.666667pt;}
.yc_c01211{bottom:690.666667pt;}
.yb_c01211{bottom:714.666667pt;}
.ya_c01211{bottom:738.666667pt;}
.y9_c01211{bottom:762.666667pt;}
.y8_c01211{bottom:805.333333pt;}
.y7_c01211{bottom:829.333333pt;}
.y6_c01211{bottom:853.333333pt;}
.y5_c01211{bottom:877.333333pt;}
.y4_c01211{bottom:901.333333pt;}
.y3_c01211{bottom:925.333333pt;}
.y2_c01211{bottom:949.333333pt;}
.y1_c01211{bottom:973.333333pt;}
.y1a_c01211{bottom:1061.333333pt;}
.h5_c01211{height:31.892363pt;}
.h4_c01211{height:39.296875pt;}
.h6_c01211{height:47.838542pt;}
.h3_c01211{height:49.843750pt;}
.h1_c01211{height:60.218750pt;}
.h2_c01211{height:60.666900pt;}
.h0_c01211{height:1122.666667pt;}
.w0_c01211{width:793.333333pt;}
.x0_c01211{left:0.000000pt;}
.x1_c01211{left:44.220467pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d3a9d26be892939898823c71.woff2')format("woff");}.ff1_c01212{font-family:ff1_c01212;line-height:1.163086;font-style:normal;font-weight:normal;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_f4a0b0de10a1da01beebef66.woff2')format("woff");}.ff2_c01212{font-family:ff2_c01212;line-height:1.155762;font-style:normal;font-weight:normal;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_7ff852cd4065e018073043c4.woff2')format("woff");}.ff3_c01212{font-family:ff3_c01212;line-height:1.115723;font-style:normal;font-weight:normal;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_006810004021312e94661d5d.woff2')format("woff");}.ff4_c01212{font-family:ff4_c01212;line-height:0.701172;font-style: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);}
.v3_c01212{vertical-align:-33.000000px;}
.v2_c01212{vertical-align:-23.086200px;}
.v0_c01212{vertical-align:0.000000px;}
.v1_c01212{vertical-align:23.086200px;}
.ls2_c01212{letter-spacing:-0.009600px;}
.ls3_c01212{letter-spacing:0.000000px;}
.ls1_c01212{letter-spacing:0.012000px;}
.ls0_c01212{letter-spacing:0.021600px;}
.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;}
}
.ws0_c01212{word-spacing:-19.821600px;}
.ws3_c01212{word-spacing:-15.000000px;}
.ws1_c01212{word-spacing:-13.190400px;}
.ws2_c01212{word-spacing:-10.000001px;}
.ws4_c01212{word-spacing:0.000000px;}
._c_c01212{margin-left:-10.459560px;}
._14_c01212{margin-left:-6.897600px;}
._2_c01212{margin-left:-4.087200px;}
._0_c01212{margin-left:-2.592000px;}
._b_c01212{margin-left:-1.449420px;}
._7_c01212{width:1.411200px;}
._1_c01212{width:2.868180px;}
._9_c01212{width:4.464000px;}
._a_c01212{width:6.278400px;}
._5_c01212{width:7.874220px;}
._8_c01212{width:9.367200px;}
._4_c01212{width:10.728000px;}
._f_c01212{width:12.213420px;}
._6_c01212{width:13.370400px;}
._3_c01212{width:15.386400px;}
._d_c01212{width:17.137320px;}
._13_c01212{width:18.641700px;}
._e_c01212{width:22.022400px;}
._11_c01212{width:23.352000px;}
._15_c01212{width:25.718400px;}
._10_c01212{width:26.778840px;}
._12_c01212{width:28.114680px;}
.fc0_c01212{color:rgb(0,0,0);}
.fs3_c01212{font-size:40.000002px;}
.fs1_c01212{font-size:48.000000px;}
.fs2_c01212{font-size:60.000000px;}
.fs0_c01212{font-size:72.000000px;}
.y0_c01212{bottom:0.000000px;}
.y17_c01212{bottom:67.500000px;}
.y1c_c01212{bottom:140.250000px;}
.y1b_c01212{bottom:189.750000px;}
.y1a_c01212{bottom:231.000000px;}
.y19_c01212{bottom:258.750000px;}
.y18_c01212{bottom:308.250000px;}
.y15_c01212{bottom:492.000000px;}
.y14_c01212{bottom:519.000000px;}
.y13_c01212{bottom:567.000000px;}
.y12_c01212{bottom:594.000000px;}
.y11_c01212{bottom:621.000000px;}
.y10_c01212{bottom:648.000000px;}
.yf_c01212{bottom:696.000000px;}
.ye_c01212{bottom:723.000000px;}
.yd_c01212{bottom:750.000000px;}
.yc_c01212{bottom:777.000000px;}
.yb_c01212{bottom:804.000000px;}
.ya_c01212{bottom:831.000000px;}
.y9_c01212{bottom:858.000000px;}
.y8_c01212{bottom:885.000000px;}
.y7_c01212{bottom:912.000000px;}
.y6_c01212{bottom:960.000000px;}
.y5_c01212{bottom:987.000000px;}
.y4_c01212{bottom:1014.000000px;}
.y3_c01212{bottom:1041.000000px;}
.y2_c01212{bottom:1068.000000px;}
.y1_c01212{bottom:1095.000000px;}
.y16_c01212{bottom:1194.000000px;}
.h4_c01212{height:35.878908px;}
.h5_c01212{height:53.818359px;}
.h3_c01212{height:56.074219px;}
.h2_c01212{height:67.746094px;}
.h1_c01212{height:68.250262px;}
.h0_c01212{height:1263.000000px;}
.w0_c01212{width:892.500000px;}
.x0_c01212{left:0.000000px;}
.x1_c01212{left:134.787405px;}
.x2_c01212{left:432.515100px;}
.x3_c01212{left:817.725150px;}
@media print{
.v3_c01212{vertical-align:-29.333333pt;}
.v2_c01212{vertical-align:-20.521067pt;}
.v0_c01212{vertical-align:0.000000pt;}
.v1_c01212{vertical-align:20.521067pt;}
.ls2_c01212{letter-spacing:-0.008533pt;}
.ls3_c01212{letter-spacing:0.000000pt;}
.ls1_c01212{letter-spacing:0.010667pt;}
.ls0_c01212{letter-spacing:0.019200pt;}
.ws0_c01212{word-spacing:-17.619200pt;}
.ws3_c01212{word-spacing:-13.333333pt;}
.ws1_c01212{word-spacing:-11.724800pt;}
.ws2_c01212{word-spacing:-8.888889pt;}
.ws4_c01212{word-spacing:0.000000pt;}
._c_c01212{margin-left:-9.297387pt;}
._14_c01212{margin-left:-6.131200pt;}
._2_c01212{margin-left:-3.633067pt;}
._0_c01212{margin-left:-2.304000pt;}
._b_c01212{margin-left:-1.288373pt;}
._7_c01212{width:1.254400pt;}
._1_c01212{width:2.549493pt;}
._9_c01212{width:3.968000pt;}
._a_c01212{width:5.580800pt;}
._5_c01212{width:6.999307pt;}
._8_c01212{width:8.326400pt;}
._4_c01212{width:9.536000pt;}
._f_c01212{width:10.856373pt;}
._6_c01212{width:11.884800pt;}
._3_c01212{width:13.676800pt;}
._d_c01212{width:15.233173pt;}
._13_c01212{width:16.570400pt;}
._e_c01212{width:19.575467pt;}
._11_c01212{width:20.757333pt;}
._15_c01212{width:22.860800pt;}
._10_c01212{width:23.803413pt;}
._12_c01212{width:24.990827pt;}
.fs3_c01212{font-size:35.555557pt;}
.fs1_c01212{font-size:42.666667pt;}
.fs2_c01212{font-size:53.333333pt;}
.fs0_c01212{font-size:64.000000pt;}
.y0_c01212{bottom:0.000000pt;}
.y17_c01212{bottom:60.000000pt;}
.y1c_c01212{bottom:124.666667pt;}
.y1b_c01212{bottom:168.666667pt;}
.y1a_c01212{bottom:205.333333pt;}
.y19_c01212{bottom:230.000000pt;}
.y18_c01212{bottom:274.000000pt;}
.y15_c01212{bottom:437.333333pt;}
.y14_c01212{bottom:461.333333pt;}
.y13_c01212{bottom:504.000000pt;}
.y12_c01212{bottom:528.000000pt;}
.y11_c01212{bottom:552.000000pt;}
.y10_c01212{bottom:576.000000pt;}
.yf_c01212{bottom:618.666667pt;}
.ye_c01212{bottom:642.666667pt;}
.yd_c01212{bottom:666.666667pt;}
.yc_c01212{bottom:690.666667pt;}
.yb_c01212{bottom:714.666667pt;}
.ya_c01212{bottom:738.666667pt;}
.y9_c01212{bottom:762.666667pt;}
.y8_c01212{bottom:786.666667pt;}
.y7_c01212{bottom:810.666667pt;}
.y6_c01212{bottom:853.333333pt;}
.y5_c01212{bottom:877.333333pt;}
.y4_c01212{bottom:901.333333pt;}
.y3_c01212{bottom:925.333333pt;}
.y2_c01212{bottom:949.333333pt;}
.y1_c01212{bottom:973.333333pt;}
.y16_c01212{bottom:1061.333333pt;}
.h4_c01212{height:31.892363pt;}
.h5_c01212{height:47.838542pt;}
.h3_c01212{height:49.843750pt;}
.h2_c01212{height:60.218750pt;}
.h1_c01212{height:60.666900pt;}
.h0_c01212{height:1122.666667pt;}
.w0_c01212{width:793.333333pt;}
.x0_c01212{left:0.000000pt;}
.x1_c01212{left:119.811027pt;}
.x2_c01212{left:384.457867pt;}
.x3_c01212{left:726.866800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_592ec72208d9830274753def.woff2')format("woff");}.ff1_c01213{font-family:ff1_c01213;line-height:0.939453;font-style:normal;font-weight:normal;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_68080a87d7a145c3c6c92e84.woff2')format("woff");}.ff2_c01213{font-family:ff2_c01213;line-height:0.934082;font-style:normal;font-weight:normal;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_eaad6ac8ff16c36accbac3fe.woff2')format("woff");}.ff3_c01213{font-family:ff3_c01213;line-height:0.975586;font-style:normal;font-weight:normal;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_5babf88bc9149fc59debc92f.woff2')format("woff");}.ff4_c01213{font-family:ff4_c01213;line-height:0.755859;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01213;src:url('chunks/assets/font_ddfd9e7d7c15e069f9780915.woff2')format("woff");}.ff5_c01213{font-family:ff5_c01213;line-height:1.155762;font-style: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;}
.ls1_c01213{letter-spacing:0.000000px;}
.ls0_c01213{letter-spacing:0.007800px;}
.ls2_c01213{letter-spacing:0.012000px;}
.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;}
}
.ws0_c01213{word-spacing:0.000000px;}
._11_c01213{margin-left:-4.989600px;}
._1_c01213{margin-left:-3.794400px;}
._4_c01213{margin-left:-2.419200px;}
._6_c01213{margin-left:-1.065600px;}
._3_c01213{width:1.850400px;}
._0_c01213{width:3.175200px;}
._5_c01213{width:4.658400px;}
._7_c01213{width:5.882400px;}
._2_c01213{width:6.933600px;}
._c_c01213{width:8.359200px;}
._8_c01213{width:9.460800px;}
._d_c01213{width:10.584000px;}
._9_c01213{width:11.700000px;}
._b_c01213{width:13.176000px;}
._a_c01213{width:15.292800px;}
._e_c01213{width:16.855200px;}
._10_c01213{width:18.223200px;}
._f_c01213{width:21.852000px;}
._12_c01213{width:24.040800px;}
.fc0_c01213{color:rgb(0,0,0);}
.fs2_c01213{font-size:54.000000px;}
.fs3_c01213{font-size:60.000000px;}
.fs1_c01213{font-size:72.000000px;}
.fs0_c01213{font-size:78.000000px;}
.y0_c01213{bottom:0.000000px;}
.ye_c01213{bottom:12.000000px;}
.y14_c01213{bottom:67.500000px;}
.y12_c01213{bottom:151.500000px;}
.y11_c01213{bottom:178.500000px;}
.y10_c01213{bottom:205.500000px;}
.yf_c01213{bottom:232.500000px;}
.yd_c01213{bottom:277.500000px;}
.yc_c01213{bottom:756.000000px;}
.yb_c01213{bottom:783.000000px;}
.ya_c01213{bottom:810.000000px;}
.y9_c01213{bottom:837.000000px;}
.y8_c01213{bottom:885.000000px;}
.y7_c01213{bottom:912.000000px;}
.y6_c01213{bottom:939.000000px;}
.y5_c01213{bottom:966.000000px;}
.y4_c01213{bottom:993.000000px;}
.y3_c01213{bottom:1020.000000px;}
.y2_c01213{bottom:1047.000000px;}
.y1_c01213{bottom:1093.500000px;}
.y13_c01213{bottom:1194.000000px;}
.h4_c01213{height:41.633789px;}
.h6_c01213{height:44.208984px;}
.h2_c01213{height:51.257812px;}
.h5_c01213{height:56.074219px;}
.h1_c01213{height:56.100586px;}
.h3_c01213{height:447.000000px;}
.h0_c01213{height:1263.000000px;}
.w1_c01213{width:684.449850px;}
.w0_c01213{width:892.500000px;}
.x0_c01213{left:0.000000px;}
.x1_c01213{left:49.748025px;}
.x2_c01213{left:61.500000px;}
.x3_c01213{left:255.882300px;}
@media print{
.v0_c01213{vertical-align:0.000000pt;}
.ls1_c01213{letter-spacing:0.000000pt;}
.ls0_c01213{letter-spacing:0.006933pt;}
.ls2_c01213{letter-spacing:0.010667pt;}
.ws0_c01213{word-spacing:0.000000pt;}
._11_c01213{margin-left:-4.435200pt;}
._1_c01213{margin-left:-3.372800pt;}
._4_c01213{margin-left:-2.150400pt;}
._6_c01213{margin-left:-0.947200pt;}
._3_c01213{width:1.644800pt;}
._0_c01213{width:2.822400pt;}
._5_c01213{width:4.140800pt;}
._7_c01213{width:5.228800pt;}
._2_c01213{width:6.163200pt;}
._c_c01213{width:7.430400pt;}
._8_c01213{width:8.409600pt;}
._d_c01213{width:9.408000pt;}
._9_c01213{width:10.400000pt;}
._b_c01213{width:11.712000pt;}
._a_c01213{width:13.593600pt;}
._e_c01213{width:14.982400pt;}
._10_c01213{width:16.198400pt;}
._f_c01213{width:19.424000pt;}
._12_c01213{width:21.369600pt;}
.fs2_c01213{font-size:48.000000pt;}
.fs3_c01213{font-size:53.333333pt;}
.fs1_c01213{font-size:64.000000pt;}
.fs0_c01213{font-size:69.333333pt;}
.y0_c01213{bottom:0.000000pt;}
.ye_c01213{bottom:10.666667pt;}
.y14_c01213{bottom:60.000000pt;}
.y12_c01213{bottom:134.666667pt;}
.y11_c01213{bottom:158.666667pt;}
.y10_c01213{bottom:182.666667pt;}
.yf_c01213{bottom:206.666667pt;}
.yd_c01213{bottom:246.666667pt;}
.yc_c01213{bottom:672.000000pt;}
.yb_c01213{bottom:696.000000pt;}
.ya_c01213{bottom:720.000000pt;}
.y9_c01213{bottom:744.000000pt;}
.y8_c01213{bottom:786.666667pt;}
.y7_c01213{bottom:810.666667pt;}
.y6_c01213{bottom:834.666667pt;}
.y5_c01213{bottom:858.666667pt;}
.y4_c01213{bottom:882.666667pt;}
.y3_c01213{bottom:906.666667pt;}
.y2_c01213{bottom:930.666667pt;}
.y1_c01213{bottom:972.000000pt;}
.y13_c01213{bottom:1061.333333pt;}
.h4_c01213{height:37.007812pt;}
.h6_c01213{height:39.296875pt;}
.h2_c01213{height:45.562500pt;}
.h5_c01213{height:49.843750pt;}
.h1_c01213{height:49.867188pt;}
.h3_c01213{height:397.333333pt;}
.h0_c01213{height:1122.666667pt;}
.w1_c01213{width:608.399867pt;}
.w0_c01213{width:793.333333pt;}
.x0_c01213{left:0.000000pt;}
.x1_c01213{left:44.220467pt;}
.x2_c01213{left:54.666667pt;}
.x3_c01213{left:227.450933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_38ef96aadab4ff20fa14ecc8.woff2')format("woff");}.ff1_c01214{font-family:ff1_c01214;line-height:0.987793;font-style:normal;font-weight:normal;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_91896fae7048bc7abc163acc.woff2')format("woff");}.ff2_c01214{font-family:ff2_c01214;line-height:0.934082;font-style:normal;font-weight:normal;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_aeb33d2f29c58d19340ea7d7.woff2')format("woff");}.ff3_c01214{font-family:ff3_c01214;line-height:1.155762;font-style:normal;font-weight:normal;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_1f3780f3324dc57614417e00.woff2')format("woff");}.ff4_c01214{font-family:ff4_c01214;line-height:0.901367;font-style:normal;font-weight:normal;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_f3f3ab6616f31aa8e6799301.woff2')format("woff");}.ff5_c01214{font-family:ff5_c01214;line-height:0.890137;font-style: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);}
.v2_c01214{vertical-align:-33.000000px;}
.v0_c01214{vertical-align:0.000000px;}
.v1_c01214{vertical-align:23.086200px;}
.ls4_c01214{letter-spacing:-0.009600px;}
.ls5_c01214{letter-spacing:-0.007200px;}
.ls3_c01214{letter-spacing:0.000000px;}
.ls2_c01214{letter-spacing:0.012000px;}
.ls0_c01214{letter-spacing:0.016200px;}
.ls1_c01214{letter-spacing:1.058400px;}
.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;}
}
.ws0_c01214{word-spacing:-13.190400px;}
.ws1_c01214{word-spacing:-10.000001px;}
.ws2_c01214{word-spacing:0.000000px;}
._14_c01214{margin-left:-10.512000px;}
._18_c01214{margin-left:-7.012842px;}
._d_c01214{margin-left:-5.875200px;}
._5_c01214{margin-left:-3.967200px;}
._6_c01214{margin-left:-2.253600px;}
._a_c01214{margin-left:-1.188000px;}
._8_c01214{width:1.612800px;}
._0_c01214{width:2.995200px;}
._b_c01214{width:4.068000px;}
._3_c01214{width:5.162400px;}
._e_c01214{width:6.292800px;}
._c_c01214{width:7.704000px;}
._15_c01214{width:9.345600px;}
._4_c01214{width:10.677600px;}
._16_c01214{width:11.772000px;}
._1_c01214{width:12.837600px;}
._9_c01214{width:14.342400px;}
._2_c01214{width:15.840000px;}
._17_c01214{width:17.121600px;}
._7_c01214{width:18.172800px;}
._12_c01214{width:31.276800px;}
._f_c01214{width:32.803200px;}
._13_c01214{width:34.416000px;}
._11_c01214{width:36.669600px;}
._10_c01214{width:38.383200px;}
.fc0_c01214{color:rgb(0,0,0);}
.fs4_c01214{font-size:40.000002px;}
.fs2_c01214{font-size:48.000000px;}
.fs0_c01214{font-size:54.000000px;}
.fs3_c01214{font-size:60.000000px;}
.fs1_c01214{font-size:72.000000px;}
.y0_c01214{bottom:0.000000px;}
.y3_c01214{bottom:10.500000px;}
.y2_c01214{bottom:28.500000px;}
.y16_c01214{bottom:67.500000px;}
.y17_c01214{bottom:140.250000px;}
.y14_c01214{bottom:261.000000px;}
.y13_c01214{bottom:288.000000px;}
.y12_c01214{bottom:315.000000px;}
.y11_c01214{bottom:342.000000px;}
.y10_c01214{bottom:369.000000px;}
.yf_c01214{bottom:396.000000px;}
.ye_c01214{bottom:423.000000px;}
.yd_c01214{bottom:471.000000px;}
.yc_c01214{bottom:498.000000px;}
.yb_c01214{bottom:525.000000px;}
.ya_c01214{bottom:552.000000px;}
.y9_c01214{bottom:579.000000px;}
.y8_c01214{bottom:606.000000px;}
.y7_c01214{bottom:633.000000px;}
.y6_c01214{bottom:660.000000px;}
.y5_c01214{bottom:708.000000px;}
.y4_c01214{bottom:735.000000px;}
.y1_c01214{bottom:780.000000px;}
.y15_c01214{bottom:1194.000000px;}
.h6_c01214{height:27.343751px;}
.h2_c01214{height:42.292969px;}
.h3_c01214{height:51.257812px;}
.h5_c01214{height:56.074219px;}
.h4_c01214{height:57.258075px;}
.h1_c01214{height:333.000000px;}
.h0_c01214{height:1263.000000px;}
.w1_c01214{width:684.449850px;}
.w0_c01214{width:892.500000px;}
.x0_c01214{left:0.000000px;}
.x2_c01214{left:29.559540px;}
.x4_c01214{left:134.787405px;}
.x1_c01214{left:147.000000px;}
.x3_c01214{left:273.973500px;}
.x5_c01214{left:432.515100px;}
.x6_c01214{left:817.725150px;}
@media print{
.v2_c01214{vertical-align:-29.333333pt;}
.v0_c01214{vertical-align:0.000000pt;}
.v1_c01214{vertical-align:20.521067pt;}
.ls4_c01214{letter-spacing:-0.008533pt;}
.ls5_c01214{letter-spacing:-0.006400pt;}
.ls3_c01214{letter-spacing:0.000000pt;}
.ls2_c01214{letter-spacing:0.010667pt;}
.ls0_c01214{letter-spacing:0.014400pt;}
.ls1_c01214{letter-spacing:0.940800pt;}
.ws0_c01214{word-spacing:-11.724800pt;}
.ws1_c01214{word-spacing:-8.888889pt;}
.ws2_c01214{word-spacing:0.000000pt;}
._14_c01214{margin-left:-9.344000pt;}
._18_c01214{margin-left:-6.233637pt;}
._d_c01214{margin-left:-5.222400pt;}
._5_c01214{margin-left:-3.526400pt;}
._6_c01214{margin-left:-2.003200pt;}
._a_c01214{margin-left:-1.056000pt;}
._8_c01214{width:1.433600pt;}
._0_c01214{width:2.662400pt;}
._b_c01214{width:3.616000pt;}
._3_c01214{width:4.588800pt;}
._e_c01214{width:5.593600pt;}
._c_c01214{width:6.848000pt;}
._15_c01214{width:8.307200pt;}
._4_c01214{width:9.491200pt;}
._16_c01214{width:10.464000pt;}
._1_c01214{width:11.411200pt;}
._9_c01214{width:12.748800pt;}
._2_c01214{width:14.080000pt;}
._17_c01214{width:15.219200pt;}
._7_c01214{width:16.153600pt;}
._12_c01214{width:27.801600pt;}
._f_c01214{width:29.158400pt;}
._13_c01214{width:30.592000pt;}
._11_c01214{width:32.595200pt;}
._10_c01214{width:34.118400pt;}
.fs4_c01214{font-size:35.555557pt;}
.fs2_c01214{font-size:42.666667pt;}
.fs0_c01214{font-size:48.000000pt;}
.fs3_c01214{font-size:53.333333pt;}
.fs1_c01214{font-size:64.000000pt;}
.y0_c01214{bottom:0.000000pt;}
.y3_c01214{bottom:9.333333pt;}
.y2_c01214{bottom:25.333333pt;}
.y16_c01214{bottom:60.000000pt;}
.y17_c01214{bottom:124.666667pt;}
.y14_c01214{bottom:232.000000pt;}
.y13_c01214{bottom:256.000000pt;}
.y12_c01214{bottom:280.000000pt;}
.y11_c01214{bottom:304.000000pt;}
.y10_c01214{bottom:328.000000pt;}
.yf_c01214{bottom:352.000000pt;}
.ye_c01214{bottom:376.000000pt;}
.yd_c01214{bottom:418.666667pt;}
.yc_c01214{bottom:442.666667pt;}
.yb_c01214{bottom:466.666667pt;}
.ya_c01214{bottom:490.666667pt;}
.y9_c01214{bottom:514.666667pt;}
.y8_c01214{bottom:538.666667pt;}
.y7_c01214{bottom:562.666667pt;}
.y6_c01214{bottom:586.666667pt;}
.y5_c01214{bottom:629.333333pt;}
.y4_c01214{bottom:653.333333pt;}
.y1_c01214{bottom:693.333333pt;}
.y15_c01214{bottom:1061.333333pt;}
.h6_c01214{height:24.305557pt;}
.h2_c01214{height:37.593750pt;}
.h3_c01214{height:45.562500pt;}
.h5_c01214{height:49.843750pt;}
.h4_c01214{height:50.896067pt;}
.h1_c01214{height:296.000000pt;}
.h0_c01214{height:1122.666667pt;}
.w1_c01214{width:608.399867pt;}
.w0_c01214{width:793.333333pt;}
.x0_c01214{left:0.000000pt;}
.x2_c01214{left:26.275147pt;}
.x4_c01214{left:119.811027pt;}
.x1_c01214{left:130.666667pt;}
.x3_c01214{left:243.532000pt;}
.x5_c01214{left:384.457867pt;}
.x6_c01214{left:726.866800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d8d003155a4daa36e82d1428.woff2')format("woff");}.ff1_c01215{font-family:ff1_c01215;line-height:0.934082;font-style:normal;font-weight:normal;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_d17843cbf76f08ee1d456d7d.woff2')format("woff");}.ff2_c01215{font-family:ff2_c01215;line-height:0.963867;font-style:normal;font-weight:normal;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_6d581de8ea7053a0fa4210b9.woff2')format("woff");}.ff3_c01215{font-family:ff3_c01215;line-height:0.755859;font-style:normal;font-weight:normal;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_f4bcf5bedcbe24f83767302b.woff2')format("woff");}.ff4_c01215{font-family:ff4_c01215;line-height:1.155762;font-style:normal;font-weight:normal;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_bf3239e1f69d6d2dc740b12b.woff2')format("woff");}.ff5_c01215{font-family:ff5_c01215;line-height:0.904785;font-style:normal;font-weight: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_c01215;src:url('chunks/assets/font_6cdd6f53b1d3c7094d93b6ca.woff2')format("woff");}.ff6_c01215{font-family:ff6_c01215;line-height:0.891113;font-style: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);}
.v3_c01215{vertical-align:-33.000000px;}
.v2_c01215{vertical-align:-23.086200px;}
.v0_c01215{vertical-align:0.000000px;}
.v1_c01215{vertical-align:23.086200px;}
.ls2_c01215{letter-spacing:-0.014400px;}
.ls1_c01215{letter-spacing:-0.009600px;}
.ls0_c01215{letter-spacing:0.000000px;}
.ls3_c01215{letter-spacing:0.012000px;}
.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;}
}
.ws0_c01215{word-spacing:-13.190400px;}
.ws1_c01215{word-spacing:-10.000001px;}
.ws2_c01215{word-spacing:0.000000px;}
._11_c01215{margin-left:-10.584000px;}
._12_c01215{margin-left:-7.810302px;}
._9_c01215{margin-left:-5.450400px;}
._e_c01215{margin-left:-4.364700px;}
._8_c01215{margin-left:-2.390400px;}
._2_c01215{margin-left:-1.209600px;}
._4_c01215{width:1.368000px;}
._0_c01215{width:2.649600px;}
._1_c01215{width:3.895200px;}
._5_c01215{width:5.148000px;}
._6_c01215{width:6.559200px;}
._3_c01215{width:7.704000px;}
._10_c01215{width:9.843900px;}
._f_c01215{width:11.844000px;}
._c_c01215{width:12.916800px;}
._b_c01215{width:15.069600px;}
._d_c01215{width:16.466400px;}
._7_c01215{width:17.661600px;}
._a_c01215{width:21.009600px;}
.fc0_c01215{color:rgb(0,0,0);}
.fs4_c01215{font-size:40.000002px;}
.fs1_c01215{font-size:48.000000px;}
.fs2_c01215{font-size:54.000000px;}
.fs3_c01215{font-size:60.000000px;}
.fs0_c01215{font-size:72.000000px;}
.y0_c01215{bottom:0.000000px;}
.y5_c01215{bottom:12.000000px;}
.y11_c01215{bottom:67.500000px;}
.y15_c01215{bottom:140.250000px;}
.y14_c01215{bottom:189.750000px;}
.y13_c01215{bottom:231.000000px;}
.y12_c01215{bottom:258.750000px;}
.yf_c01215{bottom:304.500000px;}
.ye_c01215{bottom:331.500000px;}
.yd_c01215{bottom:358.500000px;}
.yc_c01215{bottom:385.500000px;}
.yb_c01215{bottom:412.500000px;}
.ya_c01215{bottom:439.500000px;}
.y9_c01215{bottom:466.500000px;}
.y8_c01215{bottom:493.500000px;}
.y7_c01215{bottom:520.500000px;}
.y6_c01215{bottom:547.500000px;}
.y4_c01215{bottom:592.500000px;}
.y3_c01215{bottom:1041.000000px;}
.y2_c01215{bottom:1068.000000px;}
.y1_c01215{bottom:1095.000000px;}
.y10_c01215{bottom:1194.000000px;}
.h7_c01215{height:27.480470px;}
.h8_c01215{height:41.220703px;}
.h4_c01215{height:41.633789px;}
.h6_c01215{height:44.208984px;}
.h2_c01215{height:51.257812px;}
.h5_c01215{height:56.074219px;}
.h1_c01215{height:57.258075px;}
.h3_c01215{height:417.000000px;}
.h0_c01215{height:1263.000000px;}
.w1_c01215{width:684.449850px;}
.w0_c01215{width:892.500000px;}
.x0_c01215{left:0.000000px;}
.x1_c01215{left:49.748025px;}
.x2_c01215{left:61.500000px;}
.x3_c01215{left:197.818500px;}
@media print{
.v3_c01215{vertical-align:-29.333333pt;}
.v2_c01215{vertical-align:-20.521067pt;}
.v0_c01215{vertical-align:0.000000pt;}
.v1_c01215{vertical-align:20.521067pt;}
.ls2_c01215{letter-spacing:-0.012800pt;}
.ls1_c01215{letter-spacing:-0.008533pt;}
.ls0_c01215{letter-spacing:0.000000pt;}
.ls3_c01215{letter-spacing:0.010667pt;}
.ws0_c01215{word-spacing:-11.724800pt;}
.ws1_c01215{word-spacing:-8.888889pt;}
.ws2_c01215{word-spacing:0.000000pt;}
._11_c01215{margin-left:-9.408000pt;}
._12_c01215{margin-left:-6.942491pt;}
._9_c01215{margin-left:-4.844800pt;}
._e_c01215{margin-left:-3.879733pt;}
._8_c01215{margin-left:-2.124800pt;}
._2_c01215{margin-left:-1.075200pt;}
._4_c01215{width:1.216000pt;}
._0_c01215{width:2.355200pt;}
._1_c01215{width:3.462400pt;}
._5_c01215{width:4.576000pt;}
._6_c01215{width:5.830400pt;}
._3_c01215{width:6.848000pt;}
._10_c01215{width:8.750133pt;}
._f_c01215{width:10.528000pt;}
._c_c01215{width:11.481600pt;}
._b_c01215{width:13.395200pt;}
._d_c01215{width:14.636800pt;}
._7_c01215{width:15.699200pt;}
._a_c01215{width:18.675200pt;}
.fs4_c01215{font-size:35.555557pt;}
.fs1_c01215{font-size:42.666667pt;}
.fs2_c01215{font-size:48.000000pt;}
.fs3_c01215{font-size:53.333333pt;}
.fs0_c01215{font-size:64.000000pt;}
.y0_c01215{bottom:0.000000pt;}
.y5_c01215{bottom:10.666667pt;}
.y11_c01215{bottom:60.000000pt;}
.y15_c01215{bottom:124.666667pt;}
.y14_c01215{bottom:168.666667pt;}
.y13_c01215{bottom:205.333333pt;}
.y12_c01215{bottom:230.000000pt;}
.yf_c01215{bottom:270.666667pt;}
.ye_c01215{bottom:294.666667pt;}
.yd_c01215{bottom:318.666667pt;}
.yc_c01215{bottom:342.666667pt;}
.yb_c01215{bottom:366.666667pt;}
.ya_c01215{bottom:390.666667pt;}
.y9_c01215{bottom:414.666667pt;}
.y8_c01215{bottom:438.666667pt;}
.y7_c01215{bottom:462.666667pt;}
.y6_c01215{bottom:486.666667pt;}
.y4_c01215{bottom:526.666667pt;}
.y3_c01215{bottom:925.333333pt;}
.y2_c01215{bottom:949.333333pt;}
.y1_c01215{bottom:973.333333pt;}
.y10_c01215{bottom:1061.333333pt;}
.h7_c01215{height:24.427085pt;}
.h8_c01215{height:36.640625pt;}
.h4_c01215{height:37.007812pt;}
.h6_c01215{height:39.296875pt;}
.h2_c01215{height:45.562500pt;}
.h5_c01215{height:49.843750pt;}
.h1_c01215{height:50.896067pt;}
.h3_c01215{height:370.666667pt;}
.h0_c01215{height:1122.666667pt;}
.w1_c01215{width:608.399867pt;}
.w0_c01215{width:793.333333pt;}
.x0_c01215{left:0.000000pt;}
.x1_c01215{left:44.220467pt;}
.x2_c01215{left:54.666667pt;}
.x3_c01215{left:175.838667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9f6ecc9a2dd5d52e204f8c9b.woff2')format("woff");}.ff1_c01216{font-family:ff1_c01216;line-height:0.934082;font-style:normal;font-weight:normal;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_c8861831879cdc7558097a7f.woff2')format("woff");}.ff2_c01216{font-family:ff2_c01216;line-height:0.975586;font-style:normal;font-weight:normal;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_7525f46d3ef7efecd15bebb0.woff2')format("woff");}.ff3_c01216{font-family:ff3_c01216;line-height:1.155762;font-style:normal;font-weight:normal;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_87b118caf9056ee148803107.woff2')format("woff");}.ff4_c01216{font-family:ff4_c01216;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01216;src:url('chunks/assets/font_27475878d2949bd4fcd2e849.woff2')format("woff");}.ff5_c01216{font-family:ff5_c01216;line-height:0.812500;font-style: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);}
.m1_c01216{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3_c01216{vertical-align:-33.000000px;}
.v2_c01216{vertical-align:-23.086200px;}
.v0_c01216{vertical-align:0.000000px;}
.v1_c01216{vertical-align:23.086200px;}
.ls2_c01216{letter-spacing:-0.009600px;}
.ls3_c01216{letter-spacing:-0.007200px;}
.ls1_c01216{letter-spacing:0.000000px;}
.ls0_c01216{letter-spacing:0.012000px;}
.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:-19.800000px;}
.ws0_c01216{word-spacing:-13.190400px;}
.ws2_c01216{word-spacing:-10.000001px;}
.ws3_c01216{word-spacing:0.000000px;}
._c_c01216{margin-left:-9.770400px;}
._0_c01216{margin-left:-3.981600px;}
._4_c01216{margin-left:-2.412000px;}
._5_c01216{margin-left:-1.339200px;}
._2_c01216{width:1.814400px;}
._3_c01216{width:3.376800px;}
._1_c01216{width:4.888800px;}
._10_c01216{width:6.580800px;}
._e_c01216{width:8.208000px;}
._d_c01216{width:9.244800px;}
._f_c01216{width:11.613600px;}
._11_c01216{width:17.791200px;}
._a_c01216{width:21.564000px;}
._b_c01216{width:23.356800px;}
._8_c01216{width:24.602400px;}
._6_c01216{width:26.114400px;}
._9_c01216{width:28.022400px;}
._7_c01216{width:30.398400px;}
.fc0_c01216{color:rgb(0,0,0);}
.fs4_c01216{font-size:40.000002px;}
.fs1_c01216{font-size:48.000000px;}
.fs2_c01216{font-size:54.000000px;}
.fs3_c01216{font-size:60.000000px;}
.fs0_c01216{font-size:72.000000px;}
.y0_c01216{bottom:0.000000px;}
.yd_c01216{bottom:12.000000px;}
.y14_c01216{bottom:67.500000px;}
.y15_c01216{bottom:140.250000px;}
.y12_c01216{bottom:186.000000px;}
.y11_c01216{bottom:213.000000px;}
.y10_c01216{bottom:240.000000px;}
.yf_c01216{bottom:288.000000px;}
.ye_c01216{bottom:315.000000px;}
.yc_c01216{bottom:360.000000px;}
.yb_c01216{bottom:804.000000px;}
.ya_c01216{bottom:831.000000px;}
.y9_c01216{bottom:858.000000px;}
.y8_c01216{bottom:885.000000px;}
.y7_c01216{bottom:912.000000px;}
.y6_c01216{bottom:939.000000px;}
.y5_c01216{bottom:966.000000px;}
.y4_c01216{bottom:993.000000px;}
.y3_c01216{bottom:1020.000000px;}
.y2_c01216{bottom:1068.000000px;}
.y1_c01216{bottom:1095.000000px;}
.y13_c01216{bottom:1194.000000px;}
.h6_c01216{height:27.031251px;}
.h4_c01216{height:41.633789px;}
.h1_c01216{height:51.257812px;}
.h5_c01216{height:56.074219px;}
.h2_c01216{height:57.258075px;}
.h3_c01216{height:412.500000px;}
.h0_c01216{height:1263.000000px;}
.w1_c01216{width:684.449850px;}
.w0_c01216{width:892.500000px;}
.x0_c01216{left:0.000000px;}
.x1_c01216{left:134.787405px;}
.x2_c01216{left:147.000000px;}
.x3_c01216{left:232.975800px;}
.x4_c01216{left:432.515100px;}
.x5_c01216{left:817.725150px;}
@media print{
.v3_c01216{vertical-align:-29.333333pt;}
.v2_c01216{vertical-align:-20.521067pt;}
.v0_c01216{vertical-align:0.000000pt;}
.v1_c01216{vertical-align:20.521067pt;}
.ls2_c01216{letter-spacing:-0.008533pt;}
.ls3_c01216{letter-spacing:-0.006400pt;}
.ls1_c01216{letter-spacing:0.000000pt;}
.ls0_c01216{letter-spacing:0.010667pt;}
.ws1_c01216{word-spacing:-17.600000pt;}
.ws0_c01216{word-spacing:-11.724800pt;}
.ws2_c01216{word-spacing:-8.888889pt;}
.ws3_c01216{word-spacing:0.000000pt;}
._c_c01216{margin-left:-8.684800pt;}
._0_c01216{margin-left:-3.539200pt;}
._4_c01216{margin-left:-2.144000pt;}
._5_c01216{margin-left:-1.190400pt;}
._2_c01216{width:1.612800pt;}
._3_c01216{width:3.001600pt;}
._1_c01216{width:4.345600pt;}
._10_c01216{width:5.849600pt;}
._e_c01216{width:7.296000pt;}
._d_c01216{width:8.217600pt;}
._f_c01216{width:10.323200pt;}
._11_c01216{width:15.814400pt;}
._a_c01216{width:19.168000pt;}
._b_c01216{width:20.761600pt;}
._8_c01216{width:21.868800pt;}
._6_c01216{width:23.212800pt;}
._9_c01216{width:24.908800pt;}
._7_c01216{width:27.020800pt;}
.fs4_c01216{font-size:35.555557pt;}
.fs1_c01216{font-size:42.666667pt;}
.fs2_c01216{font-size:48.000000pt;}
.fs3_c01216{font-size:53.333333pt;}
.fs0_c01216{font-size:64.000000pt;}
.y0_c01216{bottom:0.000000pt;}
.yd_c01216{bottom:10.666667pt;}
.y14_c01216{bottom:60.000000pt;}
.y15_c01216{bottom:124.666667pt;}
.y12_c01216{bottom:165.333333pt;}
.y11_c01216{bottom:189.333333pt;}
.y10_c01216{bottom:213.333333pt;}
.yf_c01216{bottom:256.000000pt;}
.ye_c01216{bottom:280.000000pt;}
.yc_c01216{bottom:320.000000pt;}
.yb_c01216{bottom:714.666667pt;}
.ya_c01216{bottom:738.666667pt;}
.y9_c01216{bottom:762.666667pt;}
.y8_c01216{bottom:786.666667pt;}
.y7_c01216{bottom:810.666667pt;}
.y6_c01216{bottom:834.666667pt;}
.y5_c01216{bottom:858.666667pt;}
.y4_c01216{bottom:882.666667pt;}
.y3_c01216{bottom:906.666667pt;}
.y2_c01216{bottom:949.333333pt;}
.y1_c01216{bottom:973.333333pt;}
.y13_c01216{bottom:1061.333333pt;}
.h6_c01216{height:24.027779pt;}
.h4_c01216{height:37.007812pt;}
.h1_c01216{height:45.562500pt;}
.h5_c01216{height:49.843750pt;}
.h2_c01216{height:50.896067pt;}
.h3_c01216{height:366.666667pt;}
.h0_c01216{height:1122.666667pt;}
.w1_c01216{width:608.399867pt;}
.w0_c01216{width:793.333333pt;}
.x0_c01216{left:0.000000pt;}
.x1_c01216{left:119.811027pt;}
.x2_c01216{left:130.666667pt;}
.x3_c01216{left:207.089600pt;}
.x4_c01216{left:384.457867pt;}
.x5_c01216{left:726.866800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_03d2dd66079e594e28ada769.woff2')format("woff");}.ff1_c01217{font-family:ff1_c01217;line-height:0.987793;font-style:normal;font-weight:normal;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_5a42c19669335cfdfd759b48.woff2')format("woff");}.ff2_c01217{font-family:ff2_c01217;line-height:1.163086;font-style:normal;font-weight:normal;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_4ad1c91b78f590ea0eb22584.woff2')format("woff");}.ff3_c01217{font-family:ff3_c01217;line-height:0.755859;font-style:normal;font-weight:normal;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_8114810a2dd405d4eda33465.woff2')format("woff");}.ff4_c01217{font-family:ff4_c01217;line-height:1.155762;font-style: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);}
.v0_c01217{vertical-align:0.000000px;}
.ls0_c01217{letter-spacing:0.000000px;}
.ls1_c01217{letter-spacing:0.012000px;}
.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;}
}
.ws0_c01217{word-spacing:0.000000px;}
._12_c01217{margin-left:-7.048800px;}
._a_c01217{margin-left:-4.255200px;}
._14_c01217{margin-left:-3.254400px;}
._4_c01217{margin-left:-2.174400px;}
._0_c01217{margin-left:-1.130400px;}
._5_c01217{width:1.468800px;}
._2_c01217{width:2.944800px;}
._1_c01217{width:4.075200px;}
._3_c01217{width:5.133600px;}
._e_c01217{width:6.336000px;}
._d_c01217{width:7.437600px;}
._11_c01217{width:8.568000px;}
._c_c01217{width:9.597600px;}
._10_c01217{width:11.080800px;}
._b_c01217{width:12.088800px;}
._f_c01217{width:13.140000px;}
._6_c01217{width:14.738400px;}
._8_c01217{width:16.200000px;}
._9_c01217{width:17.308800px;}
._7_c01217{width:18.374400px;}
._13_c01217{width:21.967200px;}
._15_c01217{width:23.666400px;}
.fc0_c01217{color:rgb(0,0,0);}
.fs0_c01217{font-size:54.000000px;}
.fs2_c01217{font-size:60.000000px;}
.fs1_c01217{font-size:72.000000px;}
.y0_c01217{bottom:0.000000px;}
.y2_c01217{bottom:12.000000px;}
.y13_c01217{bottom:67.500000px;}
.y11_c01217{bottom:139.500000px;}
.y10_c01217{bottom:166.500000px;}
.yf_c01217{bottom:193.500000px;}
.ye_c01217{bottom:220.500000px;}
.yd_c01217{bottom:268.500000px;}
.yc_c01217{bottom:295.500000px;}
.yb_c01217{bottom:322.500000px;}
.ya_c01217{bottom:349.500000px;}
.y9_c01217{bottom:376.500000px;}
.y8_c01217{bottom:403.500000px;}
.y7_c01217{bottom:430.500000px;}
.y6_c01217{bottom:457.500000px;}
.y5_c01217{bottom:484.500000px;}
.y4_c01217{bottom:511.500000px;}
.y3_c01217{bottom:538.500000px;}
.y1_c01217{bottom:583.500000px;}
.y12_c01217{bottom:1194.000000px;}
.h2_c01217{height:42.292969px;}
.h5_c01217{height:44.208984px;}
.h4_c01217{height:56.074219px;}
.h3_c01217{height:67.746094px;}
.h1_c01217{height:529.500000px;}
.h0_c01217{height:1263.000000px;}
.w1_c01217{width:684.449850px;}
.w0_c01217{width:892.500000px;}
.x0_c01217{left:0.000000px;}
.x1_c01217{left:49.500000px;}
.x2_c01217{left:126.976410px;}
@media print{
.v0_c01217{vertical-align:0.000000pt;}
.ls0_c01217{letter-spacing:0.000000pt;}
.ls1_c01217{letter-spacing:0.010667pt;}
.ws0_c01217{word-spacing:0.000000pt;}
._12_c01217{margin-left:-6.265600pt;}
._a_c01217{margin-left:-3.782400pt;}
._14_c01217{margin-left:-2.892800pt;}
._4_c01217{margin-left:-1.932800pt;}
._0_c01217{margin-left:-1.004800pt;}
._5_c01217{width:1.305600pt;}
._2_c01217{width:2.617600pt;}
._1_c01217{width:3.622400pt;}
._3_c01217{width:4.563200pt;}
._e_c01217{width:5.632000pt;}
._d_c01217{width:6.611200pt;}
._11_c01217{width:7.616000pt;}
._c_c01217{width:8.531200pt;}
._10_c01217{width:9.849600pt;}
._b_c01217{width:10.745600pt;}
._f_c01217{width:11.680000pt;}
._6_c01217{width:13.100800pt;}
._8_c01217{width:14.400000pt;}
._9_c01217{width:15.385600pt;}
._7_c01217{width:16.332800pt;}
._13_c01217{width:19.526400pt;}
._15_c01217{width:21.036800pt;}
.fs0_c01217{font-size:48.000000pt;}
.fs2_c01217{font-size:53.333333pt;}
.fs1_c01217{font-size:64.000000pt;}
.y0_c01217{bottom:0.000000pt;}
.y2_c01217{bottom:10.666667pt;}
.y13_c01217{bottom:60.000000pt;}
.y11_c01217{bottom:124.000000pt;}
.y10_c01217{bottom:148.000000pt;}
.yf_c01217{bottom:172.000000pt;}
.ye_c01217{bottom:196.000000pt;}
.yd_c01217{bottom:238.666667pt;}
.yc_c01217{bottom:262.666667pt;}
.yb_c01217{bottom:286.666667pt;}
.ya_c01217{bottom:310.666667pt;}
.y9_c01217{bottom:334.666667pt;}
.y8_c01217{bottom:358.666667pt;}
.y7_c01217{bottom:382.666667pt;}
.y6_c01217{bottom:406.666667pt;}
.y5_c01217{bottom:430.666667pt;}
.y4_c01217{bottom:454.666667pt;}
.y3_c01217{bottom:478.666667pt;}
.y1_c01217{bottom:518.666667pt;}
.y12_c01217{bottom:1061.333333pt;}
.h2_c01217{height:37.593750pt;}
.h5_c01217{height:39.296875pt;}
.h4_c01217{height:49.843750pt;}
.h3_c01217{height:60.218750pt;}
.h1_c01217{height:470.666667pt;}
.h0_c01217{height:1122.666667pt;}
.w1_c01217{width:608.399867pt;}
.w0_c01217{width:793.333333pt;}
.x0_c01217{left:0.000000pt;}
.x1_c01217{left:44.000000pt;}
.x2_c01217{left:112.867920pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5331fc15f9e84f8f981dd7a4.woff2')format("woff");}.ff1_c01218{font-family:ff1_c01218;line-height:1.132812;font-style:normal;font-weight:normal;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_8375cdaccfad15d6af913876.woff2')format("woff");}.ff2_c01218{font-family:ff2_c01218;line-height:0.934082;font-style:normal;font-weight:normal;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_cca36a575a0890d22db2c752.woff2')format("woff");}.ff3_c01218{font-family:ff3_c01218;line-height:1.155762;font-style: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;}
.ls1_c01218{letter-spacing:0.000000px;}
.ls0_c01218{letter-spacing:0.012000px;}
.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;}
}
.ws0_c01218{word-spacing:0.000000px;}
._5_c01218{margin-left:-3.196800px;}
._3_c01218{margin-left:-1.684800px;}
._2_c01218{width:1.447200px;}
._1_c01218{width:3.052800px;}
._0_c01218{width:4.485600px;}
._4_c01218{width:6.177600px;}
._6_c01218{width:7.488000px;}
._8_c01218{width:17.827200px;}
._7_c01218{width:20.973600px;}
._a_c01218{width:22.838400px;}
._9_c01218{width:25.538400px;}
.fc0_c01218{color:rgb(0,0,0);}
.fs0_c01218{font-size:54.000000px;}
.fs2_c01218{font-size:60.000000px;}
.fs1_c01218{font-size:72.000000px;}
.y0_c01218{bottom:0.000000px;}
.y3_c01218{bottom:10.500000px;}
.y2_c01218{bottom:28.500000px;}
.yb_c01218{bottom:67.500000px;}
.y9_c01218{bottom:154.500000px;}
.y8_c01218{bottom:181.500000px;}
.y7_c01218{bottom:208.500000px;}
.y6_c01218{bottom:235.500000px;}
.y5_c01218{bottom:262.500000px;}
.y4_c01218{bottom:289.500000px;}
.y1_c01218{bottom:334.500000px;}
.ya_c01218{bottom:1194.000000px;}
.h2_c01218{height:50.756836px;}
.h3_c01218{height:51.257812px;}
.h4_c01218{height:56.074219px;}
.h1_c01218{height:778.500000px;}
.h0_c01218{height:1263.000000px;}
.w1_c01218{width:684.449850px;}
.w0_c01218{width:892.500000px;}
.x0_c01218{left:0.000000px;}
.x2_c01218{left:9.797333px;}
.x3_c01218{left:106.419885px;}
.x1_c01218{left:135.000000px;}
.x4_c01218{left:432.515100px;}
.x5_c01218{left:817.725150px;}
@media print{
.v0_c01218{vertical-align:0.000000pt;}
.ls1_c01218{letter-spacing:0.000000pt;}
.ls0_c01218{letter-spacing:0.010667pt;}
.ws0_c01218{word-spacing:0.000000pt;}
._5_c01218{margin-left:-2.841600pt;}
._3_c01218{margin-left:-1.497600pt;}
._2_c01218{width:1.286400pt;}
._1_c01218{width:2.713600pt;}
._0_c01218{width:3.987200pt;}
._4_c01218{width:5.491200pt;}
._6_c01218{width:6.656000pt;}
._8_c01218{width:15.846400pt;}
._7_c01218{width:18.643200pt;}
._a_c01218{width:20.300800pt;}
._9_c01218{width:22.700800pt;}
.fs0_c01218{font-size:48.000000pt;}
.fs2_c01218{font-size:53.333333pt;}
.fs1_c01218{font-size:64.000000pt;}
.y0_c01218{bottom:0.000000pt;}
.y3_c01218{bottom:9.333333pt;}
.y2_c01218{bottom:25.333333pt;}
.yb_c01218{bottom:60.000000pt;}
.y9_c01218{bottom:137.333333pt;}
.y8_c01218{bottom:161.333333pt;}
.y7_c01218{bottom:185.333333pt;}
.y6_c01218{bottom:209.333333pt;}
.y5_c01218{bottom:233.333333pt;}
.y4_c01218{bottom:257.333333pt;}
.y1_c01218{bottom:297.333333pt;}
.ya_c01218{bottom:1061.333333pt;}
.h2_c01218{height:45.117188pt;}
.h3_c01218{height:45.562500pt;}
.h4_c01218{height:49.843750pt;}
.h1_c01218{height:692.000000pt;}
.h0_c01218{height:1122.666667pt;}
.w1_c01218{width:608.399867pt;}
.w0_c01218{width:793.333333pt;}
.x0_c01218{left:0.000000pt;}
.x2_c01218{left:8.708740pt;}
.x3_c01218{left:94.595453pt;}
.x1_c01218{left:120.000000pt;}
.x4_c01218{left:384.457867pt;}
.x5_c01218{left:726.866800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8bc3b86705d080c66ce2b48a.woff2')format("woff");}.ff1_c01219{font-family:ff1_c01219;line-height:0.934082;font-style:normal;font-weight:normal;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_31bd149ce04e3aab9ce755e7.woff2')format("woff");}.ff2_c01219{font-family:ff2_c01219;line-height:0.882812;font-style:normal;font-weight:normal;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_f618efdd165911a605933f36.woff2')format("woff");}.ff3_c01219{font-family:ff3_c01219;line-height:0.795410;font-style:normal;font-weight:normal;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_f6198e367ff1d1a9ac4d34cf.woff2')format("woff");}.ff4_c01219{font-family:ff4_c01219;line-height:0.755859;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01219;src:url('chunks/assets/font_0b02d1ab81b30474f0805b79.woff2')format("woff");}.ff5_c01219{font-family:ff5_c01219;line-height:1.155762;font-style: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;}
.ls1_c01219{letter-spacing:0.000000px;}
.ls2_c01219{letter-spacing:0.007200px;}
.ls3_c01219{letter-spacing:0.012000px;}
.ls0_c01219{letter-spacing:0.021600px;}
.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:0.000000px;}
._12_c01219{margin-left:-6.350400px;}
._f_c01219{margin-left:-4.579200px;}
._0_c01219{margin-left:-3.290400px;}
._3_c01219{margin-left:-1.980000px;}
._5_c01219{width:1.123200px;}
._2_c01219{width:2.714400px;}
._1_c01219{width:4.032000px;}
._4_c01219{width:5.558400px;}
._9_c01219{width:6.962400px;}
._6_c01219{width:8.049600px;}
._8_c01219{width:10.166400px;}
._7_c01219{width:11.347200px;}
._11_c01219{width:12.628800px;}
._10_c01219{width:14.493600px;}
._e_c01219{width:21.708000px;}
._b_c01219{width:23.263200px;}
._d_c01219{width:24.379200px;}
._c_c01219{width:26.366400px;}
._a_c01219{width:27.655200px;}
.fc0_c01219{color:rgb(0,0,0);}
.fs1_c01219{font-size:54.000000px;}
.fs2_c01219{font-size:60.000000px;}
.fs0_c01219{font-size:72.000000px;}
.y0_c01219{bottom:0.000000px;}
.yb_c01219{bottom:12.000000px;}
.y14_c01219{bottom:67.500000px;}
.y12_c01219{bottom:145.500000px;}
.y11_c01219{bottom:172.500000px;}
.y10_c01219{bottom:199.500000px;}
.yf_c01219{bottom:226.500000px;}
.ye_c01219{bottom:274.500000px;}
.yd_c01219{bottom:301.500000px;}
.yc_c01219{bottom:328.500000px;}
.ya_c01219{bottom:373.500000px;}
.y9_c01219{bottom:796.500000px;}
.y8_c01219{bottom:823.500000px;}
.y7_c01219{bottom:850.500000px;}
.y6_c01219{bottom:897.000000px;}
.y5_c01219{bottom:966.000000px;}
.y4_c01219{bottom:993.000000px;}
.y3_c01219{bottom:1020.000000px;}
.y2_c01219{bottom:1068.000000px;}
.y1_c01219{bottom:1095.000000px;}
.y13_c01219{bottom:1194.000000px;}
.h4_c01219{height:42.292969px;}
.h6_c01219{height:44.208984px;}
.h2_c01219{height:50.835938px;}
.h1_c01219{height:51.257812px;}
.h5_c01219{height:56.074219px;}
.h3_c01219{height:391.500000px;}
.h0_c01219{height:1263.000000px;}
.w1_c01219{width:684.449850px;}
.w0_c01219{width:892.500000px;}
.x0_c01219{left:0.000000px;}
.x1_c01219{left:49.748025px;}
.x2_c01219{left:61.500000px;}
.x3_c01219{left:225.820350px;}
@media print{
.v0_c01219{vertical-align:0.000000pt;}
.ls1_c01219{letter-spacing:0.000000pt;}
.ls2_c01219{letter-spacing:0.006400pt;}
.ls3_c01219{letter-spacing:0.010667pt;}
.ls0_c01219{letter-spacing:0.019200pt;}
.ws0_c01219{word-spacing:0.000000pt;}
._12_c01219{margin-left:-5.644800pt;}
._f_c01219{margin-left:-4.070400pt;}
._0_c01219{margin-left:-2.924800pt;}
._3_c01219{margin-left:-1.760000pt;}
._5_c01219{width:0.998400pt;}
._2_c01219{width:2.412800pt;}
._1_c01219{width:3.584000pt;}
._4_c01219{width:4.940800pt;}
._9_c01219{width:6.188800pt;}
._6_c01219{width:7.155200pt;}
._8_c01219{width:9.036800pt;}
._7_c01219{width:10.086400pt;}
._11_c01219{width:11.225600pt;}
._10_c01219{width:12.883200pt;}
._e_c01219{width:19.296000pt;}
._b_c01219{width:20.678400pt;}
._d_c01219{width:21.670400pt;}
._c_c01219{width:23.436800pt;}
._a_c01219{width:24.582400pt;}
.fs1_c01219{font-size:48.000000pt;}
.fs2_c01219{font-size:53.333333pt;}
.fs0_c01219{font-size:64.000000pt;}
.y0_c01219{bottom:0.000000pt;}
.yb_c01219{bottom:10.666667pt;}
.y14_c01219{bottom:60.000000pt;}
.y12_c01219{bottom:129.333333pt;}
.y11_c01219{bottom:153.333333pt;}
.y10_c01219{bottom:177.333333pt;}
.yf_c01219{bottom:201.333333pt;}
.ye_c01219{bottom:244.000000pt;}
.yd_c01219{bottom:268.000000pt;}
.yc_c01219{bottom:292.000000pt;}
.ya_c01219{bottom:332.000000pt;}
.y9_c01219{bottom:708.000000pt;}
.y8_c01219{bottom:732.000000pt;}
.y7_c01219{bottom:756.000000pt;}
.y6_c01219{bottom:797.333333pt;}
.y5_c01219{bottom:858.666667pt;}
.y4_c01219{bottom:882.666667pt;}
.y3_c01219{bottom:906.666667pt;}
.y2_c01219{bottom:949.333333pt;}
.y1_c01219{bottom:973.333333pt;}
.y13_c01219{bottom:1061.333333pt;}
.h4_c01219{height:37.593750pt;}
.h6_c01219{height:39.296875pt;}
.h2_c01219{height:45.187500pt;}
.h1_c01219{height:45.562500pt;}
.h5_c01219{height:49.843750pt;}
.h3_c01219{height:348.000000pt;}
.h0_c01219{height:1122.666667pt;}
.w1_c01219{width:608.399867pt;}
.w0_c01219{width:793.333333pt;}
.x0_c01219{left:0.000000pt;}
.x1_c01219{left:44.220467pt;}
.x2_c01219{left:54.666667pt;}
.x3_c01219{left:200.729200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_422c594cdc5628d02b3ab810.woff2')format("woff");}.ff1_c01220{font-family:ff1_c01220;line-height:0.934082;font-style:normal;font-weight:normal;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_bfddedc2b09b4dd6f38cff7a.woff2')format("woff");}.ff2_c01220{font-family:ff2_c01220;line-height:0.976074;font-style:normal;font-weight:normal;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_7c5c6ec60842daebab66017a.woff2')format("woff");}.ff3_c01220{font-family:ff3_c01220;line-height:1.155762;font-style: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);}
.v0_c01220{vertical-align:0.000000px;}
.ls1_c01220{letter-spacing:0.000000px;}
.ls0_c01220{letter-spacing:0.012000px;}
.ls2_c01220{letter-spacing:0.021600px;}
.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;}
}
.ws0_c01220{word-spacing:-19.800000px;}
.ws1_c01220{word-spacing:0.000000px;}
._10_c01220{margin-left:-4.173600px;}
._6_c01220{margin-left:-2.894400px;}
._4_c01220{margin-left:-1.872000px;}
._9_c01220{width:1.029600px;}
._c_c01220{width:2.592000px;}
._2_c01220{width:3.672000px;}
._0_c01220{width:4.730400px;}
._b_c01220{width:5.810400px;}
._1_c01220{width:7.509600px;}
._3_c01220{width:8.618400px;}
._a_c01220{width:11.275200px;}
._8_c01220{width:12.326400px;}
._5_c01220{width:14.126400px;}
._7_c01220{width:15.141600px;}
._d_c01220{width:17.121600px;}
._e_c01220{width:18.273600px;}
._f_c01220{width:21.326400px;}
.fc0_c01220{color:rgb(0,0,0);}
.fs1_c01220{font-size:54.000000px;}
.fs2_c01220{font-size:60.000000px;}
.fs0_c01220{font-size:72.000000px;}
.y0_c01220{bottom:0.000000px;}
.yb_c01220{bottom:12.000000px;}
.ye_c01220{bottom:67.500000px;}
.yc_c01220{bottom:163.500000px;}
.ya_c01220{bottom:469.500000px;}
.y9_c01220{bottom:837.000000px;}
.y8_c01220{bottom:864.000000px;}
.y7_c01220{bottom:891.000000px;}
.y6_c01220{bottom:918.000000px;}
.y5_c01220{bottom:966.000000px;}
.y4_c01220{bottom:993.000000px;}
.y3_c01220{bottom:1020.000000px;}
.y2_c01220{bottom:1068.000000px;}
.y1_c01220{bottom:1095.000000px;}
.yd_c01220{bottom:1194.000000px;}
.h3_c01220{height:42.292969px;}
.h1_c01220{height:51.257812px;}
.h5_c01220{height:56.074219px;}
.h4_c01220{height:286.500000px;}
.h2_c01220{height:336.000000px;}
.h0_c01220{height:1263.000000px;}
.w1_c01220{width:684.449850px;}
.w0_c01220{width:892.500000px;}
.x0_c01220{left:0.000000px;}
.x4_c01220{left:28.218105px;}
.x2_c01220{left:70.431975px;}
.x1_c01220{left:134.787405px;}
.x3_c01220{left:147.000000px;}
.x5_c01220{left:432.515100px;}
.x6_c01220{left:817.725150px;}
@media print{
.v0_c01220{vertical-align:0.000000pt;}
.ls1_c01220{letter-spacing:0.000000pt;}
.ls0_c01220{letter-spacing:0.010667pt;}
.ls2_c01220{letter-spacing:0.019200pt;}
.ws0_c01220{word-spacing:-17.600000pt;}
.ws1_c01220{word-spacing:0.000000pt;}
._10_c01220{margin-left:-3.709867pt;}
._6_c01220{margin-left:-2.572800pt;}
._4_c01220{margin-left:-1.664000pt;}
._9_c01220{width:0.915200pt;}
._c_c01220{width:2.304000pt;}
._2_c01220{width:3.264000pt;}
._0_c01220{width:4.204800pt;}
._b_c01220{width:5.164800pt;}
._1_c01220{width:6.675200pt;}
._3_c01220{width:7.660800pt;}
._a_c01220{width:10.022400pt;}
._8_c01220{width:10.956800pt;}
._5_c01220{width:12.556800pt;}
._7_c01220{width:13.459200pt;}
._d_c01220{width:15.219200pt;}
._e_c01220{width:16.243200pt;}
._f_c01220{width:18.956800pt;}
.fs1_c01220{font-size:48.000000pt;}
.fs2_c01220{font-size:53.333333pt;}
.fs0_c01220{font-size:64.000000pt;}
.y0_c01220{bottom:0.000000pt;}
.yb_c01220{bottom:10.666667pt;}
.ye_c01220{bottom:60.000000pt;}
.yc_c01220{bottom:145.333333pt;}
.ya_c01220{bottom:417.333333pt;}
.y9_c01220{bottom:744.000000pt;}
.y8_c01220{bottom:768.000000pt;}
.y7_c01220{bottom:792.000000pt;}
.y6_c01220{bottom:816.000000pt;}
.y5_c01220{bottom:858.666667pt;}
.y4_c01220{bottom:882.666667pt;}
.y3_c01220{bottom:906.666667pt;}
.y2_c01220{bottom:949.333333pt;}
.y1_c01220{bottom:973.333333pt;}
.yd_c01220{bottom:1061.333333pt;}
.h3_c01220{height:37.593750pt;}
.h1_c01220{height:45.562500pt;}
.h5_c01220{height:49.843750pt;}
.h4_c01220{height:254.666667pt;}
.h2_c01220{height:298.666667pt;}
.h0_c01220{height:1122.666667pt;}
.w1_c01220{width:608.399867pt;}
.w0_c01220{width:793.333333pt;}
.x0_c01220{left:0.000000pt;}
.x4_c01220{left:25.082760pt;}
.x2_c01220{left:62.606200pt;}
.x1_c01220{left:119.811027pt;}
.x3_c01220{left:130.666667pt;}
.x5_c01220{left:384.457867pt;}
.x6_c01220{left:726.866800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5bd76f6c6ecb32d2bf6449fd.woff2')format("woff");}.ff1_c01221{font-family:ff1_c01221;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01221;src:url('chunks/assets/font_97437483bb74356773410534.woff2')format("woff");}.ff2_c01221{font-family:ff2_c01221;line-height:0.934082;font-style:normal;font-weight:normal;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_331eb88b722061977b5f8328.woff2')format("woff");}.ff3_c01221{font-family:ff3_c01221;line-height:0.987793;font-style:normal;font-weight:normal;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_85f5ac8db9af9416500dd45f.woff2')format("woff");}.ff4_c01221{font-family:ff4_c01221;line-height:0.756836;font-style:normal;font-weight:normal;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_862d621724031e4512aa80a5.woff2')format("woff");}.ff5_c01221{font-family:ff5_c01221;line-height:1.155762;font-style: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;}
.ls1_c01221{letter-spacing:0.000000px;}
.ls0_c01221{letter-spacing:0.007200px;}
.ls3_c01221{letter-spacing:0.012000px;}
.ls2_c01221{letter-spacing:0.021600px;}
.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;}
}
.ws0_c01221{word-spacing:0.000000px;}
._0_c01221{margin-left:-7.920000px;}
._c_c01221{margin-left:-3.362400px;}
._6_c01221{margin-left:-2.311200px;}
._2_c01221{margin-left:-1.087200px;}
._8_c01221{width:1.425600px;}
._4_c01221{width:2.649600px;}
._13_c01221{width:3.772800px;}
._a_c01221{width:5.198400px;}
._14_c01221{width:6.645600px;}
._b_c01221{width:8.812800px;}
._d_c01221{width:10.202400px;}
._5_c01221{width:11.340000px;}
._9_c01221{width:12.528000px;}
._1_c01221{width:13.932000px;}
._3_c01221{width:15.048000px;}
._7_c01221{width:16.272000px;}
._10_c01221{width:17.373600px;}
._e_c01221{width:21.139200px;}
._f_c01221{width:22.564800px;}
._11_c01221{width:24.811200px;}
._12_c01221{width:25.869600px;}
.fc0_c01221{color:rgb(0,0,0);}
.fs1_c01221{font-size:54.000000px;}
.fs2_c01221{font-size:60.000000px;}
.fs0_c01221{font-size:72.000000px;}
.y0_c01221{bottom:0.000000px;}
.yd_c01221{bottom:10.500000px;}
.y6_c01221{bottom:12.000000px;}
.yc_c01221{bottom:28.500000px;}
.yf_c01221{bottom:67.500000px;}
.yb_c01221{bottom:138.000000px;}
.ya_c01221{bottom:534.000000px;}
.y9_c01221{bottom:561.000000px;}
.y8_c01221{bottom:588.000000px;}
.y7_c01221{bottom:615.000000px;}
.y5_c01221{bottom:660.000000px;}
.y4_c01221{bottom:994.500000px;}
.y3_c01221{bottom:1021.500000px;}
.y2_c01221{bottom:1048.500000px;}
.y1_c01221{bottom:1095.000000px;}
.ye_c01221{bottom:1194.000000px;}
.h4_c01221{height:42.292969px;}
.h7_c01221{height:44.208984px;}
.h2_c01221{height:51.257812px;}
.h1_c01221{height:51.785156px;}
.h6_c01221{height:56.074219px;}
.h3_c01221{height:303.000000px;}
.h5_c01221{height:364.500000px;}
.h0_c01221{height:1263.000000px;}
.w1_c01221{width:684.449850px;}
.w0_c01221{width:892.500000px;}
.x0_c01221{left:0.000000px;}
.x4_c01221{left:19.151100px;}
.x1_c01221{left:49.748025px;}
.x2_c01221{left:61.500000px;}
.x5_c01221{left:155.729850px;}
.x3_c01221{left:275.581950px;}
@media print{
.v0_c01221{vertical-align:0.000000pt;}
.ls1_c01221{letter-spacing:0.000000pt;}
.ls0_c01221{letter-spacing:0.006400pt;}
.ls3_c01221{letter-spacing:0.010667pt;}
.ls2_c01221{letter-spacing:0.019200pt;}
.ws0_c01221{word-spacing:0.000000pt;}
._0_c01221{margin-left:-7.040000pt;}
._c_c01221{margin-left:-2.988800pt;}
._6_c01221{margin-left:-2.054400pt;}
._2_c01221{margin-left:-0.966400pt;}
._8_c01221{width:1.267200pt;}
._4_c01221{width:2.355200pt;}
._13_c01221{width:3.353600pt;}
._a_c01221{width:4.620800pt;}
._14_c01221{width:5.907200pt;}
._b_c01221{width:7.833600pt;}
._d_c01221{width:9.068800pt;}
._5_c01221{width:10.080000pt;}
._9_c01221{width:11.136000pt;}
._1_c01221{width:12.384000pt;}
._3_c01221{width:13.376000pt;}
._7_c01221{width:14.464000pt;}
._10_c01221{width:15.443200pt;}
._e_c01221{width:18.790400pt;}
._f_c01221{width:20.057600pt;}
._11_c01221{width:22.054400pt;}
._12_c01221{width:22.995200pt;}
.fs1_c01221{font-size:48.000000pt;}
.fs2_c01221{font-size:53.333333pt;}
.fs0_c01221{font-size:64.000000pt;}
.y0_c01221{bottom:0.000000pt;}
.yd_c01221{bottom:9.333333pt;}
.y6_c01221{bottom:10.666667pt;}
.yc_c01221{bottom:25.333333pt;}
.yf_c01221{bottom:60.000000pt;}
.yb_c01221{bottom:122.666667pt;}
.ya_c01221{bottom:474.666667pt;}
.y9_c01221{bottom:498.666667pt;}
.y8_c01221{bottom:522.666667pt;}
.y7_c01221{bottom:546.666667pt;}
.y5_c01221{bottom:586.666667pt;}
.y4_c01221{bottom:884.000000pt;}
.y3_c01221{bottom:908.000000pt;}
.y2_c01221{bottom:932.000000pt;}
.y1_c01221{bottom:973.333333pt;}
.ye_c01221{bottom:1061.333333pt;}
.h4_c01221{height:37.593750pt;}
.h7_c01221{height:39.296875pt;}
.h2_c01221{height:45.562500pt;}
.h1_c01221{height:46.031250pt;}
.h6_c01221{height:49.843750pt;}
.h3_c01221{height:269.333333pt;}
.h5_c01221{height:324.000000pt;}
.h0_c01221{height:1122.666667pt;}
.w1_c01221{width:608.399867pt;}
.w0_c01221{width:793.333333pt;}
.x0_c01221{left:0.000000pt;}
.x4_c01221{left:17.023200pt;}
.x1_c01221{left:44.220467pt;}
.x2_c01221{left:54.666667pt;}
.x5_c01221{left:138.426533pt;}
.x3_c01221{left:244.961733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3009498394a95e6080f1de82.woff2')format("woff");}.ff1_c01222{font-family:ff1_c01222;line-height:0.934082;font-style:normal;font-weight:normal;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_e9960c366ca1b6f7ebbc3e06.woff2')format("woff");}.ff2_c01222{font-family:ff2_c01222;line-height:0.975586;font-style:normal;font-weight:normal;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_6c98e03363dc09ff57469779.woff2')format("woff");}.ff3_c01222{font-family:ff3_c01222;line-height:1.155762;font-style: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);}
.v0_c01222{vertical-align:0.000000px;}
.ls1_c01222{letter-spacing:0.000000px;}
.ls0_c01222{letter-spacing:0.012000px;}
.ls2_c01222{letter-spacing:0.021600px;}
.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;}
}
.ws0_c01222{word-spacing:-19.800000px;}
.ws1_c01222{word-spacing:0.000000px;}
._16_c01222{margin-left:-10.584000px;}
._17_c01222{margin-left:-4.752000px;}
._1_c01222{margin-left:-3.636000px;}
._2_c01222{margin-left:-2.484000px;}
._5_c01222{margin-left:-1.195200px;}
._4_c01222{width:1.015200px;}
._6_c01222{width:2.224800px;}
._3_c01222{width:3.506400px;}
._0_c01222{width:4.651200px;}
._7_c01222{width:6.062400px;}
._c_c01222{width:7.804800px;}
._f_c01222{width:9.482400px;}
._e_c01222{width:12.254400px;}
._d_c01222{width:13.363200px;}
._10_c01222{width:14.745600px;}
._14_c01222{width:15.897600px;}
._12_c01222{width:17.136000px;}
._11_c01222{width:18.338400px;}
._13_c01222{width:21.484800px;}
._15_c01222{width:23.810400px;}
._8_c01222{width:26.071200px;}
._b_c01222{width:27.223200px;}
._a_c01222{width:28.317600px;}
._9_c01222{width:30.772800px;}
.fc0_c01222{color:rgb(0,0,0);}
.fs1_c01222{font-size:54.000000px;}
.fs2_c01222{font-size:60.000000px;}
.fs0_c01222{font-size:72.000000px;}
.y0_c01222{bottom:0.000000px;}
.y9_c01222{bottom:12.000000px;}
.y11_c01222{bottom:67.500000px;}
.yf_c01222{bottom:214.500000px;}
.ye_c01222{bottom:241.500000px;}
.yd_c01222{bottom:268.500000px;}
.yc_c01222{bottom:316.500000px;}
.yb_c01222{bottom:343.500000px;}
.ya_c01222{bottom:370.500000px;}
.y8_c01222{bottom:415.500000px;}
.y7_c01222{bottom:933.000000px;}
.y6_c01222{bottom:960.000000px;}
.y5_c01222{bottom:987.000000px;}
.y4_c01222{bottom:1014.000000px;}
.y3_c01222{bottom:1041.000000px;}
.y2_c01222{bottom:1068.000000px;}
.y1_c01222{bottom:1095.000000px;}
.y10_c01222{bottom:1194.000000px;}
.h3_c01222{height:41.633789px;}
.h1_c01222{height:51.257812px;}
.h4_c01222{height:56.074219px;}
.h2_c01222{height:486.000000px;}
.h0_c01222{height:1263.000000px;}
.w1_c01222{width:684.449850px;}
.w0_c01222{width:892.500000px;}
.x0_c01222{left:0.000000px;}
.x3_c01222{left:32.815890px;}
.x1_c01222{left:134.787405px;}
.x2_c01222{left:147.000000px;}
.x4_c01222{left:432.515100px;}
.x5_c01222{left:817.725150px;}
@media print{
.v0_c01222{vertical-align:0.000000pt;}
.ls1_c01222{letter-spacing:0.000000pt;}
.ls0_c01222{letter-spacing:0.010667pt;}
.ls2_c01222{letter-spacing:0.019200pt;}
.ws0_c01222{word-spacing:-17.600000pt;}
.ws1_c01222{word-spacing:0.000000pt;}
._16_c01222{margin-left:-9.408000pt;}
._17_c01222{margin-left:-4.224000pt;}
._1_c01222{margin-left:-3.232000pt;}
._2_c01222{margin-left:-2.208000pt;}
._5_c01222{margin-left:-1.062400pt;}
._4_c01222{width:0.902400pt;}
._6_c01222{width:1.977600pt;}
._3_c01222{width:3.116800pt;}
._0_c01222{width:4.134400pt;}
._7_c01222{width:5.388800pt;}
._c_c01222{width:6.937600pt;}
._f_c01222{width:8.428800pt;}
._e_c01222{width:10.892800pt;}
._d_c01222{width:11.878400pt;}
._10_c01222{width:13.107200pt;}
._14_c01222{width:14.131200pt;}
._12_c01222{width:15.232000pt;}
._11_c01222{width:16.300800pt;}
._13_c01222{width:19.097600pt;}
._15_c01222{width:21.164800pt;}
._8_c01222{width:23.174400pt;}
._b_c01222{width:24.198400pt;}
._a_c01222{width:25.171200pt;}
._9_c01222{width:27.353600pt;}
.fs1_c01222{font-size:48.000000pt;}
.fs2_c01222{font-size:53.333333pt;}
.fs0_c01222{font-size:64.000000pt;}
.y0_c01222{bottom:0.000000pt;}
.y9_c01222{bottom:10.666667pt;}
.y11_c01222{bottom:60.000000pt;}
.yf_c01222{bottom:190.666667pt;}
.ye_c01222{bottom:214.666667pt;}
.yd_c01222{bottom:238.666667pt;}
.yc_c01222{bottom:281.333333pt;}
.yb_c01222{bottom:305.333333pt;}
.ya_c01222{bottom:329.333333pt;}
.y8_c01222{bottom:369.333333pt;}
.y7_c01222{bottom:829.333333pt;}
.y6_c01222{bottom:853.333333pt;}
.y5_c01222{bottom:877.333333pt;}
.y4_c01222{bottom:901.333333pt;}
.y3_c01222{bottom:925.333333pt;}
.y2_c01222{bottom:949.333333pt;}
.y1_c01222{bottom:973.333333pt;}
.y10_c01222{bottom:1061.333333pt;}
.h3_c01222{height:37.007812pt;}
.h1_c01222{height:45.562500pt;}
.h4_c01222{height:49.843750pt;}
.h2_c01222{height:432.000000pt;}
.h0_c01222{height:1122.666667pt;}
.w1_c01222{width:608.399867pt;}
.w0_c01222{width:793.333333pt;}
.x0_c01222{left:0.000000pt;}
.x3_c01222{left:29.169680pt;}
.x1_c01222{left:119.811027pt;}
.x2_c01222{left:130.666667pt;}
.x4_c01222{left:384.457867pt;}
.x5_c01222{left:726.866800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_52c378b747a368201ee5a577.woff2')format("woff");}.ff1_c01223{font-family:ff1_c01223;line-height:0.975586;font-style:normal;font-weight:normal;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_56b00970c4f58b4f5792b3df.woff2')format("woff");}.ff2_c01223{font-family:ff2_c01223;line-height:0.936035;font-style:normal;font-weight:normal;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_e23220ff6251ad96037c145a.woff2')format("woff");}.ff3_c01223{font-family:ff3_c01223;line-height:0.934082;font-style:normal;font-weight:normal;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_f7ee58145e4d774f1ab1aca1.woff2')format("woff");}.ff4_c01223{font-family:ff4_c01223;line-height:0.755859;font-style:normal;font-weight:normal;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_467eb234eb51bd3234b3c8c2.woff2')format("woff");}.ff5_c01223{font-family:ff5_c01223;line-height:1.155762;font-style: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);}
.v0_c01223{vertical-align:0.000000px;}
.ls1_c01223{letter-spacing:0.000000px;}
.ls2_c01223{letter-spacing:0.007200px;}
.ls3_c01223{letter-spacing:0.012000px;}
.ls0_c01223{letter-spacing:0.021600px;}
.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;}
}
.ws0_c01223{word-spacing:0.000000px;}
._12_c01223{margin-left:-19.504800px;}
._10_c01223{margin-left:-7.336800px;}
._6_c01223{margin-left:-4.032000px;}
._2_c01223{margin-left:-2.376000px;}
._0_c01223{margin-left:-1.130400px;}
._e_c01223{width:1.432800px;}
._4_c01223{width:2.757600px;}
._a_c01223{width:4.204800px;}
._f_c01223{width:5.630400px;}
._9_c01223{width:7.063200px;}
._b_c01223{width:8.431200px;}
._d_c01223{width:9.676800px;}
._c_c01223{width:11.124000px;}
._11_c01223{width:12.434400px;}
._5_c01223{width:13.752000px;}
._3_c01223{width:15.544800px;}
._8_c01223{width:16.560000px;}
._1_c01223{width:17.625600px;}
._7_c01223{width:18.669600px;}
.fc0_c01223{color:rgb(0,0,0);}
.fs0_c01223{font-size:54.000000px;}
.fs2_c01223{font-size:60.000000px;}
.fs1_c01223{font-size:72.000000px;}
.y0_c01223{bottom:0.000000px;}
.y2_c01223{bottom:12.000000px;}
.y13_c01223{bottom:67.500000px;}
.y11_c01223{bottom:229.500000px;}
.y10_c01223{bottom:256.500000px;}
.yf_c01223{bottom:304.500000px;}
.ye_c01223{bottom:331.500000px;}
.yd_c01223{bottom:358.500000px;}
.yc_c01223{bottom:385.500000px;}
.yb_c01223{bottom:433.500000px;}
.ya_c01223{bottom:460.500000px;}
.y9_c01223{bottom:487.500000px;}
.y8_c01223{bottom:514.500000px;}
.y7_c01223{bottom:541.500000px;}
.y6_c01223{bottom:568.500000px;}
.y5_c01223{bottom:595.500000px;}
.y4_c01223{bottom:622.500000px;}
.y3_c01223{bottom:669.000000px;}
.y1_c01223{bottom:735.000000px;}
.y12_c01223{bottom:1194.000000px;}
.h2_c01223{height:41.633789px;}
.h6_c01223{height:44.208984px;}
.h4_c01223{height:51.257812px;}
.h3_c01223{height:51.539062px;}
.h5_c01223{height:56.074219px;}
.h1_c01223{height:378.000000px;}
.h0_c01223{height:1263.000000px;}
.w1_c01223{width:684.449850px;}
.w0_c01223{width:892.500000px;}
.x0_c01223{left:0.000000px;}
.x3_c01223{left:49.748025px;}
.x1_c01223{left:61.500000px;}
.x2_c01223{left:204.776100px;}
@media print{
.v0_c01223{vertical-align:0.000000pt;}
.ls1_c01223{letter-spacing:0.000000pt;}
.ls2_c01223{letter-spacing:0.006400pt;}
.ls3_c01223{letter-spacing:0.010667pt;}
.ls0_c01223{letter-spacing:0.019200pt;}
.ws0_c01223{word-spacing:0.000000pt;}
._12_c01223{margin-left:-17.337600pt;}
._10_c01223{margin-left:-6.521600pt;}
._6_c01223{margin-left:-3.584000pt;}
._2_c01223{margin-left:-2.112000pt;}
._0_c01223{margin-left:-1.004800pt;}
._e_c01223{width:1.273600pt;}
._4_c01223{width:2.451200pt;}
._a_c01223{width:3.737600pt;}
._f_c01223{width:5.004800pt;}
._9_c01223{width:6.278400pt;}
._b_c01223{width:7.494400pt;}
._d_c01223{width:8.601600pt;}
._c_c01223{width:9.888000pt;}
._11_c01223{width:11.052800pt;}
._5_c01223{width:12.224000pt;}
._3_c01223{width:13.817600pt;}
._8_c01223{width:14.720000pt;}
._1_c01223{width:15.667200pt;}
._7_c01223{width:16.595200pt;}
.fs0_c01223{font-size:48.000000pt;}
.fs2_c01223{font-size:53.333333pt;}
.fs1_c01223{font-size:64.000000pt;}
.y0_c01223{bottom:0.000000pt;}
.y2_c01223{bottom:10.666667pt;}
.y13_c01223{bottom:60.000000pt;}
.y11_c01223{bottom:204.000000pt;}
.y10_c01223{bottom:228.000000pt;}
.yf_c01223{bottom:270.666667pt;}
.ye_c01223{bottom:294.666667pt;}
.yd_c01223{bottom:318.666667pt;}
.yc_c01223{bottom:342.666667pt;}
.yb_c01223{bottom:385.333333pt;}
.ya_c01223{bottom:409.333333pt;}
.y9_c01223{bottom:433.333333pt;}
.y8_c01223{bottom:457.333333pt;}
.y7_c01223{bottom:481.333333pt;}
.y6_c01223{bottom:505.333333pt;}
.y5_c01223{bottom:529.333333pt;}
.y4_c01223{bottom:553.333333pt;}
.y3_c01223{bottom:594.666667pt;}
.y1_c01223{bottom:653.333333pt;}
.y12_c01223{bottom:1061.333333pt;}
.h2_c01223{height:37.007812pt;}
.h6_c01223{height:39.296875pt;}
.h4_c01223{height:45.562500pt;}
.h3_c01223{height:45.812500pt;}
.h5_c01223{height:49.843750pt;}
.h1_c01223{height:336.000000pt;}
.h0_c01223{height:1122.666667pt;}
.w1_c01223{width:608.399867pt;}
.w0_c01223{width:793.333333pt;}
.x0_c01223{left:0.000000pt;}
.x3_c01223{left:44.220467pt;}
.x1_c01223{left:54.666667pt;}
.x2_c01223{left:182.023200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1719901de3d61d23fd2601a9.woff2')format("woff");}.ff1_c01224{font-family:ff1_c01224;line-height:0.987793;font-style:normal;font-weight:normal;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_dd08a4b54d49e384b297ddce.woff2')format("woff");}.ff2_c01224{font-family:ff2_c01224;line-height:0.933105;font-style:normal;font-weight:normal;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_05d90b25f501163311074661.woff2')format("woff");}.ff3_c01224{font-family:ff3_c01224;line-height:1.155762;font-style: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;}
.ls2_c01224{letter-spacing:0.000000px;}
.ls0_c01224{letter-spacing:0.012000px;}
.ls1_c01224{letter-spacing:0.021600px;}
.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;}
}
.ws0_c01224{word-spacing:0.000000px;}
._5_c01224{margin-left:-7.200000px;}
._8_c01224{margin-left:-3.426000px;}
._6_c01224{margin-left:-1.728000px;}
._1_c01224{width:1.137600px;}
._3_c01224{width:3.837600px;}
._4_c01224{width:5.544000px;}
._2_c01224{width:8.308800px;}
._0_c01224{width:9.381600px;}
._7_c01224{width:11.088000px;}
.fc0_c01224{color:rgb(0,0,0);}
.fs0_c01224{font-size:54.000000px;}
.fs2_c01224{font-size:60.000000px;}
.fs1_c01224{font-size:72.000000px;}
.y0_c01224{bottom:0.000000px;}
.y2_c01224{bottom:12.000000px;}
.y7_c01224{bottom:67.500000px;}
.y5_c01224{bottom:165.000000px;}
.y4_c01224{bottom:633.000000px;}
.y3_c01224{bottom:660.000000px;}
.y1_c01224{bottom:705.000000px;}
.y6_c01224{bottom:1194.000000px;}
.h2_c01224{height:42.292969px;}
.h3_c01224{height:51.187500px;}
.h5_c01224{height:56.074219px;}
.h1_c01224{height:408.000000px;}
.h4_c01224{height:436.500000px;}
.h0_c01224{height:1263.000000px;}
.w1_c01224{width:684.449850px;}
.w0_c01224{width:892.500000px;}
.x0_c01224{left:0.000000px;}
.x4_c01224{left:65.076135px;}
.x2_c01224{left:103.608495px;}
.x3_c01224{left:134.787405px;}
.x1_c01224{left:147.000000px;}
.x5_c01224{left:432.515100px;}
.x6_c01224{left:817.725150px;}
@media print{
.v0_c01224{vertical-align:0.000000pt;}
.ls2_c01224{letter-spacing:0.000000pt;}
.ls0_c01224{letter-spacing:0.010667pt;}
.ls1_c01224{letter-spacing:0.019200pt;}
.ws0_c01224{word-spacing:0.000000pt;}
._5_c01224{margin-left:-6.400000pt;}
._8_c01224{margin-left:-3.045333pt;}
._6_c01224{margin-left:-1.536000pt;}
._1_c01224{width:1.011200pt;}
._3_c01224{width:3.411200pt;}
._4_c01224{width:4.928000pt;}
._2_c01224{width:7.385600pt;}
._0_c01224{width:8.339200pt;}
._7_c01224{width:9.856000pt;}
.fs0_c01224{font-size:48.000000pt;}
.fs2_c01224{font-size:53.333333pt;}
.fs1_c01224{font-size:64.000000pt;}
.y0_c01224{bottom:0.000000pt;}
.y2_c01224{bottom:10.666667pt;}
.y7_c01224{bottom:60.000000pt;}
.y5_c01224{bottom:146.666667pt;}
.y4_c01224{bottom:562.666667pt;}
.y3_c01224{bottom:586.666667pt;}
.y1_c01224{bottom:626.666667pt;}
.y6_c01224{bottom:1061.333333pt;}
.h2_c01224{height:37.593750pt;}
.h3_c01224{height:45.500000pt;}
.h5_c01224{height:49.843750pt;}
.h1_c01224{height:362.666667pt;}
.h4_c01224{height:388.000000pt;}
.h0_c01224{height:1122.666667pt;}
.w1_c01224{width:608.399867pt;}
.w0_c01224{width:793.333333pt;}
.x0_c01224{left:0.000000pt;}
.x4_c01224{left:57.845453pt;}
.x2_c01224{left:92.096440pt;}
.x3_c01224{left:119.811027pt;}
.x1_c01224{left:130.666667pt;}
.x5_c01224{left:384.457867pt;}
.x6_c01224{left:726.866800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2c628f4bd08f3071049fc8d2.woff2')format("woff");}.ff1_c01225{font-family:ff1_c01225;line-height:0.934082;font-style:normal;font-weight:normal;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_da5fd1402eb49e4131530738.woff2')format("woff");}.ff2_c01225{font-family:ff2_c01225;line-height:0.795410;font-style:normal;font-weight:normal;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_6f8d0132340267b866a86950.woff2')format("woff");}.ff3_c01225{font-family:ff3_c01225;line-height:0.755859;font-style:normal;font-weight:normal;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_9556ba58cc6f439bec46ae7c.woff2')format("woff");}.ff4_c01225{font-family:ff4_c01225;line-height:1.155762;font-style: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);}
.v0_c01225{vertical-align:0.000000px;}
.ls0_c01225{letter-spacing:0.000000px;}
.ls2_c01225{letter-spacing:0.012000px;}
.ls1_c01225{letter-spacing:0.021600px;}
.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;}
}
.ws0_c01225{word-spacing:-19.800000px;}
.ws1_c01225{word-spacing:0.000000px;}
._9_c01225{margin-left:-7.070400px;}
._a_c01225{margin-left:-4.212000px;}
._c_c01225{margin-left:-2.995200px;}
._2_c01225{margin-left:-1.821600px;}
._5_c01225{width:1.296000px;}
._0_c01225{width:2.325600px;}
._d_c01225{width:3.700800px;}
._7_c01225{width:4.852800px;}
._8_c01225{width:6.674400px;}
._1_c01225{width:8.222400px;}
._6_c01225{width:9.280800px;}
._4_c01225{width:10.591200px;}
._3_c01225{width:12.434400px;}
._b_c01225{width:14.083200px;}
.fc0_c01225{color:rgb(0,0,0);}
.fs1_c01225{font-size:54.000000px;}
.fs2_c01225{font-size:60.000000px;}
.fs0_c01225{font-size:72.000000px;}
.y0_c01225{bottom:0.000000px;}
.y4_c01225{bottom:12.000000px;}
.yb_c01225{bottom:67.500000px;}
.y9_c01225{bottom:150.000000px;}
.y8_c01225{bottom:466.500000px;}
.y7_c01225{bottom:493.500000px;}
.y6_c01225{bottom:520.500000px;}
.y5_c01225{bottom:547.500000px;}
.y3_c01225{bottom:592.500000px;}
.y2_c01225{bottom:1068.000000px;}
.y1_c01225{bottom:1095.000000px;}
.ya_c01225{bottom:1194.000000px;}
.h3_c01225{height:42.292969px;}
.h6_c01225{height:44.208984px;}
.h1_c01225{height:51.257812px;}
.h5_c01225{height:56.074219px;}
.h4_c01225{height:285.000000px;}
.h2_c01225{height:444.000000px;}
.h0_c01225{height:1263.000000px;}
.w1_c01225{width:684.449850px;}
.w0_c01225{width:892.500000px;}
.x0_c01225{left:0.000000px;}
.x1_c01225{left:49.748025px;}
.x2_c01225{left:61.500000px;}
.x4_c01225{left:202.030650px;}
.x3_c01225{left:294.882600px;}
@media print{
.v0_c01225{vertical-align:0.000000pt;}
.ls0_c01225{letter-spacing:0.000000pt;}
.ls2_c01225{letter-spacing:0.010667pt;}
.ls1_c01225{letter-spacing:0.019200pt;}
.ws0_c01225{word-spacing:-17.600000pt;}
.ws1_c01225{word-spacing:0.000000pt;}
._9_c01225{margin-left:-6.284800pt;}
._a_c01225{margin-left:-3.744000pt;}
._c_c01225{margin-left:-2.662400pt;}
._2_c01225{margin-left:-1.619200pt;}
._5_c01225{width:1.152000pt;}
._0_c01225{width:2.067200pt;}
._d_c01225{width:3.289600pt;}
._7_c01225{width:4.313600pt;}
._8_c01225{width:5.932800pt;}
._1_c01225{width:7.308800pt;}
._6_c01225{width:8.249600pt;}
._4_c01225{width:9.414400pt;}
._3_c01225{width:11.052800pt;}
._b_c01225{width:12.518400pt;}
.fs1_c01225{font-size:48.000000pt;}
.fs2_c01225{font-size:53.333333pt;}
.fs0_c01225{font-size:64.000000pt;}
.y0_c01225{bottom:0.000000pt;}
.y4_c01225{bottom:10.666667pt;}
.yb_c01225{bottom:60.000000pt;}
.y9_c01225{bottom:133.333333pt;}
.y8_c01225{bottom:414.666667pt;}
.y7_c01225{bottom:438.666667pt;}
.y6_c01225{bottom:462.666667pt;}
.y5_c01225{bottom:486.666667pt;}
.y3_c01225{bottom:526.666667pt;}
.y2_c01225{bottom:949.333333pt;}
.y1_c01225{bottom:973.333333pt;}
.ya_c01225{bottom:1061.333333pt;}
.h3_c01225{height:37.593750pt;}
.h6_c01225{height:39.296875pt;}
.h1_c01225{height:45.562500pt;}
.h5_c01225{height:49.843750pt;}
.h4_c01225{height:253.333333pt;}
.h2_c01225{height:394.666667pt;}
.h0_c01225{height:1122.666667pt;}
.w1_c01225{width:608.399867pt;}
.w0_c01225{width:793.333333pt;}
.x0_c01225{left:0.000000pt;}
.x1_c01225{left:44.220467pt;}
.x2_c01225{left:54.666667pt;}
.x4_c01225{left:179.582800pt;}
.x3_c01225{left:262.117867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_87e70a01bf727807e6ff127f.woff2')format("woff");}.ff1_c01226{font-family:ff1_c01226;line-height:0.933105;font-style:normal;font-weight:normal;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_b4b9dc82914a6a4387013f43.woff2')format("woff");}.ff2_c01226{font-family:ff2_c01226;line-height:0.963867;font-style:normal;font-weight:normal;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_be84d879fa220566e8ba9c9d.woff2')format("woff");}.ff3_c01226{font-family:ff3_c01226;line-height:1.155762;font-style: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);}
.v0_c01226{vertical-align:0.000000px;}
.ls1_c01226{letter-spacing:0.000000px;}
.ls0_c01226{letter-spacing:0.012000px;}
.ls2_c01226{letter-spacing:0.021600px;}
.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;}
}
.ws0_c01226{word-spacing:0.000000px;}
._9_c01226{margin-left:-3.528000px;}
._5_c01226{margin-left:-2.188800px;}
._3_c01226{margin-left:-1.000800px;}
._1_c01226{width:1.915200px;}
._8_c01226{width:3.160800px;}
._7_c01226{width:5.371200px;}
._b_c01226{width:6.372000px;}
._a_c01226{width:7.891200px;}
._2_c01226{width:9.554400px;}
._0_c01226{width:11.426400px;}
._4_c01226{width:12.492000px;}
._6_c01226{width:13.615200px;}
._c_c01226{width:16.394400px;}
.fc0_c01226{color:rgb(0,0,0);}
.fs1_c01226{font-size:54.000000px;}
.fs2_c01226{font-size:60.000000px;}
.fs0_c01226{font-size:72.000000px;}
.y0_c01226{bottom:0.000000px;}
.y5_c01226{bottom:12.000000px;}
.yb_c01226{bottom:67.500000px;}
.y9_c01226{bottom:159.000000px;}
.y8_c01226{bottom:186.000000px;}
.y7_c01226{bottom:213.000000px;}
.y6_c01226{bottom:258.000000px;}
.y4_c01226{bottom:646.500000px;}
.y3_c01226{bottom:1041.000000px;}
.y2_c01226{bottom:1068.000000px;}
.y1_c01226{bottom:1095.000000px;}
.ya_c01226{bottom:1194.000000px;}
.h3_c01226{height:41.633789px;}
.h1_c01226{height:51.187500px;}
.h5_c01226{height:56.074219px;}
.h4_c01226{height:360.000000px;}
.h2_c01226{height:363.000000px;}
.h0_c01226{height:1263.000000px;}
.w1_c01226{width:684.449850px;}
.w0_c01226{width:892.500000px;}
.x0_c01226{left:0.000000px;}
.x4_c01226{left:20.627655px;}
.x1_c01226{left:134.787405px;}
.x2_c01226{left:147.000000px;}
.x3_c01226{left:265.127250px;}
.x5_c01226{left:432.515100px;}
.x6_c01226{left:817.725150px;}
@media print{
.v0_c01226{vertical-align:0.000000pt;}
.ls1_c01226{letter-spacing:0.000000pt;}
.ls0_c01226{letter-spacing:0.010667pt;}
.ls2_c01226{letter-spacing:0.019200pt;}
.ws0_c01226{word-spacing:0.000000pt;}
._9_c01226{margin-left:-3.136000pt;}
._5_c01226{margin-left:-1.945600pt;}
._3_c01226{margin-left:-0.889600pt;}
._1_c01226{width:1.702400pt;}
._8_c01226{width:2.809600pt;}
._7_c01226{width:4.774400pt;}
._b_c01226{width:5.664000pt;}
._a_c01226{width:7.014400pt;}
._2_c01226{width:8.492800pt;}
._0_c01226{width:10.156800pt;}
._4_c01226{width:11.104000pt;}
._6_c01226{width:12.102400pt;}
._c_c01226{width:14.572800pt;}
.fs1_c01226{font-size:48.000000pt;}
.fs2_c01226{font-size:53.333333pt;}
.fs0_c01226{font-size:64.000000pt;}
.y0_c01226{bottom:0.000000pt;}
.y5_c01226{bottom:10.666667pt;}
.yb_c01226{bottom:60.000000pt;}
.y9_c01226{bottom:141.333333pt;}
.y8_c01226{bottom:165.333333pt;}
.y7_c01226{bottom:189.333333pt;}
.y6_c01226{bottom:229.333333pt;}
.y4_c01226{bottom:574.666667pt;}
.y3_c01226{bottom:925.333333pt;}
.y2_c01226{bottom:949.333333pt;}
.y1_c01226{bottom:973.333333pt;}
.ya_c01226{bottom:1061.333333pt;}
.h3_c01226{height:37.007812pt;}
.h1_c01226{height:45.500000pt;}
.h5_c01226{height:49.843750pt;}
.h4_c01226{height:320.000000pt;}
.h2_c01226{height:322.666667pt;}
.h0_c01226{height:1122.666667pt;}
.w1_c01226{width:608.399867pt;}
.w0_c01226{width:793.333333pt;}
.x0_c01226{left:0.000000pt;}
.x4_c01226{left:18.335693pt;}
.x1_c01226{left:119.811027pt;}
.x2_c01226{left:130.666667pt;}
.x3_c01226{left:235.668667pt;}
.x5_c01226{left:384.457867pt;}
.x6_c01226{left:726.866800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6669a2a0dbb9117a74544bb1.woff2')format("woff");}.ff1_c01227{font-family:ff1_c01227;line-height:0.987793;font-style:normal;font-weight:normal;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_be296570328b7a48c3454afa.woff2')format("woff");}.ff2_c01227{font-family:ff2_c01227;line-height:0.934082;font-style:normal;font-weight:normal;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_f34dc811f4507a7ee965860e.woff2')format("woff");}.ff3_c01227{font-family:ff3_c01227;line-height:0.755859;font-style:normal;font-weight:normal;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_147b52c045fc736cbc193f8c.woff2')format("woff");}.ff4_c01227{font-family:ff4_c01227;line-height:1.155762;font-style: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;}
.ls1_c01227{letter-spacing:0.000000px;}
.ls2_c01227{letter-spacing:0.012000px;}
.ls0_c01227{letter-spacing:0.021600px;}
.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;}
}
.ws0_c01227{word-spacing:-17.085600px;}
.ws1_c01227{word-spacing:0.000000px;}
._6_c01227{margin-left:-3.216000px;}
._2_c01227{margin-left:-1.922400px;}
._3_c01227{width:1.332000px;}
._0_c01227{width:2.692800px;}
._1_c01227{width:4.651200px;}
._4_c01227{width:6.379200px;}
._5_c01227{width:8.870400px;}
.fc0_c01227{color:rgb(0,0,0);}
.fs0_c01227{font-size:54.000000px;}
.fs2_c01227{font-size:60.000000px;}
.fs1_c01227{font-size:72.000000px;}
.y0_c01227{bottom:0.000000px;}
.y3_c01227{bottom:10.500000px;}
.y2_c01227{bottom:28.500000px;}
.ya_c01227{bottom:67.500000px;}
.y8_c01227{bottom:136.500000px;}
.y7_c01227{bottom:163.500000px;}
.y6_c01227{bottom:190.500000px;}
.y5_c01227{bottom:235.500000px;}
.y4_c01227{bottom:648.000000px;}
.y1_c01227{bottom:693.000000px;}
.y9_c01227{bottom:1194.000000px;}
.h2_c01227{height:42.292969px;}
.h6_c01227{height:44.208984px;}
.h3_c01227{height:51.257812px;}
.h5_c01227{height:56.074219px;}
.h4_c01227{height:381.000000px;}
.h1_c01227{height:420.000000px;}
.h0_c01227{height:1263.000000px;}
.w1_c01227{width:684.449850px;}
.w0_c01227{width:892.500000px;}
.x0_c01227{left:0.000000px;}
.x2_c01227{left:10.690521px;}
.x4_c01227{left:49.748025px;}
.x5_c01227{left:54.525975px;}
.x1_c01227{left:61.500000px;}
.x3_c01227{left:247.045950px;}
.x6_c01227{left:296.609700px;}
@media print{
.v0_c01227{vertical-align:0.000000pt;}
.ls1_c01227{letter-spacing:0.000000pt;}
.ls2_c01227{letter-spacing:0.010667pt;}
.ls0_c01227{letter-spacing:0.019200pt;}
.ws0_c01227{word-spacing:-15.187200pt;}
.ws1_c01227{word-spacing:0.000000pt;}
._6_c01227{margin-left:-2.858667pt;}
._2_c01227{margin-left:-1.708800pt;}
._3_c01227{width:1.184000pt;}
._0_c01227{width:2.393600pt;}
._1_c01227{width:4.134400pt;}
._4_c01227{width:5.670400pt;}
._5_c01227{width:7.884800pt;}
.fs0_c01227{font-size:48.000000pt;}
.fs2_c01227{font-size:53.333333pt;}
.fs1_c01227{font-size:64.000000pt;}
.y0_c01227{bottom:0.000000pt;}
.y3_c01227{bottom:9.333333pt;}
.y2_c01227{bottom:25.333333pt;}
.ya_c01227{bottom:60.000000pt;}
.y8_c01227{bottom:121.333333pt;}
.y7_c01227{bottom:145.333333pt;}
.y6_c01227{bottom:169.333333pt;}
.y5_c01227{bottom:209.333333pt;}
.y4_c01227{bottom:576.000000pt;}
.y1_c01227{bottom:616.000000pt;}
.y9_c01227{bottom:1061.333333pt;}
.h2_c01227{height:37.593750pt;}
.h6_c01227{height:39.296875pt;}
.h3_c01227{height:45.562500pt;}
.h5_c01227{height:49.843750pt;}
.h4_c01227{height:338.666667pt;}
.h1_c01227{height:373.333333pt;}
.h0_c01227{height:1122.666667pt;}
.w1_c01227{width:608.399867pt;}
.w0_c01227{width:793.333333pt;}
.x0_c01227{left:0.000000pt;}
.x2_c01227{left:9.502685pt;}
.x4_c01227{left:44.220467pt;}
.x5_c01227{left:48.467533pt;}
.x1_c01227{left:54.666667pt;}
.x3_c01227{left:219.596400pt;}
.x6_c01227{left:263.653067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9d446a00b4194bd66e63443f.woff2')format("woff");}.ff1_c01228{font-family:ff1_c01228;line-height:0.975586;font-style:normal;font-weight:normal;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_4d316be0fb368eae80ccf865.woff2')format("woff");}.ff2_c01228{font-family:ff2_c01228;line-height:0.934082;font-style:normal;font-weight:normal;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_586f83bd1ea02fa126cf8e61.woff2')format("woff");}.ff3_c01228{font-family:ff3_c01228;line-height:1.155762;font-style: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;}
.ls1_c01228{letter-spacing:0.000000px;}
.ls0_c01228{letter-spacing:0.012000px;}
.ls2_c01228{letter-spacing:0.021600px;}
.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:0.000000px;}
._4_c01228{margin-left:-4.478400px;}
._2_c01228{margin-left:-2.980800px;}
._6_c01228{margin-left:-1.036800px;}
._0_c01228{width:1.044000px;}
._1_c01228{width:2.678400px;}
._7_c01228{width:3.736800px;}
._3_c01228{width:4.838400px;}
._5_c01228{width:6.364800px;}
._d_c01228{width:8.481600px;}
._a_c01228{width:9.511200px;}
._c_c01228{width:11.152800px;}
._9_c01228{width:12.196800px;}
._b_c01228{width:13.248000px;}
._8_c01228{width:15.170400px;}
._e_c01228{width:16.711200px;}
._10_c01228{width:21.844800px;}
._11_c01228{width:23.457600px;}
._f_c01228{width:24.537600px;}
._14_c01228{width:25.560000px;}
._13_c01228{width:27.468000px;}
._12_c01228{width:29.030400px;}
.fc0_c01228{color:rgb(0,0,0);}
.fs0_c01228{font-size:54.000000px;}
.fs2_c01228{font-size:60.000000px;}
.fs1_c01228{font-size:72.000000px;}
.y0_c01228{bottom:0.000000px;}
.y2_c01228{bottom:12.000000px;}
.yb_c01228{bottom:67.500000px;}
.y9_c01228{bottom:271.500000px;}
.y8_c01228{bottom:585.000000px;}
.y7_c01228{bottom:612.000000px;}
.y6_c01228{bottom:639.000000px;}
.y5_c01228{bottom:666.000000px;}
.y4_c01228{bottom:693.000000px;}
.y3_c01228{bottom:720.000000px;}
.y1_c01228{bottom:765.000000px;}
.ya_c01228{bottom:1194.000000px;}
.h2_c01228{height:41.633789px;}
.h3_c01228{height:51.257812px;}
.h5_c01228{height:56.074219px;}
.h4_c01228{height:282.000000px;}
.h1_c01228{height:348.000000px;}
.h0_c01228{height:1263.000000px;}
.w1_c01228{width:684.449850px;}
.w0_c01228{width:892.500000px;}
.x0_c01228{left:0.000000px;}
.x3_c01228{left:134.787405px;}
.x1_c01228{left:147.000000px;}
.x4_c01228{left:229.113000px;}
.x2_c01228{left:287.166900px;}
.x5_c01228{left:432.515100px;}
.x6_c01228{left:817.725150px;}
@media print{
.v0_c01228{vertical-align:0.000000pt;}
.ls1_c01228{letter-spacing:0.000000pt;}
.ls0_c01228{letter-spacing:0.010667pt;}
.ls2_c01228{letter-spacing:0.019200pt;}
.ws0_c01228{word-spacing:0.000000pt;}
._4_c01228{margin-left:-3.980800pt;}
._2_c01228{margin-left:-2.649600pt;}
._6_c01228{margin-left:-0.921600pt;}
._0_c01228{width:0.928000pt;}
._1_c01228{width:2.380800pt;}
._7_c01228{width:3.321600pt;}
._3_c01228{width:4.300800pt;}
._5_c01228{width:5.657600pt;}
._d_c01228{width:7.539200pt;}
._a_c01228{width:8.454400pt;}
._c_c01228{width:9.913600pt;}
._9_c01228{width:10.841600pt;}
._b_c01228{width:11.776000pt;}
._8_c01228{width:13.484800pt;}
._e_c01228{width:14.854400pt;}
._10_c01228{width:19.417600pt;}
._11_c01228{width:20.851200pt;}
._f_c01228{width:21.811200pt;}
._14_c01228{width:22.720000pt;}
._13_c01228{width:24.416000pt;}
._12_c01228{width:25.804800pt;}
.fs0_c01228{font-size:48.000000pt;}
.fs2_c01228{font-size:53.333333pt;}
.fs1_c01228{font-size:64.000000pt;}
.y0_c01228{bottom:0.000000pt;}
.y2_c01228{bottom:10.666667pt;}
.yb_c01228{bottom:60.000000pt;}
.y9_c01228{bottom:241.333333pt;}
.y8_c01228{bottom:520.000000pt;}
.y7_c01228{bottom:544.000000pt;}
.y6_c01228{bottom:568.000000pt;}
.y5_c01228{bottom:592.000000pt;}
.y4_c01228{bottom:616.000000pt;}
.y3_c01228{bottom:640.000000pt;}
.y1_c01228{bottom:680.000000pt;}
.ya_c01228{bottom:1061.333333pt;}
.h2_c01228{height:37.007812pt;}
.h3_c01228{height:45.562500pt;}
.h5_c01228{height:49.843750pt;}
.h4_c01228{height:250.666667pt;}
.h1_c01228{height:309.333333pt;}
.h0_c01228{height:1122.666667pt;}
.w1_c01228{width:608.399867pt;}
.w0_c01228{width:793.333333pt;}
.x0_c01228{left:0.000000pt;}
.x3_c01228{left:119.811027pt;}
.x1_c01228{left:130.666667pt;}
.x4_c01228{left:203.656000pt;}
.x2_c01228{left:255.259467pt;}
.x5_c01228{left:384.457867pt;}
.x6_c01228{left:726.866800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_182797e1e9c9c5d09dcd204e.woff2')format("woff");}.ff1_c01229{font-family:ff1_c01229;line-height:0.987793;font-style:normal;font-weight:normal;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_06616818c51171e3cdaefd3c.woff2')format("woff");}.ff2_c01229{font-family:ff2_c01229;line-height:0.934082;font-style:normal;font-weight:normal;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_8bbcde96b13c961201728166.woff2')format("woff");}.ff3_c01229{font-family:ff3_c01229;line-height:0.755859;font-style:normal;font-weight:normal;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_75f3a8677b8d438dfbc9a7fc.woff2')format("woff");}.ff4_c01229{font-family:ff4_c01229;line-height:1.155762;font-style: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);}
.v0_c01229{vertical-align:0.000000px;}
.ls0_c01229{letter-spacing:0.000000px;}
.ls1_c01229{letter-spacing:0.012000px;}
.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;}
}
.ws0_c01229{word-spacing:-17.064000px;}
.ws1_c01229{word-spacing:0.000000px;}
._1_c01229{margin-left:-10.584000px;}
._0_c01229{margin-left:-7.142400px;}
._d_c01229{margin-left:-5.760000px;}
._5_c01229{margin-left:-4.442400px;}
._2_c01229{margin-left:-2.541600px;}
._a_c01229{margin-left:-1.281600px;}
._9_c01229{width:1.152000px;}
._7_c01229{width:2.188800px;}
._8_c01229{width:3.880800px;}
._b_c01229{width:4.881600px;}
._4_c01229{width:6.076800px;}
._10_c01229{width:7.480800px;}
._3_c01229{width:8.604000px;}
._6_c01229{width:10.555200px;}
._f_c01229{width:12.031200px;}
._c_c01229{width:13.233600px;}
._e_c01229{width:15.415200px;}
.fc0_c01229{color:rgb(0,0,0);}
.fs0_c01229{font-size:54.000000px;}
.fs2_c01229{font-size:60.000000px;}
.fs1_c01229{font-size:72.000000px;}
.y0_c01229{bottom:0.000000px;}
.y2_c01229{bottom:12.000000px;}
.yc_c01229{bottom:67.500000px;}
.ya_c01229{bottom:199.500000px;}
.y9_c01229{bottom:226.500000px;}
.y8_c01229{bottom:253.500000px;}
.y7_c01229{bottom:280.500000px;}
.y6_c01229{bottom:307.500000px;}
.y5_c01229{bottom:355.500000px;}
.y4_c01229{bottom:400.500000px;}
.y3_c01229{bottom:685.500000px;}
.y1_c01229{bottom:709.500000px;}
.yb_c01229{bottom:1194.000000px;}
.h2_c01229{height:42.292969px;}
.h6_c01229{height:44.208984px;}
.h3_c01229{height:51.257812px;}
.h5_c01229{height:56.074219px;}
.h4_c01229{height:253.500000px;}
.h1_c01229{height:403.500000px;}
.h0_c01229{height:1263.000000px;}
.w1_c01229{width:684.449850px;}
.w0_c01229{width:892.500000px;}
.x0_c01229{left:0.000000px;}
.x4_c01229{left:30.423060px;}
.x1_c01229{left:49.500000px;}
.x3_c01229{left:61.500000px;}
.x2_c01229{left:317.357400px;}
@media print{
.v0_c01229{vertical-align:0.000000pt;}
.ls0_c01229{letter-spacing:0.000000pt;}
.ls1_c01229{letter-spacing:0.010667pt;}
.ws0_c01229{word-spacing:-15.168000pt;}
.ws1_c01229{word-spacing:0.000000pt;}
._1_c01229{margin-left:-9.408000pt;}
._0_c01229{margin-left:-6.348800pt;}
._d_c01229{margin-left:-5.120000pt;}
._5_c01229{margin-left:-3.948800pt;}
._2_c01229{margin-left:-2.259200pt;}
._a_c01229{margin-left:-1.139200pt;}
._9_c01229{width:1.024000pt;}
._7_c01229{width:1.945600pt;}
._8_c01229{width:3.449600pt;}
._b_c01229{width:4.339200pt;}
._4_c01229{width:5.401600pt;}
._10_c01229{width:6.649600pt;}
._3_c01229{width:7.648000pt;}
._6_c01229{width:9.382400pt;}
._f_c01229{width:10.694400pt;}
._c_c01229{width:11.763200pt;}
._e_c01229{width:13.702400pt;}
.fs0_c01229{font-size:48.000000pt;}
.fs2_c01229{font-size:53.333333pt;}
.fs1_c01229{font-size:64.000000pt;}
.y0_c01229{bottom:0.000000pt;}
.y2_c01229{bottom:10.666667pt;}
.yc_c01229{bottom:60.000000pt;}
.ya_c01229{bottom:177.333333pt;}
.y9_c01229{bottom:201.333333pt;}
.y8_c01229{bottom:225.333333pt;}
.y7_c01229{bottom:249.333333pt;}
.y6_c01229{bottom:273.333333pt;}
.y5_c01229{bottom:316.000000pt;}
.y4_c01229{bottom:356.000000pt;}
.y3_c01229{bottom:609.333333pt;}
.y1_c01229{bottom:630.666667pt;}
.yb_c01229{bottom:1061.333333pt;}
.h2_c01229{height:37.593750pt;}
.h6_c01229{height:39.296875pt;}
.h3_c01229{height:45.562500pt;}
.h5_c01229{height:49.843750pt;}
.h4_c01229{height:225.333333pt;}
.h1_c01229{height:358.666667pt;}
.h0_c01229{height:1122.666667pt;}
.w1_c01229{width:608.399867pt;}
.w0_c01229{width:793.333333pt;}
.x0_c01229{left:0.000000pt;}
.x4_c01229{left:27.042720pt;}
.x1_c01229{left:44.000000pt;}
.x3_c01229{left:54.666667pt;}
.x2_c01229{left:282.095467pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_10e8498126c2fa9fe21accd3.woff2')format("woff");}.ff1_c01230{font-family:ff1_c01230;line-height:0.976074;font-style:normal;font-weight:normal;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_47b950576b843f409fdd34e5.woff2')format("woff");}.ff2_c01230{font-family:ff2_c01230;line-height:0.934082;font-style:normal;font-weight:normal;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_a0479228aa481175fe6ac62d.woff2')format("woff");}.ff3_c01230{font-family:ff3_c01230;line-height:1.155762;font-style: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;}
.ls1_c01230{letter-spacing:0.000000px;}
.ls0_c01230{letter-spacing:0.012000px;}
.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;}
}
.ws0_c01230{word-spacing:0.000000px;}
._5_c01230{margin-left:-4.507200px;}
._c_c01230{margin-left:-3.426000px;}
._3_c01230{margin-left:-2.152800px;}
._7_c01230{margin-left:-1.036800px;}
._8_c01230{width:1.339200px;}
._1_c01230{width:3.189600px;}
._2_c01230{width:4.672800px;}
._9_c01230{width:5.752800px;}
._0_c01230{width:7.826400px;}
._4_c01230{width:9.964800px;}
._6_c01230{width:12.276000px;}
._b_c01230{width:13.406400px;}
._a_c01230{width:15.393600px;}
.fc0_c01230{color:rgb(0,0,0);}
.fs0_c01230{font-size:54.000000px;}
.fs2_c01230{font-size:60.000000px;}
.fs1_c01230{font-size:72.000000px;}
.y0_c01230{bottom:0.000000px;}
.y2_c01230{bottom:12.000000px;}
.y8_c01230{bottom:67.500000px;}
.y6_c01230{bottom:151.500000px;}
.y5_c01230{bottom:178.500000px;}
.y4_c01230{bottom:205.500000px;}
.y3_c01230{bottom:250.500000px;}
.y1_c01230{bottom:607.500000px;}
.y7_c01230{bottom:1194.000000px;}
.h2_c01230{height:42.292969px;}
.h4_c01230{height:51.257812px;}
.h5_c01230{height:56.074219px;}
.h3_c01230{height:328.500000px;}
.h1_c01230{height:505.500000px;}
.h0_c01230{height:1263.000000px;}
.w1_c01230{width:684.449850px;}
.w0_c01230{width:892.500000px;}
.x0_c01230{left:0.000000px;}
.x1_c01230{left:135.000000px;}
.x3_c01230{left:147.000000px;}
.x4_c01230{left:164.351850px;}
.x2_c01230{left:280.327950px;}
.x5_c01230{left:432.515100px;}
.x6_c01230{left:817.725150px;}
@media print{
.v0_c01230{vertical-align:0.000000pt;}
.ls1_c01230{letter-spacing:0.000000pt;}
.ls0_c01230{letter-spacing:0.010667pt;}
.ws0_c01230{word-spacing:0.000000pt;}
._5_c01230{margin-left:-4.006400pt;}
._c_c01230{margin-left:-3.045333pt;}
._3_c01230{margin-left:-1.913600pt;}
._7_c01230{margin-left:-0.921600pt;}
._8_c01230{width:1.190400pt;}
._1_c01230{width:2.835200pt;}
._2_c01230{width:4.153600pt;}
._9_c01230{width:5.113600pt;}
._0_c01230{width:6.956800pt;}
._4_c01230{width:8.857600pt;}
._6_c01230{width:10.912000pt;}
._b_c01230{width:11.916800pt;}
._a_c01230{width:13.683200pt;}
.fs0_c01230{font-size:48.000000pt;}
.fs2_c01230{font-size:53.333333pt;}
.fs1_c01230{font-size:64.000000pt;}
.y0_c01230{bottom:0.000000pt;}
.y2_c01230{bottom:10.666667pt;}
.y8_c01230{bottom:60.000000pt;}
.y6_c01230{bottom:134.666667pt;}
.y5_c01230{bottom:158.666667pt;}
.y4_c01230{bottom:182.666667pt;}
.y3_c01230{bottom:222.666667pt;}
.y1_c01230{bottom:540.000000pt;}
.y7_c01230{bottom:1061.333333pt;}
.h2_c01230{height:37.593750pt;}
.h4_c01230{height:45.562500pt;}
.h5_c01230{height:49.843750pt;}
.h3_c01230{height:292.000000pt;}
.h1_c01230{height:449.333333pt;}
.h0_c01230{height:1122.666667pt;}
.w1_c01230{width:608.399867pt;}
.w0_c01230{width:793.333333pt;}
.x0_c01230{left:0.000000pt;}
.x1_c01230{left:120.000000pt;}
.x3_c01230{left:130.666667pt;}
.x4_c01230{left:146.090533pt;}
.x2_c01230{left:249.180400pt;}
.x5_c01230{left:384.457867pt;}
.x6_c01230{left:726.866800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_42aa2b0710264b375140d2f7.woff2')format("woff");}.ff1_c01231{font-family:ff1_c01231;line-height:0.934082;font-style:normal;font-weight:normal;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_8fe0fdf99e4051362a03a4f8.woff2')format("woff");}.ff2_c01231{font-family:ff2_c01231;line-height:0.987793;font-style:normal;font-weight:normal;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_95bc980aa3cddad9931e9a03.woff2')format("woff");}.ff3_c01231{font-family:ff3_c01231;line-height:0.756836;font-style:normal;font-weight:normal;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_eda8ffff700ea7592aba8f05.woff2')format("woff");}.ff4_c01231{font-family:ff4_c01231;line-height:1.155762;font-style: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);}
.v0_c01231{vertical-align:0.000000px;}
.ls1_c01231{letter-spacing:0.000000px;}
.ls3_c01231{letter-spacing:0.012000px;}
.ls0_c01231{letter-spacing:0.016200px;}
.ls2_c01231{letter-spacing:0.021600px;}
.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;}
}
.ws0_c01231{word-spacing:-19.800000px;}
.ws1_c01231{word-spacing:0.000000px;}
._3_c01231{margin-left:-3.700800px;}
._5_c01231{margin-left:-2.376000px;}
._2_c01231{margin-left:-1.238400px;}
._0_c01231{width:1.972800px;}
._1_c01231{width:3.916800px;}
._7_c01231{width:4.917600px;}
._4_c01231{width:6.480000px;}
._9_c01231{width:7.531200px;}
._6_c01231{width:9.266400px;}
._8_c01231{width:10.389600px;}
._b_c01231{width:11.649600px;}
._a_c01231{width:14.522400px;}
.fc0_c01231{color:rgb(0,0,0);}
.fs1_c01231{font-size:54.000000px;}
.fs2_c01231{font-size:60.000000px;}
.fs0_c01231{font-size:72.000000px;}
.y0_c01231{bottom:0.000000px;}
.y4_c01231{bottom:12.000000px;}
.yb_c01231{bottom:67.500000px;}
.y9_c01231{bottom:130.500000px;}
.y8_c01231{bottom:598.500000px;}
.y7_c01231{bottom:625.500000px;}
.y6_c01231{bottom:652.500000px;}
.y5_c01231{bottom:679.500000px;}
.y3_c01231{bottom:724.500000px;}
.y2_c01231{bottom:1068.000000px;}
.y1_c01231{bottom:1095.000000px;}
.ya_c01231{bottom:1194.000000px;}
.h3_c01231{height:42.292969px;}
.h6_c01231{height:44.208984px;}
.h1_c01231{height:51.257812px;}
.h5_c01231{height:56.074219px;}
.h2_c01231{height:312.000000px;}
.h4_c01231{height:436.500000px;}
.h0_c01231{height:1263.000000px;}
.w1_c01231{width:684.449850px;}
.w0_c01231{width:892.500000px;}
.x0_c01231{left:0.000000px;}
.x1_c01231{left:49.748025px;}
.x2_c01231{left:61.500000px;}
.x4_c01231{left:150.812400px;}
.x3_c01231{left:212.043600px;}
@media print{
.v0_c01231{vertical-align:0.000000pt;}
.ls1_c01231{letter-spacing:0.000000pt;}
.ls3_c01231{letter-spacing:0.010667pt;}
.ls0_c01231{letter-spacing:0.014400pt;}
.ls2_c01231{letter-spacing:0.019200pt;}
.ws0_c01231{word-spacing:-17.600000pt;}
.ws1_c01231{word-spacing:0.000000pt;}
._3_c01231{margin-left:-3.289600pt;}
._5_c01231{margin-left:-2.112000pt;}
._2_c01231{margin-left:-1.100800pt;}
._0_c01231{width:1.753600pt;}
._1_c01231{width:3.481600pt;}
._7_c01231{width:4.371200pt;}
._4_c01231{width:5.760000pt;}
._9_c01231{width:6.694400pt;}
._6_c01231{width:8.236800pt;}
._8_c01231{width:9.235200pt;}
._b_c01231{width:10.355200pt;}
._a_c01231{width:12.908800pt;}
.fs1_c01231{font-size:48.000000pt;}
.fs2_c01231{font-size:53.333333pt;}
.fs0_c01231{font-size:64.000000pt;}
.y0_c01231{bottom:0.000000pt;}
.y4_c01231{bottom:10.666667pt;}
.yb_c01231{bottom:60.000000pt;}
.y9_c01231{bottom:116.000000pt;}
.y8_c01231{bottom:532.000000pt;}
.y7_c01231{bottom:556.000000pt;}
.y6_c01231{bottom:580.000000pt;}
.y5_c01231{bottom:604.000000pt;}
.y3_c01231{bottom:644.000000pt;}
.y2_c01231{bottom:949.333333pt;}
.y1_c01231{bottom:973.333333pt;}
.ya_c01231{bottom:1061.333333pt;}
.h3_c01231{height:37.593750pt;}
.h6_c01231{height:39.296875pt;}
.h1_c01231{height:45.562500pt;}
.h5_c01231{height:49.843750pt;}
.h2_c01231{height:277.333333pt;}
.h4_c01231{height:388.000000pt;}
.h0_c01231{height:1122.666667pt;}
.w1_c01231{width:608.399867pt;}
.w0_c01231{width:793.333333pt;}
.x0_c01231{left:0.000000pt;}
.x1_c01231{left:44.220467pt;}
.x2_c01231{left:54.666667pt;}
.x4_c01231{left:134.055467pt;}
.x3_c01231{left:188.483200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ed444e09fa368d6283cb4a00.woff2')format("woff");}.ff1_c01232{font-family:ff1_c01232;line-height:0.933105;font-style:normal;font-weight:normal;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_32ff6f00b2802c0c897d5a34.woff2')format("woff");}.ff2_c01232{font-family:ff2_c01232;line-height:0.975586;font-style:normal;font-weight:normal;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_416f13e40fb90cceedacca19.woff2')format("woff");}.ff3_c01232{font-family:ff3_c01232;line-height:1.155762;font-style: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);}
.v0_c01232{vertical-align:0.000000px;}
.ls1_c01232{letter-spacing:0.000000px;}
.ls0_c01232{letter-spacing:0.012000px;}
.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;}
}
.ws0_c01232{word-spacing:0.000000px;}
._0_c01232{margin-left:-10.584000px;}
._f_c01232{margin-left:-7.005600px;}
._7_c01232{margin-left:-4.766400px;}
._c_c01232{margin-left:-3.074400px;}
._4_c01232{margin-left:-1.886400px;}
._3_c01232{width:1.620000px;}
._1_c01232{width:2.923200px;}
._2_c01232{width:4.572000px;}
._5_c01232{width:5.637600px;}
._e_c01232{width:7.020000px;}
._d_c01232{width:8.805600px;}
._10_c01232{width:10.137600px;}
._11_c01232{width:12.103200px;}
._b_c01232{width:13.384800px;}
._a_c01232{width:15.019200px;}
._6_c01232{width:16.336800px;}
._9_c01232{width:17.928000px;}
._8_c01232{width:22.694400px;}
.fc0_c01232{color:rgb(0,0,0);}
.fs1_c01232{font-size:54.000000px;}
.fs2_c01232{font-size:60.000000px;}
.fs0_c01232{font-size:72.000000px;}
.y0_c01232{bottom:0.000000px;}
.y8_c01232{bottom:12.000000px;}
.yd_c01232{bottom:67.500000px;}
.yb_c01232{bottom:211.500000px;}
.ya_c01232{bottom:238.500000px;}
.y9_c01232{bottom:265.500000px;}
.y7_c01232{bottom:310.500000px;}
.y6_c01232{bottom:960.000000px;}
.y5_c01232{bottom:987.000000px;}
.y4_c01232{bottom:1014.000000px;}
.y3_c01232{bottom:1041.000000px;}
.y2_c01232{bottom:1068.000000px;}
.y1_c01232{bottom:1095.000000px;}
.yc_c01232{bottom:1194.000000px;}
.h3_c01232{height:41.633789px;}
.h1_c01232{height:51.187500px;}
.h4_c01232{height:56.074219px;}
.h2_c01232{height:618.000000px;}
.h0_c01232{height:1263.000000px;}
.w1_c01232{width:684.449850px;}
.w0_c01232{width:892.500000px;}
.x0_c01232{left:0.000000px;}
.x3_c01232{left:90.866550px;}
.x1_c01232{left:134.787405px;}
.x2_c01232{left:147.000000px;}
.x4_c01232{left:432.515100px;}
.x5_c01232{left:817.725150px;}
@media print{
.v0_c01232{vertical-align:0.000000pt;}
.ls1_c01232{letter-spacing:0.000000pt;}
.ls0_c01232{letter-spacing:0.010667pt;}
.ws0_c01232{word-spacing:0.000000pt;}
._0_c01232{margin-left:-9.408000pt;}
._f_c01232{margin-left:-6.227200pt;}
._7_c01232{margin-left:-4.236800pt;}
._c_c01232{margin-left:-2.732800pt;}
._4_c01232{margin-left:-1.676800pt;}
._3_c01232{width:1.440000pt;}
._1_c01232{width:2.598400pt;}
._2_c01232{width:4.064000pt;}
._5_c01232{width:5.011200pt;}
._e_c01232{width:6.240000pt;}
._d_c01232{width:7.827200pt;}
._10_c01232{width:9.011200pt;}
._11_c01232{width:10.758400pt;}
._b_c01232{width:11.897600pt;}
._a_c01232{width:13.350400pt;}
._6_c01232{width:14.521600pt;}
._9_c01232{width:15.936000pt;}
._8_c01232{width:20.172800pt;}
.fs1_c01232{font-size:48.000000pt;}
.fs2_c01232{font-size:53.333333pt;}
.fs0_c01232{font-size:64.000000pt;}
.y0_c01232{bottom:0.000000pt;}
.y8_c01232{bottom:10.666667pt;}
.yd_c01232{bottom:60.000000pt;}
.yb_c01232{bottom:188.000000pt;}
.ya_c01232{bottom:212.000000pt;}
.y9_c01232{bottom:236.000000pt;}
.y7_c01232{bottom:276.000000pt;}
.y6_c01232{bottom:853.333333pt;}
.y5_c01232{bottom:877.333333pt;}
.y4_c01232{bottom:901.333333pt;}
.y3_c01232{bottom:925.333333pt;}
.y2_c01232{bottom:949.333333pt;}
.y1_c01232{bottom:973.333333pt;}
.yc_c01232{bottom:1061.333333pt;}
.h3_c01232{height:37.007812pt;}
.h1_c01232{height:45.500000pt;}
.h4_c01232{height:49.843750pt;}
.h2_c01232{height:549.333333pt;}
.h0_c01232{height:1122.666667pt;}
.w1_c01232{width:608.399867pt;}
.w0_c01232{width:793.333333pt;}
.x0_c01232{left:0.000000pt;}
.x3_c01232{left:80.770267pt;}
.x1_c01232{left:119.811027pt;}
.x2_c01232{left:130.666667pt;}
.x4_c01232{left:384.457867pt;}
.x5_c01232{left:726.866800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_53ee20331e7eaaa13274a88d.woff2')format("woff");}.ff1_c01233{font-family:ff1_c01233;line-height:0.963867;font-style:normal;font-weight:normal;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_6dc5158877c6c6f5e3be5684.woff2')format("woff");}.ff2_c01233{font-family:ff2_c01233;line-height:0.931152;font-style:normal;font-weight:normal;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_7359a21ad219827964989a5f.woff2')format("woff");}.ff3_c01233{font-family:ff3_c01233;line-height:0.755859;font-style:normal;font-weight:normal;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_86df65c3478ae15bc257a77d.woff2')format("woff");}.ff4_c01233{font-family:ff4_c01233;line-height:1.155762;font-style: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;}
.ls1_c01233{letter-spacing:0.000000px;}
.ls2_c01233{letter-spacing:0.012000px;}
.ls0_c01233{letter-spacing:0.021600px;}
.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;}
}
.ws0_c01233{word-spacing:0.000000px;}
._6_c01233{margin-left:-3.216000px;}
._1_c01233{margin-left:-2.095200px;}
._4_c01233{width:1.288800px;}
._3_c01233{width:2.700000px;}
._0_c01233{width:3.931200px;}
._5_c01233{width:5.097600px;}
._2_c01233{width:6.134400px;}
.fc0_c01233{color:rgb(0,0,0);}
.fs0_c01233{font-size:54.000000px;}
.fs2_c01233{font-size:60.000000px;}
.fs1_c01233{font-size:72.000000px;}
.y0_c01233{bottom:0.000000px;}
.y5_c01233{bottom:10.500000px;}
.y2_c01233{bottom:12.000000px;}
.y4_c01233{bottom:28.500000px;}
.y9_c01233{bottom:67.500000px;}
.y7_c01233{bottom:223.500000px;}
.y6_c01233{bottom:250.500000px;}
.y3_c01233{bottom:295.500000px;}
.y1_c01233{bottom:765.000000px;}
.y8_c01233{bottom:1194.000000px;}
.h2_c01233{height:41.633789px;}
.h6_c01233{height:44.208984px;}
.h4_c01233{height:51.187500px;}
.h5_c01233{height:56.074219px;}
.h1_c01233{height:348.000000px;}
.h3_c01233{height:441.000000px;}
.h0_c01233{height:1263.000000px;}
.w1_c01233{width:684.449850px;}
.w0_c01233{width:892.500000px;}
.x0_c01233{left:0.000000px;}
.x3_c01233{left:16.728600px;}
.x5_c01233{left:49.748025px;}
.x1_c01233{left:61.500000px;}
.x2_c01233{left:256.066800px;}
.x4_c01233{left:296.224050px;}
@media print{
.v0_c01233{vertical-align:0.000000pt;}
.ls1_c01233{letter-spacing:0.000000pt;}
.ls2_c01233{letter-spacing:0.010667pt;}
.ls0_c01233{letter-spacing:0.019200pt;}
.ws0_c01233{word-spacing:0.000000pt;}
._6_c01233{margin-left:-2.858667pt;}
._1_c01233{margin-left:-1.862400pt;}
._4_c01233{width:1.145600pt;}
._3_c01233{width:2.400000pt;}
._0_c01233{width:3.494400pt;}
._5_c01233{width:4.531200pt;}
._2_c01233{width:5.452800pt;}
.fs0_c01233{font-size:48.000000pt;}
.fs2_c01233{font-size:53.333333pt;}
.fs1_c01233{font-size:64.000000pt;}
.y0_c01233{bottom:0.000000pt;}
.y5_c01233{bottom:9.333333pt;}
.y2_c01233{bottom:10.666667pt;}
.y4_c01233{bottom:25.333333pt;}
.y9_c01233{bottom:60.000000pt;}
.y7_c01233{bottom:198.666667pt;}
.y6_c01233{bottom:222.666667pt;}
.y3_c01233{bottom:262.666667pt;}
.y1_c01233{bottom:680.000000pt;}
.y8_c01233{bottom:1061.333333pt;}
.h2_c01233{height:37.007812pt;}
.h6_c01233{height:39.296875pt;}
.h4_c01233{height:45.500000pt;}
.h5_c01233{height:49.843750pt;}
.h1_c01233{height:309.333333pt;}
.h3_c01233{height:392.000000pt;}
.h0_c01233{height:1122.666667pt;}
.w1_c01233{width:608.399867pt;}
.w0_c01233{width:793.333333pt;}
.x0_c01233{left:0.000000pt;}
.x3_c01233{left:14.869867pt;}
.x5_c01233{left:44.220467pt;}
.x1_c01233{left:54.666667pt;}
.x2_c01233{left:227.614933pt;}
.x4_c01233{left:263.310267pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b9b5de531f129911b69ee173.woff2')format("woff");}.ff1_c01234{font-family:ff1_c01234;line-height:0.975586;font-style:normal;font-weight:normal;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_685e9ec6f69d53b0b093e7c4.woff2')format("woff");}.ff2_c01234{font-family:ff2_c01234;line-height:0.933105;font-style:normal;font-weight:normal;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_d8d00168e80c983c33b184e0.woff2')format("woff");}.ff3_c01234{font-family:ff3_c01234;line-height:1.155762;font-style: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);}
.v0_c01234{vertical-align:0.000000px;}
.ls1_c01234{letter-spacing:0.000000px;}
.ls0_c01234{letter-spacing:0.012000px;}
.ls2_c01234{letter-spacing:0.021600px;}
.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;}
}
.ws0_c01234{word-spacing:0.000000px;}
._0_c01234{margin-left:-3.168000px;}
._9_c01234{margin-left:-2.066400px;}
._12_c01234{margin-left:-1.051200px;}
._5_c01234{width:1.562400px;}
._2_c01234{width:2.952000px;}
._7_c01234{width:4.384800px;}
._10_c01234{width:5.680800px;}
._15_c01234{width:8.330400px;}
._d_c01234{width:10.101600px;}
._11_c01234{width:11.916000px;}
._b_c01234{width:12.960000px;}
._c_c01234{width:14.508000px;}
._13_c01234{width:15.516000px;}
._e_c01234{width:16.531200px;}
._f_c01234{width:17.611200px;}
._14_c01234{width:18.669600px;}
._8_c01234{width:23.522400px;}
._3_c01234{width:24.926400px;}
._6_c01234{width:26.316000px;}
._4_c01234{width:27.907200px;}
._a_c01234{width:29.988000px;}
._1_c01234{width:31.039200px;}
.fc0_c01234{color:rgb(0,0,0);}
.fs0_c01234{font-size:54.000000px;}
.fs2_c01234{font-size:60.000000px;}
.fs1_c01234{font-size:72.000000px;}
.y0_c01234{bottom:0.000000px;}
.yb_c01234{bottom:10.500000px;}
.y2_c01234{bottom:12.000000px;}
.ya_c01234{bottom:28.500000px;}
.yd_c01234{bottom:67.500000px;}
.y9_c01234{bottom:175.500000px;}
.y8_c01234{bottom:573.000000px;}
.y7_c01234{bottom:600.000000px;}
.y6_c01234{bottom:627.000000px;}
.y5_c01234{bottom:654.000000px;}
.y4_c01234{bottom:681.000000px;}
.y3_c01234{bottom:708.000000px;}
.y1_c01234{bottom:753.000000px;}
.yc_c01234{bottom:1194.000000px;}
.h2_c01234{height:41.633789px;}
.h3_c01234{height:51.187500px;}
.h5_c01234{height:56.074219px;}
.h1_c01234{height:360.000000px;}
.h4_c01234{height:366.000000px;}
.h0_c01234{height:1263.000000px;}
.w1_c01234{width:684.449850px;}
.w0_c01234{width:892.500000px;}
.x0_c01234{left:0.000000px;}
.x4_c01234{left:33.765105px;}
.x3_c01234{left:134.787405px;}
.x1_c01234{left:147.000000px;}
.x2_c01234{left:271.201650px;}
.x5_c01234{left:275.446800px;}
.x6_c01234{left:432.515100px;}
.x7_c01234{left:817.725150px;}
@media print{
.v0_c01234{vertical-align:0.000000pt;}
.ls1_c01234{letter-spacing:0.000000pt;}
.ls0_c01234{letter-spacing:0.010667pt;}
.ls2_c01234{letter-spacing:0.019200pt;}
.ws0_c01234{word-spacing:0.000000pt;}
._0_c01234{margin-left:-2.816000pt;}
._9_c01234{margin-left:-1.836800pt;}
._12_c01234{margin-left:-0.934400pt;}
._5_c01234{width:1.388800pt;}
._2_c01234{width:2.624000pt;}
._7_c01234{width:3.897600pt;}
._10_c01234{width:5.049600pt;}
._15_c01234{width:7.404800pt;}
._d_c01234{width:8.979200pt;}
._11_c01234{width:10.592000pt;}
._b_c01234{width:11.520000pt;}
._c_c01234{width:12.896000pt;}
._13_c01234{width:13.792000pt;}
._e_c01234{width:14.694400pt;}
._f_c01234{width:15.654400pt;}
._14_c01234{width:16.595200pt;}
._8_c01234{width:20.908800pt;}
._3_c01234{width:22.156800pt;}
._6_c01234{width:23.392000pt;}
._4_c01234{width:24.806400pt;}
._a_c01234{width:26.656000pt;}
._1_c01234{width:27.590400pt;}
.fs0_c01234{font-size:48.000000pt;}
.fs2_c01234{font-size:53.333333pt;}
.fs1_c01234{font-size:64.000000pt;}
.y0_c01234{bottom:0.000000pt;}
.yb_c01234{bottom:9.333333pt;}
.y2_c01234{bottom:10.666667pt;}
.ya_c01234{bottom:25.333333pt;}
.yd_c01234{bottom:60.000000pt;}
.y9_c01234{bottom:156.000000pt;}
.y8_c01234{bottom:509.333333pt;}
.y7_c01234{bottom:533.333333pt;}
.y6_c01234{bottom:557.333333pt;}
.y5_c01234{bottom:581.333333pt;}
.y4_c01234{bottom:605.333333pt;}
.y3_c01234{bottom:629.333333pt;}
.y1_c01234{bottom:669.333333pt;}
.yc_c01234{bottom:1061.333333pt;}
.h2_c01234{height:37.007812pt;}
.h3_c01234{height:45.500000pt;}
.h5_c01234{height:49.843750pt;}
.h1_c01234{height:320.000000pt;}
.h4_c01234{height:325.333333pt;}
.h0_c01234{height:1122.666667pt;}
.w1_c01234{width:608.399867pt;}
.w0_c01234{width:793.333333pt;}
.x0_c01234{left:0.000000pt;}
.x4_c01234{left:30.013427pt;}
.x3_c01234{left:119.811027pt;}
.x1_c01234{left:130.666667pt;}
.x2_c01234{left:241.068133pt;}
.x5_c01234{left:244.841600pt;}
.x6_c01234{left:384.457867pt;}
.x7_c01234{left:726.866800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1bb52009a310bfd3d17f291b.woff2')format("woff");}.ff1_c01235{font-family:ff1_c01235;line-height:0.987793;font-style:normal;font-weight:normal;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_04dccbc701b60cf11f34d70c.woff2')format("woff");}.ff2_c01235{font-family:ff2_c01235;line-height:0.934082;font-style:normal;font-weight:normal;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_dc783102f6d75f93fd67727a.woff2')format("woff");}.ff3_c01235{font-family:ff3_c01235;line-height:0.884766;font-style:normal;font-weight:normal;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_871c2bec675c7cb00e215a4c.woff2')format("woff");}.ff4_c01235{font-family:ff4_c01235;line-height:0.755859;font-style:normal;font-weight:normal;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_23aad66ef37bad0ce83a2dfb.woff2')format("woff");}.ff5_c01235{font-family:ff5_c01235;line-height:1.155762;font-style: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);}
.v0_c01235{vertical-align:0.000000px;}
.ls0_c01235{letter-spacing:0.000000px;}
.ls1_c01235{letter-spacing:0.012000px;}
.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;}
}
.ws0_c01235{word-spacing:0.000000px;}
._12_c01235{margin-left:-5.198400px;}
._1_c01235{margin-left:-3.859200px;}
._b_c01235{margin-left:-2.325600px;}
._5_c01235{margin-left:-1.116000px;}
._3_c01235{width:1.915200px;}
._9_c01235{width:3.585600px;}
._8_c01235{width:5.522400px;}
._d_c01235{width:6.595200px;}
._a_c01235{width:9.388800px;}
._c_c01235{width:10.929600px;}
._4_c01235{width:12.571200px;}
._7_c01235{width:14.090400px;}
._0_c01235{width:15.242400px;}
._6_c01235{width:17.071200px;}
._2_c01235{width:18.367200px;}
._15_c01235{width:21.477600px;}
._11_c01235{width:22.989600px;}
._14_c01235{width:24.840000px;}
._16_c01235{width:26.020800px;}
._13_c01235{width:27.381600px;}
._e_c01235{width:29.527200px;}
._10_c01235{width:31.528800px;}
._f_c01235{width:33.710400px;}
.fc0_c01235{color:rgb(0,0,0);}
.fs0_c01235{font-size:54.000000px;}
.fs2_c01235{font-size:60.000000px;}
.fs1_c01235{font-size:72.000000px;}
.y0_c01235{bottom:0.000000px;}
.y2_c01235{bottom:12.000000px;}
.y13_c01235{bottom:67.500000px;}
.y11_c01235{bottom:171.000000px;}
.y10_c01235{bottom:198.000000px;}
.yf_c01235{bottom:225.000000px;}
.ye_c01235{bottom:252.000000px;}
.yd_c01235{bottom:279.000000px;}
.yc_c01235{bottom:306.000000px;}
.yb_c01235{bottom:354.000000px;}
.ya_c01235{bottom:381.000000px;}
.y9_c01235{bottom:408.000000px;}
.y8_c01235{bottom:435.000000px;}
.y7_c01235{bottom:462.000000px;}
.y6_c01235{bottom:508.500000px;}
.y5_c01235{bottom:577.500000px;}
.y4_c01235{bottom:604.500000px;}
.y3_c01235{bottom:631.500000px;}
.y1_c01235{bottom:676.500000px;}
.y12_c01235{bottom:1194.000000px;}
.h2_c01235{height:42.292969px;}
.h6_c01235{height:44.208984px;}
.h4_c01235{height:50.976562px;}
.h3_c01235{height:51.257812px;}
.h5_c01235{height:56.074219px;}
.h1_c01235{height:436.500000px;}
.h0_c01235{height:1263.000000px;}
.w1_c01235{width:684.449850px;}
.w0_c01235{width:892.500000px;}
.x0_c01235{left:0.000000px;}
.x3_c01235{left:49.748025px;}
.x1_c01235{left:61.500000px;}
.x2_c01235{left:88.595670px;}
@media print{
.v0_c01235{vertical-align:0.000000pt;}
.ls0_c01235{letter-spacing:0.000000pt;}
.ls1_c01235{letter-spacing:0.010667pt;}
.ws0_c01235{word-spacing:0.000000pt;}
._12_c01235{margin-left:-4.620800pt;}
._1_c01235{margin-left:-3.430400pt;}
._b_c01235{margin-left:-2.067200pt;}
._5_c01235{margin-left:-0.992000pt;}
._3_c01235{width:1.702400pt;}
._9_c01235{width:3.187200pt;}
._8_c01235{width:4.908800pt;}
._d_c01235{width:5.862400pt;}
._a_c01235{width:8.345600pt;}
._c_c01235{width:9.715200pt;}
._4_c01235{width:11.174400pt;}
._7_c01235{width:12.524800pt;}
._0_c01235{width:13.548800pt;}
._6_c01235{width:15.174400pt;}
._2_c01235{width:16.326400pt;}
._15_c01235{width:19.091200pt;}
._11_c01235{width:20.435200pt;}
._14_c01235{width:22.080000pt;}
._16_c01235{width:23.129600pt;}
._13_c01235{width:24.339200pt;}
._e_c01235{width:26.246400pt;}
._10_c01235{width:28.025600pt;}
._f_c01235{width:29.964800pt;}
.fs0_c01235{font-size:48.000000pt;}
.fs2_c01235{font-size:53.333333pt;}
.fs1_c01235{font-size:64.000000pt;}
.y0_c01235{bottom:0.000000pt;}
.y2_c01235{bottom:10.666667pt;}
.y13_c01235{bottom:60.000000pt;}
.y11_c01235{bottom:152.000000pt;}
.y10_c01235{bottom:176.000000pt;}
.yf_c01235{bottom:200.000000pt;}
.ye_c01235{bottom:224.000000pt;}
.yd_c01235{bottom:248.000000pt;}
.yc_c01235{bottom:272.000000pt;}
.yb_c01235{bottom:314.666667pt;}
.ya_c01235{bottom:338.666667pt;}
.y9_c01235{bottom:362.666667pt;}
.y8_c01235{bottom:386.666667pt;}
.y7_c01235{bottom:410.666667pt;}
.y6_c01235{bottom:452.000000pt;}
.y5_c01235{bottom:513.333333pt;}
.y4_c01235{bottom:537.333333pt;}
.y3_c01235{bottom:561.333333pt;}
.y1_c01235{bottom:601.333333pt;}
.y12_c01235{bottom:1061.333333pt;}
.h2_c01235{height:37.593750pt;}
.h6_c01235{height:39.296875pt;}
.h4_c01235{height:45.312500pt;}
.h3_c01235{height:45.562500pt;}
.h5_c01235{height:49.843750pt;}
.h1_c01235{height:388.000000pt;}
.h0_c01235{height:1122.666667pt;}
.w1_c01235{width:608.399867pt;}
.w0_c01235{width:793.333333pt;}
.x0_c01235{left:0.000000pt;}
.x3_c01235{left:44.220467pt;}
.x1_c01235{left:54.666667pt;}
.x2_c01235{left:78.751707pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_560e5a0f8966bf33da2a8590.woff2')format("woff");}.ff1_c01236{font-family:ff1_c01236;line-height:0.976074;font-style:normal;font-weight:normal;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_0deb4deb67890df6ebe1f751.woff2')format("woff");}.ff2_c01236{font-family:ff2_c01236;line-height:0.934082;font-style:normal;font-weight:normal;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_432b5386adace80d5fecf934.woff2')format("woff");}.ff3_c01236{font-family:ff3_c01236;line-height:1.155762;font-style: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;}
.ls1_c01236{letter-spacing:0.000000px;}
.ls0_c01236{letter-spacing:0.012000px;}
.ls2_c01236{letter-spacing:0.021600px;}
.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;}
}
.ws0_c01236{word-spacing:0.000000px;}
._d_c01236{margin-left:-10.548000px;}
._c_c01236{margin-left:-7.574400px;}
._0_c01236{margin-left:-3.945600px;}
._b_c01236{margin-left:-1.929600px;}
._1_c01236{width:1.540800px;}
._3_c01236{width:2.764800px;}
._9_c01236{width:4.032000px;}
._7_c01236{width:5.155200px;}
._a_c01236{width:10.058400px;}
._8_c01236{width:14.061600px;}
._4_c01236{width:16.495200px;}
._2_c01236{width:17.704800px;}
._6_c01236{width:18.727200px;}
._5_c01236{width:23.155200px;}
.fc0_c01236{color:rgb(0,0,0);}
.fs0_c01236{font-size:54.000000px;}
.fs2_c01236{font-size:60.000000px;}
.fs1_c01236{font-size:72.000000px;}
.y0_c01236{bottom:0.000000px;}
.y2_c01236{bottom:12.000000px;}
.yb_c01236{bottom:67.500000px;}
.y9_c01236{bottom:165.000000px;}
.y8_c01236{bottom:192.000000px;}
.y7_c01236{bottom:219.000000px;}
.y6_c01236{bottom:246.000000px;}
.y5_c01236{bottom:291.000000px;}
.y4_c01236{bottom:672.000000px;}
.y3_c01236{bottom:699.000000px;}
.y1_c01236{bottom:744.000000px;}
.ya_c01236{bottom:1194.000000px;}
.h2_c01236{height:42.292969px;}
.h3_c01236{height:51.257812px;}
.h5_c01236{height:56.074219px;}
.h4_c01236{height:349.500000px;}
.h1_c01236{height:369.000000px;}
.h0_c01236{height:1263.000000px;}
.w1_c01236{width:684.449850px;}
.w0_c01236{width:892.500000px;}
.x0_c01236{left:0.000000px;}
.x3_c01236{left:83.955045px;}
.x1_c01236{left:135.000000px;}
.x2_c01236{left:272.015700px;}
.x4_c01236{left:432.515100px;}
.x5_c01236{left:817.725150px;}
@media print{
.v0_c01236{vertical-align:0.000000pt;}
.ls1_c01236{letter-spacing:0.000000pt;}
.ls0_c01236{letter-spacing:0.010667pt;}
.ls2_c01236{letter-spacing:0.019200pt;}
.ws0_c01236{word-spacing:0.000000pt;}
._d_c01236{margin-left:-9.376000pt;}
._c_c01236{margin-left:-6.732800pt;}
._0_c01236{margin-left:-3.507200pt;}
._b_c01236{margin-left:-1.715200pt;}
._1_c01236{width:1.369600pt;}
._3_c01236{width:2.457600pt;}
._9_c01236{width:3.584000pt;}
._7_c01236{width:4.582400pt;}
._a_c01236{width:8.940800pt;}
._8_c01236{width:12.499200pt;}
._4_c01236{width:14.662400pt;}
._2_c01236{width:15.737600pt;}
._6_c01236{width:16.646400pt;}
._5_c01236{width:20.582400pt;}
.fs0_c01236{font-size:48.000000pt;}
.fs2_c01236{font-size:53.333333pt;}
.fs1_c01236{font-size:64.000000pt;}
.y0_c01236{bottom:0.000000pt;}
.y2_c01236{bottom:10.666667pt;}
.yb_c01236{bottom:60.000000pt;}
.y9_c01236{bottom:146.666667pt;}
.y8_c01236{bottom:170.666667pt;}
.y7_c01236{bottom:194.666667pt;}
.y6_c01236{bottom:218.666667pt;}
.y5_c01236{bottom:258.666667pt;}
.y4_c01236{bottom:597.333333pt;}
.y3_c01236{bottom:621.333333pt;}
.y1_c01236{bottom:661.333333pt;}
.ya_c01236{bottom:1061.333333pt;}
.h2_c01236{height:37.593750pt;}
.h3_c01236{height:45.562500pt;}
.h5_c01236{height:49.843750pt;}
.h4_c01236{height:310.666667pt;}
.h1_c01236{height:328.000000pt;}
.h0_c01236{height:1122.666667pt;}
.w1_c01236{width:608.399867pt;}
.w0_c01236{width:793.333333pt;}
.x0_c01236{left:0.000000pt;}
.x3_c01236{left:74.626707pt;}
.x1_c01236{left:120.000000pt;}
.x2_c01236{left:241.791733pt;}
.x4_c01236{left:384.457867pt;}
.x5_c01236{left:726.866800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ef10e2d3c75b447c94da4228.woff2')format("woff");}.ff1_c01237{font-family:ff1_c01237;line-height:0.934082;font-style:normal;font-weight:normal;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_a29162b68fee8d6f56f6bdd0.woff2')format("woff");}.ff2_c01237{font-family:ff2_c01237;line-height:0.936035;font-style:normal;font-weight:normal;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_298e2c8979f3a05bd102cf3c.woff2')format("woff");}.ff3_c01237{font-family:ff3_c01237;line-height:0.931152;font-style:normal;font-weight:normal;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_36586165784b7aedfefb91e1.woff2')format("woff");}.ff4_c01237{font-family:ff4_c01237;line-height:0.755859;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01237;src:url('chunks/assets/font_04a1fba186759342cef1c5e5.woff2')format("woff");}.ff5_c01237{font-family:ff5_c01237;line-height:1.155762;font-style:normal;font-weight: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_c01237;src:url('chunks/assets/font_3bdae2ff336f5b0294ce5a89.woff2')format("woff");}.ff6_c01237{font-family:ff6_c01237;line-height:1.114746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01237;src:url('chunks/assets/font_239a478a7174d500a3f1fc9f.woff2')format("woff");}.ff7_c01237{font-family:ff7_c01237;line-height:0.888672;font-style: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);}
.m1_c01237{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3_c01237{vertical-align:-33.000000px;}
.v2_c01237{vertical-align:-23.086200px;}
.v0_c01237{vertical-align:0.000000px;}
.v1_c01237{vertical-align:23.086200px;}
.ls1_c01237{letter-spacing:-0.009600px;}
.ls0_c01237{letter-spacing:0.000000px;}
.ls2_c01237{letter-spacing:0.012000px;}
.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:-19.800000px;}
.ws1_c01237{word-spacing:-13.190400px;}
.ws2_c01237{word-spacing:-10.000001px;}
.ws3_c01237{word-spacing:0.000000px;}
._a_c01237{margin-left:-10.087200px;}
._19_c01237{margin-left:-6.760800px;}
._d_c01237{margin-left:-4.874400px;}
._15_c01237{margin-left:-3.808800px;}
._3_c01237{margin-left:-2.455200px;}
._6_c01237{margin-left:-1.188000px;}
._1_c01237{width:1.404000px;}
._5_c01237{width:2.462400px;}
._2_c01237{width:3.506400px;}
._0_c01237{width:4.852800px;}
._7_c01237{width:6.048000px;}
._4_c01237{width:7.243200px;}
._9_c01237{width:9.122400px;}
._8_c01237{width:10.836000px;}
._f_c01237{width:12.902400px;}
._11_c01237{width:14.090400px;}
._c_c01237{width:15.386400px;}
._b_c01237{width:16.711200px;}
._10_c01237{width:18.763200px;}
._12_c01237{width:21.376800px;}
._e_c01237{width:22.816800px;}
._13_c01237{width:24.530400px;}
._17_c01237{width:25.660800px;}
._14_c01237{width:26.978400px;}
._16_c01237{width:28.468800px;}
._18_c01237{width:29.800800px;}
.fc0_c01237{color:rgb(0,0,0);}
.fs3_c01237{font-size:40.000002px;}
.fs1_c01237{font-size:48.000000px;}
.fs2_c01237{font-size:60.000000px;}
.fs0_c01237{font-size:72.000000px;}
.y0_c01237{bottom:0.000000px;}
.y1f_c01237{bottom:67.500000px;}
.y21_c01237{bottom:132.000000px;}
.y20_c01237{bottom:159.750000px;}
.y1d_c01237{bottom:214.500000px;}
.y1c_c01237{bottom:241.500000px;}
.y1b_c01237{bottom:268.500000px;}
.y1a_c01237{bottom:295.500000px;}
.y19_c01237{bottom:343.500000px;}
.y18_c01237{bottom:391.500000px;}
.y17_c01237{bottom:418.500000px;}
.y16_c01237{bottom:466.500000px;}
.y15_c01237{bottom:493.500000px;}
.y14_c01237{bottom:520.500000px;}
.y13_c01237{bottom:547.500000px;}
.y12_c01237{bottom:574.500000px;}
.y11_c01237{bottom:621.000000px;}
.y10_c01237{bottom:690.000000px;}
.yf_c01237{bottom:717.000000px;}
.ye_c01237{bottom:744.000000px;}
.yd_c01237{bottom:771.000000px;}
.yc_c01237{bottom:798.000000px;}
.yb_c01237{bottom:825.000000px;}
.ya_c01237{bottom:852.000000px;}
.y9_c01237{bottom:879.000000px;}
.y8_c01237{bottom:906.000000px;}
.y7_c01237{bottom:933.000000px;}
.y6_c01237{bottom:960.000000px;}
.y5_c01237{bottom:987.000000px;}
.y4_c01237{bottom:1014.000000px;}
.y3_c01237{bottom:1041.000000px;}
.y2_c01237{bottom:1068.000000px;}
.y1_c01237{bottom:1095.000000px;}
.y1e_c01237{bottom:1194.000000px;}
.h6_c01237{height:35.878908px;}
.h5_c01237{height:44.208984px;}
.h1_c01237{height:51.257812px;}
.h2_c01237{height:51.539062px;}
.h7_c01237{height:53.818359px;}
.h4_c01237{height:56.074219px;}
.h3_c01237{height:57.258075px;}
.h0_c01237{height:1263.000000px;}
.w0_c01237{width:892.500000px;}
.x0_c01237{left:0.000000px;}
.x1_c01237{left:49.748025px;}
@media print{
.v3_c01237{vertical-align:-29.333333pt;}
.v2_c01237{vertical-align:-20.521067pt;}
.v0_c01237{vertical-align:0.000000pt;}
.v1_c01237{vertical-align:20.521067pt;}
.ls1_c01237{letter-spacing:-0.008533pt;}
.ls0_c01237{letter-spacing:0.000000pt;}
.ls2_c01237{letter-spacing:0.010667pt;}
.ws0_c01237{word-spacing:-17.600000pt;}
.ws1_c01237{word-spacing:-11.724800pt;}
.ws2_c01237{word-spacing:-8.888889pt;}
.ws3_c01237{word-spacing:0.000000pt;}
._a_c01237{margin-left:-8.966400pt;}
._19_c01237{margin-left:-6.009600pt;}
._d_c01237{margin-left:-4.332800pt;}
._15_c01237{margin-left:-3.385600pt;}
._3_c01237{margin-left:-2.182400pt;}
._6_c01237{margin-left:-1.056000pt;}
._1_c01237{width:1.248000pt;}
._5_c01237{width:2.188800pt;}
._2_c01237{width:3.116800pt;}
._0_c01237{width:4.313600pt;}
._7_c01237{width:5.376000pt;}
._4_c01237{width:6.438400pt;}
._9_c01237{width:8.108800pt;}
._8_c01237{width:9.632000pt;}
._f_c01237{width:11.468800pt;}
._11_c01237{width:12.524800pt;}
._c_c01237{width:13.676800pt;}
._b_c01237{width:14.854400pt;}
._10_c01237{width:16.678400pt;}
._12_c01237{width:19.001600pt;}
._e_c01237{width:20.281600pt;}
._13_c01237{width:21.804800pt;}
._17_c01237{width:22.809600pt;}
._14_c01237{width:23.980800pt;}
._16_c01237{width:25.305600pt;}
._18_c01237{width:26.489600pt;}
.fs3_c01237{font-size:35.555557pt;}
.fs1_c01237{font-size:42.666667pt;}
.fs2_c01237{font-size:53.333333pt;}
.fs0_c01237{font-size:64.000000pt;}
.y0_c01237{bottom:0.000000pt;}
.y1f_c01237{bottom:60.000000pt;}
.y21_c01237{bottom:117.333333pt;}
.y20_c01237{bottom:142.000000pt;}
.y1d_c01237{bottom:190.666667pt;}
.y1c_c01237{bottom:214.666667pt;}
.y1b_c01237{bottom:238.666667pt;}
.y1a_c01237{bottom:262.666667pt;}
.y19_c01237{bottom:305.333333pt;}
.y18_c01237{bottom:348.000000pt;}
.y17_c01237{bottom:372.000000pt;}
.y16_c01237{bottom:414.666667pt;}
.y15_c01237{bottom:438.666667pt;}
.y14_c01237{bottom:462.666667pt;}
.y13_c01237{bottom:486.666667pt;}
.y12_c01237{bottom:510.666667pt;}
.y11_c01237{bottom:552.000000pt;}
.y10_c01237{bottom:613.333333pt;}
.yf_c01237{bottom:637.333333pt;}
.ye_c01237{bottom:661.333333pt;}
.yd_c01237{bottom:685.333333pt;}
.yc_c01237{bottom:709.333333pt;}
.yb_c01237{bottom:733.333333pt;}
.ya_c01237{bottom:757.333333pt;}
.y9_c01237{bottom:781.333333pt;}
.y8_c01237{bottom:805.333333pt;}
.y7_c01237{bottom:829.333333pt;}
.y6_c01237{bottom:853.333333pt;}
.y5_c01237{bottom:877.333333pt;}
.y4_c01237{bottom:901.333333pt;}
.y3_c01237{bottom:925.333333pt;}
.y2_c01237{bottom:949.333333pt;}
.y1_c01237{bottom:973.333333pt;}
.y1e_c01237{bottom:1061.333333pt;}
.h6_c01237{height:31.892363pt;}
.h5_c01237{height:39.296875pt;}
.h1_c01237{height:45.562500pt;}
.h2_c01237{height:45.812500pt;}
.h7_c01237{height:47.838542pt;}
.h4_c01237{height:49.843750pt;}
.h3_c01237{height:50.896067pt;}
.h0_c01237{height:1122.666667pt;}
.w0_c01237{width:793.333333pt;}
.x0_c01237{left:0.000000pt;}
.x1_c01237{left:44.220467pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7924787a7ebd293aebfbce8c.woff2')format("woff");}.ff1_c01238{font-family:ff1_c01238;line-height:0.963867;font-style:normal;font-weight:normal;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_132e4de8e51c3065993d7eb3.woff2')format("woff");}.ff2_c01238{font-family:ff2_c01238;line-height:0.934082;font-style:normal;font-weight:normal;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_0256aeb6f306a14f6936a12a.woff2')format("woff");}.ff3_c01238{font-family:ff3_c01238;line-height:1.155762;font-style: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);}
.v0_c01238{vertical-align:0.000000px;}
.ls1_c01238{letter-spacing:0.000000px;}
.ls0_c01238{letter-spacing:0.012000px;}
.ls2_c01238{letter-spacing:0.021600px;}
.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;}
}
.ws0_c01238{word-spacing:0.000000px;}
._0_c01238{margin-left:-10.584000px;}
._f_c01238{margin-left:-7.156800px;}
._10_c01238{margin-left:-4.708800px;}
._a_c01238{margin-left:-3.528000px;}
._2_c01238{margin-left:-2.044800px;}
._4_c01238{margin-left:-1.044000px;}
._5_c01238{width:1.000800px;}
._3_c01238{width:2.937600px;}
._1_c01238{width:3.945600px;}
._6_c01238{width:5.868000px;}
._7_c01238{width:6.890400px;}
._9_c01238{width:7.963200px;}
._8_c01238{width:9.892800px;}
._11_c01238{width:12.470400px;}
._e_c01238{width:13.478400px;}
._c_c01238{width:15.321600px;}
._d_c01238{width:16.372800px;}
._b_c01238{width:18.396000px;}
._12_c01238{width:21.340800px;}
._13_c01238{width:22.867200px;}
._14_c01238{width:25.243200px;}
.fc0_c01238{color:rgb(0,0,0);}
.fs0_c01238{font-size:54.000000px;}
.fs2_c01238{font-size:60.000000px;}
.fs1_c01238{font-size:72.000000px;}
.y0_c01238{bottom:0.000000px;}
.y2_c01238{bottom:12.000000px;}
.ye_c01238{bottom:67.500000px;}
.yc_c01238{bottom:132.000000px;}
.yb_c01238{bottom:549.000000px;}
.ya_c01238{bottom:576.000000px;}
.y9_c01238{bottom:603.000000px;}
.y8_c01238{bottom:630.000000px;}
.y7_c01238{bottom:657.000000px;}
.y6_c01238{bottom:705.000000px;}
.y5_c01238{bottom:732.000000px;}
.y4_c01238{bottom:759.000000px;}
.y3_c01238{bottom:786.000000px;}
.y1_c01238{bottom:831.000000px;}
.yd_c01238{bottom:1194.000000px;}
.h2_c01238{height:41.633789px;}
.h3_c01238{height:51.257812px;}
.h5_c01238{height:56.074219px;}
.h1_c01238{height:282.000000px;}
.h4_c01238{height:385.500000px;}
.h0_c01238{height:1263.000000px;}
.w1_c01238{width:684.449850px;}
.w0_c01238{width:892.500000px;}
.x0_c01238{left:0.000000px;}
.x3_c01238{left:131.755470px;}
.x1_c01238{left:135.000000px;}
.x2_c01238{left:210.998700px;}
.x4_c01238{left:432.515100px;}
.x5_c01238{left:817.725150px;}
@media print{
.v0_c01238{vertical-align:0.000000pt;}
.ls1_c01238{letter-spacing:0.000000pt;}
.ls0_c01238{letter-spacing:0.010667pt;}
.ls2_c01238{letter-spacing:0.019200pt;}
.ws0_c01238{word-spacing:0.000000pt;}
._0_c01238{margin-left:-9.408000pt;}
._f_c01238{margin-left:-6.361600pt;}
._10_c01238{margin-left:-4.185600pt;}
._a_c01238{margin-left:-3.136000pt;}
._2_c01238{margin-left:-1.817600pt;}
._4_c01238{margin-left:-0.928000pt;}
._5_c01238{width:0.889600pt;}
._3_c01238{width:2.611200pt;}
._1_c01238{width:3.507200pt;}
._6_c01238{width:5.216000pt;}
._7_c01238{width:6.124800pt;}
._9_c01238{width:7.078400pt;}
._8_c01238{width:8.793600pt;}
._11_c01238{width:11.084800pt;}
._e_c01238{width:11.980800pt;}
._c_c01238{width:13.619200pt;}
._d_c01238{width:14.553600pt;}
._b_c01238{width:16.352000pt;}
._12_c01238{width:18.969600pt;}
._13_c01238{width:20.326400pt;}
._14_c01238{width:22.438400pt;}
.fs0_c01238{font-size:48.000000pt;}
.fs2_c01238{font-size:53.333333pt;}
.fs1_c01238{font-size:64.000000pt;}
.y0_c01238{bottom:0.000000pt;}
.y2_c01238{bottom:10.666667pt;}
.ye_c01238{bottom:60.000000pt;}
.yc_c01238{bottom:117.333333pt;}
.yb_c01238{bottom:488.000000pt;}
.ya_c01238{bottom:512.000000pt;}
.y9_c01238{bottom:536.000000pt;}
.y8_c01238{bottom:560.000000pt;}
.y7_c01238{bottom:584.000000pt;}
.y6_c01238{bottom:626.666667pt;}
.y5_c01238{bottom:650.666667pt;}
.y4_c01238{bottom:674.666667pt;}
.y3_c01238{bottom:698.666667pt;}
.y1_c01238{bottom:738.666667pt;}
.yd_c01238{bottom:1061.333333pt;}
.h2_c01238{height:37.007812pt;}
.h3_c01238{height:45.562500pt;}
.h5_c01238{height:49.843750pt;}
.h1_c01238{height:250.666667pt;}
.h4_c01238{height:342.666667pt;}
.h0_c01238{height:1122.666667pt;}
.w1_c01238{width:608.399867pt;}
.w0_c01238{width:793.333333pt;}
.x0_c01238{left:0.000000pt;}
.x3_c01238{left:117.115973pt;}
.x1_c01238{left:120.000000pt;}
.x2_c01238{left:187.554400pt;}
.x4_c01238{left:384.457867pt;}
.x5_c01238{left:726.866800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9b63cd55084d53a799a3f151.woff2')format("woff");}.ff1_c01239{font-family:ff1_c01239;line-height:0.933105;font-style:normal;font-weight:normal;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_55bfd5a923fcda8bee76065a.woff2')format("woff");}.ff2_c01239{font-family:ff2_c01239;line-height:0.976074;font-style:normal;font-weight:normal;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_6065f712d5204f411e5e9b99.woff2')format("woff");}.ff3_c01239{font-family:ff3_c01239;line-height:0.755859;font-style:normal;font-weight:normal;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_b20d2ade41a49059a0ab3132.woff2')format("woff");}.ff4_c01239{font-family:ff4_c01239;line-height:1.155762;font-style: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);}
.v0_c01239{vertical-align:0.000000px;}
.ls0_c01239{letter-spacing:0.000000px;}
.ls1_c01239{letter-spacing:0.012000px;}
.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;}
}
.ws0_c01239{word-spacing:-19.800000px;}
.ws1_c01239{word-spacing:0.000000px;}
._b_c01239{margin-left:-7.624800px;}
._5_c01239{margin-left:-3.852000px;}
._3_c01239{margin-left:-2.671200px;}
._7_c01239{margin-left:-1.512000px;}
._1_c01239{width:1.497600px;}
._a_c01239{width:3.434400px;}
._9_c01239{width:4.896000px;}
._2_c01239{width:6.386400px;}
._0_c01239{width:7.869600px;}
._8_c01239{width:9.223200px;}
._4_c01239{width:10.540800px;}
._6_c01239{width:11.707200px;}
._f_c01239{width:15.278400px;}
._c_c01239{width:16.963200px;}
._d_c01239{width:18.482400px;}
._e_c01239{width:21.189600px;}
.fc0_c01239{color:rgb(0,0,0);}
.fs1_c01239{font-size:54.000000px;}
.fs2_c01239{font-size:60.000000px;}
.fs0_c01239{font-size:72.000000px;}
.y0_c01239{bottom:0.000000px;}
.y4_c01239{bottom:12.000000px;}
.yd_c01239{bottom:67.500000px;}
.yb_c01239{bottom:136.500000px;}
.ya_c01239{bottom:163.500000px;}
.y9_c01239{bottom:208.500000px;}
.y8_c01239{bottom:555.000000px;}
.y7_c01239{bottom:582.000000px;}
.y6_c01239{bottom:609.000000px;}
.y5_c01239{bottom:636.000000px;}
.y3_c01239{bottom:681.000000px;}
.y2_c01239{bottom:1068.000000px;}
.y1_c01239{bottom:1095.000000px;}
.yc_c01239{bottom:1194.000000px;}
.h3_c01239{height:42.292969px;}
.h6_c01239{height:44.208984px;}
.h1_c01239{height:51.187500px;}
.h5_c01239{height:56.074219px;}
.h4_c01239{height:315.000000px;}
.h2_c01239{height:355.500000px;}
.h0_c01239{height:1263.000000px;}
.w1_c01239{width:684.449850px;}
.w0_c01239{width:892.500000px;}
.x0_c01239{left:0.000000px;}
.x1_c01239{left:49.748025px;}
.x3_c01239{left:61.500000px;}
.x2_c01239{left:107.036220px;}
.x4_c01239{left:208.490550px;}
@media print{
.v0_c01239{vertical-align:0.000000pt;}
.ls0_c01239{letter-spacing:0.000000pt;}
.ls1_c01239{letter-spacing:0.010667pt;}
.ws0_c01239{word-spacing:-17.600000pt;}
.ws1_c01239{word-spacing:0.000000pt;}
._b_c01239{margin-left:-6.777600pt;}
._5_c01239{margin-left:-3.424000pt;}
._3_c01239{margin-left:-2.374400pt;}
._7_c01239{margin-left:-1.344000pt;}
._1_c01239{width:1.331200pt;}
._a_c01239{width:3.052800pt;}
._9_c01239{width:4.352000pt;}
._2_c01239{width:5.676800pt;}
._0_c01239{width:6.995200pt;}
._8_c01239{width:8.198400pt;}
._4_c01239{width:9.369600pt;}
._6_c01239{width:10.406400pt;}
._f_c01239{width:13.580800pt;}
._c_c01239{width:15.078400pt;}
._d_c01239{width:16.428800pt;}
._e_c01239{width:18.835200pt;}
.fs1_c01239{font-size:48.000000pt;}
.fs2_c01239{font-size:53.333333pt;}
.fs0_c01239{font-size:64.000000pt;}
.y0_c01239{bottom:0.000000pt;}
.y4_c01239{bottom:10.666667pt;}
.yd_c01239{bottom:60.000000pt;}
.yb_c01239{bottom:121.333333pt;}
.ya_c01239{bottom:145.333333pt;}
.y9_c01239{bottom:185.333333pt;}
.y8_c01239{bottom:493.333333pt;}
.y7_c01239{bottom:517.333333pt;}
.y6_c01239{bottom:541.333333pt;}
.y5_c01239{bottom:565.333333pt;}
.y3_c01239{bottom:605.333333pt;}
.y2_c01239{bottom:949.333333pt;}
.y1_c01239{bottom:973.333333pt;}
.yc_c01239{bottom:1061.333333pt;}
.h3_c01239{height:37.593750pt;}
.h6_c01239{height:39.296875pt;}
.h1_c01239{height:45.500000pt;}
.h5_c01239{height:49.843750pt;}
.h4_c01239{height:280.000000pt;}
.h2_c01239{height:316.000000pt;}
.h0_c01239{height:1122.666667pt;}
.w1_c01239{width:608.399867pt;}
.w0_c01239{width:793.333333pt;}
.x0_c01239{left:0.000000pt;}
.x1_c01239{left:44.220467pt;}
.x3_c01239{left:54.666667pt;}
.x2_c01239{left:95.143307pt;}
.x4_c01239{left:185.324933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ceb43237084ace51028f5d90.woff2')format("woff");}.ff1_c01240{font-family:ff1_c01240;line-height:0.933105;font-style:normal;font-weight:normal;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_ca67926edbcb1f13c862c36e.woff2')format("woff");}.ff2_c01240{font-family:ff2_c01240;line-height:0.963867;font-style:normal;font-weight:normal;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_eab0119ef93ea2e3ee7f10c3.woff2')format("woff");}.ff3_c01240{font-family:ff3_c01240;line-height:1.155762;font-style: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;}
.ls1_c01240{letter-spacing:0.000000px;}
.ls0_c01240{letter-spacing:0.012000px;}
.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;}
}
.ws0_c01240{word-spacing:0.000000px;}
._c_c01240{margin-left:-4.521600px;}
._4_c01240{margin-left:-2.952000px;}
._2_c01240{margin-left:-1.324800px;}
._7_c01240{width:1.116000px;}
._0_c01240{width:2.210400px;}
._b_c01240{width:3.225600px;}
._a_c01240{width:4.600800px;}
._9_c01240{width:6.091200px;}
._1_c01240{width:7.696800px;}
._8_c01240{width:8.798400px;}
._6_c01240{width:9.871200px;}
._3_c01240{width:11.109600px;}
._5_c01240{width:12.859200px;}
.fc0_c01240{color:rgb(0,0,0);}
.fs1_c01240{font-size:54.000000px;}
.fs2_c01240{font-size:60.000000px;}
.fs0_c01240{font-size:72.000000px;}
.y0_c01240{bottom:0.000000px;}
.y4_c01240{bottom:12.000000px;}
.yd_c01240{bottom:67.500000px;}
.yb_c01240{bottom:133.500000px;}
.ya_c01240{bottom:160.500000px;}
.y9_c01240{bottom:187.500000px;}
.y8_c01240{bottom:232.500000px;}
.y7_c01240{bottom:606.000000px;}
.y6_c01240{bottom:633.000000px;}
.y5_c01240{bottom:660.000000px;}
.y3_c01240{bottom:705.000000px;}
.y2_c01240{bottom:1068.000000px;}
.y1_c01240{bottom:1095.000000px;}
.yc_c01240{bottom:1194.000000px;}
.h3_c01240{height:41.633789px;}
.h1_c01240{height:51.187500px;}
.h5_c01240{height:56.074219px;}
.h2_c01240{height:331.500000px;}
.h4_c01240{height:342.000000px;}
.h0_c01240{height:1263.000000px;}
.w1_c01240{width:684.449850px;}
.w0_c01240{width:892.500000px;}
.x0_c01240{left:0.000000px;}
.x1_c01240{left:134.787405px;}
.x2_c01240{left:147.000000px;}
.x3_c01240{left:221.515950px;}
.x4_c01240{left:245.668350px;}
.x5_c01240{left:432.515100px;}
.x6_c01240{left:817.725150px;}
@media print{
.v0_c01240{vertical-align:0.000000pt;}
.ls1_c01240{letter-spacing:0.000000pt;}
.ls0_c01240{letter-spacing:0.010667pt;}
.ws0_c01240{word-spacing:0.000000pt;}
._c_c01240{margin-left:-4.019200pt;}
._4_c01240{margin-left:-2.624000pt;}
._2_c01240{margin-left:-1.177600pt;}
._7_c01240{width:0.992000pt;}
._0_c01240{width:1.964800pt;}
._b_c01240{width:2.867200pt;}
._a_c01240{width:4.089600pt;}
._9_c01240{width:5.414400pt;}
._1_c01240{width:6.841600pt;}
._8_c01240{width:7.820800pt;}
._6_c01240{width:8.774400pt;}
._3_c01240{width:9.875200pt;}
._5_c01240{width:11.430400pt;}
.fs1_c01240{font-size:48.000000pt;}
.fs2_c01240{font-size:53.333333pt;}
.fs0_c01240{font-size:64.000000pt;}
.y0_c01240{bottom:0.000000pt;}
.y4_c01240{bottom:10.666667pt;}
.yd_c01240{bottom:60.000000pt;}
.yb_c01240{bottom:118.666667pt;}
.ya_c01240{bottom:142.666667pt;}
.y9_c01240{bottom:166.666667pt;}
.y8_c01240{bottom:206.666667pt;}
.y7_c01240{bottom:538.666667pt;}
.y6_c01240{bottom:562.666667pt;}
.y5_c01240{bottom:586.666667pt;}
.y3_c01240{bottom:626.666667pt;}
.y2_c01240{bottom:949.333333pt;}
.y1_c01240{bottom:973.333333pt;}
.yc_c01240{bottom:1061.333333pt;}
.h3_c01240{height:37.007812pt;}
.h1_c01240{height:45.500000pt;}
.h5_c01240{height:49.843750pt;}
.h2_c01240{height:294.666667pt;}
.h4_c01240{height:304.000000pt;}
.h0_c01240{height:1122.666667pt;}
.w1_c01240{width:608.399867pt;}
.w0_c01240{width:793.333333pt;}
.x0_c01240{left:0.000000pt;}
.x1_c01240{left:119.811027pt;}
.x2_c01240{left:130.666667pt;}
.x3_c01240{left:196.903067pt;}
.x4_c01240{left:218.371867pt;}
.x5_c01240{left:384.457867pt;}
.x6_c01240{left:726.866800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f23a661101faeb2041d37205.woff2')format("woff");}.ff1_c01241{font-family:ff1_c01241;line-height:0.987793;font-style:normal;font-weight:normal;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_0df5e1178011454913974565.woff2')format("woff");}.ff2_c01241{font-family:ff2_c01241;line-height:0.934082;font-style:normal;font-weight:normal;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_d242c4aa93aebc391a7b25fc.woff2')format("woff");}.ff3_c01241{font-family:ff3_c01241;line-height:0.756836;font-style:normal;font-weight:normal;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_f4127eeb78188e76ad260722.woff2')format("woff");}.ff4_c01241{font-family:ff4_c01241;line-height:1.155762;font-style: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);}
.v0_c01241{vertical-align:0.000000px;}
.ls1_c01241{letter-spacing:0.000000px;}
.ls2_c01241{letter-spacing:0.012000px;}
.ls0_c01241{letter-spacing:0.021600px;}
.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;}
}
.ws0_c01241{word-spacing:0.000000px;}
._4_c01241{margin-left:-3.787200px;}
._8_c01241{margin-left:-2.397600px;}
._0_c01241{margin-left:-1.130400px;}
._6_c01241{width:1.202400px;}
._3_c01241{width:2.397600px;}
._7_c01241{width:3.650400px;}
._2_c01241{width:4.730400px;}
._1_c01241{width:5.853600px;}
._9_c01241{width:7.056000px;}
._5_c01241{width:8.380800px;}
._e_c01241{width:10.339200px;}
._f_c01241{width:11.455200px;}
._10_c01241{width:13.953600px;}
._a_c01241{width:21.628800px;}
._b_c01241{width:22.780800px;}
._d_c01241{width:24.494400px;}
._c_c01241{width:26.611200px;}
.fc1_c01241{color:transparent;}
.fc0_c01241{color:rgb(0,0,0);}
.fs0_c01241{font-size:54.000000px;}
.fs2_c01241{font-size:60.000000px;}
.fs1_c01241{font-size:72.000000px;}
.y0_c01241{bottom:0.000000px;}
.y2_c01241{bottom:12.000000px;}
.ya_c01241{bottom:67.500000px;}
.y8_c01241{bottom:141.000000px;}
.y7_c01241{bottom:448.500000px;}
.y6_c01241{bottom:475.500000px;}
.y5_c01241{bottom:502.500000px;}
.y4_c01241{bottom:529.500000px;}
.y3_c01241{bottom:574.500000px;}
.y1_c01241{bottom:808.500000px;}
.y9_c01241{bottom:1194.000000px;}
.h2_c01241{height:42.292969px;}
.h7_c01241{height:44.208984px;}
.h4_c01241{height:51.257812px;}
.h6_c01241{height:56.074219px;}
.h3_c01241{height:205.500000px;}
.h5_c01241{height:276.000000px;}
.h1_c01241{height:304.500000px;}
.h0_c01241{height:1263.000000px;}
.w1_c01241{width:684.449850px;}
.w0_c01241{width:892.500000px;}
.x0_c01241{left:0.000000px;}
.x4_c01241{left:49.748025px;}
.x1_c01241{left:61.500000px;}
.x5_c01241{left:65.860560px;}
.x2_c01241{left:122.124840px;}
.x3_c01241{left:144.042570px;}
@media print{
.v0_c01241{vertical-align:0.000000pt;}
.ls1_c01241{letter-spacing:0.000000pt;}
.ls2_c01241{letter-spacing:0.010667pt;}
.ls0_c01241{letter-spacing:0.019200pt;}
.ws0_c01241{word-spacing:0.000000pt;}
._4_c01241{margin-left:-3.366400pt;}
._8_c01241{margin-left:-2.131200pt;}
._0_c01241{margin-left:-1.004800pt;}
._6_c01241{width:1.068800pt;}
._3_c01241{width:2.131200pt;}
._7_c01241{width:3.244800pt;}
._2_c01241{width:4.204800pt;}
._1_c01241{width:5.203200pt;}
._9_c01241{width:6.272000pt;}
._5_c01241{width:7.449600pt;}
._e_c01241{width:9.190400pt;}
._f_c01241{width:10.182400pt;}
._10_c01241{width:12.403200pt;}
._a_c01241{width:19.225600pt;}
._b_c01241{width:20.249600pt;}
._d_c01241{width:21.772800pt;}
._c_c01241{width:23.654400pt;}
.fs0_c01241{font-size:48.000000pt;}
.fs2_c01241{font-size:53.333333pt;}
.fs1_c01241{font-size:64.000000pt;}
.y0_c01241{bottom:0.000000pt;}
.y2_c01241{bottom:10.666667pt;}
.ya_c01241{bottom:60.000000pt;}
.y8_c01241{bottom:125.333333pt;}
.y7_c01241{bottom:398.666667pt;}
.y6_c01241{bottom:422.666667pt;}
.y5_c01241{bottom:446.666667pt;}
.y4_c01241{bottom:470.666667pt;}
.y3_c01241{bottom:510.666667pt;}
.y1_c01241{bottom:718.666667pt;}
.y9_c01241{bottom:1061.333333pt;}
.h2_c01241{height:37.593750pt;}
.h7_c01241{height:39.296875pt;}
.h4_c01241{height:45.562500pt;}
.h6_c01241{height:49.843750pt;}
.h3_c01241{height:182.666667pt;}
.h5_c01241{height:245.333333pt;}
.h1_c01241{height:270.666667pt;}
.h0_c01241{height:1122.666667pt;}
.w1_c01241{width:608.399867pt;}
.w0_c01241{width:793.333333pt;}
.x0_c01241{left:0.000000pt;}
.x4_c01241{left:44.220467pt;}
.x1_c01241{left:54.666667pt;}
.x5_c01241{left:58.542720pt;}
.x2_c01241{left:108.555413pt;}
.x3_c01241{left:128.037840pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c1fa9f506db8cea83c07f734.woff2')format("woff");}.ff1_c01242{font-family:ff1_c01242;line-height:0.933105;font-style:normal;font-weight:normal;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_e7c4722fa80450fce235c4ac.woff2')format("woff");}.ff2_c01242{font-family:ff2_c01242;line-height:0.963867;font-style:normal;font-weight:normal;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_16a2421179d7377a474d7529.woff2')format("woff");}.ff3_c01242{font-family:ff3_c01242;line-height:1.155762;font-style: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);}
.v0_c01242{vertical-align:0.000000px;}
.ls2_c01242{letter-spacing:0.000000px;}
.ls1_c01242{letter-spacing:0.012000px;}
.ls0_c01242{letter-spacing:0.021600px;}
.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;}
}
.ws0_c01242{word-spacing:0.000000px;}
._6_c01242{margin-left:-3.052800px;}
._3_c01242{margin-left:-2.023200px;}
._1_c01242{width:1.771200px;}
._2_c01242{width:3.297600px;}
._0_c01242{width:5.068800px;}
._4_c01242{width:7.092000px;}
._b_c01242{width:8.632800px;}
._a_c01242{width:10.036800px;}
._8_c01242{width:12.153600px;}
._9_c01242{width:14.695200px;}
._5_c01242{width:16.718400px;}
._7_c01242{width:17.769600px;}
.fc0_c01242{color:rgb(0,0,0);}
.fs1_c01242{font-size:54.000000px;}
.fs2_c01242{font-size:60.000000px;}
.fs0_c01242{font-size:72.000000px;}
.y0_c01242{bottom:0.000000px;}
.yb_c01242{bottom:10.500000px;}
.y5_c01242{bottom:12.000000px;}
.ya_c01242{bottom:28.500000px;}
.yd_c01242{bottom:67.500000px;}
.y9_c01242{bottom:135.000000px;}
.y8_c01242{bottom:547.500000px;}
.y7_c01242{bottom:574.500000px;}
.y6_c01242{bottom:601.500000px;}
.y4_c01242{bottom:646.500000px;}
.y3_c01242{bottom:1041.000000px;}
.y2_c01242{bottom:1068.000000px;}
.y1_c01242{bottom:1095.000000px;}
.yc_c01242{bottom:1194.000000px;}
.h3_c01242{height:41.633789px;}
.h1_c01242{height:51.187500px;}
.h5_c01242{height:56.074219px;}
.h2_c01242{height:363.000000px;}
.h4_c01242{height:402.000000px;}
.h0_c01242{height:1263.000000px;}
.w1_c01242{width:684.449850px;}
.w0_c01242{width:892.500000px;}
.x0_c01242{left:0.000000px;}
.x4_c01242{left:16.745085px;}
.x1_c01242{left:134.787405px;}
.x2_c01242{left:147.000000px;}
.x5_c01242{left:236.429850px;}
.x3_c01242{left:306.378750px;}
.x6_c01242{left:432.515100px;}
.x7_c01242{left:817.725150px;}
@media print{
.v0_c01242{vertical-align:0.000000pt;}
.ls2_c01242{letter-spacing:0.000000pt;}
.ls1_c01242{letter-spacing:0.010667pt;}
.ls0_c01242{letter-spacing:0.019200pt;}
.ws0_c01242{word-spacing:0.000000pt;}
._6_c01242{margin-left:-2.713600pt;}
._3_c01242{margin-left:-1.798400pt;}
._1_c01242{width:1.574400pt;}
._2_c01242{width:2.931200pt;}
._0_c01242{width:4.505600pt;}
._4_c01242{width:6.304000pt;}
._b_c01242{width:7.673600pt;}
._a_c01242{width:8.921600pt;}
._8_c01242{width:10.803200pt;}
._9_c01242{width:13.062400pt;}
._5_c01242{width:14.860800pt;}
._7_c01242{width:15.795200pt;}
.fs1_c01242{font-size:48.000000pt;}
.fs2_c01242{font-size:53.333333pt;}
.fs0_c01242{font-size:64.000000pt;}
.y0_c01242{bottom:0.000000pt;}
.yb_c01242{bottom:9.333333pt;}
.y5_c01242{bottom:10.666667pt;}
.ya_c01242{bottom:25.333333pt;}
.yd_c01242{bottom:60.000000pt;}
.y9_c01242{bottom:120.000000pt;}
.y8_c01242{bottom:486.666667pt;}
.y7_c01242{bottom:510.666667pt;}
.y6_c01242{bottom:534.666667pt;}
.y4_c01242{bottom:574.666667pt;}
.y3_c01242{bottom:925.333333pt;}
.y2_c01242{bottom:949.333333pt;}
.y1_c01242{bottom:973.333333pt;}
.yc_c01242{bottom:1061.333333pt;}
.h3_c01242{height:37.007812pt;}
.h1_c01242{height:45.500000pt;}
.h5_c01242{height:49.843750pt;}
.h2_c01242{height:322.666667pt;}
.h4_c01242{height:357.333333pt;}
.h0_c01242{height:1122.666667pt;}
.w1_c01242{width:608.399867pt;}
.w0_c01242{width:793.333333pt;}
.x0_c01242{left:0.000000pt;}
.x4_c01242{left:14.884520pt;}
.x1_c01242{left:119.811027pt;}
.x2_c01242{left:130.666667pt;}
.x5_c01242{left:210.159867pt;}
.x3_c01242{left:272.336667pt;}
.x6_c01242{left:384.457867pt;}
.x7_c01242{left:726.866800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0e9dda05200e398e9789d01a.woff2')format("woff");}.ff1_c01243{font-family:ff1_c01243;line-height:0.934082;font-style:normal;font-weight:normal;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_8cf5e33e3c9c014c1643c1b3.woff2')format("woff");}.ff2_c01243{font-family:ff2_c01243;line-height:0.963867;font-style:normal;font-weight:normal;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_111cfc93da67de4e292bdabd.woff2')format("woff");}.ff3_c01243{font-family:ff3_c01243;line-height:0.755859;font-style:normal;font-weight:normal;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_8b67d4098e301d081b5ca1a8.woff2')format("woff");}.ff4_c01243{font-family:ff4_c01243;line-height:1.155762;font-style: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;}
.ls0_c01243{letter-spacing:0.000000px;}
.ls2_c01243{letter-spacing:0.012000px;}
.ls1_c01243{letter-spacing:0.021600px;}
.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;}
}
.ws0_c01243{word-spacing:0.000000px;}
._5_c01243{margin-left:-4.687200px;}
._c_c01243{margin-left:-3.189600px;}
._f_c01243{margin-left:-2.131200px;}
._3_c01243{margin-left:-1.130400px;}
._1_c01243{width:1.936800px;}
._2_c01243{width:2.966400px;}
._0_c01243{width:4.910400px;}
._4_c01243{width:6.004800px;}
._b_c01243{width:7.099200px;}
._d_c01243{width:8.539200px;}
._6_c01243{width:9.662400px;}
._e_c01243{width:10.756800px;}
._a_c01243{width:11.908800px;}
._10_c01243{width:13.413600px;}
._9_c01243{width:14.997600px;}
._8_c01243{width:16.948800px;}
._7_c01243{width:18.007200px;}
.fc0_c01243{color:rgb(0,0,0);}
.fs1_c01243{font-size:54.000000px;}
.fs2_c01243{font-size:60.000000px;}
.fs0_c01243{font-size:72.000000px;}
.y0_c01243{bottom:0.000000px;}
.y9_c01243{bottom:12.000000px;}
.yb_c01243{bottom:67.500000px;}
.y8_c01243{bottom:316.500000px;}
.y7_c01243{bottom:912.000000px;}
.y6_c01243{bottom:939.000000px;}
.y5_c01243{bottom:966.000000px;}
.y4_c01243{bottom:993.000000px;}
.y3_c01243{bottom:1041.000000px;}
.y2_c01243{bottom:1068.000000px;}
.y1_c01243{bottom:1095.000000px;}
.ya_c01243{bottom:1194.000000px;}
.h3_c01243{height:41.633789px;}
.h5_c01243{height:44.208984px;}
.h1_c01243{height:51.257812px;}
.h4_c01243{height:56.074219px;}
.h2_c01243{height:516.000000px;}
.h0_c01243{height:1263.000000px;}
.w1_c01243{width:684.449850px;}
.w0_c01243{width:892.500000px;}
.x0_c01243{left:0.000000px;}
.x1_c01243{left:49.748025px;}
.x2_c01243{left:61.500000px;}
.x3_c01243{left:114.382785px;}
@media print{
.v0_c01243{vertical-align:0.000000pt;}
.ls0_c01243{letter-spacing:0.000000pt;}
.ls2_c01243{letter-spacing:0.010667pt;}
.ls1_c01243{letter-spacing:0.019200pt;}
.ws0_c01243{word-spacing:0.000000pt;}
._5_c01243{margin-left:-4.166400pt;}
._c_c01243{margin-left:-2.835200pt;}
._f_c01243{margin-left:-1.894400pt;}
._3_c01243{margin-left:-1.004800pt;}
._1_c01243{width:1.721600pt;}
._2_c01243{width:2.636800pt;}
._0_c01243{width:4.364800pt;}
._4_c01243{width:5.337600pt;}
._b_c01243{width:6.310400pt;}
._d_c01243{width:7.590400pt;}
._6_c01243{width:8.588800pt;}
._e_c01243{width:9.561600pt;}
._a_c01243{width:10.585600pt;}
._10_c01243{width:11.923200pt;}
._9_c01243{width:13.331200pt;}
._8_c01243{width:15.065600pt;}
._7_c01243{width:16.006400pt;}
.fs1_c01243{font-size:48.000000pt;}
.fs2_c01243{font-size:53.333333pt;}
.fs0_c01243{font-size:64.000000pt;}
.y0_c01243{bottom:0.000000pt;}
.y9_c01243{bottom:10.666667pt;}
.yb_c01243{bottom:60.000000pt;}
.y8_c01243{bottom:281.333333pt;}
.y7_c01243{bottom:810.666667pt;}
.y6_c01243{bottom:834.666667pt;}
.y5_c01243{bottom:858.666667pt;}
.y4_c01243{bottom:882.666667pt;}
.y3_c01243{bottom:925.333333pt;}
.y2_c01243{bottom:949.333333pt;}
.y1_c01243{bottom:973.333333pt;}
.ya_c01243{bottom:1061.333333pt;}
.h3_c01243{height:37.007812pt;}
.h5_c01243{height:39.296875pt;}
.h1_c01243{height:45.562500pt;}
.h4_c01243{height:49.843750pt;}
.h2_c01243{height:458.666667pt;}
.h0_c01243{height:1122.666667pt;}
.w1_c01243{width:608.399867pt;}
.w0_c01243{width:793.333333pt;}
.x0_c01243{left:0.000000pt;}
.x1_c01243{left:44.220467pt;}
.x2_c01243{left:54.666667pt;}
.x3_c01243{left:101.673587pt;}
}





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

.ir_c01244:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c01244{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01244;src:url('chunks/assets/font_3599e89471c93075893a340a.woff2')format("woff");}.ff1_c01244{font-family:ff1_c01244;line-height:0.975586;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c01244;src:url('chunks/assets/font_d8b39bd7b3fe47847940c41b.woff2')format("woff");}.ff2_c01244{font-family:ff2_c01244;line-height:0.934082;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01244;src:url('chunks/assets/font_a15cb60e2a82b36b1cec39be.woff2')format("woff");}.ff3_c01244{font-family:ff3_c01244;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c01244{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01244{vertical-align:0.000000px;}
.ls1_c01244{letter-spacing:0.000000px;}
.ls0_c01244{letter-spacing:0.012000px;}
.sc__c01244{text-shadow:none;}
.sc0_c01244{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01244{-webkit-text-stroke:0px transparent;}
.sc0_c01244{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01244{word-spacing:0.000000px;}
._8_c01244{margin-left:-2.548800px;}
._3_c01244{margin-left:-1.512000px;}
._5_c01244{width:1.000800px;}
._1_c01244{width:2.131200px;}
._6_c01244{width:3.139200px;}
._7_c01244{width:4.636800px;}
._9_c01244{width:5.688000px;}
._2_c01244{width:6.782400px;}
._a_c01244{width:7.855200px;}
._0_c01244{width:8.884800px;}
._4_c01244{width:10.267200px;}
.fc0_c01244{color:rgb(0,0,0);}
.fs0_c01244{font-size:54.000000px;}
.fs2_c01244{font-size:60.000000px;}
.fs1_c01244{font-size:72.000000px;}
.y0_c01244{bottom:0.000000px;}
.y2_c01244{bottom:12.000000px;}
.y9_c01244{bottom:67.500000px;}
.y7_c01244{bottom:157.500000px;}
.y6_c01244{bottom:184.500000px;}
.y5_c01244{bottom:229.500000px;}
.y4_c01244{bottom:615.000000px;}
.y3_c01244{bottom:642.000000px;}
.y1_c01244{bottom:687.000000px;}
.y8_c01244{bottom:1194.000000px;}
.h2_c01244{height:41.633789px;}
.h3_c01244{height:51.257812px;}
.h5_c01244{height:56.074219px;}
.h4_c01244{height:354.000000px;}
.h1_c01244{height:426.000000px;}
.h0_c01244{height:1263.000000px;}
.w1_c01244{width:684.449850px;}
.w0_c01244{width:892.500000px;}
.x0_c01244{left:0.000000px;}
.x3_c01244{left:134.787405px;}
.x1_c01244{left:147.000000px;}
.x2_c01244{left:210.286800px;}
.x4_c01244{left:263.937450px;}
.x5_c01244{left:432.515100px;}
.x6_c01244{left:817.725150px;}
@media print{
.v0_c01244{vertical-align:0.000000pt;}
.ls1_c01244{letter-spacing:0.000000pt;}
.ls0_c01244{letter-spacing:0.010667pt;}
.ws0_c01244{word-spacing:0.000000pt;}
._8_c01244{margin-left:-2.265600pt;}
._3_c01244{margin-left:-1.344000pt;}
._5_c01244{width:0.889600pt;}
._1_c01244{width:1.894400pt;}
._6_c01244{width:2.790400pt;}
._7_c01244{width:4.121600pt;}
._9_c01244{width:5.056000pt;}
._2_c01244{width:6.028800pt;}
._a_c01244{width:6.982400pt;}
._0_c01244{width:7.897600pt;}
._4_c01244{width:9.126400pt;}
.fs0_c01244{font-size:48.000000pt;}
.fs2_c01244{font-size:53.333333pt;}
.fs1_c01244{font-size:64.000000pt;}
.y0_c01244{bottom:0.000000pt;}
.y2_c01244{bottom:10.666667pt;}
.y9_c01244{bottom:60.000000pt;}
.y7_c01244{bottom:140.000000pt;}
.y6_c01244{bottom:164.000000pt;}
.y5_c01244{bottom:204.000000pt;}
.y4_c01244{bottom:546.666667pt;}
.y3_c01244{bottom:570.666667pt;}
.y1_c01244{bottom:610.666667pt;}
.y8_c01244{bottom:1061.333333pt;}
.h2_c01244{height:37.007812pt;}
.h3_c01244{height:45.562500pt;}
.h5_c01244{height:49.843750pt;}
.h4_c01244{height:314.666667pt;}
.h1_c01244{height:378.666667pt;}
.h0_c01244{height:1122.666667pt;}
.w1_c01244{width:608.399867pt;}
.w0_c01244{width:793.333333pt;}
.x0_c01244{left:0.000000pt;}
.x3_c01244{left:119.811027pt;}
.x1_c01244{left:130.666667pt;}
.x2_c01244{left:186.921600pt;}
.x4_c01244{left:234.611067pt;}
.x5_c01244{left:384.457867pt;}
.x6_c01244{left:726.866800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7c08c10b23a35f2b6a58c148.woff2')format("woff");}.ff1_c01245{font-family:ff1_c01245;line-height:0.934082;font-style:normal;font-weight:normal;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_5b7be7443e7a6cd7713b1af3.woff2')format("woff");}.ff2_c01245{font-family:ff2_c01245;line-height:0.976074;font-style:normal;font-weight:normal;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_47f1c989ca171523a1f88af0.woff2')format("woff");}.ff3_c01245{font-family:ff3_c01245;line-height:0.930176;font-style:normal;font-weight:normal;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_058558324e3ae30354bf4f8a.woff2')format("woff");}.ff4_c01245{font-family:ff4_c01245;line-height:0.755859;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01245;src:url('chunks/assets/font_0101e06da017ddb54653776c.woff2')format("woff");}.ff5_c01245{font-family:ff5_c01245;line-height:1.155762;font-style: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;}
.ls0_c01245{letter-spacing:0.000000px;}
.ls1_c01245{letter-spacing:0.012000px;}
.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;}
}
.ws0_c01245{word-spacing:0.000000px;}
._17_c01245{margin-left:-7.840800px;}
._c_c01245{margin-left:-6.019200px;}
._3_c01245{margin-left:-4.658400px;}
._1_c01245{margin-left:-2.635200px;}
._6_c01245{margin-left:-1.108800px;}
._2_c01245{width:1.411200px;}
._5_c01245{width:2.498400px;}
._0_c01245{width:3.916800px;}
._4_c01245{width:5.004000px;}
._19_c01245{width:6.357600px;}
._b_c01245{width:7.452000px;}
._18_c01245{width:8.546400px;}
._10_c01245{width:9.878400px;}
._12_c01245{width:11.268000px;}
._d_c01245{width:12.319200px;}
._f_c01245{width:13.752000px;}
._e_c01245{width:14.824800px;}
._11_c01245{width:16.444800px;}
._13_c01245{width:18.396000px;}
._16_c01245{width:24.818400px;}
._9_c01245{width:26.006400px;}
._a_c01245{width:27.007200px;}
._7_c01245{width:28.353600px;}
._14_c01245{width:29.923200px;}
._8_c01245{width:30.952800px;}
._15_c01245{width:32.076000px;}
._1a_c01245{width:33.919200px;}
.fc0_c01245{color:rgb(0,0,0);}
.fs1_c01245{font-size:54.000000px;}
.fs2_c01245{font-size:60.000000px;}
.fs0_c01245{font-size:72.000000px;}
.y0_c01245{bottom:0.000000px;}
.yb_c01245{bottom:12.000000px;}
.y13_c01245{bottom:67.500000px;}
.y11_c01245{bottom:138.000000px;}
.y10_c01245{bottom:165.000000px;}
.yf_c01245{bottom:192.000000px;}
.ye_c01245{bottom:219.000000px;}
.yd_c01245{bottom:246.000000px;}
.yc_c01245{bottom:292.500000px;}
.ya_c01245{bottom:358.500000px;}
.y9_c01245{bottom:879.000000px;}
.y8_c01245{bottom:906.000000px;}
.y7_c01245{bottom:933.000000px;}
.y6_c01245{bottom:960.000000px;}
.y5_c01245{bottom:987.000000px;}
.y4_c01245{bottom:1014.000000px;}
.y3_c01245{bottom:1041.000000px;}
.y2_c01245{bottom:1068.000000px;}
.y1_c01245{bottom:1095.000000px;}
.y12_c01245{bottom:1194.000000px;}
.h3_c01245{height:42.292969px;}
.h6_c01245{height:44.208984px;}
.h4_c01245{height:50.976562px;}
.h1_c01245{height:51.257812px;}
.h5_c01245{height:56.074219px;}
.h2_c01245{height:489.000000px;}
.h0_c01245{height:1263.000000px;}
.w1_c01245{width:684.449850px;}
.w0_c01245{width:892.500000px;}
.x0_c01245{left:0.000000px;}
.x1_c01245{left:49.748025px;}
.x2_c01245{left:61.500000px;}
.x3_c01245{left:116.264745px;}
@media print{
.v0_c01245{vertical-align:0.000000pt;}
.ls0_c01245{letter-spacing:0.000000pt;}
.ls1_c01245{letter-spacing:0.010667pt;}
.ws0_c01245{word-spacing:0.000000pt;}
._17_c01245{margin-left:-6.969600pt;}
._c_c01245{margin-left:-5.350400pt;}
._3_c01245{margin-left:-4.140800pt;}
._1_c01245{margin-left:-2.342400pt;}
._6_c01245{margin-left:-0.985600pt;}
._2_c01245{width:1.254400pt;}
._5_c01245{width:2.220800pt;}
._0_c01245{width:3.481600pt;}
._4_c01245{width:4.448000pt;}
._19_c01245{width:5.651200pt;}
._b_c01245{width:6.624000pt;}
._18_c01245{width:7.596800pt;}
._10_c01245{width:8.780800pt;}
._12_c01245{width:10.016000pt;}
._d_c01245{width:10.950400pt;}
._f_c01245{width:12.224000pt;}
._e_c01245{width:13.177600pt;}
._11_c01245{width:14.617600pt;}
._13_c01245{width:16.352000pt;}
._16_c01245{width:22.060800pt;}
._9_c01245{width:23.116800pt;}
._a_c01245{width:24.006400pt;}
._7_c01245{width:25.203200pt;}
._14_c01245{width:26.598400pt;}
._8_c01245{width:27.513600pt;}
._15_c01245{width:28.512000pt;}
._1a_c01245{width:30.150400pt;}
.fs1_c01245{font-size:48.000000pt;}
.fs2_c01245{font-size:53.333333pt;}
.fs0_c01245{font-size:64.000000pt;}
.y0_c01245{bottom:0.000000pt;}
.yb_c01245{bottom:10.666667pt;}
.y13_c01245{bottom:60.000000pt;}
.y11_c01245{bottom:122.666667pt;}
.y10_c01245{bottom:146.666667pt;}
.yf_c01245{bottom:170.666667pt;}
.ye_c01245{bottom:194.666667pt;}
.yd_c01245{bottom:218.666667pt;}
.yc_c01245{bottom:260.000000pt;}
.ya_c01245{bottom:318.666667pt;}
.y9_c01245{bottom:781.333333pt;}
.y8_c01245{bottom:805.333333pt;}
.y7_c01245{bottom:829.333333pt;}
.y6_c01245{bottom:853.333333pt;}
.y5_c01245{bottom:877.333333pt;}
.y4_c01245{bottom:901.333333pt;}
.y3_c01245{bottom:925.333333pt;}
.y2_c01245{bottom:949.333333pt;}
.y1_c01245{bottom:973.333333pt;}
.y12_c01245{bottom:1061.333333pt;}
.h3_c01245{height:37.593750pt;}
.h6_c01245{height:39.296875pt;}
.h4_c01245{height:45.312500pt;}
.h1_c01245{height:45.562500pt;}
.h5_c01245{height:49.843750pt;}
.h2_c01245{height:434.666667pt;}
.h0_c01245{height:1122.666667pt;}
.w1_c01245{width:608.399867pt;}
.w0_c01245{width:793.333333pt;}
.x0_c01245{left:0.000000pt;}
.x1_c01245{left:44.220467pt;}
.x2_c01245{left:54.666667pt;}
.x3_c01245{left:103.346440pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5880e1fe993c1ec5a2ecfcc4.woff2')format("woff");}.ff1_c01246{font-family:ff1_c01246;line-height:0.975586;font-style:normal;font-weight:normal;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_c269d410585d30fbaddf12c1.woff2')format("woff");}.ff2_c01246{font-family:ff2_c01246;line-height:0.934082;font-style:normal;font-weight:normal;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_b288437d1c6d318db2519c91.woff2')format("woff");}.ff3_c01246{font-family:ff3_c01246;line-height:0.924316;font-style:normal;font-weight:normal;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_e14b835b24f088ad07011152.woff2')format("woff");}.ff4_c01246{font-family:ff4_c01246;line-height:1.155762;font-style: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;}
.ls2_c01246{letter-spacing:0.000000px;}
.ls3_c01246{letter-spacing:0.007200px;}
.ls1_c01246{letter-spacing:0.012000px;}
.ls0_c01246{letter-spacing:0.021600px;}
.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:0.000000px;}
._3_c01246{margin-left:-7.250400px;}
._a_c01246{margin-left:-4.240800px;}
._1_c01246{margin-left:-2.577600px;}
._4_c01246{margin-left:-1.296000px;}
._8_c01246{width:1.879200px;}
._6_c01246{width:3.326400px;}
._b_c01246{width:5.047200px;}
._7_c01246{width:6.962400px;}
._9_c01246{width:8.474400px;}
._0_c01246{width:10.231200px;}
._5_c01246{width:11.620800px;}
._2_c01246{width:12.844800px;}
._c_c01246{width:14.738400px;}
.fc0_c01246{color:rgb(0,0,0);}
.fs0_c01246{font-size:54.000000px;}
.fs2_c01246{font-size:60.000000px;}
.fs1_c01246{font-size:72.000000px;}
.y0_c01246{bottom:0.000000px;}
.y2_c01246{bottom:12.000000px;}
.yd_c01246{bottom:67.500000px;}
.yb_c01246{bottom:189.000000px;}
.ya_c01246{bottom:216.000000px;}
.y9_c01246{bottom:243.000000px;}
.y8_c01246{bottom:270.000000px;}
.y7_c01246{bottom:297.000000px;}
.y6_c01246{bottom:345.000000px;}
.y5_c01246{bottom:372.000000px;}
.y4_c01246{bottom:399.000000px;}
.y3_c01246{bottom:426.000000px;}
.y1_c01246{bottom:471.000000px;}
.yc_c01246{bottom:1194.000000px;}
.h2_c01246{height:41.633789px;}
.h3_c01246{height:51.257812px;}
.h4_c01246{height:56.074219px;}
.h1_c01246{height:642.000000px;}
.h0_c01246{height:1263.000000px;}
.w1_c01246{width:684.449850px;}
.w0_c01246{width:892.500000px;}
.x0_c01246{left:0.000000px;}
.x3_c01246{left:134.787405px;}
.x1_c01246{left:147.000000px;}
.x2_c01246{left:271.758600px;}
.x4_c01246{left:432.515100px;}
.x5_c01246{left:817.725150px;}
@media print{
.v0_c01246{vertical-align:0.000000pt;}
.ls2_c01246{letter-spacing:0.000000pt;}
.ls3_c01246{letter-spacing:0.006400pt;}
.ls1_c01246{letter-spacing:0.010667pt;}
.ls0_c01246{letter-spacing:0.019200pt;}
.ws0_c01246{word-spacing:0.000000pt;}
._3_c01246{margin-left:-6.444800pt;}
._a_c01246{margin-left:-3.769600pt;}
._1_c01246{margin-left:-2.291200pt;}
._4_c01246{margin-left:-1.152000pt;}
._8_c01246{width:1.670400pt;}
._6_c01246{width:2.956800pt;}
._b_c01246{width:4.486400pt;}
._7_c01246{width:6.188800pt;}
._9_c01246{width:7.532800pt;}
._0_c01246{width:9.094400pt;}
._5_c01246{width:10.329600pt;}
._2_c01246{width:11.417600pt;}
._c_c01246{width:13.100800pt;}
.fs0_c01246{font-size:48.000000pt;}
.fs2_c01246{font-size:53.333333pt;}
.fs1_c01246{font-size:64.000000pt;}
.y0_c01246{bottom:0.000000pt;}
.y2_c01246{bottom:10.666667pt;}
.yd_c01246{bottom:60.000000pt;}
.yb_c01246{bottom:168.000000pt;}
.ya_c01246{bottom:192.000000pt;}
.y9_c01246{bottom:216.000000pt;}
.y8_c01246{bottom:240.000000pt;}
.y7_c01246{bottom:264.000000pt;}
.y6_c01246{bottom:306.666667pt;}
.y5_c01246{bottom:330.666667pt;}
.y4_c01246{bottom:354.666667pt;}
.y3_c01246{bottom:378.666667pt;}
.y1_c01246{bottom:418.666667pt;}
.yc_c01246{bottom:1061.333333pt;}
.h2_c01246{height:37.007812pt;}
.h3_c01246{height:45.562500pt;}
.h4_c01246{height:49.843750pt;}
.h1_c01246{height:570.666667pt;}
.h0_c01246{height:1122.666667pt;}
.w1_c01246{width:608.399867pt;}
.w0_c01246{width:793.333333pt;}
.x0_c01246{left:0.000000pt;}
.x3_c01246{left:119.811027pt;}
.x1_c01246{left:130.666667pt;}
.x2_c01246{left:241.563200pt;}
.x4_c01246{left:384.457867pt;}
.x5_c01246{left:726.866800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b6e970a6dd0297ba38466507.woff2')format("woff");}.ff1_c01247{font-family:ff1_c01247;line-height:0.976074;font-style:normal;font-weight:normal;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_afdbef7a0c5b48e2b940e67d.woff2')format("woff");}.ff2_c01247{font-family:ff2_c01247;line-height:0.934082;font-style:normal;font-weight:normal;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_62569fd23d7fc3e866119de7.woff2')format("woff");}.ff3_c01247{font-family:ff3_c01247;line-height:0.924316;font-style:normal;font-weight:normal;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_4ff1d4e342b7f652800c5984.woff2')format("woff");}.ff4_c01247{font-family:ff4_c01247;line-height:0.755859;font-style:normal;font-weight:normal;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_c91c8c29acba7cf4e11b249f.woff2')format("woff");}.ff5_c01247{font-family:ff5_c01247;line-height:1.155762;font-style:normal;font-weight: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_c01247;src:url('chunks/assets/font_694e0ca7633a4d602162e6af.woff2')format("woff");}.ff6_c01247{font-family:ff6_c01247;line-height:0.901367;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01247;src:url('chunks/assets/font_b1e514790467165b65da191e.woff2')format("woff");}.ff7_c01247{font-family:ff7_c01247;line-height:0.812500;font-style: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);}
.v3_c01247{vertical-align:-33.000000px;}
.v2_c01247{vertical-align:-23.086200px;}
.v0_c01247{vertical-align:0.000000px;}
.v1_c01247{vertical-align:23.086200px;}
.ls1_c01247{letter-spacing:-0.009600px;}
.ls0_c01247{letter-spacing:0.000000px;}
.ls2_c01247{letter-spacing:0.012000px;}
.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;}
}
.ws0_c01247{word-spacing:-19.800000px;}
.ws1_c01247{word-spacing:-13.190400px;}
.ws2_c01247{word-spacing:-10.000001px;}
.ws3_c01247{word-spacing:0.000000px;}
._8_c01247{margin-left:-3.816000px;}
._5_c01247{margin-left:-2.786400px;}
._1_c01247{margin-left:-1.713600px;}
._0_c01247{width:1.706400px;}
._2_c01247{width:3.348000px;}
._7_c01247{width:4.598100px;}
._9_c01247{width:5.666400px;}
._a_c01247{width:8.757900px;}
._b_c01247{width:21.660000px;}
._c_c01247{width:23.993100px;}
._d_c01247{width:25.057500px;}
._3_c01247{width:27.381600px;}
._4_c01247{width:29.124000px;}
._6_c01247{width:30.218400px;}
.fc0_c01247{color:rgb(0,0,0);}
.fs4_c01247{font-size:40.000002px;}
.fs2_c01247{font-size:48.000000px;}
.fs0_c01247{font-size:54.000000px;}
.fs3_c01247{font-size:60.000000px;}
.fs1_c01247{font-size:72.000000px;}
.y0_c01247{bottom:0.000000px;}
.y2_c01247{bottom:12.000000px;}
.yb_c01247{bottom:67.500000px;}
.yc_c01247{bottom:140.250000px;}
.y9_c01247{bottom:195.000000px;}
.y8_c01247{bottom:222.000000px;}
.y7_c01247{bottom:249.000000px;}
.y6_c01247{bottom:276.000000px;}
.y5_c01247{bottom:303.000000px;}
.y4_c01247{bottom:330.000000px;}
.y3_c01247{bottom:375.000000px;}
.y1_c01247{bottom:825.000000px;}
.ya_c01247{bottom:1194.000000px;}
.h8_c01247{height:27.343751px;}
.h2_c01247{height:42.292969px;}
.h7_c01247{height:44.208984px;}
.h4_c01247{height:51.257812px;}
.h6_c01247{height:56.074219px;}
.h5_c01247{height:57.258075px;}
.h1_c01247{height:288.000000px;}
.h3_c01247{height:421.500000px;}
.h0_c01247{height:1263.000000px;}
.w1_c01247{width:684.449850px;}
.w0_c01247{width:892.500000px;}
.x0_c01247{left:0.000000px;}
.x3_c01247{left:49.500000px;}
.x1_c01247{left:61.500000px;}
.x4_c01247{left:102.062715px;}
.x2_c01247{left:110.289270px;}
@media print{
.v3_c01247{vertical-align:-29.333333pt;}
.v2_c01247{vertical-align:-20.521067pt;}
.v0_c01247{vertical-align:0.000000pt;}
.v1_c01247{vertical-align:20.521067pt;}
.ls1_c01247{letter-spacing:-0.008533pt;}
.ls0_c01247{letter-spacing:0.000000pt;}
.ls2_c01247{letter-spacing:0.010667pt;}
.ws0_c01247{word-spacing:-17.600000pt;}
.ws1_c01247{word-spacing:-11.724800pt;}
.ws2_c01247{word-spacing:-8.888889pt;}
.ws3_c01247{word-spacing:0.000000pt;}
._8_c01247{margin-left:-3.392000pt;}
._5_c01247{margin-left:-2.476800pt;}
._1_c01247{margin-left:-1.523200pt;}
._0_c01247{width:1.516800pt;}
._2_c01247{width:2.976000pt;}
._7_c01247{width:4.087200pt;}
._9_c01247{width:5.036800pt;}
._a_c01247{width:7.784800pt;}
._b_c01247{width:19.253333pt;}
._c_c01247{width:21.327200pt;}
._d_c01247{width:22.273333pt;}
._3_c01247{width:24.339200pt;}
._4_c01247{width:25.888000pt;}
._6_c01247{width:26.860800pt;}
.fs4_c01247{font-size:35.555557pt;}
.fs2_c01247{font-size:42.666667pt;}
.fs0_c01247{font-size:48.000000pt;}
.fs3_c01247{font-size:53.333333pt;}
.fs1_c01247{font-size:64.000000pt;}
.y0_c01247{bottom:0.000000pt;}
.y2_c01247{bottom:10.666667pt;}
.yb_c01247{bottom:60.000000pt;}
.yc_c01247{bottom:124.666667pt;}
.y9_c01247{bottom:173.333333pt;}
.y8_c01247{bottom:197.333333pt;}
.y7_c01247{bottom:221.333333pt;}
.y6_c01247{bottom:245.333333pt;}
.y5_c01247{bottom:269.333333pt;}
.y4_c01247{bottom:293.333333pt;}
.y3_c01247{bottom:333.333333pt;}
.y1_c01247{bottom:733.333333pt;}
.ya_c01247{bottom:1061.333333pt;}
.h8_c01247{height:24.305557pt;}
.h2_c01247{height:37.593750pt;}
.h7_c01247{height:39.296875pt;}
.h4_c01247{height:45.562500pt;}
.h6_c01247{height:49.843750pt;}
.h5_c01247{height:50.896067pt;}
.h1_c01247{height:256.000000pt;}
.h3_c01247{height:374.666667pt;}
.h0_c01247{height:1122.666667pt;}
.w1_c01247{width:608.399867pt;}
.w0_c01247{width:793.333333pt;}
.x0_c01247{left:0.000000pt;}
.x3_c01247{left:44.000000pt;}
.x1_c01247{left:54.666667pt;}
.x4_c01247{left:90.722413pt;}
.x2_c01247{left:98.034907pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cb22608481dc6a6ea5d8ed6a.woff2')format("woff");}.ff1_c01248{font-family:ff1_c01248;line-height:0.934082;font-style:normal;font-weight:normal;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_fe9d4daac5b0ecfd283464ec.woff2')format("woff");}.ff2_c01248{font-family:ff2_c01248;line-height:0.975586;font-style:normal;font-weight:normal;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_ddc45c13d78cda97b8113064.woff2')format("woff");}.ff3_c01248{font-family:ff3_c01248;line-height:1.155762;font-style:normal;font-weight:normal;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_a434952c2f42fa7492b93b37.woff2')format("woff");}.ff4_c01248{font-family:ff4_c01248;line-height:0.903320;font-style: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);}
.v3_c01248{vertical-align:-33.000000px;}
.v2_c01248{vertical-align:-23.086200px;}
.v0_c01248{vertical-align:0.000000px;}
.v1_c01248{vertical-align:23.086200px;}
.ls2_c01248{letter-spacing:-0.009600px;}
.ls1_c01248{letter-spacing:0.000000px;}
.ls0_c01248{letter-spacing:0.012000px;}
.ls3_c01248{letter-spacing:0.021600px;}
.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;}
}
.ws1_c01248{word-spacing:-17.064000px;}
.ws0_c01248{word-spacing:-13.190400px;}
.ws2_c01248{word-spacing:-10.000001px;}
.ws3_c01248{word-spacing:0.000000px;}
._f_c01248{margin-left:-7.473600px;}
._8_c01248{margin-left:-4.831200px;}
._a_c01248{margin-left:-3.600000px;}
._5_c01248{margin-left:-2.390400px;}
._2_c01248{margin-left:-1.022400px;}
._1_c01248{width:1.764000px;}
._0_c01248{width:2.815200px;}
._4_c01248{width:4.615200px;}
._3_c01248{width:5.616000px;}
._6_c01248{width:6.969600px;}
._e_c01248{width:8.056800px;}
._7_c01248{width:9.129600px;}
._9_c01248{width:10.461600px;}
._b_c01248{width:11.822400px;}
._d_c01248{width:13.104000px;}
._c_c01248{width:14.767200px;}
.fc0_c01248{color:rgb(0,0,0);}
.fs4_c01248{font-size:40.000002px;}
.fs1_c01248{font-size:48.000000px;}
.fs2_c01248{font-size:54.000000px;}
.fs3_c01248{font-size:60.000000px;}
.fs0_c01248{font-size:72.000000px;}
.y0_c01248{bottom:0.000000px;}
.y8_c01248{bottom:10.500000px;}
.y7_c01248{bottom:28.500000px;}
.y17_c01248{bottom:67.500000px;}
.y19_c01248{bottom:132.000000px;}
.y18_c01248{bottom:159.750000px;}
.y15_c01248{bottom:202.500000px;}
.y14_c01248{bottom:229.500000px;}
.y13_c01248{bottom:277.500000px;}
.y12_c01248{bottom:304.500000px;}
.y11_c01248{bottom:331.500000px;}
.y10_c01248{bottom:358.500000px;}
.yf_c01248{bottom:385.500000px;}
.ye_c01248{bottom:412.500000px;}
.yd_c01248{bottom:439.500000px;}
.yc_c01248{bottom:466.500000px;}
.yb_c01248{bottom:493.500000px;}
.ya_c01248{bottom:520.500000px;}
.y9_c01248{bottom:547.500000px;}
.y6_c01248{bottom:592.500000px;}
.y5_c01248{bottom:987.000000px;}
.y4_c01248{bottom:1014.000000px;}
.y3_c01248{bottom:1041.000000px;}
.y2_c01248{bottom:1068.000000px;}
.y1_c01248{bottom:1095.000000px;}
.y16_c01248{bottom:1194.000000px;}
.h6_c01248{height:27.421876px;}
.h7_c01248{height:41.132812px;}
.h4_c01248{height:41.633789px;}
.h1_c01248{height:51.257812px;}
.h5_c01248{height:56.074219px;}
.h2_c01248{height:57.258075px;}
.h3_c01248{height:363.000000px;}
.h0_c01248{height:1263.000000px;}
.w1_c01248{width:684.449850px;}
.w0_c01248{width:892.500000px;}
.x0_c01248{left:0.000000px;}
.x2_c01248{left:28.531215px;}
.x1_c01248{left:134.787405px;}
.x3_c01248{left:308.478300px;}
.x4_c01248{left:432.515100px;}
.x5_c01248{left:817.725150px;}
@media print{
.v3_c01248{vertical-align:-29.333333pt;}
.v2_c01248{vertical-align:-20.521067pt;}
.v0_c01248{vertical-align:0.000000pt;}
.v1_c01248{vertical-align:20.521067pt;}
.ls2_c01248{letter-spacing:-0.008533pt;}
.ls1_c01248{letter-spacing:0.000000pt;}
.ls0_c01248{letter-spacing:0.010667pt;}
.ls3_c01248{letter-spacing:0.019200pt;}
.ws1_c01248{word-spacing:-15.168000pt;}
.ws0_c01248{word-spacing:-11.724800pt;}
.ws2_c01248{word-spacing:-8.888889pt;}
.ws3_c01248{word-spacing:0.000000pt;}
._f_c01248{margin-left:-6.643200pt;}
._8_c01248{margin-left:-4.294400pt;}
._a_c01248{margin-left:-3.200000pt;}
._5_c01248{margin-left:-2.124800pt;}
._2_c01248{margin-left:-0.908800pt;}
._1_c01248{width:1.568000pt;}
._0_c01248{width:2.502400pt;}
._4_c01248{width:4.102400pt;}
._3_c01248{width:4.992000pt;}
._6_c01248{width:6.195200pt;}
._e_c01248{width:7.161600pt;}
._7_c01248{width:8.115200pt;}
._9_c01248{width:9.299200pt;}
._b_c01248{width:10.508800pt;}
._d_c01248{width:11.648000pt;}
._c_c01248{width:13.126400pt;}
.fs4_c01248{font-size:35.555557pt;}
.fs1_c01248{font-size:42.666667pt;}
.fs2_c01248{font-size:48.000000pt;}
.fs3_c01248{font-size:53.333333pt;}
.fs0_c01248{font-size:64.000000pt;}
.y0_c01248{bottom:0.000000pt;}
.y8_c01248{bottom:9.333333pt;}
.y7_c01248{bottom:25.333333pt;}
.y17_c01248{bottom:60.000000pt;}
.y19_c01248{bottom:117.333333pt;}
.y18_c01248{bottom:142.000000pt;}
.y15_c01248{bottom:180.000000pt;}
.y14_c01248{bottom:204.000000pt;}
.y13_c01248{bottom:246.666667pt;}
.y12_c01248{bottom:270.666667pt;}
.y11_c01248{bottom:294.666667pt;}
.y10_c01248{bottom:318.666667pt;}
.yf_c01248{bottom:342.666667pt;}
.ye_c01248{bottom:366.666667pt;}
.yd_c01248{bottom:390.666667pt;}
.yc_c01248{bottom:414.666667pt;}
.yb_c01248{bottom:438.666667pt;}
.ya_c01248{bottom:462.666667pt;}
.y9_c01248{bottom:486.666667pt;}
.y6_c01248{bottom:526.666667pt;}
.y5_c01248{bottom:877.333333pt;}
.y4_c01248{bottom:901.333333pt;}
.y3_c01248{bottom:925.333333pt;}
.y2_c01248{bottom:949.333333pt;}
.y1_c01248{bottom:973.333333pt;}
.y16_c01248{bottom:1061.333333pt;}
.h6_c01248{height:24.375001pt;}
.h7_c01248{height:36.562500pt;}
.h4_c01248{height:37.007812pt;}
.h1_c01248{height:45.562500pt;}
.h5_c01248{height:49.843750pt;}
.h2_c01248{height:50.896067pt;}
.h3_c01248{height:322.666667pt;}
.h0_c01248{height:1122.666667pt;}
.w1_c01248{width:608.399867pt;}
.w0_c01248{width:793.333333pt;}
.x0_c01248{left:0.000000pt;}
.x2_c01248{left:25.361080pt;}
.x1_c01248{left:119.811027pt;}
.x3_c01248{left:274.202933pt;}
.x4_c01248{left:384.457867pt;}
.x5_c01248{left:726.866800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7b9b7e2c7b17d11fd20a9cac.woff2')format("woff");}.ff1_c01249{font-family:ff1_c01249;line-height:0.975586;font-style:normal;font-weight:normal;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_a93e176293a5c77543f44050.woff2')format("woff");}.ff2_c01249{font-family:ff2_c01249;line-height:0.934082;font-style:normal;font-weight:normal;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_5828dda9c2120ebf397f1062.woff2')format("woff");}.ff3_c01249{font-family:ff3_c01249;line-height:0.755859;font-style:normal;font-weight:normal;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_d36a5ef8b87d278653deef4a.woff2')format("woff");}.ff4_c01249{font-family:ff4_c01249;line-height:1.155762;font-style: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;}
.ls0_c01249{letter-spacing:0.000000px;}
.ls1_c01249{letter-spacing:0.012000px;}
.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;}
}
.ws0_c01249{word-spacing:-19.800000px;}
.ws1_c01249{word-spacing:0.000000px;}
._5_c01249{margin-left:-6.314400px;}
._4_c01249{margin-left:-3.240000px;}
._2_c01249{margin-left:-1.375200px;}
._0_c01249{width:1.195200px;}
._1_c01249{width:2.556000px;}
._3_c01249{width:4.348800px;}
._6_c01249{width:5.572800px;}
._7_c01249{width:6.883200px;}
._8_c01249{width:9.136800px;}
._a_c01249{width:10.706400px;}
._9_c01249{width:11.865600px;}
.fc0_c01249{color:rgb(0,0,0);}
.fs0_c01249{font-size:54.000000px;}
.fs2_c01249{font-size:60.000000px;}
.fs1_c01249{font-size:72.000000px;}
.y0_c01249{bottom:0.000000px;}
.y2_c01249{bottom:12.000000px;}
.yb_c01249{bottom:67.500000px;}
.y9_c01249{bottom:154.500000px;}
.y8_c01249{bottom:591.000000px;}
.y7_c01249{bottom:618.000000px;}
.y6_c01249{bottom:645.000000px;}
.y5_c01249{bottom:672.000000px;}
.y4_c01249{bottom:699.000000px;}
.y3_c01249{bottom:726.000000px;}
.y1_c01249{bottom:771.000000px;}
.ya_c01249{bottom:1194.000000px;}
.h2_c01249{height:41.633789px;}
.h6_c01249{height:44.208984px;}
.h3_c01249{height:51.257812px;}
.h5_c01249{height:56.074219px;}
.h1_c01249{height:342.000000px;}
.h4_c01249{height:405.000000px;}
.h0_c01249{height:1263.000000px;}
.w1_c01249{width:684.449850px;}
.w0_c01249{width:892.500000px;}
.x0_c01249{left:0.000000px;}
.x3_c01249{left:49.748025px;}
.x1_c01249{left:61.500000px;}
.x4_c01249{left:104.699430px;}
.x2_c01249{left:234.768750px;}
@media print{
.v0_c01249{vertical-align:0.000000pt;}
.ls0_c01249{letter-spacing:0.000000pt;}
.ls1_c01249{letter-spacing:0.010667pt;}
.ws0_c01249{word-spacing:-17.600000pt;}
.ws1_c01249{word-spacing:0.000000pt;}
._5_c01249{margin-left:-5.612800pt;}
._4_c01249{margin-left:-2.880000pt;}
._2_c01249{margin-left:-1.222400pt;}
._0_c01249{width:1.062400pt;}
._1_c01249{width:2.272000pt;}
._3_c01249{width:3.865600pt;}
._6_c01249{width:4.953600pt;}
._7_c01249{width:6.118400pt;}
._8_c01249{width:8.121600pt;}
._a_c01249{width:9.516800pt;}
._9_c01249{width:10.547200pt;}
.fs0_c01249{font-size:48.000000pt;}
.fs2_c01249{font-size:53.333333pt;}
.fs1_c01249{font-size:64.000000pt;}
.y0_c01249{bottom:0.000000pt;}
.y2_c01249{bottom:10.666667pt;}
.yb_c01249{bottom:60.000000pt;}
.y9_c01249{bottom:137.333333pt;}
.y8_c01249{bottom:525.333333pt;}
.y7_c01249{bottom:549.333333pt;}
.y6_c01249{bottom:573.333333pt;}
.y5_c01249{bottom:597.333333pt;}
.y4_c01249{bottom:621.333333pt;}
.y3_c01249{bottom:645.333333pt;}
.y1_c01249{bottom:685.333333pt;}
.ya_c01249{bottom:1061.333333pt;}
.h2_c01249{height:37.007812pt;}
.h6_c01249{height:39.296875pt;}
.h3_c01249{height:45.562500pt;}
.h5_c01249{height:49.843750pt;}
.h1_c01249{height:304.000000pt;}
.h4_c01249{height:360.000000pt;}
.h0_c01249{height:1122.666667pt;}
.w1_c01249{width:608.399867pt;}
.w0_c01249{width:793.333333pt;}
.x0_c01249{left:0.000000pt;}
.x3_c01249{left:44.220467pt;}
.x1_c01249{left:54.666667pt;}
.x4_c01249{left:93.066160pt;}
.x2_c01249{left:208.683333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cb1df1f5c5fef743cec5fcb5.woff2')format("woff");}.ff1_c01250{font-family:ff1_c01250;line-height:0.934082;font-style:normal;font-weight:normal;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_6848d524858b2c85ffee4dfd.woff2')format("woff");}.ff2_c01250{font-family:ff2_c01250;line-height:0.987793;font-style:normal;font-weight:normal;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_224d9a4d144fed878f0f8c75.woff2')format("woff");}.ff3_c01250{font-family:ff3_c01250;line-height:0.932129;font-style:normal;font-weight:normal;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_0df5087cd7789dc47237959a.woff2')format("woff");}.ff4_c01250{font-family:ff4_c01250;line-height:1.155762;font-style:normal;font-weight:normal;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_cb3c70dd4ed9b2e41d60aa5c.woff2')format("woff");}.ff5_c01250{font-family:ff5_c01250;line-height:0.903320;font-style: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);}
.v2_c01250{vertical-align:-33.000000px;}
.v0_c01250{vertical-align:0.000000px;}
.v1_c01250{vertical-align:23.086200px;}
.ls3_c01250{letter-spacing:-0.009600px;}
.ls2_c01250{letter-spacing:0.000000px;}
.ls0_c01250{letter-spacing:0.007200px;}
.ls1_c01250{letter-spacing:0.012000px;}
.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;}
}
.ws0_c01250{word-spacing:-19.800000px;}
.ws3_c01250{word-spacing:-15.000000px;}
.ws1_c01250{word-spacing:-13.190400px;}
.ws2_c01250{word-spacing:-10.000001px;}
.ws4_c01250{word-spacing:0.000000px;}
._6_c01250{margin-left:-18.964800px;}
._16_c01250{margin-left:-9.712800px;}
._7_c01250{margin-left:-4.744800px;}
._c_c01250{margin-left:-3.729600px;}
._3_c01250{margin-left:-2.167200px;}
._1_c01250{margin-left:-1.080000px;}
._5_c01250{width:1.087200px;}
._0_c01250{width:2.325600px;}
._2_c01250{width:3.499200px;}
._4_c01250{width:4.910400px;}
._e_c01250{width:5.940000px;}
._f_c01250{width:7.056000px;}
._a_c01250{width:8.301600px;}
._9_c01250{width:9.504000px;}
._15_c01250{width:10.620780px;}
._b_c01250{width:11.743200px;}
._d_c01250{width:13.219200px;}
._8_c01250{width:14.248800px;}
._11_c01250{width:23.932800px;}
._10_c01250{width:28.857600px;}
._13_c01250{width:31.003200px;}
._12_c01250{width:32.486400px;}
._14_c01250{width:33.494400px;}
.fc0_c01250{color:rgb(0,0,0);}
.fs4_c01250{font-size:40.000002px;}
.fs2_c01250{font-size:48.000000px;}
.fs1_c01250{font-size:54.000000px;}
.fs3_c01250{font-size:60.000000px;}
.fs0_c01250{font-size:72.000000px;}
.y0_c01250{bottom:0.000000px;}
.y5_c01250{bottom:12.000000px;}
.y14_c01250{bottom:67.500000px;}
.y16_c01250{bottom:132.000000px;}
.y15_c01250{bottom:159.750000px;}
.y12_c01250{bottom:220.500000px;}
.y11_c01250{bottom:247.500000px;}
.y10_c01250{bottom:286.500000px;}
.yf_c01250{bottom:364.500000px;}
.ye_c01250{bottom:451.500000px;}
.yd_c01250{bottom:478.500000px;}
.yc_c01250{bottom:505.500000px;}
.yb_c01250{bottom:532.500000px;}
.ya_c01250{bottom:559.500000px;}
.y9_c01250{bottom:586.500000px;}
.y8_c01250{bottom:613.500000px;}
.y7_c01250{bottom:640.500000px;}
.y6_c01250{bottom:667.500000px;}
.y4_c01250{bottom:712.500000px;}
.y3_c01250{bottom:1041.000000px;}
.y2_c01250{bottom:1068.000000px;}
.y1_c01250{bottom:1095.000000px;}
.y13_c01250{bottom:1194.000000px;}
.h6_c01250{height:27.421876px;}
.h7_c01250{height:41.132812px;}
.h3_c01250{height:42.292969px;}
.h1_c01250{height:51.257812px;}
.h5_c01250{height:56.074219px;}
.h4_c01250{height:57.258075px;}
.h2_c01250{height:297.000000px;}
.h0_c01250{height:1263.000000px;}
.w1_c01250{width:684.449850px;}
.w0_c01250{width:892.500000px;}
.x0_c01250{left:0.000000px;}
.x3_c01250{left:32.977380px;}
.x1_c01250{left:134.787405px;}
.x2_c01250{left:147.000000px;}
.x4_c01250{left:432.515100px;}
.x5_c01250{left:817.725150px;}
@media print{
.v2_c01250{vertical-align:-29.333333pt;}
.v0_c01250{vertical-align:0.000000pt;}
.v1_c01250{vertical-align:20.521067pt;}
.ls3_c01250{letter-spacing:-0.008533pt;}
.ls2_c01250{letter-spacing:0.000000pt;}
.ls0_c01250{letter-spacing:0.006400pt;}
.ls1_c01250{letter-spacing:0.010667pt;}
.ws0_c01250{word-spacing:-17.600000pt;}
.ws3_c01250{word-spacing:-13.333333pt;}
.ws1_c01250{word-spacing:-11.724800pt;}
.ws2_c01250{word-spacing:-8.888889pt;}
.ws4_c01250{word-spacing:0.000000pt;}
._6_c01250{margin-left:-16.857600pt;}
._16_c01250{margin-left:-8.633600pt;}
._7_c01250{margin-left:-4.217600pt;}
._c_c01250{margin-left:-3.315200pt;}
._3_c01250{margin-left:-1.926400pt;}
._1_c01250{margin-left:-0.960000pt;}
._5_c01250{width:0.966400pt;}
._0_c01250{width:2.067200pt;}
._2_c01250{width:3.110400pt;}
._4_c01250{width:4.364800pt;}
._e_c01250{width:5.280000pt;}
._f_c01250{width:6.272000pt;}
._a_c01250{width:7.379200pt;}
._9_c01250{width:8.448000pt;}
._15_c01250{width:9.440693pt;}
._b_c01250{width:10.438400pt;}
._d_c01250{width:11.750400pt;}
._8_c01250{width:12.665600pt;}
._11_c01250{width:21.273600pt;}
._10_c01250{width:25.651200pt;}
._13_c01250{width:27.558400pt;}
._12_c01250{width:28.876800pt;}
._14_c01250{width:29.772800pt;}
.fs4_c01250{font-size:35.555557pt;}
.fs2_c01250{font-size:42.666667pt;}
.fs1_c01250{font-size:48.000000pt;}
.fs3_c01250{font-size:53.333333pt;}
.fs0_c01250{font-size:64.000000pt;}
.y0_c01250{bottom:0.000000pt;}
.y5_c01250{bottom:10.666667pt;}
.y14_c01250{bottom:60.000000pt;}
.y16_c01250{bottom:117.333333pt;}
.y15_c01250{bottom:142.000000pt;}
.y12_c01250{bottom:196.000000pt;}
.y11_c01250{bottom:220.000000pt;}
.y10_c01250{bottom:254.666667pt;}
.yf_c01250{bottom:324.000000pt;}
.ye_c01250{bottom:401.333333pt;}
.yd_c01250{bottom:425.333333pt;}
.yc_c01250{bottom:449.333333pt;}
.yb_c01250{bottom:473.333333pt;}
.ya_c01250{bottom:497.333333pt;}
.y9_c01250{bottom:521.333333pt;}
.y8_c01250{bottom:545.333333pt;}
.y7_c01250{bottom:569.333333pt;}
.y6_c01250{bottom:593.333333pt;}
.y4_c01250{bottom:633.333333pt;}
.y3_c01250{bottom:925.333333pt;}
.y2_c01250{bottom:949.333333pt;}
.y1_c01250{bottom:973.333333pt;}
.y13_c01250{bottom:1061.333333pt;}
.h6_c01250{height:24.375001pt;}
.h7_c01250{height:36.562500pt;}
.h3_c01250{height:37.593750pt;}
.h1_c01250{height:45.562500pt;}
.h5_c01250{height:49.843750pt;}
.h4_c01250{height:50.896067pt;}
.h2_c01250{height:264.000000pt;}
.h0_c01250{height:1122.666667pt;}
.w1_c01250{width:608.399867pt;}
.w0_c01250{width:793.333333pt;}
.x0_c01250{left:0.000000pt;}
.x3_c01250{left:29.313227pt;}
.x1_c01250{left:119.811027pt;}
.x2_c01250{left:130.666667pt;}
.x4_c01250{left:384.457867pt;}
.x5_c01250{left:726.866800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ae551d687ebb963640fb913b.woff2')format("woff");}.ff1_c01251{font-family:ff1_c01251;line-height:1.161133;font-style:normal;font-weight:normal;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_a28791efe35565c61ad9dd02.woff2')format("woff");}.ff2_c01251{font-family:ff2_c01251;line-height:0.934082;font-style:normal;font-weight:normal;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_5d317408e0fb29f03af8eb0d.woff2')format("woff");}.ff3_c01251{font-family:ff3_c01251;line-height:1.010254;font-style:normal;font-weight:normal;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_165e3c08cff468f922488a0e.woff2')format("woff");}.ff4_c01251{font-family:ff4_c01251;line-height:0.756836;font-style:normal;font-weight:normal;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_736b520417bca242c7ac2fb4.woff2')format("woff");}.ff5_c01251{font-family:ff5_c01251;line-height:1.155762;font-style: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);}
.v0_c01251{vertical-align:0.000000px;}
.ls2_c01251{letter-spacing:-0.006000px;}
.ls1_c01251{letter-spacing:0.000000px;}
.ls3_c01251{letter-spacing:0.012000px;}
.ls0_c01251{letter-spacing:0.784800px;}
.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;}
}
.ws0_c01251{word-spacing:-16.494000px;}
.ws1_c01251{word-spacing:0.000000px;}
._a_c01251{margin-left:-13.248000px;}
._6_c01251{margin-left:-7.734000px;}
._1c_c01251{margin-left:-6.684900px;}
._21_c01251{margin-left:-5.626800px;}
._11_c01251{margin-left:-4.349700px;}
._17_c01251{margin-left:-3.312000px;}
._7_c01251{margin-left:-2.281500px;}
._2_c01251{margin-left:-1.077900px;}
._1_c01251{width:1.098000px;}
._1e_c01251{width:2.138100px;}
._3_c01251{width:3.228000px;}
._b_c01251{width:4.502400px;}
._9_c01251{width:5.535000px;}
._13_c01251{width:6.967500px;}
._1f_c01251{width:8.112900px;}
._4_c01251{width:9.612000px;}
._22_c01251{width:10.650000px;}
._5_c01251{width:11.727900px;}
._0_c01251{width:12.840000px;}
._20_c01251{width:14.039400px;}
._8_c01251{width:15.133500px;}
._18_c01251{width:16.276800px;}
._1a_c01251{width:19.074000px;}
._19_c01251{width:20.096700px;}
._c_c01251{width:21.237600px;}
._10_c01251{width:23.130000px;}
._f_c01251{width:24.537600px;}
._d_c01251{width:25.550700px;}
._e_c01251{width:26.804700px;}
._12_c01251{width:28.158300px;}
._14_c01251{width:30.273600px;}
._1d_c01251{width:31.489500px;}
._1b_c01251{width:32.844900px;}
._16_c01251{width:34.848000px;}
._15_c01251{width:37.129500px;}
.fc0_c01251{color:rgb(0,0,0);}
.fs0_c01251{font-size:60.000000px;}
.fs1_c01251{font-size:72.000000px;}
.y0_c01251{bottom:0.000000px;}
.y2a_c01251{bottom:67.500000px;}
.y28_c01251{bottom:159.000000px;}
.y27_c01251{bottom:180.000000px;}
.y26_c01251{bottom:201.000000px;}
.y25_c01251{bottom:222.000000px;}
.y24_c01251{bottom:243.000000px;}
.y23_c01251{bottom:264.000000px;}
.y22_c01251{bottom:306.000000px;}
.y21_c01251{bottom:327.000000px;}
.y20_c01251{bottom:348.000000px;}
.y1f_c01251{bottom:369.000000px;}
.y1e_c01251{bottom:390.000000px;}
.y1d_c01251{bottom:411.000000px;}
.y1c_c01251{bottom:432.000000px;}
.y1b_c01251{bottom:453.000000px;}
.y1a_c01251{bottom:474.000000px;}
.y19_c01251{bottom:495.000000px;}
.y18_c01251{bottom:516.000000px;}
.y17_c01251{bottom:537.000000px;}
.y16_c01251{bottom:558.000000px;}
.y15_c01251{bottom:579.000000px;}
.y14_c01251{bottom:621.000000px;}
.y13_c01251{bottom:642.000000px;}
.y12_c01251{bottom:663.000000px;}
.y11_c01251{bottom:684.000000px;}
.y10_c01251{bottom:705.000000px;}
.yf_c01251{bottom:747.000000px;}
.ye_c01251{bottom:768.000000px;}
.yd_c01251{bottom:789.000000px;}
.yc_c01251{bottom:810.000000px;}
.yb_c01251{bottom:831.000000px;}
.ya_c01251{bottom:852.000000px;}
.y9_c01251{bottom:873.000000px;}
.y8_c01251{bottom:894.000000px;}
.y7_c01251{bottom:915.000000px;}
.y6_c01251{bottom:936.000000px;}
.y5_c01251{bottom:978.000000px;}
.y4_c01251{bottom:999.000000px;}
.y3_c01251{bottom:1056.000000px;}
.y2_c01251{bottom:1077.000000px;}
.y1_c01251{bottom:1098.000000px;}
.y29_c01251{bottom:1194.000000px;}
.h4_c01251{height:44.208984px;}
.h2_c01251{height:52.417969px;}
.h3_c01251{height:56.074219px;}
.h1_c01251{height:56.455078px;}
.h0_c01251{height:1263.000000px;}
.w0_c01251{width:892.500000px;}
.x0_c01251{left:0.000000px;}
.x1_c01251{left:49.748025px;}
@media print{
.v0_c01251{vertical-align:0.000000pt;}
.ls2_c01251{letter-spacing:-0.005333pt;}
.ls1_c01251{letter-spacing:0.000000pt;}
.ls3_c01251{letter-spacing:0.010667pt;}
.ls0_c01251{letter-spacing:0.697600pt;}
.ws0_c01251{word-spacing:-14.661333pt;}
.ws1_c01251{word-spacing:0.000000pt;}
._a_c01251{margin-left:-11.776000pt;}
._6_c01251{margin-left:-6.874667pt;}
._1c_c01251{margin-left:-5.942133pt;}
._21_c01251{margin-left:-5.001600pt;}
._11_c01251{margin-left:-3.866400pt;}
._17_c01251{margin-left:-2.944000pt;}
._7_c01251{margin-left:-2.028000pt;}
._2_c01251{margin-left:-0.958133pt;}
._1_c01251{width:0.976000pt;}
._1e_c01251{width:1.900533pt;}
._3_c01251{width:2.869333pt;}
._b_c01251{width:4.002133pt;}
._9_c01251{width:4.920000pt;}
._13_c01251{width:6.193333pt;}
._1f_c01251{width:7.211467pt;}
._4_c01251{width:8.544000pt;}
._22_c01251{width:9.466667pt;}
._5_c01251{width:10.424800pt;}
._0_c01251{width:11.413333pt;}
._20_c01251{width:12.479467pt;}
._8_c01251{width:13.452000pt;}
._18_c01251{width:14.468267pt;}
._1a_c01251{width:16.954667pt;}
._19_c01251{width:17.863733pt;}
._c_c01251{width:18.877867pt;}
._10_c01251{width:20.560000pt;}
._f_c01251{width:21.811200pt;}
._d_c01251{width:22.711733pt;}
._e_c01251{width:23.826400pt;}
._12_c01251{width:25.029600pt;}
._14_c01251{width:26.909867pt;}
._1d_c01251{width:27.990667pt;}
._1b_c01251{width:29.195467pt;}
._16_c01251{width:30.976000pt;}
._15_c01251{width:33.004000pt;}
.fs0_c01251{font-size:53.333333pt;}
.fs1_c01251{font-size:64.000000pt;}
.y0_c01251{bottom:0.000000pt;}
.y2a_c01251{bottom:60.000000pt;}
.y28_c01251{bottom:141.333333pt;}
.y27_c01251{bottom:160.000000pt;}
.y26_c01251{bottom:178.666667pt;}
.y25_c01251{bottom:197.333333pt;}
.y24_c01251{bottom:216.000000pt;}
.y23_c01251{bottom:234.666667pt;}
.y22_c01251{bottom:272.000000pt;}
.y21_c01251{bottom:290.666667pt;}
.y20_c01251{bottom:309.333333pt;}
.y1f_c01251{bottom:328.000000pt;}
.y1e_c01251{bottom:346.666667pt;}
.y1d_c01251{bottom:365.333333pt;}
.y1c_c01251{bottom:384.000000pt;}
.y1b_c01251{bottom:402.666667pt;}
.y1a_c01251{bottom:421.333333pt;}
.y19_c01251{bottom:440.000000pt;}
.y18_c01251{bottom:458.666667pt;}
.y17_c01251{bottom:477.333333pt;}
.y16_c01251{bottom:496.000000pt;}
.y15_c01251{bottom:514.666667pt;}
.y14_c01251{bottom:552.000000pt;}
.y13_c01251{bottom:570.666667pt;}
.y12_c01251{bottom:589.333333pt;}
.y11_c01251{bottom:608.000000pt;}
.y10_c01251{bottom:626.666667pt;}
.yf_c01251{bottom:664.000000pt;}
.ye_c01251{bottom:682.666667pt;}
.yd_c01251{bottom:701.333333pt;}
.yc_c01251{bottom:720.000000pt;}
.yb_c01251{bottom:738.666667pt;}
.ya_c01251{bottom:757.333333pt;}
.y9_c01251{bottom:776.000000pt;}
.y8_c01251{bottom:794.666667pt;}
.y7_c01251{bottom:813.333333pt;}
.y6_c01251{bottom:832.000000pt;}
.y5_c01251{bottom:869.333333pt;}
.y4_c01251{bottom:888.000000pt;}
.y3_c01251{bottom:938.666667pt;}
.y2_c01251{bottom:957.333333pt;}
.y1_c01251{bottom:976.000000pt;}
.y29_c01251{bottom:1061.333333pt;}
.h4_c01251{height:39.296875pt;}
.h2_c01251{height:46.593750pt;}
.h3_c01251{height:49.843750pt;}
.h1_c01251{height:50.182292pt;}
.h0_c01251{height:1122.666667pt;}
.w0_c01251{width:793.333333pt;}
.x0_c01251{left:0.000000pt;}
.x1_c01251{left:44.220467pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bc726dbf5492598d09fabeee.woff2')format("woff");}.ff1_c01252{font-family:ff1_c01252;line-height:1.010254;font-style:normal;font-weight:normal;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_67b2a167338bbc9c5f19eee9.woff2')format("woff");}.ff2_c01252{font-family:ff2_c01252;line-height:1.155762;font-style: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;}
.ls1_c01252{letter-spacing:0.000000px;}
.ls0_c01252{letter-spacing:0.012000px;}
.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;}
}
.ws0_c01252{word-spacing:-18.000000px;}
.ws1_c01252{word-spacing:0.000000px;}
._11_c01252{margin-left:-4.752000px;}
._4_c01252{margin-left:-3.283200px;}
._0_c01252{margin-left:-1.296000px;}
._8_c01252{width:1.965600px;}
._6_c01252{width:3.722400px;}
._1_c01252{width:5.184000px;}
._2_c01252{width:6.595200px;}
._7_c01252{width:8.056800px;}
._9_c01252{width:9.777600px;}
._19_c01252{width:10.800000px;}
._3_c01252{width:11.800800px;}
._a_c01252{width:13.183200px;}
._5_c01252{width:14.990400px;}
._b_c01252{width:16.480800px;}
._10_c01252{width:19.497600px;}
._15_c01252{width:21.009600px;}
._f_c01252{width:22.212000px;}
._17_c01252{width:24.422400px;}
._16_c01252{width:27.158400px;}
._d_c01252{width:28.519200px;}
._c_c01252{width:30.463200px;}
._13_c01252{width:32.169600px;}
._e_c01252{width:33.609600px;}
._12_c01252{width:35.272800px;}
._18_c01252{width:37.274400px;}
._14_c01252{width:38.556000px;}
.fc0_c01252{color:rgb(0,0,0);}
.fs1_c01252{font-size:60.000000px;}
.fs0_c01252{font-size:72.000000px;}
.y0_c01252{bottom:0.000000px;}
.y25_c01252{bottom:67.500000px;}
.y23_c01252{bottom:151.500000px;}
.y22_c01252{bottom:193.500000px;}
.y21_c01252{bottom:214.500000px;}
.y20_c01252{bottom:235.500000px;}
.y1f_c01252{bottom:256.500000px;}
.y1e_c01252{bottom:298.500000px;}
.y1d_c01252{bottom:319.500000px;}
.y1c_c01252{bottom:340.500000px;}
.y1b_c01252{bottom:361.500000px;}
.y1a_c01252{bottom:403.500000px;}
.y19_c01252{bottom:424.500000px;}
.y18_c01252{bottom:445.500000px;}
.y17_c01252{bottom:487.500000px;}
.y16_c01252{bottom:508.500000px;}
.y15_c01252{bottom:550.500000px;}
.y14_c01252{bottom:571.500000px;}
.y13_c01252{bottom:592.500000px;}
.y12_c01252{bottom:613.500000px;}
.y11_c01252{bottom:634.500000px;}
.y10_c01252{bottom:676.500000px;}
.yf_c01252{bottom:697.500000px;}
.ye_c01252{bottom:718.500000px;}
.yd_c01252{bottom:739.500000px;}
.yc_c01252{bottom:781.500000px;}
.yb_c01252{bottom:802.500000px;}
.ya_c01252{bottom:844.500000px;}
.y9_c01252{bottom:865.500000px;}
.y8_c01252{bottom:907.500000px;}
.y7_c01252{bottom:928.500000px;}
.y6_c01252{bottom:970.500000px;}
.y5_c01252{bottom:991.500000px;}
.y4_c01252{bottom:1033.500000px;}
.y3_c01252{bottom:1054.500000px;}
.y2_c01252{bottom:1075.500000px;}
.y1_c01252{bottom:1096.500000px;}
.y24_c01252{bottom:1194.000000px;}
.h1_c01252{height:52.417969px;}
.h2_c01252{height:56.074219px;}
.h0_c01252{height:1263.000000px;}
.w0_c01252{width:892.500000px;}
.x0_c01252{left:0.000000px;}
.x1_c01252{left:134.787405px;}
.x2_c01252{left:432.515100px;}
.x3_c01252{left:817.725150px;}
@media print{
.v0_c01252{vertical-align:0.000000pt;}
.ls1_c01252{letter-spacing:0.000000pt;}
.ls0_c01252{letter-spacing:0.010667pt;}
.ws0_c01252{word-spacing:-16.000000pt;}
.ws1_c01252{word-spacing:0.000000pt;}
._11_c01252{margin-left:-4.224000pt;}
._4_c01252{margin-left:-2.918400pt;}
._0_c01252{margin-left:-1.152000pt;}
._8_c01252{width:1.747200pt;}
._6_c01252{width:3.308800pt;}
._1_c01252{width:4.608000pt;}
._2_c01252{width:5.862400pt;}
._7_c01252{width:7.161600pt;}
._9_c01252{width:8.691200pt;}
._19_c01252{width:9.600000pt;}
._3_c01252{width:10.489600pt;}
._a_c01252{width:11.718400pt;}
._5_c01252{width:13.324800pt;}
._b_c01252{width:14.649600pt;}
._10_c01252{width:17.331200pt;}
._15_c01252{width:18.675200pt;}
._f_c01252{width:19.744000pt;}
._17_c01252{width:21.708800pt;}
._16_c01252{width:24.140800pt;}
._d_c01252{width:25.350400pt;}
._c_c01252{width:27.078400pt;}
._13_c01252{width:28.595200pt;}
._e_c01252{width:29.875200pt;}
._12_c01252{width:31.353600pt;}
._18_c01252{width:33.132800pt;}
._14_c01252{width:34.272000pt;}
.fs1_c01252{font-size:53.333333pt;}
.fs0_c01252{font-size:64.000000pt;}
.y0_c01252{bottom:0.000000pt;}
.y25_c01252{bottom:60.000000pt;}
.y23_c01252{bottom:134.666667pt;}
.y22_c01252{bottom:172.000000pt;}
.y21_c01252{bottom:190.666667pt;}
.y20_c01252{bottom:209.333333pt;}
.y1f_c01252{bottom:228.000000pt;}
.y1e_c01252{bottom:265.333333pt;}
.y1d_c01252{bottom:284.000000pt;}
.y1c_c01252{bottom:302.666667pt;}
.y1b_c01252{bottom:321.333333pt;}
.y1a_c01252{bottom:358.666667pt;}
.y19_c01252{bottom:377.333333pt;}
.y18_c01252{bottom:396.000000pt;}
.y17_c01252{bottom:433.333333pt;}
.y16_c01252{bottom:452.000000pt;}
.y15_c01252{bottom:489.333333pt;}
.y14_c01252{bottom:508.000000pt;}
.y13_c01252{bottom:526.666667pt;}
.y12_c01252{bottom:545.333333pt;}
.y11_c01252{bottom:564.000000pt;}
.y10_c01252{bottom:601.333333pt;}
.yf_c01252{bottom:620.000000pt;}
.ye_c01252{bottom:638.666667pt;}
.yd_c01252{bottom:657.333333pt;}
.yc_c01252{bottom:694.666667pt;}
.yb_c01252{bottom:713.333333pt;}
.ya_c01252{bottom:750.666667pt;}
.y9_c01252{bottom:769.333333pt;}
.y8_c01252{bottom:806.666667pt;}
.y7_c01252{bottom:825.333333pt;}
.y6_c01252{bottom:862.666667pt;}
.y5_c01252{bottom:881.333333pt;}
.y4_c01252{bottom:918.666667pt;}
.y3_c01252{bottom:937.333333pt;}
.y2_c01252{bottom:956.000000pt;}
.y1_c01252{bottom:974.666667pt;}
.y24_c01252{bottom:1061.333333pt;}
.h1_c01252{height:46.593750pt;}
.h2_c01252{height:49.843750pt;}
.h0_c01252{height:1122.666667pt;}
.w0_c01252{width:793.333333pt;}
.x0_c01252{left:0.000000pt;}
.x1_c01252{left:119.811027pt;}
.x2_c01252{left:384.457867pt;}
.x3_c01252{left:726.866800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_830785d64102584304c97819.woff2')format("woff");}.ff1_c01253{font-family:ff1_c01253;line-height:1.010254;font-style:normal;font-weight:normal;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_ae27fb3a7ca3d5ccd9431418.woff2')format("woff");}.ff2_c01253{font-family:ff2_c01253;line-height:0.986816;font-style:normal;font-weight:normal;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_9ad1f450751c76993a0354ac.woff2')format("woff");}.ff3_c01253{font-family:ff3_c01253;line-height:0.755859;font-style:normal;font-weight:normal;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_a2a9bb35b4879826e1159a03.woff2')format("woff");}.ff4_c01253{font-family:ff4_c01253;line-height:1.155762;font-style: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);}
.v0_c01253{vertical-align:0.000000px;}
.ls1_c01253{letter-spacing:0.000000px;}
.ls2_c01253{letter-spacing:0.012000px;}
.ls0_c01253{letter-spacing:1.958400px;}
.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;}
}
.ws0_c01253{word-spacing:-18.000000px;}
.ws1_c01253{word-spacing:-0.072000px;}
.ws2_c01253{word-spacing:0.000000px;}
._14_c01253{margin-left:-6.624000px;}
._1d_c01253{margin-left:-5.590500px;}
._11_c01253{margin-left:-4.545900px;}
._1e_c01253{margin-left:-3.532200px;}
._3_c01253{margin-left:-2.484000px;}
._2_c01253{margin-left:-1.310400px;}
._9_c01253{width:1.468800px;}
._7_c01253{width:3.141600px;}
._0_c01253{width:4.339500px;}
._1a_c01253{width:6.017100px;}
._19_c01253{width:7.280700px;}
._d_c01253{width:8.546400px;}
._16_c01253{width:9.696000px;}
._b_c01253{width:11.160000px;}
._17_c01253{width:12.333600px;}
._c_c01253{width:13.681500px;}
._15_c01253{width:16.041600px;}
._10_c01253{width:19.180800px;}
._18_c01253{width:20.354400px;}
._e_c01253{width:21.960000px;}
._f_c01253{width:23.112000px;}
._1_c01253{width:25.581600px;}
._8_c01253{width:26.791200px;}
._a_c01253{width:28.404000px;}
._5_c01253{width:29.930400px;}
._6_c01253{width:31.219200px;}
._4_c01253{width:32.400000px;}
._1c_c01253{width:33.951900px;}
._12_c01253{width:35.546400px;}
._13_c01253{width:37.593900px;}
._1b_c01253{width:39.149100px;}
.fc0_c01253{color:rgb(0,0,0);}
.fs1_c01253{font-size:60.000000px;}
.fs0_c01253{font-size:72.000000px;}
.y0_c01253{bottom:0.000000px;}
.y15_c01253{bottom:67.500000px;}
.y13_c01253{bottom:655.500000px;}
.y12_c01253{bottom:676.500000px;}
.y11_c01253{bottom:697.500000px;}
.y10_c01253{bottom:718.500000px;}
.yf_c01253{bottom:739.500000px;}
.ye_c01253{bottom:760.500000px;}
.yd_c01253{bottom:781.500000px;}
.yc_c01253{bottom:802.500000px;}
.yb_c01253{bottom:823.500000px;}
.ya_c01253{bottom:844.500000px;}
.y9_c01253{bottom:886.500000px;}
.y8_c01253{bottom:907.500000px;}
.y7_c01253{bottom:928.500000px;}
.y6_c01253{bottom:949.500000px;}
.y5_c01253{bottom:970.500000px;}
.y4_c01253{bottom:991.500000px;}
.y3_c01253{bottom:1012.500000px;}
.y2_c01253{bottom:1054.500000px;}
.y1_c01253{bottom:1096.500000px;}
.y14_c01253{bottom:1194.000000px;}
.h3_c01253{height:44.208984px;}
.h1_c01253{height:52.417969px;}
.h2_c01253{height:56.074219px;}
.h0_c01253{height:1263.000000px;}
.w0_c01253{width:892.500000px;}
.x0_c01253{left:0.000000px;}
.x1_c01253{left:49.748025px;}
@media print{
.v0_c01253{vertical-align:0.000000pt;}
.ls1_c01253{letter-spacing:0.000000pt;}
.ls2_c01253{letter-spacing:0.010667pt;}
.ls0_c01253{letter-spacing:1.740800pt;}
.ws0_c01253{word-spacing:-16.000000pt;}
.ws1_c01253{word-spacing:-0.064000pt;}
.ws2_c01253{word-spacing:0.000000pt;}
._14_c01253{margin-left:-5.888000pt;}
._1d_c01253{margin-left:-4.969333pt;}
._11_c01253{margin-left:-4.040800pt;}
._1e_c01253{margin-left:-3.139733pt;}
._3_c01253{margin-left:-2.208000pt;}
._2_c01253{margin-left:-1.164800pt;}
._9_c01253{width:1.305600pt;}
._7_c01253{width:2.792533pt;}
._0_c01253{width:3.857333pt;}
._1a_c01253{width:5.348533pt;}
._19_c01253{width:6.471733pt;}
._d_c01253{width:7.596800pt;}
._16_c01253{width:8.618667pt;}
._b_c01253{width:9.920000pt;}
._17_c01253{width:10.963200pt;}
._c_c01253{width:12.161333pt;}
._15_c01253{width:14.259200pt;}
._10_c01253{width:17.049600pt;}
._18_c01253{width:18.092800pt;}
._e_c01253{width:19.520000pt;}
._f_c01253{width:20.544000pt;}
._1_c01253{width:22.739200pt;}
._8_c01253{width:23.814400pt;}
._a_c01253{width:25.248000pt;}
._5_c01253{width:26.604800pt;}
._6_c01253{width:27.750400pt;}
._4_c01253{width:28.800000pt;}
._1c_c01253{width:30.179467pt;}
._12_c01253{width:31.596800pt;}
._13_c01253{width:33.416800pt;}
._1b_c01253{width:34.799200pt;}
.fs1_c01253{font-size:53.333333pt;}
.fs0_c01253{font-size:64.000000pt;}
.y0_c01253{bottom:0.000000pt;}
.y15_c01253{bottom:60.000000pt;}
.y13_c01253{bottom:582.666667pt;}
.y12_c01253{bottom:601.333333pt;}
.y11_c01253{bottom:620.000000pt;}
.y10_c01253{bottom:638.666667pt;}
.yf_c01253{bottom:657.333333pt;}
.ye_c01253{bottom:676.000000pt;}
.yd_c01253{bottom:694.666667pt;}
.yc_c01253{bottom:713.333333pt;}
.yb_c01253{bottom:732.000000pt;}
.ya_c01253{bottom:750.666667pt;}
.y9_c01253{bottom:788.000000pt;}
.y8_c01253{bottom:806.666667pt;}
.y7_c01253{bottom:825.333333pt;}
.y6_c01253{bottom:844.000000pt;}
.y5_c01253{bottom:862.666667pt;}
.y4_c01253{bottom:881.333333pt;}
.y3_c01253{bottom:900.000000pt;}
.y2_c01253{bottom:937.333333pt;}
.y1_c01253{bottom:974.666667pt;}
.y14_c01253{bottom:1061.333333pt;}
.h3_c01253{height:39.296875pt;}
.h1_c01253{height:46.593750pt;}
.h2_c01253{height:49.843750pt;}
.h0_c01253{height:1122.666667pt;}
.w0_c01253{width:793.333333pt;}
.x0_c01253{left:0.000000pt;}
.x1_c01253{left:44.220467pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_838d1ed829910eef06fb0c2c.woff2')format("woff");}.ff1_c01254{font-family:ff1_c01254;line-height:0.884766;font-style:normal;font-weight:normal;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_c74bb613773f1d3884917ef9.woff2')format("woff");}.ff2_c01254{font-family:ff2_c01254;line-height:0.934082;font-style:normal;font-weight:normal;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_ae6eabd864b11fa1686d2136.woff2')format("woff");}.ff3_c01254{font-family:ff3_c01254;line-height:1.155762;font-style:normal;font-weight:normal;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_336d9bcc12d4caf395fe5ea3.woff2')format("woff");}.ff4_c01254{font-family:ff4_c01254;line-height:0.903320;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01254;src:url('chunks/assets/font_39811d14b3d6813ae19f5ca4.woff2')format("woff");}.ff5_c01254{font-family:ff5_c01254;line-height:0.893555;font-style: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);}
.m1_c01254{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3_c01254{vertical-align:-33.000000px;}
.v2_c01254{vertical-align:-23.086200px;}
.v0_c01254{vertical-align:0.000000px;}
.v1_c01254{vertical-align:23.086200px;}
.ls6_c01254{letter-spacing:0.000000px;}
.ls0_c01254{letter-spacing:0.007800px;}
.ls4_c01254{letter-spacing:0.012000px;}
.ls1_c01254{letter-spacing:3.037200px;}
.ls5_c01254{letter-spacing:9.999999px;}
.ls3_c01254{letter-spacing:17.835000px;}
.ls2_c01254{letter-spacing:32.115600px;}
.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;}
}
.ws0_c01254{word-spacing:-10.000001px;}
.ws1_c01254{word-spacing:0.000000px;}
._10_c01254{margin-left:-10.605600px;}
._1c_c01254{margin-left:-7.746000px;}
._c_c01254{margin-left:-6.422400px;}
._e_c01254{margin-left:-5.025600px;}
._a_c01254{margin-left:-3.484800px;}
._0_c01254{margin-left:-2.188800px;}
._d_c01254{margin-left:-1.005600px;}
._9_c01254{width:1.389600px;}
._4_c01254{width:2.743200px;}
._b_c01254{width:3.859200px;}
._3_c01254{width:4.932000px;}
._f_c01254{width:6.163200px;}
._2_c01254{width:7.560000px;}
._15_c01254{width:8.719200px;}
._1_c01254{width:9.777600px;}
._11_c01254{width:11.344800px;}
._1a_c01254{width:12.960000px;}
._12_c01254{width:14.536800px;}
._19_c01254{width:16.070400px;}
._17_c01254{width:17.388000px;}
._16_c01254{width:18.720000px;}
._1b_c01254{width:19.773600px;}
._18_c01254{width:21.628800px;}
._5_c01254{width:22.939200px;}
._13_c01254{width:24.048000px;}
._8_c01254{width:25.164000px;}
._14_c01254{width:26.416800px;}
._7_c01254{width:27.871200px;}
._6_c01254{width:30.031200px;}
.fc1_c01254{color:rgb(255,255,255);}
.fc0_c01254{color:rgb(0,0,0);}
.fs5_c01254{font-size:40.000002px;}
.fs2_c01254{font-size:48.000000px;}
.fs4_c01254{font-size:60.000000px;}
.fs1_c01254{font-size:72.000000px;}
.fs0_c01254{font-size:78.000000px;}
.fs3_c01254{font-size:96.000000px;}
.y0_c01254{bottom:0.000000px;}
.y1b_c01254{bottom:67.500000px;}
.y20_c01254{bottom:140.250000px;}
.y1f_c01254{bottom:189.750000px;}
.y1e_c01254{bottom:231.000000px;}
.y1d_c01254{bottom:250.500000px;}
.y1c_c01254{bottom:278.250000px;}
.y18_c01254{bottom:331.500000px;}
.y17_c01254{bottom:358.500000px;}
.y16_c01254{bottom:385.500000px;}
.y15_c01254{bottom:412.500000px;}
.y14_c01254{bottom:439.500000px;}
.y13_c01254{bottom:466.500000px;}
.y12_c01254{bottom:493.500000px;}
.y11_c01254{bottom:520.500000px;}
.y10_c01254{bottom:547.500000px;}
.yf_c01254{bottom:574.500000px;}
.ye_c01254{bottom:601.500000px;}
.yd_c01254{bottom:628.500000px;}
.yc_c01254{bottom:655.500000px;}
.yb_c01254{bottom:682.500000px;}
.ya_c01254{bottom:709.500000px;}
.y9_c01254{bottom:736.500000px;}
.y8_c01254{bottom:763.500000px;}
.y7_c01254{bottom:790.500000px;}
.y6_c01254{bottom:817.500000px;}
.y5_c01254{bottom:844.500000px;}
.y4_c01254{bottom:871.500000px;}
.y3_c01254{bottom:919.500000px;}
.y2_c01254{bottom:946.500000px;}
.y1_c01254{bottom:993.000000px;}
.y19_c01254{bottom:1066.500000px;}
.y1a_c01254{bottom:1194.000000px;}
.h6_c01254{height:27.421876px;}
.h7_c01254{height:41.132812px;}
.h2_c01254{height:51.257812px;}
.h1_c01254{height:55.224609px;}
.h5_c01254{height:56.074219px;}
.h3_c01254{height:57.258075px;}
.h4_c01254{height:68.343750px;}
.h0_c01254{height:1263.000000px;}
.w0_c01254{width:892.500000px;}
.x0_c01254{left:0.000000px;}
.x1_c01254{left:150.519750px;}
.x2_c01254{left:180.298875px;}
.x3_c01254{left:416.782800px;}
.x4_c01254{left:801.992850px;}
@media print{
.v3_c01254{vertical-align:-29.333333pt;}
.v2_c01254{vertical-align:-20.521067pt;}
.v0_c01254{vertical-align:0.000000pt;}
.v1_c01254{vertical-align:20.521067pt;}
.ls6_c01254{letter-spacing:0.000000pt;}
.ls0_c01254{letter-spacing:0.006933pt;}
.ls4_c01254{letter-spacing:0.010667pt;}
.ls1_c01254{letter-spacing:2.699733pt;}
.ls5_c01254{letter-spacing:8.888888pt;}
.ls3_c01254{letter-spacing:15.853333pt;}
.ls2_c01254{letter-spacing:28.547200pt;}
.ws0_c01254{word-spacing:-8.888889pt;}
.ws1_c01254{word-spacing:0.000000pt;}
._10_c01254{margin-left:-9.427200pt;}
._1c_c01254{margin-left:-6.885333pt;}
._c_c01254{margin-left:-5.708800pt;}
._e_c01254{margin-left:-4.467200pt;}
._a_c01254{margin-left:-3.097600pt;}
._0_c01254{margin-left:-1.945600pt;}
._d_c01254{margin-left:-0.893867pt;}
._9_c01254{width:1.235200pt;}
._4_c01254{width:2.438400pt;}
._b_c01254{width:3.430400pt;}
._3_c01254{width:4.384000pt;}
._f_c01254{width:5.478400pt;}
._2_c01254{width:6.720000pt;}
._15_c01254{width:7.750400pt;}
._1_c01254{width:8.691200pt;}
._11_c01254{width:10.084267pt;}
._1a_c01254{width:11.520000pt;}
._12_c01254{width:12.921600pt;}
._19_c01254{width:14.284800pt;}
._17_c01254{width:15.456000pt;}
._16_c01254{width:16.640000pt;}
._1b_c01254{width:17.576533pt;}
._18_c01254{width:19.225600pt;}
._5_c01254{width:20.390400pt;}
._13_c01254{width:21.376000pt;}
._8_c01254{width:22.368000pt;}
._14_c01254{width:23.481600pt;}
._7_c01254{width:24.774400pt;}
._6_c01254{width:26.694400pt;}
.fs5_c01254{font-size:35.555557pt;}
.fs2_c01254{font-size:42.666667pt;}
.fs4_c01254{font-size:53.333333pt;}
.fs1_c01254{font-size:64.000000pt;}
.fs0_c01254{font-size:69.333333pt;}
.fs3_c01254{font-size:85.333333pt;}
.y0_c01254{bottom:0.000000pt;}
.y1b_c01254{bottom:60.000000pt;}
.y20_c01254{bottom:124.666667pt;}
.y1f_c01254{bottom:168.666667pt;}
.y1e_c01254{bottom:205.333333pt;}
.y1d_c01254{bottom:222.666667pt;}
.y1c_c01254{bottom:247.333333pt;}
.y18_c01254{bottom:294.666667pt;}
.y17_c01254{bottom:318.666667pt;}
.y16_c01254{bottom:342.666667pt;}
.y15_c01254{bottom:366.666667pt;}
.y14_c01254{bottom:390.666667pt;}
.y13_c01254{bottom:414.666667pt;}
.y12_c01254{bottom:438.666667pt;}
.y11_c01254{bottom:462.666667pt;}
.y10_c01254{bottom:486.666667pt;}
.yf_c01254{bottom:510.666667pt;}
.ye_c01254{bottom:534.666667pt;}
.yd_c01254{bottom:558.666667pt;}
.yc_c01254{bottom:582.666667pt;}
.yb_c01254{bottom:606.666667pt;}
.ya_c01254{bottom:630.666667pt;}
.y9_c01254{bottom:654.666667pt;}
.y8_c01254{bottom:678.666667pt;}
.y7_c01254{bottom:702.666667pt;}
.y6_c01254{bottom:726.666667pt;}
.y5_c01254{bottom:750.666667pt;}
.y4_c01254{bottom:774.666667pt;}
.y3_c01254{bottom:817.333333pt;}
.y2_c01254{bottom:841.333333pt;}
.y1_c01254{bottom:882.666667pt;}
.y19_c01254{bottom:948.000000pt;}
.y1a_c01254{bottom:1061.333333pt;}
.h6_c01254{height:24.375001pt;}
.h7_c01254{height:36.562500pt;}
.h2_c01254{height:45.562500pt;}
.h1_c01254{height:49.088542pt;}
.h5_c01254{height:49.843750pt;}
.h3_c01254{height:50.896067pt;}
.h4_c01254{height:60.750000pt;}
.h0_c01254{height:1122.666667pt;}
.w0_c01254{width:793.333333pt;}
.x0_c01254{left:0.000000pt;}
.x1_c01254{left:133.795333pt;}
.x2_c01254{left:160.265667pt;}
.x3_c01254{left:370.473600pt;}
.x4_c01254{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8b3e3512855fad30b5bfa17f.woff2')format("woff");}.ff1_c01255{font-family:ff1_c01255;line-height:0.934082;font-style:normal;font-weight:normal;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_638757ae308709d67cc2d1ba.woff2')format("woff");}.ff2_c01255{font-family:ff2_c01255;line-height:0.975586;font-style:normal;font-weight:normal;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_d73c2880928fa0b4a46dfffd.woff2')format("woff");}.ff3_c01255{font-family:ff3_c01255;line-height:0.939453;font-style:normal;font-weight:normal;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_550dc738e71ad07bfa5d017a.woff2')format("woff");}.ff4_c01255{font-family:ff4_c01255;line-height:0.755859;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01255;src:url('chunks/assets/font_5fca91542b3c5a97f021b5be.woff2')format("woff");}.ff5_c01255{font-family:ff5_c01255;line-height:1.155762;font-style:normal;font-weight: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_c01255;src:url('chunks/assets/font_ffc251ea0069a325a354067c.woff2')format("woff");}.ff6_c01255{font-family:ff6_c01255;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01255;src:url('chunks/assets/font_8e70f3a907d81390eb06333e.woff2')format("woff");}.ff7_c01255{font-family:ff7_c01255;line-height:0.891113;font-style: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);}
.m1_c01255{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3_c01255{vertical-align:-33.000000px;}
.v2_c01255{vertical-align:-23.086200px;}
.v0_c01255{vertical-align:0.000000px;}
.v1_c01255{vertical-align:23.086200px;}
.ls9_c01255{letter-spacing:-4.212000px;}
.ls6_c01255{letter-spacing:0.000000px;}
.ls1_c01255{letter-spacing:0.007800px;}
.ls7_c01255{letter-spacing:0.012000px;}
.ls0_c01255{letter-spacing:2.848800px;}
.ls5_c01255{letter-spacing:3.999999px;}
.ls8_c01255{letter-spacing:5.022000px;}
.ls2_c01255{letter-spacing:8.121600px;}
.ls4_c01255{letter-spacing:9.999999px;}
.ls3_c01255{letter-spacing:15.952800px;}
.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:-13.200000px;}
.ws1_c01255{word-spacing:-10.000001px;}
.ws2_c01255{word-spacing:0.000000px;}
._5_c01255{margin-left:-10.584000px;}
._15_c01255{margin-left:-9.420000px;}
._d_c01255{margin-left:-6.256800px;}
._14_c01255{margin-left:-5.040000px;}
._13_c01255{margin-left:-3.883440px;}
._2_c01255{margin-left:-2.628000px;}
._0_c01255{margin-left:-1.490400px;}
._4_c01255{width:1.231200px;}
._1_c01255{width:2.376000px;}
._3_c01255{width:3.520800px;}
._6_c01255{width:4.629600px;}
._7_c01255{width:6.228000px;}
._a_c01255{width:7.711200px;}
._c_c01255{width:9.115200px;}
._9_c01255{width:10.483200px;}
._8_c01255{width:11.563200px;}
._b_c01255{width:12.736800px;}
._11_c01255{width:13.903200px;}
._10_c01255{width:16.207200px;}
._12_c01255{width:17.471760px;}
._16_c01255{width:19.339680px;}
._f_c01255{width:22.874400px;}
._e_c01255{width:24.264000px;}
.fc0_c01255{color:rgb(0,0,0);}
.fs5_c01255{font-size:40.000002px;}
.fs1_c01255{font-size:48.000000px;}
.fs2_c01255{font-size:54.000000px;}
.fs4_c01255{font-size:60.000000px;}
.fs0_c01255{font-size:72.000000px;}
.fs3_c01255{font-size:78.000000px;}
.y0_c01255{bottom:0.000000px;}
.y5_c01255{bottom:12.000000px;}
.y10_c01255{bottom:67.500000px;}
.y16_c01255{bottom:140.250000px;}
.y15_c01255{bottom:181.500000px;}
.y14_c01255{bottom:209.250000px;}
.y13_c01255{bottom:258.750000px;}
.y12_c01255{bottom:300.000000px;}
.y11_c01255{bottom:327.750000px;}
.ye_c01255{bottom:373.500000px;}
.yd_c01255{bottom:400.500000px;}
.yc_c01255{bottom:427.500000px;}
.yb_c01255{bottom:454.500000px;}
.ya_c01255{bottom:481.500000px;}
.y9_c01255{bottom:528.000000px;}
.y8_c01255{bottom:592.500000px;}
.y7_c01255{bottom:619.500000px;}
.y6_c01255{bottom:646.500000px;}
.y4_c01255{bottom:691.500000px;}
.y3_c01255{bottom:1041.000000px;}
.y2_c01255{bottom:1068.000000px;}
.y1_c01255{bottom:1095.000000px;}
.yf_c01255{bottom:1194.000000px;}
.h8_c01255{height:35.781252px;}
.h4_c01255{height:41.633789px;}
.h7_c01255{height:44.208984px;}
.h1_c01255{height:51.257812px;}
.h9_c01255{height:53.671875px;}
.h6_c01255{height:56.074219px;}
.h5_c01255{height:56.100586px;}
.h2_c01255{height:57.258075px;}
.h3_c01255{height:318.000000px;}
.h0_c01255{height:1263.000000px;}
.w1_c01255{width:676.500000px;}
.w0_c01255{width:892.500000px;}
.x0_c01255{left:0.000000px;}
.x1_c01255{left:65.480310px;}
.x2_c01255{left:196.684500px;}
@media print{
.v3_c01255{vertical-align:-29.333333pt;}
.v2_c01255{vertical-align:-20.521067pt;}
.v0_c01255{vertical-align:0.000000pt;}
.v1_c01255{vertical-align:20.521067pt;}
.ls9_c01255{letter-spacing:-3.744000pt;}
.ls6_c01255{letter-spacing:0.000000pt;}
.ls1_c01255{letter-spacing:0.006933pt;}
.ls7_c01255{letter-spacing:0.010667pt;}
.ls0_c01255{letter-spacing:2.532267pt;}
.ls5_c01255{letter-spacing:3.555555pt;}
.ls8_c01255{letter-spacing:4.464000pt;}
.ls2_c01255{letter-spacing:7.219200pt;}
.ls4_c01255{letter-spacing:8.888888pt;}
.ls3_c01255{letter-spacing:14.180267pt;}
.ws0_c01255{word-spacing:-11.733333pt;}
.ws1_c01255{word-spacing:-8.888889pt;}
.ws2_c01255{word-spacing:0.000000pt;}
._5_c01255{margin-left:-9.408000pt;}
._15_c01255{margin-left:-8.373333pt;}
._d_c01255{margin-left:-5.561600pt;}
._14_c01255{margin-left:-4.480000pt;}
._13_c01255{margin-left:-3.451947pt;}
._2_c01255{margin-left:-2.336000pt;}
._0_c01255{margin-left:-1.324800pt;}
._4_c01255{width:1.094400pt;}
._1_c01255{width:2.112000pt;}
._3_c01255{width:3.129600pt;}
._6_c01255{width:4.115200pt;}
._7_c01255{width:5.536000pt;}
._a_c01255{width:6.854400pt;}
._c_c01255{width:8.102400pt;}
._9_c01255{width:9.318400pt;}
._8_c01255{width:10.278400pt;}
._b_c01255{width:11.321600pt;}
._11_c01255{width:12.358400pt;}
._10_c01255{width:14.406400pt;}
._12_c01255{width:15.530453pt;}
._16_c01255{width:17.190827pt;}
._f_c01255{width:20.332800pt;}
._e_c01255{width:21.568000pt;}
.fs5_c01255{font-size:35.555557pt;}
.fs1_c01255{font-size:42.666667pt;}
.fs2_c01255{font-size:48.000000pt;}
.fs4_c01255{font-size:53.333333pt;}
.fs0_c01255{font-size:64.000000pt;}
.fs3_c01255{font-size:69.333333pt;}
.y0_c01255{bottom:0.000000pt;}
.y5_c01255{bottom:10.666667pt;}
.y10_c01255{bottom:60.000000pt;}
.y16_c01255{bottom:124.666667pt;}
.y15_c01255{bottom:161.333333pt;}
.y14_c01255{bottom:186.000000pt;}
.y13_c01255{bottom:230.000000pt;}
.y12_c01255{bottom:266.666667pt;}
.y11_c01255{bottom:291.333333pt;}
.ye_c01255{bottom:332.000000pt;}
.yd_c01255{bottom:356.000000pt;}
.yc_c01255{bottom:380.000000pt;}
.yb_c01255{bottom:404.000000pt;}
.ya_c01255{bottom:428.000000pt;}
.y9_c01255{bottom:469.333333pt;}
.y8_c01255{bottom:526.666667pt;}
.y7_c01255{bottom:550.666667pt;}
.y6_c01255{bottom:574.666667pt;}
.y4_c01255{bottom:614.666667pt;}
.y3_c01255{bottom:925.333333pt;}
.y2_c01255{bottom:949.333333pt;}
.y1_c01255{bottom:973.333333pt;}
.yf_c01255{bottom:1061.333333pt;}
.h8_c01255{height:31.805557pt;}
.h4_c01255{height:37.007812pt;}
.h7_c01255{height:39.296875pt;}
.h1_c01255{height:45.562500pt;}
.h9_c01255{height:47.708333pt;}
.h6_c01255{height:49.843750pt;}
.h5_c01255{height:49.867188pt;}
.h2_c01255{height:50.896067pt;}
.h3_c01255{height:282.666667pt;}
.h0_c01255{height:1122.666667pt;}
.w1_c01255{width:601.333333pt;}
.w0_c01255{width:793.333333pt;}
.x0_c01255{left:0.000000pt;}
.x1_c01255{left:58.204720pt;}
.x2_c01255{left:174.830667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6cc39383aa1c6244a604aab2.woff2')format("woff");}.ff1_c01256{font-family:ff1_c01256;line-height:0.933105;font-style:normal;font-weight:normal;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_308a56c213dd10ff743e451b.woff2')format("woff");}.ff2_c01256{font-family:ff2_c01256;line-height:0.987793;font-style:normal;font-weight:normal;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_7201dc5558301d7e463ba48f.woff2')format("woff");}.ff3_c01256{font-family:ff3_c01256;line-height:1.155762;font-style:normal;font-weight:normal;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_e83b6e21cebf21fad3eb5f4d.woff2')format("woff");}.ff4_c01256{font-family:ff4_c01256;line-height:1.112305;font-style:normal;font-weight:normal;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_41e25054658560efa49ccc2b.woff2')format("woff");}.ff5_c01256{font-family:ff5_c01256;line-height:0.889648;font-style: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);}
.v3_c01256{vertical-align:-33.000000px;}
.v2_c01256{vertical-align:-23.086200px;}
.v0_c01256{vertical-align:0.000000px;}
.v1_c01256{vertical-align:23.086200px;}
.ls4_c01256{letter-spacing:-0.021600px;}
.ls3_c01256{letter-spacing:0.000000px;}
.ls2_c01256{letter-spacing:0.012000px;}
.ls1_c01256{letter-spacing:0.021600px;}
.ls0_c01256{letter-spacing:3.469800px;}
.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;}
}
.ws0_c01256{word-spacing:-17.042400px;}
.ws1_c01256{word-spacing:-10.000001px;}
.ws2_c01256{word-spacing:0.000000px;}
._e_c01256{margin-left:-4.644000px;}
._3_c01256{margin-left:-3.261600px;}
._0_c01256{margin-left:-1.785600px;}
._4_c01256{width:1.562400px;}
._1_c01256{width:2.577600px;}
._2_c01256{width:4.068000px;}
._5_c01256{width:5.356800px;}
._8_c01256{width:7.200000px;}
._a_c01256{width:8.208000px;}
._6_c01256{width:9.698400px;}
._7_c01256{width:11.476800px;}
._9_c01256{width:12.960000px;}
._c_c01256{width:15.285600px;}
._b_c01256{width:17.064000px;}
._d_c01256{width:18.792000px;}
.fc0_c01256{color:rgb(0,0,0);}
.fs4_c01256{font-size:40.000002px;}
.fs1_c01256{font-size:48.000000px;}
.fs2_c01256{font-size:54.000000px;}
.fs3_c01256{font-size:60.000000px;}
.fs0_c01256{font-size:72.000000px;}
.y0_c01256{bottom:0.000000px;}
.y5_c01256{bottom:10.500000px;}
.yc_c01256{bottom:12.000000px;}
.y4_c01256{bottom:28.500000px;}
.ye_c01256{bottom:67.500000px;}
.yf_c01256{bottom:140.250000px;}
.yb_c01256{bottom:186.000000px;}
.ya_c01256{bottom:589.500000px;}
.y9_c01256{bottom:616.500000px;}
.y8_c01256{bottom:643.500000px;}
.y7_c01256{bottom:670.500000px;}
.y6_c01256{bottom:697.500000px;}
.y3_c01256{bottom:742.500000px;}
.y2_c01256{bottom:1068.000000px;}
.y1_c01256{bottom:1095.000000px;}
.yd_c01256{bottom:1194.000000px;}
.h7_c01256{height:35.781252px;}
.h4_c01256{height:42.292969px;}
.h1_c01256{height:51.187500px;}
.h6_c01256{height:56.074219px;}
.h2_c01256{height:57.211200px;}
.h3_c01256{height:294.000000px;}
.h5_c01256{height:372.000000px;}
.h0_c01256{height:1263.000000px;}
.w1_c01256{width:676.500000px;}
.w0_c01256{width:892.500000px;}
.x0_c01256{left:0.000000px;}
.x2_c01256{left:32.291745px;}
.x4_c01256{left:62.656860px;}
.x1_c01256{left:150.519750px;}
.x3_c01256{left:269.329500px;}
.x5_c01256{left:416.782800px;}
.x6_c01256{left:801.992850px;}
@media print{
.v3_c01256{vertical-align:-29.333333pt;}
.v2_c01256{vertical-align:-20.521067pt;}
.v0_c01256{vertical-align:0.000000pt;}
.v1_c01256{vertical-align:20.521067pt;}
.ls4_c01256{letter-spacing:-0.019200pt;}
.ls3_c01256{letter-spacing:0.000000pt;}
.ls2_c01256{letter-spacing:0.010667pt;}
.ls1_c01256{letter-spacing:0.019200pt;}
.ls0_c01256{letter-spacing:3.084267pt;}
.ws0_c01256{word-spacing:-15.148800pt;}
.ws1_c01256{word-spacing:-8.888889pt;}
.ws2_c01256{word-spacing:0.000000pt;}
._e_c01256{margin-left:-4.128000pt;}
._3_c01256{margin-left:-2.899200pt;}
._0_c01256{margin-left:-1.587200pt;}
._4_c01256{width:1.388800pt;}
._1_c01256{width:2.291200pt;}
._2_c01256{width:3.616000pt;}
._5_c01256{width:4.761600pt;}
._8_c01256{width:6.400000pt;}
._a_c01256{width:7.296000pt;}
._6_c01256{width:8.620800pt;}
._7_c01256{width:10.201600pt;}
._9_c01256{width:11.520000pt;}
._c_c01256{width:13.587200pt;}
._b_c01256{width:15.168000pt;}
._d_c01256{width:16.704000pt;}
.fs4_c01256{font-size:35.555557pt;}
.fs1_c01256{font-size:42.666667pt;}
.fs2_c01256{font-size:48.000000pt;}
.fs3_c01256{font-size:53.333333pt;}
.fs0_c01256{font-size:64.000000pt;}
.y0_c01256{bottom:0.000000pt;}
.y5_c01256{bottom:9.333333pt;}
.yc_c01256{bottom:10.666667pt;}
.y4_c01256{bottom:25.333333pt;}
.ye_c01256{bottom:60.000000pt;}
.yf_c01256{bottom:124.666667pt;}
.yb_c01256{bottom:165.333333pt;}
.ya_c01256{bottom:524.000000pt;}
.y9_c01256{bottom:548.000000pt;}
.y8_c01256{bottom:572.000000pt;}
.y7_c01256{bottom:596.000000pt;}
.y6_c01256{bottom:620.000000pt;}
.y3_c01256{bottom:660.000000pt;}
.y2_c01256{bottom:949.333333pt;}
.y1_c01256{bottom:973.333333pt;}
.yd_c01256{bottom:1061.333333pt;}
.h7_c01256{height:31.805557pt;}
.h4_c01256{height:37.593750pt;}
.h1_c01256{height:45.500000pt;}
.h6_c01256{height:49.843750pt;}
.h2_c01256{height:50.854400pt;}
.h3_c01256{height:261.333333pt;}
.h5_c01256{height:330.666667pt;}
.h0_c01256{height:1122.666667pt;}
.w1_c01256{width:601.333333pt;}
.w0_c01256{width:793.333333pt;}
.x0_c01256{left:0.000000pt;}
.x2_c01256{left:28.703773pt;}
.x4_c01256{left:55.694987pt;}
.x1_c01256{left:133.795333pt;}
.x3_c01256{left:239.404000pt;}
.x5_c01256{left:370.473600pt;}
.x6_c01256{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9a55f1bbe38428f4f9928957.woff2')format("woff");}.ff1_c01257{font-family:ff1_c01257;line-height:0.933105;font-style:normal;font-weight:normal;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_9514dd4b4dab6190608a70fb.woff2')format("woff");}.ff2_c01257{font-family:ff2_c01257;line-height:0.976074;font-style:normal;font-weight:normal;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_a516ad8708c4b405e43c0450.woff2')format("woff");}.ff3_c01257{font-family:ff3_c01257;line-height:0.755859;font-style:normal;font-weight:normal;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_88dd871e16b2bf13356c5efd.woff2')format("woff");}.ff4_c01257{font-family:ff4_c01257;line-height:1.155762;font-style: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);}
.v0_c01257{vertical-align:0.000000px;}
.ls0_c01257{letter-spacing:0.000000px;}
.ls2_c01257{letter-spacing:0.012000px;}
.ls1_c01257{letter-spacing:0.021600px;}
.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;}
}
.ws0_c01257{word-spacing:0.000000px;}
._f_c01257{margin-left:-10.584000px;}
._c_c01257{margin-left:-7.142400px;}
._d_c01257{margin-left:-3.888000px;}
._3_c01257{margin-left:-2.455200px;}
._9_c01257{margin-left:-1.317600px;}
._4_c01257{width:1.130400px;}
._7_c01257{width:2.707200px;}
._b_c01257{width:3.787200px;}
._1_c01257{width:4.960800px;}
._10_c01257{width:7.020000px;}
._e_c01257{width:8.280000px;}
._a_c01257{width:10.202400px;}
._2_c01257{width:11.484000px;}
._8_c01257{width:12.758400px;}
._5_c01257{width:14.392800px;}
._0_c01257{width:16.423200px;}
._6_c01257{width:18.172800px;}
.fc0_c01257{color:rgb(0,0,0);}
.fs1_c01257{font-size:54.000000px;}
.fs2_c01257{font-size:60.000000px;}
.fs0_c01257{font-size:72.000000px;}
.y0_c01257{bottom:0.000000px;}
.y5_c01257{bottom:12.000000px;}
.yc_c01257{bottom:67.500000px;}
.ya_c01257{bottom:144.000000px;}
.y9_c01257{bottom:171.000000px;}
.y8_c01257{bottom:198.000000px;}
.y7_c01257{bottom:225.000000px;}
.y6_c01257{bottom:270.000000px;}
.y4_c01257{bottom:624.000000px;}
.y3_c01257{bottom:1041.000000px;}
.y2_c01257{bottom:1068.000000px;}
.y1_c01257{bottom:1095.000000px;}
.yb_c01257{bottom:1194.000000px;}
.h3_c01257{height:42.292969px;}
.h6_c01257{height:44.208984px;}
.h1_c01257{height:51.187500px;}
.h5_c01257{height:56.074219px;}
.h4_c01257{height:325.500000px;}
.h2_c01257{height:385.500000px;}
.h0_c01257{height:1263.000000px;}
.w1_c01257{width:676.500000px;}
.w0_c01257{width:892.500000px;}
.x0_c01257{left:0.000000px;}
.x1_c01257{left:65.480310px;}
.x3_c01257{left:92.932965px;}
.x2_c01257{left:144.355575px;}
@media print{
.v0_c01257{vertical-align:0.000000pt;}
.ls0_c01257{letter-spacing:0.000000pt;}
.ls2_c01257{letter-spacing:0.010667pt;}
.ls1_c01257{letter-spacing:0.019200pt;}
.ws0_c01257{word-spacing:0.000000pt;}
._f_c01257{margin-left:-9.408000pt;}
._c_c01257{margin-left:-6.348800pt;}
._d_c01257{margin-left:-3.456000pt;}
._3_c01257{margin-left:-2.182400pt;}
._9_c01257{margin-left:-1.171200pt;}
._4_c01257{width:1.004800pt;}
._7_c01257{width:2.406400pt;}
._b_c01257{width:3.366400pt;}
._1_c01257{width:4.409600pt;}
._10_c01257{width:6.240000pt;}
._e_c01257{width:7.360000pt;}
._a_c01257{width:9.068800pt;}
._2_c01257{width:10.208000pt;}
._8_c01257{width:11.340800pt;}
._5_c01257{width:12.793600pt;}
._0_c01257{width:14.598400pt;}
._6_c01257{width:16.153600pt;}
.fs1_c01257{font-size:48.000000pt;}
.fs2_c01257{font-size:53.333333pt;}
.fs0_c01257{font-size:64.000000pt;}
.y0_c01257{bottom:0.000000pt;}
.y5_c01257{bottom:10.666667pt;}
.yc_c01257{bottom:60.000000pt;}
.ya_c01257{bottom:128.000000pt;}
.y9_c01257{bottom:152.000000pt;}
.y8_c01257{bottom:176.000000pt;}
.y7_c01257{bottom:200.000000pt;}
.y6_c01257{bottom:240.000000pt;}
.y4_c01257{bottom:554.666667pt;}
.y3_c01257{bottom:925.333333pt;}
.y2_c01257{bottom:949.333333pt;}
.y1_c01257{bottom:973.333333pt;}
.yb_c01257{bottom:1061.333333pt;}
.h3_c01257{height:37.593750pt;}
.h6_c01257{height:39.296875pt;}
.h1_c01257{height:45.500000pt;}
.h5_c01257{height:49.843750pt;}
.h4_c01257{height:289.333333pt;}
.h2_c01257{height:342.666667pt;}
.h0_c01257{height:1122.666667pt;}
.w1_c01257{width:601.333333pt;}
.w0_c01257{width:793.333333pt;}
.x0_c01257{left:0.000000pt;}
.x1_c01257{left:58.204720pt;}
.x3_c01257{left:82.607080pt;}
.x2_c01257{left:128.316067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_427e6b9acb4a662ff1143b16.woff2')format("woff");}.ff1_c01258{font-family:ff1_c01258;line-height:0.933105;font-style:normal;font-weight:normal;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_2cde454344ec4e6865226f90.woff2')format("woff");}.ff2_c01258{font-family:ff2_c01258;line-height:0.975586;font-style:normal;font-weight:normal;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_4f26b8e25bfe376ee7a30f8d.woff2')format("woff");}.ff3_c01258{font-family:ff3_c01258;line-height:1.155762;font-style:normal;font-weight:normal;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_baf10cacc19374f8c3d44754.woff2')format("woff");}.ff4_c01258{font-family:ff4_c01258;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01258;src:url('chunks/assets/font_f74f810d5abe10ae14c6ea1f.woff2')format("woff");}.ff5_c01258{font-family:ff5_c01258;line-height:0.889648;font-style: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);}
.m1_c01258{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3_c01258{vertical-align:-33.000000px;}
.v2_c01258{vertical-align:-23.086200px;}
.v0_c01258{vertical-align:0.000000px;}
.v1_c01258{vertical-align:23.086200px;}
.ls2_c01258{letter-spacing:0.000000px;}
.ls1_c01258{letter-spacing:0.012000px;}
.ls3_c01258{letter-spacing:0.021600px;}
.ls0_c01258{letter-spacing:2.104800px;}
.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;}
}
.ws0_c01258{word-spacing:-17.064000px;}
.ws1_c01258{word-spacing:-10.000001px;}
.ws2_c01258{word-spacing:0.000000px;}
._8_c01258{margin-left:-3.426000px;}
._1_c01258{margin-left:-2.080800px;}
._2_c01258{width:1.310400px;}
._3_c01258{width:2.779200px;}
._0_c01258{width:4.730400px;}
._5_c01258{width:14.162400px;}
._4_c01258{width:15.494400px;}
._6_c01258{width:17.071200px;}
._7_c01258{width:18.799200px;}
.fc0_c01258{color:rgb(0,0,0);}
.fs4_c01258{font-size:40.000002px;}
.fs1_c01258{font-size:48.000000px;}
.fs2_c01258{font-size:54.000000px;}
.fs3_c01258{font-size:60.000000px;}
.fs0_c01258{font-size:72.000000px;}
.y0_c01258{bottom:0.000000px;}
.ya_c01258{bottom:10.500000px;}
.y4_c01258{bottom:12.000000px;}
.y9_c01258{bottom:28.500000px;}
.yc_c01258{bottom:67.500000px;}
.yd_c01258{bottom:140.250000px;}
.y8_c01258{bottom:189.000000px;}
.y7_c01258{bottom:630.000000px;}
.y6_c01258{bottom:657.000000px;}
.y5_c01258{bottom:684.000000px;}
.y3_c01258{bottom:729.000000px;}
.y2_c01258{bottom:1068.000000px;}
.y1_c01258{bottom:1095.000000px;}
.yb_c01258{bottom:1194.000000px;}
.h7_c01258{height:35.781252px;}
.h4_c01258{height:41.633789px;}
.h2_c01258{height:51.187500px;}
.h6_c01258{height:56.074219px;}
.h1_c01258{height:57.211200px;}
.h3_c01258{height:307.500000px;}
.h5_c01258{height:409.500000px;}
.h0_c01258{height:1263.000000px;}
.w1_c01258{width:676.500000px;}
.w0_c01258{width:892.500000px;}
.x0_c01258{left:0.000000px;}
.x3_c01258{left:33.985815px;}
.x2_c01258{left:100.862910px;}
.x1_c01258{left:150.519750px;}
.x4_c01258{left:310.729200px;}
.x5_c01258{left:416.782800px;}
.x6_c01258{left:801.992850px;}
@media print{
.v3_c01258{vertical-align:-29.333333pt;}
.v2_c01258{vertical-align:-20.521067pt;}
.v0_c01258{vertical-align:0.000000pt;}
.v1_c01258{vertical-align:20.521067pt;}
.ls2_c01258{letter-spacing:0.000000pt;}
.ls1_c01258{letter-spacing:0.010667pt;}
.ls3_c01258{letter-spacing:0.019200pt;}
.ls0_c01258{letter-spacing:1.870933pt;}
.ws0_c01258{word-spacing:-15.168000pt;}
.ws1_c01258{word-spacing:-8.888889pt;}
.ws2_c01258{word-spacing:0.000000pt;}
._8_c01258{margin-left:-3.045333pt;}
._1_c01258{margin-left:-1.849600pt;}
._2_c01258{width:1.164800pt;}
._3_c01258{width:2.470400pt;}
._0_c01258{width:4.204800pt;}
._5_c01258{width:12.588800pt;}
._4_c01258{width:13.772800pt;}
._6_c01258{width:15.174400pt;}
._7_c01258{width:16.710400pt;}
.fs4_c01258{font-size:35.555557pt;}
.fs1_c01258{font-size:42.666667pt;}
.fs2_c01258{font-size:48.000000pt;}
.fs3_c01258{font-size:53.333333pt;}
.fs0_c01258{font-size:64.000000pt;}
.y0_c01258{bottom:0.000000pt;}
.ya_c01258{bottom:9.333333pt;}
.y4_c01258{bottom:10.666667pt;}
.y9_c01258{bottom:25.333333pt;}
.yc_c01258{bottom:60.000000pt;}
.yd_c01258{bottom:124.666667pt;}
.y8_c01258{bottom:168.000000pt;}
.y7_c01258{bottom:560.000000pt;}
.y6_c01258{bottom:584.000000pt;}
.y5_c01258{bottom:608.000000pt;}
.y3_c01258{bottom:648.000000pt;}
.y2_c01258{bottom:949.333333pt;}
.y1_c01258{bottom:973.333333pt;}
.yb_c01258{bottom:1061.333333pt;}
.h7_c01258{height:31.805557pt;}
.h4_c01258{height:37.007812pt;}
.h2_c01258{height:45.500000pt;}
.h6_c01258{height:49.843750pt;}
.h1_c01258{height:50.854400pt;}
.h3_c01258{height:273.333333pt;}
.h5_c01258{height:364.000000pt;}
.h0_c01258{height:1122.666667pt;}
.w1_c01258{width:601.333333pt;}
.w0_c01258{width:793.333333pt;}
.x0_c01258{left:0.000000pt;}
.x3_c01258{left:30.209613pt;}
.x2_c01258{left:89.655920pt;}
.x1_c01258{left:133.795333pt;}
.x4_c01258{left:276.203733pt;}
.x5_c01258{left:370.473600pt;}
.x6_c01258{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63f9ba8d528e18afdf9381d8.woff2')format("woff");}.ff1_c01259{font-family:ff1_c01259;line-height:0.987793;font-style:normal;font-weight:normal;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_8644405e8f06df155d882274.woff2')format("woff");}.ff2_c01259{font-family:ff2_c01259;line-height:0.934082;font-style:normal;font-weight:normal;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_e4fa407957533b289c0732a9.woff2')format("woff");}.ff3_c01259{font-family:ff3_c01259;line-height:0.755859;font-style:normal;font-weight:normal;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_d178654930473b0d80bbfefd.woff2')format("woff");}.ff4_c01259{font-family:ff4_c01259;line-height:1.155762;font-style: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);}
.v0_c01259{vertical-align:0.000000px;}
.ls0_c01259{letter-spacing:0.000000px;}
.ls1_c01259{letter-spacing:0.012000px;}
.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;}
}
.ws0_c01259{word-spacing:0.000000px;}
._6_c01259{margin-left:-4.370400px;}
._3_c01259{margin-left:-3.168000px;}
._2_c01259{margin-left:-1.173600px;}
._0_c01259{width:1.468800px;}
._1_c01259{width:2.822400px;}
._4_c01259{width:4.536000px;}
._e_c01259{width:8.460000px;}
._f_c01259{width:10.022400px;}
._b_c01259{width:11.700000px;}
._d_c01259{width:12.981600px;}
._c_c01259{width:14.292000px;}
._a_c01259{width:16.495200px;}
._9_c01259{width:18.165600px;}
._5_c01259{width:21.110400px;}
._8_c01259{width:23.184000px;}
._7_c01259{width:25.495200px;}
.fc0_c01259{color:rgb(0,0,0);}
.fs0_c01259{font-size:54.000000px;}
.fs2_c01259{font-size:60.000000px;}
.fs1_c01259{font-size:72.000000px;}
.y0_c01259{bottom:0.000000px;}
.y2_c01259{bottom:12.000000px;}
.yb_c01259{bottom:67.500000px;}
.y9_c01259{bottom:180.000000px;}
.y8_c01259{bottom:207.000000px;}
.y7_c01259{bottom:234.000000px;}
.y6_c01259{bottom:261.000000px;}
.y5_c01259{bottom:306.000000px;}
.y4_c01259{bottom:691.500000px;}
.y3_c01259{bottom:718.500000px;}
.y1_c01259{bottom:763.500000px;}
.ya_c01259{bottom:1194.000000px;}
.h2_c01259{height:42.292969px;}
.h6_c01259{height:44.208984px;}
.h3_c01259{height:51.257812px;}
.h5_c01259{height:56.074219px;}
.h1_c01259{height:349.500000px;}
.h4_c01259{height:354.000000px;}
.h0_c01259{height:1263.000000px;}
.w1_c01259{width:676.500000px;}
.w0_c01259{width:892.500000px;}
.x0_c01259{left:0.000000px;}
.x1_c01259{left:66.000000px;}
.x3_c01259{left:136.458600px;}
.x2_c01259{left:169.127550px;}
@media print{
.v0_c01259{vertical-align:0.000000pt;}
.ls0_c01259{letter-spacing:0.000000pt;}
.ls1_c01259{letter-spacing:0.010667pt;}
.ws0_c01259{word-spacing:0.000000pt;}
._6_c01259{margin-left:-3.884800pt;}
._3_c01259{margin-left:-2.816000pt;}
._2_c01259{margin-left:-1.043200pt;}
._0_c01259{width:1.305600pt;}
._1_c01259{width:2.508800pt;}
._4_c01259{width:4.032000pt;}
._e_c01259{width:7.520000pt;}
._f_c01259{width:8.908800pt;}
._b_c01259{width:10.400000pt;}
._d_c01259{width:11.539200pt;}
._c_c01259{width:12.704000pt;}
._a_c01259{width:14.662400pt;}
._9_c01259{width:16.147200pt;}
._5_c01259{width:18.764800pt;}
._8_c01259{width:20.608000pt;}
._7_c01259{width:22.662400pt;}
.fs0_c01259{font-size:48.000000pt;}
.fs2_c01259{font-size:53.333333pt;}
.fs1_c01259{font-size:64.000000pt;}
.y0_c01259{bottom:0.000000pt;}
.y2_c01259{bottom:10.666667pt;}
.yb_c01259{bottom:60.000000pt;}
.y9_c01259{bottom:160.000000pt;}
.y8_c01259{bottom:184.000000pt;}
.y7_c01259{bottom:208.000000pt;}
.y6_c01259{bottom:232.000000pt;}
.y5_c01259{bottom:272.000000pt;}
.y4_c01259{bottom:614.666667pt;}
.y3_c01259{bottom:638.666667pt;}
.y1_c01259{bottom:678.666667pt;}
.ya_c01259{bottom:1061.333333pt;}
.h2_c01259{height:37.593750pt;}
.h6_c01259{height:39.296875pt;}
.h3_c01259{height:45.562500pt;}
.h5_c01259{height:49.843750pt;}
.h1_c01259{height:310.666667pt;}
.h4_c01259{height:314.666667pt;}
.h0_c01259{height:1122.666667pt;}
.w1_c01259{width:601.333333pt;}
.w0_c01259{width:793.333333pt;}
.x0_c01259{left:0.000000pt;}
.x1_c01259{left:58.666667pt;}
.x3_c01259{left:121.296533pt;}
.x2_c01259{left:150.335600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_607139f6523e540fca2950ae.woff2')format("woff");}.ff1_c01260{font-family:ff1_c01260;line-height:0.789062;font-style:normal;font-weight:normal;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_54abd8b409f0e9c60148decd.woff2')format("woff");}.ff2_c01260{font-family:ff2_c01260;line-height:0.934082;font-style:normal;font-weight:normal;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_e845896e59a5ef4c18e44a0b.woff2')format("woff");}.ff3_c01260{font-family:ff3_c01260;line-height:1.155762;font-style:normal;font-weight:normal;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_0cb928adcf3a98ba63e62948.woff2')format("woff");}.ff4_c01260{font-family:ff4_c01260;line-height:0.903320;font-style:normal;font-weight:normal;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_f22be2a0e16b2fe4fb361ced.woff2')format("woff");}.ff5_c01260{font-family:ff5_c01260;line-height:0.891113;font-style: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);}
.v3_c01260{vertical-align:-33.000000px;}
.v2_c01260{vertical-align:-23.086200px;}
.v0_c01260{vertical-align:0.000000px;}
.v1_c01260{vertical-align:23.086200px;}
.ls5_c01260{letter-spacing:-0.930000px;}
.ls4_c01260{letter-spacing:-0.009600px;}
.ls3_c01260{letter-spacing:0.000000px;}
.ls1_c01260{letter-spacing:0.007200px;}
.ls2_c01260{letter-spacing:0.012000px;}
.ls0_c01260{letter-spacing:0.021600px;}
.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;}
}
.ws1_c01260{word-spacing:-2.000002px;}
.ws0_c01260{word-spacing:-0.067200px;}
.ws2_c01260{word-spacing:0.000000px;}
._b_c01260{margin-left:-10.497600px;}
._10_c01260{margin-left:-7.207200px;}
._11_c01260{margin-left:-5.461200px;}
._c_c01260{margin-left:-3.945600px;}
._0_c01260{margin-left:-2.887200px;}
._5_c01260{margin-left:-1.519200px;}
._2_c01260{width:1.108800px;}
._7_c01260{width:2.822400px;}
._a_c01260{width:3.837600px;}
._9_c01260{width:5.234400px;}
._8_c01260{width:6.832800px;}
._3_c01260{width:8.524800px;}
._4_c01260{width:9.676800px;}
._6_c01260{width:11.116800px;}
._1_c01260{width:12.535200px;}
._d_c01260{width:14.371200px;}
._e_c01260{width:16.192800px;}
._f_c01260{width:17.870400px;}
.fc0_c01260{color:rgb(0,0,0);}
.fs4_c01260{font-size:40.000002px;}
.fs2_c01260{font-size:48.000000px;}
.fs0_c01260{font-size:54.000000px;}
.fs3_c01260{font-size:60.000000px;}
.fs1_c01260{font-size:72.000000px;}
.y0_c01260{bottom:0.000000px;}
.y2_c01260{bottom:12.000000px;}
.ye_c01260{bottom:67.500000px;}
.y10_c01260{bottom:132.000000px;}
.yf_c01260{bottom:159.750000px;}
.yc_c01260{bottom:201.000000px;}
.yb_c01260{bottom:544.500000px;}
.ya_c01260{bottom:571.500000px;}
.y9_c01260{bottom:598.500000px;}
.y8_c01260{bottom:625.500000px;}
.y7_c01260{bottom:652.500000px;}
.y6_c01260{bottom:700.500000px;}
.y5_c01260{bottom:727.500000px;}
.y4_c01260{bottom:754.500000px;}
.y3_c01260{bottom:781.500000px;}
.y1_c01260{bottom:805.500000px;}
.yd_c01260{bottom:1194.000000px;}
.h7_c01260{height:27.421876px;}
.h8_c01260{height:41.132812px;}
.h2_c01260{height:41.633789px;}
.h3_c01260{height:51.257812px;}
.h6_c01260{height:56.074219px;}
.h4_c01260{height:57.258075px;}
.h1_c01260{height:307.500000px;}
.h5_c01260{height:312.000000px;}
.h0_c01260{height:1263.000000px;}
.w1_c01260{width:676.500000px;}
.w0_c01260{width:892.500000px;}
.x0_c01260{left:0.000000px;}
.x1_c01260{left:150.000000px;}
.x2_c01260{left:266.462100px;}
.x3_c01260{left:269.593050px;}
.x4_c01260{left:416.782800px;}
.x5_c01260{left:801.992850px;}
@media print{
.v3_c01260{vertical-align:-29.333333pt;}
.v2_c01260{vertical-align:-20.521067pt;}
.v0_c01260{vertical-align:0.000000pt;}
.v1_c01260{vertical-align:20.521067pt;}
.ls5_c01260{letter-spacing:-0.826667pt;}
.ls4_c01260{letter-spacing:-0.008533pt;}
.ls3_c01260{letter-spacing:0.000000pt;}
.ls1_c01260{letter-spacing:0.006400pt;}
.ls2_c01260{letter-spacing:0.010667pt;}
.ls0_c01260{letter-spacing:0.019200pt;}
.ws1_c01260{word-spacing:-1.777780pt;}
.ws0_c01260{word-spacing:-0.059733pt;}
.ws2_c01260{word-spacing:0.000000pt;}
._b_c01260{margin-left:-9.331200pt;}
._10_c01260{margin-left:-6.406400pt;}
._11_c01260{margin-left:-4.854400pt;}
._c_c01260{margin-left:-3.507200pt;}
._0_c01260{margin-left:-2.566400pt;}
._5_c01260{margin-left:-1.350400pt;}
._2_c01260{width:0.985600pt;}
._7_c01260{width:2.508800pt;}
._a_c01260{width:3.411200pt;}
._9_c01260{width:4.652800pt;}
._8_c01260{width:6.073600pt;}
._3_c01260{width:7.577600pt;}
._4_c01260{width:8.601600pt;}
._6_c01260{width:9.881600pt;}
._1_c01260{width:11.142400pt;}
._d_c01260{width:12.774400pt;}
._e_c01260{width:14.393600pt;}
._f_c01260{width:15.884800pt;}
.fs4_c01260{font-size:35.555557pt;}
.fs2_c01260{font-size:42.666667pt;}
.fs0_c01260{font-size:48.000000pt;}
.fs3_c01260{font-size:53.333333pt;}
.fs1_c01260{font-size:64.000000pt;}
.y0_c01260{bottom:0.000000pt;}
.y2_c01260{bottom:10.666667pt;}
.ye_c01260{bottom:60.000000pt;}
.y10_c01260{bottom:117.333333pt;}
.yf_c01260{bottom:142.000000pt;}
.yc_c01260{bottom:178.666667pt;}
.yb_c01260{bottom:484.000000pt;}
.ya_c01260{bottom:508.000000pt;}
.y9_c01260{bottom:532.000000pt;}
.y8_c01260{bottom:556.000000pt;}
.y7_c01260{bottom:580.000000pt;}
.y6_c01260{bottom:622.666667pt;}
.y5_c01260{bottom:646.666667pt;}
.y4_c01260{bottom:670.666667pt;}
.y3_c01260{bottom:694.666667pt;}
.y1_c01260{bottom:716.000000pt;}
.yd_c01260{bottom:1061.333333pt;}
.h7_c01260{height:24.375001pt;}
.h8_c01260{height:36.562500pt;}
.h2_c01260{height:37.007812pt;}
.h3_c01260{height:45.562500pt;}
.h6_c01260{height:49.843750pt;}
.h4_c01260{height:50.896067pt;}
.h1_c01260{height:273.333333pt;}
.h5_c01260{height:277.333333pt;}
.h0_c01260{height:1122.666667pt;}
.w1_c01260{width:601.333333pt;}
.w0_c01260{width:793.333333pt;}
.x0_c01260{left:0.000000pt;}
.x1_c01260{left:133.333333pt;}
.x2_c01260{left:236.855200pt;}
.x3_c01260{left:239.638267pt;}
.x4_c01260{left:370.473600pt;}
.x5_c01260{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b810d034b716b493a01f83df.woff2')format("woff");}.ff1_c01261{font-family:ff1_c01261;line-height:0.932129;font-style:normal;font-weight:normal;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_2bd2bfb6b317c2ea6cf08ee2.woff2')format("woff");}.ff2_c01261{font-family:ff2_c01261;line-height:1.160156;font-style:normal;font-weight:normal;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_7093b874976e4e587bb4b694.woff2')format("woff");}.ff3_c01261{font-family:ff3_c01261;line-height:1.010254;font-style:normal;font-weight:normal;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_f9fde5cc5aed37bb3756868a.woff2')format("woff");}.ff4_c01261{font-family:ff4_c01261;line-height:0.986816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01261;src:url('chunks/assets/font_2399bc6cfd0f2e8a159aeafd.woff2')format("woff");}.ff5_c01261{font-family:ff5_c01261;line-height:0.756836;font-style:normal;font-weight: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_c01261;src:url('chunks/assets/font_3dc49308ea8d841a47f6f706.woff2')format("woff");}.ff6_c01261{font-family:ff6_c01261;line-height:1.155762;font-style: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;}
.ls1_c01261{letter-spacing:-0.006000px;}
.ls0_c01261{letter-spacing:0.000000px;}
.ls2_c01261{letter-spacing:0.012000px;}
.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;}
}
.ws0_c01261{word-spacing:-18.000000px;}
.ws1_c01261{word-spacing:-0.072000px;}
.ws2_c01261{word-spacing:0.000000px;}
._1a_c01261{margin-left:-7.067520px;}
._6_c01261{margin-left:-5.212800px;}
._3_c01261{margin-left:-4.082400px;}
._1_c01261{margin-left:-2.426400px;}
._4_c01261{margin-left:-1.267200px;}
._0_c01261{width:1.224000px;}
._7_c01261{width:2.352960px;}
._2_c01261{width:3.636000px;}
._5_c01261{width:5.184000px;}
._8_c01261{width:6.386400px;}
._a_c01261{width:7.718400px;}
._16_c01261{width:9.401760px;}
._14_c01261{width:10.451520px;}
._9_c01261{width:12.931200px;}
._f_c01261{width:15.616800px;}
._15_c01261{width:16.848000px;}
._12_c01261{width:19.828800px;}
._1b_c01261{width:21.169440px;}
._e_c01261{width:22.240800px;}
._11_c01261{width:23.472000px;}
._c_c01261{width:24.768000px;}
._d_c01261{width:25.905600px;}
._b_c01261{width:27.583200px;}
._10_c01261{width:28.634400px;}
._13_c01261{width:30.218400px;}
._17_c01261{width:31.672800px;}
._19_c01261{width:32.904000px;}
._18_c01261{width:33.926400px;}
.fc0_c01261{color:rgb(0,0,0);}
.fs1_c01261{font-size:60.000000px;}
.fs0_c01261{font-size:72.000000px;}
.y0_c01261{bottom:0.000000px;}
.y24_c01261{bottom:67.500000px;}
.y22_c01261{bottom:228.000000px;}
.y21_c01261{bottom:249.000000px;}
.y20_c01261{bottom:291.000000px;}
.y1f_c01261{bottom:312.000000px;}
.y1e_c01261{bottom:333.000000px;}
.y1d_c01261{bottom:354.000000px;}
.y1c_c01261{bottom:375.000000px;}
.y1b_c01261{bottom:396.000000px;}
.y1a_c01261{bottom:417.000000px;}
.y19_c01261{bottom:459.000000px;}
.y18_c01261{bottom:480.000000px;}
.y17_c01261{bottom:501.000000px;}
.y16_c01261{bottom:522.000000px;}
.y15_c01261{bottom:543.000000px;}
.y14_c01261{bottom:564.000000px;}
.y13_c01261{bottom:585.000000px;}
.y12_c01261{bottom:606.000000px;}
.y11_c01261{bottom:627.000000px;}
.y10_c01261{bottom:648.000000px;}
.yf_c01261{bottom:669.000000px;}
.ye_c01261{bottom:690.000000px;}
.yd_c01261{bottom:711.000000px;}
.yc_c01261{bottom:732.000000px;}
.yb_c01261{bottom:753.000000px;}
.ya_c01261{bottom:774.000000px;}
.y9_c01261{bottom:795.000000px;}
.y8_c01261{bottom:816.000000px;}
.y7_c01261{bottom:837.000000px;}
.y6_c01261{bottom:894.000000px;}
.y5_c01261{bottom:915.000000px;}
.y4_c01261{bottom:951.000000px;}
.y3_c01261{bottom:978.000000px;}
.y2_c01261{bottom:1017.000000px;}
.y1_c01261{bottom:1095.000000px;}
.y23_c01261{bottom:1194.000000px;}
.h4_c01261{height:42.714844px;}
.h7_c01261{height:44.208984px;}
.h1_c01261{height:51.257812px;}
.h5_c01261{height:52.417969px;}
.h6_c01261{height:56.074219px;}
.h3_c01261{height:56.396484px;}
.h2_c01261{height:67.675781px;}
.h0_c01261{height:1263.000000px;}
.w0_c01261{width:892.500000px;}
.x0_c01261{left:0.000000px;}
.x1_c01261{left:65.480310px;}
@media print{
.v0_c01261{vertical-align:0.000000pt;}
.ls1_c01261{letter-spacing:-0.005333pt;}
.ls0_c01261{letter-spacing:0.000000pt;}
.ls2_c01261{letter-spacing:0.010667pt;}
.ws0_c01261{word-spacing:-16.000000pt;}
.ws1_c01261{word-spacing:-0.064000pt;}
.ws2_c01261{word-spacing:0.000000pt;}
._1a_c01261{margin-left:-6.282240pt;}
._6_c01261{margin-left:-4.633600pt;}
._3_c01261{margin-left:-3.628800pt;}
._1_c01261{margin-left:-2.156800pt;}
._4_c01261{margin-left:-1.126400pt;}
._0_c01261{width:1.088000pt;}
._7_c01261{width:2.091520pt;}
._2_c01261{width:3.232000pt;}
._5_c01261{width:4.608000pt;}
._8_c01261{width:5.676800pt;}
._a_c01261{width:6.860800pt;}
._16_c01261{width:8.357120pt;}
._14_c01261{width:9.290240pt;}
._9_c01261{width:11.494400pt;}
._f_c01261{width:13.881600pt;}
._15_c01261{width:14.976000pt;}
._12_c01261{width:17.625600pt;}
._1b_c01261{width:18.817280pt;}
._e_c01261{width:19.769600pt;}
._11_c01261{width:20.864000pt;}
._c_c01261{width:22.016000pt;}
._d_c01261{width:23.027200pt;}
._b_c01261{width:24.518400pt;}
._10_c01261{width:25.452800pt;}
._13_c01261{width:26.860800pt;}
._17_c01261{width:28.153600pt;}
._19_c01261{width:29.248000pt;}
._18_c01261{width:30.156800pt;}
.fs1_c01261{font-size:53.333333pt;}
.fs0_c01261{font-size:64.000000pt;}
.y0_c01261{bottom:0.000000pt;}
.y24_c01261{bottom:60.000000pt;}
.y22_c01261{bottom:202.666667pt;}
.y21_c01261{bottom:221.333333pt;}
.y20_c01261{bottom:258.666667pt;}
.y1f_c01261{bottom:277.333333pt;}
.y1e_c01261{bottom:296.000000pt;}
.y1d_c01261{bottom:314.666667pt;}
.y1c_c01261{bottom:333.333333pt;}
.y1b_c01261{bottom:352.000000pt;}
.y1a_c01261{bottom:370.666667pt;}
.y19_c01261{bottom:408.000000pt;}
.y18_c01261{bottom:426.666667pt;}
.y17_c01261{bottom:445.333333pt;}
.y16_c01261{bottom:464.000000pt;}
.y15_c01261{bottom:482.666667pt;}
.y14_c01261{bottom:501.333333pt;}
.y13_c01261{bottom:520.000000pt;}
.y12_c01261{bottom:538.666667pt;}
.y11_c01261{bottom:557.333333pt;}
.y10_c01261{bottom:576.000000pt;}
.yf_c01261{bottom:594.666667pt;}
.ye_c01261{bottom:613.333333pt;}
.yd_c01261{bottom:632.000000pt;}
.yc_c01261{bottom:650.666667pt;}
.yb_c01261{bottom:669.333333pt;}
.ya_c01261{bottom:688.000000pt;}
.y9_c01261{bottom:706.666667pt;}
.y8_c01261{bottom:725.333333pt;}
.y7_c01261{bottom:744.000000pt;}
.y6_c01261{bottom:794.666667pt;}
.y5_c01261{bottom:813.333333pt;}
.y4_c01261{bottom:845.333333pt;}
.y3_c01261{bottom:869.333333pt;}
.y2_c01261{bottom:904.000000pt;}
.y1_c01261{bottom:973.333333pt;}
.y23_c01261{bottom:1061.333333pt;}
.h4_c01261{height:37.968750pt;}
.h7_c01261{height:39.296875pt;}
.h1_c01261{height:45.562500pt;}
.h5_c01261{height:46.593750pt;}
.h6_c01261{height:49.843750pt;}
.h3_c01261{height:50.130208pt;}
.h2_c01261{height:60.156250pt;}
.h0_c01261{height:1122.666667pt;}
.w0_c01261{width:793.333333pt;}
.x0_c01261{left:0.000000pt;}
.x1_c01261{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_93199b8b6e888453b4718e7e.woff2')format("woff");}.ff1_c01262{font-family:ff1_c01262;line-height:0.932129;font-style:normal;font-weight:normal;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_d992f8ffdacf4ea3b70019d0.woff2')format("woff");}.ff2_c01262{font-family:ff2_c01262;line-height:0.934082;font-style:normal;font-weight:normal;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_8687ecaa5d4ce12e13798ce4.woff2')format("woff");}.ff3_c01262{font-family:ff3_c01262;line-height:1.010254;font-style:normal;font-weight:normal;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_b915b6ed774cae72b518bc30.woff2')format("woff");}.ff4_c01262{font-family:ff4_c01262;line-height:1.155762;font-style: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;}
.ls5_c01262{letter-spacing:-0.006000px;}
.ls3_c01262{letter-spacing:0.000000px;}
.ls2_c01262{letter-spacing:0.012000px;}
.ls0_c01262{letter-spacing:0.126000px;}
.ls1_c01262{letter-spacing:0.150000px;}
.ls4_c01262{letter-spacing:0.312000px;}
.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;}
}
.ws0_c01262{word-spacing:-16.626000px;}
.ws1_c01262{word-spacing:-16.500000px;}
.ws2_c01262{word-spacing:0.000000px;}
._1_c01262{margin-left:-9.309600px;}
._17_c01262{margin-left:-6.624000px;}
._9_c01262{margin-left:-5.264400px;}
._19_c01262{margin-left:-3.933600px;}
._13_c01262{margin-left:-2.880000px;}
._0_c01262{margin-left:-1.404000px;}
._5_c01262{width:1.104000px;}
._8_c01262{width:2.640000px;}
._3_c01262{width:4.260000px;}
._11_c01262{width:6.139200px;}
._12_c01262{width:7.432800px;}
._d_c01262{width:8.584800px;}
._c_c01262{width:9.984000px;}
._b_c01262{width:11.325600px;}
._a_c01262{width:12.614400px;}
._18_c01262{width:14.380800px;}
._15_c01262{width:16.056000px;}
._14_c01262{width:19.123200px;}
._1a_c01262{width:20.356800px;}
._16_c01262{width:21.514800px;}
._1b_c01262{width:23.784000px;}
._4_c01262{width:25.560000px;}
._1c_c01262{width:26.901600px;}
._6_c01262{width:27.960000px;}
._2_c01262{width:29.820000px;}
._7_c01262{width:31.009200px;}
._10_c01262{width:32.296800px;}
._e_c01262{width:33.357600px;}
._f_c01262{width:38.650800px;}
.fc1_c01262{color:rgb(0,0,153);}
.fc0_c01262{color:rgb(0,0,0);}
.fs1_c01262{font-size:60.000000px;}
.fs0_c01262{font-size:72.000000px;}
.y0_c01262{bottom:0.000000px;}
.y2a_c01262{bottom:67.500000px;}
.y28_c01262{bottom:148.500000px;}
.y27_c01262{bottom:169.500000px;}
.y26_c01262{bottom:190.500000px;}
.y25_c01262{bottom:211.500000px;}
.y24_c01262{bottom:232.500000px;}
.y23_c01262{bottom:253.500000px;}
.y22_c01262{bottom:274.500000px;}
.y21_c01262{bottom:295.500000px;}
.y20_c01262{bottom:316.500000px;}
.y1f_c01262{bottom:337.500000px;}
.y1e_c01262{bottom:358.500000px;}
.y1d_c01262{bottom:379.500000px;}
.y1c_c01262{bottom:400.500000px;}
.y1b_c01262{bottom:421.500000px;}
.y1a_c01262{bottom:442.500000px;}
.y19_c01262{bottom:463.500000px;}
.y18_c01262{bottom:484.500000px;}
.y17_c01262{bottom:505.500000px;}
.y16_c01262{bottom:526.500000px;}
.y15_c01262{bottom:547.500000px;}
.y14_c01262{bottom:568.500000px;}
.y13_c01262{bottom:589.500000px;}
.y12_c01262{bottom:610.500000px;}
.y11_c01262{bottom:631.500000px;}
.y10_c01262{bottom:652.500000px;}
.yf_c01262{bottom:673.500000px;}
.ye_c01262{bottom:694.500000px;}
.yd_c01262{bottom:715.500000px;}
.yc_c01262{bottom:736.500000px;}
.yb_c01262{bottom:757.500000px;}
.ya_c01262{bottom:778.500000px;}
.y9_c01262{bottom:799.500000px;}
.y8_c01262{bottom:820.500000px;}
.y7_c01262{bottom:841.500000px;}
.y6_c01262{bottom:862.500000px;}
.y5_c01262{bottom:921.000000px;}
.y4_c01262{bottom:942.000000px;}
.y3_c01262{bottom:978.000000px;}
.y2_c01262{bottom:1017.000000px;}
.y1_c01262{bottom:1095.000000px;}
.y29_c01262{bottom:1194.000000px;}
.h4_c01262{height:42.714844px;}
.h3_c01262{height:42.832031px;}
.h1_c01262{height:51.257812px;}
.h2_c01262{height:51.398438px;}
.h5_c01262{height:52.417969px;}
.h6_c01262{height:56.074219px;}
.h0_c01262{height:1263.000000px;}
.w0_c01262{width:892.500000px;}
.x0_c01262{left:0.000000px;}
.x1_c01262{left:150.519750px;}
.x2_c01262{left:416.782800px;}
.x3_c01262{left:801.992850px;}
@media print{
.v0_c01262{vertical-align:0.000000pt;}
.ls5_c01262{letter-spacing:-0.005333pt;}
.ls3_c01262{letter-spacing:0.000000pt;}
.ls2_c01262{letter-spacing:0.010667pt;}
.ls0_c01262{letter-spacing:0.112000pt;}
.ls1_c01262{letter-spacing:0.133333pt;}
.ls4_c01262{letter-spacing:0.277333pt;}
.ws0_c01262{word-spacing:-14.778667pt;}
.ws1_c01262{word-spacing:-14.666667pt;}
.ws2_c01262{word-spacing:0.000000pt;}
._1_c01262{margin-left:-8.275200pt;}
._17_c01262{margin-left:-5.888000pt;}
._9_c01262{margin-left:-4.679467pt;}
._19_c01262{margin-left:-3.496533pt;}
._13_c01262{margin-left:-2.560000pt;}
._0_c01262{margin-left:-1.248000pt;}
._5_c01262{width:0.981333pt;}
._8_c01262{width:2.346667pt;}
._3_c01262{width:3.786667pt;}
._11_c01262{width:5.457067pt;}
._12_c01262{width:6.606933pt;}
._d_c01262{width:7.630933pt;}
._c_c01262{width:8.874667pt;}
._b_c01262{width:10.067200pt;}
._a_c01262{width:11.212800pt;}
._18_c01262{width:12.782933pt;}
._15_c01262{width:14.272000pt;}
._14_c01262{width:16.998400pt;}
._1a_c01262{width:18.094933pt;}
._16_c01262{width:19.124267pt;}
._1b_c01262{width:21.141333pt;}
._4_c01262{width:22.720000pt;}
._1c_c01262{width:23.912533pt;}
._6_c01262{width:24.853333pt;}
._2_c01262{width:26.506667pt;}
._7_c01262{width:27.563733pt;}
._10_c01262{width:28.708267pt;}
._e_c01262{width:29.651200pt;}
._f_c01262{width:34.356267pt;}
.fs1_c01262{font-size:53.333333pt;}
.fs0_c01262{font-size:64.000000pt;}
.y0_c01262{bottom:0.000000pt;}
.y2a_c01262{bottom:60.000000pt;}
.y28_c01262{bottom:132.000000pt;}
.y27_c01262{bottom:150.666667pt;}
.y26_c01262{bottom:169.333333pt;}
.y25_c01262{bottom:188.000000pt;}
.y24_c01262{bottom:206.666667pt;}
.y23_c01262{bottom:225.333333pt;}
.y22_c01262{bottom:244.000000pt;}
.y21_c01262{bottom:262.666667pt;}
.y20_c01262{bottom:281.333333pt;}
.y1f_c01262{bottom:300.000000pt;}
.y1e_c01262{bottom:318.666667pt;}
.y1d_c01262{bottom:337.333333pt;}
.y1c_c01262{bottom:356.000000pt;}
.y1b_c01262{bottom:374.666667pt;}
.y1a_c01262{bottom:393.333333pt;}
.y19_c01262{bottom:412.000000pt;}
.y18_c01262{bottom:430.666667pt;}
.y17_c01262{bottom:449.333333pt;}
.y16_c01262{bottom:468.000000pt;}
.y15_c01262{bottom:486.666667pt;}
.y14_c01262{bottom:505.333333pt;}
.y13_c01262{bottom:524.000000pt;}
.y12_c01262{bottom:542.666667pt;}
.y11_c01262{bottom:561.333333pt;}
.y10_c01262{bottom:580.000000pt;}
.yf_c01262{bottom:598.666667pt;}
.ye_c01262{bottom:617.333333pt;}
.yd_c01262{bottom:636.000000pt;}
.yc_c01262{bottom:654.666667pt;}
.yb_c01262{bottom:673.333333pt;}
.ya_c01262{bottom:692.000000pt;}
.y9_c01262{bottom:710.666667pt;}
.y8_c01262{bottom:729.333333pt;}
.y7_c01262{bottom:748.000000pt;}
.y6_c01262{bottom:766.666667pt;}
.y5_c01262{bottom:818.666667pt;}
.y4_c01262{bottom:837.333333pt;}
.y3_c01262{bottom:869.333333pt;}
.y2_c01262{bottom:904.000000pt;}
.y1_c01262{bottom:973.333333pt;}
.y29_c01262{bottom:1061.333333pt;}
.h4_c01262{height:37.968750pt;}
.h3_c01262{height:38.072917pt;}
.h1_c01262{height:45.562500pt;}
.h2_c01262{height:45.687500pt;}
.h5_c01262{height:46.593750pt;}
.h6_c01262{height:49.843750pt;}
.h0_c01262{height:1122.666667pt;}
.w0_c01262{width:793.333333pt;}
.x0_c01262{left:0.000000pt;}
.x1_c01262{left:133.795333pt;}
.x2_c01262{left:370.473600pt;}
.x3_c01262{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_daa07cc7ae9c9c00f82eeb08.woff2')format("woff");}.ff1_c01263{font-family:ff1_c01263;line-height:1.010254;font-style:normal;font-weight:normal;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_5075d9ec7f02ef0f6f22414c.woff2')format("woff");}.ff2_c01263{font-family:ff2_c01263;line-height:0.932129;font-style:normal;font-weight:normal;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_0e486e7640f6cce6f1e92091.woff2')format("woff");}.ff3_c01263{font-family:ff3_c01263;line-height:0.934082;font-style:normal;font-weight:normal;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_94f31be9a48c2c9e563d383e.woff2')format("woff");}.ff4_c01263{font-family:ff4_c01263;line-height:0.755859;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01263;src:url('chunks/assets/font_887903f5dc1c45df5a7f4964.woff2')format("woff");}.ff5_c01263{font-family:ff5_c01263;line-height:1.155762;font-style: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);}
.m1_c01263{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01263{vertical-align:0.000000px;}
.ls3_c01263{letter-spacing:-0.014400px;}
.ls5_c01263{letter-spacing:-0.006000px;}
.ls2_c01263{letter-spacing:0.000000px;}
.ls6_c01263{letter-spacing:0.012000px;}
.ls0_c01263{letter-spacing:0.126000px;}
.ls1_c01263{letter-spacing:0.150000px;}
.ls4_c01263{letter-spacing:0.312000px;}
.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:-19.800000px;}
.ws0_c01263{word-spacing:-18.000000px;}
.ws2_c01263{word-spacing:-16.626000px;}
.ws3_c01263{word-spacing:-16.500000px;}
.ws4_c01263{word-spacing:0.000000px;}
._16_c01263{margin-left:-9.165600px;}
._15_c01263{margin-left:-6.624000px;}
._8_c01263{margin-left:-5.328000px;}
._d_c01263{margin-left:-3.801600px;}
._1_c01263{margin-left:-2.354400px;}
._0_c01263{margin-left:-1.346400px;}
._9_c01263{width:1.116000px;}
._6_c01263{width:2.217600px;}
._4_c01263{width:3.549600px;}
._11_c01263{width:5.212800px;}
._10_c01263{width:6.868800px;}
._5_c01263{width:7.970400px;}
._7_c01263{width:9.273600px;}
._a_c01263{width:10.447200px;}
._3_c01263{width:11.527200px;}
._b_c01263{width:12.844800px;}
._2_c01263{width:13.867200px;}
._c_c01263{width:14.954400px;}
._f_c01263{width:16.264800px;}
._e_c01263{width:19.224000px;}
._13_c01263{width:20.908800px;}
._12_c01263{width:22.564800px;}
._14_c01263{width:24.350400px;}
._18_c01263{width:26.270400px;}
._19_c01263{width:27.963960px;}
._17_c01263{width:29.820000px;}
._1a_c01263{width:32.114400px;}
.fc1_c01263{color:rgb(0,0,153);}
.fc0_c01263{color:rgb(0,0,0);}
.fs1_c01263{font-size:60.000000px;}
.fs0_c01263{font-size:72.000000px;}
.y0_c01263{bottom:0.000000px;}
.y28_c01263{bottom:67.500000px;}
.y26_c01263{bottom:141.000000px;}
.y25_c01263{bottom:162.000000px;}
.y24_c01263{bottom:183.000000px;}
.y23_c01263{bottom:204.000000px;}
.y22_c01263{bottom:225.000000px;}
.y21_c01263{bottom:246.000000px;}
.y20_c01263{bottom:267.000000px;}
.y1f_c01263{bottom:288.000000px;}
.y1e_c01263{bottom:309.000000px;}
.y1d_c01263{bottom:330.000000px;}
.y1c_c01263{bottom:351.000000px;}
.y1b_c01263{bottom:372.000000px;}
.y1a_c01263{bottom:393.000000px;}
.y19_c01263{bottom:450.000000px;}
.y18_c01263{bottom:471.000000px;}
.y17_c01263{bottom:505.500000px;}
.y16_c01263{bottom:532.500000px;}
.y15_c01263{bottom:571.500000px;}
.y14_c01263{bottom:649.500000px;}
.y13_c01263{bottom:718.500000px;}
.y12_c01263{bottom:739.500000px;}
.y11_c01263{bottom:760.500000px;}
.y10_c01263{bottom:781.500000px;}
.yf_c01263{bottom:802.500000px;}
.ye_c01263{bottom:823.500000px;}
.yd_c01263{bottom:844.500000px;}
.yc_c01263{bottom:865.500000px;}
.yb_c01263{bottom:886.500000px;}
.ya_c01263{bottom:907.500000px;}
.y9_c01263{bottom:928.500000px;}
.y8_c01263{bottom:949.500000px;}
.y7_c01263{bottom:970.500000px;}
.y6_c01263{bottom:991.500000px;}
.y5_c01263{bottom:1012.500000px;}
.y4_c01263{bottom:1033.500000px;}
.y3_c01263{bottom:1054.500000px;}
.y2_c01263{bottom:1075.500000px;}
.y1_c01263{bottom:1096.500000px;}
.y27_c01263{bottom:1194.000000px;}
.h5_c01263{height:42.714844px;}
.h4_c01263{height:42.832031px;}
.h7_c01263{height:44.208984px;}
.h2_c01263{height:51.257812px;}
.h3_c01263{height:51.398438px;}
.h1_c01263{height:52.417969px;}
.h6_c01263{height:56.074219px;}
.h0_c01263{height:1263.000000px;}
.w0_c01263{width:892.500000px;}
.x0_c01263{left:0.000000px;}
.x1_c01263{left:65.480310px;}
@media print{
.v0_c01263{vertical-align:0.000000pt;}
.ls3_c01263{letter-spacing:-0.012800pt;}
.ls5_c01263{letter-spacing:-0.005333pt;}
.ls2_c01263{letter-spacing:0.000000pt;}
.ls6_c01263{letter-spacing:0.010667pt;}
.ls0_c01263{letter-spacing:0.112000pt;}
.ls1_c01263{letter-spacing:0.133333pt;}
.ls4_c01263{letter-spacing:0.277333pt;}
.ws1_c01263{word-spacing:-17.600000pt;}
.ws0_c01263{word-spacing:-16.000000pt;}
.ws2_c01263{word-spacing:-14.778667pt;}
.ws3_c01263{word-spacing:-14.666667pt;}
.ws4_c01263{word-spacing:0.000000pt;}
._16_c01263{margin-left:-8.147200pt;}
._15_c01263{margin-left:-5.888000pt;}
._8_c01263{margin-left:-4.736000pt;}
._d_c01263{margin-left:-3.379200pt;}
._1_c01263{margin-left:-2.092800pt;}
._0_c01263{margin-left:-1.196800pt;}
._9_c01263{width:0.992000pt;}
._6_c01263{width:1.971200pt;}
._4_c01263{width:3.155200pt;}
._11_c01263{width:4.633600pt;}
._10_c01263{width:6.105600pt;}
._5_c01263{width:7.084800pt;}
._7_c01263{width:8.243200pt;}
._a_c01263{width:9.286400pt;}
._3_c01263{width:10.246400pt;}
._b_c01263{width:11.417600pt;}
._2_c01263{width:12.326400pt;}
._c_c01263{width:13.292800pt;}
._f_c01263{width:14.457600pt;}
._e_c01263{width:17.088000pt;}
._13_c01263{width:18.585600pt;}
._12_c01263{width:20.057600pt;}
._14_c01263{width:21.644800pt;}
._18_c01263{width:23.351467pt;}
._19_c01263{width:24.856853pt;}
._17_c01263{width:26.506667pt;}
._1a_c01263{width:28.546133pt;}
.fs1_c01263{font-size:53.333333pt;}
.fs0_c01263{font-size:64.000000pt;}
.y0_c01263{bottom:0.000000pt;}
.y28_c01263{bottom:60.000000pt;}
.y26_c01263{bottom:125.333333pt;}
.y25_c01263{bottom:144.000000pt;}
.y24_c01263{bottom:162.666667pt;}
.y23_c01263{bottom:181.333333pt;}
.y22_c01263{bottom:200.000000pt;}
.y21_c01263{bottom:218.666667pt;}
.y20_c01263{bottom:237.333333pt;}
.y1f_c01263{bottom:256.000000pt;}
.y1e_c01263{bottom:274.666667pt;}
.y1d_c01263{bottom:293.333333pt;}
.y1c_c01263{bottom:312.000000pt;}
.y1b_c01263{bottom:330.666667pt;}
.y1a_c01263{bottom:349.333333pt;}
.y19_c01263{bottom:400.000000pt;}
.y18_c01263{bottom:418.666667pt;}
.y17_c01263{bottom:449.333333pt;}
.y16_c01263{bottom:473.333333pt;}
.y15_c01263{bottom:508.000000pt;}
.y14_c01263{bottom:577.333333pt;}
.y13_c01263{bottom:638.666667pt;}
.y12_c01263{bottom:657.333333pt;}
.y11_c01263{bottom:676.000000pt;}
.y10_c01263{bottom:694.666667pt;}
.yf_c01263{bottom:713.333333pt;}
.ye_c01263{bottom:732.000000pt;}
.yd_c01263{bottom:750.666667pt;}
.yc_c01263{bottom:769.333333pt;}
.yb_c01263{bottom:788.000000pt;}
.ya_c01263{bottom:806.666667pt;}
.y9_c01263{bottom:825.333333pt;}
.y8_c01263{bottom:844.000000pt;}
.y7_c01263{bottom:862.666667pt;}
.y6_c01263{bottom:881.333333pt;}
.y5_c01263{bottom:900.000000pt;}
.y4_c01263{bottom:918.666667pt;}
.y3_c01263{bottom:937.333333pt;}
.y2_c01263{bottom:956.000000pt;}
.y1_c01263{bottom:974.666667pt;}
.y27_c01263{bottom:1061.333333pt;}
.h5_c01263{height:37.968750pt;}
.h4_c01263{height:38.072917pt;}
.h7_c01263{height:39.296875pt;}
.h2_c01263{height:45.562500pt;}
.h3_c01263{height:45.687500pt;}
.h1_c01263{height:46.593750pt;}
.h6_c01263{height:49.843750pt;}
.h0_c01263{height:1122.666667pt;}
.w0_c01263{width:793.333333pt;}
.x0_c01263{left:0.000000pt;}
.x1_c01263{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c3bb21ebf73d716c29e1d1e3.woff2')format("woff");}.ff1_c01264{font-family:ff1_c01264;line-height:1.010254;font-style:normal;font-weight:normal;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_390621738043e4e173b5a0bd.woff2')format("woff");}.ff2_c01264{font-family:ff2_c01264;line-height:1.155762;font-style: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;}
.ls1_c01264{letter-spacing:0.000000px;}
.ls0_c01264{letter-spacing:0.012000px;}
.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:0.000000px;}
._14_c01264{margin-left:-6.660000px;}
._13_c01264{margin-left:-5.407200px;}
._b_c01264{margin-left:-4.104000px;}
._5_c01264{margin-left:-2.592000px;}
._0_c01264{margin-left:-1.310400px;}
._9_c01264{width:1.080000px;}
._1_c01264{width:2.390400px;}
._4_c01264{width:3.434400px;}
._7_c01264{width:4.687200px;}
._e_c01264{width:5.860800px;}
._d_c01264{width:7.120800px;}
._8_c01264{width:8.776800px;}
._f_c01264{width:10.029600px;}
._2_c01264{width:11.073600px;}
._a_c01264{width:12.398400px;}
._3_c01264{width:13.543200px;}
._6_c01264{width:15.170400px;}
._c_c01264{width:16.315200px;}
._10_c01264{width:19.058400px;}
._12_c01264{width:20.678400px;}
._11_c01264{width:22.269600px;}
.fc0_c01264{color:rgb(0,0,0);}
.fs1_c01264{font-size:60.000000px;}
.fs0_c01264{font-size:72.000000px;}
.y0_c01264{bottom:0.000000px;}
.y12_c01264{bottom:67.500000px;}
.y10_c01264{bottom:781.500000px;}
.yf_c01264{bottom:802.500000px;}
.ye_c01264{bottom:823.500000px;}
.yd_c01264{bottom:844.500000px;}
.yc_c01264{bottom:865.500000px;}
.yb_c01264{bottom:886.500000px;}
.ya_c01264{bottom:907.500000px;}
.y9_c01264{bottom:928.500000px;}
.y8_c01264{bottom:949.500000px;}
.y7_c01264{bottom:970.500000px;}
.y6_c01264{bottom:991.500000px;}
.y5_c01264{bottom:1012.500000px;}
.y4_c01264{bottom:1033.500000px;}
.y3_c01264{bottom:1054.500000px;}
.y2_c01264{bottom:1075.500000px;}
.y1_c01264{bottom:1096.500000px;}
.y11_c01264{bottom:1194.000000px;}
.h1_c01264{height:52.417969px;}
.h2_c01264{height:56.074219px;}
.h0_c01264{height:1263.000000px;}
.w0_c01264{width:892.500000px;}
.x0_c01264{left:0.000000px;}
.x1_c01264{left:150.519750px;}
.x2_c01264{left:416.782800px;}
.x3_c01264{left:801.992850px;}
@media print{
.v0_c01264{vertical-align:0.000000pt;}
.ls1_c01264{letter-spacing:0.000000pt;}
.ls0_c01264{letter-spacing:0.010667pt;}
.ws0_c01264{word-spacing:0.000000pt;}
._14_c01264{margin-left:-5.920000pt;}
._13_c01264{margin-left:-4.806400pt;}
._b_c01264{margin-left:-3.648000pt;}
._5_c01264{margin-left:-2.304000pt;}
._0_c01264{margin-left:-1.164800pt;}
._9_c01264{width:0.960000pt;}
._1_c01264{width:2.124800pt;}
._4_c01264{width:3.052800pt;}
._7_c01264{width:4.166400pt;}
._e_c01264{width:5.209600pt;}
._d_c01264{width:6.329600pt;}
._8_c01264{width:7.801600pt;}
._f_c01264{width:8.915200pt;}
._2_c01264{width:9.843200pt;}
._a_c01264{width:11.020800pt;}
._3_c01264{width:12.038400pt;}
._6_c01264{width:13.484800pt;}
._c_c01264{width:14.502400pt;}
._10_c01264{width:16.940800pt;}
._12_c01264{width:18.380800pt;}
._11_c01264{width:19.795200pt;}
.fs1_c01264{font-size:53.333333pt;}
.fs0_c01264{font-size:64.000000pt;}
.y0_c01264{bottom:0.000000pt;}
.y12_c01264{bottom:60.000000pt;}
.y10_c01264{bottom:694.666667pt;}
.yf_c01264{bottom:713.333333pt;}
.ye_c01264{bottom:732.000000pt;}
.yd_c01264{bottom:750.666667pt;}
.yc_c01264{bottom:769.333333pt;}
.yb_c01264{bottom:788.000000pt;}
.ya_c01264{bottom:806.666667pt;}
.y9_c01264{bottom:825.333333pt;}
.y8_c01264{bottom:844.000000pt;}
.y7_c01264{bottom:862.666667pt;}
.y6_c01264{bottom:881.333333pt;}
.y5_c01264{bottom:900.000000pt;}
.y4_c01264{bottom:918.666667pt;}
.y3_c01264{bottom:937.333333pt;}
.y2_c01264{bottom:956.000000pt;}
.y1_c01264{bottom:974.666667pt;}
.y11_c01264{bottom:1061.333333pt;}
.h1_c01264{height:46.593750pt;}
.h2_c01264{height:49.843750pt;}
.h0_c01264{height:1122.666667pt;}
.w0_c01264{width:793.333333pt;}
.x0_c01264{left:0.000000pt;}
.x1_c01264{left:133.795333pt;}
.x2_c01264{left:370.473600pt;}
.x3_c01264{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ad04c74150293e5029742132.woff2')format("woff");}.ff1_c01265{font-family:ff1_c01265;line-height:0.884766;font-style:normal;font-weight:normal;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_2ef81c579fcab108cce98fbd.woff2')format("woff");}.ff2_c01265{font-family:ff2_c01265;line-height:1.163086;font-style:normal;font-weight:normal;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_a76cb321056270f008283a44.woff2')format("woff");}.ff3_c01265{font-family:ff3_c01265;line-height:0.932129;font-style:normal;font-weight:normal;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_d8efc8909d65100f23754da6.woff2')format("woff");}.ff4_c01265{font-family:ff4_c01265;line-height:0.755859;font-style:normal;font-weight:normal;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_4ea0491bee272d66fd6d5f6e.woff2')format("woff");}.ff5_c01265{font-family:ff5_c01265;line-height:1.155762;font-style:normal;font-weight: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_c01265;src:url('chunks/assets/font_e2561861c0a82f1b14d67c1d.woff2')format("woff");}.ff6_c01265{font-family:ff6_c01265;line-height:1.115723;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01265;src:url('chunks/assets/font_7d3fe12fbca5d8ec0dcd9073.woff2')format("woff");}.ff7_c01265{font-family:ff7_c01265;line-height:0.890137;font-style: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);}
.v3_c01265{vertical-align:-33.000000px;}
.v2_c01265{vertical-align:-23.086200px;}
.v0_c01265{vertical-align:0.000000px;}
.v1_c01265{vertical-align:23.086200px;}
.ls6_c01265{letter-spacing:-1.260000px;}
.ls5_c01265{letter-spacing:0.000000px;}
.ls0_c01265{letter-spacing:0.007800px;}
.ls7_c01265{letter-spacing:0.012000px;}
.ls1_c01265{letter-spacing:1.782600px;}
.ls4_c01265{letter-spacing:3.999999px;}
.ls2_c01265{letter-spacing:13.027800px;}
.ls3_c01265{letter-spacing:21.172200px;}
.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;}
}
.ws1_c01265{word-spacing:-18.540000px;}
.ws2_c01265{word-spacing:-10.000001px;}
.ws0_c01265{word-spacing:-0.085800px;}
.ws3_c01265{word-spacing:0.000000px;}
._10_c01265{margin-left:-10.533600px;}
._17_c01265{margin-left:-7.469040px;}
._c_c01265{margin-left:-5.990400px;}
._2_c01265{margin-left:-4.147200px;}
._7_c01265{margin-left:-2.793600px;}
._5_c01265{margin-left:-1.339200px;}
._b_c01265{width:1.015200px;}
._0_c01265{width:2.325600px;}
._a_c01265{width:3.621600px;}
._1_c01265{width:5.032800px;}
._9_c01265{width:6.350400px;}
._4_c01265{width:7.358400px;}
._6_c01265{width:8.654400px;}
._8_c01265{width:10.216800px;}
._3_c01265{width:11.692800px;}
._14_c01265{width:12.708000px;}
._11_c01265{width:14.436000px;}
._12_c01265{width:15.602400px;}
._13_c01265{width:16.840800px;}
._f_c01265{width:18.648000px;}
._15_c01265{width:20.959200px;}
._e_c01265{width:22.248000px;}
._16_c01265{width:24.285600px;}
._d_c01265{width:26.460000px;}
.fc1_c01265{color:rgb(255,255,255);}
.fc0_c01265{color:rgb(0,0,0);}
.fs5_c01265{font-size:40.000002px;}
.fs2_c01265{font-size:48.000000px;}
.fs4_c01265{font-size:60.000000px;}
.fs1_c01265{font-size:72.000000px;}
.fs0_c01265{font-size:78.000000px;}
.fs3_c01265{font-size:96.000000px;}
.y0_c01265{bottom:0.000000px;}
.y1a_c01265{bottom:67.500000px;}
.y1e_c01265{bottom:140.250000px;}
.y1d_c01265{bottom:189.750000px;}
.y1c_c01265{bottom:231.000000px;}
.y1b_c01265{bottom:258.750000px;}
.y17_c01265{bottom:337.500000px;}
.y16_c01265{bottom:364.500000px;}
.y15_c01265{bottom:391.500000px;}
.y14_c01265{bottom:418.500000px;}
.y13_c01265{bottom:445.500000px;}
.y12_c01265{bottom:472.500000px;}
.y11_c01265{bottom:499.500000px;}
.y10_c01265{bottom:526.500000px;}
.yf_c01265{bottom:553.500000px;}
.ye_c01265{bottom:580.500000px;}
.yd_c01265{bottom:607.500000px;}
.yc_c01265{bottom:634.500000px;}
.yb_c01265{bottom:661.500000px;}
.ya_c01265{bottom:688.500000px;}
.y9_c01265{bottom:715.500000px;}
.y8_c01265{bottom:742.500000px;}
.y7_c01265{bottom:790.500000px;}
.y6_c01265{bottom:817.500000px;}
.y5_c01265{bottom:844.500000px;}
.y4_c01265{bottom:892.500000px;}
.y3_c01265{bottom:919.500000px;}
.y2_c01265{bottom:946.500000px;}
.y1_c01265{bottom:993.000000px;}
.y18_c01265{bottom:1066.500000px;}
.y19_c01265{bottom:1194.000000px;}
.h7_c01265{height:35.878908px;}
.h6_c01265{height:44.208984px;}
.h8_c01265{height:53.818359px;}
.h1_c01265{height:55.224609px;}
.h5_c01265{height:56.074219px;}
.h2_c01265{height:67.746094px;}
.h3_c01265{height:68.250262px;}
.h4_c01265{height:90.328125px;}
.h0_c01265{height:1263.000000px;}
.w0_c01265{width:892.500000px;}
.x0_c01265{left:0.000000px;}
.x1_c01265{left:65.480310px;}
.x2_c01265{left:94.798875px;}
@media print{
.v3_c01265{vertical-align:-29.333333pt;}
.v2_c01265{vertical-align:-20.521067pt;}
.v0_c01265{vertical-align:0.000000pt;}
.v1_c01265{vertical-align:20.521067pt;}
.ls6_c01265{letter-spacing:-1.120000pt;}
.ls5_c01265{letter-spacing:0.000000pt;}
.ls0_c01265{letter-spacing:0.006933pt;}
.ls7_c01265{letter-spacing:0.010667pt;}
.ls1_c01265{letter-spacing:1.584533pt;}
.ls4_c01265{letter-spacing:3.555555pt;}
.ls2_c01265{letter-spacing:11.580267pt;}
.ls3_c01265{letter-spacing:18.819733pt;}
.ws1_c01265{word-spacing:-16.480000pt;}
.ws2_c01265{word-spacing:-8.888889pt;}
.ws0_c01265{word-spacing:-0.076267pt;}
.ws3_c01265{word-spacing:0.000000pt;}
._10_c01265{margin-left:-9.363200pt;}
._17_c01265{margin-left:-6.639147pt;}
._c_c01265{margin-left:-5.324800pt;}
._2_c01265{margin-left:-3.686400pt;}
._7_c01265{margin-left:-2.483200pt;}
._5_c01265{margin-left:-1.190400pt;}
._b_c01265{width:0.902400pt;}
._0_c01265{width:2.067200pt;}
._a_c01265{width:3.219200pt;}
._1_c01265{width:4.473600pt;}
._9_c01265{width:5.644800pt;}
._4_c01265{width:6.540800pt;}
._6_c01265{width:7.692800pt;}
._8_c01265{width:9.081600pt;}
._3_c01265{width:10.393600pt;}
._14_c01265{width:11.296000pt;}
._11_c01265{width:12.832000pt;}
._12_c01265{width:13.868800pt;}
._13_c01265{width:14.969600pt;}
._f_c01265{width:16.576000pt;}
._15_c01265{width:18.630400pt;}
._e_c01265{width:19.776000pt;}
._16_c01265{width:21.587200pt;}
._d_c01265{width:23.520000pt;}
.fs5_c01265{font-size:35.555557pt;}
.fs2_c01265{font-size:42.666667pt;}
.fs4_c01265{font-size:53.333333pt;}
.fs1_c01265{font-size:64.000000pt;}
.fs0_c01265{font-size:69.333333pt;}
.fs3_c01265{font-size:85.333333pt;}
.y0_c01265{bottom:0.000000pt;}
.y1a_c01265{bottom:60.000000pt;}
.y1e_c01265{bottom:124.666667pt;}
.y1d_c01265{bottom:168.666667pt;}
.y1c_c01265{bottom:205.333333pt;}
.y1b_c01265{bottom:230.000000pt;}
.y17_c01265{bottom:300.000000pt;}
.y16_c01265{bottom:324.000000pt;}
.y15_c01265{bottom:348.000000pt;}
.y14_c01265{bottom:372.000000pt;}
.y13_c01265{bottom:396.000000pt;}
.y12_c01265{bottom:420.000000pt;}
.y11_c01265{bottom:444.000000pt;}
.y10_c01265{bottom:468.000000pt;}
.yf_c01265{bottom:492.000000pt;}
.ye_c01265{bottom:516.000000pt;}
.yd_c01265{bottom:540.000000pt;}
.yc_c01265{bottom:564.000000pt;}
.yb_c01265{bottom:588.000000pt;}
.ya_c01265{bottom:612.000000pt;}
.y9_c01265{bottom:636.000000pt;}
.y8_c01265{bottom:660.000000pt;}
.y7_c01265{bottom:702.666667pt;}
.y6_c01265{bottom:726.666667pt;}
.y5_c01265{bottom:750.666667pt;}
.y4_c01265{bottom:793.333333pt;}
.y3_c01265{bottom:817.333333pt;}
.y2_c01265{bottom:841.333333pt;}
.y1_c01265{bottom:882.666667pt;}
.y18_c01265{bottom:948.000000pt;}
.y19_c01265{bottom:1061.333333pt;}
.h7_c01265{height:31.892363pt;}
.h6_c01265{height:39.296875pt;}
.h8_c01265{height:47.838542pt;}
.h1_c01265{height:49.088542pt;}
.h5_c01265{height:49.843750pt;}
.h2_c01265{height:60.218750pt;}
.h3_c01265{height:60.666900pt;}
.h4_c01265{height:80.291667pt;}
.h0_c01265{height:1122.666667pt;}
.w0_c01265{width:793.333333pt;}
.x0_c01265{left:0.000000pt;}
.x1_c01265{left:58.204720pt;}
.x2_c01265{left:84.265667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_88404d12564c577033459bb6.woff2')format("woff");}.ff1_c01266{font-family:ff1_c01266;line-height:0.934082;font-style:normal;font-weight:normal;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_12bb9f69f5861d0e91390e82.woff2')format("woff");}.ff2_c01266{font-family:ff2_c01266;line-height:0.882812;font-style:normal;font-weight:normal;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_31df5047c622972067e3b38d.woff2')format("woff");}.ff3_c01266{font-family:ff3_c01266;line-height:1.155762;font-style:normal;font-weight:normal;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_c8ff5ac8dc10f0a92524533a.woff2')format("woff");}.ff4_c01266{font-family:ff4_c01266;line-height:1.115723;font-style:normal;font-weight:normal;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_cd519f70d77dba97f1fe671d.woff2')format("woff");}.ff5_c01266{font-family:ff5_c01266;line-height:0.890137;font-style: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);}
.v3_c01266{vertical-align:-33.000000px;}
.v2_c01266{vertical-align:-23.086200px;}
.v0_c01266{vertical-align:0.000000px;}
.v1_c01266{vertical-align:23.086200px;}
.ls7_c01266{letter-spacing:0.000000px;}
.ls5_c01266{letter-spacing:0.012000px;}
.ls2_c01266{letter-spacing:0.141600px;}
.ls6_c01266{letter-spacing:3.999999px;}
.ls4_c01266{letter-spacing:8.751600px;}
.ls0_c01266{letter-spacing:14.000400px;}
.ls3_c01266{letter-spacing:17.455800px;}
.ls1_c01266{letter-spacing:21.592800px;}
.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;}
}
.ws1_c01266{word-spacing:-10.000001px;}
.ws0_c01266{word-spacing:-0.048000px;}
.ws2_c01266{word-spacing:0.000000px;}
._b_c01266{margin-left:-10.584000px;}
._d_c01266{margin-left:-8.140800px;}
._16_c01266{margin-left:-7.077600px;}
._19_c01266{margin-left:-5.630601px;}
._13_c01266{margin-left:-4.550400px;}
._5_c01266{margin-left:-3.196800px;}
._2_c01266{margin-left:-1.692000px;}
._0_c01266{width:1.584000px;}
._c_c01266{width:3.304800px;}
._6_c01266{width:4.622400px;}
._17_c01266{width:5.652000px;}
._15_c01266{width:7.056000px;}
._1_c01266{width:8.431200px;}
._4_c01266{width:10.353600px;}
._3_c01266{width:11.692800px;}
._7_c01266{width:13.248000px;}
._a_c01266{width:14.580000px;}
._9_c01266{width:16.567200px;}
._8_c01266{width:18.194400px;}
._f_c01266{width:21.420000px;}
._e_c01266{width:22.831200px;}
._10_c01266{width:24.328800px;}
._11_c01266{width:25.876800px;}
._18_c01266{width:26.884800px;}
._12_c01266{width:29.023200px;}
._14_c01266{width:30.211200px;}
.fc0_c01266{color:rgb(0,0,0);}
.fs3_c01266{font-size:40.000002px;}
.fs1_c01266{font-size:48.000000px;}
.fs2_c01266{font-size:60.000000px;}
.fs0_c01266{font-size:72.000000px;}
.y0_c01266{bottom:0.000000px;}
.y15_c01266{bottom:67.500000px;}
.y20_c01266{bottom:140.250000px;}
.y1f_c01266{bottom:189.750000px;}
.y1e_c01266{bottom:231.000000px;}
.y1d_c01266{bottom:258.750000px;}
.y1c_c01266{bottom:300.000000px;}
.y1b_c01266{bottom:319.500000px;}
.y1a_c01266{bottom:347.250000px;}
.y19_c01266{bottom:388.500000px;}
.y18_c01266{bottom:408.000000px;}
.y17_c01266{bottom:435.750000px;}
.y16_c01266{bottom:485.250000px;}
.y13_c01266{bottom:546.000000px;}
.y12_c01266{bottom:573.000000px;}
.y11_c01266{bottom:600.000000px;}
.y10_c01266{bottom:627.000000px;}
.yf_c01266{bottom:654.000000px;}
.ye_c01266{bottom:702.000000px;}
.yd_c01266{bottom:729.000000px;}
.yc_c01266{bottom:756.000000px;}
.yb_c01266{bottom:783.000000px;}
.ya_c01266{bottom:810.000000px;}
.y9_c01266{bottom:837.000000px;}
.y8_c01266{bottom:864.000000px;}
.y7_c01266{bottom:912.000000px;}
.y6_c01266{bottom:939.000000px;}
.y5_c01266{bottom:966.000000px;}
.y4_c01266{bottom:993.000000px;}
.y3_c01266{bottom:1020.000000px;}
.y2_c01266{bottom:1068.000000px;}
.y1_c01266{bottom:1095.000000px;}
.y14_c01266{bottom:1194.000000px;}
.h4_c01266{height:35.878908px;}
.h2_c01266{height:51.257812px;}
.h5_c01266{height:53.818359px;}
.h3_c01266{height:56.074219px;}
.h1_c01266{height:56.976825px;}
.h0_c01266{height:1263.000000px;}
.w0_c01266{width:892.500000px;}
.x0_c01266{left:0.000000px;}
.x1_c01266{left:150.519750px;}
.x2_c01266{left:416.782800px;}
.x3_c01266{left:801.992850px;}
@media print{
.v3_c01266{vertical-align:-29.333333pt;}
.v2_c01266{vertical-align:-20.521067pt;}
.v0_c01266{vertical-align:0.000000pt;}
.v1_c01266{vertical-align:20.521067pt;}
.ls7_c01266{letter-spacing:0.000000pt;}
.ls5_c01266{letter-spacing:0.010667pt;}
.ls2_c01266{letter-spacing:0.125867pt;}
.ls6_c01266{letter-spacing:3.555555pt;}
.ls4_c01266{letter-spacing:7.779200pt;}
.ls0_c01266{letter-spacing:12.444800pt;}
.ls3_c01266{letter-spacing:15.516267pt;}
.ls1_c01266{letter-spacing:19.193600pt;}
.ws1_c01266{word-spacing:-8.888889pt;}
.ws0_c01266{word-spacing:-0.042667pt;}
.ws2_c01266{word-spacing:0.000000pt;}
._b_c01266{margin-left:-9.408000pt;}
._d_c01266{margin-left:-7.236267pt;}
._16_c01266{margin-left:-6.291200pt;}
._19_c01266{margin-left:-5.004979pt;}
._13_c01266{margin-left:-4.044800pt;}
._5_c01266{margin-left:-2.841600pt;}
._2_c01266{margin-left:-1.504000pt;}
._0_c01266{width:1.408000pt;}
._c_c01266{width:2.937600pt;}
._6_c01266{width:4.108800pt;}
._17_c01266{width:5.024000pt;}
._15_c01266{width:6.272000pt;}
._1_c01266{width:7.494400pt;}
._4_c01266{width:9.203200pt;}
._3_c01266{width:10.393600pt;}
._7_c01266{width:11.776000pt;}
._a_c01266{width:12.960000pt;}
._9_c01266{width:14.726400pt;}
._8_c01266{width:16.172800pt;}
._f_c01266{width:19.040000pt;}
._e_c01266{width:20.294400pt;}
._10_c01266{width:21.625600pt;}
._11_c01266{width:23.001600pt;}
._18_c01266{width:23.897600pt;}
._12_c01266{width:25.798400pt;}
._14_c01266{width:26.854400pt;}
.fs3_c01266{font-size:35.555557pt;}
.fs1_c01266{font-size:42.666667pt;}
.fs2_c01266{font-size:53.333333pt;}
.fs0_c01266{font-size:64.000000pt;}
.y0_c01266{bottom:0.000000pt;}
.y15_c01266{bottom:60.000000pt;}
.y20_c01266{bottom:124.666667pt;}
.y1f_c01266{bottom:168.666667pt;}
.y1e_c01266{bottom:205.333333pt;}
.y1d_c01266{bottom:230.000000pt;}
.y1c_c01266{bottom:266.666667pt;}
.y1b_c01266{bottom:284.000000pt;}
.y1a_c01266{bottom:308.666667pt;}
.y19_c01266{bottom:345.333333pt;}
.y18_c01266{bottom:362.666667pt;}
.y17_c01266{bottom:387.333333pt;}
.y16_c01266{bottom:431.333333pt;}
.y13_c01266{bottom:485.333333pt;}
.y12_c01266{bottom:509.333333pt;}
.y11_c01266{bottom:533.333333pt;}
.y10_c01266{bottom:557.333333pt;}
.yf_c01266{bottom:581.333333pt;}
.ye_c01266{bottom:624.000000pt;}
.yd_c01266{bottom:648.000000pt;}
.yc_c01266{bottom:672.000000pt;}
.yb_c01266{bottom:696.000000pt;}
.ya_c01266{bottom:720.000000pt;}
.y9_c01266{bottom:744.000000pt;}
.y8_c01266{bottom:768.000000pt;}
.y7_c01266{bottom:810.666667pt;}
.y6_c01266{bottom:834.666667pt;}
.y5_c01266{bottom:858.666667pt;}
.y4_c01266{bottom:882.666667pt;}
.y3_c01266{bottom:906.666667pt;}
.y2_c01266{bottom:949.333333pt;}
.y1_c01266{bottom:973.333333pt;}
.y14_c01266{bottom:1061.333333pt;}
.h4_c01266{height:31.892363pt;}
.h2_c01266{height:45.562500pt;}
.h5_c01266{height:47.838542pt;}
.h3_c01266{height:49.843750pt;}
.h1_c01266{height:50.646067pt;}
.h0_c01266{height:1122.666667pt;}
.w0_c01266{width:793.333333pt;}
.x0_c01266{left:0.000000pt;}
.x1_c01266{left:133.795333pt;}
.x2_c01266{left:370.473600pt;}
.x3_c01266{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8d0f466e0ea6baf878612f5b.woff2')format("woff");}.ff1_c01267{font-family:ff1_c01267;line-height:1.163086;font-style:normal;font-weight:normal;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_24c01a082d519b75b481eb37.woff2')format("woff");}.ff2_c01267{font-family:ff2_c01267;line-height:1.167480;font-style:normal;font-weight:normal;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_c2af63dbec304dd1de94c2c1.woff2')format("woff");}.ff3_c01267{font-family:ff3_c01267;line-height:0.755859;font-style:normal;font-weight:normal;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_43a5281670fbb48a1c999c6e.woff2')format("woff");}.ff4_c01267{font-family:ff4_c01267;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01267;src:url('chunks/assets/font_a38ca2ecd16493bb9c75bd61.woff2')format("woff");}.ff5_c01267{font-family:ff5_c01267;line-height:1.112305;font-style:normal;font-weight: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_c01267;src:url('chunks/assets/font_ed03bd59718d110ba90baf18.woff2')format("woff");}.ff6_c01267{font-family:ff6_c01267;line-height:0.891113;font-style: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);}
.m1_c01267{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3_c01267{vertical-align:-33.000000px;}
.v2_c01267{vertical-align:-23.086200px;}
.v0_c01267{vertical-align:0.000000px;}
.v1_c01267{vertical-align:23.086200px;}
.ls3_c01267{letter-spacing:-0.014400px;}
.ls2_c01267{letter-spacing:-0.009600px;}
.ls1_c01267{letter-spacing:0.000000px;}
.ls4_c01267{letter-spacing:0.007200px;}
.ls5_c01267{letter-spacing:0.012000px;}
.ls0_c01267{letter-spacing:0.856800px;}
.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;}
}
.ws2_c01267{word-spacing:-22.542000px;}
.ws0_c01267{word-spacing:-13.190400px;}
.ws4_c01267{word-spacing:-10.000001px;}
.ws3_c01267{word-spacing:-2.000002px;}
.ws5_c01267{word-spacing:0.000000px;}
.ws1_c01267{word-spacing:13.209000px;}
._6_c01267{margin-left:-10.584000px;}
._1a_c01267{margin-left:-6.962400px;}
._5_c01267{margin-left:-4.716000px;}
._1_c01267{margin-left:-2.880000px;}
._2_c01267{margin-left:-1.641600px;}
._d_c01267{width:1.094400px;}
._0_c01267{width:2.253600px;}
._4_c01267{width:3.528000px;}
._3_c01267{width:4.968000px;}
._c_c01267{width:6.660000px;}
._e_c01267{width:7.833600px;}
._b_c01267{width:8.920800px;}
._f_c01267{width:10.634400px;}
._a_c01267{width:11.872800px;}
._10_c01267{width:12.909600px;}
._11_c01267{width:14.587200px;}
._8_c01267{width:15.897600px;}
._7_c01267{width:17.308800px;}
._15_c01267{width:18.691200px;}
._14_c01267{width:20.952000px;}
._9_c01267{width:22.017600px;}
._12_c01267{width:23.976000px;}
._13_c01267{width:25.074960px;}
._1b_c01267{width:26.928000px;}
._1c_c01267{width:28.394880px;}
._18_c01267{width:33.609600px;}
._17_c01267{width:34.704000px;}
._16_c01267{width:37.584000px;}
._19_c01267{width:39.420000px;}
.fc0_c01267{color:rgb(0,0,0);}
.fs4_c01267{font-size:40.000002px;}
.fs1_c01267{font-size:48.000000px;}
.fs3_c01267{font-size:60.000000px;}
.fs0_c01267{font-size:72.000000px;}
.fs2_c01267{font-size:78.000000px;}
.y0_c01267{bottom:0.000000px;}
.y19_c01267{bottom:67.500000px;}
.y1f_c01267{bottom:140.250000px;}
.y1e_c01267{bottom:189.750000px;}
.y1d_c01267{bottom:231.000000px;}
.y1c_c01267{bottom:250.500000px;}
.y1b_c01267{bottom:270.000000px;}
.y1a_c01267{bottom:297.750000px;}
.y17_c01267{bottom:358.500000px;}
.y16_c01267{bottom:385.500000px;}
.y15_c01267{bottom:433.500000px;}
.y14_c01267{bottom:460.500000px;}
.y13_c01267{bottom:487.500000px;}
.y12_c01267{bottom:514.500000px;}
.y11_c01267{bottom:541.500000px;}
.y10_c01267{bottom:568.500000px;}
.yf_c01267{bottom:595.500000px;}
.ye_c01267{bottom:622.500000px;}
.yd_c01267{bottom:669.000000px;}
.yc_c01267{bottom:733.500000px;}
.yb_c01267{bottom:804.000000px;}
.ya_c01267{bottom:831.000000px;}
.y9_c01267{bottom:858.000000px;}
.y8_c01267{bottom:885.000000px;}
.y7_c01267{bottom:912.000000px;}
.y6_c01267{bottom:939.000000px;}
.y5_c01267{bottom:966.000000px;}
.y4_c01267{bottom:993.000000px;}
.y3_c01267{bottom:1041.000000px;}
.y2_c01267{bottom:1068.000000px;}
.y1_c01267{bottom:1095.000000px;}
.y18_c01267{bottom:1194.000000px;}
.h7_c01267{height:35.781252px;}
.h6_c01267{height:44.208984px;}
.h8_c01267{height:53.671875px;}
.h5_c01267{height:56.074219px;}
.h1_c01267{height:67.746094px;}
.h4_c01267{height:68.203125px;}
.h2_c01267{height:68.250262px;}
.h3_c01267{height:73.886719px;}
.h0_c01267{height:1263.000000px;}
.w0_c01267{width:892.500000px;}
.x0_c01267{left:0.000000px;}
.x1_c01267{left:65.480310px;}
@media print{
.v3_c01267{vertical-align:-29.333333pt;}
.v2_c01267{vertical-align:-20.521067pt;}
.v0_c01267{vertical-align:0.000000pt;}
.v1_c01267{vertical-align:20.521067pt;}
.ls3_c01267{letter-spacing:-0.012800pt;}
.ls2_c01267{letter-spacing:-0.008533pt;}
.ls1_c01267{letter-spacing:0.000000pt;}
.ls4_c01267{letter-spacing:0.006400pt;}
.ls5_c01267{letter-spacing:0.010667pt;}
.ls0_c01267{letter-spacing:0.761600pt;}
.ws2_c01267{word-spacing:-20.037333pt;}
.ws0_c01267{word-spacing:-11.724800pt;}
.ws4_c01267{word-spacing:-8.888889pt;}
.ws3_c01267{word-spacing:-1.777780pt;}
.ws5_c01267{word-spacing:0.000000pt;}
.ws1_c01267{word-spacing:11.741333pt;}
._6_c01267{margin-left:-9.408000pt;}
._1a_c01267{margin-left:-6.188800pt;}
._5_c01267{margin-left:-4.192000pt;}
._1_c01267{margin-left:-2.560000pt;}
._2_c01267{margin-left:-1.459200pt;}
._d_c01267{width:0.972800pt;}
._0_c01267{width:2.003200pt;}
._4_c01267{width:3.136000pt;}
._3_c01267{width:4.416000pt;}
._c_c01267{width:5.920000pt;}
._e_c01267{width:6.963200pt;}
._b_c01267{width:7.929600pt;}
._f_c01267{width:9.452800pt;}
._a_c01267{width:10.553600pt;}
._10_c01267{width:11.475200pt;}
._11_c01267{width:12.966400pt;}
._8_c01267{width:14.131200pt;}
._7_c01267{width:15.385600pt;}
._15_c01267{width:16.614400pt;}
._14_c01267{width:18.624000pt;}
._9_c01267{width:19.571200pt;}
._12_c01267{width:21.312000pt;}
._13_c01267{width:22.288853pt;}
._1b_c01267{width:23.936000pt;}
._1c_c01267{width:25.239893pt;}
._18_c01267{width:29.875200pt;}
._17_c01267{width:30.848000pt;}
._16_c01267{width:33.408000pt;}
._19_c01267{width:35.040000pt;}
.fs4_c01267{font-size:35.555557pt;}
.fs1_c01267{font-size:42.666667pt;}
.fs3_c01267{font-size:53.333333pt;}
.fs0_c01267{font-size:64.000000pt;}
.fs2_c01267{font-size:69.333333pt;}
.y0_c01267{bottom:0.000000pt;}
.y19_c01267{bottom:60.000000pt;}
.y1f_c01267{bottom:124.666667pt;}
.y1e_c01267{bottom:168.666667pt;}
.y1d_c01267{bottom:205.333333pt;}
.y1c_c01267{bottom:222.666667pt;}
.y1b_c01267{bottom:240.000000pt;}
.y1a_c01267{bottom:264.666667pt;}
.y17_c01267{bottom:318.666667pt;}
.y16_c01267{bottom:342.666667pt;}
.y15_c01267{bottom:385.333333pt;}
.y14_c01267{bottom:409.333333pt;}
.y13_c01267{bottom:433.333333pt;}
.y12_c01267{bottom:457.333333pt;}
.y11_c01267{bottom:481.333333pt;}
.y10_c01267{bottom:505.333333pt;}
.yf_c01267{bottom:529.333333pt;}
.ye_c01267{bottom:553.333333pt;}
.yd_c01267{bottom:594.666667pt;}
.yc_c01267{bottom:652.000000pt;}
.yb_c01267{bottom:714.666667pt;}
.ya_c01267{bottom:738.666667pt;}
.y9_c01267{bottom:762.666667pt;}
.y8_c01267{bottom:786.666667pt;}
.y7_c01267{bottom:810.666667pt;}
.y6_c01267{bottom:834.666667pt;}
.y5_c01267{bottom:858.666667pt;}
.y4_c01267{bottom:882.666667pt;}
.y3_c01267{bottom:925.333333pt;}
.y2_c01267{bottom:949.333333pt;}
.y1_c01267{bottom:973.333333pt;}
.y18_c01267{bottom:1061.333333pt;}
.h7_c01267{height:31.805557pt;}
.h6_c01267{height:39.296875pt;}
.h8_c01267{height:47.708333pt;}
.h5_c01267{height:49.843750pt;}
.h1_c01267{height:60.218750pt;}
.h4_c01267{height:60.625000pt;}
.h2_c01267{height:60.666900pt;}
.h3_c01267{height:65.677083pt;}
.h0_c01267{height:1122.666667pt;}
.w0_c01267{width:793.333333pt;}
.x0_c01267{left:0.000000pt;}
.x1_c01267{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_19e0f6369b9998f92f3638ab.woff2')format("woff");}.ff1_c01268{font-family:ff1_c01268;line-height:0.934082;font-style:normal;font-weight:normal;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_61854f112945a2d7f274ebfc.woff2')format("woff");}.ff2_c01268{font-family:ff2_c01268;line-height:0.975586;font-style:normal;font-weight:normal;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_951d43509757b7216c445fcc.woff2')format("woff");}.ff3_c01268{font-family:ff3_c01268;line-height:1.155762;font-style:normal;font-weight:normal;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_9a706c32b8e17538a9a56fb6.woff2')format("woff");}.ff4_c01268{font-family:ff4_c01268;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01268;src:url('chunks/assets/font_da4ca7f6466733dee669ba66.woff2')format("woff");}.ff5_c01268{font-family:ff5_c01268;line-height:0.678223;font-style: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);}
.v2_c01268{vertical-align:-33.000000px;}
.v0_c01268{vertical-align:0.000000px;}
.v1_c01268{vertical-align:23.086200px;}
.ls2_c01268{letter-spacing:-0.009600px;}
.ls3_c01268{letter-spacing:-0.007200px;}
.ls1_c01268{letter-spacing:0.000000px;}
.ls0_c01268{letter-spacing:0.012000px;}
.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;}
}
.ws0_c01268{word-spacing:-13.190400px;}
.ws1_c01268{word-spacing:-10.000001px;}
.ws2_c01268{word-spacing:0.000000px;}
._10_c01268{margin-left:-7.423200px;}
._18_c01268{margin-left:-5.047200px;}
._0_c01268{margin-left:-3.859200px;}
._f_c01268{margin-left:-2.829600px;}
._5_c01268{margin-left:-1.807200px;}
._2_c01268{width:1.836000px;}
._7_c01268{width:2.995200px;}
._9_c01268{width:4.852800px;}
._8_c01268{width:5.918400px;}
._12_c01268{width:6.976800px;}
._a_c01268{width:8.092800px;}
._b_c01268{width:9.424800px;}
._3_c01268{width:11.217600px;}
._4_c01268{width:13.046400px;}
._6_c01268{width:14.817600px;}
._11_c01268{width:15.854400px;}
._1_c01268{width:16.905600px;}
._d_c01268{width:18.064800px;}
._e_c01268{width:21.679200px;}
._c_c01268{width:22.816800px;}
._13_c01268{width:26.784000px;}
._15_c01268{width:27.950400px;}
._16_c01268{width:29.757600px;}
._14_c01268{width:32.608800px;}
._17_c01268{width:33.674400px;}
.fc0_c01268{color:rgb(0,0,0);}
.fs4_c01268{font-size:40.000002px;}
.fs1_c01268{font-size:48.000000px;}
.fs2_c01268{font-size:54.000000px;}
.fs3_c01268{font-size:60.000000px;}
.fs0_c01268{font-size:72.000000px;}
.y0_c01268{bottom:0.000000px;}
.y4_c01268{bottom:12.000000px;}
.y13_c01268{bottom:67.500000px;}
.y15_c01268{bottom:132.000000px;}
.y14_c01268{bottom:159.750000px;}
.y11_c01268{bottom:270.000000px;}
.y10_c01268{bottom:297.000000px;}
.yf_c01268{bottom:324.000000px;}
.ye_c01268{bottom:372.000000px;}
.yd_c01268{bottom:399.000000px;}
.yc_c01268{bottom:426.000000px;}
.yb_c01268{bottom:453.000000px;}
.ya_c01268{bottom:480.000000px;}
.y9_c01268{bottom:507.000000px;}
.y8_c01268{bottom:534.000000px;}
.y7_c01268{bottom:561.000000px;}
.y6_c01268{bottom:588.000000px;}
.y5_c01268{bottom:615.000000px;}
.y3_c01268{bottom:660.000000px;}
.y2_c01268{bottom:1068.000000px;}
.y1_c01268{bottom:1095.000000px;}
.y12_c01268{bottom:1194.000000px;}
.h6_c01268{height:35.781252px;}
.h4_c01268{height:41.633789px;}
.h1_c01268{height:51.257812px;}
.h7_c01268{height:53.671875px;}
.h5_c01268{height:56.074219px;}
.h2_c01268{height:57.258075px;}
.h3_c01268{height:376.500000px;}
.h0_c01268{height:1263.000000px;}
.w1_c01268{width:676.500000px;}
.w0_c01268{width:892.500000px;}
.x0_c01268{left:0.000000px;}
.x1_c01268{left:150.519750px;}
.x2_c01268{left:261.676350px;}
.x3_c01268{left:416.782800px;}
.x4_c01268{left:801.992850px;}
@media print{
.v2_c01268{vertical-align:-29.333333pt;}
.v0_c01268{vertical-align:0.000000pt;}
.v1_c01268{vertical-align:20.521067pt;}
.ls2_c01268{letter-spacing:-0.008533pt;}
.ls3_c01268{letter-spacing:-0.006400pt;}
.ls1_c01268{letter-spacing:0.000000pt;}
.ls0_c01268{letter-spacing:0.010667pt;}
.ws0_c01268{word-spacing:-11.724800pt;}
.ws1_c01268{word-spacing:-8.888889pt;}
.ws2_c01268{word-spacing:0.000000pt;}
._10_c01268{margin-left:-6.598400pt;}
._18_c01268{margin-left:-4.486400pt;}
._0_c01268{margin-left:-3.430400pt;}
._f_c01268{margin-left:-2.515200pt;}
._5_c01268{margin-left:-1.606400pt;}
._2_c01268{width:1.632000pt;}
._7_c01268{width:2.662400pt;}
._9_c01268{width:4.313600pt;}
._8_c01268{width:5.260800pt;}
._12_c01268{width:6.201600pt;}
._a_c01268{width:7.193600pt;}
._b_c01268{width:8.377600pt;}
._3_c01268{width:9.971200pt;}
._4_c01268{width:11.596800pt;}
._6_c01268{width:13.171200pt;}
._11_c01268{width:14.092800pt;}
._1_c01268{width:15.027200pt;}
._d_c01268{width:16.057600pt;}
._e_c01268{width:19.270400pt;}
._c_c01268{width:20.281600pt;}
._13_c01268{width:23.808000pt;}
._15_c01268{width:24.844800pt;}
._16_c01268{width:26.451200pt;}
._14_c01268{width:28.985600pt;}
._17_c01268{width:29.932800pt;}
.fs4_c01268{font-size:35.555557pt;}
.fs1_c01268{font-size:42.666667pt;}
.fs2_c01268{font-size:48.000000pt;}
.fs3_c01268{font-size:53.333333pt;}
.fs0_c01268{font-size:64.000000pt;}
.y0_c01268{bottom:0.000000pt;}
.y4_c01268{bottom:10.666667pt;}
.y13_c01268{bottom:60.000000pt;}
.y15_c01268{bottom:117.333333pt;}
.y14_c01268{bottom:142.000000pt;}
.y11_c01268{bottom:240.000000pt;}
.y10_c01268{bottom:264.000000pt;}
.yf_c01268{bottom:288.000000pt;}
.ye_c01268{bottom:330.666667pt;}
.yd_c01268{bottom:354.666667pt;}
.yc_c01268{bottom:378.666667pt;}
.yb_c01268{bottom:402.666667pt;}
.ya_c01268{bottom:426.666667pt;}
.y9_c01268{bottom:450.666667pt;}
.y8_c01268{bottom:474.666667pt;}
.y7_c01268{bottom:498.666667pt;}
.y6_c01268{bottom:522.666667pt;}
.y5_c01268{bottom:546.666667pt;}
.y3_c01268{bottom:586.666667pt;}
.y2_c01268{bottom:949.333333pt;}
.y1_c01268{bottom:973.333333pt;}
.y12_c01268{bottom:1061.333333pt;}
.h6_c01268{height:31.805557pt;}
.h4_c01268{height:37.007812pt;}
.h1_c01268{height:45.562500pt;}
.h7_c01268{height:47.708333pt;}
.h5_c01268{height:49.843750pt;}
.h2_c01268{height:50.896067pt;}
.h3_c01268{height:334.666667pt;}
.h0_c01268{height:1122.666667pt;}
.w1_c01268{width:601.333333pt;}
.w0_c01268{width:793.333333pt;}
.x0_c01268{left:0.000000pt;}
.x1_c01268{left:133.795333pt;}
.x2_c01268{left:232.601200pt;}
.x3_c01268{left:370.473600pt;}
.x4_c01268{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f24e1054a8b6db13fb034cca.woff2')format("woff");}.ff1_c01269{font-family:ff1_c01269;line-height:0.934082;font-style:normal;font-weight:normal;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_fe05f2021f363090c4e001e1.woff2')format("woff");}.ff2_c01269{font-family:ff2_c01269;line-height:0.755859;font-style:normal;font-weight:normal;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_5e80b9377d884a9d6f02c579.woff2')format("woff");}.ff3_c01269{font-family:ff3_c01269;line-height:1.155762;font-style:normal;font-weight:normal;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_4678ae15c81a44c76a290375.woff2')format("woff");}.ff4_c01269{font-family:ff4_c01269;line-height:1.115723;font-style:normal;font-weight:normal;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_bf3528d38a8fbcdb51e7e131.woff2')format("woff");}.ff5_c01269{font-family:ff5_c01269;line-height:0.890137;font-style: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);}
.v3_c01269{vertical-align:-33.000000px;}
.v2_c01269{vertical-align:-23.086200px;}
.v0_c01269{vertical-align:0.000000px;}
.v1_c01269{vertical-align:23.086200px;}
.ls6_c01269{letter-spacing:-3.270000px;}
.ls3_c01269{letter-spacing:-0.014400px;}
.ls7_c01269{letter-spacing:-0.012000px;}
.ls2_c01269{letter-spacing:-0.009600px;}
.ls4_c01269{letter-spacing:-0.007200px;}
.ls1_c01269{letter-spacing:0.000000px;}
.ls5_c01269{letter-spacing:0.012000px;}
.ls0_c01269{letter-spacing:5.270400px;}
.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;}
}
.ws3_c01269{word-spacing:-14.988000px;}
.ws0_c01269{word-spacing:-13.190400px;}
.ws2_c01269{word-spacing:-10.000001px;}
.ws1_c01269{word-spacing:-0.729600px;}
.ws4_c01269{word-spacing:0.000000px;}
._12_c01269{margin-left:-10.092960px;}
._11_c01269{margin-left:-6.457320px;}
._5_c01269{margin-left:-4.262400px;}
._4_c01269{margin-left:-2.412600px;}
._c_c01269{margin-left:-1.130400px;}
._a_c01269{width:1.267200px;}
._1_c01269{width:2.325600px;}
._3_c01269{width:3.443760px;}
._7_c01269{width:4.730400px;}
._10_c01269{width:5.933400px;}
._8_c01269{width:7.682400px;}
._13_c01269{width:9.055440px;}
._2_c01269{width:10.080000px;}
._b_c01269{width:11.181600px;}
._0_c01269{width:12.398400px;}
._d_c01269{width:13.521600px;}
._9_c01269{width:14.839800px;}
._6_c01269{width:16.653600px;}
._f_c01269{width:18.674040px;}
._e_c01269{width:21.327000px;}
._17_c01269{width:28.130400px;}
._15_c01269{width:30.492600px;}
._14_c01269{width:32.342400px;}
._16_c01269{width:34.537320px;}
.fc0_c01269{color:rgb(0,0,0);}
.fs3_c01269{font-size:40.000002px;}
.fs1_c01269{font-size:48.000000px;}
.fs2_c01269{font-size:60.000000px;}
.fs0_c01269{font-size:72.000000px;}
.y0_c01269{bottom:0.000000px;}
.y1a_c01269{bottom:67.500000px;}
.y21_c01269{bottom:132.000000px;}
.y20_c01269{bottom:159.750000px;}
.y1f_c01269{bottom:201.000000px;}
.y1e_c01269{bottom:228.750000px;}
.y1d_c01269{bottom:270.000000px;}
.y1c_c01269{bottom:289.500000px;}
.y1b_c01269{bottom:317.250000px;}
.y18_c01269{bottom:369.000000px;}
.y17_c01269{bottom:396.000000px;}
.y16_c01269{bottom:423.000000px;}
.y15_c01269{bottom:471.000000px;}
.y14_c01269{bottom:498.000000px;}
.y13_c01269{bottom:525.000000px;}
.y12_c01269{bottom:552.000000px;}
.y11_c01269{bottom:600.000000px;}
.y10_c01269{bottom:627.000000px;}
.yf_c01269{bottom:654.000000px;}
.ye_c01269{bottom:681.000000px;}
.yd_c01269{bottom:729.000000px;}
.yc_c01269{bottom:756.000000px;}
.yb_c01269{bottom:783.000000px;}
.ya_c01269{bottom:831.000000px;}
.y9_c01269{bottom:858.000000px;}
.y8_c01269{bottom:885.000000px;}
.y7_c01269{bottom:912.000000px;}
.y6_c01269{bottom:939.000000px;}
.y5_c01269{bottom:966.000000px;}
.y4_c01269{bottom:993.000000px;}
.y3_c01269{bottom:1041.000000px;}
.y2_c01269{bottom:1068.000000px;}
.y1_c01269{bottom:1095.000000px;}
.y19_c01269{bottom:1194.000000px;}
.h5_c01269{height:35.878908px;}
.h4_c01269{height:44.208984px;}
.h2_c01269{height:51.257812px;}
.h6_c01269{height:53.818359px;}
.h3_c01269{height:56.074219px;}
.h1_c01269{height:57.258075px;}
.h0_c01269{height:1263.000000px;}
.w0_c01269{width:892.500000px;}
.x0_c01269{left:0.000000px;}
.x1_c01269{left:65.480310px;}
@media print{
.v3_c01269{vertical-align:-29.333333pt;}
.v2_c01269{vertical-align:-20.521067pt;}
.v0_c01269{vertical-align:0.000000pt;}
.v1_c01269{vertical-align:20.521067pt;}
.ls6_c01269{letter-spacing:-2.906667pt;}
.ls3_c01269{letter-spacing:-0.012800pt;}
.ls7_c01269{letter-spacing:-0.010667pt;}
.ls2_c01269{letter-spacing:-0.008533pt;}
.ls4_c01269{letter-spacing:-0.006400pt;}
.ls1_c01269{letter-spacing:0.000000pt;}
.ls5_c01269{letter-spacing:0.010667pt;}
.ls0_c01269{letter-spacing:4.684800pt;}
.ws3_c01269{word-spacing:-13.322667pt;}
.ws0_c01269{word-spacing:-11.724800pt;}
.ws2_c01269{word-spacing:-8.888889pt;}
.ws1_c01269{word-spacing:-0.648533pt;}
.ws4_c01269{word-spacing:0.000000pt;}
._12_c01269{margin-left:-8.971520pt;}
._11_c01269{margin-left:-5.739840pt;}
._5_c01269{margin-left:-3.788800pt;}
._4_c01269{margin-left:-2.144533pt;}
._c_c01269{margin-left:-1.004800pt;}
._a_c01269{width:1.126400pt;}
._1_c01269{width:2.067200pt;}
._3_c01269{width:3.061120pt;}
._7_c01269{width:4.204800pt;}
._10_c01269{width:5.274133pt;}
._8_c01269{width:6.828800pt;}
._13_c01269{width:8.049280pt;}
._2_c01269{width:8.960000pt;}
._b_c01269{width:9.939200pt;}
._0_c01269{width:11.020800pt;}
._d_c01269{width:12.019200pt;}
._9_c01269{width:13.190933pt;}
._6_c01269{width:14.803200pt;}
._f_c01269{width:16.599147pt;}
._e_c01269{width:18.957333pt;}
._17_c01269{width:25.004800pt;}
._15_c01269{width:27.104533pt;}
._14_c01269{width:28.748800pt;}
._16_c01269{width:30.699840pt;}
.fs3_c01269{font-size:35.555557pt;}
.fs1_c01269{font-size:42.666667pt;}
.fs2_c01269{font-size:53.333333pt;}
.fs0_c01269{font-size:64.000000pt;}
.y0_c01269{bottom:0.000000pt;}
.y1a_c01269{bottom:60.000000pt;}
.y21_c01269{bottom:117.333333pt;}
.y20_c01269{bottom:142.000000pt;}
.y1f_c01269{bottom:178.666667pt;}
.y1e_c01269{bottom:203.333333pt;}
.y1d_c01269{bottom:240.000000pt;}
.y1c_c01269{bottom:257.333333pt;}
.y1b_c01269{bottom:282.000000pt;}
.y18_c01269{bottom:328.000000pt;}
.y17_c01269{bottom:352.000000pt;}
.y16_c01269{bottom:376.000000pt;}
.y15_c01269{bottom:418.666667pt;}
.y14_c01269{bottom:442.666667pt;}
.y13_c01269{bottom:466.666667pt;}
.y12_c01269{bottom:490.666667pt;}
.y11_c01269{bottom:533.333333pt;}
.y10_c01269{bottom:557.333333pt;}
.yf_c01269{bottom:581.333333pt;}
.ye_c01269{bottom:605.333333pt;}
.yd_c01269{bottom:648.000000pt;}
.yc_c01269{bottom:672.000000pt;}
.yb_c01269{bottom:696.000000pt;}
.ya_c01269{bottom:738.666667pt;}
.y9_c01269{bottom:762.666667pt;}
.y8_c01269{bottom:786.666667pt;}
.y7_c01269{bottom:810.666667pt;}
.y6_c01269{bottom:834.666667pt;}
.y5_c01269{bottom:858.666667pt;}
.y4_c01269{bottom:882.666667pt;}
.y3_c01269{bottom:925.333333pt;}
.y2_c01269{bottom:949.333333pt;}
.y1_c01269{bottom:973.333333pt;}
.y19_c01269{bottom:1061.333333pt;}
.h5_c01269{height:31.892363pt;}
.h4_c01269{height:39.296875pt;}
.h2_c01269{height:45.562500pt;}
.h6_c01269{height:47.838542pt;}
.h3_c01269{height:49.843750pt;}
.h1_c01269{height:50.896067pt;}
.h0_c01269{height:1122.666667pt;}
.w0_c01269{width:793.333333pt;}
.x0_c01269{left:0.000000pt;}
.x1_c01269{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1819f2e57a655163b6d20a1c.woff2')format("woff");}.ff1_c01270{font-family:ff1_c01270;line-height:1.132812;font-style:normal;font-weight:normal;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_5d5d7f8329cc3225e4f78f07.woff2')format("woff");}.ff2_c01270{font-family:ff2_c01270;line-height:0.892578;font-style:normal;font-weight:normal;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_30944ee7cde325f407d69e0a.woff2')format("woff");}.ff3_c01270{font-family:ff3_c01270;line-height:0.934082;font-style:normal;font-weight:normal;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_e85336b59f9a9f821338ac37.woff2')format("woff");}.ff4_c01270{font-family:ff4_c01270;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01270;src:url('chunks/assets/font_90f8d622b0f523384d7e5e93.woff2')format("woff");}.ff5_c01270{font-family:ff5_c01270;line-height:1.114746;font-style:normal;font-weight: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_c01270;src:url('chunks/assets/font_9d2972c2ae914feb4813dd6f.woff2')format("woff");}.ff6_c01270{font-family:ff6_c01270;line-height:0.890137;font-style: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);}
.m1_c01270{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3_c01270{vertical-align:-33.000000px;}
.v2_c01270{vertical-align:-23.086200px;}
.v0_c01270{vertical-align:0.000000px;}
.v1_c01270{vertical-align:23.086200px;}
.ls3_c01270{letter-spacing:-0.009600px;}
.ls4_c01270{letter-spacing:-0.007200px;}
.ls1_c01270{letter-spacing:0.000000px;}
.ls2_c01270{letter-spacing:0.007200px;}
.ls0_c01270{letter-spacing:0.012000px;}
.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:-10.000001px;}
.ws2_c01270{word-spacing:0.000000px;}
.ws0_c01270{word-spacing:4.139400px;}
._c_c01270{margin-left:-10.432800px;}
._10_c01270{margin-left:-6.969600px;}
._11_c01270{margin-left:-5.032800px;}
._4_c01270{margin-left:-3.765600px;}
._f_c01270{margin-left:-2.325600px;}
._6_c01270{margin-left:-1.231200px;}
._2_c01270{width:1.504800px;}
._1_c01270{width:3.024000px;}
._3_c01270{width:4.255200px;}
._0_c01270{width:5.392800px;}
._7_c01270{width:6.638400px;}
._e_c01270{width:7.776000px;}
._5_c01270{width:9.180000px;}
._d_c01270{width:11.030400px;}
._a_c01270{width:12.290400px;}
._8_c01270{width:13.852800px;}
._b_c01270{width:15.314400px;}
._9_c01270{width:16.545600px;}
.fc0_c01270{color:rgb(0,0,0);}
.fs4_c01270{font-size:40.000002px;}
.fs2_c01270{font-size:48.000000px;}
.fs0_c01270{font-size:54.000000px;}
.fs3_c01270{font-size:60.000000px;}
.fs1_c01270{font-size:72.000000px;}
.y0_c01270{bottom:0.000000px;}
.y2_c01270{bottom:12.000000px;}
.y13_c01270{bottom:67.500000px;}
.y14_c01270{bottom:140.250000px;}
.y11_c01270{bottom:192.000000px;}
.y10_c01270{bottom:219.000000px;}
.yf_c01270{bottom:246.000000px;}
.ye_c01270{bottom:273.000000px;}
.yd_c01270{bottom:300.000000px;}
.yc_c01270{bottom:327.000000px;}
.yb_c01270{bottom:354.000000px;}
.ya_c01270{bottom:402.000000px;}
.y9_c01270{bottom:429.000000px;}
.y8_c01270{bottom:456.000000px;}
.y7_c01270{bottom:483.000000px;}
.y6_c01270{bottom:510.000000px;}
.y5_c01270{bottom:537.000000px;}
.y4_c01270{bottom:564.000000px;}
.y3_c01270{bottom:610.500000px;}
.y1_c01270{bottom:676.500000px;}
.y12_c01270{bottom:1194.000000px;}
.h7_c01270{height:35.878908px;}
.h2_c01270{height:50.756836px;}
.h4_c01270{height:51.257812px;}
.h3_c01270{height:51.539062px;}
.h6_c01270{height:56.074219px;}
.h5_c01270{height:57.258075px;}
.h1_c01270{height:436.500000px;}
.h0_c01270{height:1263.000000px;}
.w1_c01270{width:676.500000px;}
.w0_c01270{width:892.500000px;}
.x0_c01270{left:0.000000px;}
.x1_c01270{left:150.000000px;}
.x2_c01270{left:191.190300px;}
.x3_c01270{left:416.782800px;}
.x4_c01270{left:801.992850px;}
@media print{
.v3_c01270{vertical-align:-29.333333pt;}
.v2_c01270{vertical-align:-20.521067pt;}
.v0_c01270{vertical-align:0.000000pt;}
.v1_c01270{vertical-align:20.521067pt;}
.ls3_c01270{letter-spacing:-0.008533pt;}
.ls4_c01270{letter-spacing:-0.006400pt;}
.ls1_c01270{letter-spacing:0.000000pt;}
.ls2_c01270{letter-spacing:0.006400pt;}
.ls0_c01270{letter-spacing:0.010667pt;}
.ws1_c01270{word-spacing:-8.888889pt;}
.ws2_c01270{word-spacing:0.000000pt;}
.ws0_c01270{word-spacing:3.679467pt;}
._c_c01270{margin-left:-9.273600pt;}
._10_c01270{margin-left:-6.195200pt;}
._11_c01270{margin-left:-4.473600pt;}
._4_c01270{margin-left:-3.347200pt;}
._f_c01270{margin-left:-2.067200pt;}
._6_c01270{margin-left:-1.094400pt;}
._2_c01270{width:1.337600pt;}
._1_c01270{width:2.688000pt;}
._3_c01270{width:3.782400pt;}
._0_c01270{width:4.793600pt;}
._7_c01270{width:5.900800pt;}
._e_c01270{width:6.912000pt;}
._5_c01270{width:8.160000pt;}
._d_c01270{width:9.804800pt;}
._a_c01270{width:10.924800pt;}
._8_c01270{width:12.313600pt;}
._b_c01270{width:13.612800pt;}
._9_c01270{width:14.707200pt;}
.fs4_c01270{font-size:35.555557pt;}
.fs2_c01270{font-size:42.666667pt;}
.fs0_c01270{font-size:48.000000pt;}
.fs3_c01270{font-size:53.333333pt;}
.fs1_c01270{font-size:64.000000pt;}
.y0_c01270{bottom:0.000000pt;}
.y2_c01270{bottom:10.666667pt;}
.y13_c01270{bottom:60.000000pt;}
.y14_c01270{bottom:124.666667pt;}
.y11_c01270{bottom:170.666667pt;}
.y10_c01270{bottom:194.666667pt;}
.yf_c01270{bottom:218.666667pt;}
.ye_c01270{bottom:242.666667pt;}
.yd_c01270{bottom:266.666667pt;}
.yc_c01270{bottom:290.666667pt;}
.yb_c01270{bottom:314.666667pt;}
.ya_c01270{bottom:357.333333pt;}
.y9_c01270{bottom:381.333333pt;}
.y8_c01270{bottom:405.333333pt;}
.y7_c01270{bottom:429.333333pt;}
.y6_c01270{bottom:453.333333pt;}
.y5_c01270{bottom:477.333333pt;}
.y4_c01270{bottom:501.333333pt;}
.y3_c01270{bottom:542.666667pt;}
.y1_c01270{bottom:601.333333pt;}
.y12_c01270{bottom:1061.333333pt;}
.h7_c01270{height:31.892363pt;}
.h2_c01270{height:45.117188pt;}
.h4_c01270{height:45.562500pt;}
.h3_c01270{height:45.812500pt;}
.h6_c01270{height:49.843750pt;}
.h5_c01270{height:50.896067pt;}
.h1_c01270{height:388.000000pt;}
.h0_c01270{height:1122.666667pt;}
.w1_c01270{width:601.333333pt;}
.w0_c01270{width:793.333333pt;}
.x0_c01270{left:0.000000pt;}
.x1_c01270{left:133.333333pt;}
.x2_c01270{left:169.946933pt;}
.x3_c01270{left:370.473600pt;}
.x4_c01270{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_44e7ac99ce7db8cafa193004.woff2')format("woff");}.ff1_c01271{font-family:ff1_c01271;line-height:0.976074;font-style:normal;font-weight:normal;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_20c52bb036cf8846622c420d.woff2')format("woff");}.ff2_c01271{font-family:ff2_c01271;line-height:0.931152;font-style:normal;font-weight:normal;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_7fcb2202ee8a0e770313c745.woff2')format("woff");}.ff3_c01271{font-family:ff3_c01271;line-height:0.756836;font-style:normal;font-weight:normal;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_7a7183796ca12db9f413f06a.woff2')format("woff");}.ff4_c01271{font-family:ff4_c01271;line-height:1.155762;font-style: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);}
.v0_c01271{vertical-align:0.000000px;}
.ls0_c01271{letter-spacing:0.000000px;}
.ls2_c01271{letter-spacing:0.012000px;}
.ls1_c01271{letter-spacing:0.021600px;}
.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;}
}
.ws0_c01271{word-spacing:0.000000px;}
._8_c01271{margin-left:-3.715200px;}
._6_c01271{margin-left:-1.137600px;}
._2_c01271{width:1.000800px;}
._4_c01271{width:3.463200px;}
._0_c01271{width:4.896000px;}
._1_c01271{width:9.986400px;}
._5_c01271{width:12.333600px;}
._3_c01271{width:13.960800px;}
._7_c01271{width:16.970400px;}
._a_c01271{width:18.338400px;}
._b_c01271{width:21.765600px;}
._d_c01271{width:23.256000px;}
._c_c01271{width:24.429600px;}
._9_c01271{width:25.488000px;}
.fc0_c01271{color:rgb(0,0,0);}
.fs0_c01271{font-size:54.000000px;}
.fs2_c01271{font-size:60.000000px;}
.fs1_c01271{font-size:72.000000px;}
.y0_c01271{bottom:0.000000px;}
.y2_c01271{bottom:12.000000px;}
.y7_c01271{bottom:67.500000px;}
.y5_c01271{bottom:141.000000px;}
.y4_c01271{bottom:168.000000px;}
.y3_c01271{bottom:213.000000px;}
.y1_c01271{bottom:621.000000px;}
.y6_c01271{bottom:1194.000000px;}
.h2_c01271{height:42.292969px;}
.h6_c01271{height:44.208984px;}
.h4_c01271{height:51.187500px;}
.h5_c01271{height:56.074219px;}
.h3_c01271{height:379.500000px;}
.h1_c01271{height:492.000000px;}
.h0_c01271{height:1263.000000px;}
.w1_c01271{width:676.500000px;}
.w0_c01271{width:892.500000px;}
.x0_c01271{left:0.000000px;}
.x1_c01271{left:66.000000px;}
.x3_c01271{left:175.729200px;}
.x2_c01271{left:269.533800px;}
@media print{
.v0_c01271{vertical-align:0.000000pt;}
.ls0_c01271{letter-spacing:0.000000pt;}
.ls2_c01271{letter-spacing:0.010667pt;}
.ls1_c01271{letter-spacing:0.019200pt;}
.ws0_c01271{word-spacing:0.000000pt;}
._8_c01271{margin-left:-3.302400pt;}
._6_c01271{margin-left:-1.011200pt;}
._2_c01271{width:0.889600pt;}
._4_c01271{width:3.078400pt;}
._0_c01271{width:4.352000pt;}
._1_c01271{width:8.876800pt;}
._5_c01271{width:10.963200pt;}
._3_c01271{width:12.409600pt;}
._7_c01271{width:15.084800pt;}
._a_c01271{width:16.300800pt;}
._b_c01271{width:19.347200pt;}
._d_c01271{width:20.672000pt;}
._c_c01271{width:21.715200pt;}
._9_c01271{width:22.656000pt;}
.fs0_c01271{font-size:48.000000pt;}
.fs2_c01271{font-size:53.333333pt;}
.fs1_c01271{font-size:64.000000pt;}
.y0_c01271{bottom:0.000000pt;}
.y2_c01271{bottom:10.666667pt;}
.y7_c01271{bottom:60.000000pt;}
.y5_c01271{bottom:125.333333pt;}
.y4_c01271{bottom:149.333333pt;}
.y3_c01271{bottom:189.333333pt;}
.y1_c01271{bottom:552.000000pt;}
.y6_c01271{bottom:1061.333333pt;}
.h2_c01271{height:37.593750pt;}
.h6_c01271{height:39.296875pt;}
.h4_c01271{height:45.500000pt;}
.h5_c01271{height:49.843750pt;}
.h3_c01271{height:337.333333pt;}
.h1_c01271{height:437.333333pt;}
.h0_c01271{height:1122.666667pt;}
.w1_c01271{width:601.333333pt;}
.w0_c01271{width:793.333333pt;}
.x0_c01271{left:0.000000pt;}
.x1_c01271{left:58.666667pt;}
.x3_c01271{left:156.203733pt;}
.x2_c01271{left:239.585600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_10e21b872ee4d14aaf203628.woff2')format("woff");}.ff1_c01272{font-family:ff1_c01272;line-height:1.163086;font-style:normal;font-weight:normal;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_14dbc205d8e01ec5929244d9.woff2')format("woff");}.ff2_c01272{font-family:ff2_c01272;line-height:0.795410;font-style:normal;font-weight:normal;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_8952e7c89d54aa42fc8542ec.woff2')format("woff");}.ff3_c01272{font-family:ff3_c01272;line-height:0.932129;font-style:normal;font-weight:normal;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_8ffa44a499df2f9f81c0e093.woff2')format("woff");}.ff4_c01272{font-family:ff4_c01272;line-height:1.155762;font-style:normal;font-weight:normal;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_08f0d54e5eea817ff97934ee.woff2')format("woff");}.ff5_c01272{font-family:ff5_c01272;line-height:1.114746;font-style:normal;font-weight: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_c01272;src:url('chunks/assets/font_fa71b43a507bb924bf3019dd.woff2')format("woff");}.ff6_c01272{font-family:ff6_c01272;line-height:0.890137;font-style: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);}
.m1_c01272{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c01272{vertical-align:-33.000000px;}
.v0_c01272{vertical-align:0.000000px;}
.v1_c01272{vertical-align:23.086200px;}
.ls3_c01272{letter-spacing:-0.014400px;}
.ls2_c01272{letter-spacing:-0.009600px;}
.ls1_c01272{letter-spacing:0.000000px;}
.ls0_c01272{letter-spacing:0.012000px;}
.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;}
}
.ws1_c01272{word-spacing:-19.800000px;}
.ws3_c01272{word-spacing:-10.000001px;}
.ws2_c01272{word-spacing:-0.057600px;}
.ws4_c01272{word-spacing:0.000000px;}
.ws0_c01272{word-spacing:1.462800px;}
._9_c01272{margin-left:-4.492800px;}
._5_c01272{margin-left:-3.160800px;}
._7_c01272{margin-left:-2.138400px;}
._3_c01272{width:1.569600px;}
._0_c01272{width:3.643200px;}
._c_c01272{width:4.716000px;}
._b_c01272{width:6.717600px;}
._a_c01272{width:8.294400px;}
._1_c01272{width:9.453600px;}
._4_c01272{width:11.404800px;}
._2_c01272{width:13.089600px;}
._8_c01272{width:14.212800px;}
._6_c01272{width:16.200000px;}
._d_c01272{width:18.224400px;}
._e_c01272{width:23.553600px;}
._f_c01272{width:25.226400px;}
.fc0_c01272{color:rgb(0,0,0);}
.fs4_c01272{font-size:40.000002px;}
.fs1_c01272{font-size:48.000000px;}
.fs2_c01272{font-size:54.000000px;}
.fs3_c01272{font-size:60.000000px;}
.fs0_c01272{font-size:72.000000px;}
.y0_c01272{bottom:0.000000px;}
.y7_c01272{bottom:12.000000px;}
.yc_c01272{bottom:67.500000px;}
.yd_c01272{bottom:140.250000px;}
.ya_c01272{bottom:201.000000px;}
.y9_c01272{bottom:228.000000px;}
.y8_c01272{bottom:255.000000px;}
.y6_c01272{bottom:300.000000px;}
.y5_c01272{bottom:987.000000px;}
.y4_c01272{bottom:1014.000000px;}
.y3_c01272{bottom:1041.000000px;}
.y2_c01272{bottom:1068.000000px;}
.y1_c01272{bottom:1095.000000px;}
.yb_c01272{bottom:1194.000000px;}
.h6_c01272{height:35.878908px;}
.h4_c01272{height:42.292969px;}
.h5_c01272{height:56.074219px;}
.h1_c01272{height:67.746094px;}
.h2_c01272{height:68.250262px;}
.h3_c01272{height:655.500000px;}
.h0_c01272{height:1263.000000px;}
.w1_c01272{width:676.500000px;}
.w0_c01272{width:892.500000px;}
.x0_c01272{left:0.000000px;}
.x1_c01272{left:150.519750px;}
.x2_c01272{left:240.408000px;}
.x3_c01272{left:416.782800px;}
.x4_c01272{left:801.992850px;}
@media print{
.v2_c01272{vertical-align:-29.333333pt;}
.v0_c01272{vertical-align:0.000000pt;}
.v1_c01272{vertical-align:20.521067pt;}
.ls3_c01272{letter-spacing:-0.012800pt;}
.ls2_c01272{letter-spacing:-0.008533pt;}
.ls1_c01272{letter-spacing:0.000000pt;}
.ls0_c01272{letter-spacing:0.010667pt;}
.ws1_c01272{word-spacing:-17.600000pt;}
.ws3_c01272{word-spacing:-8.888889pt;}
.ws2_c01272{word-spacing:-0.051200pt;}
.ws4_c01272{word-spacing:0.000000pt;}
.ws0_c01272{word-spacing:1.300267pt;}
._9_c01272{margin-left:-3.993600pt;}
._5_c01272{margin-left:-2.809600pt;}
._7_c01272{margin-left:-1.900800pt;}
._3_c01272{width:1.395200pt;}
._0_c01272{width:3.238400pt;}
._c_c01272{width:4.192000pt;}
._b_c01272{width:5.971200pt;}
._a_c01272{width:7.372800pt;}
._1_c01272{width:8.403200pt;}
._4_c01272{width:10.137600pt;}
._2_c01272{width:11.635200pt;}
._8_c01272{width:12.633600pt;}
._6_c01272{width:14.400000pt;}
._d_c01272{width:16.199467pt;}
._e_c01272{width:20.936533pt;}
._f_c01272{width:22.423467pt;}
.fs4_c01272{font-size:35.555557pt;}
.fs1_c01272{font-size:42.666667pt;}
.fs2_c01272{font-size:48.000000pt;}
.fs3_c01272{font-size:53.333333pt;}
.fs0_c01272{font-size:64.000000pt;}
.y0_c01272{bottom:0.000000pt;}
.y7_c01272{bottom:10.666667pt;}
.yc_c01272{bottom:60.000000pt;}
.yd_c01272{bottom:124.666667pt;}
.ya_c01272{bottom:178.666667pt;}
.y9_c01272{bottom:202.666667pt;}
.y8_c01272{bottom:226.666667pt;}
.y6_c01272{bottom:266.666667pt;}
.y5_c01272{bottom:877.333333pt;}
.y4_c01272{bottom:901.333333pt;}
.y3_c01272{bottom:925.333333pt;}
.y2_c01272{bottom:949.333333pt;}
.y1_c01272{bottom:973.333333pt;}
.yb_c01272{bottom:1061.333333pt;}
.h6_c01272{height:31.892363pt;}
.h4_c01272{height:37.593750pt;}
.h5_c01272{height:49.843750pt;}
.h1_c01272{height:60.218750pt;}
.h2_c01272{height:60.666900pt;}
.h3_c01272{height:582.666667pt;}
.h0_c01272{height:1122.666667pt;}
.w1_c01272{width:601.333333pt;}
.w0_c01272{width:793.333333pt;}
.x0_c01272{left:0.000000pt;}
.x1_c01272{left:133.795333pt;}
.x2_c01272{left:213.696000pt;}
.x3_c01272{left:370.473600pt;}
.x4_c01272{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c299b3ede8dadec3d1a6f558.woff2')format("woff");}.ff1_c01273{font-family:ff1_c01273;line-height:0.795410;font-style:normal;font-weight:normal;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_611d96141601ea89cba9a428.woff2')format("woff");}.ff2_c01273{font-family:ff2_c01273;line-height:0.755859;font-style:normal;font-weight:normal;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_66047cdef7b48f6f295cef05.woff2')format("woff");}.ff3_c01273{font-family:ff3_c01273;line-height:1.155762;font-style: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);}
.v0_c01273{vertical-align:0.000000px;}
.ls1_c01273{letter-spacing:0.000000px;}
.ls2_c01273{letter-spacing:0.012000px;}
.ls0_c01273{letter-spacing:0.021600px;}
.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;}
}
.ws0_c01273{word-spacing:0.000000px;}
._0_c01273{margin-left:-3.216000px;}
.fc0_c01273{color:rgb(0,0,0);}
.fs0_c01273{font-size:54.000000px;}
.fs1_c01273{font-size:60.000000px;}
.y0_c01273{bottom:0.000000px;}
.y2_c01273{bottom:12.000000px;}
.y5_c01273{bottom:67.500000px;}
.y3_c01273{bottom:217.500000px;}
.y1_c01273{bottom:696.000000px;}
.y4_c01273{bottom:1194.000000px;}
.h2_c01273{height:42.292969px;}
.h5_c01273{height:44.208984px;}
.h4_c01273{height:56.074219px;}
.h1_c01273{height:417.000000px;}
.h3_c01273{height:450.000000px;}
.h0_c01273{height:1263.000000px;}
.w1_c01273{width:676.500000px;}
.w0_c01273{width:892.500000px;}
.x0_c01273{left:0.000000px;}
.x1_c01273{left:66.000000px;}
.x2_c01273{left:188.102100px;}
.x3_c01273{left:232.131900px;}
@media print{
.v0_c01273{vertical-align:0.000000pt;}
.ls1_c01273{letter-spacing:0.000000pt;}
.ls2_c01273{letter-spacing:0.010667pt;}
.ls0_c01273{letter-spacing:0.019200pt;}
.ws0_c01273{word-spacing:0.000000pt;}
._0_c01273{margin-left:-2.858667pt;}
.fs0_c01273{font-size:48.000000pt;}
.fs1_c01273{font-size:53.333333pt;}
.y0_c01273{bottom:0.000000pt;}
.y2_c01273{bottom:10.666667pt;}
.y5_c01273{bottom:60.000000pt;}
.y3_c01273{bottom:193.333333pt;}
.y1_c01273{bottom:618.666667pt;}
.y4_c01273{bottom:1061.333333pt;}
.h2_c01273{height:37.593750pt;}
.h5_c01273{height:39.296875pt;}
.h4_c01273{height:49.843750pt;}
.h1_c01273{height:370.666667pt;}
.h3_c01273{height:400.000000pt;}
.h0_c01273{height:1122.666667pt;}
.w1_c01273{width:601.333333pt;}
.w0_c01273{width:793.333333pt;}
.x0_c01273{left:0.000000pt;}
.x1_c01273{left:58.666667pt;}
.x2_c01273{left:167.201867pt;}
.x3_c01273{left:206.339467pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ad679a500c7b85a546d09eb9.woff2')format("woff");}.ff1_c01274{font-family:ff1_c01274;line-height:0.976074;font-style:normal;font-weight:normal;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_2bf3e6d7945d7d982ee16319.woff2')format("woff");}.ff2_c01274{font-family:ff2_c01274;line-height:0.934082;font-style:normal;font-weight:normal;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_8809811ff56d7415d081ee64.woff2')format("woff");}.ff3_c01274{font-family:ff3_c01274;line-height:1.155762;font-style: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);}
.v0_c01274{vertical-align:0.000000px;}
.ls2_c01274{letter-spacing:0.000000px;}
.ls0_c01274{letter-spacing:0.012000px;}
.ls1_c01274{letter-spacing:0.021600px;}
.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;}
}
.ws0_c01274{word-spacing:0.000000px;}
._1_c01274{margin-left:-3.355200px;}
._3_c01274{margin-left:-2.210400px;}
._4_c01274{width:1.742400px;}
._5_c01274{width:3.002400px;}
._2_c01274{width:4.003200px;}
._0_c01274{width:5.133600px;}
._6_c01274{width:6.998400px;}
._7_c01274{width:8.078400px;}
._9_c01274{width:9.115200px;}
._8_c01274{width:11.404800px;}
.fc0_c01274{color:rgb(0,0,0);}
.fs0_c01274{font-size:54.000000px;}
.fs2_c01274{font-size:60.000000px;}
.fs1_c01274{font-size:72.000000px;}
.y0_c01274{bottom:0.000000px;}
.y2_c01274{bottom:12.000000px;}
.y8_c01274{bottom:67.500000px;}
.y6_c01274{bottom:256.500000px;}
.y5_c01274{bottom:283.500000px;}
.y4_c01274{bottom:310.500000px;}
.y3_c01274{bottom:337.500000px;}
.y1_c01274{bottom:382.500000px;}
.y7_c01274{bottom:1194.000000px;}
.h2_c01274{height:42.292969px;}
.h3_c01274{height:51.257812px;}
.h4_c01274{height:56.074219px;}
.h1_c01274{height:730.500000px;}
.h0_c01274{height:1263.000000px;}
.w1_c01274{width:676.500000px;}
.w0_c01274{width:892.500000px;}
.x0_c01274{left:0.000000px;}
.x1_c01274{left:150.000000px;}
.x2_c01274{left:187.561500px;}
.x3_c01274{left:416.782800px;}
.x4_c01274{left:801.992850px;}
@media print{
.v0_c01274{vertical-align:0.000000pt;}
.ls2_c01274{letter-spacing:0.000000pt;}
.ls0_c01274{letter-spacing:0.010667pt;}
.ls1_c01274{letter-spacing:0.019200pt;}
.ws0_c01274{word-spacing:0.000000pt;}
._1_c01274{margin-left:-2.982400pt;}
._3_c01274{margin-left:-1.964800pt;}
._4_c01274{width:1.548800pt;}
._5_c01274{width:2.668800pt;}
._2_c01274{width:3.558400pt;}
._0_c01274{width:4.563200pt;}
._6_c01274{width:6.220800pt;}
._7_c01274{width:7.180800pt;}
._9_c01274{width:8.102400pt;}
._8_c01274{width:10.137600pt;}
.fs0_c01274{font-size:48.000000pt;}
.fs2_c01274{font-size:53.333333pt;}
.fs1_c01274{font-size:64.000000pt;}
.y0_c01274{bottom:0.000000pt;}
.y2_c01274{bottom:10.666667pt;}
.y8_c01274{bottom:60.000000pt;}
.y6_c01274{bottom:228.000000pt;}
.y5_c01274{bottom:252.000000pt;}
.y4_c01274{bottom:276.000000pt;}
.y3_c01274{bottom:300.000000pt;}
.y1_c01274{bottom:340.000000pt;}
.y7_c01274{bottom:1061.333333pt;}
.h2_c01274{height:37.593750pt;}
.h3_c01274{height:45.562500pt;}
.h4_c01274{height:49.843750pt;}
.h1_c01274{height:649.333333pt;}
.h0_c01274{height:1122.666667pt;}
.w1_c01274{width:601.333333pt;}
.w0_c01274{width:793.333333pt;}
.x0_c01274{left:0.000000pt;}
.x1_c01274{left:133.333333pt;}
.x2_c01274{left:166.721333pt;}
.x3_c01274{left:370.473600pt;}
.x4_c01274{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0b1593c1f1dcde5731332d18.woff2')format("woff");}.ff1_c01275{font-family:ff1_c01275;line-height:0.901855;font-style:normal;font-weight:normal;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_a4489194aa6e624f9e871f82.woff2')format("woff");}.ff2_c01275{font-family:ff2_c01275;line-height:0.934082;font-style:normal;font-weight:normal;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_308abc3d1cb679d6375e2024.woff2')format("woff");}.ff3_c01275{font-family:ff3_c01275;line-height:1.010254;font-style:normal;font-weight:normal;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_c88f07832c2d0ea3246abab4.woff2')format("woff");}.ff4_c01275{font-family:ff4_c01275;line-height:0.755859;font-style:normal;font-weight:normal;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_e7746979228ffd90a5aab052.woff2')format("woff");}.ff5_c01275{font-family:ff5_c01275;line-height:1.155762;font-style: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);}
.v0_c01275{vertical-align:0.000000px;}
.ls2_c01275{letter-spacing:-0.014400px;}
.ls1_c01275{letter-spacing:0.000000px;}
.ls3_c01275{letter-spacing:0.012000px;}
.ls0_c01275{letter-spacing:1.785600px;}
.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;}
}
.ws0_c01275{word-spacing:0.000000px;}
._1_c01275{margin-left:-9.655200px;}
._8_c01275{margin-left:-8.478720px;}
._1a_c01275{margin-left:-6.624000px;}
._d_c01275{margin-left:-5.274000px;}
._f_c01275{margin-left:-3.492000px;}
._9_c01275{margin-left:-2.296200px;}
._0_c01275{margin-left:-1.260000px;}
._5_c01275{width:1.098000px;}
._6_c01275{width:2.124000px;}
._3_c01275{width:3.504000px;}
._16_c01275{width:5.263200px;}
._17_c01275{width:6.681000px;}
._b_c01275{width:7.815600px;}
._a_c01275{width:8.949600px;}
._1d_c01275{width:10.107600px;}
._c_c01275{width:11.238600px;}
._19_c01275{width:12.265200px;}
._e_c01275{width:13.284000px;}
._1c_c01275{width:15.169800px;}
._18_c01275{width:16.343400px;}
._1f_c01275{width:19.056600px;}
._1b_c01275{width:20.109600px;}
._1e_c01275{width:21.814080px;}
._4_c01275{width:22.992000px;}
._7_c01275{width:24.360360px;}
._2_c01275{width:26.496000px;}
._13_c01275{width:29.868000px;}
._14_c01275{width:33.408000px;}
._15_c01275{width:34.596000px;}
._12_c01275{width:35.668200px;}
._10_c01275{width:36.720000px;}
._11_c01275{width:38.538000px;}
.fc0_c01275{color:rgb(0,0,0);}
.fs1_c01275{font-size:60.000000px;}
.fs0_c01275{font-size:72.000000px;}
.y0_c01275{bottom:0.000000px;}
.y1a_c01275{bottom:67.500000px;}
.y18_c01275{bottom:478.500000px;}
.y17_c01275{bottom:499.500000px;}
.y16_c01275{bottom:520.500000px;}
.y15_c01275{bottom:541.500000px;}
.y14_c01275{bottom:562.500000px;}
.y13_c01275{bottom:583.500000px;}
.y12_c01275{bottom:604.500000px;}
.y11_c01275{bottom:625.500000px;}
.y10_c01275{bottom:646.500000px;}
.yf_c01275{bottom:688.500000px;}
.ye_c01275{bottom:709.500000px;}
.yd_c01275{bottom:730.500000px;}
.yc_c01275{bottom:751.500000px;}
.yb_c01275{bottom:772.500000px;}
.ya_c01275{bottom:793.500000px;}
.y9_c01275{bottom:814.500000px;}
.y8_c01275{bottom:835.500000px;}
.y7_c01275{bottom:856.500000px;}
.y6_c01275{bottom:877.500000px;}
.y5_c01275{bottom:921.000000px;}
.y4_c01275{bottom:942.000000px;}
.y3_c01275{bottom:978.000000px;}
.y2_c01275{bottom:1017.000000px;}
.y1_c01275{bottom:1095.000000px;}
.y19_c01275{bottom:1194.000000px;}
.h4_c01275{height:42.714844px;}
.h3_c01275{height:42.832031px;}
.h7_c01275{height:44.208984px;}
.h1_c01275{height:51.257812px;}
.h2_c01275{height:51.398438px;}
.h5_c01275{height:52.417969px;}
.h6_c01275{height:56.074219px;}
.h0_c01275{height:1263.000000px;}
.w0_c01275{width:892.500000px;}
.x0_c01275{left:0.000000px;}
.x1_c01275{left:65.480310px;}
@media print{
.v0_c01275{vertical-align:0.000000pt;}
.ls2_c01275{letter-spacing:-0.012800pt;}
.ls1_c01275{letter-spacing:0.000000pt;}
.ls3_c01275{letter-spacing:0.010667pt;}
.ls0_c01275{letter-spacing:1.587200pt;}
.ws0_c01275{word-spacing:0.000000pt;}
._1_c01275{margin-left:-8.582400pt;}
._8_c01275{margin-left:-7.536640pt;}
._1a_c01275{margin-left:-5.888000pt;}
._d_c01275{margin-left:-4.688000pt;}
._f_c01275{margin-left:-3.104000pt;}
._9_c01275{margin-left:-2.041067pt;}
._0_c01275{margin-left:-1.120000pt;}
._5_c01275{width:0.976000pt;}
._6_c01275{width:1.888000pt;}
._3_c01275{width:3.114667pt;}
._16_c01275{width:4.678400pt;}
._17_c01275{width:5.938667pt;}
._b_c01275{width:6.947200pt;}
._a_c01275{width:7.955200pt;}
._1d_c01275{width:8.984533pt;}
._c_c01275{width:9.989867pt;}
._19_c01275{width:10.902400pt;}
._e_c01275{width:11.808000pt;}
._1c_c01275{width:13.484267pt;}
._18_c01275{width:14.527467pt;}
._1f_c01275{width:16.939200pt;}
._1b_c01275{width:17.875200pt;}
._1e_c01275{width:19.390293pt;}
._4_c01275{width:20.437333pt;}
._7_c01275{width:21.653653pt;}
._2_c01275{width:23.552000pt;}
._13_c01275{width:26.549333pt;}
._14_c01275{width:29.696000pt;}
._15_c01275{width:30.752000pt;}
._12_c01275{width:31.705067pt;}
._10_c01275{width:32.640000pt;}
._11_c01275{width:34.256000pt;}
.fs1_c01275{font-size:53.333333pt;}
.fs0_c01275{font-size:64.000000pt;}
.y0_c01275{bottom:0.000000pt;}
.y1a_c01275{bottom:60.000000pt;}
.y18_c01275{bottom:425.333333pt;}
.y17_c01275{bottom:444.000000pt;}
.y16_c01275{bottom:462.666667pt;}
.y15_c01275{bottom:481.333333pt;}
.y14_c01275{bottom:500.000000pt;}
.y13_c01275{bottom:518.666667pt;}
.y12_c01275{bottom:537.333333pt;}
.y11_c01275{bottom:556.000000pt;}
.y10_c01275{bottom:574.666667pt;}
.yf_c01275{bottom:612.000000pt;}
.ye_c01275{bottom:630.666667pt;}
.yd_c01275{bottom:649.333333pt;}
.yc_c01275{bottom:668.000000pt;}
.yb_c01275{bottom:686.666667pt;}
.ya_c01275{bottom:705.333333pt;}
.y9_c01275{bottom:724.000000pt;}
.y8_c01275{bottom:742.666667pt;}
.y7_c01275{bottom:761.333333pt;}
.y6_c01275{bottom:780.000000pt;}
.y5_c01275{bottom:818.666667pt;}
.y4_c01275{bottom:837.333333pt;}
.y3_c01275{bottom:869.333333pt;}
.y2_c01275{bottom:904.000000pt;}
.y1_c01275{bottom:973.333333pt;}
.y19_c01275{bottom:1061.333333pt;}
.h4_c01275{height:37.968750pt;}
.h3_c01275{height:38.072917pt;}
.h7_c01275{height:39.296875pt;}
.h1_c01275{height:45.562500pt;}
.h2_c01275{height:45.687500pt;}
.h5_c01275{height:46.593750pt;}
.h6_c01275{height:49.843750pt;}
.h0_c01275{height:1122.666667pt;}
.w0_c01275{width:793.333333pt;}
.x0_c01275{left:0.000000pt;}
.x1_c01275{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_69231b14cbfccfad39623fe7.woff2')format("woff");}.ff1_c01276{font-family:ff1_c01276;line-height:0.884766;font-style:normal;font-weight:normal;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_be80268ded3ca298dee47b9a.woff2')format("woff");}.ff2_c01276{font-family:ff2_c01276;line-height:1.135254;font-style:normal;font-weight:normal;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_60fc313e79c05e0566e45c52.woff2')format("woff");}.ff3_c01276{font-family:ff3_c01276;line-height:1.155762;font-style:normal;font-weight:normal;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_bf1558d8cf06d15d9000b97d.woff2')format("woff");}.ff4_c01276{font-family:ff4_c01276;line-height:1.115723;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01276;src:url('chunks/assets/font_88d2f39625d5e73c4c66afdb.woff2')format("woff");}.ff5_c01276{font-family:ff5_c01276;line-height:0.892578;font-style: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);}
.m1_c01276{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3_c01276{vertical-align:-33.000000px;}
.v2_c01276{vertical-align:-23.086200px;}
.v0_c01276{vertical-align:0.000000px;}
.v1_c01276{vertical-align:23.086200px;}
.ls6_c01276{letter-spacing:0.000000px;}
.ls0_c01276{letter-spacing:0.007800px;}
.ls4_c01276{letter-spacing:0.012000px;}
.ls7_c01276{letter-spacing:0.698400px;}
.ls1_c01276{letter-spacing:1.051200px;}
.ls3_c01276{letter-spacing:1.794000px;}
.ls5_c01276{letter-spacing:9.999999px;}
.ls2_c01276{letter-spacing:13.824600px;}
.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;}
}
.ws0_c01276{word-spacing:-13.200000px;}
.ws1_c01276{word-spacing:-10.000001px;}
.ws2_c01276{word-spacing:0.000000px;}
._c_c01276{margin-left:-11.152800px;}
._16_c01276{margin-left:-7.876800px;}
._17_c01276{margin-left:-6.163200px;}
._4_c01276{margin-left:-3.945600px;}
._2_c01276{margin-left:-2.383200px;}
._d_c01276{margin-left:-1.353600px;}
._a_c01276{width:1.252800px;}
._0_c01276{width:2.325600px;}
._6_c01276{width:3.384000px;}
._1_c01276{width:4.521600px;}
._f_c01276{width:5.688600px;}
._5_c01276{width:6.969600px;}
._10_c01276{width:8.235600px;}
._3_c01276{width:9.266400px;}
._b_c01276{width:11.167200px;}
._e_c01276{width:12.938400px;}
._11_c01276{width:14.990400px;}
._13_c01276{width:16.855200px;}
._12_c01276{width:22.363200px;}
._14_c01276{width:23.781600px;}
._15_c01276{width:24.811200px;}
._7_c01276{width:27.856800px;}
._9_c01276{width:30.355200px;}
._8_c01276{width:32.400000px;}
.fc1_c01276{color:rgb(255,255,255);}
.fc0_c01276{color:rgb(0,0,0);}
.fs5_c01276{font-size:40.000002px;}
.fs2_c01276{font-size:48.000000px;}
.fs4_c01276{font-size:60.000000px;}
.fs1_c01276{font-size:72.000000px;}
.fs0_c01276{font-size:78.000000px;}
.fs3_c01276{font-size:96.000000px;}
.y0_c01276{bottom:0.000000px;}
.y15_c01276{bottom:67.500000px;}
.y1b_c01276{bottom:132.000000px;}
.y1a_c01276{bottom:159.750000px;}
.y19_c01276{bottom:209.250000px;}
.y18_c01276{bottom:258.750000px;}
.y17_c01276{bottom:300.000000px;}
.y16_c01276{bottom:327.750000px;}
.y12_c01276{bottom:471.000000px;}
.y11_c01276{bottom:498.000000px;}
.y10_c01276{bottom:525.000000px;}
.yf_c01276{bottom:573.000000px;}
.ye_c01276{bottom:600.000000px;}
.yd_c01276{bottom:627.000000px;}
.yc_c01276{bottom:654.000000px;}
.yb_c01276{bottom:681.000000px;}
.ya_c01276{bottom:708.000000px;}
.y9_c01276{bottom:735.000000px;}
.y8_c01276{bottom:762.000000px;}
.y7_c01276{bottom:810.000000px;}
.y6_c01276{bottom:837.000000px;}
.y5_c01276{bottom:864.000000px;}
.y4_c01276{bottom:891.000000px;}
.y3_c01276{bottom:918.000000px;}
.y2_c01276{bottom:945.000000px;}
.y1_c01276{bottom:991.500000px;}
.y13_c01276{bottom:1066.500000px;}
.y14_c01276{bottom:1194.000000px;}
.h6_c01276{height:35.878908px;}
.h7_c01276{height:53.818359px;}
.h1_c01276{height:55.224609px;}
.h5_c01276{height:56.074219px;}
.h2_c01276{height:65.742188px;}
.h3_c01276{height:66.914325px;}
.h4_c01276{height:87.656250px;}
.h0_c01276{height:1263.000000px;}
.w0_c01276{width:892.500000px;}
.x0_c01276{left:0.000000px;}
.x1_c01276{left:150.519750px;}
.x2_c01276{left:180.298875px;}
.x3_c01276{left:416.782800px;}
.x4_c01276{left:801.992850px;}
@media print{
.v3_c01276{vertical-align:-29.333333pt;}
.v2_c01276{vertical-align:-20.521067pt;}
.v0_c01276{vertical-align:0.000000pt;}
.v1_c01276{vertical-align:20.521067pt;}
.ls6_c01276{letter-spacing:0.000000pt;}
.ls0_c01276{letter-spacing:0.006933pt;}
.ls4_c01276{letter-spacing:0.010667pt;}
.ls7_c01276{letter-spacing:0.620800pt;}
.ls1_c01276{letter-spacing:0.934400pt;}
.ls3_c01276{letter-spacing:1.594667pt;}
.ls5_c01276{letter-spacing:8.888888pt;}
.ls2_c01276{letter-spacing:12.288533pt;}
.ws0_c01276{word-spacing:-11.733333pt;}
.ws1_c01276{word-spacing:-8.888889pt;}
.ws2_c01276{word-spacing:0.000000pt;}
._c_c01276{margin-left:-9.913600pt;}
._16_c01276{margin-left:-7.001600pt;}
._17_c01276{margin-left:-5.478400pt;}
._4_c01276{margin-left:-3.507200pt;}
._2_c01276{margin-left:-2.118400pt;}
._d_c01276{margin-left:-1.203200pt;}
._a_c01276{width:1.113600pt;}
._0_c01276{width:2.067200pt;}
._6_c01276{width:3.008000pt;}
._1_c01276{width:4.019200pt;}
._f_c01276{width:5.056533pt;}
._5_c01276{width:6.195200pt;}
._10_c01276{width:7.320533pt;}
._3_c01276{width:8.236800pt;}
._b_c01276{width:9.926400pt;}
._e_c01276{width:11.500800pt;}
._11_c01276{width:13.324800pt;}
._13_c01276{width:14.982400pt;}
._12_c01276{width:19.878400pt;}
._14_c01276{width:21.139200pt;}
._15_c01276{width:22.054400pt;}
._7_c01276{width:24.761600pt;}
._9_c01276{width:26.982400pt;}
._8_c01276{width:28.800000pt;}
.fs5_c01276{font-size:35.555557pt;}
.fs2_c01276{font-size:42.666667pt;}
.fs4_c01276{font-size:53.333333pt;}
.fs1_c01276{font-size:64.000000pt;}
.fs0_c01276{font-size:69.333333pt;}
.fs3_c01276{font-size:85.333333pt;}
.y0_c01276{bottom:0.000000pt;}
.y15_c01276{bottom:60.000000pt;}
.y1b_c01276{bottom:117.333333pt;}
.y1a_c01276{bottom:142.000000pt;}
.y19_c01276{bottom:186.000000pt;}
.y18_c01276{bottom:230.000000pt;}
.y17_c01276{bottom:266.666667pt;}
.y16_c01276{bottom:291.333333pt;}
.y12_c01276{bottom:418.666667pt;}
.y11_c01276{bottom:442.666667pt;}
.y10_c01276{bottom:466.666667pt;}
.yf_c01276{bottom:509.333333pt;}
.ye_c01276{bottom:533.333333pt;}
.yd_c01276{bottom:557.333333pt;}
.yc_c01276{bottom:581.333333pt;}
.yb_c01276{bottom:605.333333pt;}
.ya_c01276{bottom:629.333333pt;}
.y9_c01276{bottom:653.333333pt;}
.y8_c01276{bottom:677.333333pt;}
.y7_c01276{bottom:720.000000pt;}
.y6_c01276{bottom:744.000000pt;}
.y5_c01276{bottom:768.000000pt;}
.y4_c01276{bottom:792.000000pt;}
.y3_c01276{bottom:816.000000pt;}
.y2_c01276{bottom:840.000000pt;}
.y1_c01276{bottom:881.333333pt;}
.y13_c01276{bottom:948.000000pt;}
.y14_c01276{bottom:1061.333333pt;}
.h6_c01276{height:31.892363pt;}
.h7_c01276{height:47.838542pt;}
.h1_c01276{height:49.088542pt;}
.h5_c01276{height:49.843750pt;}
.h2_c01276{height:58.437500pt;}
.h3_c01276{height:59.479400pt;}
.h4_c01276{height:77.916667pt;}
.h0_c01276{height:1122.666667pt;}
.w0_c01276{width:793.333333pt;}
.x0_c01276{left:0.000000pt;}
.x1_c01276{left:133.795333pt;}
.x2_c01276{left:160.265667pt;}
.x3_c01276{left:370.473600pt;}
.x4_c01276{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3ad3f646d96d3446f020272a.woff2')format("woff");}.ff1_c01277{font-family:ff1_c01277;line-height:0.939453;font-style:normal;font-weight:normal;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_cd8420246a6ba22baa90802c.woff2')format("woff");}.ff2_c01277{font-family:ff2_c01277;line-height:0.934082;font-style:normal;font-weight:normal;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_713b8de79aac9e59c1e9335c.woff2')format("woff");}.ff3_c01277{font-family:ff3_c01277;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c01277;src:url('chunks/assets/font_b1b91e57c27bfeccad94e088.woff2')format("woff");}.ff4_c01277{font-family:ff4_c01277;line-height:0.755859;font-style:normal;font-weight:normal;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_c041a8d312121fe6a38170fa.woff2')format("woff");}.ff5_c01277{font-family:ff5_c01277;line-height:1.155762;font-style:normal;font-weight: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_c01277;src:url('chunks/assets/font_dee651353d3d0e79869bf870.woff2')format("woff");}.ff6_c01277{font-family:ff6_c01277;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01277;src:url('chunks/assets/font_33b50ebaa07f139a856e10a3.woff2')format("woff");}.ff7_c01277{font-family:ff7_c01277;line-height:0.890137;font-style: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);}
.v3_c01277{vertical-align:-33.000000px;}
.v2_c01277{vertical-align:-23.086200px;}
.v0_c01277{vertical-align:0.000000px;}
.v1_c01277{vertical-align:23.086200px;}
.ls2_c01277{letter-spacing:0.000000px;}
.ls0_c01277{letter-spacing:0.007800px;}
.ls4_c01277{letter-spacing:0.012000px;}
.ls3_c01277{letter-spacing:0.021600px;}
.ls1_c01277{letter-spacing:3.646200px;}
.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;}
}
.ws0_c01277{word-spacing:-10.000001px;}
.ws1_c01277{word-spacing:0.000000px;}
._4_c01277{margin-left:-9.727200px;}
._3_c01277{margin-left:-4.852800px;}
._8_c01277{margin-left:-3.340800px;}
._5_c01277{margin-left:-2.196000px;}
._12_c01277{margin-left:-1.008000px;}
._1_c01277{width:1.864800px;}
._f_c01277{width:3.412800px;}
._2_c01277{width:4.593600px;}
._0_c01277{width:6.465600px;}
._a_c01277{width:7.545600px;}
._6_c01277{width:8.640000px;}
._7_c01277{width:10.533600px;}
._9_c01277{width:13.147200px;}
._11_c01277{width:14.659200px;}
._10_c01277{width:16.682400px;}
._e_c01277{width:20.800800px;}
._b_c01277{width:23.292000px;}
._d_c01277{width:25.819200px;}
._c_c01277{width:28.123200px;}
.fc1_c01277{color:transparent;}
.fc0_c01277{color:rgb(0,0,0);}
.fs5_c01277{font-size:40.000002px;}
.fs3_c01277{font-size:48.000000px;}
.fs2_c01277{font-size:54.000000px;}
.fs4_c01277{font-size:60.000000px;}
.fs1_c01277{font-size:72.000000px;}
.fs0_c01277{font-size:78.000000px;}
.y0_c01277{bottom:0.000000px;}
.y8_c01277{bottom:12.000000px;}
.yf_c01277{bottom:67.500000px;}
.y10_c01277{bottom:140.250000px;}
.yd_c01277{bottom:196.500000px;}
.yc_c01277{bottom:223.500000px;}
.yb_c01277{bottom:271.500000px;}
.ya_c01277{bottom:298.500000px;}
.y9_c01277{bottom:325.500000px;}
.y7_c01277{bottom:370.500000px;}
.y6_c01277{bottom:939.000000px;}
.y5_c01277{bottom:966.000000px;}
.y4_c01277{bottom:993.000000px;}
.y3_c01277{bottom:1020.000000px;}
.y2_c01277{bottom:1047.000000px;}
.y1_c01277{bottom:1093.500000px;}
.ye_c01277{bottom:1194.000000px;}
.h8_c01277{height:35.781252px;}
.h4_c01277{height:35.991211px;}
.h7_c01277{height:44.208984px;}
.h2_c01277{height:51.257812px;}
.h6_c01277{height:56.074219px;}
.h1_c01277{height:56.100586px;}
.h5_c01277{height:57.258075px;}
.h3_c01277{height:537.000000px;}
.h0_c01277{height:1263.000000px;}
.w1_c01277{width:676.500000px;}
.w0_c01277{width:892.500000px;}
.x0_c01277{left:0.000000px;}
.x1_c01277{left:65.480310px;}
.x2_c01277{left:338.250000px;}
@media print{
.v3_c01277{vertical-align:-29.333333pt;}
.v2_c01277{vertical-align:-20.521067pt;}
.v0_c01277{vertical-align:0.000000pt;}
.v1_c01277{vertical-align:20.521067pt;}
.ls2_c01277{letter-spacing:0.000000pt;}
.ls0_c01277{letter-spacing:0.006933pt;}
.ls4_c01277{letter-spacing:0.010667pt;}
.ls3_c01277{letter-spacing:0.019200pt;}
.ls1_c01277{letter-spacing:3.241067pt;}
.ws0_c01277{word-spacing:-8.888889pt;}
.ws1_c01277{word-spacing:0.000000pt;}
._4_c01277{margin-left:-8.646400pt;}
._3_c01277{margin-left:-4.313600pt;}
._8_c01277{margin-left:-2.969600pt;}
._5_c01277{margin-left:-1.952000pt;}
._12_c01277{margin-left:-0.896000pt;}
._1_c01277{width:1.657600pt;}
._f_c01277{width:3.033600pt;}
._2_c01277{width:4.083200pt;}
._0_c01277{width:5.747200pt;}
._a_c01277{width:6.707200pt;}
._6_c01277{width:7.680000pt;}
._7_c01277{width:9.363200pt;}
._9_c01277{width:11.686400pt;}
._11_c01277{width:13.030400pt;}
._10_c01277{width:14.828800pt;}
._e_c01277{width:18.489600pt;}
._b_c01277{width:20.704000pt;}
._d_c01277{width:22.950400pt;}
._c_c01277{width:24.998400pt;}
.fs5_c01277{font-size:35.555557pt;}
.fs3_c01277{font-size:42.666667pt;}
.fs2_c01277{font-size:48.000000pt;}
.fs4_c01277{font-size:53.333333pt;}
.fs1_c01277{font-size:64.000000pt;}
.fs0_c01277{font-size:69.333333pt;}
.y0_c01277{bottom:0.000000pt;}
.y8_c01277{bottom:10.666667pt;}
.yf_c01277{bottom:60.000000pt;}
.y10_c01277{bottom:124.666667pt;}
.yd_c01277{bottom:174.666667pt;}
.yc_c01277{bottom:198.666667pt;}
.yb_c01277{bottom:241.333333pt;}
.ya_c01277{bottom:265.333333pt;}
.y9_c01277{bottom:289.333333pt;}
.y7_c01277{bottom:329.333333pt;}
.y6_c01277{bottom:834.666667pt;}
.y5_c01277{bottom:858.666667pt;}
.y4_c01277{bottom:882.666667pt;}
.y3_c01277{bottom:906.666667pt;}
.y2_c01277{bottom:930.666667pt;}
.y1_c01277{bottom:972.000000pt;}
.ye_c01277{bottom:1061.333333pt;}
.h8_c01277{height:31.805557pt;}
.h4_c01277{height:31.992188pt;}
.h7_c01277{height:39.296875pt;}
.h2_c01277{height:45.562500pt;}
.h6_c01277{height:49.843750pt;}
.h1_c01277{height:49.867188pt;}
.h5_c01277{height:50.896067pt;}
.h3_c01277{height:477.333333pt;}
.h0_c01277{height:1122.666667pt;}
.w1_c01277{width:601.333333pt;}
.w0_c01277{width:793.333333pt;}
.x0_c01277{left:0.000000pt;}
.x1_c01277{left:58.204720pt;}
.x2_c01277{left:300.666667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_25a3ba55640aa793e69b9ae1.woff2')format("woff");}.ff1_c01278{font-family:ff1_c01278;line-height:0.933105;font-style:normal;font-weight:normal;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_5579150677f3b26d4a49eaff.woff2')format("woff");}.ff2_c01278{font-family:ff2_c01278;line-height:0.975586;font-style:normal;font-weight:normal;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_8ab357d1a2fa1976c1a8c3a2.woff2')format("woff");}.ff3_c01278{font-family:ff3_c01278;line-height:1.155762;font-style: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);}
.v0_c01278{vertical-align:0.000000px;}
.ls1_c01278{letter-spacing:0.000000px;}
.ls0_c01278{letter-spacing:0.012000px;}
.ls2_c01278{letter-spacing:0.021600px;}
.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;}
}
.ws0_c01278{word-spacing:0.000000px;}
._9_c01278{margin-left:-3.391200px;}
._1_c01278{margin-left:-2.138400px;}
._2_c01278{width:1.008000px;}
._7_c01278{width:2.635200px;}
._4_c01278{width:4.053600px;}
._5_c01278{width:12.103200px;}
._3_c01278{width:15.033600px;}
._0_c01278{width:16.884000px;}
._6_c01278{width:18.172800px;}
._b_c01278{width:21.823200px;}
._8_c01278{width:24.192000px;}
._a_c01278{width:25.401600px;}
.fc0_c01278{color:rgb(0,0,0);}
.fs1_c01278{font-size:54.000000px;}
.fs2_c01278{font-size:60.000000px;}
.fs0_c01278{font-size:72.000000px;}
.y0_c01278{bottom:0.000000px;}
.y5_c01278{bottom:12.000000px;}
.y7_c01278{bottom:67.500000px;}
.y4_c01278{bottom:166.500000px;}
.y3_c01278{bottom:1041.000000px;}
.y2_c01278{bottom:1068.000000px;}
.y1_c01278{bottom:1095.000000px;}
.y6_c01278{bottom:1194.000000px;}
.h3_c01278{height:41.633789px;}
.h1_c01278{height:51.187500px;}
.h4_c01278{height:56.074219px;}
.h2_c01278{height:796.500000px;}
.h0_c01278{height:1263.000000px;}
.w1_c01278{width:676.500000px;}
.w0_c01278{width:892.500000px;}
.x0_c01278{left:0.000000px;}
.x2_c01278{left:129.636105px;}
.x1_c01278{left:150.519750px;}
.x3_c01278{left:416.782800px;}
.x4_c01278{left:801.992850px;}
@media print{
.v0_c01278{vertical-align:0.000000pt;}
.ls1_c01278{letter-spacing:0.000000pt;}
.ls0_c01278{letter-spacing:0.010667pt;}
.ls2_c01278{letter-spacing:0.019200pt;}
.ws0_c01278{word-spacing:0.000000pt;}
._9_c01278{margin-left:-3.014400pt;}
._1_c01278{margin-left:-1.900800pt;}
._2_c01278{width:0.896000pt;}
._7_c01278{width:2.342400pt;}
._4_c01278{width:3.603200pt;}
._5_c01278{width:10.758400pt;}
._3_c01278{width:13.363200pt;}
._0_c01278{width:15.008000pt;}
._6_c01278{width:16.153600pt;}
._b_c01278{width:19.398400pt;}
._8_c01278{width:21.504000pt;}
._a_c01278{width:22.579200pt;}
.fs1_c01278{font-size:48.000000pt;}
.fs2_c01278{font-size:53.333333pt;}
.fs0_c01278{font-size:64.000000pt;}
.y0_c01278{bottom:0.000000pt;}
.y5_c01278{bottom:10.666667pt;}
.y7_c01278{bottom:60.000000pt;}
.y4_c01278{bottom:148.000000pt;}
.y3_c01278{bottom:925.333333pt;}
.y2_c01278{bottom:949.333333pt;}
.y1_c01278{bottom:973.333333pt;}
.y6_c01278{bottom:1061.333333pt;}
.h3_c01278{height:37.007812pt;}
.h1_c01278{height:45.500000pt;}
.h4_c01278{height:49.843750pt;}
.h2_c01278{height:708.000000pt;}
.h0_c01278{height:1122.666667pt;}
.w1_c01278{width:601.333333pt;}
.w0_c01278{width:793.333333pt;}
.x0_c01278{left:0.000000pt;}
.x2_c01278{left:115.232093pt;}
.x1_c01278{left:133.795333pt;}
.x3_c01278{left:370.473600pt;}
.x4_c01278{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a3739cc7dcad7253246fdff2.woff2')format("woff");}.ff1_c01279{font-family:ff1_c01279;line-height:0.934082;font-style:normal;font-weight:normal;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_385f470866ac5c39b29e1755.woff2')format("woff");}.ff2_c01279{font-family:ff2_c01279;line-height:0.963867;font-style:normal;font-weight:normal;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_2d748cb6c2c55b6374426f78.woff2')format("woff");}.ff3_c01279{font-family:ff3_c01279;line-height:0.755859;font-style:normal;font-weight:normal;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_4c9db82c6ac83b15bfa6387f.woff2')format("woff");}.ff4_c01279{font-family:ff4_c01279;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01279;src:url('chunks/assets/font_22427ecffc6f38385cdf4ad3.woff2')format("woff");}.ff5_c01279{font-family:ff5_c01279;line-height:1.114746;font-style:normal;font-weight: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_c01279;src:url('chunks/assets/font_216965d272b6d71146eef802.woff2')format("woff");}.ff6_c01279{font-family:ff6_c01279;line-height:0.890137;font-style: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);}
.m1_c01279{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3_c01279{vertical-align:-33.000000px;}
.v2_c01279{vertical-align:-23.086200px;}
.v0_c01279{vertical-align:0.000000px;}
.v1_c01279{vertical-align:23.086200px;}
.ls1_c01279{letter-spacing:0.000000px;}
.ls3_c01279{letter-spacing:0.012000px;}
.ls2_c01279{letter-spacing:0.021600px;}
.ls0_c01279{letter-spacing:1.348800px;}
.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;}
}
.ws0_c01279{word-spacing:-10.000001px;}
.ws1_c01279{word-spacing:0.000000px;}
._3_c01279{margin-left:-4.593600px;}
._5_c01279{margin-left:-3.268800px;}
._7_c01279{margin-left:-2.268000px;}
._8_c01279{margin-left:-1.130400px;}
._1_c01279{width:1.706400px;}
._9_c01279{width:3.456000px;}
._2_c01279{width:4.752000px;}
._0_c01279{width:6.408000px;}
._a_c01279{width:8.287200px;}
._6_c01279{width:9.655200px;}
._4_c01279{width:11.088000px;}
._c_c01279{width:12.247200px;}
._b_c01279{width:13.831200px;}
.fc0_c01279{color:rgb(0,0,0);}
.fs4_c01279{font-size:40.000002px;}
.fs1_c01279{font-size:48.000000px;}
.fs2_c01279{font-size:54.000000px;}
.fs3_c01279{font-size:60.000000px;}
.fs0_c01279{font-size:72.000000px;}
.y0_c01279{bottom:0.000000px;}
.y7_c01279{bottom:12.000000px;}
.yc_c01279{bottom:67.500000px;}
.yd_c01279{bottom:140.250000px;}
.ya_c01279{bottom:189.000000px;}
.y9_c01279{bottom:547.500000px;}
.y8_c01279{bottom:595.500000px;}
.y6_c01279{bottom:631.500000px;}
.y5_c01279{bottom:954.000000px;}
.y4_c01279{bottom:981.000000px;}
.y3_c01279{bottom:1020.000000px;}
.y2_c01279{bottom:1068.000000px;}
.y1_c01279{bottom:1095.000000px;}
.yb_c01279{bottom:1194.000000px;}
.h8_c01279{height:35.878908px;}
.h4_c01279{height:41.633789px;}
.h7_c01279{height:44.208984px;}
.h1_c01279{height:51.257812px;}
.h6_c01279{height:56.074219px;}
.h2_c01279{height:57.258075px;}
.h3_c01279{height:300.000000px;}
.h5_c01279{height:327.000000px;}
.h0_c01279{height:1263.000000px;}
.w1_c01279{width:676.500000px;}
.w0_c01279{width:892.500000px;}
.x0_c01279{left:0.000000px;}
.x1_c01279{left:65.480310px;}
.x3_c01279{left:141.438705px;}
.x2_c01279{left:295.413150px;}
@media print{
.v3_c01279{vertical-align:-29.333333pt;}
.v2_c01279{vertical-align:-20.521067pt;}
.v0_c01279{vertical-align:0.000000pt;}
.v1_c01279{vertical-align:20.521067pt;}
.ls1_c01279{letter-spacing:0.000000pt;}
.ls3_c01279{letter-spacing:0.010667pt;}
.ls2_c01279{letter-spacing:0.019200pt;}
.ls0_c01279{letter-spacing:1.198933pt;}
.ws0_c01279{word-spacing:-8.888889pt;}
.ws1_c01279{word-spacing:0.000000pt;}
._3_c01279{margin-left:-4.083200pt;}
._5_c01279{margin-left:-2.905600pt;}
._7_c01279{margin-left:-2.016000pt;}
._8_c01279{margin-left:-1.004800pt;}
._1_c01279{width:1.516800pt;}
._9_c01279{width:3.072000pt;}
._2_c01279{width:4.224000pt;}
._0_c01279{width:5.696000pt;}
._a_c01279{width:7.366400pt;}
._6_c01279{width:8.582400pt;}
._4_c01279{width:9.856000pt;}
._c_c01279{width:10.886400pt;}
._b_c01279{width:12.294400pt;}
.fs4_c01279{font-size:35.555557pt;}
.fs1_c01279{font-size:42.666667pt;}
.fs2_c01279{font-size:48.000000pt;}
.fs3_c01279{font-size:53.333333pt;}
.fs0_c01279{font-size:64.000000pt;}
.y0_c01279{bottom:0.000000pt;}
.y7_c01279{bottom:10.666667pt;}
.yc_c01279{bottom:60.000000pt;}
.yd_c01279{bottom:124.666667pt;}
.ya_c01279{bottom:168.000000pt;}
.y9_c01279{bottom:486.666667pt;}
.y8_c01279{bottom:529.333333pt;}
.y6_c01279{bottom:561.333333pt;}
.y5_c01279{bottom:848.000000pt;}
.y4_c01279{bottom:872.000000pt;}
.y3_c01279{bottom:906.666667pt;}
.y2_c01279{bottom:949.333333pt;}
.y1_c01279{bottom:973.333333pt;}
.yb_c01279{bottom:1061.333333pt;}
.h8_c01279{height:31.892363pt;}
.h4_c01279{height:37.007812pt;}
.h7_c01279{height:39.296875pt;}
.h1_c01279{height:45.562500pt;}
.h6_c01279{height:49.843750pt;}
.h2_c01279{height:50.896067pt;}
.h3_c01279{height:266.666667pt;}
.h5_c01279{height:290.666667pt;}
.h0_c01279{height:1122.666667pt;}
.w1_c01279{width:601.333333pt;}
.w0_c01279{width:793.333333pt;}
.x0_c01279{left:0.000000pt;}
.x1_c01279{left:58.204720pt;}
.x3_c01279{left:125.723293pt;}
.x2_c01279{left:262.589467pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8f5645e320550196ac34a475.woff2')format("woff");}.ff1_c01280{font-family:ff1_c01280;line-height:0.934082;font-style:normal;font-weight:normal;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_606174c7ad03b41171ef07ab.woff2')format("woff");}.ff2_c01280{font-family:ff2_c01280;line-height:0.976074;font-style:normal;font-weight:normal;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_64d973c613d191fd1539aeb6.woff2')format("woff");}.ff3_c01280{font-family:ff3_c01280;line-height:1.155762;font-style: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);}
.v0_c01280{vertical-align:0.000000px;}
.ls1_c01280{letter-spacing:0.000000px;}
.ls0_c01280{letter-spacing:0.012000px;}
.ls2_c01280{letter-spacing:0.021600px;}
.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;}
}
.ws0_c01280{word-spacing:0.000000px;}
._9_c01280{margin-left:-7.192800px;}
._0_c01280{margin-left:-3.931200px;}
._3_c01280{margin-left:-2.196000px;}
._1_c01280{width:1.944000px;}
._5_c01280{width:3.088800px;}
._6_c01280{width:4.334400px;}
._2_c01280{width:5.464800px;}
._7_c01280{width:7.408800px;}
._4_c01280{width:9.604800px;}
._8_c01280{width:11.304000px;}
.fc0_c01280{color:rgb(0,0,0);}
.fs1_c01280{font-size:54.000000px;}
.fs2_c01280{font-size:60.000000px;}
.fs0_c01280{font-size:72.000000px;}
.y0_c01280{bottom:0.000000px;}
.y8_c01280{bottom:10.500000px;}
.y5_c01280{bottom:12.000000px;}
.y7_c01280{bottom:28.500000px;}
.ya_c01280{bottom:67.500000px;}
.y6_c01280{bottom:165.000000px;}
.y4_c01280{bottom:625.500000px;}
.y3_c01280{bottom:1020.000000px;}
.y2_c01280{bottom:1047.000000px;}
.y1_c01280{bottom:1095.000000px;}
.y9_c01280{bottom:1194.000000px;}
.h3_c01280{height:42.292969px;}
.h1_c01280{height:51.257812px;}
.h5_c01280{height:56.074219px;}
.h2_c01280{height:363.000000px;}
.h4_c01280{height:432.000000px;}
.h0_c01280{height:1263.000000px;}
.w1_c01280{width:676.500000px;}
.w0_c01280{width:892.500000px;}
.x0_c01280{left:0.000000px;}
.x3_c01280{left:32.924565px;}
.x1_c01280{left:150.519750px;}
.x4_c01280{left:219.024150px;}
.x2_c01280{left:256.314000px;}
.x5_c01280{left:416.782800px;}
.x6_c01280{left:801.992850px;}
@media print{
.v0_c01280{vertical-align:0.000000pt;}
.ls1_c01280{letter-spacing:0.000000pt;}
.ls0_c01280{letter-spacing:0.010667pt;}
.ls2_c01280{letter-spacing:0.019200pt;}
.ws0_c01280{word-spacing:0.000000pt;}
._9_c01280{margin-left:-6.393600pt;}
._0_c01280{margin-left:-3.494400pt;}
._3_c01280{margin-left:-1.952000pt;}
._1_c01280{width:1.728000pt;}
._5_c01280{width:2.745600pt;}
._6_c01280{width:3.852800pt;}
._2_c01280{width:4.857600pt;}
._7_c01280{width:6.585600pt;}
._4_c01280{width:8.537600pt;}
._8_c01280{width:10.048000pt;}
.fs1_c01280{font-size:48.000000pt;}
.fs2_c01280{font-size:53.333333pt;}
.fs0_c01280{font-size:64.000000pt;}
.y0_c01280{bottom:0.000000pt;}
.y8_c01280{bottom:9.333333pt;}
.y5_c01280{bottom:10.666667pt;}
.y7_c01280{bottom:25.333333pt;}
.ya_c01280{bottom:60.000000pt;}
.y6_c01280{bottom:146.666667pt;}
.y4_c01280{bottom:556.000000pt;}
.y3_c01280{bottom:906.666667pt;}
.y2_c01280{bottom:930.666667pt;}
.y1_c01280{bottom:973.333333pt;}
.y9_c01280{bottom:1061.333333pt;}
.h3_c01280{height:37.593750pt;}
.h1_c01280{height:45.562500pt;}
.h5_c01280{height:49.843750pt;}
.h2_c01280{height:322.666667pt;}
.h4_c01280{height:384.000000pt;}
.h0_c01280{height:1122.666667pt;}
.w1_c01280{width:601.333333pt;}
.w0_c01280{width:793.333333pt;}
.x0_c01280{left:0.000000pt;}
.x3_c01280{left:29.266280pt;}
.x1_c01280{left:133.795333pt;}
.x4_c01280{left:194.688133pt;}
.x2_c01280{left:227.834667pt;}
.x5_c01280{left:370.473600pt;}
.x6_c01280{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9c508b86823b5f84c52bbafe.woff2')format("woff");}.ff1_c01281{font-family:ff1_c01281;line-height:0.934082;font-style:normal;font-weight:normal;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_325f053218231f5b6d58c9e6.woff2')format("woff");}.ff2_c01281{font-family:ff2_c01281;line-height:0.987793;font-style:normal;font-weight:normal;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_bfdab941ecc10c95864d6ed9.woff2')format("woff");}.ff3_c01281{font-family:ff3_c01281;line-height:0.756836;font-style:normal;font-weight:normal;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_1e9629b68237f03b99f7a1d5.woff2')format("woff");}.ff4_c01281{font-family:ff4_c01281;line-height:1.155762;font-style: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);}
.v0_c01281{vertical-align:0.000000px;}
.ls0_c01281{letter-spacing:0.000000px;}
.ls2_c01281{letter-spacing:0.012000px;}
.ls1_c01281{letter-spacing:0.021600px;}
.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;}
}
.ws0_c01281{word-spacing:0.000000px;}
._6_c01281{margin-left:-4.442400px;}
._3_c01281{margin-left:-3.024000px;}
._8_c01281{margin-left:-1.893600px;}
._f_c01281{width:1.002960px;}
._a_c01281{width:2.109600px;}
._0_c01281{width:3.729600px;}
._2_c01281{width:4.924800px;}
._1_c01281{width:6.220800px;}
._b_c01281{width:7.862400px;}
._5_c01281{width:9.892800px;}
._9_c01281{width:11.808000px;}
._4_c01281{width:12.960000px;}
._7_c01281{width:14.450400px;}
._e_c01281{width:16.207200px;}
._c_c01281{width:18.093600px;}
._d_c01281{width:22.946400px;}
.fc0_c01281{color:rgb(0,0,0);}
.fs1_c01281{font-size:54.000000px;}
.fs2_c01281{font-size:60.000000px;}
.fs0_c01281{font-size:72.000000px;}
.y0_c01281{bottom:0.000000px;}
.y7_c01281{bottom:10.500000px;}
.y4_c01281{bottom:12.000000px;}
.y6_c01281{bottom:28.500000px;}
.y10_c01281{bottom:67.500000px;}
.ye_c01281{bottom:153.000000px;}
.yd_c01281{bottom:180.000000px;}
.yc_c01281{bottom:207.000000px;}
.yb_c01281{bottom:234.000000px;}
.ya_c01281{bottom:282.000000px;}
.y9_c01281{bottom:309.000000px;}
.y8_c01281{bottom:336.000000px;}
.y5_c01281{bottom:381.000000px;}
.y3_c01281{bottom:735.000000px;}
.y2_c01281{bottom:1068.000000px;}
.y1_c01281{bottom:1095.000000px;}
.yf_c01281{bottom:1194.000000px;}
.h3_c01281{height:42.292969px;}
.h6_c01281{height:44.208984px;}
.h1_c01281{height:51.257812px;}
.h5_c01281{height:56.074219px;}
.h2_c01281{height:301.500000px;}
.h4_c01281{height:325.500000px;}
.h0_c01281{height:1263.000000px;}
.w1_c01281{width:676.500000px;}
.w0_c01281{width:892.500000px;}
.x0_c01281{left:0.000000px;}
.x3_c01281{left:13.089843px;}
.x1_c01281{left:65.480310px;}
.x4_c01281{left:93.051630px;}
.x2_c01281{left:153.023850px;}
@media print{
.v0_c01281{vertical-align:0.000000pt;}
.ls0_c01281{letter-spacing:0.000000pt;}
.ls2_c01281{letter-spacing:0.010667pt;}
.ls1_c01281{letter-spacing:0.019200pt;}
.ws0_c01281{word-spacing:0.000000pt;}
._6_c01281{margin-left:-3.948800pt;}
._3_c01281{margin-left:-2.688000pt;}
._8_c01281{margin-left:-1.683200pt;}
._f_c01281{width:0.891520pt;}
._a_c01281{width:1.875200pt;}
._0_c01281{width:3.315200pt;}
._2_c01281{width:4.377600pt;}
._1_c01281{width:5.529600pt;}
._b_c01281{width:6.988800pt;}
._5_c01281{width:8.793600pt;}
._9_c01281{width:10.496000pt;}
._4_c01281{width:11.520000pt;}
._7_c01281{width:12.844800pt;}
._e_c01281{width:14.406400pt;}
._c_c01281{width:16.083200pt;}
._d_c01281{width:20.396800pt;}
.fs1_c01281{font-size:48.000000pt;}
.fs2_c01281{font-size:53.333333pt;}
.fs0_c01281{font-size:64.000000pt;}
.y0_c01281{bottom:0.000000pt;}
.y7_c01281{bottom:9.333333pt;}
.y4_c01281{bottom:10.666667pt;}
.y6_c01281{bottom:25.333333pt;}
.y10_c01281{bottom:60.000000pt;}
.ye_c01281{bottom:136.000000pt;}
.yd_c01281{bottom:160.000000pt;}
.yc_c01281{bottom:184.000000pt;}
.yb_c01281{bottom:208.000000pt;}
.ya_c01281{bottom:250.666667pt;}
.y9_c01281{bottom:274.666667pt;}
.y8_c01281{bottom:298.666667pt;}
.y5_c01281{bottom:338.666667pt;}
.y3_c01281{bottom:653.333333pt;}
.y2_c01281{bottom:949.333333pt;}
.y1_c01281{bottom:973.333333pt;}
.yf_c01281{bottom:1061.333333pt;}
.h3_c01281{height:37.593750pt;}
.h6_c01281{height:39.296875pt;}
.h1_c01281{height:45.562500pt;}
.h5_c01281{height:49.843750pt;}
.h2_c01281{height:268.000000pt;}
.h4_c01281{height:289.333333pt;}
.h0_c01281{height:1122.666667pt;}
.w1_c01281{width:601.333333pt;}
.w0_c01281{width:793.333333pt;}
.x0_c01281{left:0.000000pt;}
.x3_c01281{left:11.635416pt;}
.x1_c01281{left:58.204720pt;}
.x4_c01281{left:82.712560pt;}
.x2_c01281{left:136.021200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cbfc6215223638f16d570698.woff2')format("woff");}.ff1_c01282{font-family:ff1_c01282;line-height:1.144531;font-style:normal;font-weight:normal;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_1fb281267dc4ffff949cf45b.woff2')format("woff");}.ff2_c01282{font-family:ff2_c01282;line-height:0.934082;font-style:normal;font-weight:normal;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_6857f29f547d0b4910f8b960.woff2')format("woff");}.ff3_c01282{font-family:ff3_c01282;line-height:1.155762;font-style: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;}
.ls2_c01282{letter-spacing:0.000000px;}
.ls1_c01282{letter-spacing:0.012000px;}
.ls0_c01282{letter-spacing:0.021600px;}
.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;}
}
.ws0_c01282{word-spacing:0.000000px;}
._3_c01282{margin-left:-3.693600px;}
._6_c01282{margin-left:-1.936800px;}
._0_c01282{width:1.339200px;}
._1_c01282{width:2.793600px;}
._9_c01282{width:4.456800px;}
._a_c01282{width:6.264000px;}
._2_c01282{width:8.424000px;}
._8_c01282{width:9.885600px;}
._5_c01282{width:11.160000px;}
._7_c01282{width:13.154400px;}
._4_c01282{width:14.860800px;}
.fc0_c01282{color:rgb(0,0,0);}
.fs0_c01282{font-size:54.000000px;}
.fs2_c01282{font-size:60.000000px;}
.fs1_c01282{font-size:72.000000px;}
.y0_c01282{bottom:0.000000px;}
.y2_c01282{bottom:12.000000px;}
.y9_c01282{bottom:67.500000px;}
.y7_c01282{bottom:136.500000px;}
.y6_c01282{bottom:532.500000px;}
.y5_c01282{bottom:559.500000px;}
.y4_c01282{bottom:586.500000px;}
.y3_c01282{bottom:634.500000px;}
.y1_c01282{bottom:679.500000px;}
.y8_c01282{bottom:1194.000000px;}
.h2_c01282{height:50.756836px;}
.h3_c01282{height:51.257812px;}
.h5_c01282{height:56.074219px;}
.h4_c01282{height:364.500000px;}
.h1_c01282{height:433.500000px;}
.h0_c01282{height:1263.000000px;}
.w1_c01282{width:676.500000px;}
.w0_c01282{width:892.500000px;}
.x0_c01282{left:0.000000px;}
.x1_c01282{left:150.000000px;}
.x3_c01282{left:243.265500px;}
.x2_c01282{left:278.106450px;}
.x4_c01282{left:416.782800px;}
.x5_c01282{left:801.992850px;}
@media print{
.v0_c01282{vertical-align:0.000000pt;}
.ls2_c01282{letter-spacing:0.000000pt;}
.ls1_c01282{letter-spacing:0.010667pt;}
.ls0_c01282{letter-spacing:0.019200pt;}
.ws0_c01282{word-spacing:0.000000pt;}
._3_c01282{margin-left:-3.283200pt;}
._6_c01282{margin-left:-1.721600pt;}
._0_c01282{width:1.190400pt;}
._1_c01282{width:2.483200pt;}
._9_c01282{width:3.961600pt;}
._a_c01282{width:5.568000pt;}
._2_c01282{width:7.488000pt;}
._8_c01282{width:8.787200pt;}
._5_c01282{width:9.920000pt;}
._7_c01282{width:11.692800pt;}
._4_c01282{width:13.209600pt;}
.fs0_c01282{font-size:48.000000pt;}
.fs2_c01282{font-size:53.333333pt;}
.fs1_c01282{font-size:64.000000pt;}
.y0_c01282{bottom:0.000000pt;}
.y2_c01282{bottom:10.666667pt;}
.y9_c01282{bottom:60.000000pt;}
.y7_c01282{bottom:121.333333pt;}
.y6_c01282{bottom:473.333333pt;}
.y5_c01282{bottom:497.333333pt;}
.y4_c01282{bottom:521.333333pt;}
.y3_c01282{bottom:564.000000pt;}
.y1_c01282{bottom:604.000000pt;}
.y8_c01282{bottom:1061.333333pt;}
.h2_c01282{height:45.117188pt;}
.h3_c01282{height:45.562500pt;}
.h5_c01282{height:49.843750pt;}
.h4_c01282{height:324.000000pt;}
.h1_c01282{height:385.333333pt;}
.h0_c01282{height:1122.666667pt;}
.w1_c01282{width:601.333333pt;}
.w0_c01282{width:793.333333pt;}
.x0_c01282{left:0.000000pt;}
.x1_c01282{left:133.333333pt;}
.x3_c01282{left:216.236000pt;}
.x2_c01282{left:247.205733pt;}
.x4_c01282{left:370.473600pt;}
.x5_c01282{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a2502d0dc7c603e4060df446.woff2')format("woff");}.ff1_c01283{font-family:ff1_c01283;line-height:0.987793;font-style:normal;font-weight:normal;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_39afd1e02693293eb45425a6.woff2')format("woff");}.ff2_c01283{font-family:ff2_c01283;line-height:0.934082;font-style:normal;font-weight:normal;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_7171305429cd95a4ae049d1c.woff2')format("woff");}.ff3_c01283{font-family:ff3_c01283;line-height:0.756836;font-style:normal;font-weight:normal;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_2cbde88dc78c5ae6302beb60.woff2')format("woff");}.ff4_c01283{font-family:ff4_c01283;line-height:1.155762;font-style: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);}
.v0_c01283{vertical-align:0.000000px;}
.ls0_c01283{letter-spacing:0.000000px;}
.ls1_c01283{letter-spacing:0.012000px;}
.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;}
}
.ws0_c01283{word-spacing:0.000000px;}
._7_c01283{margin-left:-3.168000px;}
._3_c01283{margin-left:-1.634400px;}
._0_c01283{width:1.339200px;}
._1_c01283{width:2.793600px;}
._5_c01283{width:4.183200px;}
._2_c01283{width:6.364800px;}
._6_c01283{width:8.236800px;}
._4_c01283{width:10.742400px;}
._a_c01283{width:16.005600px;}
._9_c01283{width:17.870400px;}
._b_c01283{width:20.901600px;}
._8_c01283{width:21.988800px;}
.fc0_c01283{color:rgb(0,0,0);}
.fs0_c01283{font-size:54.000000px;}
.fs2_c01283{font-size:60.000000px;}
.fs1_c01283{font-size:72.000000px;}
.y0_c01283{bottom:0.000000px;}
.y2_c01283{bottom:12.000000px;}
.y9_c01283{bottom:67.500000px;}
.y7_c01283{bottom:130.500000px;}
.y6_c01283{bottom:451.500000px;}
.y5_c01283{bottom:756.000000px;}
.y4_c01283{bottom:783.000000px;}
.y3_c01283{bottom:810.000000px;}
.y1_c01283{bottom:855.000000px;}
.y8_c01283{bottom:1194.000000px;}
.h2_c01283{height:42.292969px;}
.h7_c01283{height:44.208984px;}
.h3_c01283{height:51.257812px;}
.h6_c01283{height:56.074219px;}
.h1_c01283{height:258.000000px;}
.h4_c01283{height:273.000000px;}
.h5_c01283{height:292.500000px;}
.h0_c01283{height:1263.000000px;}
.w1_c01283{width:676.500000px;}
.w0_c01283{width:892.500000px;}
.x0_c01283{left:0.000000px;}
.x1_c01283{left:66.000000px;}
.x4_c01283{left:71.351415px;}
.x3_c01283{left:84.594360px;}
.x2_c01283{left:229.165650px;}
@media print{
.v0_c01283{vertical-align:0.000000pt;}
.ls0_c01283{letter-spacing:0.000000pt;}
.ls1_c01283{letter-spacing:0.010667pt;}
.ws0_c01283{word-spacing:0.000000pt;}
._7_c01283{margin-left:-2.816000pt;}
._3_c01283{margin-left:-1.452800pt;}
._0_c01283{width:1.190400pt;}
._1_c01283{width:2.483200pt;}
._5_c01283{width:3.718400pt;}
._2_c01283{width:5.657600pt;}
._6_c01283{width:7.321600pt;}
._4_c01283{width:9.548800pt;}
._a_c01283{width:14.227200pt;}
._9_c01283{width:15.884800pt;}
._b_c01283{width:18.579200pt;}
._8_c01283{width:19.545600pt;}
.fs0_c01283{font-size:48.000000pt;}
.fs2_c01283{font-size:53.333333pt;}
.fs1_c01283{font-size:64.000000pt;}
.y0_c01283{bottom:0.000000pt;}
.y2_c01283{bottom:10.666667pt;}
.y9_c01283{bottom:60.000000pt;}
.y7_c01283{bottom:116.000000pt;}
.y6_c01283{bottom:401.333333pt;}
.y5_c01283{bottom:672.000000pt;}
.y4_c01283{bottom:696.000000pt;}
.y3_c01283{bottom:720.000000pt;}
.y1_c01283{bottom:760.000000pt;}
.y8_c01283{bottom:1061.333333pt;}
.h2_c01283{height:37.593750pt;}
.h7_c01283{height:39.296875pt;}
.h3_c01283{height:45.562500pt;}
.h6_c01283{height:49.843750pt;}
.h1_c01283{height:229.333333pt;}
.h4_c01283{height:242.666667pt;}
.h5_c01283{height:260.000000pt;}
.h0_c01283{height:1122.666667pt;}
.w1_c01283{width:601.333333pt;}
.w0_c01283{width:793.333333pt;}
.x0_c01283{left:0.000000pt;}
.x1_c01283{left:58.666667pt;}
.x4_c01283{left:63.423480pt;}
.x3_c01283{left:75.194987pt;}
.x2_c01283{left:203.702800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c5849896dd23c635d31f12ba.woff2')format("woff");}.ff1_c01284{font-family:ff1_c01284;line-height:0.934082;font-style:normal;font-weight:normal;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_319fba0d51c1fd9a60839f9e.woff2')format("woff");}.ff2_c01284{font-family:ff2_c01284;line-height:0.987793;font-style:normal;font-weight:normal;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_6a89ad5804c037e37c1a9825.woff2')format("woff");}.ff3_c01284{font-family:ff3_c01284;line-height:1.155762;font-style: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);}
.v0_c01284{vertical-align:0.000000px;}
.ls2_c01284{letter-spacing:0.000000px;}
.ls1_c01284{letter-spacing:0.012000px;}
.ls0_c01284{letter-spacing:0.021600px;}
.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;}
}
.ws0_c01284{word-spacing:0.000000px;}
._d_c01284{margin-left:-8.172000px;}
._8_c01284{margin-left:-6.206400px;}
._2_c01284{margin-left:-4.060800px;}
._6_c01284{margin-left:-3.009600px;}
._9_c01284{margin-left:-1.310400px;}
._0_c01284{width:1.339200px;}
._1_c01284{width:2.793600px;}
._4_c01284{width:4.168800px;}
._5_c01284{width:5.450400px;}
._a_c01284{width:6.969600px;}
._c_c01284{width:8.359200px;}
._3_c01284{width:9.367200px;}
._7_c01284{width:10.720800px;}
._b_c01284{width:12.240000px;}
.fc0_c01284{color:rgb(0,0,0);}
.fs1_c01284{font-size:54.000000px;}
.fs2_c01284{font-size:60.000000px;}
.fs0_c01284{font-size:72.000000px;}
.y0_c01284{bottom:0.000000px;}
.y4_c01284{bottom:12.000000px;}
.ye_c01284{bottom:67.500000px;}
.yc_c01284{bottom:154.500000px;}
.yb_c01284{bottom:181.500000px;}
.ya_c01284{bottom:208.500000px;}
.y9_c01284{bottom:235.500000px;}
.y8_c01284{bottom:283.500000px;}
.y7_c01284{bottom:328.500000px;}
.y6_c01284{bottom:658.500000px;}
.y5_c01284{bottom:685.500000px;}
.y3_c01284{bottom:730.500000px;}
.y2_c01284{bottom:1068.000000px;}
.y1_c01284{bottom:1095.000000px;}
.yd_c01284{bottom:1194.000000px;}
.h3_c01284{height:42.292969px;}
.h1_c01284{height:51.257812px;}
.h5_c01284{height:56.074219px;}
.h4_c01284{height:298.500000px;}
.h2_c01284{height:306.000000px;}
.h0_c01284{height:1263.000000px;}
.w1_c01284{width:676.500000px;}
.w0_c01284{width:892.500000px;}
.x0_c01284{left:0.000000px;}
.x2_c01284{left:40.706160px;}
.x1_c01284{left:150.519750px;}
.x3_c01284{left:276.445350px;}
.x4_c01284{left:416.782800px;}
.x5_c01284{left:801.992850px;}
@media print{
.v0_c01284{vertical-align:0.000000pt;}
.ls2_c01284{letter-spacing:0.000000pt;}
.ls1_c01284{letter-spacing:0.010667pt;}
.ls0_c01284{letter-spacing:0.019200pt;}
.ws0_c01284{word-spacing:0.000000pt;}
._d_c01284{margin-left:-7.264000pt;}
._8_c01284{margin-left:-5.516800pt;}
._2_c01284{margin-left:-3.609600pt;}
._6_c01284{margin-left:-2.675200pt;}
._9_c01284{margin-left:-1.164800pt;}
._0_c01284{width:1.190400pt;}
._1_c01284{width:2.483200pt;}
._4_c01284{width:3.705600pt;}
._5_c01284{width:4.844800pt;}
._a_c01284{width:6.195200pt;}
._c_c01284{width:7.430400pt;}
._3_c01284{width:8.326400pt;}
._7_c01284{width:9.529600pt;}
._b_c01284{width:10.880000pt;}
.fs1_c01284{font-size:48.000000pt;}
.fs2_c01284{font-size:53.333333pt;}
.fs0_c01284{font-size:64.000000pt;}
.y0_c01284{bottom:0.000000pt;}
.y4_c01284{bottom:10.666667pt;}
.ye_c01284{bottom:60.000000pt;}
.yc_c01284{bottom:137.333333pt;}
.yb_c01284{bottom:161.333333pt;}
.ya_c01284{bottom:185.333333pt;}
.y9_c01284{bottom:209.333333pt;}
.y8_c01284{bottom:252.000000pt;}
.y7_c01284{bottom:292.000000pt;}
.y6_c01284{bottom:585.333333pt;}
.y5_c01284{bottom:609.333333pt;}
.y3_c01284{bottom:649.333333pt;}
.y2_c01284{bottom:949.333333pt;}
.y1_c01284{bottom:973.333333pt;}
.yd_c01284{bottom:1061.333333pt;}
.h3_c01284{height:37.593750pt;}
.h1_c01284{height:45.562500pt;}
.h5_c01284{height:49.843750pt;}
.h4_c01284{height:265.333333pt;}
.h2_c01284{height:272.000000pt;}
.h0_c01284{height:1122.666667pt;}
.w1_c01284{width:601.333333pt;}
.w0_c01284{width:793.333333pt;}
.x0_c01284{left:0.000000pt;}
.x2_c01284{left:36.183253pt;}
.x1_c01284{left:133.795333pt;}
.x3_c01284{left:245.729200pt;}
.x4_c01284{left:370.473600pt;}
.x5_c01284{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_af91b8cb7c40f2ca41eb29e3.woff2')format("woff");}.ff1_c01285{font-family:ff1_c01285;line-height:1.144531;font-style:normal;font-weight:normal;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_ef801fefa37dd82eeb83f5ec.woff2')format("woff");}.ff2_c01285{font-family:ff2_c01285;line-height:0.934082;font-style:normal;font-weight:normal;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_9c8678366677d28532dfb298.woff2')format("woff");}.ff3_c01285{font-family:ff3_c01285;line-height:0.756836;font-style:normal;font-weight:normal;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_8dc33fde87e7924d3697d5ec.woff2')format("woff");}.ff4_c01285{font-family:ff4_c01285;line-height:1.155762;font-style: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;}
.ls1_c01285{letter-spacing:0.000000px;}
.ls2_c01285{letter-spacing:0.012000px;}
.ls0_c01285{letter-spacing:0.021600px;}
.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;}
}
.ws0_c01285{word-spacing:0.000000px;}
._1_c01285{margin-left:-3.216000px;}
._0_c01285{width:1.339200px;}
.fc0_c01285{color:rgb(0,0,0);}
.fs0_c01285{font-size:54.000000px;}
.fs2_c01285{font-size:60.000000px;}
.fs1_c01285{font-size:72.000000px;}
.y0_c01285{bottom:0.000000px;}
.y2_c01285{bottom:12.000000px;}
.y7_c01285{bottom:67.500000px;}
.y5_c01285{bottom:145.500000px;}
.y4_c01285{bottom:475.500000px;}
.y3_c01285{bottom:520.500000px;}
.y1_c01285{bottom:817.500000px;}
.y6_c01285{bottom:1194.000000px;}
.h7_c01285{height:44.208984px;}
.h2_c01285{height:50.756836px;}
.h4_c01285{height:51.257812px;}
.h6_c01285{height:56.074219px;}
.h3_c01285{height:268.500000px;}
.h1_c01285{height:295.500000px;}
.h5_c01285{height:298.500000px;}
.h0_c01285{height:1263.000000px;}
.w1_c01285{width:676.500000px;}
.w0_c01285{width:892.500000px;}
.x0_c01285{left:0.000000px;}
.x1_c01285{left:66.000000px;}
.x2_c01285{left:75.820650px;}
.x4_c01285{left:77.742180px;}
.x3_c01285{left:282.407550px;}
@media print{
.v0_c01285{vertical-align:0.000000pt;}
.ls1_c01285{letter-spacing:0.000000pt;}
.ls2_c01285{letter-spacing:0.010667pt;}
.ls0_c01285{letter-spacing:0.019200pt;}
.ws0_c01285{word-spacing:0.000000pt;}
._1_c01285{margin-left:-2.858667pt;}
._0_c01285{width:1.190400pt;}
.fs0_c01285{font-size:48.000000pt;}
.fs2_c01285{font-size:53.333333pt;}
.fs1_c01285{font-size:64.000000pt;}
.y0_c01285{bottom:0.000000pt;}
.y2_c01285{bottom:10.666667pt;}
.y7_c01285{bottom:60.000000pt;}
.y5_c01285{bottom:129.333333pt;}
.y4_c01285{bottom:422.666667pt;}
.y3_c01285{bottom:462.666667pt;}
.y1_c01285{bottom:726.666667pt;}
.y6_c01285{bottom:1061.333333pt;}
.h7_c01285{height:39.296875pt;}
.h2_c01285{height:45.117188pt;}
.h4_c01285{height:45.562500pt;}
.h6_c01285{height:49.843750pt;}
.h3_c01285{height:238.666667pt;}
.h1_c01285{height:262.666667pt;}
.h5_c01285{height:265.333333pt;}
.h0_c01285{height:1122.666667pt;}
.w1_c01285{width:601.333333pt;}
.w0_c01285{width:793.333333pt;}
.x0_c01285{left:0.000000pt;}
.x1_c01285{left:58.666667pt;}
.x2_c01285{left:67.396133pt;}
.x4_c01285{left:69.104160pt;}
.x3_c01285{left:251.028933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ce0235804b2b0e4f0f30c99f.woff2')format("woff");}.ff1_c01286{font-family:ff1_c01286;line-height:0.934082;font-style:normal;font-weight:normal;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_77c43e82d53b90594ac6422a.woff2')format("woff");}.ff2_c01286{font-family:ff2_c01286;line-height:1.144531;font-style:normal;font-weight:normal;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_bedac1b017cc1899a8daf8cd.woff2')format("woff");}.ff3_c01286{font-family:ff3_c01286;line-height:1.155762;font-style: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);}
.v0_c01286{vertical-align:0.000000px;}
.ls1_c01286{letter-spacing:0.000000px;}
.ls0_c01286{letter-spacing:0.012000px;}
.ls2_c01286{letter-spacing:0.021600px;}
.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;}
}
.ws0_c01286{word-spacing:0.000000px;}
._7_c01286{margin-left:-4.802400px;}
._e_c01286{margin-left:-3.700800px;}
._2_c01286{margin-left:-2.613600px;}
._5_c01286{margin-left:-1.310400px;}
._0_c01286{width:1.339200px;}
._1_c01286{width:2.793600px;}
._4_c01286{width:4.636800px;}
._3_c01286{width:6.336000px;}
._6_c01286{width:7.401600px;}
._d_c01286{width:10.195200px;}
._c_c01286{width:11.937600px;}
._b_c01286{width:13.420800px;}
._8_c01286{width:14.716800px;}
._9_c01286{width:16.005600px;}
._a_c01286{width:17.330400px;}
._f_c01286{width:18.460800px;}
.fc0_c01286{color:rgb(0,0,0);}
.fs1_c01286{font-size:54.000000px;}
.fs2_c01286{font-size:60.000000px;}
.fs0_c01286{font-size:72.000000px;}
.y0_c01286{bottom:0.000000px;}
.y7_c01286{bottom:12.000000px;}
.ya_c01286{bottom:67.500000px;}
.y8_c01286{bottom:147.000000px;}
.y6_c01286{bottom:657.000000px;}
.y5_c01286{bottom:987.000000px;}
.y4_c01286{bottom:1014.000000px;}
.y3_c01286{bottom:1041.000000px;}
.y2_c01286{bottom:1068.000000px;}
.y1_c01286{bottom:1095.000000px;}
.y9_c01286{bottom:1194.000000px;}
.h3_c01286{height:50.756836px;}
.h1_c01286{height:51.257812px;}
.h5_c01286{height:56.074219px;}
.h2_c01286{height:298.500000px;}
.h4_c01286{height:481.500000px;}
.h0_c01286{height:1263.000000px;}
.w1_c01286{width:676.500000px;}
.w0_c01286{width:892.500000px;}
.x0_c01286{left:0.000000px;}
.x2_c01286{left:87.966060px;}
.x3_c01286{left:91.327875px;}
.x1_c01286{left:150.519750px;}
.x4_c01286{left:416.782800px;}
.x5_c01286{left:801.992850px;}
@media print{
.v0_c01286{vertical-align:0.000000pt;}
.ls1_c01286{letter-spacing:0.000000pt;}
.ls0_c01286{letter-spacing:0.010667pt;}
.ls2_c01286{letter-spacing:0.019200pt;}
.ws0_c01286{word-spacing:0.000000pt;}
._7_c01286{margin-left:-4.268800pt;}
._e_c01286{margin-left:-3.289600pt;}
._2_c01286{margin-left:-2.323200pt;}
._5_c01286{margin-left:-1.164800pt;}
._0_c01286{width:1.190400pt;}
._1_c01286{width:2.483200pt;}
._4_c01286{width:4.121600pt;}
._3_c01286{width:5.632000pt;}
._6_c01286{width:6.579200pt;}
._d_c01286{width:9.062400pt;}
._c_c01286{width:10.611200pt;}
._b_c01286{width:11.929600pt;}
._8_c01286{width:13.081600pt;}
._9_c01286{width:14.227200pt;}
._a_c01286{width:15.404800pt;}
._f_c01286{width:16.409600pt;}
.fs1_c01286{font-size:48.000000pt;}
.fs2_c01286{font-size:53.333333pt;}
.fs0_c01286{font-size:64.000000pt;}
.y0_c01286{bottom:0.000000pt;}
.y7_c01286{bottom:10.666667pt;}
.ya_c01286{bottom:60.000000pt;}
.y8_c01286{bottom:130.666667pt;}
.y6_c01286{bottom:584.000000pt;}
.y5_c01286{bottom:877.333333pt;}
.y4_c01286{bottom:901.333333pt;}
.y3_c01286{bottom:925.333333pt;}
.y2_c01286{bottom:949.333333pt;}
.y1_c01286{bottom:973.333333pt;}
.y9_c01286{bottom:1061.333333pt;}
.h3_c01286{height:45.117188pt;}
.h1_c01286{height:45.562500pt;}
.h5_c01286{height:49.843750pt;}
.h2_c01286{height:265.333333pt;}
.h4_c01286{height:428.000000pt;}
.h0_c01286{height:1122.666667pt;}
.w1_c01286{width:601.333333pt;}
.w0_c01286{width:793.333333pt;}
.x0_c01286{left:0.000000pt;}
.x2_c01286{left:78.192053pt;}
.x3_c01286{left:81.180333pt;}
.x1_c01286{left:133.795333pt;}
.x4_c01286{left:370.473600pt;}
.x5_c01286{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1639084cc0de7c832a70b570.woff2')format("woff");}.ff1_c01287{font-family:ff1_c01287;line-height:0.934082;font-style:normal;font-weight:normal;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_058e9b8153fafa1d35c0ae43.woff2')format("woff");}.ff2_c01287{font-family:ff2_c01287;line-height:0.975586;font-style:normal;font-weight:normal;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_fa3197e0cd505f164ba48b8d.woff2')format("woff");}.ff3_c01287{font-family:ff3_c01287;line-height:0.756836;font-style:normal;font-weight:normal;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_b63eab7d6b4427f38d826e35.woff2')format("woff");}.ff4_c01287{font-family:ff4_c01287;line-height:1.155762;font-style: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;}
.ls1_c01287{letter-spacing:0.000000px;}
.ls2_c01287{letter-spacing:0.012000px;}
.ls0_c01287{letter-spacing:0.021600px;}
.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:0.000000px;}
._d_c01287{margin-left:-4.471200px;}
._1_c01287{margin-left:-3.369600px;}
._3_c01287{margin-left:-1.792800px;}
._0_c01287{width:1.339200px;}
._5_c01287{width:2.700000px;}
._4_c01287{width:3.715200px;}
._2_c01287{width:5.680800px;}
._f_c01287{width:6.681600px;}
._6_c01287{width:7.941600px;}
._10_c01287{width:9.014400px;}
._c_c01287{width:10.065600px;}
._b_c01287{width:11.383200px;}
._e_c01287{width:13.233600px;}
._a_c01287{width:18.748800px;}
._7_c01287{width:21.477600px;}
._8_c01287{width:23.270400px;}
._9_c01287{width:24.883200px;}
.fc0_c01287{color:rgb(0,0,0);}
.fs1_c01287{font-size:54.000000px;}
.fs2_c01287{font-size:60.000000px;}
.fs0_c01287{font-size:72.000000px;}
.y0_c01287{bottom:0.000000px;}
.y3_c01287{bottom:12.000000px;}
.ye_c01287{bottom:67.500000px;}
.yc_c01287{bottom:148.500000px;}
.yb_c01287{bottom:175.500000px;}
.ya_c01287{bottom:202.500000px;}
.y9_c01287{bottom:229.500000px;}
.y8_c01287{bottom:256.500000px;}
.y7_c01287{bottom:283.500000px;}
.y6_c01287{bottom:328.500000px;}
.y5_c01287{bottom:735.000000px;}
.y4_c01287{bottom:762.000000px;}
.y2_c01287{bottom:807.000000px;}
.y1_c01287{bottom:1095.000000px;}
.yd_c01287{bottom:1194.000000px;}
.h3_c01287{height:41.633789px;}
.h6_c01287{height:44.208984px;}
.h1_c01287{height:51.257812px;}
.h5_c01287{height:56.074219px;}
.h2_c01287{height:256.500000px;}
.h4_c01287{height:375.000000px;}
.h0_c01287{height:1263.000000px;}
.w1_c01287{width:676.500000px;}
.w0_c01287{width:892.500000px;}
.x0_c01287{left:0.000000px;}
.x1_c01287{left:65.480310px;}
.x2_c01287{left:276.445350px;}
@media print{
.v0_c01287{vertical-align:0.000000pt;}
.ls1_c01287{letter-spacing:0.000000pt;}
.ls2_c01287{letter-spacing:0.010667pt;}
.ls0_c01287{letter-spacing:0.019200pt;}
.ws0_c01287{word-spacing:0.000000pt;}
._d_c01287{margin-left:-3.974400pt;}
._1_c01287{margin-left:-2.995200pt;}
._3_c01287{margin-left:-1.593600pt;}
._0_c01287{width:1.190400pt;}
._5_c01287{width:2.400000pt;}
._4_c01287{width:3.302400pt;}
._2_c01287{width:5.049600pt;}
._f_c01287{width:5.939200pt;}
._6_c01287{width:7.059200pt;}
._10_c01287{width:8.012800pt;}
._c_c01287{width:8.947200pt;}
._b_c01287{width:10.118400pt;}
._e_c01287{width:11.763200pt;}
._a_c01287{width:16.665600pt;}
._7_c01287{width:19.091200pt;}
._8_c01287{width:20.684800pt;}
._9_c01287{width:22.118400pt;}
.fs1_c01287{font-size:48.000000pt;}
.fs2_c01287{font-size:53.333333pt;}
.fs0_c01287{font-size:64.000000pt;}
.y0_c01287{bottom:0.000000pt;}
.y3_c01287{bottom:10.666667pt;}
.ye_c01287{bottom:60.000000pt;}
.yc_c01287{bottom:132.000000pt;}
.yb_c01287{bottom:156.000000pt;}
.ya_c01287{bottom:180.000000pt;}
.y9_c01287{bottom:204.000000pt;}
.y8_c01287{bottom:228.000000pt;}
.y7_c01287{bottom:252.000000pt;}
.y6_c01287{bottom:292.000000pt;}
.y5_c01287{bottom:653.333333pt;}
.y4_c01287{bottom:677.333333pt;}
.y2_c01287{bottom:717.333333pt;}
.y1_c01287{bottom:973.333333pt;}
.yd_c01287{bottom:1061.333333pt;}
.h3_c01287{height:37.007812pt;}
.h6_c01287{height:39.296875pt;}
.h1_c01287{height:45.562500pt;}
.h5_c01287{height:49.843750pt;}
.h2_c01287{height:228.000000pt;}
.h4_c01287{height:333.333333pt;}
.h0_c01287{height:1122.666667pt;}
.w1_c01287{width:601.333333pt;}
.w0_c01287{width:793.333333pt;}
.x0_c01287{left:0.000000pt;}
.x1_c01287{left:58.204720pt;}
.x2_c01287{left:245.729200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_765018fd891cc1f5a84bf9d4.woff2')format("woff");}.ff1_c01288{font-family:ff1_c01288;line-height:0.934082;font-style:normal;font-weight:normal;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_4da8ab1d404e965aca41f471.woff2')format("woff");}.ff2_c01288{font-family:ff2_c01288;line-height:0.987793;font-style:normal;font-weight:normal;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_71a9d497892a35d1e2337831.woff2')format("woff");}.ff3_c01288{font-family:ff3_c01288;line-height:1.155762;font-style: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);}
.v0_c01288{vertical-align:0.000000px;}
.ls1_c01288{letter-spacing:0.000000px;}
.ls0_c01288{letter-spacing:0.012000px;}
.ls2_c01288{letter-spacing:0.021600px;}
.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;}
}
.ws0_c01288{word-spacing:0.000000px;}
._c_c01288{margin-left:-5.126400px;}
._2_c01288{margin-left:-3.924000px;}
._1_c01288{margin-left:-1.792800px;}
._5_c01288{width:1.317600px;}
._6_c01288{width:3.016800px;}
._0_c01288{width:4.867200px;}
._4_c01288{width:6.278400px;}
._3_c01288{width:8.251200px;}
._7_c01288{width:10.425600px;}
._a_c01288{width:13.406400px;}
._8_c01288{width:15.307200px;}
._9_c01288{width:17.114400px;}
._b_c01288{width:18.633600px;}
._d_c01288{width:21.535200px;}
.fc0_c01288{color:rgb(0,0,0);}
.fs1_c01288{font-size:54.000000px;}
.fs2_c01288{font-size:60.000000px;}
.fs0_c01288{font-size:72.000000px;}
.y0_c01288{bottom:0.000000px;}
.y6_c01288{bottom:12.000000px;}
.yb_c01288{bottom:67.500000px;}
.y9_c01288{bottom:141.000000px;}
.y8_c01288{bottom:168.000000px;}
.y7_c01288{bottom:213.000000px;}
.y5_c01288{bottom:759.000000px;}
.y4_c01288{bottom:1014.000000px;}
.y3_c01288{bottom:1041.000000px;}
.y2_c01288{bottom:1068.000000px;}
.y1_c01288{bottom:1095.000000px;}
.ya_c01288{bottom:1194.000000px;}
.h3_c01288{height:42.292969px;}
.h1_c01288{height:51.257812px;}
.h5_c01288{height:56.074219px;}
.h2_c01288{height:223.500000px;}
.h4_c01288{height:517.500000px;}
.h0_c01288{height:1263.000000px;}
.w1_c01288{width:676.500000px;}
.w0_c01288{width:892.500000px;}
.x0_c01288{left:0.000000px;}
.x1_c01288{left:150.519750px;}
.x2_c01288{left:246.185700px;}
.x3_c01288{left:416.782800px;}
.x4_c01288{left:801.992850px;}
@media print{
.v0_c01288{vertical-align:0.000000pt;}
.ls1_c01288{letter-spacing:0.000000pt;}
.ls0_c01288{letter-spacing:0.010667pt;}
.ls2_c01288{letter-spacing:0.019200pt;}
.ws0_c01288{word-spacing:0.000000pt;}
._c_c01288{margin-left:-4.556800pt;}
._2_c01288{margin-left:-3.488000pt;}
._1_c01288{margin-left:-1.593600pt;}
._5_c01288{width:1.171200pt;}
._6_c01288{width:2.681600pt;}
._0_c01288{width:4.326400pt;}
._4_c01288{width:5.580800pt;}
._3_c01288{width:7.334400pt;}
._7_c01288{width:9.267200pt;}
._a_c01288{width:11.916800pt;}
._8_c01288{width:13.606400pt;}
._9_c01288{width:15.212800pt;}
._b_c01288{width:16.563200pt;}
._d_c01288{width:19.142400pt;}
.fs1_c01288{font-size:48.000000pt;}
.fs2_c01288{font-size:53.333333pt;}
.fs0_c01288{font-size:64.000000pt;}
.y0_c01288{bottom:0.000000pt;}
.y6_c01288{bottom:10.666667pt;}
.yb_c01288{bottom:60.000000pt;}
.y9_c01288{bottom:125.333333pt;}
.y8_c01288{bottom:149.333333pt;}
.y7_c01288{bottom:189.333333pt;}
.y5_c01288{bottom:674.666667pt;}
.y4_c01288{bottom:901.333333pt;}
.y3_c01288{bottom:925.333333pt;}
.y2_c01288{bottom:949.333333pt;}
.y1_c01288{bottom:973.333333pt;}
.ya_c01288{bottom:1061.333333pt;}
.h3_c01288{height:37.593750pt;}
.h1_c01288{height:45.562500pt;}
.h5_c01288{height:49.843750pt;}
.h2_c01288{height:198.666667pt;}
.h4_c01288{height:460.000000pt;}
.h0_c01288{height:1122.666667pt;}
.w1_c01288{width:601.333333pt;}
.w0_c01288{width:793.333333pt;}
.x0_c01288{left:0.000000pt;}
.x1_c01288{left:133.795333pt;}
.x2_c01288{left:218.831733pt;}
.x3_c01288{left:370.473600pt;}
.x4_c01288{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1be47273a042ca753d9d61e5.woff2')format("woff");}.ff1_c01289{font-family:ff1_c01289;line-height:0.934082;font-style:normal;font-weight:normal;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_f56769e84b8421b06352a5de.woff2')format("woff");}.ff2_c01289{font-family:ff2_c01289;line-height:0.975586;font-style:normal;font-weight:normal;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_9465173c15a3634855eb3067.woff2')format("woff");}.ff3_c01289{font-family:ff3_c01289;line-height:0.756836;font-style:normal;font-weight:normal;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_45fd976e630cc91e29d2697d.woff2')format("woff");}.ff4_c01289{font-family:ff4_c01289;line-height:1.155762;font-style:normal;font-weight:normal;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_19ec56cc8ed5d9c06e5810e5.woff2')format("woff");}.ff5_c01289{font-family:ff5_c01289;line-height:0.904297;font-style: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);}
.v3_c01289{vertical-align:-33.000000px;}
.v2_c01289{vertical-align:-23.086200px;}
.v0_c01289{vertical-align:0.000000px;}
.v1_c01289{vertical-align:23.086200px;}
.ls3_c01289{letter-spacing:0.000000px;}
.ls4_c01289{letter-spacing:0.012000px;}
.ls0_c01289{letter-spacing:0.021600px;}
.ls2_c01289{letter-spacing:3.999999px;}
.ls1_c01289{letter-spacing:25.191000px;}
.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;}
}
.ws0_c01289{word-spacing:0.000000px;}
._10_c01289{margin-left:-10.584000px;}
._5_c01289{margin-left:-7.243200px;}
._15_c01289{margin-left:-4.696800px;}
._2_c01289{margin-left:-3.679200px;}
._3_c01289{margin-left:-2.613600px;}
._7_c01289{margin-left:-1.029600px;}
._0_c01289{width:1.015200px;}
._4_c01289{width:2.901600px;}
._a_c01289{width:4.068000px;}
._1_c01289{width:5.378400px;}
._6_c01289{width:6.415200px;}
._8_c01289{width:7.452000px;}
._12_c01289{width:8.827200px;}
._9_c01289{width:10.087200px;}
._d_c01289{width:11.217600px;}
._b_c01289{width:12.520800px;}
._c_c01289{width:13.579200px;}
._11_c01289{width:14.616000px;}
._f_c01289{width:16.192800px;}
._e_c01289{width:17.222400px;}
._13_c01289{width:18.403200px;}
._14_c01289{width:21.801600px;}
.fc0_c01289{color:rgb(0,0,0);}
.fs4_c01289{font-size:40.000002px;}
.fs2_c01289{font-size:48.000000px;}
.fs1_c01289{font-size:54.000000px;}
.fs3_c01289{font-size:60.000000px;}
.fs0_c01289{font-size:72.000000px;}
.y0_c01289{bottom:0.000000px;}
.y4_c01289{bottom:12.000000px;}
.ye_c01289{bottom:67.500000px;}
.y10_c01289{bottom:132.000000px;}
.yf_c01289{bottom:159.750000px;}
.yc_c01289{bottom:280.500000px;}
.yb_c01289{bottom:307.500000px;}
.ya_c01289{bottom:334.500000px;}
.y9_c01289{bottom:361.500000px;}
.y8_c01289{bottom:388.500000px;}
.y7_c01289{bottom:436.500000px;}
.y6_c01289{bottom:463.500000px;}
.y5_c01289{bottom:490.500000px;}
.y3_c01289{bottom:535.500000px;}
.y2_c01289{bottom:1068.000000px;}
.y1_c01289{bottom:1095.000000px;}
.yd_c01289{bottom:1194.000000px;}
.h7_c01289{height:27.421876px;}
.h8_c01289{height:41.132812px;}
.h3_c01289{height:41.633789px;}
.h6_c01289{height:44.208984px;}
.h1_c01289{height:51.257812px;}
.h5_c01289{height:56.074219px;}
.h4_c01289{height:57.258075px;}
.h2_c01289{height:501.000000px;}
.h0_c01289{height:1263.000000px;}
.w1_c01289{width:676.500000px;}
.w0_c01289{width:892.500000px;}
.x0_c01289{left:0.000000px;}
.x1_c01289{left:65.480310px;}
.x2_c01289{left:266.270850px;}
@media print{
.v3_c01289{vertical-align:-29.333333pt;}
.v2_c01289{vertical-align:-20.521067pt;}
.v0_c01289{vertical-align:0.000000pt;}
.v1_c01289{vertical-align:20.521067pt;}
.ls3_c01289{letter-spacing:0.000000pt;}
.ls4_c01289{letter-spacing:0.010667pt;}
.ls0_c01289{letter-spacing:0.019200pt;}
.ls2_c01289{letter-spacing:3.555555pt;}
.ls1_c01289{letter-spacing:22.392000pt;}
.ws0_c01289{word-spacing:0.000000pt;}
._10_c01289{margin-left:-9.408000pt;}
._5_c01289{margin-left:-6.438400pt;}
._15_c01289{margin-left:-4.174933pt;}
._2_c01289{margin-left:-3.270400pt;}
._3_c01289{margin-left:-2.323200pt;}
._7_c01289{margin-left:-0.915200pt;}
._0_c01289{width:0.902400pt;}
._4_c01289{width:2.579200pt;}
._a_c01289{width:3.616000pt;}
._1_c01289{width:4.780800pt;}
._6_c01289{width:5.702400pt;}
._8_c01289{width:6.624000pt;}
._12_c01289{width:7.846400pt;}
._9_c01289{width:8.966400pt;}
._d_c01289{width:9.971200pt;}
._b_c01289{width:11.129600pt;}
._c_c01289{width:12.070400pt;}
._11_c01289{width:12.992000pt;}
._f_c01289{width:14.393600pt;}
._e_c01289{width:15.308800pt;}
._13_c01289{width:16.358400pt;}
._14_c01289{width:19.379200pt;}
.fs4_c01289{font-size:35.555557pt;}
.fs2_c01289{font-size:42.666667pt;}
.fs1_c01289{font-size:48.000000pt;}
.fs3_c01289{font-size:53.333333pt;}
.fs0_c01289{font-size:64.000000pt;}
.y0_c01289{bottom:0.000000pt;}
.y4_c01289{bottom:10.666667pt;}
.ye_c01289{bottom:60.000000pt;}
.y10_c01289{bottom:117.333333pt;}
.yf_c01289{bottom:142.000000pt;}
.yc_c01289{bottom:249.333333pt;}
.yb_c01289{bottom:273.333333pt;}
.ya_c01289{bottom:297.333333pt;}
.y9_c01289{bottom:321.333333pt;}
.y8_c01289{bottom:345.333333pt;}
.y7_c01289{bottom:388.000000pt;}
.y6_c01289{bottom:412.000000pt;}
.y5_c01289{bottom:436.000000pt;}
.y3_c01289{bottom:476.000000pt;}
.y2_c01289{bottom:949.333333pt;}
.y1_c01289{bottom:973.333333pt;}
.yd_c01289{bottom:1061.333333pt;}
.h7_c01289{height:24.375001pt;}
.h8_c01289{height:36.562500pt;}
.h3_c01289{height:37.007812pt;}
.h6_c01289{height:39.296875pt;}
.h1_c01289{height:45.562500pt;}
.h5_c01289{height:49.843750pt;}
.h4_c01289{height:50.896067pt;}
.h2_c01289{height:445.333333pt;}
.h0_c01289{height:1122.666667pt;}
.w1_c01289{width:601.333333pt;}
.w0_c01289{width:793.333333pt;}
.x0_c01289{left:0.000000pt;}
.x1_c01289{left:58.204720pt;}
.x2_c01289{left:236.685200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ae779b3f3130a2641d66e999.woff2')format("woff");}.ff1_c01290{font-family:ff1_c01290;line-height:0.976074;font-style:normal;font-weight:normal;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_248af91f4f8d77d588afff32.woff2')format("woff");}.ff2_c01290{font-family:ff2_c01290;line-height:1.155762;font-style: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);}
.v0_c01290{vertical-align:0.000000px;}
.ls1_c01290{letter-spacing:0.000000px;}
.ls0_c01290{letter-spacing:0.012000px;}
.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;}
}
.ws0_c01290{word-spacing:0.000000px;}
._0_c01290{margin-left:-3.426000px;}
.fc0_c01290{color:rgb(0,0,0);}
.fs0_c01290{font-size:54.000000px;}
.fs1_c01290{font-size:60.000000px;}
.y0_c01290{bottom:0.000000px;}
.y2_c01290{bottom:12.000000px;}
.y5_c01290{bottom:67.500000px;}
.y3_c01290{bottom:132.000000px;}
.y1_c01290{bottom:562.500000px;}
.y4_c01290{bottom:1194.000000px;}
.h2_c01290{height:42.292969px;}
.h4_c01290{height:56.074219px;}
.h3_c01290{height:402.000000px;}
.h1_c01290{height:550.500000px;}
.h0_c01290{height:1263.000000px;}
.w1_c01290{width:676.500000px;}
.w0_c01290{width:892.500000px;}
.x0_c01290{left:0.000000px;}
.x1_c01290{left:150.000000px;}
.x3_c01290{left:175.475400px;}
.x2_c01290{left:306.975150px;}
.x4_c01290{left:416.782800px;}
.x5_c01290{left:801.992850px;}
@media print{
.v0_c01290{vertical-align:0.000000pt;}
.ls1_c01290{letter-spacing:0.000000pt;}
.ls0_c01290{letter-spacing:0.010667pt;}
.ws0_c01290{word-spacing:0.000000pt;}
._0_c01290{margin-left:-3.045333pt;}
.fs0_c01290{font-size:48.000000pt;}
.fs1_c01290{font-size:53.333333pt;}
.y0_c01290{bottom:0.000000pt;}
.y2_c01290{bottom:10.666667pt;}
.y5_c01290{bottom:60.000000pt;}
.y3_c01290{bottom:117.333333pt;}
.y1_c01290{bottom:500.000000pt;}
.y4_c01290{bottom:1061.333333pt;}
.h2_c01290{height:37.593750pt;}
.h4_c01290{height:49.843750pt;}
.h3_c01290{height:357.333333pt;}
.h1_c01290{height:489.333333pt;}
.h0_c01290{height:1122.666667pt;}
.w1_c01290{width:601.333333pt;}
.w0_c01290{width:793.333333pt;}
.x0_c01290{left:0.000000pt;}
.x1_c01290{left:133.333333pt;}
.x3_c01290{left:155.978133pt;}
.x2_c01290{left:272.866800pt;}
.x4_c01290{left:370.473600pt;}
.x5_c01290{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7fb4680a859b14fda6c25e6c.woff2')format("woff");}.ff1_c01291{font-family:ff1_c01291;line-height:0.934082;font-style:normal;font-weight:normal;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_83b3c541bf5acb81a2d61d19.woff2')format("woff");}.ff2_c01291{font-family:ff2_c01291;line-height:0.987793;font-style:normal;font-weight:normal;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_8976a79693c7ed80d8082f4e.woff2')format("woff");}.ff3_c01291{font-family:ff3_c01291;line-height:0.756836;font-style:normal;font-weight:normal;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_2a71907d05b3a6e2eb4e614c.woff2')format("woff");}.ff4_c01291{font-family:ff4_c01291;line-height:1.155762;font-style: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;}
.ls2_c01291{letter-spacing:-0.005400px;}
.ls0_c01291{letter-spacing:0.000000px;}
.ls3_c01291{letter-spacing:0.012000px;}
.ls1_c01291{letter-spacing:0.021600px;}
.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;}
}
.ws0_c01291{word-spacing:0.000000px;}
._7_c01291{margin-left:-3.081600px;}
._3_c01291{margin-left:-1.180800px;}
._1_c01291{width:1.339200px;}
._5_c01291{width:2.613600px;}
._d_c01291{width:3.664800px;}
._6_c01291{width:4.780800px;}
._2_c01291{width:6.040800px;}
._0_c01291{width:7.380000px;}
._4_c01291{width:8.611200px;}
._8_c01291{width:10.591200px;}
._b_c01291{width:12.880800px;}
._c_c01291{width:14.140800px;}
._a_c01291{width:15.508800px;}
._e_c01291{width:16.876800px;}
._9_c01291{width:18.583200px;}
._f_c01291{width:21.528000px;}
.fc0_c01291{color:rgb(0,0,0);}
.fs1_c01291{font-size:54.000000px;}
.fs2_c01291{font-size:60.000000px;}
.fs0_c01291{font-size:72.000000px;}
.y0_c01291{bottom:0.000000px;}
.y7_c01291{bottom:10.500000px;}
.y4_c01291{bottom:12.000000px;}
.y6_c01291{bottom:28.500000px;}
.y10_c01291{bottom:67.500000px;}
.ye_c01291{bottom:177.000000px;}
.yd_c01291{bottom:204.000000px;}
.yc_c01291{bottom:231.000000px;}
.yb_c01291{bottom:279.000000px;}
.ya_c01291{bottom:306.000000px;}
.y9_c01291{bottom:333.000000px;}
.y8_c01291{bottom:360.000000px;}
.y5_c01291{bottom:405.000000px;}
.y3_c01291{bottom:748.500000px;}
.y2_c01291{bottom:1068.000000px;}
.y1_c01291{bottom:1095.000000px;}
.yf_c01291{bottom:1194.000000px;}
.h3_c01291{height:42.292969px;}
.h6_c01291{height:44.208984px;}
.h1_c01291{height:51.257812px;}
.h5_c01291{height:56.074219px;}
.h2_c01291{height:288.000000px;}
.h4_c01291{height:315.000000px;}
.h0_c01291{height:1263.000000px;}
.w1_c01291{width:676.500000px;}
.w0_c01291{width:892.500000px;}
.x0_c01291{left:0.000000px;}
.x3_c01291{left:8.999977px;}
.x1_c01291{left:65.480310px;}
.x2_c01291{left:181.843050px;}
.x4_c01291{left:294.628800px;}
@media print{
.v0_c01291{vertical-align:0.000000pt;}
.ls2_c01291{letter-spacing:-0.004800pt;}
.ls0_c01291{letter-spacing:0.000000pt;}
.ls3_c01291{letter-spacing:0.010667pt;}
.ls1_c01291{letter-spacing:0.019200pt;}
.ws0_c01291{word-spacing:0.000000pt;}
._7_c01291{margin-left:-2.739200pt;}
._3_c01291{margin-left:-1.049600pt;}
._1_c01291{width:1.190400pt;}
._5_c01291{width:2.323200pt;}
._d_c01291{width:3.257600pt;}
._6_c01291{width:4.249600pt;}
._2_c01291{width:5.369600pt;}
._0_c01291{width:6.560000pt;}
._4_c01291{width:7.654400pt;}
._8_c01291{width:9.414400pt;}
._b_c01291{width:11.449600pt;}
._c_c01291{width:12.569600pt;}
._a_c01291{width:13.785600pt;}
._e_c01291{width:15.001600pt;}
._9_c01291{width:16.518400pt;}
._f_c01291{width:19.136000pt;}
.fs1_c01291{font-size:48.000000pt;}
.fs2_c01291{font-size:53.333333pt;}
.fs0_c01291{font-size:64.000000pt;}
.y0_c01291{bottom:0.000000pt;}
.y7_c01291{bottom:9.333333pt;}
.y4_c01291{bottom:10.666667pt;}
.y6_c01291{bottom:25.333333pt;}
.y10_c01291{bottom:60.000000pt;}
.ye_c01291{bottom:157.333333pt;}
.yd_c01291{bottom:181.333333pt;}
.yc_c01291{bottom:205.333333pt;}
.yb_c01291{bottom:248.000000pt;}
.ya_c01291{bottom:272.000000pt;}
.y9_c01291{bottom:296.000000pt;}
.y8_c01291{bottom:320.000000pt;}
.y5_c01291{bottom:360.000000pt;}
.y3_c01291{bottom:665.333333pt;}
.y2_c01291{bottom:949.333333pt;}
.y1_c01291{bottom:973.333333pt;}
.yf_c01291{bottom:1061.333333pt;}
.h3_c01291{height:37.593750pt;}
.h6_c01291{height:39.296875pt;}
.h1_c01291{height:45.562500pt;}
.h5_c01291{height:49.843750pt;}
.h2_c01291{height:256.000000pt;}
.h4_c01291{height:280.000000pt;}
.h0_c01291{height:1122.666667pt;}
.w1_c01291{width:601.333333pt;}
.w0_c01291{width:793.333333pt;}
.x0_c01291{left:0.000000pt;}
.x3_c01291{left:7.999980pt;}
.x1_c01291{left:58.204720pt;}
.x2_c01291{left:161.638267pt;}
.x4_c01291{left:261.892267pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b25b687d3836a85c812cea75.woff2')format("woff");}.ff1_c01292{font-family:ff1_c01292;line-height:0.932129;font-style:normal;font-weight:normal;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_dbdf0d5a6ca22605b0d6a542.woff2')format("woff");}.ff2_c01292{font-family:ff2_c01292;line-height:0.987793;font-style:normal;font-weight:normal;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_bb63bbcc77cde81dba3d3773.woff2')format("woff");}.ff3_c01292{font-family:ff3_c01292;line-height:1.155762;font-style: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);}
.v0_c01292{vertical-align:0.000000px;}
.ls1_c01292{letter-spacing:0.000000px;}
.ls0_c01292{letter-spacing:0.012000px;}
.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;}
}
.ws0_c01292{word-spacing:0.000000px;}
._2_c01292{margin-left:-3.067200px;}
._1_c01292{width:1.893600px;}
._0_c01292{width:21.621600px;}
._3_c01292{width:24.602400px;}
.fc0_c01292{color:rgb(0,0,0);}
.fs1_c01292{font-size:54.000000px;}
.fs2_c01292{font-size:60.000000px;}
.fs0_c01292{font-size:72.000000px;}
.y0_c01292{bottom:0.000000px;}
.y4_c01292{bottom:12.000000px;}
.y7_c01292{bottom:67.500000px;}
.y5_c01292{bottom:132.000000px;}
.y3_c01292{bottom:628.500000px;}
.y2_c01292{bottom:1068.000000px;}
.y1_c01292{bottom:1095.000000px;}
.y6_c01292{bottom:1194.000000px;}
.h3_c01292{height:42.292969px;}
.h1_c01292{height:51.257812px;}
.h5_c01292{height:56.074219px;}
.h2_c01292{height:408.000000px;}
.h4_c01292{height:468.000000px;}
.h0_c01292{height:1263.000000px;}
.w1_c01292{width:676.500000px;}
.w0_c01292{width:892.500000px;}
.x0_c01292{left:0.000000px;}
.x1_c01292{left:150.519750px;}
.x3_c01292{left:215.586450px;}
.x2_c01292{left:251.169000px;}
.x4_c01292{left:416.782800px;}
.x5_c01292{left:801.992850px;}
@media print{
.v0_c01292{vertical-align:0.000000pt;}
.ls1_c01292{letter-spacing:0.000000pt;}
.ls0_c01292{letter-spacing:0.010667pt;}
.ws0_c01292{word-spacing:0.000000pt;}
._2_c01292{margin-left:-2.726400pt;}
._1_c01292{width:1.683200pt;}
._0_c01292{width:19.219200pt;}
._3_c01292{width:21.868800pt;}
.fs1_c01292{font-size:48.000000pt;}
.fs2_c01292{font-size:53.333333pt;}
.fs0_c01292{font-size:64.000000pt;}
.y0_c01292{bottom:0.000000pt;}
.y4_c01292{bottom:10.666667pt;}
.y7_c01292{bottom:60.000000pt;}
.y5_c01292{bottom:117.333333pt;}
.y3_c01292{bottom:558.666667pt;}
.y2_c01292{bottom:949.333333pt;}
.y1_c01292{bottom:973.333333pt;}
.y6_c01292{bottom:1061.333333pt;}
.h3_c01292{height:37.593750pt;}
.h1_c01292{height:45.562500pt;}
.h5_c01292{height:49.843750pt;}
.h2_c01292{height:362.666667pt;}
.h4_c01292{height:416.000000pt;}
.h0_c01292{height:1122.666667pt;}
.w1_c01292{width:601.333333pt;}
.w0_c01292{width:793.333333pt;}
.x0_c01292{left:0.000000pt;}
.x1_c01292{left:133.795333pt;}
.x3_c01292{left:191.632400pt;}
.x2_c01292{left:223.261333pt;}
.x4_c01292{left:370.473600pt;}
.x5_c01292{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_34db784e93ce587c88760fa1.woff2')format("woff");}.ff1_c01293{font-family:ff1_c01293;line-height:0.934082;font-style:normal;font-weight:normal;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_53d16623014001b891125d08.woff2')format("woff");}.ff2_c01293{font-family:ff2_c01293;line-height:1.144531;font-style:normal;font-weight:normal;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_1e9b7d93118cb92c9109a28d.woff2')format("woff");}.ff3_c01293{font-family:ff3_c01293;line-height:0.756348;font-style:normal;font-weight:normal;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_7846de3526df4537aacf3fe2.woff2')format("woff");}.ff4_c01293{font-family:ff4_c01293;line-height:1.155762;font-style: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);}
.v0_c01293{vertical-align:0.000000px;}
.ls1_c01293{letter-spacing:0.000000px;}
.ls2_c01293{letter-spacing:0.012000px;}
.ls0_c01293{letter-spacing:0.021600px;}
.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;}
}
.ws0_c01293{word-spacing:0.000000px;}
._4_c01293{margin-left:-4.507200px;}
._3_c01293{margin-left:-2.887200px;}
._0_c01293{margin-left:-1.130400px;}
._1_c01293{width:1.339200px;}
._2_c01293{width:3.520800px;}
._5_c01293{width:4.723200px;}
._9_c01293{width:7.509600px;}
._a_c01293{width:8.683200px;}
._7_c01293{width:12.240000px;}
._c_c01293{width:14.090400px;}
._8_c01293{width:15.148800px;}
._6_c01293{width:16.754400px;}
._b_c01293{width:18.158400px;}
._f_c01293{width:23.817600px;}
._e_c01293{width:26.028000px;}
._10_c01293{width:27.367200px;}
._d_c01293{width:30.261600px;}
.fc0_c01293{color:rgb(0,0,0);}
.fs1_c01293{font-size:54.000000px;}
.fs2_c01293{font-size:60.000000px;}
.fs0_c01293{font-size:72.000000px;}
.y0_c01293{bottom:0.000000px;}
.y9_c01293{bottom:10.500000px;}
.yb_c01293{bottom:12.000000px;}
.y8_c01293{bottom:28.500000px;}
.yd_c01293{bottom:67.500000px;}
.ya_c01293{bottom:135.000000px;}
.y7_c01293{bottom:510.000000px;}
.y6_c01293{bottom:960.000000px;}
.y5_c01293{bottom:987.000000px;}
.y4_c01293{bottom:1014.000000px;}
.y3_c01293{bottom:1041.000000px;}
.y2_c01293{bottom:1068.000000px;}
.y1_c01293{bottom:1095.000000px;}
.yc_c01293{bottom:1194.000000px;}
.h6_c01293{height:44.208984px;}
.h3_c01293{height:50.756836px;}
.h1_c01293{height:51.257812px;}
.h5_c01293{height:56.074219px;}
.h4_c01293{height:346.500000px;}
.h2_c01293{height:418.500000px;}
.h0_c01293{height:1263.000000px;}
.w1_c01293{width:676.500000px;}
.w0_c01293{width:892.500000px;}
.x0_c01293{left:0.000000px;}
.x2_c01293{left:28.194930px;}
.x1_c01293{left:65.480310px;}
.x3_c01293{left:227.570400px;}
.x4_c01293{left:272.948400px;}
@media print{
.v0_c01293{vertical-align:0.000000pt;}
.ls1_c01293{letter-spacing:0.000000pt;}
.ls2_c01293{letter-spacing:0.010667pt;}
.ls0_c01293{letter-spacing:0.019200pt;}
.ws0_c01293{word-spacing:0.000000pt;}
._4_c01293{margin-left:-4.006400pt;}
._3_c01293{margin-left:-2.566400pt;}
._0_c01293{margin-left:-1.004800pt;}
._1_c01293{width:1.190400pt;}
._2_c01293{width:3.129600pt;}
._5_c01293{width:4.198400pt;}
._9_c01293{width:6.675200pt;}
._a_c01293{width:7.718400pt;}
._7_c01293{width:10.880000pt;}
._c_c01293{width:12.524800pt;}
._8_c01293{width:13.465600pt;}
._6_c01293{width:14.892800pt;}
._b_c01293{width:16.140800pt;}
._f_c01293{width:21.171200pt;}
._e_c01293{width:23.136000pt;}
._10_c01293{width:24.326400pt;}
._d_c01293{width:26.899200pt;}
.fs1_c01293{font-size:48.000000pt;}
.fs2_c01293{font-size:53.333333pt;}
.fs0_c01293{font-size:64.000000pt;}
.y0_c01293{bottom:0.000000pt;}
.y9_c01293{bottom:9.333333pt;}
.yb_c01293{bottom:10.666667pt;}
.y8_c01293{bottom:25.333333pt;}
.yd_c01293{bottom:60.000000pt;}
.ya_c01293{bottom:120.000000pt;}
.y7_c01293{bottom:453.333333pt;}
.y6_c01293{bottom:853.333333pt;}
.y5_c01293{bottom:877.333333pt;}
.y4_c01293{bottom:901.333333pt;}
.y3_c01293{bottom:925.333333pt;}
.y2_c01293{bottom:949.333333pt;}
.y1_c01293{bottom:973.333333pt;}
.yc_c01293{bottom:1061.333333pt;}
.h6_c01293{height:39.296875pt;}
.h3_c01293{height:45.117188pt;}
.h1_c01293{height:45.562500pt;}
.h5_c01293{height:49.843750pt;}
.h4_c01293{height:308.000000pt;}
.h2_c01293{height:372.000000pt;}
.h0_c01293{height:1122.666667pt;}
.w1_c01293{width:601.333333pt;}
.w0_c01293{width:793.333333pt;}
.x0_c01293{left:0.000000pt;}
.x2_c01293{left:25.062160pt;}
.x1_c01293{left:58.204720pt;}
.x3_c01293{left:202.284800pt;}
.x4_c01293{left:242.620800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_82477ef724d32063de2452f6.woff2')format("woff");}.ff1_c01294{font-family:ff1_c01294;line-height:0.933105;font-style:normal;font-weight:normal;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_f2a44d0e9fc12c162ef1e0d4.woff2')format("woff");}.ff2_c01294{font-family:ff2_c01294;line-height:0.987793;font-style:normal;font-weight:normal;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_48c77a1eecbc09c66481859c.woff2')format("woff");}.ff3_c01294{font-family:ff3_c01294;line-height:1.155762;font-style: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;}
.ls1_c01294{letter-spacing:0.000000px;}
.ls0_c01294{letter-spacing:0.012000px;}
.ls2_c01294{letter-spacing:0.021600px;}
.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;}
}
.ws0_c01294{word-spacing:-19.800000px;}
.ws1_c01294{word-spacing:0.000000px;}
._3_c01294{margin-left:-4.197600px;}
._9_c01294{margin-left:-2.700000px;}
._0_c01294{margin-left:-1.490400px;}
._5_c01294{width:1.288800px;}
._2_c01294{width:2.491200px;}
._1_c01294{width:3.974400px;}
._d_c01294{width:5.320800px;}
._4_c01294{width:6.818400px;}
._c_c01294{width:8.265600px;}
._15_c01294{width:10.000800px;}
._14_c01294{width:12.657600px;}
._7_c01294{width:14.356800px;}
._b_c01294{width:15.818400px;}
._8_c01294{width:18.302400px;}
._a_c01294{width:21.038400px;}
._6_c01294{width:22.500000px;}
._10_c01294{width:23.803200px;}
._13_c01294{width:26.553600px;}
._f_c01294{width:27.835200px;}
._e_c01294{width:29.332800px;}
._11_c01294{width:30.628800px;}
._12_c01294{width:31.910400px;}
.fc0_c01294{color:rgb(0,0,0);}
.fs1_c01294{font-size:54.000000px;}
.fs2_c01294{font-size:60.000000px;}
.fs0_c01294{font-size:72.000000px;}
.y0_c01294{bottom:0.000000px;}
.y7_c01294{bottom:12.000000px;}
.yd_c01294{bottom:67.500000px;}
.yb_c01294{bottom:129.000000px;}
.ya_c01294{bottom:486.000000px;}
.y9_c01294{bottom:513.000000px;}
.y8_c01294{bottom:540.000000px;}
.y6_c01294{bottom:585.000000px;}
.y5_c01294{bottom:987.000000px;}
.y4_c01294{bottom:1014.000000px;}
.y3_c01294{bottom:1041.000000px;}
.y2_c01294{bottom:1068.000000px;}
.y1_c01294{bottom:1095.000000px;}
.yc_c01294{bottom:1194.000000px;}
.h3_c01294{height:42.292969px;}
.h1_c01294{height:51.187500px;}
.h5_c01294{height:56.074219px;}
.h4_c01294{height:325.500000px;}
.h2_c01294{height:370.500000px;}
.h0_c01294{height:1263.000000px;}
.w1_c01294{width:676.500000px;}
.w0_c01294{width:892.500000px;}
.x0_c01294{left:0.000000px;}
.x2_c01294{left:12.021950px;}
.x1_c01294{left:150.519750px;}
.x3_c01294{left:267.579300px;}
.x4_c01294{left:416.782800px;}
.x5_c01294{left:801.992850px;}
@media print{
.v0_c01294{vertical-align:0.000000pt;}
.ls1_c01294{letter-spacing:0.000000pt;}
.ls0_c01294{letter-spacing:0.010667pt;}
.ls2_c01294{letter-spacing:0.019200pt;}
.ws0_c01294{word-spacing:-17.600000pt;}
.ws1_c01294{word-spacing:0.000000pt;}
._3_c01294{margin-left:-3.731200pt;}
._9_c01294{margin-left:-2.400000pt;}
._0_c01294{margin-left:-1.324800pt;}
._5_c01294{width:1.145600pt;}
._2_c01294{width:2.214400pt;}
._1_c01294{width:3.532800pt;}
._d_c01294{width:4.729600pt;}
._4_c01294{width:6.060800pt;}
._c_c01294{width:7.347200pt;}
._15_c01294{width:8.889600pt;}
._14_c01294{width:11.251200pt;}
._7_c01294{width:12.761600pt;}
._b_c01294{width:14.060800pt;}
._8_c01294{width:16.268800pt;}
._a_c01294{width:18.700800pt;}
._6_c01294{width:20.000000pt;}
._10_c01294{width:21.158400pt;}
._13_c01294{width:23.603200pt;}
._f_c01294{width:24.742400pt;}
._e_c01294{width:26.073600pt;}
._11_c01294{width:27.225600pt;}
._12_c01294{width:28.364800pt;}
.fs1_c01294{font-size:48.000000pt;}
.fs2_c01294{font-size:53.333333pt;}
.fs0_c01294{font-size:64.000000pt;}
.y0_c01294{bottom:0.000000pt;}
.y7_c01294{bottom:10.666667pt;}
.yd_c01294{bottom:60.000000pt;}
.yb_c01294{bottom:114.666667pt;}
.ya_c01294{bottom:432.000000pt;}
.y9_c01294{bottom:456.000000pt;}
.y8_c01294{bottom:480.000000pt;}
.y6_c01294{bottom:520.000000pt;}
.y5_c01294{bottom:877.333333pt;}
.y4_c01294{bottom:901.333333pt;}
.y3_c01294{bottom:925.333333pt;}
.y2_c01294{bottom:949.333333pt;}
.y1_c01294{bottom:973.333333pt;}
.yc_c01294{bottom:1061.333333pt;}
.h3_c01294{height:37.593750pt;}
.h1_c01294{height:45.500000pt;}
.h5_c01294{height:49.843750pt;}
.h4_c01294{height:289.333333pt;}
.h2_c01294{height:329.333333pt;}
.h0_c01294{height:1122.666667pt;}
.w1_c01294{width:601.333333pt;}
.w0_c01294{width:793.333333pt;}
.x0_c01294{left:0.000000pt;}
.x2_c01294{left:10.686177pt;}
.x1_c01294{left:133.795333pt;}
.x3_c01294{left:237.848267pt;}
.x4_c01294{left:370.473600pt;}
.x5_c01294{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3bbb9892d87f3e422392fcec.woff2')format("woff");}.ff1_c01295{font-family:ff1_c01295;line-height:0.933105;font-style:normal;font-weight:normal;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_c3a55eb46f801ec4fcf5b761.woff2')format("woff");}.ff2_c01295{font-family:ff2_c01295;line-height:0.976074;font-style:normal;font-weight:normal;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_eb98c71a4ba7b2a77db61f42.woff2')format("woff");}.ff3_c01295{font-family:ff3_c01295;line-height:0.756348;font-style:normal;font-weight:normal;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_3d8fe691cdd3fb3dd22f5c6e.woff2')format("woff");}.ff4_c01295{font-family:ff4_c01295;line-height:1.155762;font-style: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);}
.v0_c01295{vertical-align:0.000000px;}
.ls1_c01295{letter-spacing:0.000000px;}
.ls2_c01295{letter-spacing:0.012000px;}
.ls0_c01295{letter-spacing:0.021600px;}
.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;}
}
.ws0_c01295{word-spacing:0.000000px;}
._c_c01295{margin-left:-9.597600px;}
._8_c01295{margin-left:-6.861600px;}
._12_c01295{margin-left:-4.989600px;}
._9_c01295{margin-left:-3.585600px;}
._4_c01295{margin-left:-2.253600px;}
._3_c01295{margin-left:-1.216800px;}
._1_c01295{width:1.008000px;}
._0_c01295{width:2.325600px;}
._2_c01295{width:3.528000px;}
._b_c01295{width:4.831200px;}
._6_c01295{width:6.242400px;}
._7_c01295{width:7.293600px;}
._d_c01295{width:8.647200px;}
._5_c01295{width:9.712800px;}
._a_c01295{width:10.800000px;}
._e_c01295{width:12.146400px;}
._f_c01295{width:14.227200px;}
._11_c01295{width:15.976800px;}
._10_c01295{width:17.388000px;}
.fc0_c01295{color:rgb(0,0,0);}
.fs1_c01295{font-size:54.000000px;}
.fs2_c01295{font-size:60.000000px;}
.fs0_c01295{font-size:72.000000px;}
.y0_c01295{bottom:0.000000px;}
.yc_c01295{bottom:12.000000px;}
.y11_c01295{bottom:67.500000px;}
.yf_c01295{bottom:171.000000px;}
.ye_c01295{bottom:198.000000px;}
.yd_c01295{bottom:225.000000px;}
.yb_c01295{bottom:270.000000px;}
.ya_c01295{bottom:831.000000px;}
.y9_c01295{bottom:858.000000px;}
.y8_c01295{bottom:885.000000px;}
.y7_c01295{bottom:912.000000px;}
.y6_c01295{bottom:960.000000px;}
.y5_c01295{bottom:987.000000px;}
.y4_c01295{bottom:1014.000000px;}
.y3_c01295{bottom:1041.000000px;}
.y2_c01295{bottom:1068.000000px;}
.y1_c01295{bottom:1095.000000px;}
.y10_c01295{bottom:1194.000000px;}
.h3_c01295{height:42.292969px;}
.h5_c01295{height:44.208984px;}
.h1_c01295{height:51.187500px;}
.h4_c01295{height:56.074219px;}
.h2_c01295{height:529.500000px;}
.h0_c01295{height:1263.000000px;}
.w1_c01295{width:676.500000px;}
.w0_c01295{width:892.500000px;}
.x0_c01295{left:0.000000px;}
.x1_c01295{left:65.480310px;}
.x2_c01295{left:274.401900px;}
@media print{
.v0_c01295{vertical-align:0.000000pt;}
.ls1_c01295{letter-spacing:0.000000pt;}
.ls2_c01295{letter-spacing:0.010667pt;}
.ls0_c01295{letter-spacing:0.019200pt;}
.ws0_c01295{word-spacing:0.000000pt;}
._c_c01295{margin-left:-8.531200pt;}
._8_c01295{margin-left:-6.099200pt;}
._12_c01295{margin-left:-4.435200pt;}
._9_c01295{margin-left:-3.187200pt;}
._4_c01295{margin-left:-2.003200pt;}
._3_c01295{margin-left:-1.081600pt;}
._1_c01295{width:0.896000pt;}
._0_c01295{width:2.067200pt;}
._2_c01295{width:3.136000pt;}
._b_c01295{width:4.294400pt;}
._6_c01295{width:5.548800pt;}
._7_c01295{width:6.483200pt;}
._d_c01295{width:7.686400pt;}
._5_c01295{width:8.633600pt;}
._a_c01295{width:9.600000pt;}
._e_c01295{width:10.796800pt;}
._f_c01295{width:12.646400pt;}
._11_c01295{width:14.201600pt;}
._10_c01295{width:15.456000pt;}
.fs1_c01295{font-size:48.000000pt;}
.fs2_c01295{font-size:53.333333pt;}
.fs0_c01295{font-size:64.000000pt;}
.y0_c01295{bottom:0.000000pt;}
.yc_c01295{bottom:10.666667pt;}
.y11_c01295{bottom:60.000000pt;}
.yf_c01295{bottom:152.000000pt;}
.ye_c01295{bottom:176.000000pt;}
.yd_c01295{bottom:200.000000pt;}
.yb_c01295{bottom:240.000000pt;}
.ya_c01295{bottom:738.666667pt;}
.y9_c01295{bottom:762.666667pt;}
.y8_c01295{bottom:786.666667pt;}
.y7_c01295{bottom:810.666667pt;}
.y6_c01295{bottom:853.333333pt;}
.y5_c01295{bottom:877.333333pt;}
.y4_c01295{bottom:901.333333pt;}
.y3_c01295{bottom:925.333333pt;}
.y2_c01295{bottom:949.333333pt;}
.y1_c01295{bottom:973.333333pt;}
.y10_c01295{bottom:1061.333333pt;}
.h3_c01295{height:37.593750pt;}
.h5_c01295{height:39.296875pt;}
.h1_c01295{height:45.500000pt;}
.h4_c01295{height:49.843750pt;}
.h2_c01295{height:470.666667pt;}
.h0_c01295{height:1122.666667pt;}
.w1_c01295{width:601.333333pt;}
.w0_c01295{width:793.333333pt;}
.x0_c01295{left:0.000000pt;}
.x1_c01295{left:58.204720pt;}
.x2_c01295{left:243.912800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ee700f46d7c57d524a5b8d18.woff2')format("woff");}.ff1_c01296{font-family:ff1_c01296;line-height:0.976074;font-style:normal;font-weight:normal;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_8711e7d8c17d2359a37d7683.woff2')format("woff");}.ff2_c01296{font-family:ff2_c01296;line-height:0.931152;font-style:normal;font-weight:normal;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_955c9e68cd920737a291f208.woff2')format("woff");}.ff3_c01296{font-family:ff3_c01296;line-height:1.155762;font-style: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);}
.v0_c01296{vertical-align:0.000000px;}
.ls2_c01296{letter-spacing:0.000000px;}
.ls1_c01296{letter-spacing:0.012000px;}
.ls0_c01296{letter-spacing:0.021600px;}
.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;}
}
.ws0_c01296{word-spacing:0.000000px;}
._6_c01296{margin-left:-7.185600px;}
._7_c01296{margin-left:-3.426000px;}
._2_c01296{margin-left:-2.109600px;}
._5_c01296{margin-left:-1.094400px;}
._0_c01296{width:2.325600px;}
._1_c01296{width:5.140800px;}
._4_c01296{width:7.459200px;}
._3_c01296{width:9.604800px;}
.fc0_c01296{color:rgb(0,0,0);}
.fs0_c01296{font-size:54.000000px;}
.fs2_c01296{font-size:60.000000px;}
.fs1_c01296{font-size:72.000000px;}
.y0_c01296{bottom:0.000000px;}
.y2_c01296{bottom:12.000000px;}
.y7_c01296{bottom:67.500000px;}
.y5_c01296{bottom:166.500000px;}
.y4_c01296{bottom:676.500000px;}
.y3_c01296{bottom:703.500000px;}
.y1_c01296{bottom:748.500000px;}
.y6_c01296{bottom:1194.000000px;}
.h2_c01296{height:42.292969px;}
.h3_c01296{height:51.187500px;}
.h5_c01296{height:56.074219px;}
.h1_c01296{height:364.500000px;}
.h4_c01296{height:478.500000px;}
.h0_c01296{height:1263.000000px;}
.w1_c01296{width:676.500000px;}
.w0_c01296{width:892.500000px;}
.x0_c01296{left:0.000000px;}
.x1_c01296{left:150.000000px;}
.x3_c01296{left:177.617700px;}
.x2_c01296{left:279.204000px;}
.x4_c01296{left:416.782800px;}
.x5_c01296{left:801.992850px;}
@media print{
.v0_c01296{vertical-align:0.000000pt;}
.ls2_c01296{letter-spacing:0.000000pt;}
.ls1_c01296{letter-spacing:0.010667pt;}
.ls0_c01296{letter-spacing:0.019200pt;}
.ws0_c01296{word-spacing:0.000000pt;}
._6_c01296{margin-left:-6.387200pt;}
._7_c01296{margin-left:-3.045333pt;}
._2_c01296{margin-left:-1.875200pt;}
._5_c01296{margin-left:-0.972800pt;}
._0_c01296{width:2.067200pt;}
._1_c01296{width:4.569600pt;}
._4_c01296{width:6.630400pt;}
._3_c01296{width:8.537600pt;}
.fs0_c01296{font-size:48.000000pt;}
.fs2_c01296{font-size:53.333333pt;}
.fs1_c01296{font-size:64.000000pt;}
.y0_c01296{bottom:0.000000pt;}
.y2_c01296{bottom:10.666667pt;}
.y7_c01296{bottom:60.000000pt;}
.y5_c01296{bottom:148.000000pt;}
.y4_c01296{bottom:601.333333pt;}
.y3_c01296{bottom:625.333333pt;}
.y1_c01296{bottom:665.333333pt;}
.y6_c01296{bottom:1061.333333pt;}
.h2_c01296{height:37.593750pt;}
.h3_c01296{height:45.500000pt;}
.h5_c01296{height:49.843750pt;}
.h1_c01296{height:324.000000pt;}
.h4_c01296{height:425.333333pt;}
.h0_c01296{height:1122.666667pt;}
.w1_c01296{width:601.333333pt;}
.w0_c01296{width:793.333333pt;}
.x0_c01296{left:0.000000pt;}
.x1_c01296{left:133.333333pt;}
.x3_c01296{left:157.882400pt;}
.x2_c01296{left:248.181333pt;}
.x4_c01296{left:370.473600pt;}
.x5_c01296{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5d49b975f076d53884e8ea9c.woff2')format("woff");}.ff1_c01297{font-family:ff1_c01297;line-height:0.987793;font-style:normal;font-weight:normal;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_6eb4cc25abd2694e7125f0fb.woff2')format("woff");}.ff2_c01297{font-family:ff2_c01297;line-height:0.933105;font-style:normal;font-weight:normal;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_d41843d854589eb8572bf875.woff2')format("woff");}.ff3_c01297{font-family:ff3_c01297;line-height:0.756348;font-style:normal;font-weight:normal;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_d2477ef49514e9e2ce334b01.woff2')format("woff");}.ff4_c01297{font-family:ff4_c01297;line-height:1.155762;font-style: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;}
.ls1_c01297{letter-spacing:0.000000px;}
.ls2_c01297{letter-spacing:0.012000px;}
.ls0_c01297{letter-spacing:0.021600px;}
.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;}
}
.ws0_c01297{word-spacing:-19.800000px;}
.ws1_c01297{word-spacing:0.000000px;}
._6_c01297{margin-left:-7.430400px;}
._5_c01297{margin-left:-4.125600px;}
._a_c01297{margin-left:-2.685600px;}
._3_c01297{margin-left:-1.620000px;}
._1_c01297{width:1.576800px;}
._7_c01297{width:3.218400px;}
._9_c01297{width:4.982400px;}
._d_c01297{width:6.501600px;}
._c_c01297{width:8.143200px;}
._b_c01297{width:9.165600px;}
._e_c01297{width:10.476000px;}
._8_c01297{width:11.872800px;}
._2_c01297{width:13.881600px;}
._0_c01297{width:15.436800px;}
._4_c01297{width:17.056800px;}
._13_c01297{width:25.279200px;}
._10_c01297{width:26.920800px;}
._11_c01297{width:28.533600px;}
._12_c01297{width:30.081600px;}
._f_c01297{width:31.190400px;}
.fc0_c01297{color:rgb(0,0,0);}
.fs0_c01297{font-size:54.000000px;}
.fs2_c01297{font-size:60.000000px;}
.fs1_c01297{font-size:72.000000px;}
.y0_c01297{bottom:0.000000px;}
.y2_c01297{bottom:12.000000px;}
.y8_c01297{bottom:67.500000px;}
.y6_c01297{bottom:196.500000px;}
.y5_c01297{bottom:223.500000px;}
.y4_c01297{bottom:250.500000px;}
.y3_c01297{bottom:277.500000px;}
.y1_c01297{bottom:322.500000px;}
.y7_c01297{bottom:1194.000000px;}
.h2_c01297{height:42.292969px;}
.h5_c01297{height:44.208984px;}
.h3_c01297{height:51.187500px;}
.h4_c01297{height:56.074219px;}
.h1_c01297{height:790.500000px;}
.h0_c01297{height:1263.000000px;}
.w1_c01297{width:676.500000px;}
.w0_c01297{width:892.500000px;}
.x0_c01297{left:0.000000px;}
.x1_c01297{left:66.000000px;}
.x2_c01297{left:178.754850px;}
@media print{
.v0_c01297{vertical-align:0.000000pt;}
.ls1_c01297{letter-spacing:0.000000pt;}
.ls2_c01297{letter-spacing:0.010667pt;}
.ls0_c01297{letter-spacing:0.019200pt;}
.ws0_c01297{word-spacing:-17.600000pt;}
.ws1_c01297{word-spacing:0.000000pt;}
._6_c01297{margin-left:-6.604800pt;}
._5_c01297{margin-left:-3.667200pt;}
._a_c01297{margin-left:-2.387200pt;}
._3_c01297{margin-left:-1.440000pt;}
._1_c01297{width:1.401600pt;}
._7_c01297{width:2.860800pt;}
._9_c01297{width:4.428800pt;}
._d_c01297{width:5.779200pt;}
._c_c01297{width:7.238400pt;}
._b_c01297{width:8.147200pt;}
._e_c01297{width:9.312000pt;}
._8_c01297{width:10.553600pt;}
._2_c01297{width:12.339200pt;}
._0_c01297{width:13.721600pt;}
._4_c01297{width:15.161600pt;}
._13_c01297{width:22.470400pt;}
._10_c01297{width:23.929600pt;}
._11_c01297{width:25.363200pt;}
._12_c01297{width:26.739200pt;}
._f_c01297{width:27.724800pt;}
.fs0_c01297{font-size:48.000000pt;}
.fs2_c01297{font-size:53.333333pt;}
.fs1_c01297{font-size:64.000000pt;}
.y0_c01297{bottom:0.000000pt;}
.y2_c01297{bottom:10.666667pt;}
.y8_c01297{bottom:60.000000pt;}
.y6_c01297{bottom:174.666667pt;}
.y5_c01297{bottom:198.666667pt;}
.y4_c01297{bottom:222.666667pt;}
.y3_c01297{bottom:246.666667pt;}
.y1_c01297{bottom:286.666667pt;}
.y7_c01297{bottom:1061.333333pt;}
.h2_c01297{height:37.593750pt;}
.h5_c01297{height:39.296875pt;}
.h3_c01297{height:45.500000pt;}
.h4_c01297{height:49.843750pt;}
.h1_c01297{height:702.666667pt;}
.h0_c01297{height:1122.666667pt;}
.w1_c01297{width:601.333333pt;}
.w0_c01297{width:793.333333pt;}
.x0_c01297{left:0.000000pt;}
.x1_c01297{left:58.666667pt;}
.x2_c01297{left:158.893200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_64c094d1fe40553fa3c79523.woff2')format("woff");}.ff1_c01298{font-family:ff1_c01298;line-height:0.783203;font-style:normal;font-weight:normal;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_5454ef7182cb62dc5978bbbc.woff2')format("woff");}.ff2_c01298{font-family:ff2_c01298;line-height:0.933105;font-style:normal;font-weight:normal;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_53b4c84c52f702b6aee6c08e.woff2')format("woff");}.ff3_c01298{font-family:ff3_c01298;line-height:1.155762;font-style: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);}
.v0_c01298{vertical-align:0.000000px;}
.ls2_c01298{letter-spacing:0.000000px;}
.ls0_c01298{letter-spacing:0.012000px;}
.ls1_c01298{letter-spacing:0.021600px;}
.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;}
}
.ws0_c01298{word-spacing:0.000000px;}
._6_c01298{margin-left:-7.495200px;}
._4_c01298{margin-left:-4.795200px;}
._a_c01298{margin-left:-3.708000px;}
._1_c01298{margin-left:-2.253600px;}
._3_c01298{margin-left:-1.116000px;}
._2_c01298{width:1.296000px;}
._0_c01298{width:2.325600px;}
._9_c01298{width:3.808800px;}
._5_c01298{width:4.831200px;}
._b_c01298{width:5.954400px;}
._8_c01298{width:7.365600px;}
._7_c01298{width:9.151200px;}
._c_c01298{width:21.852000px;}
._d_c01298{width:23.162400px;}
._f_c01298{width:25.106400px;}
._e_c01298{width:26.762400px;}
._12_c01298{width:28.209600px;}
._11_c01298{width:29.224800px;}
._10_c01298{width:30.506400px;}
.fc0_c01298{color:rgb(0,0,0);}
.fs0_c01298{font-size:54.000000px;}
.fs2_c01298{font-size:60.000000px;}
.fs1_c01298{font-size:72.000000px;}
.y0_c01298{bottom:0.000000px;}
.y2_c01298{bottom:12.000000px;}
.ya_c01298{bottom:67.500000px;}
.y8_c01298{bottom:153.000000px;}
.y7_c01298{bottom:180.000000px;}
.y6_c01298{bottom:207.000000px;}
.y5_c01298{bottom:234.000000px;}
.y4_c01298{bottom:261.000000px;}
.y3_c01298{bottom:288.000000px;}
.y1_c01298{bottom:333.000000px;}
.y9_c01298{bottom:1194.000000px;}
.h2_c01298{height:41.633789px;}
.h3_c01298{height:51.187500px;}
.h4_c01298{height:56.074219px;}
.h1_c01298{height:780.000000px;}
.h0_c01298{height:1263.000000px;}
.w1_c01298{width:676.500000px;}
.w0_c01298{width:892.500000px;}
.x0_c01298{left:0.000000px;}
.x1_c01298{left:150.000000px;}
.x2_c01298{left:182.884650px;}
.x3_c01298{left:416.782800px;}
.x4_c01298{left:801.992850px;}
@media print{
.v0_c01298{vertical-align:0.000000pt;}
.ls2_c01298{letter-spacing:0.000000pt;}
.ls0_c01298{letter-spacing:0.010667pt;}
.ls1_c01298{letter-spacing:0.019200pt;}
.ws0_c01298{word-spacing:0.000000pt;}
._6_c01298{margin-left:-6.662400pt;}
._4_c01298{margin-left:-4.262400pt;}
._a_c01298{margin-left:-3.296000pt;}
._1_c01298{margin-left:-2.003200pt;}
._3_c01298{margin-left:-0.992000pt;}
._2_c01298{width:1.152000pt;}
._0_c01298{width:2.067200pt;}
._9_c01298{width:3.385600pt;}
._5_c01298{width:4.294400pt;}
._b_c01298{width:5.292800pt;}
._8_c01298{width:6.547200pt;}
._7_c01298{width:8.134400pt;}
._c_c01298{width:19.424000pt;}
._d_c01298{width:20.588800pt;}
._f_c01298{width:22.316800pt;}
._e_c01298{width:23.788800pt;}
._12_c01298{width:25.075200pt;}
._11_c01298{width:25.977600pt;}
._10_c01298{width:27.116800pt;}
.fs0_c01298{font-size:48.000000pt;}
.fs2_c01298{font-size:53.333333pt;}
.fs1_c01298{font-size:64.000000pt;}
.y0_c01298{bottom:0.000000pt;}
.y2_c01298{bottom:10.666667pt;}
.ya_c01298{bottom:60.000000pt;}
.y8_c01298{bottom:136.000000pt;}
.y7_c01298{bottom:160.000000pt;}
.y6_c01298{bottom:184.000000pt;}
.y5_c01298{bottom:208.000000pt;}
.y4_c01298{bottom:232.000000pt;}
.y3_c01298{bottom:256.000000pt;}
.y1_c01298{bottom:296.000000pt;}
.y9_c01298{bottom:1061.333333pt;}
.h2_c01298{height:37.007812pt;}
.h3_c01298{height:45.500000pt;}
.h4_c01298{height:49.843750pt;}
.h1_c01298{height:693.333333pt;}
.h0_c01298{height:1122.666667pt;}
.w1_c01298{width:601.333333pt;}
.w0_c01298{width:793.333333pt;}
.x0_c01298{left:0.000000pt;}
.x1_c01298{left:133.333333pt;}
.x2_c01298{left:162.564133pt;}
.x3_c01298{left:370.473600pt;}
.x4_c01298{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_aa5b1af285b80e0b107c7de4.woff2')format("woff");}.ff1_c01299{font-family:ff1_c01299;line-height:0.927246;font-style:normal;font-weight:normal;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_5c1d73a5dd32cbe55286f309.woff2')format("woff");}.ff2_c01299{font-family:ff2_c01299;line-height:0.783203;font-style:normal;font-weight:normal;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_2b904673724522cfdb4f53fd.woff2')format("woff");}.ff3_c01299{font-family:ff3_c01299;line-height:0.756348;font-style:normal;font-weight:normal;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_6d7a45ca25fa847fe649acb1.woff2')format("woff");}.ff4_c01299{font-family:ff4_c01299;line-height:1.155762;font-style: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);}
.v0_c01299{vertical-align:0.000000px;}
.ls0_c01299{letter-spacing:0.000000px;}
.ls1_c01299{letter-spacing:0.012000px;}
.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;}
}
.ws0_c01299{word-spacing:0.000000px;}
._2_c01299{margin-left:-3.844800px;}
._0_c01299{margin-left:-2.606400px;}
._6_c01299{margin-left:-1.101600px;}
._7_c01299{width:1.116000px;}
._5_c01299{width:2.347200px;}
._4_c01299{width:3.708000px;}
._1_c01299{width:6.364800px;}
._3_c01299{width:7.545600px;}
.fc0_c01299{color:rgb(0,0,0);}
.fs1_c01299{font-size:54.000000px;}
.fs2_c01299{font-size:60.000000px;}
.fs0_c01299{font-size:72.000000px;}
.y0_c01299{bottom:0.000000px;}
.y4_c01299{bottom:12.000000px;}
.y6_c01299{bottom:67.500000px;}
.y3_c01299{bottom:162.000000px;}
.y2_c01299{bottom:1068.000000px;}
.y1_c01299{bottom:1095.000000px;}
.y5_c01299{bottom:1194.000000px;}
.h3_c01299{height:41.633789px;}
.h5_c01299{height:44.208984px;}
.h1_c01299{height:50.765625px;}
.h4_c01299{height:56.074219px;}
.h2_c01299{height:874.500000px;}
.h0_c01299{height:1263.000000px;}
.w1_c01299{width:676.500000px;}
.w0_c01299{width:892.500000px;}
.x0_c01299{left:0.000000px;}
.x1_c01299{left:65.480310px;}
.x2_c01299{left:185.462100px;}
@media print{
.v0_c01299{vertical-align:0.000000pt;}
.ls0_c01299{letter-spacing:0.000000pt;}
.ls1_c01299{letter-spacing:0.010667pt;}
.ws0_c01299{word-spacing:0.000000pt;}
._2_c01299{margin-left:-3.417600pt;}
._0_c01299{margin-left:-2.316800pt;}
._6_c01299{margin-left:-0.979200pt;}
._7_c01299{width:0.992000pt;}
._5_c01299{width:2.086400pt;}
._4_c01299{width:3.296000pt;}
._1_c01299{width:5.657600pt;}
._3_c01299{width:6.707200pt;}
.fs1_c01299{font-size:48.000000pt;}
.fs2_c01299{font-size:53.333333pt;}
.fs0_c01299{font-size:64.000000pt;}
.y0_c01299{bottom:0.000000pt;}
.y4_c01299{bottom:10.666667pt;}
.y6_c01299{bottom:60.000000pt;}
.y3_c01299{bottom:144.000000pt;}
.y2_c01299{bottom:949.333333pt;}
.y1_c01299{bottom:973.333333pt;}
.y5_c01299{bottom:1061.333333pt;}
.h3_c01299{height:37.007812pt;}
.h5_c01299{height:39.296875pt;}
.h1_c01299{height:45.125000pt;}
.h4_c01299{height:49.843750pt;}
.h2_c01299{height:777.333333pt;}
.h0_c01299{height:1122.666667pt;}
.w1_c01299{width:601.333333pt;}
.w0_c01299{width:793.333333pt;}
.x0_c01299{left:0.000000pt;}
.x1_c01299{left:58.204720pt;}
.x2_c01299{left:164.855200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0fb342d88ec7e92b796fdca4.woff2')format("woff");}.ff1_c01300{font-family:ff1_c01300;line-height:0.933105;font-style:normal;font-weight:normal;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_1e85e1279bb12adef9b6335f.woff2')format("woff");}.ff2_c01300{font-family:ff2_c01300;line-height:0.976074;font-style:normal;font-weight:normal;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_7a9c74ae2f2cc42032e84971.woff2')format("woff");}.ff3_c01300{font-family:ff3_c01300;line-height:1.155762;font-style: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;}
.ls1_c01300{letter-spacing:0.000000px;}
.ls0_c01300{letter-spacing:0.012000px;}
.ls2_c01300{letter-spacing:0.021600px;}
.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;}
}
.ws0_c01300{word-spacing:0.000000px;}
._1_c01300{margin-left:-3.945600px;}
._8_c01300{margin-left:-2.347200px;}
._0_c01300{margin-left:-1.216800px;}
._2_c01300{width:1.540800px;}
._6_c01300{width:2.628000px;}
._7_c01300{width:17.136000px;}
._3_c01300{width:18.547200px;}
._4_c01300{width:21.614400px;}
._5_c01300{width:23.947200px;}
.fc0_c01300{color:rgb(0,0,0);}
.fs1_c01300{font-size:54.000000px;}
.fs2_c01300{font-size:60.000000px;}
.fs0_c01300{font-size:72.000000px;}
.y0_c01300{bottom:0.000000px;}
.y3_c01300{bottom:12.000000px;}
.y8_c01300{bottom:67.500000px;}
.y6_c01300{bottom:165.000000px;}
.y5_c01300{bottom:687.000000px;}
.y4_c01300{bottom:714.000000px;}
.y2_c01300{bottom:759.000000px;}
.y1_c01300{bottom:1095.000000px;}
.y7_c01300{bottom:1194.000000px;}
.h3_c01300{height:42.292969px;}
.h1_c01300{height:51.187500px;}
.h5_c01300{height:56.074219px;}
.h2_c01300{height:304.500000px;}
.h4_c01300{height:490.500000px;}
.h0_c01300{height:1263.000000px;}
.w1_c01300{width:676.500000px;}
.w0_c01300{width:892.500000px;}
.x0_c01300{left:0.000000px;}
.x2_c01300{left:121.027215px;}
.x1_c01300{left:150.519750px;}
.x3_c01300{left:237.520800px;}
.x4_c01300{left:416.782800px;}
.x5_c01300{left:801.992850px;}
@media print{
.v0_c01300{vertical-align:0.000000pt;}
.ls1_c01300{letter-spacing:0.000000pt;}
.ls0_c01300{letter-spacing:0.010667pt;}
.ls2_c01300{letter-spacing:0.019200pt;}
.ws0_c01300{word-spacing:0.000000pt;}
._1_c01300{margin-left:-3.507200pt;}
._8_c01300{margin-left:-2.086400pt;}
._0_c01300{margin-left:-1.081600pt;}
._2_c01300{width:1.369600pt;}
._6_c01300{width:2.336000pt;}
._7_c01300{width:15.232000pt;}
._3_c01300{width:16.486400pt;}
._4_c01300{width:19.212800pt;}
._5_c01300{width:21.286400pt;}
.fs1_c01300{font-size:48.000000pt;}
.fs2_c01300{font-size:53.333333pt;}
.fs0_c01300{font-size:64.000000pt;}
.y0_c01300{bottom:0.000000pt;}
.y3_c01300{bottom:10.666667pt;}
.y8_c01300{bottom:60.000000pt;}
.y6_c01300{bottom:146.666667pt;}
.y5_c01300{bottom:610.666667pt;}
.y4_c01300{bottom:634.666667pt;}
.y2_c01300{bottom:674.666667pt;}
.y1_c01300{bottom:973.333333pt;}
.y7_c01300{bottom:1061.333333pt;}
.h3_c01300{height:37.593750pt;}
.h1_c01300{height:45.500000pt;}
.h5_c01300{height:49.843750pt;}
.h2_c01300{height:270.666667pt;}
.h4_c01300{height:436.000000pt;}
.h0_c01300{height:1122.666667pt;}
.w1_c01300{width:601.333333pt;}
.w0_c01300{width:793.333333pt;}
.x0_c01300{left:0.000000pt;}
.x2_c01300{left:107.579747pt;}
.x1_c01300{left:133.795333pt;}
.x3_c01300{left:211.129600pt;}
.x4_c01300{left:370.473600pt;}
.x5_c01300{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d8ab86d375268aebb03d475c.woff2')format("woff");}.ff1_c01301{font-family:ff1_c01301;line-height:0.934082;font-style:normal;font-weight:normal;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_c19480598b2930be5d37cac6.woff2')format("woff");}.ff2_c01301{font-family:ff2_c01301;line-height:0.987793;font-style:normal;font-weight:normal;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_26b80c51e63ea9ef11b8b139.woff2')format("woff");}.ff3_c01301{font-family:ff3_c01301;line-height:0.756836;font-style:normal;font-weight:normal;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_4c4f8e6730d7349113ef5e0b.woff2')format("woff");}.ff4_c01301{font-family:ff4_c01301;line-height:1.155762;font-style: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);}
.v0_c01301{vertical-align:0.000000px;}
.ls0_c01301{letter-spacing:0.000000px;}
.ls1_c01301{letter-spacing:0.012000px;}
.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;}
}
.ws0_c01301{word-spacing:0.000000px;}
._9_c01301{margin-left:-4.240800px;}
._5_c01301{margin-left:-2.793600px;}
._0_c01301{margin-left:-1.490400px;}
._4_c01301{width:1.389600px;}
._3_c01301{width:2.656800px;}
._2_c01301{width:4.017600px;}
._1_c01301{width:5.493600px;}
._6_c01301{width:6.782400px;}
._8_c01301{width:8.352000px;}
._7_c01301{width:9.626400px;}
.fc0_c01301{color:rgb(0,0,0);}
.fs1_c01301{font-size:54.000000px;}
.fs2_c01301{font-size:60.000000px;}
.fs0_c01301{font-size:72.000000px;}
.y0_c01301{bottom:0.000000px;}
.y7_c01301{bottom:12.000000px;}
.yc_c01301{bottom:67.500000px;}
.ya_c01301{bottom:139.500000px;}
.y9_c01301{bottom:166.500000px;}
.y8_c01301{bottom:211.500000px;}
.y6_c01301{bottom:580.500000px;}
.y5_c01301{bottom:966.000000px;}
.y4_c01301{bottom:993.000000px;}
.y3_c01301{bottom:1020.000000px;}
.y2_c01301{bottom:1047.000000px;}
.y1_c01301{bottom:1095.000000px;}
.yb_c01301{bottom:1194.000000px;}
.h3_c01301{height:42.292969px;}
.h6_c01301{height:44.208984px;}
.h1_c01301{height:51.257812px;}
.h5_c01301{height:56.074219px;}
.h4_c01301{height:340.500000px;}
.h2_c01301{height:354.000000px;}
.h0_c01301{height:1263.000000px;}
.w1_c01301{width:676.500000px;}
.w0_c01301{width:892.500000px;}
.x0_c01301{left:0.000000px;}
.x3_c01301{left:45.860955px;}
.x1_c01301{left:65.480310px;}
.x2_c01301{left:156.553650px;}
@media print{
.v0_c01301{vertical-align:0.000000pt;}
.ls0_c01301{letter-spacing:0.000000pt;}
.ls1_c01301{letter-spacing:0.010667pt;}
.ws0_c01301{word-spacing:0.000000pt;}
._9_c01301{margin-left:-3.769600pt;}
._5_c01301{margin-left:-2.483200pt;}
._0_c01301{margin-left:-1.324800pt;}
._4_c01301{width:1.235200pt;}
._3_c01301{width:2.361600pt;}
._2_c01301{width:3.571200pt;}
._1_c01301{width:4.883200pt;}
._6_c01301{width:6.028800pt;}
._8_c01301{width:7.424000pt;}
._7_c01301{width:8.556800pt;}
.fs1_c01301{font-size:48.000000pt;}
.fs2_c01301{font-size:53.333333pt;}
.fs0_c01301{font-size:64.000000pt;}
.y0_c01301{bottom:0.000000pt;}
.y7_c01301{bottom:10.666667pt;}
.yc_c01301{bottom:60.000000pt;}
.ya_c01301{bottom:124.000000pt;}
.y9_c01301{bottom:148.000000pt;}
.y8_c01301{bottom:188.000000pt;}
.y6_c01301{bottom:516.000000pt;}
.y5_c01301{bottom:858.666667pt;}
.y4_c01301{bottom:882.666667pt;}
.y3_c01301{bottom:906.666667pt;}
.y2_c01301{bottom:930.666667pt;}
.y1_c01301{bottom:973.333333pt;}
.yb_c01301{bottom:1061.333333pt;}
.h3_c01301{height:37.593750pt;}
.h6_c01301{height:39.296875pt;}
.h1_c01301{height:45.562500pt;}
.h5_c01301{height:49.843750pt;}
.h4_c01301{height:302.666667pt;}
.h2_c01301{height:314.666667pt;}
.h0_c01301{height:1122.666667pt;}
.w1_c01301{width:601.333333pt;}
.w0_c01301{width:793.333333pt;}
.x0_c01301{left:0.000000pt;}
.x3_c01301{left:40.765293pt;}
.x1_c01301{left:58.204720pt;}
.x2_c01301{left:139.158800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d93c664b5e5c00fb7b42f1a3.woff2')format("woff");}.ff1_c01302{font-family:ff1_c01302;line-height:0.934082;font-style:normal;font-weight:normal;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_c7c4de806c71daad107ebc06.woff2')format("woff");}.ff2_c01302{font-family:ff2_c01302;line-height:0.987793;font-style:normal;font-weight:normal;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_30cf607abc8bcb296e3b453c.woff2')format("woff");}.ff3_c01302{font-family:ff3_c01302;line-height:1.155762;font-style:normal;font-weight:normal;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_b18d7a550c444ac9c9b4ad1f.woff2')format("woff");}.ff4_c01302{font-family:ff4_c01302;line-height:0.700684;font-style: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);}
.m1_c01302{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3_c01302{vertical-align:-33.000000px;}
.v2_c01302{vertical-align:-23.086200px;}
.v0_c01302{vertical-align:0.000000px;}
.v1_c01302{vertical-align:23.086200px;}
.ls2_c01302{letter-spacing:0.000000px;}
.ls3_c01302{letter-spacing:0.007200px;}
.ls1_c01302{letter-spacing:0.012000px;}
.ls0_c01302{letter-spacing:2.237400px;}
.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;}
}
.ws0_c01302{word-spacing:-10.000001px;}
.ws1_c01302{word-spacing:0.000000px;}
._a_c01302{margin-left:-6.991200px;}
._6_c01302{margin-left:-4.075200px;}
._1_c01302{margin-left:-2.613600px;}
._3_c01302{margin-left:-1.166400px;}
._2_c01302{width:2.001600px;}
._0_c01302{width:3.268800px;}
._5_c01302{width:4.968000px;}
._4_c01302{width:6.300000px;}
._7_c01302{width:7.545600px;}
._8_c01302{width:9.144000px;}
._9_c01302{width:10.468800px;}
.fc0_c01302{color:rgb(0,0,0);}
.fs4_c01302{font-size:40.000002px;}
.fs1_c01302{font-size:48.000000px;}
.fs2_c01302{font-size:54.000000px;}
.fs3_c01302{font-size:60.000000px;}
.fs0_c01302{font-size:72.000000px;}
.y0_c01302{bottom:0.000000px;}
.y6_c01302{bottom:12.000000px;}
.yc_c01302{bottom:67.500000px;}
.yd_c01302{bottom:140.250000px;}
.ya_c01302{bottom:210.000000px;}
.y9_c01302{bottom:237.000000px;}
.y8_c01302{bottom:264.000000px;}
.y7_c01302{bottom:309.000000px;}
.y5_c01302{bottom:669.000000px;}
.y4_c01302{bottom:1014.000000px;}
.y3_c01302{bottom:1041.000000px;}
.y2_c01302{bottom:1068.000000px;}
.y1_c01302{bottom:1095.000000px;}
.yb_c01302{bottom:1194.000000px;}
.h7_c01302{height:27.421876px;}
.h4_c01302{height:42.292969px;}
.h2_c01302{height:51.257812px;}
.h6_c01302{height:56.074219px;}
.h1_c01302{height:57.258075px;}
.h3_c01302{height:313.500000px;}
.h5_c01302{height:331.500000px;}
.h0_c01302{height:1263.000000px;}
.w1_c01302{width:676.500000px;}
.w0_c01302{width:892.500000px;}
.x0_c01302{left:0.000000px;}
.x1_c01302{left:150.519750px;}
.x2_c01302{left:161.355750px;}
.x3_c01302{left:169.852650px;}
.x4_c01302{left:416.782800px;}
.x5_c01302{left:801.992850px;}
@media print{
.v3_c01302{vertical-align:-29.333333pt;}
.v2_c01302{vertical-align:-20.521067pt;}
.v0_c01302{vertical-align:0.000000pt;}
.v1_c01302{vertical-align:20.521067pt;}
.ls2_c01302{letter-spacing:0.000000pt;}
.ls3_c01302{letter-spacing:0.006400pt;}
.ls1_c01302{letter-spacing:0.010667pt;}
.ls0_c01302{letter-spacing:1.988800pt;}
.ws0_c01302{word-spacing:-8.888889pt;}
.ws1_c01302{word-spacing:0.000000pt;}
._a_c01302{margin-left:-6.214400pt;}
._6_c01302{margin-left:-3.622400pt;}
._1_c01302{margin-left:-2.323200pt;}
._3_c01302{margin-left:-1.036800pt;}
._2_c01302{width:1.779200pt;}
._0_c01302{width:2.905600pt;}
._5_c01302{width:4.416000pt;}
._4_c01302{width:5.600000pt;}
._7_c01302{width:6.707200pt;}
._8_c01302{width:8.128000pt;}
._9_c01302{width:9.305600pt;}
.fs4_c01302{font-size:35.555557pt;}
.fs1_c01302{font-size:42.666667pt;}
.fs2_c01302{font-size:48.000000pt;}
.fs3_c01302{font-size:53.333333pt;}
.fs0_c01302{font-size:64.000000pt;}
.y0_c01302{bottom:0.000000pt;}
.y6_c01302{bottom:10.666667pt;}
.yc_c01302{bottom:60.000000pt;}
.yd_c01302{bottom:124.666667pt;}
.ya_c01302{bottom:186.666667pt;}
.y9_c01302{bottom:210.666667pt;}
.y8_c01302{bottom:234.666667pt;}
.y7_c01302{bottom:274.666667pt;}
.y5_c01302{bottom:594.666667pt;}
.y4_c01302{bottom:901.333333pt;}
.y3_c01302{bottom:925.333333pt;}
.y2_c01302{bottom:949.333333pt;}
.y1_c01302{bottom:973.333333pt;}
.yb_c01302{bottom:1061.333333pt;}
.h7_c01302{height:24.375001pt;}
.h4_c01302{height:37.593750pt;}
.h2_c01302{height:45.562500pt;}
.h6_c01302{height:49.843750pt;}
.h1_c01302{height:50.896067pt;}
.h3_c01302{height:278.666667pt;}
.h5_c01302{height:294.666667pt;}
.h0_c01302{height:1122.666667pt;}
.w1_c01302{width:601.333333pt;}
.w0_c01302{width:793.333333pt;}
.x0_c01302{left:0.000000pt;}
.x1_c01302{left:133.795333pt;}
.x2_c01302{left:143.427333pt;}
.x3_c01302{left:150.980133pt;}
.x4_c01302{left:370.473600pt;}
.x5_c01302{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d00bf71760c3663e8001d1fc.woff2')format("woff");}.ff1_c01303{font-family:ff1_c01303;line-height:0.987793;font-style:normal;font-weight:normal;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_4b2eb09901d61a4277e62258.woff2')format("woff");}.ff2_c01303{font-family:ff2_c01303;line-height:0.933105;font-style:normal;font-weight:normal;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_521e0c9948d75dd4950b5f1d.woff2')format("woff");}.ff3_c01303{font-family:ff3_c01303;line-height:0.756836;font-style:normal;font-weight:normal;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_0efc61b1c3c52ae5b1f7d5af.woff2')format("woff");}.ff4_c01303{font-family:ff4_c01303;line-height:1.155762;font-style:normal;font-weight:normal;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_10f5fe81b8f621a9532c4665.woff2')format("woff");}.ff5_c01303{font-family:ff5_c01303;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01303;src:url('chunks/assets/font_e6b3e795dcaf01a02ee62334.woff2')format("woff");}.ff6_c01303{font-family:ff6_c01303;line-height:0.700195;font-style: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);}
.v2_c01303{vertical-align:-33.000000px;}
.v0_c01303{vertical-align:0.000000px;}
.v1_c01303{vertical-align:23.086200px;}
.ls1_c01303{letter-spacing:-0.007200px;}
.ls0_c01303{letter-spacing:0.000000px;}
.ls2_c01303{letter-spacing:0.012000px;}
.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;}
}
.ws0_c01303{word-spacing:-13.200000px;}
.ws1_c01303{word-spacing:-10.000001px;}
.ws2_c01303{word-spacing:0.000000px;}
._d_c01303{margin-left:-4.284801px;}
._5_c01303{margin-left:-2.268000px;}
._0_c01303{margin-left:-1.252800px;}
._2_c01303{width:1.166400px;}
._7_c01303{width:3.232800px;}
._9_c01303{width:5.184000px;}
._c_c01303{width:6.393600px;}
._b_c01303{width:7.552800px;}
._a_c01303{width:8.812800px;}
._8_c01303{width:10.778400px;}
._3_c01303{width:12.816000px;}
._1_c01303{width:13.989600px;}
._4_c01303{width:15.278400px;}
._6_c01303{width:16.416000px;}
.fc0_c01303{color:rgb(0,0,0);}
.fs4_c01303{font-size:40.000002px;}
.fs2_c01303{font-size:48.000000px;}
.fs0_c01303{font-size:54.000000px;}
.fs3_c01303{font-size:60.000000px;}
.fs1_c01303{font-size:72.000000px;}
.y0_c01303{bottom:0.000000px;}
.y2_c01303{bottom:12.000000px;}
.y9_c01303{bottom:67.500000px;}
.yb_c01303{bottom:132.000000px;}
.ya_c01303{bottom:159.750000px;}
.y7_c01303{bottom:205.500000px;}
.y6_c01303{bottom:232.500000px;}
.y5_c01303{bottom:259.500000px;}
.y4_c01303{bottom:304.500000px;}
.y3_c01303{bottom:730.500000px;}
.y1_c01303{bottom:775.500000px;}
.y8_c01303{bottom:1194.000000px;}
.h8_c01303{height:35.781252px;}
.h2_c01303{height:42.292969px;}
.h7_c01303{height:44.208984px;}
.h5_c01303{height:51.187500px;}
.h9_c01303{height:53.671875px;}
.h6_c01303{height:56.074219px;}
.h3_c01303{height:57.211200px;}
.h1_c01303{height:337.500000px;}
.h4_c01303{height:394.500000px;}
.h0_c01303{height:1263.000000px;}
.w1_c01303{width:676.500000px;}
.w0_c01303{width:892.500000px;}
.x0_c01303{left:0.000000px;}
.x1_c01303{left:66.000000px;}
.x3_c01303{left:83.256225px;}
.x2_c01303{left:247.316100px;}
@media print{
.v2_c01303{vertical-align:-29.333333pt;}
.v0_c01303{vertical-align:0.000000pt;}
.v1_c01303{vertical-align:20.521067pt;}
.ls1_c01303{letter-spacing:-0.006400pt;}
.ls0_c01303{letter-spacing:0.000000pt;}
.ls2_c01303{letter-spacing:0.010667pt;}
.ws0_c01303{word-spacing:-11.733333pt;}
.ws1_c01303{word-spacing:-8.888889pt;}
.ws2_c01303{word-spacing:0.000000pt;}
._d_c01303{margin-left:-3.808712pt;}
._5_c01303{margin-left:-2.016000pt;}
._0_c01303{margin-left:-1.113600pt;}
._2_c01303{width:1.036800pt;}
._7_c01303{width:2.873600pt;}
._9_c01303{width:4.608000pt;}
._c_c01303{width:5.683200pt;}
._b_c01303{width:6.713600pt;}
._a_c01303{width:7.833600pt;}
._8_c01303{width:9.580800pt;}
._3_c01303{width:11.392000pt;}
._1_c01303{width:12.435200pt;}
._4_c01303{width:13.580800pt;}
._6_c01303{width:14.592000pt;}
.fs4_c01303{font-size:35.555557pt;}
.fs2_c01303{font-size:42.666667pt;}
.fs0_c01303{font-size:48.000000pt;}
.fs3_c01303{font-size:53.333333pt;}
.fs1_c01303{font-size:64.000000pt;}
.y0_c01303{bottom:0.000000pt;}
.y2_c01303{bottom:10.666667pt;}
.y9_c01303{bottom:60.000000pt;}
.yb_c01303{bottom:117.333333pt;}
.ya_c01303{bottom:142.000000pt;}
.y7_c01303{bottom:182.666667pt;}
.y6_c01303{bottom:206.666667pt;}
.y5_c01303{bottom:230.666667pt;}
.y4_c01303{bottom:270.666667pt;}
.y3_c01303{bottom:649.333333pt;}
.y1_c01303{bottom:689.333333pt;}
.y8_c01303{bottom:1061.333333pt;}
.h8_c01303{height:31.805557pt;}
.h2_c01303{height:37.593750pt;}
.h7_c01303{height:39.296875pt;}
.h5_c01303{height:45.500000pt;}
.h9_c01303{height:47.708333pt;}
.h6_c01303{height:49.843750pt;}
.h3_c01303{height:50.854400pt;}
.h1_c01303{height:300.000000pt;}
.h4_c01303{height:350.666667pt;}
.h0_c01303{height:1122.666667pt;}
.w1_c01303{width:601.333333pt;}
.w0_c01303{width:793.333333pt;}
.x0_c01303{left:0.000000pt;}
.x1_c01303{left:58.666667pt;}
.x3_c01303{left:74.005533pt;}
.x2_c01303{left:219.836533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8ae2a0b36105369baa103399.woff2')format("woff");}.ff1_c01304{font-family:ff1_c01304;line-height:0.934082;font-style:normal;font-weight:normal;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_eeb0dfbc35f290ace129c054.woff2')format("woff");}.ff2_c01304{font-family:ff2_c01304;line-height:0.987793;font-style:normal;font-weight:normal;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_08ac95dc665f2bcac8e920ad.woff2')format("woff");}.ff3_c01304{font-family:ff3_c01304;line-height:1.155762;font-style:normal;font-weight:normal;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_93fa3eefbc585029b1fb3a96.woff2')format("woff");}.ff4_c01304{font-family:ff4_c01304;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01304;src:url('chunks/assets/font_b7b09bdaf4428f81c74d9a0b.woff2')format("woff");}.ff5_c01304{font-family:ff5_c01304;line-height:0.678223;font-style: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);}
.v2_c01304{vertical-align:-33.000000px;}
.v0_c01304{vertical-align:0.000000px;}
.v1_c01304{vertical-align:23.086200px;}
.ls3_c01304{letter-spacing:-0.009600px;}
.ls2_c01304{letter-spacing:0.000000px;}
.ls1_c01304{letter-spacing:0.012000px;}
.ls0_c01304{letter-spacing:0.021600px;}
.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;}
}
.ws0_c01304{word-spacing:-13.190400px;}
.ws1_c01304{word-spacing:-10.000001px;}
.ws2_c01304{word-spacing:0.000000px;}
._5_c01304{margin-left:-10.584000px;}
._2_c01304{margin-left:-4.399200px;}
._0_c01304{margin-left:-2.138400px;}
._8_c01304{margin-left:-1.104402px;}
._4_c01304{width:1.440000px;}
._1_c01304{width:3.571200px;}
._7_c01304{width:4.752000px;}
._3_c01304{width:5.788800px;}
._6_c01304{width:7.027200px;}
.fc0_c01304{color:rgb(0,0,0);}
.fs5_c01304{font-size:40.000002px;}
.fs1_c01304{font-size:48.000000px;}
.fs2_c01304{font-size:54.000000px;}
.fs4_c01304{font-size:60.000000px;}
.fs3_c01304{font-size:66.000000px;}
.fs0_c01304{font-size:72.000000px;}
.y0_c01304{bottom:0.000000px;}
.y4_c01304{bottom:12.000000px;}
.ya_c01304{bottom:67.500000px;}
.yb_c01304{bottom:140.250000px;}
.y8_c01304{bottom:243.000000px;}
.y7_c01304{bottom:288.000000px;}
.y6_c01304{bottom:594.000000px;}
.y5_c01304{bottom:621.000000px;}
.y3_c01304{bottom:666.000000px;}
.y2_c01304{bottom:1068.000000px;}
.y1_c01304{bottom:1095.000000px;}
.y9_c01304{bottom:1194.000000px;}
.h7_c01304{height:35.781252px;}
.h4_c01304{height:42.292969px;}
.h1_c01304{height:51.257812px;}
.h6_c01304{height:56.074219px;}
.h2_c01304{height:57.258075px;}
.h5_c01304{height:274.500000px;}
.h3_c01304{height:370.500000px;}
.h0_c01304{height:1263.000000px;}
.w1_c01304{width:676.500000px;}
.w0_c01304{width:892.500000px;}
.x0_c01304{left:0.000000px;}
.x2_c01304{left:112.266705px;}
.x1_c01304{left:150.519750px;}
.x3_c01304{left:247.180950px;}
.x4_c01304{left:416.782800px;}
.x5_c01304{left:801.992850px;}
@media print{
.v2_c01304{vertical-align:-29.333333pt;}
.v0_c01304{vertical-align:0.000000pt;}
.v1_c01304{vertical-align:20.521067pt;}
.ls3_c01304{letter-spacing:-0.008533pt;}
.ls2_c01304{letter-spacing:0.000000pt;}
.ls1_c01304{letter-spacing:0.010667pt;}
.ls0_c01304{letter-spacing:0.019200pt;}
.ws0_c01304{word-spacing:-11.724800pt;}
.ws1_c01304{word-spacing:-8.888889pt;}
.ws2_c01304{word-spacing:0.000000pt;}
._5_c01304{margin-left:-9.408000pt;}
._2_c01304{margin-left:-3.910400pt;}
._0_c01304{margin-left:-1.900800pt;}
._8_c01304{margin-left:-0.981691pt;}
._4_c01304{width:1.280000pt;}
._1_c01304{width:3.174400pt;}
._7_c01304{width:4.224000pt;}
._3_c01304{width:5.145600pt;}
._6_c01304{width:6.246400pt;}
.fs5_c01304{font-size:35.555557pt;}
.fs1_c01304{font-size:42.666667pt;}
.fs2_c01304{font-size:48.000000pt;}
.fs4_c01304{font-size:53.333333pt;}
.fs3_c01304{font-size:58.666667pt;}
.fs0_c01304{font-size:64.000000pt;}
.y0_c01304{bottom:0.000000pt;}
.y4_c01304{bottom:10.666667pt;}
.ya_c01304{bottom:60.000000pt;}
.yb_c01304{bottom:124.666667pt;}
.y8_c01304{bottom:216.000000pt;}
.y7_c01304{bottom:256.000000pt;}
.y6_c01304{bottom:528.000000pt;}
.y5_c01304{bottom:552.000000pt;}
.y3_c01304{bottom:592.000000pt;}
.y2_c01304{bottom:949.333333pt;}
.y1_c01304{bottom:973.333333pt;}
.y9_c01304{bottom:1061.333333pt;}
.h7_c01304{height:31.805557pt;}
.h4_c01304{height:37.593750pt;}
.h1_c01304{height:45.562500pt;}
.h6_c01304{height:49.843750pt;}
.h2_c01304{height:50.896067pt;}
.h5_c01304{height:244.000000pt;}
.h3_c01304{height:329.333333pt;}
.h0_c01304{height:1122.666667pt;}
.w1_c01304{width:601.333333pt;}
.w0_c01304{width:793.333333pt;}
.x0_c01304{left:0.000000pt;}
.x2_c01304{left:99.792627pt;}
.x1_c01304{left:133.795333pt;}
.x3_c01304{left:219.716400pt;}
.x4_c01304{left:370.473600pt;}
.x5_c01304{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9e9e3bc4683a0d1d38717d2e.woff2')format("woff");}.ff1_c01305{font-family:ff1_c01305;line-height:0.987793;font-style:normal;font-weight:normal;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_d6120819c38cabb8954939da.woff2')format("woff");}.ff2_c01305{font-family:ff2_c01305;line-height:0.934082;font-style:normal;font-weight:normal;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_7a2d3ae4a28cf06e83c13d49.woff2')format("woff");}.ff3_c01305{font-family:ff3_c01305;line-height:0.756836;font-style:normal;font-weight:normal;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_0e16d73b5d8277c680e821cf.woff2')format("woff");}.ff4_c01305{font-family:ff4_c01305;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01305;src:url('chunks/assets/font_6467499407dd9f6288dcc4fc.woff2')format("woff");}.ff5_c01305{font-family:ff5_c01305;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c01305;src:url('chunks/assets/font_4bc079d1b21fa46d78b45277.woff2')format("woff");}.ff6_c01305{font-family:ff6_c01305;line-height:0.678223;font-style: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);}
.m1_c01305{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3_c01305{vertical-align:-33.000000px;}
.v2_c01305{vertical-align:-23.086200px;}
.v0_c01305{vertical-align:0.000000px;}
.v1_c01305{vertical-align:23.086200px;}
.ls1_c01305{letter-spacing:-0.009600px;}
.ls0_c01305{letter-spacing:0.000000px;}
.ls2_c01305{letter-spacing:0.012000px;}
.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;}
}
.ws0_c01305{word-spacing:-13.190400px;}
.ws1_c01305{word-spacing:-2.000002px;}
.ws2_c01305{word-spacing:0.000000px;}
._0_c01305{margin-left:-10.584000px;}
._d_c01305{margin-left:-5.416800px;}
._a_c01305{margin-left:-3.919440px;}
._8_c01305{margin-left:-2.592000px;}
._6_c01305{margin-left:-1.188000px;}
._3_c01305{width:1.713600px;}
._1_c01305{width:2.923200px;}
._2_c01305{width:4.147200px;}
._4_c01305{width:5.270400px;}
._5_c01305{width:7.056000px;}
._7_c01305{width:8.236800px;}
._9_c01305{width:9.597600px;}
._c_c01305{width:11.674080px;}
._b_c01305{width:12.891840px;}
._f_c01305{width:16.338960px;}
._e_c01305{width:18.348000px;}
.fc0_c01305{color:rgb(0,0,0);}
.fs4_c01305{font-size:40.000002px;}
.fs2_c01305{font-size:48.000000px;}
.fs0_c01305{font-size:54.000000px;}
.fs3_c01305{font-size:60.000000px;}
.fs1_c01305{font-size:72.000000px;}
.y0_c01305{bottom:0.000000px;}
.y2_c01305{bottom:12.000000px;}
.y7_c01305{bottom:67.500000px;}
.yb_c01305{bottom:132.000000px;}
.ya_c01305{bottom:151.500000px;}
.y9_c01305{bottom:171.000000px;}
.y8_c01305{bottom:198.750000px;}
.y5_c01305{bottom:285.000000px;}
.y4_c01305{bottom:868.500000px;}
.y3_c01305{bottom:895.500000px;}
.y1_c01305{bottom:940.500000px;}
.y6_c01305{bottom:1194.000000px;}
.h8_c01305{height:35.781252px;}
.h2_c01305{height:42.292969px;}
.h7_c01305{height:44.208984px;}
.h3_c01305{height:51.257812px;}
.h9_c01305{height:53.671875px;}
.h6_c01305{height:56.074219px;}
.h4_c01305{height:57.258075px;}
.h1_c01305{height:172.500000px;}
.h5_c01305{height:552.000000px;}
.h0_c01305{height:1263.000000px;}
.w1_c01305{width:676.500000px;}
.w0_c01305{width:892.500000px;}
.x0_c01305{left:0.000000px;}
.x1_c01305{left:66.000000px;}
.x2_c01305{left:217.946400px;}
.x3_c01305{left:227.448450px;}
@media print{
.v3_c01305{vertical-align:-29.333333pt;}
.v2_c01305{vertical-align:-20.521067pt;}
.v0_c01305{vertical-align:0.000000pt;}
.v1_c01305{vertical-align:20.521067pt;}
.ls1_c01305{letter-spacing:-0.008533pt;}
.ls0_c01305{letter-spacing:0.000000pt;}
.ls2_c01305{letter-spacing:0.010667pt;}
.ws0_c01305{word-spacing:-11.724800pt;}
.ws1_c01305{word-spacing:-1.777780pt;}
.ws2_c01305{word-spacing:0.000000pt;}
._0_c01305{margin-left:-9.408000pt;}
._d_c01305{margin-left:-4.814933pt;}
._a_c01305{margin-left:-3.483947pt;}
._8_c01305{margin-left:-2.304000pt;}
._6_c01305{margin-left:-1.056000pt;}
._3_c01305{width:1.523200pt;}
._1_c01305{width:2.598400pt;}
._2_c01305{width:3.686400pt;}
._4_c01305{width:4.684800pt;}
._5_c01305{width:6.272000pt;}
._7_c01305{width:7.321600pt;}
._9_c01305{width:8.531200pt;}
._c_c01305{width:10.376960pt;}
._b_c01305{width:11.459413pt;}
._f_c01305{width:14.523520pt;}
._e_c01305{width:16.309333pt;}
.fs4_c01305{font-size:35.555557pt;}
.fs2_c01305{font-size:42.666667pt;}
.fs0_c01305{font-size:48.000000pt;}
.fs3_c01305{font-size:53.333333pt;}
.fs1_c01305{font-size:64.000000pt;}
.y0_c01305{bottom:0.000000pt;}
.y2_c01305{bottom:10.666667pt;}
.y7_c01305{bottom:60.000000pt;}
.yb_c01305{bottom:117.333333pt;}
.ya_c01305{bottom:134.666667pt;}
.y9_c01305{bottom:152.000000pt;}
.y8_c01305{bottom:176.666667pt;}
.y5_c01305{bottom:253.333333pt;}
.y4_c01305{bottom:772.000000pt;}
.y3_c01305{bottom:796.000000pt;}
.y1_c01305{bottom:836.000000pt;}
.y6_c01305{bottom:1061.333333pt;}
.h8_c01305{height:31.805557pt;}
.h2_c01305{height:37.593750pt;}
.h7_c01305{height:39.296875pt;}
.h3_c01305{height:45.562500pt;}
.h9_c01305{height:47.708333pt;}
.h6_c01305{height:49.843750pt;}
.h4_c01305{height:50.896067pt;}
.h1_c01305{height:153.333333pt;}
.h5_c01305{height:490.666667pt;}
.h0_c01305{height:1122.666667pt;}
.w1_c01305{width:601.333333pt;}
.w0_c01305{width:793.333333pt;}
.x0_c01305{left:0.000000pt;}
.x1_c01305{left:58.666667pt;}
.x2_c01305{left:193.730133pt;}
.x3_c01305{left:202.176400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2a79e074434d03752e7f2faf.woff2')format("woff");}.ff1_c01306{font-family:ff1_c01306;line-height:1.161133;font-style:normal;font-weight:normal;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_121551c0e010a389307c1cb9.woff2')format("woff");}.ff2_c01306{font-family:ff2_c01306;line-height:0.932129;font-style:normal;font-weight:normal;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_d50f1137b49f6ef3856b8f1d.woff2')format("woff");}.ff3_c01306{font-family:ff3_c01306;line-height:1.010254;font-style:normal;font-weight:normal;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_ac8a3b9dbbad51f6c9aea929.woff2')format("woff");}.ff4_c01306{font-family:ff4_c01306;line-height:0.986816;font-style:normal;font-weight:normal;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_dff1f12fbe7962f8050a1d69.woff2')format("woff");}.ff5_c01306{font-family:ff5_c01306;line-height:1.155762;font-style: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);}
.v0_c01306{vertical-align:0.000000px;}
.ls5_c01306{letter-spacing:0.000000px;}
.ls4_c01306{letter-spacing:0.012000px;}
.ls0_c01306{letter-spacing:0.014400px;}
.ls2_c01306{letter-spacing:0.878400px;}
.ls3_c01306{letter-spacing:0.885600px;}
.ls1_c01306{letter-spacing:1.332000px;}
.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;}
}
.ws1_c01306{word-spacing:-18.000000px;}
.ws0_c01306{word-spacing:-0.086400px;}
.ws2_c01306{word-spacing:0.000000px;}
._6_c01306{margin-left:-9.295200px;}
._18_c01306{margin-left:-7.236000px;}
._11_c01306{margin-left:-4.896000px;}
._1_c01306{margin-left:-3.693600px;}
._5_c01306{margin-left:-2.570400px;}
._3_c01306{margin-left:-1.260000px;}
._f_c01306{width:1.310400px;}
._0_c01306{width:2.491200px;}
._8_c01306{width:3.729000px;}
._4_c01306{width:5.025600px;}
._2_c01306{width:6.163200px;}
._1a_c01306{width:7.948800px;}
._7_c01306{width:9.306000px;}
._a_c01306{width:10.548000px;}
._9_c01306{width:11.560800px;}
._15_c01306{width:13.644000px;}
._14_c01306{width:14.889600px;}
._e_c01306{width:16.114200px;}
._c_c01306{width:19.821600px;}
._b_c01306{width:21.081600px;}
._21_c01306{width:22.269600px;}
._d_c01306{width:23.551200px;}
._10_c01306{width:25.660800px;}
._13_c01306{width:26.669400px;}
._17_c01306{width:27.762600px;}
._19_c01306{width:29.016000px;}
._12_c01306{width:30.052800px;}
._16_c01306{width:31.262400px;}
._20_c01306{width:32.299200px;}
._1c_c01306{width:34.423200px;}
._1b_c01306{width:35.640000px;}
._1f_c01306{width:37.152000px;}
._1d_c01306{width:38.764800px;}
._1e_c01306{width:40.269600px;}
.fc0_c01306{color:rgb(0,0,0);}
.fs1_c01306{font-size:60.000000px;}
.fs0_c01306{font-size:72.000000px;}
.y0_c01306{bottom:0.000000px;}
.y28_c01306{bottom:67.500000px;}
.y26_c01306{bottom:144.000000px;}
.y25_c01306{bottom:165.000000px;}
.y24_c01306{bottom:186.000000px;}
.y23_c01306{bottom:207.000000px;}
.y22_c01306{bottom:228.000000px;}
.y21_c01306{bottom:249.000000px;}
.y20_c01306{bottom:270.000000px;}
.y1f_c01306{bottom:291.000000px;}
.y1e_c01306{bottom:312.000000px;}
.y1d_c01306{bottom:333.000000px;}
.y1c_c01306{bottom:354.000000px;}
.y1b_c01306{bottom:375.000000px;}
.y1a_c01306{bottom:396.000000px;}
.y19_c01306{bottom:438.000000px;}
.y18_c01306{bottom:459.000000px;}
.y17_c01306{bottom:480.000000px;}
.y16_c01306{bottom:501.000000px;}
.y15_c01306{bottom:522.000000px;}
.y14_c01306{bottom:543.000000px;}
.y13_c01306{bottom:564.000000px;}
.y12_c01306{bottom:585.000000px;}
.y11_c01306{bottom:627.000000px;}
.y10_c01306{bottom:648.000000px;}
.yf_c01306{bottom:669.000000px;}
.ye_c01306{bottom:690.000000px;}
.yd_c01306{bottom:711.000000px;}
.yc_c01306{bottom:732.000000px;}
.yb_c01306{bottom:753.000000px;}
.ya_c01306{bottom:774.000000px;}
.y9_c01306{bottom:795.000000px;}
.y8_c01306{bottom:816.000000px;}
.y7_c01306{bottom:837.000000px;}
.y6_c01306{bottom:894.000000px;}
.y5_c01306{bottom:915.000000px;}
.y4_c01306{bottom:951.000000px;}
.y3_c01306{bottom:978.000000px;}
.y2_c01306{bottom:1017.000000px;}
.y1_c01306{bottom:1095.000000px;}
.y27_c01306{bottom:1194.000000px;}
.h2_c01306{height:51.257812px;}
.h4_c01306{height:52.417969px;}
.h5_c01306{height:56.074219px;}
.h3_c01306{height:56.455078px;}
.h1_c01306{height:67.746094px;}
.h0_c01306{height:1263.000000px;}
.w0_c01306{width:892.500000px;}
.x0_c01306{left:0.000000px;}
.x1_c01306{left:150.519750px;}
.x2_c01306{left:416.782800px;}
.x3_c01306{left:801.992850px;}
@media print{
.v0_c01306{vertical-align:0.000000pt;}
.ls5_c01306{letter-spacing:0.000000pt;}
.ls4_c01306{letter-spacing:0.010667pt;}
.ls0_c01306{letter-spacing:0.012800pt;}
.ls2_c01306{letter-spacing:0.780800pt;}
.ls3_c01306{letter-spacing:0.787200pt;}
.ls1_c01306{letter-spacing:1.184000pt;}
.ws1_c01306{word-spacing:-16.000000pt;}
.ws0_c01306{word-spacing:-0.076800pt;}
.ws2_c01306{word-spacing:0.000000pt;}
._6_c01306{margin-left:-8.262400pt;}
._18_c01306{margin-left:-6.432000pt;}
._11_c01306{margin-left:-4.352000pt;}
._1_c01306{margin-left:-3.283200pt;}
._5_c01306{margin-left:-2.284800pt;}
._3_c01306{margin-left:-1.120000pt;}
._f_c01306{width:1.164800pt;}
._0_c01306{width:2.214400pt;}
._8_c01306{width:3.314667pt;}
._4_c01306{width:4.467200pt;}
._2_c01306{width:5.478400pt;}
._1a_c01306{width:7.065600pt;}
._7_c01306{width:8.272000pt;}
._a_c01306{width:9.376000pt;}
._9_c01306{width:10.276267pt;}
._15_c01306{width:12.128000pt;}
._14_c01306{width:13.235200pt;}
._e_c01306{width:14.323733pt;}
._c_c01306{width:17.619200pt;}
._b_c01306{width:18.739200pt;}
._21_c01306{width:19.795200pt;}
._d_c01306{width:20.934400pt;}
._10_c01306{width:22.809600pt;}
._13_c01306{width:23.706133pt;}
._17_c01306{width:24.677867pt;}
._19_c01306{width:25.792000pt;}
._12_c01306{width:26.713600pt;}
._16_c01306{width:27.788800pt;}
._20_c01306{width:28.710400pt;}
._1c_c01306{width:30.598400pt;}
._1b_c01306{width:31.680000pt;}
._1f_c01306{width:33.024000pt;}
._1d_c01306{width:34.457600pt;}
._1e_c01306{width:35.795200pt;}
.fs1_c01306{font-size:53.333333pt;}
.fs0_c01306{font-size:64.000000pt;}
.y0_c01306{bottom:0.000000pt;}
.y28_c01306{bottom:60.000000pt;}
.y26_c01306{bottom:128.000000pt;}
.y25_c01306{bottom:146.666667pt;}
.y24_c01306{bottom:165.333333pt;}
.y23_c01306{bottom:184.000000pt;}
.y22_c01306{bottom:202.666667pt;}
.y21_c01306{bottom:221.333333pt;}
.y20_c01306{bottom:240.000000pt;}
.y1f_c01306{bottom:258.666667pt;}
.y1e_c01306{bottom:277.333333pt;}
.y1d_c01306{bottom:296.000000pt;}
.y1c_c01306{bottom:314.666667pt;}
.y1b_c01306{bottom:333.333333pt;}
.y1a_c01306{bottom:352.000000pt;}
.y19_c01306{bottom:389.333333pt;}
.y18_c01306{bottom:408.000000pt;}
.y17_c01306{bottom:426.666667pt;}
.y16_c01306{bottom:445.333333pt;}
.y15_c01306{bottom:464.000000pt;}
.y14_c01306{bottom:482.666667pt;}
.y13_c01306{bottom:501.333333pt;}
.y12_c01306{bottom:520.000000pt;}
.y11_c01306{bottom:557.333333pt;}
.y10_c01306{bottom:576.000000pt;}
.yf_c01306{bottom:594.666667pt;}
.ye_c01306{bottom:613.333333pt;}
.yd_c01306{bottom:632.000000pt;}
.yc_c01306{bottom:650.666667pt;}
.yb_c01306{bottom:669.333333pt;}
.ya_c01306{bottom:688.000000pt;}
.y9_c01306{bottom:706.666667pt;}
.y8_c01306{bottom:725.333333pt;}
.y7_c01306{bottom:744.000000pt;}
.y6_c01306{bottom:794.666667pt;}
.y5_c01306{bottom:813.333333pt;}
.y4_c01306{bottom:845.333333pt;}
.y3_c01306{bottom:869.333333pt;}
.y2_c01306{bottom:904.000000pt;}
.y1_c01306{bottom:973.333333pt;}
.y27_c01306{bottom:1061.333333pt;}
.h2_c01306{height:45.562500pt;}
.h4_c01306{height:46.593750pt;}
.h5_c01306{height:49.843750pt;}
.h3_c01306{height:50.182292pt;}
.h1_c01306{height:60.218750pt;}
.h0_c01306{height:1122.666667pt;}
.w0_c01306{width:793.333333pt;}
.x0_c01306{left:0.000000pt;}
.x1_c01306{left:133.795333pt;}
.x2_c01306{left:370.473600pt;}
.x3_c01306{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9647495e9e01b70e420c8eda.woff2')format("woff");}.ff1_c01307{font-family:ff1_c01307;line-height:1.010254;font-style:normal;font-weight:normal;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_f826c6aa5d8ba9ba0185dcf6.woff2')format("woff");}.ff2_c01307{font-family:ff2_c01307;line-height:0.986816;font-style:normal;font-weight:normal;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_cfb606e6faaecf7bc4e609c5.woff2')format("woff");}.ff3_c01307{font-family:ff3_c01307;line-height:0.756836;font-style:normal;font-weight:normal;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_c861542f82c67b3a560264f0.woff2')format("woff");}.ff4_c01307{font-family:ff4_c01307;line-height:1.155762;font-style: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);}
.v0_c01307{vertical-align:0.000000px;}
.ls4_c01307{letter-spacing:0.000000px;}
.ls5_c01307{letter-spacing:0.012000px;}
.ls1_c01307{letter-spacing:0.014400px;}
.ls3_c01307{letter-spacing:1.245600px;}
.ls2_c01307{letter-spacing:1.353600px;}
.ls0_c01307{letter-spacing:1.620000px;}
.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;}
}
.ws0_c01307{word-spacing:-0.086400px;}
.ws1_c01307{word-spacing:0.000000px;}
._1e_c01307{margin-left:-6.696000px;}
._19_c01307{margin-left:-5.666400px;}
._9_c01307{margin-left:-4.104000px;}
._5_c01307{margin-left:-2.944800px;}
._0_c01307{margin-left:-1.382400px;}
._3_c01307{width:1.324800px;}
._c_c01307{width:3.096000px;}
._10_c01307{width:4.852800px;}
._1c_c01307{width:6.048000px;}
._13_c01307{width:7.077600px;}
._11_c01307{width:8.287200px;}
._1b_c01307{width:10.087200px;}
._12_c01307{width:11.210400px;}
._14_c01307{width:12.880800px;}
._1a_c01307{width:14.263200px;}
._f_c01307{width:16.207200px;}
._d_c01307{width:19.044000px;}
._1d_c01307{width:20.174400px;}
._e_c01307{width:21.268800px;}
._15_c01307{width:23.580000px;}
._16_c01307{width:24.796800px;}
._4_c01307{width:26.013600px;}
._1_c01307{width:27.331200px;}
._2_c01307{width:28.778400px;}
._6_c01307{width:30.348000px;}
._17_c01307{width:32.407200px;}
._b_c01307{width:33.624000px;}
._8_c01307{width:34.934400px;}
._7_c01307{width:36.583200px;}
._a_c01307{width:37.656000px;}
._18_c01307{width:39.535200px;}
.fc0_c01307{color:rgb(0,0,0);}
.fs1_c01307{font-size:60.000000px;}
.fs0_c01307{font-size:72.000000px;}
.y0_c01307{bottom:0.000000px;}
.y2b_c01307{bottom:67.500000px;}
.y29_c01307{bottom:151.500000px;}
.y28_c01307{bottom:193.500000px;}
.y27_c01307{bottom:214.500000px;}
.y26_c01307{bottom:235.500000px;}
.y25_c01307{bottom:256.500000px;}
.y24_c01307{bottom:298.500000px;}
.y23_c01307{bottom:319.500000px;}
.y22_c01307{bottom:340.500000px;}
.y21_c01307{bottom:361.500000px;}
.y20_c01307{bottom:382.500000px;}
.y1f_c01307{bottom:403.500000px;}
.y1e_c01307{bottom:445.500000px;}
.y1d_c01307{bottom:466.500000px;}
.y1c_c01307{bottom:487.500000px;}
.y1b_c01307{bottom:508.500000px;}
.y1a_c01307{bottom:529.500000px;}
.y19_c01307{bottom:550.500000px;}
.y18_c01307{bottom:571.500000px;}
.y17_c01307{bottom:592.500000px;}
.y16_c01307{bottom:613.500000px;}
.y15_c01307{bottom:634.500000px;}
.y14_c01307{bottom:655.500000px;}
.y13_c01307{bottom:676.500000px;}
.y12_c01307{bottom:697.500000px;}
.y11_c01307{bottom:718.500000px;}
.y10_c01307{bottom:739.500000px;}
.yf_c01307{bottom:781.500000px;}
.ye_c01307{bottom:802.500000px;}
.yd_c01307{bottom:823.500000px;}
.yc_c01307{bottom:844.500000px;}
.yb_c01307{bottom:865.500000px;}
.ya_c01307{bottom:886.500000px;}
.y9_c01307{bottom:907.500000px;}
.y8_c01307{bottom:928.500000px;}
.y7_c01307{bottom:949.500000px;}
.y6_c01307{bottom:970.500000px;}
.y5_c01307{bottom:991.500000px;}
.y4_c01307{bottom:1012.500000px;}
.y3_c01307{bottom:1033.500000px;}
.y2_c01307{bottom:1054.500000px;}
.y1_c01307{bottom:1096.500000px;}
.y2a_c01307{bottom:1194.000000px;}
.h3_c01307{height:44.208984px;}
.h1_c01307{height:52.417969px;}
.h2_c01307{height:56.074219px;}
.h0_c01307{height:1263.000000px;}
.w0_c01307{width:892.500000px;}
.x0_c01307{left:0.000000px;}
.x1_c01307{left:65.480310px;}
@media print{
.v0_c01307{vertical-align:0.000000pt;}
.ls4_c01307{letter-spacing:0.000000pt;}
.ls5_c01307{letter-spacing:0.010667pt;}
.ls1_c01307{letter-spacing:0.012800pt;}
.ls3_c01307{letter-spacing:1.107200pt;}
.ls2_c01307{letter-spacing:1.203200pt;}
.ls0_c01307{letter-spacing:1.440000pt;}
.ws0_c01307{word-spacing:-0.076800pt;}
.ws1_c01307{word-spacing:0.000000pt;}
._1e_c01307{margin-left:-5.952000pt;}
._19_c01307{margin-left:-5.036800pt;}
._9_c01307{margin-left:-3.648000pt;}
._5_c01307{margin-left:-2.617600pt;}
._0_c01307{margin-left:-1.228800pt;}
._3_c01307{width:1.177600pt;}
._c_c01307{width:2.752000pt;}
._10_c01307{width:4.313600pt;}
._1c_c01307{width:5.376000pt;}
._13_c01307{width:6.291200pt;}
._11_c01307{width:7.366400pt;}
._1b_c01307{width:8.966400pt;}
._12_c01307{width:9.964800pt;}
._14_c01307{width:11.449600pt;}
._1a_c01307{width:12.678400pt;}
._f_c01307{width:14.406400pt;}
._d_c01307{width:16.928000pt;}
._1d_c01307{width:17.932800pt;}
._e_c01307{width:18.905600pt;}
._15_c01307{width:20.960000pt;}
._16_c01307{width:22.041600pt;}
._4_c01307{width:23.123200pt;}
._1_c01307{width:24.294400pt;}
._2_c01307{width:25.580800pt;}
._6_c01307{width:26.976000pt;}
._17_c01307{width:28.806400pt;}
._b_c01307{width:29.888000pt;}
._8_c01307{width:31.052800pt;}
._7_c01307{width:32.518400pt;}
._a_c01307{width:33.472000pt;}
._18_c01307{width:35.142400pt;}
.fs1_c01307{font-size:53.333333pt;}
.fs0_c01307{font-size:64.000000pt;}
.y0_c01307{bottom:0.000000pt;}
.y2b_c01307{bottom:60.000000pt;}
.y29_c01307{bottom:134.666667pt;}
.y28_c01307{bottom:172.000000pt;}
.y27_c01307{bottom:190.666667pt;}
.y26_c01307{bottom:209.333333pt;}
.y25_c01307{bottom:228.000000pt;}
.y24_c01307{bottom:265.333333pt;}
.y23_c01307{bottom:284.000000pt;}
.y22_c01307{bottom:302.666667pt;}
.y21_c01307{bottom:321.333333pt;}
.y20_c01307{bottom:340.000000pt;}
.y1f_c01307{bottom:358.666667pt;}
.y1e_c01307{bottom:396.000000pt;}
.y1d_c01307{bottom:414.666667pt;}
.y1c_c01307{bottom:433.333333pt;}
.y1b_c01307{bottom:452.000000pt;}
.y1a_c01307{bottom:470.666667pt;}
.y19_c01307{bottom:489.333333pt;}
.y18_c01307{bottom:508.000000pt;}
.y17_c01307{bottom:526.666667pt;}
.y16_c01307{bottom:545.333333pt;}
.y15_c01307{bottom:564.000000pt;}
.y14_c01307{bottom:582.666667pt;}
.y13_c01307{bottom:601.333333pt;}
.y12_c01307{bottom:620.000000pt;}
.y11_c01307{bottom:638.666667pt;}
.y10_c01307{bottom:657.333333pt;}
.yf_c01307{bottom:694.666667pt;}
.ye_c01307{bottom:713.333333pt;}
.yd_c01307{bottom:732.000000pt;}
.yc_c01307{bottom:750.666667pt;}
.yb_c01307{bottom:769.333333pt;}
.ya_c01307{bottom:788.000000pt;}
.y9_c01307{bottom:806.666667pt;}
.y8_c01307{bottom:825.333333pt;}
.y7_c01307{bottom:844.000000pt;}
.y6_c01307{bottom:862.666667pt;}
.y5_c01307{bottom:881.333333pt;}
.y4_c01307{bottom:900.000000pt;}
.y3_c01307{bottom:918.666667pt;}
.y2_c01307{bottom:937.333333pt;}
.y1_c01307{bottom:974.666667pt;}
.y2a_c01307{bottom:1061.333333pt;}
.h3_c01307{height:39.296875pt;}
.h1_c01307{height:46.593750pt;}
.h2_c01307{height:49.843750pt;}
.h0_c01307{height:1122.666667pt;}
.w0_c01307{width:793.333333pt;}
.x0_c01307{left:0.000000pt;}
.x1_c01307{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_74fd1b35a99c973dae0ed250.woff2')format("woff");}.ff1_c01308{font-family:ff1_c01308;line-height:1.010254;font-style:normal;font-weight:normal;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_276c330898732aaa61470537.woff2')format("woff");}.ff2_c01308{font-family:ff2_c01308;line-height:1.155762;font-style: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;}
.ls1_c01308{letter-spacing:0.000000px;}
.ls0_c01308{letter-spacing:0.012000px;}
.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;}
}
.ws0_c01308{word-spacing:-18.000000px;}
.ws1_c01308{word-spacing:0.000000px;}
._10_c01308{margin-left:-7.480800px;}
._b_c01308{margin-left:-5.954400px;}
._3_c01308{margin-left:-3.175200px;}
._1_c01308{margin-left:-1.872000px;}
._2_c01308{width:1.836000px;}
._5_c01308{width:3.290400px;}
._0_c01308{width:4.320000px;}
._4_c01308{width:6.163200px;}
._a_c01308{width:13.039200px;}
._8_c01308{width:14.875200px;}
._7_c01308{width:16.509600px;}
._12_c01308{width:19.008000px;}
._9_c01308{width:20.232000px;}
._6_c01308{width:22.118400px;}
._11_c01308{width:23.464800px;}
._13_c01308{width:24.768000px;}
._d_c01308{width:28.044000px;}
._f_c01308{width:30.729600px;}
._e_c01308{width:32.551200px;}
._c_c01308{width:34.430400px;}
.fc0_c01308{color:rgb(0,0,0);}
.fs1_c01308{font-size:60.000000px;}
.fs0_c01308{font-size:72.000000px;}
.y0_c01308{bottom:0.000000px;}
.yc_c01308{bottom:67.500000px;}
.ya_c01308{bottom:865.500000px;}
.y9_c01308{bottom:886.500000px;}
.y8_c01308{bottom:928.500000px;}
.y7_c01308{bottom:949.500000px;}
.y6_c01308{bottom:970.500000px;}
.y5_c01308{bottom:991.500000px;}
.y4_c01308{bottom:1012.500000px;}
.y3_c01308{bottom:1054.500000px;}
.y2_c01308{bottom:1075.500000px;}
.y1_c01308{bottom:1096.500000px;}
.yb_c01308{bottom:1194.000000px;}
.h1_c01308{height:52.417969px;}
.h2_c01308{height:56.074219px;}
.h0_c01308{height:1263.000000px;}
.w0_c01308{width:892.500000px;}
.x0_c01308{left:0.000000px;}
.x1_c01308{left:150.519750px;}
.x2_c01308{left:416.782800px;}
.x3_c01308{left:801.992850px;}
@media print{
.v0_c01308{vertical-align:0.000000pt;}
.ls1_c01308{letter-spacing:0.000000pt;}
.ls0_c01308{letter-spacing:0.010667pt;}
.ws0_c01308{word-spacing:-16.000000pt;}
.ws1_c01308{word-spacing:0.000000pt;}
._10_c01308{margin-left:-6.649600pt;}
._b_c01308{margin-left:-5.292800pt;}
._3_c01308{margin-left:-2.822400pt;}
._1_c01308{margin-left:-1.664000pt;}
._2_c01308{width:1.632000pt;}
._5_c01308{width:2.924800pt;}
._0_c01308{width:3.840000pt;}
._4_c01308{width:5.478400pt;}
._a_c01308{width:11.590400pt;}
._8_c01308{width:13.222400pt;}
._7_c01308{width:14.675200pt;}
._12_c01308{width:16.896000pt;}
._9_c01308{width:17.984000pt;}
._6_c01308{width:19.660800pt;}
._11_c01308{width:20.857600pt;}
._13_c01308{width:22.016000pt;}
._d_c01308{width:24.928000pt;}
._f_c01308{width:27.315200pt;}
._e_c01308{width:28.934400pt;}
._c_c01308{width:30.604800pt;}
.fs1_c01308{font-size:53.333333pt;}
.fs0_c01308{font-size:64.000000pt;}
.y0_c01308{bottom:0.000000pt;}
.yc_c01308{bottom:60.000000pt;}
.ya_c01308{bottom:769.333333pt;}
.y9_c01308{bottom:788.000000pt;}
.y8_c01308{bottom:825.333333pt;}
.y7_c01308{bottom:844.000000pt;}
.y6_c01308{bottom:862.666667pt;}
.y5_c01308{bottom:881.333333pt;}
.y4_c01308{bottom:900.000000pt;}
.y3_c01308{bottom:937.333333pt;}
.y2_c01308{bottom:956.000000pt;}
.y1_c01308{bottom:974.666667pt;}
.yb_c01308{bottom:1061.333333pt;}
.h1_c01308{height:46.593750pt;}
.h2_c01308{height:49.843750pt;}
.h0_c01308{height:1122.666667pt;}
.w0_c01308{width:793.333333pt;}
.x0_c01308{left:0.000000pt;}
.x1_c01308{left:133.795333pt;}
.x2_c01308{left:370.473600pt;}
.x3_c01308{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c14aa488e054fe91f4d5e7e8.woff2')format("woff");}.ff1_c01309{font-family:ff1_c01309;line-height:0.939453;font-style:normal;font-weight:normal;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_ff0ec927a24c5b6a0054d248.woff2')format("woff");}.ff2_c01309{font-family:ff2_c01309;line-height:1.163086;font-style:normal;font-weight:normal;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_1d33e96b52341a3e5abb3f2a.woff2')format("woff");}.ff3_c01309{font-family:ff3_c01309;line-height:0.756836;font-style:normal;font-weight:normal;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_16430cfa8890d9a166a70bb6.woff2')format("woff");}.ff4_c01309{font-family:ff4_c01309;line-height:1.155762;font-style:normal;font-weight:normal;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_aac58d0394cab13451b832ea.woff2')format("woff");}.ff5_c01309{font-family:ff5_c01309;line-height:1.115723;font-style:normal;font-weight: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_c01309;src:url('chunks/assets/font_461e8bba84334196a2bd2499.woff2')format("woff");}.ff6_c01309{font-family:ff6_c01309;line-height:0.892578;font-style: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);}
.v3_c01309{vertical-align:-33.000000px;}
.v2_c01309{vertical-align:-23.086200px;}
.v0_c01309{vertical-align:0.000000px;}
.v1_c01309{vertical-align:23.086200px;}
.ls7_c01309{letter-spacing:-0.014400px;}
.ls6_c01309{letter-spacing:0.000000px;}
.ls0_c01309{letter-spacing:0.007800px;}
.ls8_c01309{letter-spacing:0.012000px;}
.ls1_c01309{letter-spacing:0.014400px;}
.ls2_c01309{letter-spacing:3.329340px;}
.ls3_c01309{letter-spacing:3.399600px;}
.ls5_c01309{letter-spacing:3.999999px;}
.ls4_c01309{letter-spacing:33.552000px;}
.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;}
}
.ws1_c01309{word-spacing:-15.000000px;}
.ws0_c01309{word-spacing:-10.000001px;}
.ws2_c01309{word-spacing:0.000000px;}
._13_c01309{margin-left:-9.784800px;}
._14_c01309{margin-left:-6.984240px;}
._c_c01309{margin-left:-5.868000px;}
._7_c01309{margin-left:-3.772800px;}
._0_c01309{margin-left:-2.577600px;}
._4_c01309{margin-left:-1.000800px;}
._6_c01309{width:1.008000px;}
._3_c01309{width:2.671200px;}
._1_c01309{width:4.255200px;}
._5_c01309{width:5.364000px;}
._f_c01309{width:6.364800px;}
._2_c01309{width:7.408800px;}
._e_c01309{width:8.978400px;}
._d_c01309{width:10.008000px;}
._15_c01309{width:11.385000px;}
._12_c01309{width:12.580800px;}
._11_c01309{width:14.899200px;}
._10_c01309{width:16.874400px;}
._a_c01309{width:32.630400px;}
._8_c01309{width:35.388000px;}
._9_c01309{width:37.915200px;}
._b_c01309{width:39.168000px;}
.fc1_c01309{color:rgb(255,255,255);}
.fc0_c01309{color:rgb(0,0,0);}
.fs5_c01309{font-size:40.000002px;}
.fs2_c01309{font-size:48.000000px;}
.fs4_c01309{font-size:60.000000px;}
.fs1_c01309{font-size:72.000000px;}
.fs0_c01309{font-size:78.000000px;}
.fs3_c01309{font-size:96.000000px;}
.y0_c01309{bottom:0.000000px;}
.y14_c01309{bottom:67.500000px;}
.y1a_c01309{bottom:132.000000px;}
.y19_c01309{bottom:159.750000px;}
.y18_c01309{bottom:201.000000px;}
.y17_c01309{bottom:228.750000px;}
.y16_c01309{bottom:270.000000px;}
.y15_c01309{bottom:297.750000px;}
.y11_c01309{bottom:412.500000px;}
.y10_c01309{bottom:439.500000px;}
.yf_c01309{bottom:487.500000px;}
.ye_c01309{bottom:514.500000px;}
.yd_c01309{bottom:541.500000px;}
.yc_c01309{bottom:568.500000px;}
.yb_c01309{bottom:595.500000px;}
.ya_c01309{bottom:622.500000px;}
.y9_c01309{bottom:688.500000px;}
.y8_c01309{bottom:738.000000px;}
.y7_c01309{bottom:765.000000px;}
.y6_c01309{bottom:813.000000px;}
.y5_c01309{bottom:840.000000px;}
.y4_c01309{bottom:888.000000px;}
.y3_c01309{bottom:915.000000px;}
.y2_c01309{bottom:942.000000px;}
.y1_c01309{bottom:988.500000px;}
.y12_c01309{bottom:1066.500000px;}
.y13_c01309{bottom:1194.000000px;}
.h7_c01309{height:35.878908px;}
.h6_c01309{height:44.208984px;}
.h8_c01309{height:53.818359px;}
.h5_c01309{height:56.074219px;}
.h1_c01309{height:56.100586px;}
.h2_c01309{height:67.746094px;}
.h3_c01309{height:68.250262px;}
.h4_c01309{height:90.328125px;}
.h0_c01309{height:1263.000000px;}
.w0_c01309{width:892.500000px;}
.x0_c01309{left:0.000000px;}
.x1_c01309{left:65.480310px;}
.x2_c01309{left:94.798875px;}
@media print{
.v3_c01309{vertical-align:-29.333333pt;}
.v2_c01309{vertical-align:-20.521067pt;}
.v0_c01309{vertical-align:0.000000pt;}
.v1_c01309{vertical-align:20.521067pt;}
.ls7_c01309{letter-spacing:-0.012800pt;}
.ls6_c01309{letter-spacing:0.000000pt;}
.ls0_c01309{letter-spacing:0.006933pt;}
.ls8_c01309{letter-spacing:0.010667pt;}
.ls1_c01309{letter-spacing:0.012800pt;}
.ls2_c01309{letter-spacing:2.959413pt;}
.ls3_c01309{letter-spacing:3.021867pt;}
.ls5_c01309{letter-spacing:3.555555pt;}
.ls4_c01309{letter-spacing:29.824000pt;}
.ws1_c01309{word-spacing:-13.333333pt;}
.ws0_c01309{word-spacing:-8.888889pt;}
.ws2_c01309{word-spacing:0.000000pt;}
._13_c01309{margin-left:-8.697600pt;}
._14_c01309{margin-left:-6.208213pt;}
._c_c01309{margin-left:-5.216000pt;}
._7_c01309{margin-left:-3.353600pt;}
._0_c01309{margin-left:-2.291200pt;}
._4_c01309{margin-left:-0.889600pt;}
._6_c01309{width:0.896000pt;}
._3_c01309{width:2.374400pt;}
._1_c01309{width:3.782400pt;}
._5_c01309{width:4.768000pt;}
._f_c01309{width:5.657600pt;}
._2_c01309{width:6.585600pt;}
._e_c01309{width:7.980800pt;}
._d_c01309{width:8.896000pt;}
._15_c01309{width:10.120000pt;}
._12_c01309{width:11.182933pt;}
._11_c01309{width:13.243733pt;}
._10_c01309{width:14.999467pt;}
._a_c01309{width:29.004800pt;}
._8_c01309{width:31.456000pt;}
._9_c01309{width:33.702400pt;}
._b_c01309{width:34.816000pt;}
.fs5_c01309{font-size:35.555557pt;}
.fs2_c01309{font-size:42.666667pt;}
.fs4_c01309{font-size:53.333333pt;}
.fs1_c01309{font-size:64.000000pt;}
.fs0_c01309{font-size:69.333333pt;}
.fs3_c01309{font-size:85.333333pt;}
.y0_c01309{bottom:0.000000pt;}
.y14_c01309{bottom:60.000000pt;}
.y1a_c01309{bottom:117.333333pt;}
.y19_c01309{bottom:142.000000pt;}
.y18_c01309{bottom:178.666667pt;}
.y17_c01309{bottom:203.333333pt;}
.y16_c01309{bottom:240.000000pt;}
.y15_c01309{bottom:264.666667pt;}
.y11_c01309{bottom:366.666667pt;}
.y10_c01309{bottom:390.666667pt;}
.yf_c01309{bottom:433.333333pt;}
.ye_c01309{bottom:457.333333pt;}
.yd_c01309{bottom:481.333333pt;}
.yc_c01309{bottom:505.333333pt;}
.yb_c01309{bottom:529.333333pt;}
.ya_c01309{bottom:553.333333pt;}
.y9_c01309{bottom:612.000000pt;}
.y8_c01309{bottom:656.000000pt;}
.y7_c01309{bottom:680.000000pt;}
.y6_c01309{bottom:722.666667pt;}
.y5_c01309{bottom:746.666667pt;}
.y4_c01309{bottom:789.333333pt;}
.y3_c01309{bottom:813.333333pt;}
.y2_c01309{bottom:837.333333pt;}
.y1_c01309{bottom:878.666667pt;}
.y12_c01309{bottom:948.000000pt;}
.y13_c01309{bottom:1061.333333pt;}
.h7_c01309{height:31.892363pt;}
.h6_c01309{height:39.296875pt;}
.h8_c01309{height:47.838542pt;}
.h5_c01309{height:49.843750pt;}
.h1_c01309{height:49.867188pt;}
.h2_c01309{height:60.218750pt;}
.h3_c01309{height:60.666900pt;}
.h4_c01309{height:80.291667pt;}
.h0_c01309{height:1122.666667pt;}
.w0_c01309{width:793.333333pt;}
.x0_c01309{left:0.000000pt;}
.x1_c01309{left:58.204720pt;}
.x2_c01309{left:84.265667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3d6f60bfba837ae4e7f260f6.woff2')format("woff");}.ff1_c01310{font-family:ff1_c01310;line-height:0.976074;font-style:normal;font-weight:normal;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_8e219f391db94120d94260d9.woff2')format("woff");}.ff2_c01310{font-family:ff2_c01310;line-height:0.933105;font-style:normal;font-weight:normal;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_b58f0bbb541b84a01e51a155.woff2')format("woff");}.ff3_c01310{font-family:ff3_c01310;line-height:1.155762;font-style: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;}
.ls3_c01310{letter-spacing:0.000000px;}
.ls2_c01310{letter-spacing:0.012000px;}
.ls0_c01310{letter-spacing:0.021600px;}
.ls1_c01310{letter-spacing:0.036000px;}
.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;}
}
.ws0_c01310{word-spacing:-19.836000px;}
.ws1_c01310{word-spacing:0.000000px;}
._c_c01310{margin-left:-7.797600px;}
._7_c01310{margin-left:-4.399200px;}
._0_c01310{margin-left:-3.168000px;}
._5_c01310{margin-left:-1.123200px;}
._b_c01310{width:1.015200px;}
._a_c01310{width:2.599200px;}
._3_c01310{width:3.693600px;}
._d_c01310{width:6.336000px;}
._4_c01310{width:7.416000px;}
._f_c01310{width:8.488800px;}
._9_c01310{width:9.698400px;}
._2_c01310{width:11.001600px;}
._6_c01310{width:12.196800px;}
._1_c01310{width:14.191200px;}
._8_c01310{width:15.458400px;}
._e_c01310{width:18.712800px;}
.fc0_c01310{color:rgb(0,0,0);}
.fs0_c01310{font-size:54.000000px;}
.fs2_c01310{font-size:60.000000px;}
.fs1_c01310{font-size:72.000000px;}
.y0_c01310{bottom:0.000000px;}
.y2_c01310{bottom:12.000000px;}
.yb_c01310{bottom:67.500000px;}
.y9_c01310{bottom:181.500000px;}
.y8_c01310{bottom:208.500000px;}
.y7_c01310{bottom:235.500000px;}
.y6_c01310{bottom:262.500000px;}
.y5_c01310{bottom:289.500000px;}
.y4_c01310{bottom:316.500000px;}
.y3_c01310{bottom:361.500000px;}
.y1_c01310{bottom:774.000000px;}
.ya_c01310{bottom:1194.000000px;}
.h2_c01310{height:42.292969px;}
.h4_c01310{height:51.187500px;}
.h5_c01310{height:56.074219px;}
.h1_c01310{height:339.000000px;}
.h3_c01310{height:384.000000px;}
.h0_c01310{height:1263.000000px;}
.w1_c01310{width:676.500000px;}
.w0_c01310{width:892.500000px;}
.x0_c01310{left:0.000000px;}
.x2_c01310{left:63.793920px;}
.x1_c01310{left:150.000000px;}
.x3_c01310{left:305.146050px;}
.x4_c01310{left:416.782800px;}
.x5_c01310{left:801.992850px;}
@media print{
.v0_c01310{vertical-align:0.000000pt;}
.ls3_c01310{letter-spacing:0.000000pt;}
.ls2_c01310{letter-spacing:0.010667pt;}
.ls0_c01310{letter-spacing:0.019200pt;}
.ls1_c01310{letter-spacing:0.032000pt;}
.ws0_c01310{word-spacing:-17.632000pt;}
.ws1_c01310{word-spacing:0.000000pt;}
._c_c01310{margin-left:-6.931200pt;}
._7_c01310{margin-left:-3.910400pt;}
._0_c01310{margin-left:-2.816000pt;}
._5_c01310{margin-left:-0.998400pt;}
._b_c01310{width:0.902400pt;}
._a_c01310{width:2.310400pt;}
._3_c01310{width:3.283200pt;}
._d_c01310{width:5.632000pt;}
._4_c01310{width:6.592000pt;}
._f_c01310{width:7.545600pt;}
._9_c01310{width:8.620800pt;}
._2_c01310{width:9.779200pt;}
._6_c01310{width:10.841600pt;}
._1_c01310{width:12.614400pt;}
._8_c01310{width:13.740800pt;}
._e_c01310{width:16.633600pt;}
.fs0_c01310{font-size:48.000000pt;}
.fs2_c01310{font-size:53.333333pt;}
.fs1_c01310{font-size:64.000000pt;}
.y0_c01310{bottom:0.000000pt;}
.y2_c01310{bottom:10.666667pt;}
.yb_c01310{bottom:60.000000pt;}
.y9_c01310{bottom:161.333333pt;}
.y8_c01310{bottom:185.333333pt;}
.y7_c01310{bottom:209.333333pt;}
.y6_c01310{bottom:233.333333pt;}
.y5_c01310{bottom:257.333333pt;}
.y4_c01310{bottom:281.333333pt;}
.y3_c01310{bottom:321.333333pt;}
.y1_c01310{bottom:688.000000pt;}
.ya_c01310{bottom:1061.333333pt;}
.h2_c01310{height:37.593750pt;}
.h4_c01310{height:45.500000pt;}
.h5_c01310{height:49.843750pt;}
.h1_c01310{height:301.333333pt;}
.h3_c01310{height:341.333333pt;}
.h0_c01310{height:1122.666667pt;}
.w1_c01310{width:601.333333pt;}
.w0_c01310{width:793.333333pt;}
.x0_c01310{left:0.000000pt;}
.x2_c01310{left:56.705707pt;}
.x1_c01310{left:133.333333pt;}
.x3_c01310{left:271.240933pt;}
.x4_c01310{left:370.473600pt;}
.x5_c01310{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6af8ae32529cbd9f5096deb2.woff2')format("woff");}.ff1_c01311{font-family:ff1_c01311;line-height:1.132812;font-style:normal;font-weight:normal;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_69fcb2a5481422bc39907eee.woff2')format("woff");}.ff2_c01311{font-family:ff2_c01311;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01311;src:url('chunks/assets/font_9f8a6af1f2fbe117a566f73e.woff2')format("woff");}.ff3_c01311{font-family:ff3_c01311;line-height:0.933105;font-style:normal;font-weight:normal;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_d914e5157e34769948eb1127.woff2')format("woff");}.ff4_c01311{font-family:ff4_c01311;line-height:0.756836;font-style:normal;font-weight:normal;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_9ea25174fb65f92ee732cf13.woff2')format("woff");}.ff5_c01311{font-family:ff5_c01311;line-height:1.155762;font-style: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);}
.v0_c01311{vertical-align:0.000000px;}
.ls0_c01311{letter-spacing:0.000000px;}
.ls2_c01311{letter-spacing:0.012000px;}
.ls1_c01311{letter-spacing:0.021600px;}
.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;}
}
.ws0_c01311{word-spacing:0.000000px;}
._a_c01311{margin-left:-7.149600px;}
._7_c01311{margin-left:-4.197600px;}
._5_c01311{margin-left:-1.864800px;}
._1_c01311{width:1.296000px;}
._9_c01311{width:2.534400px;}
._4_c01311{width:3.686400px;}
._3_c01311{width:5.011200px;}
._8_c01311{width:6.105600px;}
._2_c01311{width:7.430400px;}
._0_c01311{width:8.719200px;}
._6_c01311{width:10.634400px;}
.fc0_c01311{color:rgb(0,0,0);}
.fs0_c01311{font-size:54.000000px;}
.fs2_c01311{font-size:60.000000px;}
.fs1_c01311{font-size:72.000000px;}
.y0_c01311{bottom:0.000000px;}
.y7_c01311{bottom:12.000000px;}
.y2_c01311{bottom:13.500000px;}
.y9_c01311{bottom:67.500000px;}
.y6_c01311{bottom:153.000000px;}
.y5_c01311{bottom:540.000000px;}
.y4_c01311{bottom:567.000000px;}
.y3_c01311{bottom:594.000000px;}
.y1_c01311{bottom:639.000000px;}
.y8_c01311{bottom:1194.000000px;}
.h6_c01311{height:44.208984px;}
.h2_c01311{height:50.756836px;}
.h3_c01311{height:51.187500px;}
.h5_c01311{height:56.074219px;}
.h4_c01311{height:355.500000px;}
.h1_c01311{height:474.000000px;}
.h0_c01311{height:1263.000000px;}
.w1_c01311{width:676.500000px;}
.w0_c01311{width:892.500000px;}
.x0_c01311{left:0.000000px;}
.x2_c01311{left:47.457255px;}
.x1_c01311{left:66.000000px;}
.x3_c01311{left:117.708225px;}
@media print{
.v0_c01311{vertical-align:0.000000pt;}
.ls0_c01311{letter-spacing:0.000000pt;}
.ls2_c01311{letter-spacing:0.010667pt;}
.ls1_c01311{letter-spacing:0.019200pt;}
.ws0_c01311{word-spacing:0.000000pt;}
._a_c01311{margin-left:-6.355200pt;}
._7_c01311{margin-left:-3.731200pt;}
._5_c01311{margin-left:-1.657600pt;}
._1_c01311{width:1.152000pt;}
._9_c01311{width:2.252800pt;}
._4_c01311{width:3.276800pt;}
._3_c01311{width:4.454400pt;}
._8_c01311{width:5.427200pt;}
._2_c01311{width:6.604800pt;}
._0_c01311{width:7.750400pt;}
._6_c01311{width:9.452800pt;}
.fs0_c01311{font-size:48.000000pt;}
.fs2_c01311{font-size:53.333333pt;}
.fs1_c01311{font-size:64.000000pt;}
.y0_c01311{bottom:0.000000pt;}
.y7_c01311{bottom:10.666667pt;}
.y2_c01311{bottom:12.000000pt;}
.y9_c01311{bottom:60.000000pt;}
.y6_c01311{bottom:136.000000pt;}
.y5_c01311{bottom:480.000000pt;}
.y4_c01311{bottom:504.000000pt;}
.y3_c01311{bottom:528.000000pt;}
.y1_c01311{bottom:568.000000pt;}
.y8_c01311{bottom:1061.333333pt;}
.h6_c01311{height:39.296875pt;}
.h2_c01311{height:45.117188pt;}
.h3_c01311{height:45.500000pt;}
.h5_c01311{height:49.843750pt;}
.h4_c01311{height:316.000000pt;}
.h1_c01311{height:421.333333pt;}
.h0_c01311{height:1122.666667pt;}
.w1_c01311{width:601.333333pt;}
.w0_c01311{width:793.333333pt;}
.x0_c01311{left:0.000000pt;}
.x2_c01311{left:42.184227pt;}
.x1_c01311{left:58.666667pt;}
.x3_c01311{left:104.629533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d33cb77e9a201170e8bccea0.woff2')format("woff");}.ff1_c01312{font-family:ff1_c01312;line-height:0.933105;font-style:normal;font-weight:normal;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_4995bfa33fc035d28a071b4e.woff2')format("woff");}.ff2_c01312{font-family:ff2_c01312;line-height:0.734863;font-style:normal;font-weight:normal;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_4d2a7875d289b51f5c2b944b.woff2')format("woff");}.ff3_c01312{font-family:ff3_c01312;line-height:1.155762;font-style: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);}
.v0_c01312{vertical-align:0.000000px;}
.ls1_c01312{letter-spacing:0.000000px;}
.ls0_c01312{letter-spacing:0.012000px;}
.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;}
}
.ws0_c01312{word-spacing:0.000000px;}
._5_c01312{margin-left:-5.119200px;}
._7_c01312{margin-left:-3.700800px;}
._4_c01312{margin-left:-1.720800px;}
._2_c01312{width:1.036800px;}
._0_c01312{width:2.325600px;}
._9_c01312{width:3.852000px;}
._e_c01312{width:4.896000px;}
._c_c01312{width:6.033600px;}
._d_c01312{width:8.035200px;}
._f_c01312{width:9.144000px;}
._10_c01312{width:11.210400px;}
._b_c01312{width:12.909600px;}
._a_c01312{width:14.277600px;}
._1_c01312{width:15.372000px;}
._3_c01312{width:16.747200px;}
._8_c01312{width:18.158400px;}
._6_c01312{width:22.226400px;}
.fc0_c01312{color:rgb(0,0,0);}
.fs1_c01312{font-size:54.000000px;}
.fs2_c01312{font-size:60.000000px;}
.fs0_c01312{font-size:72.000000px;}
.y0_c01312{bottom:0.000000px;}
.y4_c01312{bottom:12.000000px;}
.yc_c01312{bottom:67.500000px;}
.ya_c01312{bottom:135.000000px;}
.y9_c01312{bottom:162.000000px;}
.y8_c01312{bottom:189.000000px;}
.y7_c01312{bottom:216.000000px;}
.y6_c01312{bottom:243.000000px;}
.y5_c01312{bottom:270.000000px;}
.y3_c01312{bottom:315.000000px;}
.y2_c01312{bottom:1068.000000px;}
.y1_c01312{bottom:1095.000000px;}
.yb_c01312{bottom:1194.000000px;}
.h3_c01312{height:39.023438px;}
.h1_c01312{height:51.187500px;}
.h4_c01312{height:56.074219px;}
.h2_c01312{height:721.500000px;}
.h0_c01312{height:1263.000000px;}
.w1_c01312{width:676.500000px;}
.w0_c01312{width:892.500000px;}
.x0_c01312{left:0.000000px;}
.x1_c01312{left:150.519750px;}
.x2_c01312{left:285.792450px;}
.x3_c01312{left:416.782800px;}
.x4_c01312{left:801.992850px;}
@media print{
.v0_c01312{vertical-align:0.000000pt;}
.ls1_c01312{letter-spacing:0.000000pt;}
.ls0_c01312{letter-spacing:0.010667pt;}
.ws0_c01312{word-spacing:0.000000pt;}
._5_c01312{margin-left:-4.550400pt;}
._7_c01312{margin-left:-3.289600pt;}
._4_c01312{margin-left:-1.529600pt;}
._2_c01312{width:0.921600pt;}
._0_c01312{width:2.067200pt;}
._9_c01312{width:3.424000pt;}
._e_c01312{width:4.352000pt;}
._c_c01312{width:5.363200pt;}
._d_c01312{width:7.142400pt;}
._f_c01312{width:8.128000pt;}
._10_c01312{width:9.964800pt;}
._b_c01312{width:11.475200pt;}
._a_c01312{width:12.691200pt;}
._1_c01312{width:13.664000pt;}
._3_c01312{width:14.886400pt;}
._8_c01312{width:16.140800pt;}
._6_c01312{width:19.756800pt;}
.fs1_c01312{font-size:48.000000pt;}
.fs2_c01312{font-size:53.333333pt;}
.fs0_c01312{font-size:64.000000pt;}
.y0_c01312{bottom:0.000000pt;}
.y4_c01312{bottom:10.666667pt;}
.yc_c01312{bottom:60.000000pt;}
.ya_c01312{bottom:120.000000pt;}
.y9_c01312{bottom:144.000000pt;}
.y8_c01312{bottom:168.000000pt;}
.y7_c01312{bottom:192.000000pt;}
.y6_c01312{bottom:216.000000pt;}
.y5_c01312{bottom:240.000000pt;}
.y3_c01312{bottom:280.000000pt;}
.y2_c01312{bottom:949.333333pt;}
.y1_c01312{bottom:973.333333pt;}
.yb_c01312{bottom:1061.333333pt;}
.h3_c01312{height:34.687500pt;}
.h1_c01312{height:45.500000pt;}
.h4_c01312{height:49.843750pt;}
.h2_c01312{height:641.333333pt;}
.h0_c01312{height:1122.666667pt;}
.w1_c01312{width:601.333333pt;}
.w0_c01312{width:793.333333pt;}
.x0_c01312{left:0.000000pt;}
.x1_c01312{left:133.795333pt;}
.x2_c01312{left:254.037733pt;}
.x3_c01312{left:370.473600pt;}
.x4_c01312{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_10e56a45224da24f018ab051.woff2')format("woff");}.ff1_c01313{font-family:ff1_c01313;line-height:0.933105;font-style:normal;font-weight:normal;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_996d2d7f75c36692abff709e.woff2')format("woff");}.ff2_c01313{font-family:ff2_c01313;line-height:0.958008;font-style:normal;font-weight:normal;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_ca270363f3658c3f4f72b6f9.woff2')format("woff");}.ff3_c01313{font-family:ff3_c01313;line-height:0.756836;font-style:normal;font-weight:normal;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_64412bf1b1c3cfe7d62f9230.woff2')format("woff");}.ff4_c01313{font-family:ff4_c01313;line-height:1.155762;font-style: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);}
.v0_c01313{vertical-align:0.000000px;}
.ls2_c01313{letter-spacing:-0.005400px;}
.ls0_c01313{letter-spacing:0.000000px;}
.ls3_c01313{letter-spacing:0.012000px;}
.ls1_c01313{letter-spacing:0.021600px;}
.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;}
}
.ws0_c01313{word-spacing:0.000000px;}
._c_c01313{margin-left:-4.467840px;}
._4_c01313{margin-left:-3.052800px;}
._6_c01313{margin-left:-1.188000px;}
._2_c01313{width:1.101600px;}
._0_c01313{width:2.325600px;}
._7_c01313{width:4.953600px;}
._b_c01313{width:12.002400px;}
._8_c01313{width:13.190400px;}
._1_c01313{width:15.199200px;}
._3_c01313{width:16.416000px;}
._5_c01313{width:18.439200px;}
._a_c01313{width:21.016800px;}
._9_c01313{width:23.529600px;}
.fc0_c01313{color:rgb(0,0,0);}
.fs1_c01313{font-size:54.000000px;}
.fs2_c01313{font-size:60.000000px;}
.fs0_c01313{font-size:72.000000px;}
.y0_c01313{bottom:0.000000px;}
.y3_c01313{bottom:12.000000px;}
.ya_c01313{bottom:67.500000px;}
.y8_c01313{bottom:129.000000px;}
.y7_c01313{bottom:567.000000px;}
.y6_c01313{bottom:594.000000px;}
.y5_c01313{bottom:621.000000px;}
.y4_c01313{bottom:648.000000px;}
.y2_c01313{bottom:693.000000px;}
.y1_c01313{bottom:1095.000000px;}
.y9_c01313{bottom:1194.000000px;}
.h6_c01313{height:44.208984px;}
.h3_c01313{height:50.756836px;}
.h1_c01313{height:51.187500px;}
.h5_c01313{height:56.074219px;}
.h2_c01313{height:379.500000px;}
.h4_c01313{height:406.500000px;}
.h0_c01313{height:1263.000000px;}
.w1_c01313{width:676.500000px;}
.w0_c01313{width:892.500000px;}
.x0_c01313{left:0.000000px;}
.x1_c01313{left:65.480310px;}
.x3_c01313{left:255.315300px;}
.x2_c01313{left:273.805200px;}
@media print{
.v0_c01313{vertical-align:0.000000pt;}
.ls2_c01313{letter-spacing:-0.004800pt;}
.ls0_c01313{letter-spacing:0.000000pt;}
.ls3_c01313{letter-spacing:0.010667pt;}
.ls1_c01313{letter-spacing:0.019200pt;}
.ws0_c01313{word-spacing:0.000000pt;}
._c_c01313{margin-left:-3.971413pt;}
._4_c01313{margin-left:-2.713600pt;}
._6_c01313{margin-left:-1.056000pt;}
._2_c01313{width:0.979200pt;}
._0_c01313{width:2.067200pt;}
._7_c01313{width:4.403200pt;}
._b_c01313{width:10.668800pt;}
._8_c01313{width:11.724800pt;}
._1_c01313{width:13.510400pt;}
._3_c01313{width:14.592000pt;}
._5_c01313{width:16.390400pt;}
._a_c01313{width:18.681600pt;}
._9_c01313{width:20.915200pt;}
.fs1_c01313{font-size:48.000000pt;}
.fs2_c01313{font-size:53.333333pt;}
.fs0_c01313{font-size:64.000000pt;}
.y0_c01313{bottom:0.000000pt;}
.y3_c01313{bottom:10.666667pt;}
.ya_c01313{bottom:60.000000pt;}
.y8_c01313{bottom:114.666667pt;}
.y7_c01313{bottom:504.000000pt;}
.y6_c01313{bottom:528.000000pt;}
.y5_c01313{bottom:552.000000pt;}
.y4_c01313{bottom:576.000000pt;}
.y2_c01313{bottom:616.000000pt;}
.y1_c01313{bottom:973.333333pt;}
.y9_c01313{bottom:1061.333333pt;}
.h6_c01313{height:39.296875pt;}
.h3_c01313{height:45.117188pt;}
.h1_c01313{height:45.500000pt;}
.h5_c01313{height:49.843750pt;}
.h2_c01313{height:337.333333pt;}
.h4_c01313{height:361.333333pt;}
.h0_c01313{height:1122.666667pt;}
.w1_c01313{width:601.333333pt;}
.w0_c01313{width:793.333333pt;}
.x0_c01313{left:0.000000pt;}
.x1_c01313{left:58.204720pt;}
.x3_c01313{left:226.946933pt;}
.x2_c01313{left:243.382400pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1f7a873da3ecb713b7b943a6.woff2')format("woff");}.ff1_c01314{font-family:ff1_c01314;line-height:0.933105;font-style:normal;font-weight:normal;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_fc4af8de0bbaf93f772e9a97.woff2')format("woff");}.ff2_c01314{font-family:ff2_c01314;line-height:0.783203;font-style:normal;font-weight:normal;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_0ae467ad9c5784239c02d2cb.woff2')format("woff");}.ff3_c01314{font-family:ff3_c01314;line-height:1.155762;font-style: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;}
.ls1_c01314{letter-spacing:0.000000px;}
.ls0_c01314{letter-spacing:0.012000px;}
.ls2_c01314{letter-spacing:0.021600px;}
.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;}
}
.ws0_c01314{word-spacing:0.000000px;}
._4_c01314{margin-left:-3.175200px;}
._6_c01314{margin-left:-1.569600px;}
._2_c01314{width:1.533600px;}
._1_c01314{width:2.534400px;}
._0_c01314{width:4.068000px;}
._3_c01314{width:5.414400px;}
._5_c01314{width:6.868800px;}
._e_c01314{width:7.956000px;}
._9_c01314{width:9.720000px;}
._8_c01314{width:11.548800px;}
._a_c01314{width:12.823200px;}
._7_c01314{width:14.450400px;}
._d_c01314{width:21.434400px;}
._c_c01314{width:23.270400px;}
._b_c01314{width:26.373600px;}
.fc1_c01314{color:transparent;}
.fc0_c01314{color:rgb(0,0,0);}
.fs1_c01314{font-size:54.000000px;}
.fs2_c01314{font-size:60.000000px;}
.fs0_c01314{font-size:72.000000px;}
.y0_c01314{bottom:0.000000px;}
.yb_c01314{bottom:12.000000px;}
.ye_c01314{bottom:67.500000px;}
.yc_c01314{bottom:144.000000px;}
.ya_c01314{bottom:454.500000px;}
.y9_c01314{bottom:858.000000px;}
.y8_c01314{bottom:885.000000px;}
.y7_c01314{bottom:912.000000px;}
.y6_c01314{bottom:960.000000px;}
.y5_c01314{bottom:987.000000px;}
.y4_c01314{bottom:1014.000000px;}
.y3_c01314{bottom:1041.000000px;}
.y2_c01314{bottom:1068.000000px;}
.y1_c01314{bottom:1095.000000px;}
.yd_c01314{bottom:1194.000000px;}
.h3_c01314{height:41.633789px;}
.h1_c01314{height:51.187500px;}
.h5_c01314{height:56.074219px;}
.h4_c01314{height:303.000000px;}
.h2_c01314{height:372.000000px;}
.h0_c01314{height:1263.000000px;}
.w1_c01314{width:676.500000px;}
.w0_c01314{width:892.500000px;}
.x0_c01314{left:0.000000px;}
.x1_c01314{left:150.519750px;}
.x2_c01314{left:249.682650px;}
.x3_c01314{left:251.185500px;}
.x4_c01314{left:416.782800px;}
.x5_c01314{left:801.992850px;}
@media print{
.v0_c01314{vertical-align:0.000000pt;}
.ls1_c01314{letter-spacing:0.000000pt;}
.ls0_c01314{letter-spacing:0.010667pt;}
.ls2_c01314{letter-spacing:0.019200pt;}
.ws0_c01314{word-spacing:0.000000pt;}
._4_c01314{margin-left:-2.822400pt;}
._6_c01314{margin-left:-1.395200pt;}
._2_c01314{width:1.363200pt;}
._1_c01314{width:2.252800pt;}
._0_c01314{width:3.616000pt;}
._3_c01314{width:4.812800pt;}
._5_c01314{width:6.105600pt;}
._e_c01314{width:7.072000pt;}
._9_c01314{width:8.640000pt;}
._8_c01314{width:10.265600pt;}
._a_c01314{width:11.398400pt;}
._7_c01314{width:12.844800pt;}
._d_c01314{width:19.052800pt;}
._c_c01314{width:20.684800pt;}
._b_c01314{width:23.443200pt;}
.fs1_c01314{font-size:48.000000pt;}
.fs2_c01314{font-size:53.333333pt;}
.fs0_c01314{font-size:64.000000pt;}
.y0_c01314{bottom:0.000000pt;}
.yb_c01314{bottom:10.666667pt;}
.ye_c01314{bottom:60.000000pt;}
.yc_c01314{bottom:128.000000pt;}
.ya_c01314{bottom:404.000000pt;}
.y9_c01314{bottom:762.666667pt;}
.y8_c01314{bottom:786.666667pt;}
.y7_c01314{bottom:810.666667pt;}
.y6_c01314{bottom:853.333333pt;}
.y5_c01314{bottom:877.333333pt;}
.y4_c01314{bottom:901.333333pt;}
.y3_c01314{bottom:925.333333pt;}
.y2_c01314{bottom:949.333333pt;}
.y1_c01314{bottom:973.333333pt;}
.yd_c01314{bottom:1061.333333pt;}
.h3_c01314{height:37.007812pt;}
.h1_c01314{height:45.500000pt;}
.h5_c01314{height:49.843750pt;}
.h4_c01314{height:269.333333pt;}
.h2_c01314{height:330.666667pt;}
.h0_c01314{height:1122.666667pt;}
.w1_c01314{width:601.333333pt;}
.w0_c01314{width:793.333333pt;}
.x0_c01314{left:0.000000pt;}
.x1_c01314{left:133.795333pt;}
.x2_c01314{left:221.940133pt;}
.x3_c01314{left:223.276000pt;}
.x4_c01314{left:370.473600pt;}
.x5_c01314{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3267828f9f75301681402269.woff2')format("woff");}.ff1_c01315{font-family:ff1_c01315;line-height:0.884766;font-style:normal;font-weight:normal;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_477f01d0f52a51cb852e72af.woff2')format("woff");}.ff2_c01315{font-family:ff2_c01315;line-height:1.135254;font-style:normal;font-weight:normal;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_bfce62b795626420fc48cdf3.woff2')format("woff");}.ff3_c01315{font-family:ff3_c01315;line-height:0.783203;font-style:normal;font-weight:normal;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_887e991dd1f29a119023bbf8.woff2')format("woff");}.ff4_c01315{font-family:ff4_c01315;line-height:0.756836;font-style:normal;font-weight:normal;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_0376d0e652e48683c4a63d36.woff2')format("woff");}.ff5_c01315{font-family:ff5_c01315;line-height:1.155762;font-style: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);}
.v0_c01315{vertical-align:0.000000px;}
.ls1_c01315{letter-spacing:0.000000px;}
.ls0_c01315{letter-spacing:0.007200px;}
.ls2_c01315{letter-spacing:0.012000px;}
.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;}
}
.ws0_c01315{word-spacing:0.000000px;}
._4_c01315{margin-left:-7.135200px;}
._0_c01315{margin-left:-3.945600px;}
._b_c01315{margin-left:-2.671200px;}
._2_c01315{margin-left:-1.576800px;}
._8_c01315{width:1.195200px;}
._3_c01315{width:2.253600px;}
._1_c01315{width:3.844800px;}
._a_c01315{width:5.961600px;}
._6_c01315{width:7.545600px;}
._9_c01315{width:8.575200px;}
._5_c01315{width:9.784800px;}
._7_c01315{width:11.282400px;}
._c_c01315{width:12.960000px;}
._f_c01315{width:14.076000px;}
._d_c01315{width:15.559200px;}
._e_c01315{width:16.812000px;}
.fc0_c01315{color:rgb(0,0,0);}
.fs1_c01315{font-size:54.000000px;}
.fs2_c01315{font-size:60.000000px;}
.fs0_c01315{font-size:72.000000px;}
.y0_c01315{bottom:0.000000px;}
.y9_c01315{bottom:12.000000px;}
.yd_c01315{bottom:67.500000px;}
.yb_c01315{bottom:165.000000px;}
.ya_c01315{bottom:192.000000px;}
.y8_c01315{bottom:237.000000px;}
.y7_c01315{bottom:888.000000px;}
.y6_c01315{bottom:915.000000px;}
.y5_c01315{bottom:942.000000px;}
.y4_c01315{bottom:969.000000px;}
.y3_c01315{bottom:1017.000000px;}
.y2_c01315{bottom:1044.000000px;}
.y1_c01315{bottom:1095.000000px;}
.yc_c01315{bottom:1194.000000px;}
.h4_c01315{height:41.633789px;}
.h6_c01315{height:44.208984px;}
.h1_c01315{height:50.976562px;}
.h5_c01315{height:56.074219px;}
.h2_c01315{height:65.742188px;}
.h3_c01315{height:619.500000px;}
.h0_c01315{height:1263.000000px;}
.w1_c01315{width:676.500000px;}
.w0_c01315{width:892.500000px;}
.x0_c01315{left:0.000000px;}
.x1_c01315{left:65.480310px;}
.x2_c01315{left:276.063000px;}
@media print{
.v0_c01315{vertical-align:0.000000pt;}
.ls1_c01315{letter-spacing:0.000000pt;}
.ls0_c01315{letter-spacing:0.006400pt;}
.ls2_c01315{letter-spacing:0.010667pt;}
.ws0_c01315{word-spacing:0.000000pt;}
._4_c01315{margin-left:-6.342400pt;}
._0_c01315{margin-left:-3.507200pt;}
._b_c01315{margin-left:-2.374400pt;}
._2_c01315{margin-left:-1.401600pt;}
._8_c01315{width:1.062400pt;}
._3_c01315{width:2.003200pt;}
._1_c01315{width:3.417600pt;}
._a_c01315{width:5.299200pt;}
._6_c01315{width:6.707200pt;}
._9_c01315{width:7.622400pt;}
._5_c01315{width:8.697600pt;}
._7_c01315{width:10.028800pt;}
._c_c01315{width:11.520000pt;}
._f_c01315{width:12.512000pt;}
._d_c01315{width:13.830400pt;}
._e_c01315{width:14.944000pt;}
.fs1_c01315{font-size:48.000000pt;}
.fs2_c01315{font-size:53.333333pt;}
.fs0_c01315{font-size:64.000000pt;}
.y0_c01315{bottom:0.000000pt;}
.y9_c01315{bottom:10.666667pt;}
.yd_c01315{bottom:60.000000pt;}
.yb_c01315{bottom:146.666667pt;}
.ya_c01315{bottom:170.666667pt;}
.y8_c01315{bottom:210.666667pt;}
.y7_c01315{bottom:789.333333pt;}
.y6_c01315{bottom:813.333333pt;}
.y5_c01315{bottom:837.333333pt;}
.y4_c01315{bottom:861.333333pt;}
.y3_c01315{bottom:904.000000pt;}
.y2_c01315{bottom:928.000000pt;}
.y1_c01315{bottom:973.333333pt;}
.yc_c01315{bottom:1061.333333pt;}
.h4_c01315{height:37.007812pt;}
.h6_c01315{height:39.296875pt;}
.h1_c01315{height:45.312500pt;}
.h5_c01315{height:49.843750pt;}
.h2_c01315{height:58.437500pt;}
.h3_c01315{height:550.666667pt;}
.h0_c01315{height:1122.666667pt;}
.w1_c01315{width:601.333333pt;}
.w0_c01315{width:793.333333pt;}
.x0_c01315{left:0.000000pt;}
.x1_c01315{left:58.204720pt;}
.x2_c01315{left:245.389333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c00e92781511c50034cf55e0.woff2')format("woff");}.ff1_c01316{font-family:ff1_c01316;line-height:0.783203;font-style:normal;font-weight:normal;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_d2235d2a60ef0eef1faab91a.woff2')format("woff");}.ff2_c01316{font-family:ff2_c01316;line-height:0.934082;font-style:normal;font-weight:normal;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_906880f30a24324b4070ebb2.woff2')format("woff");}.ff3_c01316{font-family:ff3_c01316;line-height:1.155762;font-style: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);}
.v0_c01316{vertical-align:0.000000px;}
.ls1_c01316{letter-spacing:0.000000px;}
.ls0_c01316{letter-spacing:0.012000px;}
.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;}
}
.ws0_c01316{word-spacing:0.000000px;}
._4_c01316{margin-left:-3.902400px;}
._2_c01316{margin-left:-2.347200px;}
._1_c01316{width:2.354400px;}
._0_c01316{width:3.823200px;}
._3_c01316{width:5.256000px;}
._6_c01316{width:6.912000px;}
._5_c01316{width:8.330400px;}
.fc0_c01316{color:rgb(0,0,0);}
.fs0_c01316{font-size:54.000000px;}
.fs2_c01316{font-size:60.000000px;}
.fs1_c01316{font-size:72.000000px;}
.y0_c01316{bottom:0.000000px;}
.y2_c01316{bottom:12.000000px;}
.y7_c01316{bottom:67.500000px;}
.y5_c01316{bottom:157.500000px;}
.y4_c01316{bottom:639.000000px;}
.y3_c01316{bottom:666.000000px;}
.y1_c01316{bottom:711.000000px;}
.y6_c01316{bottom:1194.000000px;}
.h2_c01316{height:41.633789px;}
.h3_c01316{height:51.257812px;}
.h5_c01316{height:56.074219px;}
.h1_c01316{height:402.000000px;}
.h4_c01316{height:450.000000px;}
.h0_c01316{height:1263.000000px;}
.w1_c01316{width:676.500000px;}
.w0_c01316{width:892.500000px;}
.x0_c01316{left:0.000000px;}
.x1_c01316{left:150.000000px;}
.x2_c01316{left:265.555650px;}
.x3_c01316{left:289.579500px;}
.x4_c01316{left:416.782800px;}
.x5_c01316{left:801.992850px;}
@media print{
.v0_c01316{vertical-align:0.000000pt;}
.ls1_c01316{letter-spacing:0.000000pt;}
.ls0_c01316{letter-spacing:0.010667pt;}
.ws0_c01316{word-spacing:0.000000pt;}
._4_c01316{margin-left:-3.468800pt;}
._2_c01316{margin-left:-2.086400pt;}
._1_c01316{width:2.092800pt;}
._0_c01316{width:3.398400pt;}
._3_c01316{width:4.672000pt;}
._6_c01316{width:6.144000pt;}
._5_c01316{width:7.404800pt;}
.fs0_c01316{font-size:48.000000pt;}
.fs2_c01316{font-size:53.333333pt;}
.fs1_c01316{font-size:64.000000pt;}
.y0_c01316{bottom:0.000000pt;}
.y2_c01316{bottom:10.666667pt;}
.y7_c01316{bottom:60.000000pt;}
.y5_c01316{bottom:140.000000pt;}
.y4_c01316{bottom:568.000000pt;}
.y3_c01316{bottom:592.000000pt;}
.y1_c01316{bottom:632.000000pt;}
.y6_c01316{bottom:1061.333333pt;}
.h2_c01316{height:37.007812pt;}
.h3_c01316{height:45.562500pt;}
.h5_c01316{height:49.843750pt;}
.h1_c01316{height:357.333333pt;}
.h4_c01316{height:400.000000pt;}
.h0_c01316{height:1122.666667pt;}
.w1_c01316{width:601.333333pt;}
.w0_c01316{width:793.333333pt;}
.x0_c01316{left:0.000000pt;}
.x1_c01316{left:133.333333pt;}
.x2_c01316{left:236.049467pt;}
.x3_c01316{left:257.404000pt;}
.x4_c01316{left:370.473600pt;}
.x5_c01316{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b54a61e1efc45ee5a0c22db8.woff2')format("woff");}.ff1_c01317{font-family:ff1_c01317;line-height:0.933105;font-style:normal;font-weight:normal;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_ef0b42d390936f52cfef6d4f.woff2')format("woff");}.ff2_c01317{font-family:ff2_c01317;line-height:0.963867;font-style:normal;font-weight:normal;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_69cb499450e305ad360b6929.woff2')format("woff");}.ff3_c01317{font-family:ff3_c01317;line-height:0.756836;font-style:normal;font-weight:normal;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_9a6596f012530b2bd75de4aa.woff2')format("woff");}.ff4_c01317{font-family:ff4_c01317;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01317;src:url('chunks/assets/font_4cdbbbdbc2d6b9d8814e0ff9.woff2')format("woff");}.ff5_c01317{font-family:ff5_c01317;line-height:0.903320;font-style:normal;font-weight: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_c01317;src:url('chunks/assets/font_07c43e07b05b1976503bb598.woff2')format("woff");}.ff6_c01317{font-family:ff6_c01317;line-height:0.889648;font-style: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);}
.m1_c01317{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3_c01317{vertical-align:-33.000000px;}
.v2_c01317{vertical-align:-23.086200px;}
.v0_c01317{vertical-align:0.000000px;}
.v1_c01317{vertical-align:23.086200px;}
.ls1_c01317{letter-spacing:0.000000px;}
.ls2_c01317{letter-spacing:0.012000px;}
.ls0_c01317{letter-spacing:2.661360px;}
.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;}
}
.ws0_c01317{word-spacing:-10.000001px;}
.ws1_c01317{word-spacing:0.000000px;}
._6_c01317{margin-left:-7.113600px;}
._b_c01317{margin-left:-5.281041px;}
._a_c01317{margin-left:-4.251840px;}
._4_c01317{margin-left:-3.160800px;}
._0_c01317{margin-left:-1.490400px;}
._3_c01317{width:1.238400px;}
._2_c01317{width:2.678400px;}
._1_c01317{width:4.183200px;}
._5_c01317{width:5.896800px;}
._9_c01317{width:9.554400px;}
._7_c01317{width:10.677600px;}
._8_c01317{width:14.371200px;}
.fc0_c01317{color:rgb(0,0,0);}
.fs4_c01317{font-size:40.000002px;}
.fs2_c01317{font-size:48.000000px;}
.fs1_c01317{font-size:54.000000px;}
.fs3_c01317{font-size:60.000000px;}
.fs0_c01317{font-size:72.000000px;}
.y0_c01317{bottom:0.000000px;}
.y4_c01317{bottom:12.000000px;}
.ya_c01317{bottom:67.500000px;}
.yc_c01317{bottom:132.000000px;}
.yb_c01317{bottom:159.750000px;}
.y8_c01317{bottom:300.000000px;}
.y7_c01317{bottom:327.000000px;}
.y6_c01317{bottom:375.000000px;}
.y5_c01317{bottom:402.000000px;}
.y3_c01317{bottom:447.000000px;}
.y2_c01317{bottom:1068.000000px;}
.y1_c01317{bottom:1095.000000px;}
.y9_c01317{bottom:1194.000000px;}
.h7_c01317{height:27.421876px;}
.h8_c01317{height:41.132812px;}
.h3_c01317{height:41.633789px;}
.h6_c01317{height:44.208984px;}
.h1_c01317{height:51.187500px;}
.h5_c01317{height:56.074219px;}
.h4_c01317{height:57.211200px;}
.h2_c01317{height:589.500000px;}
.h0_c01317{height:1263.000000px;}
.w1_c01317{width:676.500000px;}
.w0_c01317{width:892.500000px;}
.x0_c01317{left:0.000000px;}
.x1_c01317{left:65.480310px;}
.x2_c01317{left:234.567600px;}
@media print{
.v3_c01317{vertical-align:-29.333333pt;}
.v2_c01317{vertical-align:-20.521067pt;}
.v0_c01317{vertical-align:0.000000pt;}
.v1_c01317{vertical-align:20.521067pt;}
.ls1_c01317{letter-spacing:0.000000pt;}
.ls2_c01317{letter-spacing:0.010667pt;}
.ls0_c01317{letter-spacing:2.365653pt;}
.ws0_c01317{word-spacing:-8.888889pt;}
.ws1_c01317{word-spacing:0.000000pt;}
._6_c01317{margin-left:-6.323200pt;}
._b_c01317{margin-left:-4.694259pt;}
._a_c01317{margin-left:-3.779413pt;}
._4_c01317{margin-left:-2.809600pt;}
._0_c01317{margin-left:-1.324800pt;}
._3_c01317{width:1.100800pt;}
._2_c01317{width:2.380800pt;}
._1_c01317{width:3.718400pt;}
._5_c01317{width:5.241600pt;}
._9_c01317{width:8.492800pt;}
._7_c01317{width:9.491200pt;}
._8_c01317{width:12.774400pt;}
.fs4_c01317{font-size:35.555557pt;}
.fs2_c01317{font-size:42.666667pt;}
.fs1_c01317{font-size:48.000000pt;}
.fs3_c01317{font-size:53.333333pt;}
.fs0_c01317{font-size:64.000000pt;}
.y0_c01317{bottom:0.000000pt;}
.y4_c01317{bottom:10.666667pt;}
.ya_c01317{bottom:60.000000pt;}
.yc_c01317{bottom:117.333333pt;}
.yb_c01317{bottom:142.000000pt;}
.y8_c01317{bottom:266.666667pt;}
.y7_c01317{bottom:290.666667pt;}
.y6_c01317{bottom:333.333333pt;}
.y5_c01317{bottom:357.333333pt;}
.y3_c01317{bottom:397.333333pt;}
.y2_c01317{bottom:949.333333pt;}
.y1_c01317{bottom:973.333333pt;}
.y9_c01317{bottom:1061.333333pt;}
.h7_c01317{height:24.375001pt;}
.h8_c01317{height:36.562500pt;}
.h3_c01317{height:37.007812pt;}
.h6_c01317{height:39.296875pt;}
.h1_c01317{height:45.500000pt;}
.h5_c01317{height:49.843750pt;}
.h4_c01317{height:50.854400pt;}
.h2_c01317{height:524.000000pt;}
.h0_c01317{height:1122.666667pt;}
.w1_c01317{width:601.333333pt;}
.w0_c01317{width:793.333333pt;}
.x0_c01317{left:0.000000pt;}
.x1_c01317{left:58.204720pt;}
.x2_c01317{left:208.504533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a95c2445c2c8609f220af669.woff2')format("woff");}.ff1_c01318{font-family:ff1_c01318;line-height:0.884766;font-style:normal;font-weight:normal;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_48efb15578bcaef19e7fdb9b.woff2')format("woff");}.ff2_c01318{font-family:ff2_c01318;line-height:1.163086;font-style:normal;font-weight:normal;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_6ff8f135b6e07dcab1fa09f4.woff2')format("woff");}.ff3_c01318{font-family:ff3_c01318;line-height:1.155762;font-style:normal;font-weight:normal;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_06ce7544ae0e2824527b7ccd.woff2')format("woff");}.ff4_c01318{font-family:ff4_c01318;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01318;src:url('chunks/assets/font_502e7e09aab6af0735a36da3.woff2')format("woff");}.ff5_c01318{font-family:ff5_c01318;line-height:0.894531;font-style: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);}
.v3_c01318{vertical-align:-33.000000px;}
.v2_c01318{vertical-align:-23.086200px;}
.v0_c01318{vertical-align:0.000000px;}
.v1_c01318{vertical-align:23.086200px;}
.ls6_c01318{letter-spacing:0.000000px;}
.ls0_c01318{letter-spacing:0.007800px;}
.ls4_c01318{letter-spacing:0.012000px;}
.ls5_c01318{letter-spacing:3.999999px;}
.ls2_c01318{letter-spacing:4.154400px;}
.ls1_c01318{letter-spacing:13.219200px;}
.ls3_c01318{letter-spacing:24.594600px;}
.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;}
}
.ws1_c01318{word-spacing:-15.000000px;}
.ws0_c01318{word-spacing:-13.200000px;}
.ws2_c01318{word-spacing:0.000000px;}
._6_c01318{margin-left:-10.584000px;}
._1a_c01318{margin-left:-8.784000px;}
._16_c01318{margin-left:-6.451200px;}
._15_c01318{margin-left:-4.968000px;}
._3_c01318{margin-left:-3.081600px;}
._0_c01318{margin-left:-1.965600px;}
._e_c01318{width:1.005600px;}
._4_c01318{width:2.073600px;}
._1_c01318{width:3.369600px;}
._2_c01318{width:4.449600px;}
._b_c01318{width:5.630400px;}
._c_c01318{width:6.948000px;}
._14_c01318{width:8.301600px;}
._d_c01318{width:9.369600px;}
._1d_c01318{width:11.004000px;}
._a_c01318{width:12.117600px;}
._11_c01318{width:13.394400px;}
._12_c01318{width:14.875200px;}
._10_c01318{width:16.106400px;}
._f_c01318{width:17.114400px;}
._13_c01318{width:18.201600px;}
._1c_c01318{width:19.249200px;}
._5_c01318{width:20.858400px;}
._9_c01318{width:22.924800px;}
._8_c01318{width:24.868800px;}
._7_c01318{width:26.006400px;}
._19_c01318{width:33.033600px;}
._18_c01318{width:34.704000px;}
._17_c01318{width:36.187200px;}
._1b_c01318{width:38.448000px;}
.fc1_c01318{color:rgb(255,255,255);}
.fc0_c01318{color:rgb(0,0,0);}
.fs5_c01318{font-size:40.000002px;}
.fs2_c01318{font-size:48.000000px;}
.fs4_c01318{font-size:60.000000px;}
.fs1_c01318{font-size:72.000000px;}
.fs0_c01318{font-size:78.000000px;}
.fs3_c01318{font-size:96.000000px;}
.y0_c01318{bottom:0.000000px;}
.y17_c01318{bottom:67.500000px;}
.y21_c01318{bottom:132.000000px;}
.y20_c01318{bottom:159.750000px;}
.y1f_c01318{bottom:201.000000px;}
.y1e_c01318{bottom:220.500000px;}
.y1d_c01318{bottom:240.000000px;}
.y1c_c01318{bottom:259.500000px;}
.y1b_c01318{bottom:287.250000px;}
.y1a_c01318{bottom:328.500000px;}
.y19_c01318{bottom:348.000000px;}
.y18_c01318{bottom:375.750000px;}
.y14_c01318{bottom:438.000000px;}
.y13_c01318{bottom:465.000000px;}
.y12_c01318{bottom:492.000000px;}
.y11_c01318{bottom:540.000000px;}
.y10_c01318{bottom:567.000000px;}
.yf_c01318{bottom:594.000000px;}
.ye_c01318{bottom:621.000000px;}
.yd_c01318{bottom:648.000000px;}
.yc_c01318{bottom:675.000000px;}
.yb_c01318{bottom:702.000000px;}
.ya_c01318{bottom:729.000000px;}
.y9_c01318{bottom:756.000000px;}
.y8_c01318{bottom:783.000000px;}
.y7_c01318{bottom:810.000000px;}
.y6_c01318{bottom:837.000000px;}
.y5_c01318{bottom:864.000000px;}
.y4_c01318{bottom:891.000000px;}
.y3_c01318{bottom:918.000000px;}
.y2_c01318{bottom:945.000000px;}
.y1_c01318{bottom:991.500000px;}
.y15_c01318{bottom:1066.500000px;}
.y16_c01318{bottom:1194.000000px;}
.h6_c01318{height:35.781252px;}
.h7_c01318{height:53.671875px;}
.h1_c01318{height:55.224609px;}
.h5_c01318{height:56.074219px;}
.h2_c01318{height:67.746094px;}
.h3_c01318{height:68.250262px;}
.h4_c01318{height:90.328125px;}
.h0_c01318{height:1263.000000px;}
.w0_c01318{width:892.500000px;}
.x0_c01318{left:0.000000px;}
.x1_c01318{left:150.519750px;}
.x2_c01318{left:180.298875px;}
.x3_c01318{left:416.782800px;}
.x4_c01318{left:801.992850px;}
@media print{
.v3_c01318{vertical-align:-29.333333pt;}
.v2_c01318{vertical-align:-20.521067pt;}
.v0_c01318{vertical-align:0.000000pt;}
.v1_c01318{vertical-align:20.521067pt;}
.ls6_c01318{letter-spacing:0.000000pt;}
.ls0_c01318{letter-spacing:0.006933pt;}
.ls4_c01318{letter-spacing:0.010667pt;}
.ls5_c01318{letter-spacing:3.555555pt;}
.ls2_c01318{letter-spacing:3.692800pt;}
.ls1_c01318{letter-spacing:11.750400pt;}
.ls3_c01318{letter-spacing:21.861867pt;}
.ws1_c01318{word-spacing:-13.333333pt;}
.ws0_c01318{word-spacing:-11.733333pt;}
.ws2_c01318{word-spacing:0.000000pt;}
._6_c01318{margin-left:-9.408000pt;}
._1a_c01318{margin-left:-7.808000pt;}
._16_c01318{margin-left:-5.734400pt;}
._15_c01318{margin-left:-4.416000pt;}
._3_c01318{margin-left:-2.739200pt;}
._0_c01318{margin-left:-1.747200pt;}
._e_c01318{width:0.893867pt;}
._4_c01318{width:1.843200pt;}
._1_c01318{width:2.995200pt;}
._2_c01318{width:3.955200pt;}
._b_c01318{width:5.004800pt;}
._c_c01318{width:6.176000pt;}
._14_c01318{width:7.379200pt;}
._d_c01318{width:8.328533pt;}
._1d_c01318{width:9.781333pt;}
._a_c01318{width:10.771200pt;}
._11_c01318{width:11.906133pt;}
._12_c01318{width:13.222400pt;}
._10_c01318{width:14.316800pt;}
._f_c01318{width:15.212800pt;}
._13_c01318{width:16.179200pt;}
._1c_c01318{width:17.110400pt;}
._5_c01318{width:18.540800pt;}
._9_c01318{width:20.377600pt;}
._8_c01318{width:22.105600pt;}
._7_c01318{width:23.116800pt;}
._19_c01318{width:29.363200pt;}
._18_c01318{width:30.848000pt;}
._17_c01318{width:32.166400pt;}
._1b_c01318{width:34.176000pt;}
.fs5_c01318{font-size:35.555557pt;}
.fs2_c01318{font-size:42.666667pt;}
.fs4_c01318{font-size:53.333333pt;}
.fs1_c01318{font-size:64.000000pt;}
.fs0_c01318{font-size:69.333333pt;}
.fs3_c01318{font-size:85.333333pt;}
.y0_c01318{bottom:0.000000pt;}
.y17_c01318{bottom:60.000000pt;}
.y21_c01318{bottom:117.333333pt;}
.y20_c01318{bottom:142.000000pt;}
.y1f_c01318{bottom:178.666667pt;}
.y1e_c01318{bottom:196.000000pt;}
.y1d_c01318{bottom:213.333333pt;}
.y1c_c01318{bottom:230.666667pt;}
.y1b_c01318{bottom:255.333333pt;}
.y1a_c01318{bottom:292.000000pt;}
.y19_c01318{bottom:309.333333pt;}
.y18_c01318{bottom:334.000000pt;}
.y14_c01318{bottom:389.333333pt;}
.y13_c01318{bottom:413.333333pt;}
.y12_c01318{bottom:437.333333pt;}
.y11_c01318{bottom:480.000000pt;}
.y10_c01318{bottom:504.000000pt;}
.yf_c01318{bottom:528.000000pt;}
.ye_c01318{bottom:552.000000pt;}
.yd_c01318{bottom:576.000000pt;}
.yc_c01318{bottom:600.000000pt;}
.yb_c01318{bottom:624.000000pt;}
.ya_c01318{bottom:648.000000pt;}
.y9_c01318{bottom:672.000000pt;}
.y8_c01318{bottom:696.000000pt;}
.y7_c01318{bottom:720.000000pt;}
.y6_c01318{bottom:744.000000pt;}
.y5_c01318{bottom:768.000000pt;}
.y4_c01318{bottom:792.000000pt;}
.y3_c01318{bottom:816.000000pt;}
.y2_c01318{bottom:840.000000pt;}
.y1_c01318{bottom:881.333333pt;}
.y15_c01318{bottom:948.000000pt;}
.y16_c01318{bottom:1061.333333pt;}
.h6_c01318{height:31.805557pt;}
.h7_c01318{height:47.708333pt;}
.h1_c01318{height:49.088542pt;}
.h5_c01318{height:49.843750pt;}
.h2_c01318{height:60.218750pt;}
.h3_c01318{height:60.666900pt;}
.h4_c01318{height:80.291667pt;}
.h0_c01318{height:1122.666667pt;}
.w0_c01318{width:793.333333pt;}
.x0_c01318{left:0.000000pt;}
.x1_c01318{left:133.795333pt;}
.x2_c01318{left:160.265667pt;}
.x3_c01318{left:370.473600pt;}
.x4_c01318{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9956d8a9c9cfb25ab772bd5d.woff2')format("woff");}.ff1_c01319{font-family:ff1_c01319;line-height:0.934082;font-style:normal;font-weight:normal;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_5c0cad64331b194c3e8f2b14.woff2')format("woff");}.ff2_c01319{font-family:ff2_c01319;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c01319;src:url('chunks/assets/font_66402eb6cb8cce340d234d8c.woff2')format("woff");}.ff3_c01319{font-family:ff3_c01319;line-height:0.756836;font-style:normal;font-weight:normal;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_bf2b230871f2f5702cbab49d.woff2')format("woff");}.ff4_c01319{font-family:ff4_c01319;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01319;src:url('chunks/assets/font_718f1218fe5cdaf84591eadc.woff2')format("woff");}.ff5_c01319{font-family:ff5_c01319;line-height:0.697754;font-style:normal;font-weight: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_c01319;src:url('chunks/assets/font_e222b3c7c04c0c90511b4136.woff2')format("woff");}.ff6_c01319{font-family:ff6_c01319;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01319;src:url('chunks/assets/font_1b7fd861d0a9dfa32bebad02.woff2')format("woff");}.ff7_c01319{font-family:ff7_c01319;line-height:0.889648;font-style: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);}
.m1_c01319{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3_c01319{vertical-align:-33.000000px;}
.v2_c01319{vertical-align:-23.086200px;}
.v0_c01319{vertical-align:0.000000px;}
.v1_c01319{vertical-align:23.086200px;}
.ls5_c01319{letter-spacing:0.000000px;}
.ls6_c01319{letter-spacing:0.012000px;}
.ls3_c01319{letter-spacing:0.610800px;}
.ls1_c01319{letter-spacing:1.116600px;}
.ls2_c01319{letter-spacing:1.923000px;}
.ls0_c01319{letter-spacing:3.318000px;}
.ls4_c01319{letter-spacing:3.999999px;}
.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;}
}
.ws0_c01319{word-spacing:-0.040000px;}
.ws1_c01319{word-spacing:0.000000px;}
._e_c01319{margin-left:-10.598400px;}
._15_c01319{margin-left:-7.142400px;}
._11_c01319{margin-left:-5.140800px;}
._3_c01319{margin-left:-3.909600px;}
._9_c01319{margin-left:-2.419200px;}
._5_c01319{margin-left:-1.324800px;}
._2_c01319{width:1.101600px;}
._1_c01319{width:3.060000px;}
._0_c01319{width:4.183200px;}
._6_c01319{width:5.378400px;}
._d_c01319{width:6.552000px;}
._4_c01319{width:8.064000px;}
._b_c01319{width:9.266400px;}
._c_c01319{width:10.713600px;}
._7_c01319{width:12.326400px;}
._16_c01319{width:13.478400px;}
._a_c01319{width:14.709600px;}
._8_c01319{width:16.228800px;}
._f_c01319{width:17.316000px;}
._17_c01319{width:18.460800px;}
._13_c01319{width:21.038400px;}
._14_c01319{width:22.132800px;}
._10_c01319{width:23.443200px;}
._12_c01319{width:25.012800px;}
.fc0_c01319{color:rgb(0,0,0);}
.fs3_c01319{font-size:40.000002px;}
.fs1_c01319{font-size:48.000000px;}
.fs2_c01319{font-size:60.000000px;}
.fs0_c01319{font-size:72.000000px;}
.y0_c01319{bottom:0.000000px;}
.y1a_c01319{bottom:67.500000px;}
.y21_c01319{bottom:132.000000px;}
.y20_c01319{bottom:159.750000px;}
.y1f_c01319{bottom:209.250000px;}
.y1e_c01319{bottom:250.500000px;}
.y1d_c01319{bottom:278.250000px;}
.y1c_c01319{bottom:319.500000px;}
.y1b_c01319{bottom:347.250000px;}
.y18_c01319{bottom:411.000000px;}
.y17_c01319{bottom:438.000000px;}
.y16_c01319{bottom:465.000000px;}
.y15_c01319{bottom:492.000000px;}
.y14_c01319{bottom:540.000000px;}
.y13_c01319{bottom:567.000000px;}
.y12_c01319{bottom:594.000000px;}
.y11_c01319{bottom:621.000000px;}
.y10_c01319{bottom:648.000000px;}
.yf_c01319{bottom:696.000000px;}
.ye_c01319{bottom:723.000000px;}
.yd_c01319{bottom:750.000000px;}
.yc_c01319{bottom:777.000000px;}
.yb_c01319{bottom:804.000000px;}
.ya_c01319{bottom:831.000000px;}
.y9_c01319{bottom:858.000000px;}
.y8_c01319{bottom:885.000000px;}
.y7_c01319{bottom:912.000000px;}
.y6_c01319{bottom:939.000000px;}
.y5_c01319{bottom:966.000000px;}
.y4_c01319{bottom:1014.000000px;}
.y3_c01319{bottom:1041.000000px;}
.y2_c01319{bottom:1068.000000px;}
.y1_c01319{bottom:1095.000000px;}
.y19_c01319{bottom:1194.000000px;}
.h5_c01319{height:27.480470px;}
.h4_c01319{height:44.208984px;}
.h1_c01319{height:51.257812px;}
.h6_c01319{height:53.671875px;}
.h3_c01319{height:56.074219px;}
.h2_c01319{height:56.929950px;}
.h0_c01319{height:1263.000000px;}
.w0_c01319{width:892.500000px;}
.x0_c01319{left:0.000000px;}
.x1_c01319{left:65.480310px;}
@media print{
.v3_c01319{vertical-align:-29.333333pt;}
.v2_c01319{vertical-align:-20.521067pt;}
.v0_c01319{vertical-align:0.000000pt;}
.v1_c01319{vertical-align:20.521067pt;}
.ls5_c01319{letter-spacing:0.000000pt;}
.ls6_c01319{letter-spacing:0.010667pt;}
.ls3_c01319{letter-spacing:0.542933pt;}
.ls1_c01319{letter-spacing:0.992533pt;}
.ls2_c01319{letter-spacing:1.709333pt;}
.ls0_c01319{letter-spacing:2.949333pt;}
.ls4_c01319{letter-spacing:3.555555pt;}
.ws0_c01319{word-spacing:-0.035556pt;}
.ws1_c01319{word-spacing:0.000000pt;}
._e_c01319{margin-left:-9.420800pt;}
._15_c01319{margin-left:-6.348800pt;}
._11_c01319{margin-left:-4.569600pt;}
._3_c01319{margin-left:-3.475200pt;}
._9_c01319{margin-left:-2.150400pt;}
._5_c01319{margin-left:-1.177600pt;}
._2_c01319{width:0.979200pt;}
._1_c01319{width:2.720000pt;}
._0_c01319{width:3.718400pt;}
._6_c01319{width:4.780800pt;}
._d_c01319{width:5.824000pt;}
._4_c01319{width:7.168000pt;}
._b_c01319{width:8.236800pt;}
._c_c01319{width:9.523200pt;}
._7_c01319{width:10.956800pt;}
._16_c01319{width:11.980800pt;}
._a_c01319{width:13.075200pt;}
._8_c01319{width:14.425600pt;}
._f_c01319{width:15.392000pt;}
._17_c01319{width:16.409600pt;}
._13_c01319{width:18.700800pt;}
._14_c01319{width:19.673600pt;}
._10_c01319{width:20.838400pt;}
._12_c01319{width:22.233600pt;}
.fs3_c01319{font-size:35.555557pt;}
.fs1_c01319{font-size:42.666667pt;}
.fs2_c01319{font-size:53.333333pt;}
.fs0_c01319{font-size:64.000000pt;}
.y0_c01319{bottom:0.000000pt;}
.y1a_c01319{bottom:60.000000pt;}
.y21_c01319{bottom:117.333333pt;}
.y20_c01319{bottom:142.000000pt;}
.y1f_c01319{bottom:186.000000pt;}
.y1e_c01319{bottom:222.666667pt;}
.y1d_c01319{bottom:247.333333pt;}
.y1c_c01319{bottom:284.000000pt;}
.y1b_c01319{bottom:308.666667pt;}
.y18_c01319{bottom:365.333333pt;}
.y17_c01319{bottom:389.333333pt;}
.y16_c01319{bottom:413.333333pt;}
.y15_c01319{bottom:437.333333pt;}
.y14_c01319{bottom:480.000000pt;}
.y13_c01319{bottom:504.000000pt;}
.y12_c01319{bottom:528.000000pt;}
.y11_c01319{bottom:552.000000pt;}
.y10_c01319{bottom:576.000000pt;}
.yf_c01319{bottom:618.666667pt;}
.ye_c01319{bottom:642.666667pt;}
.yd_c01319{bottom:666.666667pt;}
.yc_c01319{bottom:690.666667pt;}
.yb_c01319{bottom:714.666667pt;}
.ya_c01319{bottom:738.666667pt;}
.y9_c01319{bottom:762.666667pt;}
.y8_c01319{bottom:786.666667pt;}
.y7_c01319{bottom:810.666667pt;}
.y6_c01319{bottom:834.666667pt;}
.y5_c01319{bottom:858.666667pt;}
.y4_c01319{bottom:901.333333pt;}
.y3_c01319{bottom:925.333333pt;}
.y2_c01319{bottom:949.333333pt;}
.y1_c01319{bottom:973.333333pt;}
.y19_c01319{bottom:1061.333333pt;}
.h5_c01319{height:24.427085pt;}
.h4_c01319{height:39.296875pt;}
.h1_c01319{height:45.562500pt;}
.h6_c01319{height:47.708333pt;}
.h3_c01319{height:49.843750pt;}
.h2_c01319{height:50.604400pt;}
.h0_c01319{height:1122.666667pt;}
.w0_c01319{width:793.333333pt;}
.x0_c01319{left:0.000000pt;}
.x1_c01319{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3931e3fc0b02793878de23b0.woff2')format("woff");}.ff1_c01320{font-family:ff1_c01320;line-height:0.939453;font-style:normal;font-weight:normal;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_39abc048ff0bbb4b5f8e9202.woff2')format("woff");}.ff2_c01320{font-family:ff2_c01320;line-height:0.934082;font-style:normal;font-weight:normal;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_7261248f829b792e14f896b8.woff2')format("woff");}.ff3_c01320{font-family:ff3_c01320;line-height:0.932129;font-style:normal;font-weight:normal;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_88bbba57bfa4b1c198df8b09.woff2')format("woff");}.ff4_c01320{font-family:ff4_c01320;line-height:0.976074;font-style:normal;font-weight:normal;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_e5f97b2970fd24db99842f1d.woff2')format("woff");}.ff5_c01320{font-family:ff5_c01320;line-height:1.155762;font-style:normal;font-weight: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_c01320;src:url('chunks/assets/font_79d5395c717830cd4e1ee5e6.woff2')format("woff");}.ff6_c01320{font-family:ff6_c01320;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01320;src:url('chunks/assets/font_91b7097dc2a804e33dc2a953.woff2')format("woff");}.ff7_c01320{font-family:ff7_c01320;line-height:0.678223;font-style: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);}
.v3_c01320{vertical-align:-33.000000px;}
.v2_c01320{vertical-align:-23.086200px;}
.v0_c01320{vertical-align:0.000000px;}
.v1_c01320{vertical-align:23.086200px;}
.ls6_c01320{letter-spacing:-0.014400px;}
.ls5_c01320{letter-spacing:0.000000px;}
.ls4_c01320{letter-spacing:0.007200px;}
.ls0_c01320{letter-spacing:0.007800px;}
.ls2_c01320{letter-spacing:0.012000px;}
.ls1_c01320{letter-spacing:3.223800px;}
.ls3_c01320{letter-spacing:3.999999px;}
.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;}
}
.ws0_c01320{word-spacing:-20.815200px;}
.ws1_c01320{word-spacing:-0.057600px;}
.ws2_c01320{word-spacing:0.000000px;}
._a_c01320{margin-left:-10.584000px;}
._10_c01320{margin-left:-5.340000px;}
._13_c01320{margin-left:-3.800400px;}
._3_c01320{margin-left:-2.692800px;}
._b_c01320{margin-left:-1.130400px;}
._5_c01320{width:1.080000px;}
._1_c01320{width:2.160000px;}
._2_c01320{width:3.895200px;}
._8_c01320{width:5.760000px;}
._12_c01320{width:7.384800px;}
._11_c01320{width:9.792000px;}
._f_c01320{width:11.534400px;}
._c_c01320{width:14.536800px;}
._e_c01320{width:15.724800px;}
._d_c01320{width:17.143200px;}
._9_c01320{width:18.576000px;}
._6_c01320{width:21.607200px;}
._0_c01320{width:22.680000px;}
._4_c01320{width:25.200000px;}
._7_c01320{width:26.344800px;}
.fc0_c01320{color:rgb(0,0,0);}
.fs5_c01320{font-size:40.000002px;}
.fs3_c01320{font-size:48.000000px;}
.fs2_c01320{font-size:54.000000px;}
.fs4_c01320{font-size:60.000000px;}
.fs0_c01320{font-size:72.000000px;}
.fs1_c01320{font-size:78.000000px;}
.y0_c01320{bottom:0.000000px;}
.y6_c01320{bottom:12.000000px;}
.ya_c01320{bottom:67.500000px;}
.yc_c01320{bottom:132.000000px;}
.yb_c01320{bottom:159.750000px;}
.y8_c01320{bottom:300.000000px;}
.y7_c01320{bottom:327.000000px;}
.y5_c01320{bottom:372.000000px;}
.y4_c01320{bottom:993.000000px;}
.y3_c01320{bottom:1020.000000px;}
.y2_c01320{bottom:1047.000000px;}
.y1_c01320{bottom:1093.500000px;}
.y9_c01320{bottom:1194.000000px;}
.h7_c01320{height:35.781252px;}
.h4_c01320{height:42.292969px;}
.h2_c01320{height:51.257812px;}
.h8_c01320{height:53.671875px;}
.h6_c01320{height:56.074219px;}
.h1_c01320{height:56.100586px;}
.h5_c01320{height:57.258075px;}
.h3_c01320{height:589.500000px;}
.h0_c01320{height:1263.000000px;}
.w1_c01320{width:676.500000px;}
.w0_c01320{width:892.500000px;}
.x0_c01320{left:0.000000px;}
.x1_c01320{left:150.519750px;}
.x2_c01320{left:173.975850px;}
.x3_c01320{left:416.782800px;}
.x4_c01320{left:801.992850px;}
@media print{
.v3_c01320{vertical-align:-29.333333pt;}
.v2_c01320{vertical-align:-20.521067pt;}
.v0_c01320{vertical-align:0.000000pt;}
.v1_c01320{vertical-align:20.521067pt;}
.ls6_c01320{letter-spacing:-0.012800pt;}
.ls5_c01320{letter-spacing:0.000000pt;}
.ls4_c01320{letter-spacing:0.006400pt;}
.ls0_c01320{letter-spacing:0.006933pt;}
.ls2_c01320{letter-spacing:0.010667pt;}
.ls1_c01320{letter-spacing:2.865600pt;}
.ls3_c01320{letter-spacing:3.555555pt;}
.ws0_c01320{word-spacing:-18.502400pt;}
.ws1_c01320{word-spacing:-0.051200pt;}
.ws2_c01320{word-spacing:0.000000pt;}
._a_c01320{margin-left:-9.408000pt;}
._10_c01320{margin-left:-4.746667pt;}
._13_c01320{margin-left:-3.378133pt;}
._3_c01320{margin-left:-2.393600pt;}
._b_c01320{margin-left:-1.004800pt;}
._5_c01320{width:0.960000pt;}
._1_c01320{width:1.920000pt;}
._2_c01320{width:3.462400pt;}
._8_c01320{width:5.120000pt;}
._12_c01320{width:6.564267pt;}
._11_c01320{width:8.704000pt;}
._f_c01320{width:10.252800pt;}
._c_c01320{width:12.921600pt;}
._e_c01320{width:13.977600pt;}
._d_c01320{width:15.238400pt;}
._9_c01320{width:16.512000pt;}
._6_c01320{width:19.206400pt;}
._0_c01320{width:20.160000pt;}
._4_c01320{width:22.400000pt;}
._7_c01320{width:23.417600pt;}
.fs5_c01320{font-size:35.555557pt;}
.fs3_c01320{font-size:42.666667pt;}
.fs2_c01320{font-size:48.000000pt;}
.fs4_c01320{font-size:53.333333pt;}
.fs0_c01320{font-size:64.000000pt;}
.fs1_c01320{font-size:69.333333pt;}
.y0_c01320{bottom:0.000000pt;}
.y6_c01320{bottom:10.666667pt;}
.ya_c01320{bottom:60.000000pt;}
.yc_c01320{bottom:117.333333pt;}
.yb_c01320{bottom:142.000000pt;}
.y8_c01320{bottom:266.666667pt;}
.y7_c01320{bottom:290.666667pt;}
.y5_c01320{bottom:330.666667pt;}
.y4_c01320{bottom:882.666667pt;}
.y3_c01320{bottom:906.666667pt;}
.y2_c01320{bottom:930.666667pt;}
.y1_c01320{bottom:972.000000pt;}
.y9_c01320{bottom:1061.333333pt;}
.h7_c01320{height:31.805557pt;}
.h4_c01320{height:37.593750pt;}
.h2_c01320{height:45.562500pt;}
.h8_c01320{height:47.708333pt;}
.h6_c01320{height:49.843750pt;}
.h1_c01320{height:49.867188pt;}
.h5_c01320{height:50.896067pt;}
.h3_c01320{height:524.000000pt;}
.h0_c01320{height:1122.666667pt;}
.w1_c01320{width:601.333333pt;}
.w0_c01320{width:793.333333pt;}
.x0_c01320{left:0.000000pt;}
.x1_c01320{left:133.795333pt;}
.x2_c01320{left:154.645200pt;}
.x3_c01320{left:370.473600pt;}
.x4_c01320{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_027c64082f35410f9dc92734.woff2')format("woff");}.ff1_c01321{font-family:ff1_c01321;line-height:1.144531;font-style:normal;font-weight:normal;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_c832dc1adac365d027d3d653.woff2')format("woff");}.ff2_c01321{font-family:ff2_c01321;line-height:0.933105;font-style:normal;font-weight:normal;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_768985b0f09158fc00816b60.woff2')format("woff");}.ff3_c01321{font-family:ff3_c01321;line-height:0.932129;font-style:normal;font-weight:normal;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_9426be7021f72c0cbbf7dbae.woff2')format("woff");}.ff4_c01321{font-family:ff4_c01321;line-height:0.756836;font-style:normal;font-weight:normal;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_7aa360515fb51039196168db.woff2')format("woff");}.ff5_c01321{font-family:ff5_c01321;line-height:1.155762;font-style:normal;font-weight: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_c01321;src:url('chunks/assets/font_866b771c53c09b61572099fe.woff2')format("woff");}.ff6_c01321{font-family:ff6_c01321;line-height:1.100098;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01321;src:url('chunks/assets/font_c0c96f0fc796a1d593c98523.woff2')format("woff");}.ff7_c01321{font-family:ff7_c01321;line-height:0.889648;font-style: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);}
.v3_c01321{vertical-align:-33.000000px;}
.v2_c01321{vertical-align:-23.086200px;}
.v0_c01321{vertical-align:0.000000px;}
.v1_c01321{vertical-align:23.086200px;}
.ls5_c01321{letter-spacing:-0.014400px;}
.ls4_c01321{letter-spacing:-0.005400px;}
.ls3_c01321{letter-spacing:0.000000px;}
.ls0_c01321{letter-spacing:0.010800px;}
.ls6_c01321{letter-spacing:0.012000px;}
.ls1_c01321{letter-spacing:0.021600px;}
.ls2_c01321{letter-spacing:2.626200px;}
.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;}
}
.ws0_c01321{word-spacing:-17.074800px;}
.ws2_c01321{word-spacing:-10.000001px;}
.ws1_c01321{word-spacing:-0.057600px;}
.ws3_c01321{word-spacing:0.000000px;}
._10_c01321{margin-left:-7.214400px;}
._b_c01321{margin-left:-4.852800px;}
._4_c01321{margin-left:-2.512800px;}
._2_c01321{margin-left:-1.497600px;}
._5_c01321{width:1.000800px;}
._0_c01321{width:2.188800px;}
._1_c01321{width:3.679200px;}
._3_c01321{width:4.737600px;}
._e_c01321{width:6.807360px;}
._d_c01321{width:8.265600px;}
._11_c01321{width:9.453600px;}
._8_c01321{width:10.468800px;}
._a_c01321{width:12.002400px;}
._f_c01321{width:13.061040px;}
._7_c01321{width:14.220000px;}
._9_c01321{width:15.710400px;}
._6_c01321{width:16.725600px;}
._c_c01321{width:18.547200px;}
.fc0_c01321{color:rgb(0,0,0);}
.fs4_c01321{font-size:40.000002px;}
.fs2_c01321{font-size:48.000000px;}
.fs0_c01321{font-size:54.000000px;}
.fs3_c01321{font-size:60.000000px;}
.fs1_c01321{font-size:72.000000px;}
.y0_c01321{bottom:0.000000px;}
.y4_c01321{bottom:10.500000px;}
.y3_c01321{bottom:27.000000px;}
.y2_c01321{bottom:45.000000px;}
.yd_c01321{bottom:67.500000px;}
.ye_c01321{bottom:140.250000px;}
.yb_c01321{bottom:268.500000px;}
.ya_c01321{bottom:295.500000px;}
.y9_c01321{bottom:322.500000px;}
.y8_c01321{bottom:349.500000px;}
.y7_c01321{bottom:397.500000px;}
.y6_c01321{bottom:424.500000px;}
.y5_c01321{bottom:451.500000px;}
.y1_c01321{bottom:496.500000px;}
.yc_c01321{bottom:1194.000000px;}
.h8_c01321{height:35.292971px;}
.h7_c01321{height:44.208984px;}
.h2_c01321{height:50.756836px;}
.h3_c01321{height:51.187500px;}
.h5_c01321{height:51.257812px;}
.h6_c01321{height:56.074219px;}
.h4_c01321{height:57.211200px;}
.h1_c01321{height:616.500000px;}
.h0_c01321{height:1263.000000px;}
.w1_c01321{width:676.500000px;}
.w0_c01321{width:892.500000px;}
.x0_c01321{left:0.000000px;}
.x2_c01321{left:29.332005px;}
.x3_c01321{left:61.582380px;}
.x1_c01321{left:66.000000px;}
.x4_c01321{left:223.384650px;}
@media print{
.v3_c01321{vertical-align:-29.333333pt;}
.v2_c01321{vertical-align:-20.521067pt;}
.v0_c01321{vertical-align:0.000000pt;}
.v1_c01321{vertical-align:20.521067pt;}
.ls5_c01321{letter-spacing:-0.012800pt;}
.ls4_c01321{letter-spacing:-0.004800pt;}
.ls3_c01321{letter-spacing:0.000000pt;}
.ls0_c01321{letter-spacing:0.009600pt;}
.ls6_c01321{letter-spacing:0.010667pt;}
.ls1_c01321{letter-spacing:0.019200pt;}
.ls2_c01321{letter-spacing:2.334400pt;}
.ws0_c01321{word-spacing:-15.177600pt;}
.ws2_c01321{word-spacing:-8.888889pt;}
.ws1_c01321{word-spacing:-0.051200pt;}
.ws3_c01321{word-spacing:0.000000pt;}
._10_c01321{margin-left:-6.412800pt;}
._b_c01321{margin-left:-4.313600pt;}
._4_c01321{margin-left:-2.233600pt;}
._2_c01321{margin-left:-1.331200pt;}
._5_c01321{width:0.889600pt;}
._0_c01321{width:1.945600pt;}
._1_c01321{width:3.270400pt;}
._3_c01321{width:4.211200pt;}
._e_c01321{width:6.050987pt;}
._d_c01321{width:7.347200pt;}
._11_c01321{width:8.403200pt;}
._8_c01321{width:9.305600pt;}
._a_c01321{width:10.668800pt;}
._f_c01321{width:11.609813pt;}
._7_c01321{width:12.640000pt;}
._9_c01321{width:13.964800pt;}
._6_c01321{width:14.867200pt;}
._c_c01321{width:16.486400pt;}
.fs4_c01321{font-size:35.555557pt;}
.fs2_c01321{font-size:42.666667pt;}
.fs0_c01321{font-size:48.000000pt;}
.fs3_c01321{font-size:53.333333pt;}
.fs1_c01321{font-size:64.000000pt;}
.y0_c01321{bottom:0.000000pt;}
.y4_c01321{bottom:9.333333pt;}
.y3_c01321{bottom:24.000000pt;}
.y2_c01321{bottom:40.000000pt;}
.yd_c01321{bottom:60.000000pt;}
.ye_c01321{bottom:124.666667pt;}
.yb_c01321{bottom:238.666667pt;}
.ya_c01321{bottom:262.666667pt;}
.y9_c01321{bottom:286.666667pt;}
.y8_c01321{bottom:310.666667pt;}
.y7_c01321{bottom:353.333333pt;}
.y6_c01321{bottom:377.333333pt;}
.y5_c01321{bottom:401.333333pt;}
.y1_c01321{bottom:441.333333pt;}
.yc_c01321{bottom:1061.333333pt;}
.h8_c01321{height:31.371529pt;}
.h7_c01321{height:39.296875pt;}
.h2_c01321{height:45.117188pt;}
.h3_c01321{height:45.500000pt;}
.h5_c01321{height:45.562500pt;}
.h6_c01321{height:49.843750pt;}
.h4_c01321{height:50.854400pt;}
.h1_c01321{height:548.000000pt;}
.h0_c01321{height:1122.666667pt;}
.w1_c01321{width:601.333333pt;}
.w0_c01321{width:793.333333pt;}
.x0_c01321{left:0.000000pt;}
.x2_c01321{left:26.072893pt;}
.x3_c01321{left:54.739893pt;}
.x1_c01321{left:58.666667pt;}
.x4_c01321{left:198.564133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1de9d5479e4920b70757987c.woff2')format("woff");}.ff1_c01322{font-family:ff1_c01322;line-height:0.987793;font-style:normal;font-weight:normal;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_52647d2db4f3b626d0c0bc88.woff2')format("woff");}.ff2_c01322{font-family:ff2_c01322;line-height:0.931152;font-style:normal;font-weight:normal;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_ecd21e91978be75bb3434727.woff2')format("woff");}.ff3_c01322{font-family:ff3_c01322;line-height:1.155762;font-style: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;}
.ls1_c01322{letter-spacing:0.000000px;}
.ls0_c01322{letter-spacing:0.012000px;}
.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;}
}
.ws0_c01322{word-spacing:0.000000px;}
._2_c01322{margin-left:-3.931200px;}
._5_c01322{margin-left:-1.980000px;}
._1_c01322{width:1.281600px;}
._0_c01322{width:2.325600px;}
._6_c01322{width:3.736800px;}
._4_c01322{width:5.212800px;}
._3_c01322{width:7.675200px;}
._8_c01322{width:9.900000px;}
._9_c01322{width:11.260800px;}
._b_c01322{width:12.333600px;}
._7_c01322{width:13.658400px;}
._a_c01322{width:16.524000px;}
.fc0_c01322{color:rgb(0,0,0);}
.fs0_c01322{font-size:54.000000px;}
.fs2_c01322{font-size:60.000000px;}
.fs1_c01322{font-size:72.000000px;}
.y0_c01322{bottom:0.000000px;}
.y2_c01322{bottom:12.000000px;}
.y8_c01322{bottom:67.500000px;}
.y6_c01322{bottom:145.500000px;}
.y5_c01322{bottom:640.500000px;}
.y4_c01322{bottom:667.500000px;}
.y3_c01322{bottom:694.500000px;}
.y1_c01322{bottom:739.500000px;}
.y7_c01322{bottom:1194.000000px;}
.h2_c01322{height:42.292969px;}
.h3_c01322{height:51.187500px;}
.h5_c01322{height:56.074219px;}
.h1_c01322{height:373.500000px;}
.h4_c01322{height:463.500000px;}
.h0_c01322{height:1263.000000px;}
.w1_c01322{width:676.500000px;}
.w0_c01322{width:892.500000px;}
.x0_c01322{left:0.000000px;}
.x1_c01322{left:150.000000px;}
.x3_c01322{left:191.694600px;}
.x2_c01322{left:241.106700px;}
.x4_c01322{left:416.782800px;}
.x5_c01322{left:801.992850px;}
@media print{
.v0_c01322{vertical-align:0.000000pt;}
.ls1_c01322{letter-spacing:0.000000pt;}
.ls0_c01322{letter-spacing:0.010667pt;}
.ws0_c01322{word-spacing:0.000000pt;}
._2_c01322{margin-left:-3.494400pt;}
._5_c01322{margin-left:-1.760000pt;}
._1_c01322{width:1.139200pt;}
._0_c01322{width:2.067200pt;}
._6_c01322{width:3.321600pt;}
._4_c01322{width:4.633600pt;}
._3_c01322{width:6.822400pt;}
._8_c01322{width:8.800000pt;}
._9_c01322{width:10.009600pt;}
._b_c01322{width:10.963200pt;}
._7_c01322{width:12.140800pt;}
._a_c01322{width:14.688000pt;}
.fs0_c01322{font-size:48.000000pt;}
.fs2_c01322{font-size:53.333333pt;}
.fs1_c01322{font-size:64.000000pt;}
.y0_c01322{bottom:0.000000pt;}
.y2_c01322{bottom:10.666667pt;}
.y8_c01322{bottom:60.000000pt;}
.y6_c01322{bottom:129.333333pt;}
.y5_c01322{bottom:569.333333pt;}
.y4_c01322{bottom:593.333333pt;}
.y3_c01322{bottom:617.333333pt;}
.y1_c01322{bottom:657.333333pt;}
.y7_c01322{bottom:1061.333333pt;}
.h2_c01322{height:37.593750pt;}
.h3_c01322{height:45.500000pt;}
.h5_c01322{height:49.843750pt;}
.h1_c01322{height:332.000000pt;}
.h4_c01322{height:412.000000pt;}
.h0_c01322{height:1122.666667pt;}
.w1_c01322{width:601.333333pt;}
.w0_c01322{width:793.333333pt;}
.x0_c01322{left:0.000000pt;}
.x1_c01322{left:133.333333pt;}
.x3_c01322{left:170.395200pt;}
.x2_c01322{left:214.317067pt;}
.x4_c01322{left:370.473600pt;}
.x5_c01322{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d03933e6ae50ab2c00956cb0.woff2')format("woff");}.ff1_c01323{font-family:ff1_c01323;line-height:0.933105;font-style:normal;font-weight:normal;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_3a1722e592aa2c993dbe8b6b.woff2')format("woff");}.ff2_c01323{font-family:ff2_c01323;line-height:0.987793;font-style:normal;font-weight:normal;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_d106cc17ed7aec35ce925425.woff2')format("woff");}.ff3_c01323{font-family:ff3_c01323;line-height:0.756836;font-style:normal;font-weight:normal;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_6c5de722fa6677827830ecc8.woff2')format("woff");}.ff4_c01323{font-family:ff4_c01323;line-height:1.155762;font-style: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);}
.v0_c01323{vertical-align:0.000000px;}
.ls0_c01323{letter-spacing:0.000000px;}
.ls1_c01323{letter-spacing:0.012000px;}
.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;}
}
.ws0_c01323{word-spacing:0.000000px;}
._e_c01323{margin-left:-7.711200px;}
._d_c01323{margin-left:-4.132800px;}
._7_c01323{margin-left:-2.952000px;}
._3_c01323{margin-left:-1.260000px;}
._b_c01323{width:1.296000px;}
._0_c01323{width:2.325600px;}
._5_c01323{width:4.053600px;}
._a_c01323{width:5.126400px;}
._9_c01323{width:6.242400px;}
._c_c01323{width:8.467200px;}
._f_c01323{width:10.483200px;}
._6_c01323{width:11.498400px;}
._1_c01323{width:13.240800px;}
._2_c01323{width:15.609600px;}
._4_c01323{width:16.876800px;}
._8_c01323{width:18.720000px;}
.fc0_c01323{color:rgb(0,0,0);}
.fs1_c01323{font-size:54.000000px;}
.fs2_c01323{font-size:60.000000px;}
.fs0_c01323{font-size:72.000000px;}
.y0_c01323{bottom:0.000000px;}
.y4_c01323{bottom:12.000000px;}
.yb_c01323{bottom:67.500000px;}
.y9_c01323{bottom:162.000000px;}
.y8_c01323{bottom:586.500000px;}
.y7_c01323{bottom:613.500000px;}
.y6_c01323{bottom:640.500000px;}
.y5_c01323{bottom:667.500000px;}
.y3_c01323{bottom:712.500000px;}
.y2_c01323{bottom:1068.000000px;}
.y1_c01323{bottom:1095.000000px;}
.ya_c01323{bottom:1194.000000px;}
.h3_c01323{height:42.292969px;}
.h6_c01323{height:44.208984px;}
.h1_c01323{height:51.187500px;}
.h5_c01323{height:56.074219px;}
.h2_c01323{height:324.000000px;}
.h4_c01323{height:393.000000px;}
.h0_c01323{height:1263.000000px;}
.w1_c01323{width:676.500000px;}
.w0_c01323{width:892.500000px;}
.x0_c01323{left:0.000000px;}
.x1_c01323{left:65.480310px;}
.x2_c01323{left:238.084350px;}
.x3_c01323{left:250.767000px;}
@media print{
.v0_c01323{vertical-align:0.000000pt;}
.ls0_c01323{letter-spacing:0.000000pt;}
.ls1_c01323{letter-spacing:0.010667pt;}
.ws0_c01323{word-spacing:0.000000pt;}
._e_c01323{margin-left:-6.854400pt;}
._d_c01323{margin-left:-3.673600pt;}
._7_c01323{margin-left:-2.624000pt;}
._3_c01323{margin-left:-1.120000pt;}
._b_c01323{width:1.152000pt;}
._0_c01323{width:2.067200pt;}
._5_c01323{width:3.603200pt;}
._a_c01323{width:4.556800pt;}
._9_c01323{width:5.548800pt;}
._c_c01323{width:7.526400pt;}
._f_c01323{width:9.318400pt;}
._6_c01323{width:10.220800pt;}
._1_c01323{width:11.769600pt;}
._2_c01323{width:13.875200pt;}
._4_c01323{width:15.001600pt;}
._8_c01323{width:16.640000pt;}
.fs1_c01323{font-size:48.000000pt;}
.fs2_c01323{font-size:53.333333pt;}
.fs0_c01323{font-size:64.000000pt;}
.y0_c01323{bottom:0.000000pt;}
.y4_c01323{bottom:10.666667pt;}
.yb_c01323{bottom:60.000000pt;}
.y9_c01323{bottom:144.000000pt;}
.y8_c01323{bottom:521.333333pt;}
.y7_c01323{bottom:545.333333pt;}
.y6_c01323{bottom:569.333333pt;}
.y5_c01323{bottom:593.333333pt;}
.y3_c01323{bottom:633.333333pt;}
.y2_c01323{bottom:949.333333pt;}
.y1_c01323{bottom:973.333333pt;}
.ya_c01323{bottom:1061.333333pt;}
.h3_c01323{height:37.593750pt;}
.h6_c01323{height:39.296875pt;}
.h1_c01323{height:45.500000pt;}
.h5_c01323{height:49.843750pt;}
.h2_c01323{height:288.000000pt;}
.h4_c01323{height:349.333333pt;}
.h0_c01323{height:1122.666667pt;}
.w1_c01323{width:601.333333pt;}
.w0_c01323{width:793.333333pt;}
.x0_c01323{left:0.000000pt;}
.x1_c01323{left:58.204720pt;}
.x2_c01323{left:211.630533pt;}
.x3_c01323{left:222.904000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_16e28dadc545a9766891e748.woff2')format("woff");}.ff1_c01324{font-family:ff1_c01324;line-height:0.934082;font-style:normal;font-weight:normal;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_b43b2874538c50c541582a21.woff2')format("woff");}.ff2_c01324{font-family:ff2_c01324;line-height:0.975586;font-style:normal;font-weight:normal;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_d735993ef08a73751ea566a9.woff2')format("woff");}.ff3_c01324{font-family:ff3_c01324;line-height:1.155762;font-style:normal;font-weight:normal;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_8641a945719d40a7f965b212.woff2')format("woff");}.ff4_c01324{font-family:ff4_c01324;line-height:1.112305;font-style:normal;font-weight:normal;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_19593c5207d2162700e14dac.woff2')format("woff");}.ff5_c01324{font-family:ff5_c01324;line-height:0.678223;font-style: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);}
.v3_c01324{vertical-align:-33.000000px;}
.v2_c01324{vertical-align:-23.086200px;}
.v0_c01324{vertical-align:0.000000px;}
.v1_c01324{vertical-align:23.086200px;}
.ls2_c01324{letter-spacing:-0.009600px;}
.ls1_c01324{letter-spacing:0.000000px;}
.ls0_c01324{letter-spacing:0.012000px;}
.ls3_c01324{letter-spacing:0.021600px;}
.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;}
}
.ws0_c01324{word-spacing:-13.190400px;}
.ws1_c01324{word-spacing:-10.000001px;}
.ws2_c01324{word-spacing:0.000000px;}
._b_c01324{margin-left:-4.485600px;}
._8_c01324{margin-left:-3.016800px;}
._0_c01324{margin-left:-1.490400px;}
._6_c01324{width:1.130400px;}
._2_c01324{width:2.469600px;}
._3_c01324{width:3.564000px;}
._5_c01324{width:4.910400px;}
._4_c01324{width:5.990400px;}
._1_c01324{width:7.495200px;}
._a_c01324{width:9.324000px;}
._9_c01324{width:11.469600px;}
._7_c01324{width:13.240800px;}
._c_c01324{width:15.796800px;}
._e_c01324{width:16.819200px;}
._d_c01324{width:18.640800px;}
._f_c01324{width:21.362400px;}
._10_c01324{width:23.234400px;}
.fc0_c01324{color:rgb(0,0,0);}
.fs4_c01324{font-size:40.000002px;}
.fs1_c01324{font-size:48.000000px;}
.fs2_c01324{font-size:54.000000px;}
.fs3_c01324{font-size:60.000000px;}
.fs0_c01324{font-size:72.000000px;}
.y0_c01324{bottom:0.000000px;}
.y7_c01324{bottom:12.000000px;}
.yf_c01324{bottom:67.500000px;}
.y11_c01324{bottom:132.000000px;}
.y10_c01324{bottom:159.750000px;}
.yd_c01324{bottom:264.000000px;}
.yc_c01324{bottom:291.000000px;}
.yb_c01324{bottom:318.000000px;}
.ya_c01324{bottom:366.000000px;}
.y9_c01324{bottom:393.000000px;}
.y8_c01324{bottom:420.000000px;}
.y6_c01324{bottom:465.000000px;}
.y5_c01324{bottom:966.000000px;}
.y4_c01324{bottom:993.000000px;}
.y3_c01324{bottom:1020.000000px;}
.y2_c01324{bottom:1068.000000px;}
.y1_c01324{bottom:1095.000000px;}
.ye_c01324{bottom:1194.000000px;}
.h6_c01324{height:35.781252px;}
.h4_c01324{height:41.633789px;}
.h1_c01324{height:51.257812px;}
.h7_c01324{height:53.671875px;}
.h5_c01324{height:56.074219px;}
.h2_c01324{height:57.258075px;}
.h3_c01324{height:469.500000px;}
.h0_c01324{height:1263.000000px;}
.w1_c01324{width:676.500000px;}
.w0_c01324{width:892.500000px;}
.x0_c01324{left:0.000000px;}
.x1_c01324{left:150.519750px;}
.x2_c01324{left:184.519350px;}
.x3_c01324{left:416.782800px;}
.x4_c01324{left:801.992850px;}
@media print{
.v3_c01324{vertical-align:-29.333333pt;}
.v2_c01324{vertical-align:-20.521067pt;}
.v0_c01324{vertical-align:0.000000pt;}
.v1_c01324{vertical-align:20.521067pt;}
.ls2_c01324{letter-spacing:-0.008533pt;}
.ls1_c01324{letter-spacing:0.000000pt;}
.ls0_c01324{letter-spacing:0.010667pt;}
.ls3_c01324{letter-spacing:0.019200pt;}
.ws0_c01324{word-spacing:-11.724800pt;}
.ws1_c01324{word-spacing:-8.888889pt;}
.ws2_c01324{word-spacing:0.000000pt;}
._b_c01324{margin-left:-3.987200pt;}
._8_c01324{margin-left:-2.681600pt;}
._0_c01324{margin-left:-1.324800pt;}
._6_c01324{width:1.004800pt;}
._2_c01324{width:2.195200pt;}
._3_c01324{width:3.168000pt;}
._5_c01324{width:4.364800pt;}
._4_c01324{width:5.324800pt;}
._1_c01324{width:6.662400pt;}
._a_c01324{width:8.288000pt;}
._9_c01324{width:10.195200pt;}
._7_c01324{width:11.769600pt;}
._c_c01324{width:14.041600pt;}
._e_c01324{width:14.950400pt;}
._d_c01324{width:16.569600pt;}
._f_c01324{width:18.988800pt;}
._10_c01324{width:20.652800pt;}
.fs4_c01324{font-size:35.555557pt;}
.fs1_c01324{font-size:42.666667pt;}
.fs2_c01324{font-size:48.000000pt;}
.fs3_c01324{font-size:53.333333pt;}
.fs0_c01324{font-size:64.000000pt;}
.y0_c01324{bottom:0.000000pt;}
.y7_c01324{bottom:10.666667pt;}
.yf_c01324{bottom:60.000000pt;}
.y11_c01324{bottom:117.333333pt;}
.y10_c01324{bottom:142.000000pt;}
.yd_c01324{bottom:234.666667pt;}
.yc_c01324{bottom:258.666667pt;}
.yb_c01324{bottom:282.666667pt;}
.ya_c01324{bottom:325.333333pt;}
.y9_c01324{bottom:349.333333pt;}
.y8_c01324{bottom:373.333333pt;}
.y6_c01324{bottom:413.333333pt;}
.y5_c01324{bottom:858.666667pt;}
.y4_c01324{bottom:882.666667pt;}
.y3_c01324{bottom:906.666667pt;}
.y2_c01324{bottom:949.333333pt;}
.y1_c01324{bottom:973.333333pt;}
.ye_c01324{bottom:1061.333333pt;}
.h6_c01324{height:31.805557pt;}
.h4_c01324{height:37.007812pt;}
.h1_c01324{height:45.562500pt;}
.h7_c01324{height:47.708333pt;}
.h5_c01324{height:49.843750pt;}
.h2_c01324{height:50.896067pt;}
.h3_c01324{height:417.333333pt;}
.h0_c01324{height:1122.666667pt;}
.w1_c01324{width:601.333333pt;}
.w0_c01324{width:793.333333pt;}
.x0_c01324{left:0.000000pt;}
.x1_c01324{left:133.795333pt;}
.x2_c01324{left:164.017200pt;}
.x3_c01324{left:370.473600pt;}
.x4_c01324{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_144c282c06666add3c27878d.woff2')format("woff");}.ff1_c01325{font-family:ff1_c01325;line-height:0.789062;font-style:normal;font-weight:normal;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_aeac7618c4403c8bfbffdac5.woff2')format("woff");}.ff2_c01325{font-family:ff2_c01325;line-height:1.161133;font-style:normal;font-weight:normal;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_16fadf586606f511ae7cf007.woff2')format("woff");}.ff3_c01325{font-family:ff3_c01325;line-height:0.932129;font-style:normal;font-weight:normal;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_651f81fbd56c8b9c55295b6b.woff2')format("woff");}.ff4_c01325{font-family:ff4_c01325;line-height:0.756836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01325;src:url('chunks/assets/font_099f6a940b07d063e3ed215a.woff2')format("woff");}.ff5_c01325{font-family:ff5_c01325;line-height:1.155762;font-style: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;}
.ls1_c01325{letter-spacing:0.000000px;}
.ls2_c01325{letter-spacing:0.012000px;}
.ls0_c01325{letter-spacing:0.021600px;}
.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;}
}
.ws0_c01325{word-spacing:0.000000px;}
._5_c01325{margin-left:-4.874400px;}
._b_c01325{margin-left:-3.216000px;}
._1_c01325{margin-left:-2.023200px;}
._9_c01325{width:1.533600px;}
._7_c01325{width:2.988000px;}
._3_c01325{width:4.644000px;}
._4_c01325{width:6.012000px;}
._8_c01325{width:7.603200px;}
._a_c01325{width:9.306000px;}
._0_c01325{width:10.663200px;}
._2_c01325{width:12.729600px;}
._6_c01325{width:15.480000px;}
.fc0_c01325{color:rgb(0,0,0);}
.fs0_c01325{font-size:54.000000px;}
.fs2_c01325{font-size:60.000000px;}
.fs1_c01325{font-size:72.000000px;}
.y0_c01325{bottom:0.000000px;}
.y2_c01325{bottom:12.000000px;}
.ya_c01325{bottom:67.500000px;}
.y8_c01325{bottom:153.000000px;}
.y7_c01325{bottom:175.500000px;}
.y6_c01325{bottom:210.000000px;}
.y5_c01325{bottom:237.000000px;}
.y4_c01325{bottom:276.000000px;}
.y3_c01325{bottom:354.000000px;}
.y1_c01325{bottom:468.000000px;}
.y9_c01325{bottom:1194.000000px;}
.h2_c01325{height:41.633789px;}
.h7_c01325{height:44.208984px;}
.h4_c01325{height:51.257812px;}
.h6_c01325{height:56.074219px;}
.h5_c01325{height:56.455078px;}
.h3_c01325{height:67.746094px;}
.h1_c01325{height:645.000000px;}
.h0_c01325{height:1263.000000px;}
.w1_c01325{width:676.500000px;}
.w0_c01325{width:892.500000px;}
.x0_c01325{left:0.000000px;}
.x1_c01325{left:66.000000px;}
.x2_c01325{left:269.846850px;}
@media print{
.v0_c01325{vertical-align:0.000000pt;}
.ls1_c01325{letter-spacing:0.000000pt;}
.ls2_c01325{letter-spacing:0.010667pt;}
.ls0_c01325{letter-spacing:0.019200pt;}
.ws0_c01325{word-spacing:0.000000pt;}
._5_c01325{margin-left:-4.332800pt;}
._b_c01325{margin-left:-2.858667pt;}
._1_c01325{margin-left:-1.798400pt;}
._9_c01325{width:1.363200pt;}
._7_c01325{width:2.656000pt;}
._3_c01325{width:4.128000pt;}
._4_c01325{width:5.344000pt;}
._8_c01325{width:6.758400pt;}
._a_c01325{width:8.272000pt;}
._0_c01325{width:9.478400pt;}
._2_c01325{width:11.315200pt;}
._6_c01325{width:13.760000pt;}
.fs0_c01325{font-size:48.000000pt;}
.fs2_c01325{font-size:53.333333pt;}
.fs1_c01325{font-size:64.000000pt;}
.y0_c01325{bottom:0.000000pt;}
.y2_c01325{bottom:10.666667pt;}
.ya_c01325{bottom:60.000000pt;}
.y8_c01325{bottom:136.000000pt;}
.y7_c01325{bottom:156.000000pt;}
.y6_c01325{bottom:186.666667pt;}
.y5_c01325{bottom:210.666667pt;}
.y4_c01325{bottom:245.333333pt;}
.y3_c01325{bottom:314.666667pt;}
.y1_c01325{bottom:416.000000pt;}
.y9_c01325{bottom:1061.333333pt;}
.h2_c01325{height:37.007812pt;}
.h7_c01325{height:39.296875pt;}
.h4_c01325{height:45.562500pt;}
.h6_c01325{height:49.843750pt;}
.h5_c01325{height:50.182292pt;}
.h3_c01325{height:60.218750pt;}
.h1_c01325{height:573.333333pt;}
.h0_c01325{height:1122.666667pt;}
.w1_c01325{width:601.333333pt;}
.w0_c01325{width:793.333333pt;}
.x0_c01325{left:0.000000pt;}
.x1_c01325{left:58.666667pt;}
.x2_c01325{left:239.863867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9f06b93b94297691516a38ec.woff2')format("woff");}.ff1_c01326{font-family:ff1_c01326;line-height:1.010254;font-style:normal;font-weight:normal;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_4efeed90fe7f58ef02da00f0.woff2')format("woff");}.ff2_c01326{font-family:ff2_c01326;line-height:1.005371;font-style:normal;font-weight:normal;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_1d555699b44261c38aabcbe6.woff2')format("woff");}.ff3_c01326{font-family:ff3_c01326;line-height:1.155762;font-style: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);}
.v0_c01326{vertical-align:0.000000px;}
.ls4_c01326{letter-spacing:0.000000px;}
.ls3_c01326{letter-spacing:0.012000px;}
.ls1_c01326{letter-spacing:0.014400px;}
.ls0_c01326{letter-spacing:0.280800px;}
.ls2_c01326{letter-spacing:1.087200px;}
.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;}
}
.ws0_c01326{word-spacing:-18.000000px;}
.ws1_c01326{word-spacing:0.000000px;}
._1c_c01326{margin-left:-8.665200px;}
._14_c01326{margin-left:-6.401400px;}
._c_c01326{margin-left:-4.852800px;}
._b_c01326{margin-left:-2.800200px;}
._1_c01326{margin-left:-1.360800px;}
._5_c01326{width:1.094400px;}
._3_c01326{width:2.599200px;}
._4_c01326{width:3.967200px;}
._0_c01326{width:5.896800px;}
._2_c01326{width:7.257600px;}
._d_c01326{width:9.057000px;}
._8_c01326{width:10.274400px;}
._6_c01326{width:11.628000px;}
._a_c01326{width:13.096800px;}
._7_c01326{width:14.227200px;}
._9_c01326{width:15.573600px;}
._12_c01326{width:16.638000px;}
._13_c01326{width:19.554600px;}
._15_c01326{width:21.254400px;}
._16_c01326{width:23.148000px;}
._17_c01326{width:24.667800px;}
._18_c01326{width:26.574000px;}
._19_c01326{width:27.928800px;}
._1b_c01326{width:31.923600px;}
._1a_c01326{width:33.099000px;}
._10_c01326{width:34.473600px;}
._11_c01326{width:35.640000px;}
._e_c01326{width:36.928800px;}
._f_c01326{width:38.433000px;}
.fc0_c01326{color:rgb(0,0,0);}
.fs1_c01326{font-size:60.000000px;}
.fs0_c01326{font-size:72.000000px;}
.y0_c01326{bottom:0.000000px;}
.y28_c01326{bottom:67.500000px;}
.y26_c01326{bottom:193.500000px;}
.y25_c01326{bottom:214.500000px;}
.y24_c01326{bottom:235.500000px;}
.y23_c01326{bottom:277.500000px;}
.y22_c01326{bottom:298.500000px;}
.y21_c01326{bottom:319.500000px;}
.y20_c01326{bottom:340.500000px;}
.y1f_c01326{bottom:361.500000px;}
.y1e_c01326{bottom:403.500000px;}
.y1d_c01326{bottom:445.500000px;}
.y1c_c01326{bottom:466.500000px;}
.y1b_c01326{bottom:508.500000px;}
.y1a_c01326{bottom:529.500000px;}
.y19_c01326{bottom:550.500000px;}
.y18_c01326{bottom:571.500000px;}
.y17_c01326{bottom:592.500000px;}
.y16_c01326{bottom:613.500000px;}
.y15_c01326{bottom:634.500000px;}
.y14_c01326{bottom:655.500000px;}
.y13_c01326{bottom:676.500000px;}
.y12_c01326{bottom:697.500000px;}
.y11_c01326{bottom:718.500000px;}
.y10_c01326{bottom:739.500000px;}
.yf_c01326{bottom:760.500000px;}
.ye_c01326{bottom:802.500000px;}
.yd_c01326{bottom:823.500000px;}
.yc_c01326{bottom:844.500000px;}
.yb_c01326{bottom:865.500000px;}
.ya_c01326{bottom:907.500000px;}
.y9_c01326{bottom:928.500000px;}
.y8_c01326{bottom:949.500000px;}
.y7_c01326{bottom:970.500000px;}
.y6_c01326{bottom:991.500000px;}
.y5_c01326{bottom:1012.500000px;}
.y4_c01326{bottom:1033.500000px;}
.y3_c01326{bottom:1054.500000px;}
.y2_c01326{bottom:1075.500000px;}
.y1_c01326{bottom:1096.500000px;}
.y27_c01326{bottom:1194.000000px;}
.h1_c01326{height:52.417969px;}
.h2_c01326{height:56.074219px;}
.h0_c01326{height:1263.000000px;}
.w0_c01326{width:892.500000px;}
.x0_c01326{left:0.000000px;}
.x1_c01326{left:150.519750px;}
.x2_c01326{left:416.782800px;}
.x3_c01326{left:801.992850px;}
@media print{
.v0_c01326{vertical-align:0.000000pt;}
.ls4_c01326{letter-spacing:0.000000pt;}
.ls3_c01326{letter-spacing:0.010667pt;}
.ls1_c01326{letter-spacing:0.012800pt;}
.ls0_c01326{letter-spacing:0.249600pt;}
.ls2_c01326{letter-spacing:0.966400pt;}
.ws0_c01326{word-spacing:-16.000000pt;}
.ws1_c01326{word-spacing:0.000000pt;}
._1c_c01326{margin-left:-7.702400pt;}
._14_c01326{margin-left:-5.690133pt;}
._c_c01326{margin-left:-4.313600pt;}
._b_c01326{margin-left:-2.489067pt;}
._1_c01326{margin-left:-1.209600pt;}
._5_c01326{width:0.972800pt;}
._3_c01326{width:2.310400pt;}
._4_c01326{width:3.526400pt;}
._0_c01326{width:5.241600pt;}
._2_c01326{width:6.451200pt;}
._d_c01326{width:8.050667pt;}
._8_c01326{width:9.132800pt;}
._6_c01326{width:10.336000pt;}
._a_c01326{width:11.641600pt;}
._7_c01326{width:12.646400pt;}
._9_c01326{width:13.843200pt;}
._12_c01326{width:14.789333pt;}
._13_c01326{width:17.381867pt;}
._15_c01326{width:18.892800pt;}
._16_c01326{width:20.576000pt;}
._17_c01326{width:21.926933pt;}
._18_c01326{width:23.621333pt;}
._19_c01326{width:24.825600pt;}
._1b_c01326{width:28.376533pt;}
._1a_c01326{width:29.421333pt;}
._10_c01326{width:30.643200pt;}
._11_c01326{width:31.680000pt;}
._e_c01326{width:32.825600pt;}
._f_c01326{width:34.162667pt;}
.fs1_c01326{font-size:53.333333pt;}
.fs0_c01326{font-size:64.000000pt;}
.y0_c01326{bottom:0.000000pt;}
.y28_c01326{bottom:60.000000pt;}
.y26_c01326{bottom:172.000000pt;}
.y25_c01326{bottom:190.666667pt;}
.y24_c01326{bottom:209.333333pt;}
.y23_c01326{bottom:246.666667pt;}
.y22_c01326{bottom:265.333333pt;}
.y21_c01326{bottom:284.000000pt;}
.y20_c01326{bottom:302.666667pt;}
.y1f_c01326{bottom:321.333333pt;}
.y1e_c01326{bottom:358.666667pt;}
.y1d_c01326{bottom:396.000000pt;}
.y1c_c01326{bottom:414.666667pt;}
.y1b_c01326{bottom:452.000000pt;}
.y1a_c01326{bottom:470.666667pt;}
.y19_c01326{bottom:489.333333pt;}
.y18_c01326{bottom:508.000000pt;}
.y17_c01326{bottom:526.666667pt;}
.y16_c01326{bottom:545.333333pt;}
.y15_c01326{bottom:564.000000pt;}
.y14_c01326{bottom:582.666667pt;}
.y13_c01326{bottom:601.333333pt;}
.y12_c01326{bottom:620.000000pt;}
.y11_c01326{bottom:638.666667pt;}
.y10_c01326{bottom:657.333333pt;}
.yf_c01326{bottom:676.000000pt;}
.ye_c01326{bottom:713.333333pt;}
.yd_c01326{bottom:732.000000pt;}
.yc_c01326{bottom:750.666667pt;}
.yb_c01326{bottom:769.333333pt;}
.ya_c01326{bottom:806.666667pt;}
.y9_c01326{bottom:825.333333pt;}
.y8_c01326{bottom:844.000000pt;}
.y7_c01326{bottom:862.666667pt;}
.y6_c01326{bottom:881.333333pt;}
.y5_c01326{bottom:900.000000pt;}
.y4_c01326{bottom:918.666667pt;}
.y3_c01326{bottom:937.333333pt;}
.y2_c01326{bottom:956.000000pt;}
.y1_c01326{bottom:974.666667pt;}
.y27_c01326{bottom:1061.333333pt;}
.h1_c01326{height:46.593750pt;}
.h2_c01326{height:49.843750pt;}
.h0_c01326{height:1122.666667pt;}
.w0_c01326{width:793.333333pt;}
.x0_c01326{left:0.000000pt;}
.x1_c01326{left:133.795333pt;}
.x2_c01326{left:370.473600pt;}
.x3_c01326{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7855c1d8db32f10ad66111d4.woff2')format("woff");}.ff1_c01327{font-family:ff1_c01327;line-height:0.928223;font-style:normal;font-weight:normal;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_a8cea4974cd08aaedae28391.woff2')format("woff");}.ff2_c01327{font-family:ff2_c01327;line-height:1.163086;font-style:normal;font-weight:normal;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_75f96dc14513e257d311f26f.woff2')format("woff");}.ff3_c01327{font-family:ff3_c01327;line-height:0.756836;font-style:normal;font-weight:normal;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_90c0f3986a356ef6216e448d.woff2')format("woff");}.ff4_c01327{font-family:ff4_c01327;line-height:1.155762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01327;src:url('chunks/assets/font_28442fc3b6bf1c0c3825f74b.woff2')format("woff");}.ff5_c01327{font-family:ff5_c01327;line-height:0.901367;font-style:normal;font-weight: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_c01327;src:url('chunks/assets/font_67e8c217cf4009d8221b0b6e.woff2')format("woff");}.ff6_c01327{font-family:ff6_c01327;line-height:0.890137;font-style: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);}
.m1_c01327{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3_c01327{vertical-align:-33.000000px;}
.v2_c01327{vertical-align:-23.086200px;}
.v0_c01327{vertical-align:0.000000px;}
.v1_c01327{vertical-align:23.086200px;}
.ls5_c01327{letter-spacing:0.000000px;}
.ls1_c01327{letter-spacing:0.007200px;}
.ls0_c01327{letter-spacing:0.007800px;}
.ls4_c01327{letter-spacing:0.012000px;}
.ls3_c01327{letter-spacing:3.999999px;}
.ls2_c01327{letter-spacing:4.528200px;}
.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:0.000000px;}
._7_c01327{margin-left:-10.584000px;}
._16_c01327{margin-left:-7.968900px;}
._18_c01327{margin-left:-5.392800px;}
._a_c01327{margin-left:-4.377600px;}
._0_c01327{margin-left:-2.851200px;}
._5_c01327{margin-left:-1.548000px;}
._4_c01327{width:1.065600px;}
._3_c01327{width:2.433600px;}
._2_c01327{width:3.456000px;}
._8_c01327{width:4.464000px;}
._1_c01327{width:6.278400px;}
._6_c01327{width:8.114400px;}
._f_c01327{width:9.590400px;}
._10_c01327{width:10.692000px;}
._11_c01327{width:12.708000px;}
._12_c01327{width:14.371200px;}
._e_c01327{width:16.430400px;}
._d_c01327{width:17.892000px;}
._c_c01327{width:20.851200px;}
._9_c01327{width:23.220000px;}
._b_c01327{width:24.760800px;}
._13_c01327{width:25.848000px;}
._14_c01327{width:27.691200px;}
._15_c01327{width:30.060000px;}
._17_c01327{width:31.629600px;}
.fc1_c01327{color:rgb(255,255,255);}
.fc0_c01327{color:rgb(0,0,0);}
.fs5_c01327{font-size:40.000002px;}
.fs2_c01327{font-size:48.000000px;}
.fs4_c01327{font-size:60.000000px;}
.fs1_c01327{font-size:72.000000px;}
.fs0_c01327{font-size:78.000000px;}
.fs3_c01327{font-size:96.000000px;}
.y0_c01327{bottom:0.000000px;}
.y1b_c01327{bottom:67.500000px;}
.y1e_c01327{bottom:132.000000px;}
.y1d_c01327{bottom:151.500000px;}
.y1c_c01327{bottom:179.250000px;}
.y18_c01327{bottom:247.500000px;}
.y17_c01327{bottom:274.500000px;}
.y16_c01327{bottom:301.500000px;}
.y15_c01327{bottom:328.500000px;}
.y14_c01327{bottom:355.500000px;}
.y13_c01327{bottom:403.500000px;}
.y12_c01327{bottom:430.500000px;}
.y11_c01327{bottom:457.500000px;}
.y10_c01327{bottom:484.500000px;}
.yf_c01327{bottom:511.500000px;}
.ye_c01327{bottom:538.500000px;}
.yd_c01327{bottom:585.000000px;}
.yc_c01327{bottom:654.000000px;}
.yb_c01327{bottom:681.000000px;}
.ya_c01327{bottom:708.000000px;}
.y9_c01327{bottom:735.000000px;}
.y8_c01327{bottom:783.000000px;}
.y7_c01327{bottom:810.000000px;}
.y6_c01327{bottom:837.000000px;}
.y5_c01327{bottom:864.000000px;}
.y4_c01327{bottom:891.000000px;}
.y3_c01327{bottom:918.000000px;}
.y2_c01327{bottom:945.000000px;}
.y1_c01327{bottom:991.500000px;}
.y19_c01327{bottom:1066.500000px;}
.y1a_c01327{bottom:1194.000000px;}
.h8_c01327{height:27.343751px;}
.h9_c01327{height:41.015625px;}
.h7_c01327{height:44.208984px;}
.h3_c01327{height:50.976562px;}
.h1_c01327{height:55.224609px;}
.h6_c01327{height:56.074219px;}
.h2_c01327{height:67.746094px;}
.h4_c01327{height:68.250263px;}
.h5_c01327{height:90.328125px;}
.h0_c01327{height:1263.000000px;}
.w0_c01327{width:892.500000px;}
.x0_c01327{left:0.000000px;}
.x1_c01327{left:65.480310px;}
.x2_c01327{left:94.798875px;}
@media print{
.v3_c01327{vertical-align:-29.333333pt;}
.v2_c01327{vertical-align:-20.521067pt;}
.v0_c01327{vertical-align:0.000000pt;}
.v1_c01327{vertical-align:20.521067pt;}
.ls5_c01327{letter-spacing:0.000000pt;}
.ls1_c01327{letter-spacing:0.006400pt;}
.ls0_c01327{letter-spacing:0.006933pt;}
.ls4_c01327{letter-spacing:0.010667pt;}
.ls3_c01327{letter-spacing:3.555555pt;}
.ls2_c01327{letter-spacing:4.025067pt;}
.ws0_c01327{word-spacing:0.000000pt;}
._7_c01327{margin-left:-9.408000pt;}
._16_c01327{margin-left:-7.083467pt;}
._18_c01327{margin-left:-4.793600pt;}
._a_c01327{margin-left:-3.891200pt;}
._0_c01327{margin-left:-2.534400pt;}
._5_c01327{margin-left:-1.376000pt;}
._4_c01327{width:0.947200pt;}
._3_c01327{width:2.163200pt;}
._2_c01327{width:3.072000pt;}
._8_c01327{width:3.968000pt;}
._1_c01327{width:5.580800pt;}
._6_c01327{width:7.212800pt;}
._f_c01327{width:8.524800pt;}
._10_c01327{width:9.504000pt;}
._11_c01327{width:11.296000pt;}
._12_c01327{width:12.774400pt;}
._e_c01327{width:14.604800pt;}
._d_c01327{width:15.904000pt;}
._c_c01327{width:18.534400pt;}
._9_c01327{width:20.640000pt;}
._b_c01327{width:22.009600pt;}
._13_c01327{width:22.976000pt;}
._14_c01327{width:24.614400pt;}
._15_c01327{width:26.720000pt;}
._17_c01327{width:28.115200pt;}
.fs5_c01327{font-size:35.555557pt;}
.fs2_c01327{font-size:42.666667pt;}
.fs4_c01327{font-size:53.333333pt;}
.fs1_c01327{font-size:64.000000pt;}
.fs0_c01327{font-size:69.333333pt;}
.fs3_c01327{font-size:85.333333pt;}
.y0_c01327{bottom:0.000000pt;}
.y1b_c01327{bottom:60.000000pt;}
.y1e_c01327{bottom:117.333333pt;}
.y1d_c01327{bottom:134.666667pt;}
.y1c_c01327{bottom:159.333333pt;}
.y18_c01327{bottom:220.000000pt;}
.y17_c01327{bottom:244.000000pt;}
.y16_c01327{bottom:268.000000pt;}
.y15_c01327{bottom:292.000000pt;}
.y14_c01327{bottom:316.000000pt;}
.y13_c01327{bottom:358.666667pt;}
.y12_c01327{bottom:382.666667pt;}
.y11_c01327{bottom:406.666667pt;}
.y10_c01327{bottom:430.666667pt;}
.yf_c01327{bottom:454.666667pt;}
.ye_c01327{bottom:478.666667pt;}
.yd_c01327{bottom:520.000000pt;}
.yc_c01327{bottom:581.333333pt;}
.yb_c01327{bottom:605.333333pt;}
.ya_c01327{bottom:629.333333pt;}
.y9_c01327{bottom:653.333333pt;}
.y8_c01327{bottom:696.000000pt;}
.y7_c01327{bottom:720.000000pt;}
.y6_c01327{bottom:744.000000pt;}
.y5_c01327{bottom:768.000000pt;}
.y4_c01327{bottom:792.000000pt;}
.y3_c01327{bottom:816.000000pt;}
.y2_c01327{bottom:840.000000pt;}
.y1_c01327{bottom:881.333333pt;}
.y19_c01327{bottom:948.000000pt;}
.y1a_c01327{bottom:1061.333333pt;}
.h8_c01327{height:24.305557pt;}
.h9_c01327{height:36.458333pt;}
.h7_c01327{height:39.296875pt;}
.h3_c01327{height:45.312500pt;}
.h1_c01327{height:49.088542pt;}
.h6_c01327{height:49.843750pt;}
.h2_c01327{height:60.218750pt;}
.h4_c01327{height:60.666900pt;}
.h5_c01327{height:80.291667pt;}
.h0_c01327{height:1122.666667pt;}
.w0_c01327{width:793.333333pt;}
.x0_c01327{left:0.000000pt;}
.x1_c01327{left:58.204720pt;}
.x2_c01327{left:84.265667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7c83c9044824c8ff070974e3.woff2')format("woff");}.ff1_c01328{font-family:ff1_c01328;line-height:0.934082;font-style:normal;font-weight:normal;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_34bbe495aa22ec3c40db3f8f.woff2')format("woff");}.ff2_c01328{font-family:ff2_c01328;line-height:1.155762;font-style:normal;font-weight:normal;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_9ee23736f4a756f7d22d41ae.woff2')format("woff");}.ff3_c01328{font-family:ff3_c01328;line-height:0.894531;font-style:normal;font-weight:normal;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_7c5e2cd96ff5f59d56ad706b.woff2')format("woff");}.ff4_c01328{font-family:ff4_c01328;line-height:0.890137;font-style: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);}
.v3_c01328{vertical-align:-33.000000px;}
.v2_c01328{vertical-align:-23.086200px;}
.v0_c01328{vertical-align:0.000000px;}
.v1_c01328{vertical-align:23.086200px;}
.ls4_c01328{letter-spacing:0.000000px;}
.ls3_c01328{letter-spacing:0.012000px;}
.ls0_c01328{letter-spacing:0.050400px;}
.ls1_c01328{letter-spacing:2.575800px;}
.ls2_c01328{letter-spacing:3.891600px;}
.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;}
}
.ws0_c01328{word-spacing:-13.200000px;}
.ws1_c01328{word-spacing:-10.000001px;}
.ws2_c01328{word-spacing:0.000000px;}
._c_c01328{margin-left:-10.555200px;}
._17_c01328{margin-left:-4.989600px;}
._5_c01328{margin-left:-3.765600px;}
._2_c01328{margin-left:-2.664000px;}
._9_c01328{margin-left:-1.418400px;}
._7_c01328{width:1.173600px;}
._0_c01328{width:2.541600px;}
._16_c01328{width:3.590400px;}
._b_c01328{width:4.752000px;}
._1_c01328{width:6.098400px;}
._8_c01328{width:7.423200px;}
._4_c01328{width:8.632800px;}
._a_c01328{width:10.195200px;}
._3_c01328{width:11.304000px;}
._6_c01328{width:12.412800px;}
._18_c01328{width:13.708800px;}
._d_c01328{width:14.911200px;}
._19_c01328{width:16.135800px;}
._15_c01328{width:17.136000px;}
._14_c01328{width:18.288000px;}
._13_c01328{width:21.715200px;}
._11_c01328{width:31.176000px;}
._10_c01328{width:33.386400px;}
._e_c01328{width:34.826400px;}
._12_c01328{width:37.274400px;}
._f_c01328{width:38.592000px;}
.fc0_c01328{color:rgb(0,0,0);}
.fs3_c01328{font-size:40.000002px;}
.fs1_c01328{font-size:48.000000px;}
.fs2_c01328{font-size:60.000000px;}
.fs0_c01328{font-size:72.000000px;}
.y0_c01328{bottom:0.000000px;}
.y1e_c01328{bottom:67.500000px;}
.y21_c01328{bottom:140.250000px;}
.y20_c01328{bottom:189.750000px;}
.y1f_c01328{bottom:239.250000px;}
.y1c_c01328{bottom:303.000000px;}
.y1b_c01328{bottom:330.000000px;}
.y1a_c01328{bottom:378.000000px;}
.y19_c01328{bottom:405.000000px;}
.y18_c01328{bottom:432.000000px;}
.y17_c01328{bottom:459.000000px;}
.y16_c01328{bottom:486.000000px;}
.y15_c01328{bottom:513.000000px;}
.y14_c01328{bottom:540.000000px;}
.y13_c01328{bottom:567.000000px;}
.y12_c01328{bottom:594.000000px;}
.y11_c01328{bottom:621.000000px;}
.y10_c01328{bottom:648.000000px;}
.yf_c01328{bottom:696.000000px;}
.ye_c01328{bottom:723.000000px;}
.yd_c01328{bottom:750.000000px;}
.yc_c01328{bottom:777.000000px;}
.yb_c01328{bottom:804.000000px;}
.ya_c01328{bottom:831.000000px;}
.y9_c01328{bottom:858.000000px;}
.y8_c01328{bottom:885.000000px;}
.y7_c01328{bottom:912.000000px;}
.y6_c01328{bottom:939.000000px;}
.y5_c01328{bottom:966.000000px;}
.y4_c01328{bottom:993.000000px;}
.y3_c01328{bottom:1041.000000px;}
.y2_c01328{bottom:1068.000000px;}
.y1_c01328{bottom:1095.000000px;}
.y1d_c01328{bottom:1194.000000px;}
.h4_c01328{height:27.070314px;}
.h1_c01328{height:51.257812px;}
.h3_c01328{height:56.074219px;}
.h2_c01328{height:57.258075px;}
.h0_c01328{height:1263.000000px;}
.w0_c01328{width:892.500000px;}
.x0_c01328{left:0.000000px;}
.x1_c01328{left:150.519750px;}
.x2_c01328{left:416.782800px;}
.x3_c01328{left:801.992850px;}
@media print{
.v3_c01328{vertical-align:-29.333333pt;}
.v2_c01328{vertical-align:-20.521067pt;}
.v0_c01328{vertical-align:0.000000pt;}
.v1_c01328{vertical-align:20.521067pt;}
.ls4_c01328{letter-spacing:0.000000pt;}
.ls3_c01328{letter-spacing:0.010667pt;}
.ls0_c01328{letter-spacing:0.044800pt;}
.ls1_c01328{letter-spacing:2.289600pt;}
.ls2_c01328{letter-spacing:3.459200pt;}
.ws0_c01328{word-spacing:-11.733333pt;}
.ws1_c01328{word-spacing:-8.888889pt;}
.ws2_c01328{word-spacing:0.000000pt;}
._c_c01328{margin-left:-9.382400pt;}
._17_c01328{margin-left:-4.435200pt;}
._5_c01328{margin-left:-3.347200pt;}
._2_c01328{margin-left:-2.368000pt;}
._9_c01328{margin-left:-1.260800pt;}
._7_c01328{width:1.043200pt;}
._0_c01328{width:2.259200pt;}
._16_c01328{width:3.191467pt;}
._b_c01328{width:4.224000pt;}
._1_c01328{width:5.420800pt;}
._8_c01328{width:6.598400pt;}
._4_c01328{width:7.673600pt;}
._a_c01328{width:9.062400pt;}
._3_c01328{width:10.048000pt;}
._6_c01328{width:11.033600pt;}
._18_c01328{width:12.185600pt;}
._d_c01328{width:13.254400pt;}
._19_c01328{width:14.342933pt;}
._15_c01328{width:15.232000pt;}
._14_c01328{width:16.256000pt;}
._13_c01328{width:19.302400pt;}
._11_c01328{width:27.712000pt;}
._10_c01328{width:29.676800pt;}
._e_c01328{width:30.956800pt;}
._12_c01328{width:33.132800pt;}
._f_c01328{width:34.304000pt;}
.fs3_c01328{font-size:35.555557pt;}
.fs1_c01328{font-size:42.666667pt;}
.fs2_c01328{font-size:53.333333pt;}
.fs0_c01328{font-size:64.000000pt;}
.y0_c01328{bottom:0.000000pt;}
.y1e_c01328{bottom:60.000000pt;}
.y21_c01328{bottom:124.666667pt;}
.y20_c01328{bottom:168.666667pt;}
.y1f_c01328{bottom:212.666667pt;}
.y1c_c01328{bottom:269.333333pt;}
.y1b_c01328{bottom:293.333333pt;}
.y1a_c01328{bottom:336.000000pt;}
.y19_c01328{bottom:360.000000pt;}
.y18_c01328{bottom:384.000000pt;}
.y17_c01328{bottom:408.000000pt;}
.y16_c01328{bottom:432.000000pt;}
.y15_c01328{bottom:456.000000pt;}
.y14_c01328{bottom:480.000000pt;}
.y13_c01328{bottom:504.000000pt;}
.y12_c01328{bottom:528.000000pt;}
.y11_c01328{bottom:552.000000pt;}
.y10_c01328{bottom:576.000000pt;}
.yf_c01328{bottom:618.666667pt;}
.ye_c01328{bottom:642.666667pt;}
.yd_c01328{bottom:666.666667pt;}
.yc_c01328{bottom:690.666667pt;}
.yb_c01328{bottom:714.666667pt;}
.ya_c01328{bottom:738.666667pt;}
.y9_c01328{bottom:762.666667pt;}
.y8_c01328{bottom:786.666667pt;}
.y7_c01328{bottom:810.666667pt;}
.y6_c01328{bottom:834.666667pt;}
.y5_c01328{bottom:858.666667pt;}
.y4_c01328{bottom:882.666667pt;}
.y3_c01328{bottom:925.333333pt;}
.y2_c01328{bottom:949.333333pt;}
.y1_c01328{bottom:973.333333pt;}
.y1d_c01328{bottom:1061.333333pt;}
.h4_c01328{height:24.062501pt;}
.h1_c01328{height:45.562500pt;}
.h3_c01328{height:49.843750pt;}
.h2_c01328{height:50.896067pt;}
.h0_c01328{height:1122.666667pt;}
.w0_c01328{width:793.333333pt;}
.x0_c01328{left:0.000000pt;}
.x1_c01328{left:133.795333pt;}
.x2_c01328{left:370.473600pt;}
.x3_c01328{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b539485d18df4947011038c7.woff2')format("woff");}.ff1_c01329{font-family:ff1_c01329;line-height:0.934082;font-style:normal;font-weight:normal;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_38127b70991cb140cb37bba9.woff2')format("woff");}.ff2_c01329{font-family:ff2_c01329;line-height:0.756836;font-style:normal;font-weight:normal;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_9510a95e8ad5796b436b6ed0.woff2')format("woff");}.ff3_c01329{font-family:ff3_c01329;line-height:1.155762;font-style:normal;font-weight:normal;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_d1521bad6ebb04edc18ea5f5.woff2')format("woff");}.ff4_c01329{font-family:ff4_c01329;line-height:0.904785;font-style:normal;font-weight:normal;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_1a6a947ee69a5ff56f83e98e.woff2')format("woff");}.ff5_c01329{font-family:ff5_c01329;line-height:0.890137;font-style: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);}
.v3_c01329{vertical-align:-33.000000px;}
.v2_c01329{vertical-align:-23.086200px;}
.v0_c01329{vertical-align:0.000000px;}
.v1_c01329{vertical-align:23.086200px;}
.ls7_c01329{letter-spacing:-0.774000px;}
.ls6_c01329{letter-spacing:-0.014400px;}
.ls5_c01329{letter-spacing:-0.007200px;}
.ls4_c01329{letter-spacing:0.000000px;}
.ls3_c01329{letter-spacing:0.012000px;}
.ls1_c01329{letter-spacing:2.755140px;}
.ls0_c01329{letter-spacing:3.517200px;}
.ls2_c01329{letter-spacing:3.999999px;}
.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;}
}
.ws1_c01329{word-spacing:-19.785600px;}
.ws0_c01329{word-spacing:-13.200000px;}
.ws2_c01329{word-spacing:-10.000001px;}
.ws3_c01329{word-spacing:0.000000px;}
._4_c01329{margin-left:-10.296000px;}
._8_c01329{margin-left:-7.171200px;}
._20_c01329{margin-left:-4.845600px;}
._3_c01329{margin-left:-3.787200px;}
._0_c01329{margin-left:-2.563200px;}
._b_c01329{margin-left:-1.044000px;}
._5_c01329{width:1.339200px;}
._1_c01329{width:2.973600px;}
._2_c01329{width:3.988800px;}
._10_c01329{width:5.097600px;}
._a_c01329{width:6.321600px;}
._f_c01329{width:7.336800px;}
._6_c01329{width:9.014400px;}
._7_c01329{width:10.267200px;}
._c_c01329{width:11.275200px;}
._e_c01329{width:12.470400px;}
._9_c01329{width:14.104800px;}
._d_c01329{width:15.933600px;}
._1f_c01329{width:17.416800px;}
._1b_c01329{width:18.691200px;}
._1e_c01329{width:21.247200px;}
._1c_c01329{width:22.672800px;}
._1d_c01329{width:23.731200px;}
._17_c01329{width:25.833600px;}
._16_c01329{width:27.511200px;}
._18_c01329{width:28.792800px;}
._1a_c01329{width:29.844000px;}
._19_c01329{width:31.341600px;}
._13_c01329{width:32.587200px;}
._14_c01329{width:33.876000px;}
._15_c01329{width:36.201600px;}
._11_c01329{width:37.706400px;}
._12_c01329{width:39.729600px;}
.fc0_c01329{color:rgb(0,0,0);}
.fs3_c01329{font-size:40.000002px;}
.fs1_c01329{font-size:48.000000px;}
.fs2_c01329{font-size:60.000000px;}
.fs0_c01329{font-size:72.000000px;}
.y0_c01329{bottom:0.000000px;}
.y1b_c01329{bottom:67.500000px;}
.y23_c01329{bottom:132.000000px;}
.y22_c01329{bottom:151.500000px;}
.y21_c01329{bottom:171.000000px;}
.y20_c01329{bottom:198.750000px;}
.y1f_c01329{bottom:248.250000px;}
.y1e_c01329{bottom:289.500000px;}
.y1d_c01329{bottom:309.000000px;}
.y1c_c01329{bottom:336.750000px;}
.y19_c01329{bottom:384.000000px;}
.y18_c01329{bottom:411.000000px;}
.y17_c01329{bottom:438.000000px;}
.y16_c01329{bottom:465.000000px;}
.y15_c01329{bottom:513.000000px;}
.y14_c01329{bottom:540.000000px;}
.y13_c01329{bottom:567.000000px;}
.y12_c01329{bottom:594.000000px;}
.y11_c01329{bottom:621.000000px;}
.y10_c01329{bottom:648.000000px;}
.yf_c01329{bottom:696.000000px;}
.ye_c01329{bottom:723.000000px;}
.yd_c01329{bottom:750.000000px;}
.yc_c01329{bottom:777.000000px;}
.yb_c01329{bottom:804.000000px;}
.ya_c01329{bottom:831.000000px;}
.y9_c01329{bottom:858.000000px;}
.y8_c01329{bottom:885.000000px;}
.y7_c01329{bottom:912.000000px;}
.y6_c01329{bottom:939.000000px;}
.y5_c01329{bottom:987.000000px;}
.y4_c01329{bottom:1014.000000px;}
.y3_c01329{bottom:1041.000000px;}
.y2_c01329{bottom:1068.000000px;}
.y1_c01329{bottom:1095.000000px;}
.y1a_c01329{bottom:1194.000000px;}
.h5_c01329{height:27.480470px;}
.h6_c01329{height:41.220703px;}
.h4_c01329{height:44.208984px;}
.h1_c01329{height:51.257812px;}
.h3_c01329{height:56.074219px;}
.h2_c01329{height:57.258075px;}
.h0_c01329{height:1263.000000px;}
.w0_c01329{width:892.500000px;}
.x0_c01329{left:0.000000px;}
.x1_c01329{left:65.480310px;}
@media print{
.v3_c01329{vertical-align:-29.333333pt;}
.v2_c01329{vertical-align:-20.521067pt;}
.v0_c01329{vertical-align:0.000000pt;}
.v1_c01329{vertical-align:20.521067pt;}
.ls7_c01329{letter-spacing:-0.688000pt;}
.ls6_c01329{letter-spacing:-0.012800pt;}
.ls5_c01329{letter-spacing:-0.006400pt;}
.ls4_c01329{letter-spacing:0.000000pt;}
.ls3_c01329{letter-spacing:0.010667pt;}
.ls1_c01329{letter-spacing:2.449013pt;}
.ls0_c01329{letter-spacing:3.126400pt;}
.ls2_c01329{letter-spacing:3.555555pt;}
.ws1_c01329{word-spacing:-17.587200pt;}
.ws0_c01329{word-spacing:-11.733333pt;}
.ws2_c01329{word-spacing:-8.888889pt;}
.ws3_c01329{word-spacing:0.000000pt;}
._4_c01329{margin-left:-9.152000pt;}
._8_c01329{margin-left:-6.374400pt;}
._20_c01329{margin-left:-4.307200pt;}
._3_c01329{margin-left:-3.366400pt;}
._0_c01329{margin-left:-2.278400pt;}
._b_c01329{margin-left:-0.928000pt;}
._5_c01329{width:1.190400pt;}
._1_c01329{width:2.643200pt;}
._2_c01329{width:3.545600pt;}
._10_c01329{width:4.531200pt;}
._a_c01329{width:5.619200pt;}
._f_c01329{width:6.521600pt;}
._6_c01329{width:8.012800pt;}
._7_c01329{width:9.126400pt;}
._c_c01329{width:10.022400pt;}
._e_c01329{width:11.084800pt;}
._9_c01329{width:12.537600pt;}
._d_c01329{width:14.163200pt;}
._1f_c01329{width:15.481600pt;}
._1b_c01329{width:16.614400pt;}
._1e_c01329{width:18.886400pt;}
._1c_c01329{width:20.153600pt;}
._1d_c01329{width:21.094400pt;}
._17_c01329{width:22.963200pt;}
._16_c01329{width:24.454400pt;}
._18_c01329{width:25.593600pt;}
._1a_c01329{width:26.528000pt;}
._19_c01329{width:27.859200pt;}
._13_c01329{width:28.966400pt;}
._14_c01329{width:30.112000pt;}
._15_c01329{width:32.179200pt;}
._11_c01329{width:33.516800pt;}
._12_c01329{width:35.315200pt;}
.fs3_c01329{font-size:35.555557pt;}
.fs1_c01329{font-size:42.666667pt;}
.fs2_c01329{font-size:53.333333pt;}
.fs0_c01329{font-size:64.000000pt;}
.y0_c01329{bottom:0.000000pt;}
.y1b_c01329{bottom:60.000000pt;}
.y23_c01329{bottom:117.333333pt;}
.y22_c01329{bottom:134.666667pt;}
.y21_c01329{bottom:152.000000pt;}
.y20_c01329{bottom:176.666667pt;}
.y1f_c01329{bottom:220.666667pt;}
.y1e_c01329{bottom:257.333333pt;}
.y1d_c01329{bottom:274.666667pt;}
.y1c_c01329{bottom:299.333333pt;}
.y19_c01329{bottom:341.333333pt;}
.y18_c01329{bottom:365.333333pt;}
.y17_c01329{bottom:389.333333pt;}
.y16_c01329{bottom:413.333333pt;}
.y15_c01329{bottom:456.000000pt;}
.y14_c01329{bottom:480.000000pt;}
.y13_c01329{bottom:504.000000pt;}
.y12_c01329{bottom:528.000000pt;}
.y11_c01329{bottom:552.000000pt;}
.y10_c01329{bottom:576.000000pt;}
.yf_c01329{bottom:618.666667pt;}
.ye_c01329{bottom:642.666667pt;}
.yd_c01329{bottom:666.666667pt;}
.yc_c01329{bottom:690.666667pt;}
.yb_c01329{bottom:714.666667pt;}
.ya_c01329{bottom:738.666667pt;}
.y9_c01329{bottom:762.666667pt;}
.y8_c01329{bottom:786.666667pt;}
.y7_c01329{bottom:810.666667pt;}
.y6_c01329{bottom:834.666667pt;}
.y5_c01329{bottom:877.333333pt;}
.y4_c01329{bottom:901.333333pt;}
.y3_c01329{bottom:925.333333pt;}
.y2_c01329{bottom:949.333333pt;}
.y1_c01329{bottom:973.333333pt;}
.y1a_c01329{bottom:1061.333333pt;}
.h5_c01329{height:24.427085pt;}
.h6_c01329{height:36.640625pt;}
.h4_c01329{height:39.296875pt;}
.h1_c01329{height:45.562500pt;}
.h3_c01329{height:49.843750pt;}
.h2_c01329{height:50.896067pt;}
.h0_c01329{height:1122.666667pt;}
.w0_c01329{width:793.333333pt;}
.x0_c01329{left:0.000000pt;}
.x1_c01329{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_efe6207df6e9e2f2f7ac9aae.woff2')format("woff");}.ff1_c01330{font-family:ff1_c01330;line-height:0.934082;font-style:normal;font-weight:normal;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_87c1530c166356a3e1b8980d.woff2')format("woff");}.ff2_c01330{font-family:ff2_c01330;line-height:1.155762;font-style:normal;font-weight:normal;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_ad7d8a45a0fa4cffb115db87.woff2')format("woff");}.ff3_c01330{font-family:ff3_c01330;line-height:1.114746;font-style:normal;font-weight:normal;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_461be628e1fb298756a96151.woff2')format("woff");}.ff4_c01330{font-family:ff4_c01330;line-height:0.893555;font-style: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);}
.m1_c01330{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3_c01330{vertical-align:-33.000000px;}
.v2_c01330{vertical-align:-23.086200px;}
.v0_c01330{vertical-align:0.000000px;}
.v1_c01330{vertical-align:23.086200px;}
.ls5_c01330{letter-spacing:-0.009600px;}
.ls4_c01330{letter-spacing:-0.007200px;}
.ls3_c01330{letter-spacing:0.000000px;}
.ls2_c01330{letter-spacing:0.012000px;}
.ls1_c01330{letter-spacing:0.306000px;}
.ls0_c01330{letter-spacing:0.774600px;}
.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;}
}
.ws0_c01330{word-spacing:-13.190400px;}
.ws1_c01330{word-spacing:-10.000001px;}
.ws2_c01330{word-spacing:0.000000px;}
._b_c01330{margin-left:-10.476000px;}
._d_c01330{margin-left:-7.005600px;}
._13_c01330{margin-left:-5.502600px;}
._a_c01330{margin-left:-4.442400px;}
._3_c01330{margin-left:-3.326400px;}
._2_c01330{margin-left:-1.742400px;}
._0_c01330{width:1.900800px;}
._5_c01330{width:3.492000px;}
._1_c01330{width:4.982400px;}
._4_c01330{width:6.876000px;}
._7_c01330{width:8.136000px;}
._6_c01330{width:9.835200px;}
._8_c01330{width:11.296800px;}
._9_c01330{width:12.780000px;}
._c_c01330{width:14.400000px;}
._e_c01330{width:15.501600px;}
._f_c01330{width:17.251200px;}
._14_c01330{width:18.510000px;}
._10_c01330{width:21.052800px;}
._12_c01330{width:22.651200px;}
._11_c01330{width:24.285600px;}
.fc0_c01330{color:rgb(0,0,0);}
.fs3_c01330{font-size:40.000002px;}
.fs1_c01330{font-size:48.000000px;}
.fs2_c01330{font-size:60.000000px;}
.fs0_c01330{font-size:72.000000px;}
.y0_c01330{bottom:0.000000px;}
.y18_c01330{bottom:67.500000px;}
.y20_c01330{bottom:132.000000px;}
.y1f_c01330{bottom:151.500000px;}
.y1e_c01330{bottom:171.000000px;}
.y1d_c01330{bottom:198.750000px;}
.y1c_c01330{bottom:248.250000px;}
.y1b_c01330{bottom:297.750000px;}
.y1a_c01330{bottom:347.250000px;}
.y19_c01330{bottom:396.750000px;}
.y16_c01330{bottom:486.000000px;}
.y15_c01330{bottom:513.000000px;}
.y14_c01330{bottom:540.000000px;}
.y13_c01330{bottom:567.000000px;}
.y12_c01330{bottom:594.000000px;}
.y11_c01330{bottom:621.000000px;}
.y10_c01330{bottom:648.000000px;}
.yf_c01330{bottom:675.000000px;}
.ye_c01330{bottom:702.000000px;}
.yd_c01330{bottom:750.000000px;}
.yc_c01330{bottom:777.000000px;}
.yb_c01330{bottom:804.000000px;}
.ya_c01330{bottom:831.000000px;}
.y9_c01330{bottom:858.000000px;}
.y8_c01330{bottom:885.000000px;}
.y7_c01330{bottom:912.000000px;}
.y6_c01330{bottom:939.000000px;}
.y5_c01330{bottom:966.000000px;}
.y4_c01330{bottom:993.000000px;}
.y3_c01330{bottom:1020.000000px;}
.y2_c01330{bottom:1068.000000px;}
.y1_c01330{bottom:1095.000000px;}
.y17_c01330{bottom:1194.000000px;}
.h4_c01330{height:35.878908px;}
.h1_c01330{height:51.257812px;}
.h5_c01330{height:53.818359px;}
.h3_c01330{height:56.074219px;}
.h2_c01330{height:57.258075px;}
.h0_c01330{height:1263.000000px;}
.w0_c01330{width:892.500000px;}
.x0_c01330{left:0.000000px;}
.x1_c01330{left:150.519750px;}
.x2_c01330{left:416.782800px;}
.x3_c01330{left:801.992850px;}
@media print{
.v3_c01330{vertical-align:-29.333333pt;}
.v2_c01330{vertical-align:-20.521067pt;}
.v0_c01330{vertical-align:0.000000pt;}
.v1_c01330{vertical-align:20.521067pt;}
.ls5_c01330{letter-spacing:-0.008533pt;}
.ls4_c01330{letter-spacing:-0.006400pt;}
.ls3_c01330{letter-spacing:0.000000pt;}
.ls2_c01330{letter-spacing:0.010667pt;}
.ls1_c01330{letter-spacing:0.272000pt;}
.ls0_c01330{letter-spacing:0.688533pt;}
.ws0_c01330{word-spacing:-11.724800pt;}
.ws1_c01330{word-spacing:-8.888889pt;}
.ws2_c01330{word-spacing:0.000000pt;}
._b_c01330{margin-left:-9.312000pt;}
._d_c01330{margin-left:-6.227200pt;}
._13_c01330{margin-left:-4.891200pt;}
._a_c01330{margin-left:-3.948800pt;}
._3_c01330{margin-left:-2.956800pt;}
._2_c01330{margin-left:-1.548800pt;}
._0_c01330{width:1.689600pt;}
._5_c01330{width:3.104000pt;}
._1_c01330{width:4.428800pt;}
._4_c01330{width:6.112000pt;}
._7_c01330{width:7.232000pt;}
._6_c01330{width:8.742400pt;}
._8_c01330{width:10.041600pt;}
._9_c01330{width:11.360000pt;}
._c_c01330{width:12.800000pt;}
._e_c01330{width:13.779200pt;}
._f_c01330{width:15.334400pt;}
._14_c01330{width:16.453333pt;}
._10_c01330{width:18.713600pt;}
._12_c01330{width:20.134400pt;}
._11_c01330{width:21.587200pt;}
.fs3_c01330{font-size:35.555557pt;}
.fs1_c01330{font-size:42.666667pt;}
.fs2_c01330{font-size:53.333333pt;}
.fs0_c01330{font-size:64.000000pt;}
.y0_c01330{bottom:0.000000pt;}
.y18_c01330{bottom:60.000000pt;}
.y20_c01330{bottom:117.333333pt;}
.y1f_c01330{bottom:134.666667pt;}
.y1e_c01330{bottom:152.000000pt;}
.y1d_c01330{bottom:176.666667pt;}
.y1c_c01330{bottom:220.666667pt;}
.y1b_c01330{bottom:264.666667pt;}
.y1a_c01330{bottom:308.666667pt;}
.y19_c01330{bottom:352.666667pt;}
.y16_c01330{bottom:432.000000pt;}
.y15_c01330{bottom:456.000000pt;}
.y14_c01330{bottom:480.000000pt;}
.y13_c01330{bottom:504.000000pt;}
.y12_c01330{bottom:528.000000pt;}
.y11_c01330{bottom:552.000000pt;}
.y10_c01330{bottom:576.000000pt;}
.yf_c01330{bottom:600.000000pt;}
.ye_c01330{bottom:624.000000pt;}
.yd_c01330{bottom:666.666667pt;}
.yc_c01330{bottom:690.666667pt;}
.yb_c01330{bottom:714.666667pt;}
.ya_c01330{bottom:738.666667pt;}
.y9_c01330{bottom:762.666667pt;}
.y8_c01330{bottom:786.666667pt;}
.y7_c01330{bottom:810.666667pt;}
.y6_c01330{bottom:834.666667pt;}
.y5_c01330{bottom:858.666667pt;}
.y4_c01330{bottom:882.666667pt;}
.y3_c01330{bottom:906.666667pt;}
.y2_c01330{bottom:949.333333pt;}
.y1_c01330{bottom:973.333333pt;}
.y17_c01330{bottom:1061.333333pt;}
.h4_c01330{height:31.892363pt;}
.h1_c01330{height:45.562500pt;}
.h5_c01330{height:47.838542pt;}
.h3_c01330{height:49.843750pt;}
.h2_c01330{height:50.896067pt;}
.h0_c01330{height:1122.666667pt;}
.w0_c01330{width:793.333333pt;}
.x0_c01330{left:0.000000pt;}
.x1_c01330{left:133.795333pt;}
.x2_c01330{left:370.473600pt;}
.x3_c01330{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_79de4b0f58568bb764fe4d4c.woff2')format("woff");}.ff1_c01331{font-family:ff1_c01331;line-height:0.939453;font-style:normal;font-weight:normal;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_6a34509ac0832a2a75d34cd2.woff2')format("woff");}.ff2_c01331{font-family:ff2_c01331;line-height:1.163086;font-style:normal;font-weight:normal;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_90e8f41c5d626b364955a1a3.woff2')format("woff");}.ff3_c01331{font-family:ff3_c01331;line-height:0.756836;font-style:normal;font-weight:normal;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_50363918096404fffa622787.woff2')format("woff");}.ff4_c01331{font-family:ff4_c01331;line-height:1.155762;font-style:normal;font-weight:normal;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_e5bc574dd9a42d82e00677b5.woff2')format("woff");}.ff5_c01331{font-family:ff5_c01331;line-height:0.905762;font-style:normal;font-weight: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_c01331;src:url('chunks/assets/font_3b69b0e5ce5bb24dd0856070.woff2')format("woff");}.ff6_c01331{font-family:ff6_c01331;line-height:0.890137;font-style: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);}
.v3_c01331{vertical-align:-33.000000px;}
.v2_c01331{vertical-align:-23.086200px;}
.v0_c01331{vertical-align:0.000000px;}
.v1_c01331{vertical-align:23.086200px;}
.ls2_c01331{letter-spacing:-0.009600px;}
.ls1_c01331{letter-spacing:0.000000px;}
.ls0_c01331{letter-spacing:0.007200px;}
.ls3_c01331{letter-spacing:0.012000px;}
.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;}
}
.ws3_c01331{word-spacing:-15.000000px;}
.ws0_c01331{word-spacing:-13.190400px;}
.ws2_c01331{word-spacing:-10.000001px;}
.ws1_c01331{word-spacing:-2.000002px;}
.ws4_c01331{word-spacing:0.000000px;}
._13_c01331{margin-left:-9.970500px;}
._f_c01331{margin-left:-6.867300px;}
._c_c01331{margin-left:-4.844100px;}
._2_c01331{margin-left:-3.384000px;}
._16_c01331{margin-left:-2.327100px;}
._0_c01331{margin-left:-1.323300px;}
._e_c01331{width:1.000800px;}
._1_c01331{width:2.044800px;}
._4_c01331{width:3.310500px;}
._b_c01331{width:4.448100px;}
._3_c01331{width:5.450400px;}
._5_c01331{width:7.205700px;}
._6_c01331{width:8.655900px;}
._7_c01331{width:9.979200px;}
._8_c01331{width:11.295300px;}
._9_c01331{width:13.334400px;}
._a_c01331{width:14.371200px;}
._d_c01331{width:15.660000px;}
._12_c01331{width:17.148900px;}
._10_c01331{width:18.734400px;}
._18_c01331{width:20.809500px;}
._11_c01331{width:22.140000px;}
._17_c01331{width:23.277600px;}
._15_c01331{width:24.336000px;}
._14_c01331{width:27.741600px;}
.fc0_c01331{color:rgb(0,0,0);}
.fs3_c01331{font-size:40.000002px;}
.fs1_c01331{font-size:48.000000px;}
.fs2_c01331{font-size:60.000000px;}
.fs0_c01331{font-size:72.000000px;}
.y0_c01331{bottom:0.000000px;}
.y19_c01331{bottom:67.500000px;}
.y20_c01331{bottom:140.250000px;}
.y1f_c01331{bottom:181.500000px;}
.y1e_c01331{bottom:209.250000px;}
.y1d_c01331{bottom:250.500000px;}
.y1c_c01331{bottom:278.250000px;}
.y1b_c01331{bottom:319.500000px;}
.y1a_c01331{bottom:347.250000px;}
.y17_c01331{bottom:418.500000px;}
.y16_c01331{bottom:445.500000px;}
.y15_c01331{bottom:472.500000px;}
.y14_c01331{bottom:499.500000px;}
.y13_c01331{bottom:526.500000px;}
.y12_c01331{bottom:574.500000px;}
.y11_c01331{bottom:601.500000px;}
.y10_c01331{bottom:628.500000px;}
.yf_c01331{bottom:655.500000px;}
.ye_c01331{bottom:682.500000px;}
.yd_c01331{bottom:709.500000px;}
.yc_c01331{bottom:757.500000px;}
.yb_c01331{bottom:784.500000px;}
.ya_c01331{bottom:811.500000px;}
.y9_c01331{bottom:838.500000px;}
.y8_c01331{bottom:865.500000px;}
.y7_c01331{bottom:892.500000px;}
.y6_c01331{bottom:940.500000px;}
.y5_c01331{bottom:967.500000px;}
.y4_c01331{bottom:994.500000px;}
.y3_c01331{bottom:1021.500000px;}
.y2_c01331{bottom:1048.500000px;}
.y1_c01331{bottom:1095.000000px;}
.y18_c01331{bottom:1194.000000px;}
.h6_c01331{height:27.480470px;}
.h7_c01331{height:41.220703px;}
.h5_c01331{height:44.208984px;}
.h1_c01331{height:51.785156px;}
.h4_c01331{height:56.074219px;}
.h2_c01331{height:67.746094px;}
.h3_c01331{height:68.250262px;}
.h0_c01331{height:1263.000000px;}
.w0_c01331{width:892.500000px;}
.x0_c01331{left:0.000000px;}
.x1_c01331{left:65.480310px;}
@media print{
.v3_c01331{vertical-align:-29.333333pt;}
.v2_c01331{vertical-align:-20.521067pt;}
.v0_c01331{vertical-align:0.000000pt;}
.v1_c01331{vertical-align:20.521067pt;}
.ls2_c01331{letter-spacing:-0.008533pt;}
.ls1_c01331{letter-spacing:0.000000pt;}
.ls0_c01331{letter-spacing:0.006400pt;}
.ls3_c01331{letter-spacing:0.010667pt;}
.ws3_c01331{word-spacing:-13.333333pt;}
.ws0_c01331{word-spacing:-11.724800pt;}
.ws2_c01331{word-spacing:-8.888889pt;}
.ws1_c01331{word-spacing:-1.777780pt;}
.ws4_c01331{word-spacing:0.000000pt;}
._13_c01331{margin-left:-8.862667pt;}
._f_c01331{margin-left:-6.104267pt;}
._c_c01331{margin-left:-4.305867pt;}
._2_c01331{margin-left:-3.008000pt;}
._16_c01331{margin-left:-2.068533pt;}
._0_c01331{margin-left:-1.176267pt;}
._e_c01331{width:0.889600pt;}
._1_c01331{width:1.817600pt;}
._4_c01331{width:2.942667pt;}
._b_c01331{width:3.953867pt;}
._3_c01331{width:4.844800pt;}
._5_c01331{width:6.405067pt;}
._6_c01331{width:7.694133pt;}
._7_c01331{width:8.870400pt;}
._8_c01331{width:10.040267pt;}
._9_c01331{width:11.852800pt;}
._a_c01331{width:12.774400pt;}
._d_c01331{width:13.920000pt;}
._12_c01331{width:15.243467pt;}
._10_c01331{width:16.652800pt;}
._18_c01331{width:18.497333pt;}
._11_c01331{width:19.680000pt;}
._17_c01331{width:20.691200pt;}
._15_c01331{width:21.632000pt;}
._14_c01331{width:24.659200pt;}
.fs3_c01331{font-size:35.555557pt;}
.fs1_c01331{font-size:42.666667pt;}
.fs2_c01331{font-size:53.333333pt;}
.fs0_c01331{font-size:64.000000pt;}
.y0_c01331{bottom:0.000000pt;}
.y19_c01331{bottom:60.000000pt;}
.y20_c01331{bottom:124.666667pt;}
.y1f_c01331{bottom:161.333333pt;}
.y1e_c01331{bottom:186.000000pt;}
.y1d_c01331{bottom:222.666667pt;}
.y1c_c01331{bottom:247.333333pt;}
.y1b_c01331{bottom:284.000000pt;}
.y1a_c01331{bottom:308.666667pt;}
.y17_c01331{bottom:372.000000pt;}
.y16_c01331{bottom:396.000000pt;}
.y15_c01331{bottom:420.000000pt;}
.y14_c01331{bottom:444.000000pt;}
.y13_c01331{bottom:468.000000pt;}
.y12_c01331{bottom:510.666667pt;}
.y11_c01331{bottom:534.666667pt;}
.y10_c01331{bottom:558.666667pt;}
.yf_c01331{bottom:582.666667pt;}
.ye_c01331{bottom:606.666667pt;}
.yd_c01331{bottom:630.666667pt;}
.yc_c01331{bottom:673.333333pt;}
.yb_c01331{bottom:697.333333pt;}
.ya_c01331{bottom:721.333333pt;}
.y9_c01331{bottom:745.333333pt;}
.y8_c01331{bottom:769.333333pt;}
.y7_c01331{bottom:793.333333pt;}
.y6_c01331{bottom:836.000000pt;}
.y5_c01331{bottom:860.000000pt;}
.y4_c01331{bottom:884.000000pt;}
.y3_c01331{bottom:908.000000pt;}
.y2_c01331{bottom:932.000000pt;}
.y1_c01331{bottom:973.333333pt;}
.y18_c01331{bottom:1061.333333pt;}
.h6_c01331{height:24.427085pt;}
.h7_c01331{height:36.640625pt;}
.h5_c01331{height:39.296875pt;}
.h1_c01331{height:46.031250pt;}
.h4_c01331{height:49.843750pt;}
.h2_c01331{height:60.218750pt;}
.h3_c01331{height:60.666900pt;}
.h0_c01331{height:1122.666667pt;}
.w0_c01331{width:793.333333pt;}
.x0_c01331{left:0.000000pt;}
.x1_c01331{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_98e7f8bf1d9e75e21841bdba.woff2')format("woff");}.ff1_c01332{font-family:ff1_c01332;line-height:0.934082;font-style:normal;font-weight:normal;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_abf257702368ab0298367f85.woff2')format("woff");}.ff2_c01332{font-family:ff2_c01332;line-height:1.155762;font-style:normal;font-weight:normal;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_81ba56ed049531c1a058b8f1.woff2')format("woff");}.ff3_c01332{font-family:ff3_c01332;line-height:0.905762;font-style:normal;font-weight:normal;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_fca6fca3ca61a30b01327d52.woff2')format("woff");}.ff4_c01332{font-family:ff4_c01332;line-height:0.890137;font-style: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);}
.v3_c01332{vertical-align:-33.000000px;}
.v2_c01332{vertical-align:-23.086200px;}
.v0_c01332{vertical-align:0.000000px;}
.v1_c01332{vertical-align:23.086200px;}
.ls3_c01332{letter-spacing:-0.014400px;}
.ls2_c01332{letter-spacing:-0.009600px;}
.ls1_c01332{letter-spacing:0.000000px;}
.ls0_c01332{letter-spacing:0.012000px;}
.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;}
}
.ws0_c01332{word-spacing:-13.190400px;}
.ws1_c01332{word-spacing:-10.000001px;}
.ws2_c01332{word-spacing:0.000000px;}
._19_c01332{margin-left:-10.778400px;}
._13_c01332{margin-left:-6.436800px;}
._c_c01332{margin-left:-3.787200px;}
._3_c01332{margin-left:-2.577600px;}
._5_c01332{margin-left:-1.404000px;}
._2_c01332{width:1.101600px;}
._1_c01332{width:2.714400px;}
._0_c01332{width:3.787200px;}
._14_c01332{width:4.996800px;}
._4_c01332{width:6.508800px;}
._15_c01332{width:8.402400px;}
._16_c01332{width:9.993600px;}
._7_c01332{width:11.152800px;}
._8_c01332{width:12.794400px;}
._9_c01332{width:13.903200px;}
._6_c01332{width:15.271200px;}
._11_c01332{width:16.948800px;}
._12_c01332{width:18.403200px;}
._10_c01332{width:22.104000px;}
._17_c01332{width:23.774400px;}
._18_c01332{width:25.286400px;}
._b_c01332{width:33.782400px;}
._f_c01332{width:36.295200px;}
._e_c01332{width:37.389600px;}
._a_c01332{width:39.988800px;}
._d_c01332{width:41.054400px;}
.fc0_c01332{color:rgb(0,0,0);}
.fs3_c01332{font-size:40.000002px;}
.fs1_c01332{font-size:48.000000px;}
.fs2_c01332{font-size:60.000000px;}
.fs0_c01332{font-size:72.000000px;}
.y0_c01332{bottom:0.000000px;}
.y17_c01332{bottom:67.500000px;}
.y21_c01332{bottom:132.000000px;}
.y20_c01332{bottom:159.750000px;}
.y1f_c01332{bottom:209.250000px;}
.y1e_c01332{bottom:250.500000px;}
.y1d_c01332{bottom:278.250000px;}
.y1c_c01332{bottom:319.500000px;}
.y1b_c01332{bottom:347.250000px;}
.y1a_c01332{bottom:396.750000px;}
.y19_c01332{bottom:438.000000px;}
.y18_c01332{bottom:465.750000px;}
.y15_c01332{bottom:513.000000px;}
.y14_c01332{bottom:540.000000px;}
.y13_c01332{bottom:567.000000px;}
.y12_c01332{bottom:594.000000px;}
.y11_c01332{bottom:621.000000px;}
.y10_c01332{bottom:648.000000px;}
.yf_c01332{bottom:675.000000px;}
.ye_c01332{bottom:702.000000px;}
.yd_c01332{bottom:750.000000px;}
.yc_c01332{bottom:777.000000px;}
.yb_c01332{bottom:804.000000px;}
.ya_c01332{bottom:831.000000px;}
.y9_c01332{bottom:858.000000px;}
.y8_c01332{bottom:885.000000px;}
.y7_c01332{bottom:912.000000px;}
.y6_c01332{bottom:939.000000px;}
.y5_c01332{bottom:966.000000px;}
.y4_c01332{bottom:993.000000px;}
.y3_c01332{bottom:1020.000000px;}
.y2_c01332{bottom:1068.000000px;}
.y1_c01332{bottom:1095.000000px;}
.y16_c01332{bottom:1194.000000px;}
.h4_c01332{height:27.480470px;}
.h5_c01332{height:41.220703px;}
.h1_c01332{height:51.257812px;}
.h3_c01332{height:56.074219px;}
.h2_c01332{height:57.258075px;}
.h0_c01332{height:1263.000000px;}
.w0_c01332{width:892.500000px;}
.x0_c01332{left:0.000000px;}
.x1_c01332{left:150.519750px;}
.x2_c01332{left:416.782800px;}
.x3_c01332{left:801.992850px;}
@media print{
.v3_c01332{vertical-align:-29.333333pt;}
.v2_c01332{vertical-align:-20.521067pt;}
.v0_c01332{vertical-align:0.000000pt;}
.v1_c01332{vertical-align:20.521067pt;}
.ls3_c01332{letter-spacing:-0.012800pt;}
.ls2_c01332{letter-spacing:-0.008533pt;}
.ls1_c01332{letter-spacing:0.000000pt;}
.ls0_c01332{letter-spacing:0.010667pt;}
.ws0_c01332{word-spacing:-11.724800pt;}
.ws1_c01332{word-spacing:-8.888889pt;}
.ws2_c01332{word-spacing:0.000000pt;}
._19_c01332{margin-left:-9.580800pt;}
._13_c01332{margin-left:-5.721600pt;}
._c_c01332{margin-left:-3.366400pt;}
._3_c01332{margin-left:-2.291200pt;}
._5_c01332{margin-left:-1.248000pt;}
._2_c01332{width:0.979200pt;}
._1_c01332{width:2.412800pt;}
._0_c01332{width:3.366400pt;}
._14_c01332{width:4.441600pt;}
._4_c01332{width:5.785600pt;}
._15_c01332{width:7.468800pt;}
._16_c01332{width:8.883200pt;}
._7_c01332{width:9.913600pt;}
._8_c01332{width:11.372800pt;}
._9_c01332{width:12.358400pt;}
._6_c01332{width:13.574400pt;}
._11_c01332{width:15.065600pt;}
._12_c01332{width:16.358400pt;}
._10_c01332{width:19.648000pt;}
._17_c01332{width:21.132800pt;}
._18_c01332{width:22.476800pt;}
._b_c01332{width:30.028800pt;}
._f_c01332{width:32.262400pt;}
._e_c01332{width:33.235200pt;}
._a_c01332{width:35.545600pt;}
._d_c01332{width:36.492800pt;}
.fs3_c01332{font-size:35.555557pt;}
.fs1_c01332{font-size:42.666667pt;}
.fs2_c01332{font-size:53.333333pt;}
.fs0_c01332{font-size:64.000000pt;}
.y0_c01332{bottom:0.000000pt;}
.y17_c01332{bottom:60.000000pt;}
.y21_c01332{bottom:117.333333pt;}
.y20_c01332{bottom:142.000000pt;}
.y1f_c01332{bottom:186.000000pt;}
.y1e_c01332{bottom:222.666667pt;}
.y1d_c01332{bottom:247.333333pt;}
.y1c_c01332{bottom:284.000000pt;}
.y1b_c01332{bottom:308.666667pt;}
.y1a_c01332{bottom:352.666667pt;}
.y19_c01332{bottom:389.333333pt;}
.y18_c01332{bottom:414.000000pt;}
.y15_c01332{bottom:456.000000pt;}
.y14_c01332{bottom:480.000000pt;}
.y13_c01332{bottom:504.000000pt;}
.y12_c01332{bottom:528.000000pt;}
.y11_c01332{bottom:552.000000pt;}
.y10_c01332{bottom:576.000000pt;}
.yf_c01332{bottom:600.000000pt;}
.ye_c01332{bottom:624.000000pt;}
.yd_c01332{bottom:666.666667pt;}
.yc_c01332{bottom:690.666667pt;}
.yb_c01332{bottom:714.666667pt;}
.ya_c01332{bottom:738.666667pt;}
.y9_c01332{bottom:762.666667pt;}
.y8_c01332{bottom:786.666667pt;}
.y7_c01332{bottom:810.666667pt;}
.y6_c01332{bottom:834.666667pt;}
.y5_c01332{bottom:858.666667pt;}
.y4_c01332{bottom:882.666667pt;}
.y3_c01332{bottom:906.666667pt;}
.y2_c01332{bottom:949.333333pt;}
.y1_c01332{bottom:973.333333pt;}
.y16_c01332{bottom:1061.333333pt;}
.h4_c01332{height:24.427085pt;}
.h5_c01332{height:36.640625pt;}
.h1_c01332{height:45.562500pt;}
.h3_c01332{height:49.843750pt;}
.h2_c01332{height:50.896067pt;}
.h0_c01332{height:1122.666667pt;}
.w0_c01332{width:793.333333pt;}
.x0_c01332{left:0.000000pt;}
.x1_c01332{left:133.795333pt;}
.x2_c01332{left:370.473600pt;}
.x3_c01332{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3b5be204a4b429814cb3de85.woff2')format("woff");}.ff1_c01333{font-family:ff1_c01333;line-height:1.163086;font-style:normal;font-weight:normal;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_33e09fa6a42195b0a7aba3bd.woff2')format("woff");}.ff2_c01333{font-family:ff2_c01333;line-height:0.756836;font-style:normal;font-weight:normal;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_75524264d5c1ffd5a7abb5bd.woff2')format("woff");}.ff3_c01333{font-family:ff3_c01333;line-height:1.155762;font-style:normal;font-weight:normal;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_196a9cfd1fbe90f3400a4993.woff2')format("woff");}.ff4_c01333{font-family:ff4_c01333;line-height:0.904785;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01333;src:url('chunks/assets/font_c694ac901cc73e6560564627.woff2')format("woff");}.ff5_c01333{font-family:ff5_c01333;line-height:0.890137;font-style: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);}
.m1_c01333{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c01333{vertical-align:-33.000000px;}
.v0_c01333{vertical-align:0.000000px;}
.v1_c01333{vertical-align:23.086200px;}
.ls1_c01333{letter-spacing:-0.009600px;}
.ls0_c01333{letter-spacing:0.000000px;}
.ls2_c01333{letter-spacing:0.012000px;}
.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;}
}
.ws0_c01333{word-spacing:-13.190400px;}
.ws1_c01333{word-spacing:-10.000001px;}
.ws2_c01333{word-spacing:0.000000px;}
._9_c01333{margin-left:-10.296000px;}
._c_c01333{margin-left:-5.457600px;}
._3_c01333{margin-left:-3.549600px;}
._8_c01333{margin-left:-1.562400px;}
._5_c01333{width:1.094400px;}
._2_c01333{width:2.160000px;}
._b_c01333{width:3.564000px;}
._1_c01333{width:4.694400px;}
._0_c01333{width:6.825600px;}
._7_c01333{width:8.560800px;}
._4_c01333{width:10.404000px;}
._f_c01333{width:11.858400px;}
._6_c01333{width:13.888800px;}
._10_c01333{width:14.918400px;}
._a_c01333{width:15.933600px;}
._12_c01333{width:17.114400px;}
._e_c01333{width:18.215760px;}
._d_c01333{width:22.348800px;}
._11_c01333{width:23.861280px;}
.fc0_c01333{color:rgb(0,0,0);}
.fs3_c01333{font-size:40.000002px;}
.fs1_c01333{font-size:48.000000px;}
.fs2_c01333{font-size:60.000000px;}
.fs0_c01333{font-size:72.000000px;}
.y0_c01333{bottom:0.000000px;}
.y1b_c01333{bottom:67.500000px;}
.y21_c01333{bottom:132.000000px;}
.y20_c01333{bottom:159.750000px;}
.y1f_c01333{bottom:209.250000px;}
.y1e_c01333{bottom:258.750000px;}
.y1d_c01333{bottom:300.000000px;}
.y1c_c01333{bottom:327.750000px;}
.y19_c01333{bottom:384.000000px;}
.y18_c01333{bottom:411.000000px;}
.y17_c01333{bottom:438.000000px;}
.y16_c01333{bottom:465.000000px;}
.y15_c01333{bottom:492.000000px;}
.y14_c01333{bottom:519.000000px;}
.y13_c01333{bottom:546.000000px;}
.y12_c01333{bottom:573.000000px;}
.y11_c01333{bottom:600.000000px;}
.y10_c01333{bottom:627.000000px;}
.yf_c01333{bottom:654.000000px;}
.ye_c01333{bottom:702.000000px;}
.yd_c01333{bottom:729.000000px;}
.yc_c01333{bottom:756.000000px;}
.yb_c01333{bottom:783.000000px;}
.ya_c01333{bottom:831.000000px;}
.y9_c01333{bottom:858.000000px;}
.y8_c01333{bottom:885.000000px;}
.y7_c01333{bottom:912.000000px;}
.y6_c01333{bottom:939.000000px;}
.y5_c01333{bottom:966.000000px;}
.y4_c01333{bottom:1014.000000px;}
.y3_c01333{bottom:1041.000000px;}
.y2_c01333{bottom:1068.000000px;}
.y1_c01333{bottom:1095.000000px;}
.y1a_c01333{bottom:1194.000000px;}
.h5_c01333{height:27.480470px;}
.h6_c01333{height:41.220703px;}
.h4_c01333{height:44.208984px;}
.h3_c01333{height:56.074219px;}
.h1_c01333{height:67.746094px;}
.h2_c01333{height:68.250262px;}
.h0_c01333{height:1263.000000px;}
.w0_c01333{width:892.500000px;}
.x0_c01333{left:0.000000px;}
.x1_c01333{left:65.480310px;}
@media print{
.v2_c01333{vertical-align:-29.333333pt;}
.v0_c01333{vertical-align:0.000000pt;}
.v1_c01333{vertical-align:20.521067pt;}
.ls1_c01333{letter-spacing:-0.008533pt;}
.ls0_c01333{letter-spacing:0.000000pt;}
.ls2_c01333{letter-spacing:0.010667pt;}
.ws0_c01333{word-spacing:-11.724800pt;}
.ws1_c01333{word-spacing:-8.888889pt;}
.ws2_c01333{word-spacing:0.000000pt;}
._9_c01333{margin-left:-9.152000pt;}
._c_c01333{margin-left:-4.851200pt;}
._3_c01333{margin-left:-3.155200pt;}
._8_c01333{margin-left:-1.388800pt;}
._5_c01333{width:0.972800pt;}
._2_c01333{width:1.920000pt;}
._b_c01333{width:3.168000pt;}
._1_c01333{width:4.172800pt;}
._0_c01333{width:6.067200pt;}
._7_c01333{width:7.609600pt;}
._4_c01333{width:9.248000pt;}
._f_c01333{width:10.540800pt;}
._6_c01333{width:12.345600pt;}
._10_c01333{width:13.260800pt;}
._a_c01333{width:14.163200pt;}
._12_c01333{width:15.212800pt;}
._e_c01333{width:16.191787pt;}
._d_c01333{width:19.865600pt;}
._11_c01333{width:21.210027pt;}
.fs3_c01333{font-size:35.555557pt;}
.fs1_c01333{font-size:42.666667pt;}
.fs2_c01333{font-size:53.333333pt;}
.fs0_c01333{font-size:64.000000pt;}
.y0_c01333{bottom:0.000000pt;}
.y1b_c01333{bottom:60.000000pt;}
.y21_c01333{bottom:117.333333pt;}
.y20_c01333{bottom:142.000000pt;}
.y1f_c01333{bottom:186.000000pt;}
.y1e_c01333{bottom:230.000000pt;}
.y1d_c01333{bottom:266.666667pt;}
.y1c_c01333{bottom:291.333333pt;}
.y19_c01333{bottom:341.333333pt;}
.y18_c01333{bottom:365.333333pt;}
.y17_c01333{bottom:389.333333pt;}
.y16_c01333{bottom:413.333333pt;}
.y15_c01333{bottom:437.333333pt;}
.y14_c01333{bottom:461.333333pt;}
.y13_c01333{bottom:485.333333pt;}
.y12_c01333{bottom:509.333333pt;}
.y11_c01333{bottom:533.333333pt;}
.y10_c01333{bottom:557.333333pt;}
.yf_c01333{bottom:581.333333pt;}
.ye_c01333{bottom:624.000000pt;}
.yd_c01333{bottom:648.000000pt;}
.yc_c01333{bottom:672.000000pt;}
.yb_c01333{bottom:696.000000pt;}
.ya_c01333{bottom:738.666667pt;}
.y9_c01333{bottom:762.666667pt;}
.y8_c01333{bottom:786.666667pt;}
.y7_c01333{bottom:810.666667pt;}
.y6_c01333{bottom:834.666667pt;}
.y5_c01333{bottom:858.666667pt;}
.y4_c01333{bottom:901.333333pt;}
.y3_c01333{bottom:925.333333pt;}
.y2_c01333{bottom:949.333333pt;}
.y1_c01333{bottom:973.333333pt;}
.y1a_c01333{bottom:1061.333333pt;}
.h5_c01333{height:24.427085pt;}
.h6_c01333{height:36.640625pt;}
.h4_c01333{height:39.296875pt;}
.h3_c01333{height:49.843750pt;}
.h1_c01333{height:60.218750pt;}
.h2_c01333{height:60.666900pt;}
.h0_c01333{height:1122.666667pt;}
.w0_c01333{width:793.333333pt;}
.x0_c01333{left:0.000000pt;}
.x1_c01333{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e571b33b7f80996430e15ee1.woff2')format("woff");}.ff1_c01334{font-family:ff1_c01334;line-height:0.939453;font-style:normal;font-weight:normal;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_2c499482873862fe8bfed7b7.woff2')format("woff");}.ff2_c01334{font-family:ff2_c01334;line-height:0.934082;font-style:normal;font-weight:normal;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_06fcb792d877105b32e00dd0.woff2')format("woff");}.ff3_c01334{font-family:ff3_c01334;line-height:1.155762;font-style: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);}
.v0_c01334{vertical-align:0.000000px;}
.ls3_c01334{letter-spacing:0.000000px;}
.ls1_c01334{letter-spacing:0.007200px;}
.ls0_c01334{letter-spacing:0.007800px;}
.ls2_c01334{letter-spacing:0.012000px;}
.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;}
}
.ws0_c01334{word-spacing:0.000000px;}
._9_c01334{margin-left:-10.584000px;}
._17_c01334{margin-left:-9.280800px;}
._16_c01334{margin-left:-7.753200px;}
._a_c01334{margin-left:-4.190400px;}
._5_c01334{margin-left:-2.944800px;}
._1_c01334{margin-left:-1.368000px;}
._3_c01334{width:1.166400px;}
._7_c01334{width:2.390400px;}
._b_c01334{width:3.470400px;}
._f_c01334{width:5.126400px;}
._8_c01334{width:6.364800px;}
._4_c01334{width:7.531200px;}
._0_c01334{width:8.733600px;}
._2_c01334{width:10.022400px;}
._6_c01334{width:11.678400px;}
._e_c01334{width:12.880800px;}
._c_c01334{width:14.457600px;}
._d_c01334{width:16.171200px;}
._18_c01334{width:17.805600px;}
._10_c01334{width:20.988000px;}
._14_c01334{width:22.248000px;}
._15_c01334{width:23.364000px;}
._11_c01334{width:24.753600px;}
._13_c01334{width:26.337600px;}
._12_c01334{width:27.568800px;}
._1a_c01334{width:29.116800px;}
._19_c01334{width:31.341600px;}
._1b_c01334{width:32.976000px;}
.fc0_c01334{color:rgb(0,0,0);}
.fs2_c01334{font-size:60.000000px;}
.fs1_c01334{font-size:72.000000px;}
.fs0_c01334{font-size:78.000000px;}
.y0_c01334{bottom:0.000000px;}
.y1d_c01334{bottom:67.500000px;}
.y1b_c01334{bottom:186.000000px;}
.y1a_c01334{bottom:213.000000px;}
.y19_c01334{bottom:259.500000px;}
.y18_c01334{bottom:328.500000px;}
.y17_c01334{bottom:355.500000px;}
.y16_c01334{bottom:382.500000px;}
.y15_c01334{bottom:409.500000px;}
.y14_c01334{bottom:436.500000px;}
.y13_c01334{bottom:484.500000px;}
.y12_c01334{bottom:511.500000px;}
.y11_c01334{bottom:538.500000px;}
.y10_c01334{bottom:565.500000px;}
.yf_c01334{bottom:592.500000px;}
.ye_c01334{bottom:619.500000px;}
.yd_c01334{bottom:646.500000px;}
.yc_c01334{bottom:694.500000px;}
.yb_c01334{bottom:721.500000px;}
.ya_c01334{bottom:748.500000px;}
.y9_c01334{bottom:795.000000px;}
.y8_c01334{bottom:864.000000px;}
.y7_c01334{bottom:891.000000px;}
.y6_c01334{bottom:939.000000px;}
.y5_c01334{bottom:966.000000px;}
.y4_c01334{bottom:993.000000px;}
.y3_c01334{bottom:1020.000000px;}
.y2_c01334{bottom:1047.000000px;}
.y1_c01334{bottom:1093.500000px;}
.y1c_c01334{bottom:1194.000000px;}
.h2_c01334{height:51.257812px;}
.h3_c01334{height:51.785156px;}
.h4_c01334{height:56.074219px;}
.h1_c01334{height:56.100586px;}
.h0_c01334{height:1263.000000px;}
.w0_c01334{width:892.500000px;}
.x0_c01334{left:0.000000px;}
.x1_c01334{left:150.519750px;}
.x2_c01334{left:416.782800px;}
.x3_c01334{left:801.992850px;}
@media print{
.v0_c01334{vertical-align:0.000000pt;}
.ls3_c01334{letter-spacing:0.000000pt;}
.ls1_c01334{letter-spacing:0.006400pt;}
.ls0_c01334{letter-spacing:0.006933pt;}
.ls2_c01334{letter-spacing:0.010667pt;}
.ws0_c01334{word-spacing:0.000000pt;}
._9_c01334{margin-left:-9.408000pt;}
._17_c01334{margin-left:-8.249600pt;}
._16_c01334{margin-left:-6.891733pt;}
._a_c01334{margin-left:-3.724800pt;}
._5_c01334{margin-left:-2.617600pt;}
._1_c01334{margin-left:-1.216000pt;}
._3_c01334{width:1.036800pt;}
._7_c01334{width:2.124800pt;}
._b_c01334{width:3.084800pt;}
._f_c01334{width:4.556800pt;}
._8_c01334{width:5.657600pt;}
._4_c01334{width:6.694400pt;}
._0_c01334{width:7.763200pt;}
._2_c01334{width:8.908800pt;}
._6_c01334{width:10.380800pt;}
._e_c01334{width:11.449600pt;}
._c_c01334{width:12.851200pt;}
._d_c01334{width:14.374400pt;}
._18_c01334{width:15.827200pt;}
._10_c01334{width:18.656000pt;}
._14_c01334{width:19.776000pt;}
._15_c01334{width:20.768000pt;}
._11_c01334{width:22.003200pt;}
._13_c01334{width:23.411200pt;}
._12_c01334{width:24.505600pt;}
._1a_c01334{width:25.881600pt;}
._19_c01334{width:27.859200pt;}
._1b_c01334{width:29.312000pt;}
.fs2_c01334{font-size:53.333333pt;}
.fs1_c01334{font-size:64.000000pt;}
.fs0_c01334{font-size:69.333333pt;}
.y0_c01334{bottom:0.000000pt;}
.y1d_c01334{bottom:60.000000pt;}
.y1b_c01334{bottom:165.333333pt;}
.y1a_c01334{bottom:189.333333pt;}
.y19_c01334{bottom:230.666667pt;}
.y18_c01334{bottom:292.000000pt;}
.y17_c01334{bottom:316.000000pt;}
.y16_c01334{bottom:340.000000pt;}
.y15_c01334{bottom:364.000000pt;}
.y14_c01334{bottom:388.000000pt;}
.y13_c01334{bottom:430.666667pt;}
.y12_c01334{bottom:454.666667pt;}
.y11_c01334{bottom:478.666667pt;}
.y10_c01334{bottom:502.666667pt;}
.yf_c01334{bottom:526.666667pt;}
.ye_c01334{bottom:550.666667pt;}
.yd_c01334{bottom:574.666667pt;}
.yc_c01334{bottom:617.333333pt;}
.yb_c01334{bottom:641.333333pt;}
.ya_c01334{bottom:665.333333pt;}
.y9_c01334{bottom:706.666667pt;}
.y8_c01334{bottom:768.000000pt;}
.y7_c01334{bottom:792.000000pt;}
.y6_c01334{bottom:834.666667pt;}
.y5_c01334{bottom:858.666667pt;}
.y4_c01334{bottom:882.666667pt;}
.y3_c01334{bottom:906.666667pt;}
.y2_c01334{bottom:930.666667pt;}
.y1_c01334{bottom:972.000000pt;}
.y1c_c01334{bottom:1061.333333pt;}
.h2_c01334{height:45.562500pt;}
.h3_c01334{height:46.031250pt;}
.h4_c01334{height:49.843750pt;}
.h1_c01334{height:49.867188pt;}
.h0_c01334{height:1122.666667pt;}
.w0_c01334{width:793.333333pt;}
.x0_c01334{left:0.000000pt;}
.x1_c01334{left:133.795333pt;}
.x2_c01334{left:370.473600pt;}
.x3_c01334{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7015471151a2a658062aaaa7.woff2')format("woff");}.ff1_c01335{font-family:ff1_c01335;line-height:0.934082;font-style:normal;font-weight:normal;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_21415f520938bdfc44424c56.woff2')format("woff");}.ff2_c01335{font-family:ff2_c01335;line-height:0.932129;font-style:normal;font-weight:normal;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_e1c2b271809ecf9e271b21a6.woff2')format("woff");}.ff3_c01335{font-family:ff3_c01335;line-height:0.756836;font-style:normal;font-weight:normal;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_9b01001439b4e039df96ce67.woff2')format("woff");}.ff4_c01335{font-family:ff4_c01335;line-height:1.155762;font-style:normal;font-weight:normal;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_e5b150052ed36da11ae10e41.woff2')format("woff");}.ff5_c01335{font-family:ff5_c01335;line-height:1.112305;font-style:normal;font-weight: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_c01335;src:url('chunks/assets/font_42c4f17f64e1cd7d600eec68.woff2')format("woff");}.ff6_c01335{font-family:ff6_c01335;line-height:0.891113;font-style: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);}
.m1_c01335{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c01335{vertical-align:-33.000000px;}
.v0_c01335{vertical-align:0.000000px;}
.v1_c01335{vertical-align:23.086200px;}
.ls3_c01335{letter-spacing:-0.009600px;}
.ls2_c01335{letter-spacing:0.000000px;}
.ls1_c01335{letter-spacing:0.012000px;}
.ls0_c01335{letter-spacing:0.014400px;}
.ls4_c01335{letter-spacing:3.432000px;}
.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;}
}
.ws0_c01335{word-spacing:-19.800000px;}
.ws1_c01335{word-spacing:-10.000001px;}
.ws2_c01335{word-spacing:-2.000002px;}
.ws3_c01335{word-spacing:0.000000px;}
._7_c01335{margin-left:-10.092240px;}
._16_c01335{margin-left:-7.272000px;}
._a_c01335{margin-left:-4.773600px;}
._6_c01335{margin-left:-3.535200px;}
._12_c01335{margin-left:-2.534160px;}
._1_c01335{margin-left:-1.512000px;}
._4_c01335{width:1.144800px;}
._0_c01335{width:2.325600px;}
._5_c01335{width:4.147200px;}
._3_c01335{width:5.277600px;}
._2_c01335{width:7.380000px;}
._e_c01335{width:9.280800px;}
._9_c01335{width:10.972800px;}
._c_c01335{width:12.240000px;}
._8_c01335{width:13.579200px;}
._d_c01335{width:15.645600px;}
._b_c01335{width:16.855200px;}
._10_c01335{width:18.122160px;}
._17_c01335{width:19.957680px;}
._f_c01335{width:21.340800px;}
._13_c01335{width:23.076000px;}
._11_c01335{width:24.278400px;}
._14_c01335{width:25.674960px;}
._15_c01335{width:27.244800px;}
.fc0_c01335{color:rgb(0,0,0);}
.fs3_c01335{font-size:40.000002px;}
.fs1_c01335{font-size:48.000000px;}
.fs2_c01335{font-size:60.000000px;}
.fs0_c01335{font-size:72.000000px;}
.y0_c01335{bottom:0.000000px;}
.y1a_c01335{bottom:67.500000px;}
.y1f_c01335{bottom:132.000000px;}
.y1e_c01335{bottom:159.750000px;}
.y1d_c01335{bottom:201.000000px;}
.y1c_c01335{bottom:228.750000px;}
.y1b_c01335{bottom:278.250000px;}
.y18_c01335{bottom:390.000000px;}
.y17_c01335{bottom:417.000000px;}
.y16_c01335{bottom:444.000000px;}
.y15_c01335{bottom:471.000000px;}
.y14_c01335{bottom:498.000000px;}
.y13_c01335{bottom:525.000000px;}
.y12_c01335{bottom:552.000000px;}
.y11_c01335{bottom:600.000000px;}
.y10_c01335{bottom:627.000000px;}
.yf_c01335{bottom:654.000000px;}
.ye_c01335{bottom:681.000000px;}
.yd_c01335{bottom:708.000000px;}
.yc_c01335{bottom:735.000000px;}
.yb_c01335{bottom:762.000000px;}
.ya_c01335{bottom:789.000000px;}
.y9_c01335{bottom:837.000000px;}
.y8_c01335{bottom:864.000000px;}
.y7_c01335{bottom:891.000000px;}
.y6_c01335{bottom:939.000000px;}
.y5_c01335{bottom:966.000000px;}
.y4_c01335{bottom:993.000000px;}
.y3_c01335{bottom:1020.000000px;}
.y2_c01335{bottom:1068.000000px;}
.y1_c01335{bottom:1095.000000px;}
.y19_c01335{bottom:1194.000000px;}
.h5_c01335{height:35.781252px;}
.h4_c01335{height:44.208984px;}
.h1_c01335{height:51.257812px;}
.h6_c01335{height:53.671875px;}
.h3_c01335{height:56.074219px;}
.h2_c01335{height:57.258075px;}
.h0_c01335{height:1263.000000px;}
.w0_c01335{width:892.500000px;}
.x0_c01335{left:0.000000px;}
.x1_c01335{left:65.480310px;}
@media print{
.v2_c01335{vertical-align:-29.333333pt;}
.v0_c01335{vertical-align:0.000000pt;}
.v1_c01335{vertical-align:20.521067pt;}
.ls3_c01335{letter-spacing:-0.008533pt;}
.ls2_c01335{letter-spacing:0.000000pt;}
.ls1_c01335{letter-spacing:0.010667pt;}
.ls0_c01335{letter-spacing:0.012800pt;}
.ls4_c01335{letter-spacing:3.050667pt;}
.ws0_c01335{word-spacing:-17.600000pt;}
.ws1_c01335{word-spacing:-8.888889pt;}
.ws2_c01335{word-spacing:-1.777780pt;}
.ws3_c01335{word-spacing:0.000000pt;}
._7_c01335{margin-left:-8.970880pt;}
._16_c01335{margin-left:-6.464000pt;}
._a_c01335{margin-left:-4.243200pt;}
._6_c01335{margin-left:-3.142400pt;}
._12_c01335{margin-left:-2.252587pt;}
._1_c01335{margin-left:-1.344000pt;}
._4_c01335{width:1.017600pt;}
._0_c01335{width:2.067200pt;}
._5_c01335{width:3.686400pt;}
._3_c01335{width:4.691200pt;}
._2_c01335{width:6.560000pt;}
._e_c01335{width:8.249600pt;}
._9_c01335{width:9.753600pt;}
._c_c01335{width:10.880000pt;}
._8_c01335{width:12.070400pt;}
._d_c01335{width:13.907200pt;}
._b_c01335{width:14.982400pt;}
._10_c01335{width:16.108587pt;}
._17_c01335{width:17.740160pt;}
._f_c01335{width:18.969600pt;}
._13_c01335{width:20.512000pt;}
._11_c01335{width:21.580800pt;}
._14_c01335{width:22.822187pt;}
._15_c01335{width:24.217600pt;}
.fs3_c01335{font-size:35.555557pt;}
.fs1_c01335{font-size:42.666667pt;}
.fs2_c01335{font-size:53.333333pt;}
.fs0_c01335{font-size:64.000000pt;}
.y0_c01335{bottom:0.000000pt;}
.y1a_c01335{bottom:60.000000pt;}
.y1f_c01335{bottom:117.333333pt;}
.y1e_c01335{bottom:142.000000pt;}
.y1d_c01335{bottom:178.666667pt;}
.y1c_c01335{bottom:203.333333pt;}
.y1b_c01335{bottom:247.333333pt;}
.y18_c01335{bottom:346.666667pt;}
.y17_c01335{bottom:370.666667pt;}
.y16_c01335{bottom:394.666667pt;}
.y15_c01335{bottom:418.666667pt;}
.y14_c01335{bottom:442.666667pt;}
.y13_c01335{bottom:466.666667pt;}
.y12_c01335{bottom:490.666667pt;}
.y11_c01335{bottom:533.333333pt;}
.y10_c01335{bottom:557.333333pt;}
.yf_c01335{bottom:581.333333pt;}
.ye_c01335{bottom:605.333333pt;}
.yd_c01335{bottom:629.333333pt;}
.yc_c01335{bottom:653.333333pt;}
.yb_c01335{bottom:677.333333pt;}
.ya_c01335{bottom:701.333333pt;}
.y9_c01335{bottom:744.000000pt;}
.y8_c01335{bottom:768.000000pt;}
.y7_c01335{bottom:792.000000pt;}
.y6_c01335{bottom:834.666667pt;}
.y5_c01335{bottom:858.666667pt;}
.y4_c01335{bottom:882.666667pt;}
.y3_c01335{bottom:906.666667pt;}
.y2_c01335{bottom:949.333333pt;}
.y1_c01335{bottom:973.333333pt;}
.y19_c01335{bottom:1061.333333pt;}
.h5_c01335{height:31.805557pt;}
.h4_c01335{height:39.296875pt;}
.h1_c01335{height:45.562500pt;}
.h6_c01335{height:47.708333pt;}
.h3_c01335{height:49.843750pt;}
.h2_c01335{height:50.896067pt;}
.h0_c01335{height:1122.666667pt;}
.w0_c01335{width:793.333333pt;}
.x0_c01335{left:0.000000pt;}
.x1_c01335{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_22fbbf721338c8b5913e01db.woff2')format("woff");}.ff1_c01336{font-family:ff1_c01336;line-height:0.934082;font-style:normal;font-weight:normal;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_c14f0f8ea2d41b30b42efa98.woff2')format("woff");}.ff2_c01336{font-family:ff2_c01336;line-height:0.941406;font-style:normal;font-weight:normal;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_ae4eda60e89d16f9f4543b0c.woff2')format("woff");}.ff3_c01336{font-family:ff3_c01336;line-height:1.155762;font-style:normal;font-weight:normal;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_7390c86357372cc549e5bd70.woff2')format("woff");}.ff4_c01336{font-family:ff4_c01336;line-height:1.112305;font-style:normal;font-weight:normal;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_e089cd571edf4105a7e2a2f2.woff2')format("woff");}.ff5_c01336{font-family:ff5_c01336;line-height:0.890137;font-style: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);}
.v3_c01336{vertical-align:-33.000000px;}
.v2_c01336{vertical-align:-23.086200px;}
.v0_c01336{vertical-align:0.000000px;}
.v1_c01336{vertical-align:23.086200px;}
.ls3_c01336{letter-spacing:-0.009600px;}
.ls2_c01336{letter-spacing:0.000000px;}
.ls0_c01336{letter-spacing:0.007200px;}
.ls1_c01336{letter-spacing:0.012000px;}
.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;}
}
.ws1_c01336{word-spacing:-20.808000px;}
.ws0_c01336{word-spacing:-13.190400px;}
.ws2_c01336{word-spacing:-10.000001px;}
.ws3_c01336{word-spacing:0.000000px;}
._10_c01336{margin-left:-10.000800px;}
._12_c01336{margin-left:-8.352000px;}
._f_c01336{margin-left:-7.207200px;}
._15_c01336{margin-left:-5.421600px;}
._19_c01336{margin-left:-3.945600px;}
._5_c01336{margin-left:-2.916000px;}
._0_c01336{margin-left:-1.130400px;}
._3_c01336{width:1.036800px;}
._2_c01336{width:2.440800px;}
._d_c01336{width:3.945600px;}
._4_c01336{width:5.025600px;}
._1_c01336{width:6.235200px;}
._6_c01336{width:7.977600px;}
._7_c01336{width:9.129600px;}
._13_c01336{width:10.382400px;}
._c_c01336{width:11.426400px;}
._e_c01336{width:13.204800px;}
._14_c01336{width:14.205600px;}
._8_c01336{width:15.660000px;}
._11_c01336{width:16.992000px;}
._b_c01336{width:18.194400px;}
._18_c01336{width:20.854800px;}
._a_c01336{width:22.285800px;}
._9_c01336{width:23.428800px;}
._17_c01336{width:24.823800px;}
._16_c01336{width:26.127000px;}
._1a_c01336{width:27.316800px;}
._1c_c01336{width:28.447200px;}
._1b_c01336{width:30.490200px;}
.fc0_c01336{color:rgb(0,0,0);}
.fs3_c01336{font-size:40.000002px;}
.fs1_c01336{font-size:48.000000px;}
.fs2_c01336{font-size:60.000000px;}
.fs0_c01336{font-size:72.000000px;}
.y0_c01336{bottom:0.000000px;}
.y1c_c01336{bottom:67.500000px;}
.y20_c01336{bottom:132.000000px;}
.y1f_c01336{bottom:159.750000px;}
.y1e_c01336{bottom:209.250000px;}
.y1d_c01336{bottom:258.750000px;}
.y1a_c01336{bottom:321.000000px;}
.y19_c01336{bottom:348.000000px;}
.y18_c01336{bottom:375.000000px;}
.y17_c01336{bottom:402.000000px;}
.y16_c01336{bottom:429.000000px;}
.y15_c01336{bottom:456.000000px;}
.y14_c01336{bottom:504.000000px;}
.y13_c01336{bottom:531.000000px;}
.y12_c01336{bottom:558.000000px;}
.y11_c01336{bottom:585.000000px;}
.y10_c01336{bottom:612.000000px;}
.yf_c01336{bottom:639.000000px;}
.ye_c01336{bottom:666.000000px;}
.yd_c01336{bottom:712.500000px;}
.yc_c01336{bottom:735.000000px;}
.yb_c01336{bottom:804.000000px;}
.ya_c01336{bottom:831.000000px;}
.y9_c01336{bottom:879.000000px;}
.y8_c01336{bottom:906.000000px;}
.y7_c01336{bottom:933.000000px;}
.y6_c01336{bottom:960.000000px;}
.y5_c01336{bottom:987.000000px;}
.y4_c01336{bottom:1014.000000px;}
.y3_c01336{bottom:1041.000000px;}
.y2_c01336{bottom:1068.000000px;}
.y1_c01336{bottom:1095.000000px;}
.y1b_c01336{bottom:1194.000000px;}
.h5_c01336{height:35.781252px;}
.h1_c01336{height:51.257812px;}
.h3_c01336{height:51.785156px;}
.h6_c01336{height:53.671875px;}
.h4_c01336{height:56.074219px;}
.h2_c01336{height:57.258075px;}
.h0_c01336{height:1263.000000px;}
.w0_c01336{width:892.500000px;}
.x0_c01336{left:0.000000px;}
.x1_c01336{left:150.519750px;}
.x2_c01336{left:416.782800px;}
.x3_c01336{left:801.992850px;}
@media print{
.v3_c01336{vertical-align:-29.333333pt;}
.v2_c01336{vertical-align:-20.521067pt;}
.v0_c01336{vertical-align:0.000000pt;}
.v1_c01336{vertical-align:20.521067pt;}
.ls3_c01336{letter-spacing:-0.008533pt;}
.ls2_c01336{letter-spacing:0.000000pt;}
.ls0_c01336{letter-spacing:0.006400pt;}
.ls1_c01336{letter-spacing:0.010667pt;}
.ws1_c01336{word-spacing:-18.496000pt;}
.ws0_c01336{word-spacing:-11.724800pt;}
.ws2_c01336{word-spacing:-8.888889pt;}
.ws3_c01336{word-spacing:0.000000pt;}
._10_c01336{margin-left:-8.889600pt;}
._12_c01336{margin-left:-7.424000pt;}
._f_c01336{margin-left:-6.406400pt;}
._15_c01336{margin-left:-4.819200pt;}
._19_c01336{margin-left:-3.507200pt;}
._5_c01336{margin-left:-2.592000pt;}
._0_c01336{margin-left:-1.004800pt;}
._3_c01336{width:0.921600pt;}
._2_c01336{width:2.169600pt;}
._d_c01336{width:3.507200pt;}
._4_c01336{width:4.467200pt;}
._1_c01336{width:5.542400pt;}
._6_c01336{width:7.091200pt;}
._7_c01336{width:8.115200pt;}
._13_c01336{width:9.228800pt;}
._c_c01336{width:10.156800pt;}
._e_c01336{width:11.737600pt;}
._14_c01336{width:12.627200pt;}
._8_c01336{width:13.920000pt;}
._11_c01336{width:15.104000pt;}
._b_c01336{width:16.172800pt;}
._18_c01336{width:18.537600pt;}
._a_c01336{width:19.809600pt;}
._9_c01336{width:20.825600pt;}
._17_c01336{width:22.065600pt;}
._16_c01336{width:23.224000pt;}
._1a_c01336{width:24.281600pt;}
._1c_c01336{width:25.286400pt;}
._1b_c01336{width:27.102400pt;}
.fs3_c01336{font-size:35.555557pt;}
.fs1_c01336{font-size:42.666667pt;}
.fs2_c01336{font-size:53.333333pt;}
.fs0_c01336{font-size:64.000000pt;}
.y0_c01336{bottom:0.000000pt;}
.y1c_c01336{bottom:60.000000pt;}
.y20_c01336{bottom:117.333333pt;}
.y1f_c01336{bottom:142.000000pt;}
.y1e_c01336{bottom:186.000000pt;}
.y1d_c01336{bottom:230.000000pt;}
.y1a_c01336{bottom:285.333333pt;}
.y19_c01336{bottom:309.333333pt;}
.y18_c01336{bottom:333.333333pt;}
.y17_c01336{bottom:357.333333pt;}
.y16_c01336{bottom:381.333333pt;}
.y15_c01336{bottom:405.333333pt;}
.y14_c01336{bottom:448.000000pt;}
.y13_c01336{bottom:472.000000pt;}
.y12_c01336{bottom:496.000000pt;}
.y11_c01336{bottom:520.000000pt;}
.y10_c01336{bottom:544.000000pt;}
.yf_c01336{bottom:568.000000pt;}
.ye_c01336{bottom:592.000000pt;}
.yd_c01336{bottom:633.333333pt;}
.yc_c01336{bottom:653.333333pt;}
.yb_c01336{bottom:714.666667pt;}
.ya_c01336{bottom:738.666667pt;}
.y9_c01336{bottom:781.333333pt;}
.y8_c01336{bottom:805.333333pt;}
.y7_c01336{bottom:829.333333pt;}
.y6_c01336{bottom:853.333333pt;}
.y5_c01336{bottom:877.333333pt;}
.y4_c01336{bottom:901.333333pt;}
.y3_c01336{bottom:925.333333pt;}
.y2_c01336{bottom:949.333333pt;}
.y1_c01336{bottom:973.333333pt;}
.y1b_c01336{bottom:1061.333333pt;}
.h5_c01336{height:31.805557pt;}
.h1_c01336{height:45.562500pt;}
.h3_c01336{height:46.031250pt;}
.h6_c01336{height:47.708333pt;}
.h4_c01336{height:49.843750pt;}
.h2_c01336{height:50.896067pt;}
.h0_c01336{height:1122.666667pt;}
.w0_c01336{width:793.333333pt;}
.x0_c01336{left:0.000000pt;}
.x1_c01336{left:133.795333pt;}
.x2_c01336{left:370.473600pt;}
.x3_c01336{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ccd25dc43418f605871926eb.woff2')format("woff");}.ff1_c01337{font-family:ff1_c01337;line-height:0.934082;font-style:normal;font-weight:normal;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_6a997a58b51e948fcde4ba97.woff2')format("woff");}.ff2_c01337{font-family:ff2_c01337;line-height:0.987793;font-style:normal;font-weight:normal;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_e442c62de404dd29b8e80597.woff2')format("woff");}.ff3_c01337{font-family:ff3_c01337;line-height:0.756836;font-style:normal;font-weight:normal;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_6ea50a0b543f4fac552f1c9d.woff2')format("woff");}.ff4_c01337{font-family:ff4_c01337;line-height:1.155762;font-style:normal;font-weight:normal;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_8b53fe7b604702907d13a437.woff2')format("woff");}.ff5_c01337{font-family:ff5_c01337;line-height:0.903320;font-style:normal;font-weight: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_c01337;src:url('chunks/assets/font_973aced150ccda02cb569779.woff2')format("woff");}.ff6_c01337{font-family:ff6_c01337;line-height:0.678223;font-style: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);}
.v3_c01337{vertical-align:-33.000000px;}
.v2_c01337{vertical-align:-23.086200px;}
.v0_c01337{vertical-align:0.000000px;}
.v1_c01337{vertical-align:23.086200px;}
.ls2_c01337{letter-spacing:-0.009600px;}
.ls1_c01337{letter-spacing:0.000000px;}
.ls3_c01337{letter-spacing:0.010800px;}
.ls4_c01337{letter-spacing:0.012000px;}
.ls0_c01337{letter-spacing:0.027000px;}
.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;}
}
.ws1_c01337{word-spacing:-19.800000px;}
.ws3_c01337{word-spacing:-17.091000px;}
.ws2_c01337{word-spacing:-17.064000px;}
.ws0_c01337{word-spacing:-13.190400px;}
.ws4_c01337{word-spacing:-10.000001px;}
.ws5_c01337{word-spacing:0.000000px;}
._6_c01337{margin-left:-10.490400px;}
._9_c01337{margin-left:-6.076800px;}
._7_c01337{margin-left:-4.096800px;}
._4_c01337{margin-left:-2.988000px;}
._c_c01337{margin-left:-1.879200px;}
._1_c01337{width:1.310400px;}
._3_c01337{width:2.527200px;}
._2_c01337{width:3.621600px;}
._0_c01337{width:4.989600px;}
._5_c01337{width:7.884000px;}
._8_c01337{width:9.136800px;}
._b_c01337{width:10.886400px;}
._a_c01337{width:13.888800px;}
._10_c01337{width:15.026400px;}
._e_c01337{width:16.308000px;}
._f_c01337{width:18.208800px;}
._d_c01337{width:21.571200px;}
.fc1_c01337{color:rgb(0,0,153);}
.fc0_c01337{color:rgb(0,0,0);}
.fs4_c01337{font-size:40.000002px;}
.fs1_c01337{font-size:48.000000px;}
.fs2_c01337{font-size:54.000000px;}
.fs3_c01337{font-size:60.000000px;}
.fs0_c01337{font-size:72.000000px;}
.y0_c01337{bottom:0.000000px;}
.yd_c01337{bottom:10.500000px;}
.yc_c01337{bottom:28.500000px;}
.yf_c01337{bottom:67.500000px;}
.y11_c01337{bottom:140.250000px;}
.y10_c01337{bottom:189.750000px;}
.yb_c01337{bottom:237.000000px;}
.ya_c01337{bottom:831.000000px;}
.y9_c01337{bottom:858.000000px;}
.y8_c01337{bottom:885.000000px;}
.y7_c01337{bottom:912.000000px;}
.y6_c01337{bottom:939.000000px;}
.y5_c01337{bottom:966.000000px;}
.y4_c01337{bottom:993.000000px;}
.y3_c01337{bottom:1020.000000px;}
.y2_c01337{bottom:1068.000000px;}
.y1_c01337{bottom:1095.000000px;}
.ye_c01337{bottom:1194.000000px;}
.h7_c01337{height:27.421876px;}
.h4_c01337{height:42.292969px;}
.h6_c01337{height:44.208984px;}
.h1_c01337{height:51.257812px;}
.h5_c01337{height:56.074219px;}
.h2_c01337{height:57.258075px;}
.h3_c01337{height:562.500000px;}
.h0_c01337{height:1263.000000px;}
.w1_c01337{width:676.500000px;}
.w0_c01337{width:892.500000px;}
.x0_c01337{left:0.000000px;}
.x2_c01337{left:15.584820px;}
.x1_c01337{left:65.480310px;}
.x3_c01337{left:279.632400px;}
@media print{
.v3_c01337{vertical-align:-29.333333pt;}
.v2_c01337{vertical-align:-20.521067pt;}
.v0_c01337{vertical-align:0.000000pt;}
.v1_c01337{vertical-align:20.521067pt;}
.ls2_c01337{letter-spacing:-0.008533pt;}
.ls1_c01337{letter-spacing:0.000000pt;}
.ls3_c01337{letter-spacing:0.009600pt;}
.ls4_c01337{letter-spacing:0.010667pt;}
.ls0_c01337{letter-spacing:0.024000pt;}
.ws1_c01337{word-spacing:-17.600000pt;}
.ws3_c01337{word-spacing:-15.192000pt;}
.ws2_c01337{word-spacing:-15.168000pt;}
.ws0_c01337{word-spacing:-11.724800pt;}
.ws4_c01337{word-spacing:-8.888889pt;}
.ws5_c01337{word-spacing:0.000000pt;}
._6_c01337{margin-left:-9.324800pt;}
._9_c01337{margin-left:-5.401600pt;}
._7_c01337{margin-left:-3.641600pt;}
._4_c01337{margin-left:-2.656000pt;}
._c_c01337{margin-left:-1.670400pt;}
._1_c01337{width:1.164800pt;}
._3_c01337{width:2.246400pt;}
._2_c01337{width:3.219200pt;}
._0_c01337{width:4.435200pt;}
._5_c01337{width:7.008000pt;}
._8_c01337{width:8.121600pt;}
._b_c01337{width:9.676800pt;}
._a_c01337{width:12.345600pt;}
._10_c01337{width:13.356800pt;}
._e_c01337{width:14.496000pt;}
._f_c01337{width:16.185600pt;}
._d_c01337{width:19.174400pt;}
.fs4_c01337{font-size:35.555557pt;}
.fs1_c01337{font-size:42.666667pt;}
.fs2_c01337{font-size:48.000000pt;}
.fs3_c01337{font-size:53.333333pt;}
.fs0_c01337{font-size:64.000000pt;}
.y0_c01337{bottom:0.000000pt;}
.yd_c01337{bottom:9.333333pt;}
.yc_c01337{bottom:25.333333pt;}
.yf_c01337{bottom:60.000000pt;}
.y11_c01337{bottom:124.666667pt;}
.y10_c01337{bottom:168.666667pt;}
.yb_c01337{bottom:210.666667pt;}
.ya_c01337{bottom:738.666667pt;}
.y9_c01337{bottom:762.666667pt;}
.y8_c01337{bottom:786.666667pt;}
.y7_c01337{bottom:810.666667pt;}
.y6_c01337{bottom:834.666667pt;}
.y5_c01337{bottom:858.666667pt;}
.y4_c01337{bottom:882.666667pt;}
.y3_c01337{bottom:906.666667pt;}
.y2_c01337{bottom:949.333333pt;}
.y1_c01337{bottom:973.333333pt;}
.ye_c01337{bottom:1061.333333pt;}
.h7_c01337{height:24.375001pt;}
.h4_c01337{height:37.593750pt;}
.h6_c01337{height:39.296875pt;}
.h1_c01337{height:45.562500pt;}
.h5_c01337{height:49.843750pt;}
.h2_c01337{height:50.896067pt;}
.h3_c01337{height:500.000000pt;}
.h0_c01337{height:1122.666667pt;}
.w1_c01337{width:601.333333pt;}
.w0_c01337{width:793.333333pt;}
.x0_c01337{left:0.000000pt;}
.x2_c01337{left:13.853173pt;}
.x1_c01337{left:58.204720pt;}
.x3_c01337{left:248.562133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a76cba3f16e803105566405d.woff2')format("woff");}.ff1_c01338{font-family:ff1_c01338;line-height:0.934082;font-style:normal;font-weight:normal;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_afa81cb9b3fb1c32e19f6efd.woff2')format("woff");}.ff2_c01338{font-family:ff2_c01338;line-height:0.975586;font-style:normal;font-weight:normal;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_a2c0cefd6dfc695825580eba.woff2')format("woff");}.ff3_c01338{font-family:ff3_c01338;line-height:1.155762;font-style:normal;font-weight:normal;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_485040a9bedd7e97477f944a.woff2')format("woff");}.ff4_c01338{font-family:ff4_c01338;line-height:0.904785;font-style:normal;font-weight:normal;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_dec7abbe355fe81ee4b7ad49.woff2')format("woff");}.ff5_c01338{font-family:ff5_c01338;line-height:0.678223;font-style: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);}
.v3_c01338{vertical-align:-33.000000px;}
.v2_c01338{vertical-align:-23.086200px;}
.v0_c01338{vertical-align:0.000000px;}
.v1_c01338{vertical-align:23.086200px;}
.ls2_c01338{letter-spacing:-0.009600px;}
.ls1_c01338{letter-spacing:0.000000px;}
.ls0_c01338{letter-spacing:0.012000px;}
.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;}
}
.ws1_c01338{word-spacing:-19.800000px;}
.ws2_c01338{word-spacing:-17.064000px;}
.ws0_c01338{word-spacing:-13.190400px;}
.ws3_c01338{word-spacing:-10.000001px;}
.ws4_c01338{word-spacing:0.000000px;}
._12_c01338{margin-left:-10.512000px;}
._13_c01338{margin-left:-4.459602px;}
._3_c01338{margin-left:-3.456000px;}
._2_c01338{margin-left:-1.663200px;}
._0_c01338{width:1.044000px;}
._1_c01338{width:2.678400px;}
._4_c01338{width:4.471200px;}
._e_c01338{width:5.623200px;}
._8_c01338{width:6.631200px;}
._6_c01338{width:8.251200px;}
._9_c01338{width:9.273600px;}
._5_c01338{width:10.951200px;}
._7_c01338{width:12.744000px;}
._c_c01338{width:14.551200px;}
._b_c01338{width:15.825600px;}
._a_c01338{width:17.870400px;}
._d_c01338{width:21.326400px;}
._f_c01338{width:23.695200px;}
._11_c01338{width:24.768000px;}
._10_c01338{width:27.388800px;}
.fc1_c01338{color:rgb(0,0,153);}
.fc0_c01338{color:rgb(0,0,0);}
.fs4_c01338{font-size:40.000002px;}
.fs1_c01338{font-size:48.000000px;}
.fs2_c01338{font-size:54.000000px;}
.fs3_c01338{font-size:60.000000px;}
.fs0_c01338{font-size:72.000000px;}
.y0_c01338{bottom:0.000000px;}
.ye_c01338{bottom:10.500000px;}
.yd_c01338{bottom:27.000000px;}
.yc_c01338{bottom:45.000000px;}
.y10_c01338{bottom:67.500000px;}
.y12_c01338{bottom:132.000000px;}
.y11_c01338{bottom:159.750000px;}
.yb_c01338{bottom:232.500000px;}
.ya_c01338{bottom:831.000000px;}
.y9_c01338{bottom:858.000000px;}
.y8_c01338{bottom:885.000000px;}
.y7_c01338{bottom:912.000000px;}
.y6_c01338{bottom:939.000000px;}
.y5_c01338{bottom:966.000000px;}
.y4_c01338{bottom:993.000000px;}
.y3_c01338{bottom:1041.000000px;}
.y2_c01338{bottom:1068.000000px;}
.y1_c01338{bottom:1095.000000px;}
.yf_c01338{bottom:1194.000000px;}
.h6_c01338{height:27.480470px;}
.h7_c01338{height:41.220703px;}
.h4_c01338{height:41.633789px;}
.h1_c01338{height:51.257812px;}
.h5_c01338{height:56.074219px;}
.h2_c01338{height:57.258075px;}
.h3_c01338{height:567.000000px;}
.h0_c01338{height:1263.000000px;}
.w1_c01338{width:676.500000px;}
.w0_c01338{width:892.500000px;}
.x0_c01338{left:0.000000px;}
.x3_c01338{left:8.604104px;}
.x2_c01338{left:33.999000px;}
.x1_c01338{left:150.519750px;}
.x4_c01338{left:257.523600px;}
.x5_c01338{left:416.782800px;}
.x6_c01338{left:801.992850px;}
@media print{
.v3_c01338{vertical-align:-29.333333pt;}
.v2_c01338{vertical-align:-20.521067pt;}
.v0_c01338{vertical-align:0.000000pt;}
.v1_c01338{vertical-align:20.521067pt;}
.ls2_c01338{letter-spacing:-0.008533pt;}
.ls1_c01338{letter-spacing:0.000000pt;}
.ls0_c01338{letter-spacing:0.010667pt;}
.ws1_c01338{word-spacing:-17.600000pt;}
.ws2_c01338{word-spacing:-15.168000pt;}
.ws0_c01338{word-spacing:-11.724800pt;}
.ws3_c01338{word-spacing:-8.888889pt;}
.ws4_c01338{word-spacing:0.000000pt;}
._12_c01338{margin-left:-9.344000pt;}
._13_c01338{margin-left:-3.964091pt;}
._3_c01338{margin-left:-3.072000pt;}
._2_c01338{margin-left:-1.478400pt;}
._0_c01338{width:0.928000pt;}
._1_c01338{width:2.380800pt;}
._4_c01338{width:3.974400pt;}
._e_c01338{width:4.998400pt;}
._8_c01338{width:5.894400pt;}
._6_c01338{width:7.334400pt;}
._9_c01338{width:8.243200pt;}
._5_c01338{width:9.734400pt;}
._7_c01338{width:11.328000pt;}
._c_c01338{width:12.934400pt;}
._b_c01338{width:14.067200pt;}
._a_c01338{width:15.884800pt;}
._d_c01338{width:18.956800pt;}
._f_c01338{width:21.062400pt;}
._11_c01338{width:22.016000pt;}
._10_c01338{width:24.345600pt;}
.fs4_c01338{font-size:35.555557pt;}
.fs1_c01338{font-size:42.666667pt;}
.fs2_c01338{font-size:48.000000pt;}
.fs3_c01338{font-size:53.333333pt;}
.fs0_c01338{font-size:64.000000pt;}
.y0_c01338{bottom:0.000000pt;}
.ye_c01338{bottom:9.333333pt;}
.yd_c01338{bottom:24.000000pt;}
.yc_c01338{bottom:40.000000pt;}
.y10_c01338{bottom:60.000000pt;}
.y12_c01338{bottom:117.333333pt;}
.y11_c01338{bottom:142.000000pt;}
.yb_c01338{bottom:206.666667pt;}
.ya_c01338{bottom:738.666667pt;}
.y9_c01338{bottom:762.666667pt;}
.y8_c01338{bottom:786.666667pt;}
.y7_c01338{bottom:810.666667pt;}
.y6_c01338{bottom:834.666667pt;}
.y5_c01338{bottom:858.666667pt;}
.y4_c01338{bottom:882.666667pt;}
.y3_c01338{bottom:925.333333pt;}
.y2_c01338{bottom:949.333333pt;}
.y1_c01338{bottom:973.333333pt;}
.yf_c01338{bottom:1061.333333pt;}
.h6_c01338{height:24.427085pt;}
.h7_c01338{height:36.640625pt;}
.h4_c01338{height:37.007812pt;}
.h1_c01338{height:45.562500pt;}
.h5_c01338{height:49.843750pt;}
.h2_c01338{height:50.896067pt;}
.h3_c01338{height:504.000000pt;}
.h0_c01338{height:1122.666667pt;}
.w1_c01338{width:601.333333pt;}
.w0_c01338{width:793.333333pt;}
.x0_c01338{left:0.000000pt;}
.x3_c01338{left:7.648092pt;}
.x2_c01338{left:30.221333pt;}
.x1_c01338{left:133.795333pt;}
.x4_c01338{left:228.909867pt;}
.x5_c01338{left:370.473600pt;}
.x6_c01338{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bb0f34f0470f68fbf3402536.woff2')format("woff");}.ff1_c01339{font-family:ff1_c01339;line-height:0.934082;font-style:normal;font-weight:normal;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_00853180105c1f1b709e3abe.woff2')format("woff");}.ff2_c01339{font-family:ff2_c01339;line-height:0.934082;font-style:normal;font-weight:normal;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_dd90d050ff711888d7476bd2.woff2')format("woff");}.ff3_c01339{font-family:ff3_c01339;line-height:1.010254;font-style:normal;font-weight:normal;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_42ea7cc3854f508d9103ff23.woff2')format("woff");}.ff4_c01339{font-family:ff4_c01339;line-height:0.756836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01339;src:url('chunks/assets/font_68ff856299fec801b2d65dd2.woff2')format("woff");}.ff5_c01339{font-family:ff5_c01339;line-height:1.155762;font-style:normal;font-weight: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_c01339;src:url('chunks/assets/font_5e412d37a35ed35e327b7eca.woff2')format("woff");}.ff6_c01339{font-family:ff6_c01339;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c01339;src:url('chunks/assets/font_7d43f3d732fc01dcffdf2044.woff2')format("woff");}.ff7_c01339{font-family:ff7_c01339;line-height:0.890137;font-style: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);}
.m1_c01339{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3_c01339{vertical-align:-33.000000px;}
.v2_c01339{vertical-align:-23.086200px;}
.v0_c01339{vertical-align:0.000000px;}
.v1_c01339{vertical-align:23.086200px;}
.ls2_c01339{letter-spacing:-0.014400px;}
.ls1_c01339{letter-spacing:-0.009600px;}
.ls0_c01339{letter-spacing:0.000000px;}
.ls3_c01339{letter-spacing:0.012000px;}
.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;}
}
.ws0_c01339{word-spacing:-19.800000px;}
.ws1_c01339{word-spacing:-13.190400px;}
.ws2_c01339{word-spacing:-10.000001px;}
.ws3_c01339{word-spacing:0.000000px;}
._1a_c01339{margin-left:-18.798402px;}
._10_c01339{margin-left:-8.906400px;}
._13_c01339{margin-left:-7.734000px;}
._18_c01339{margin-left:-5.968800px;}
._d_c01339{margin-left:-4.708800px;}
._4_c01339{margin-left:-3.117600px;}
._2_c01339{margin-left:-1.728000px;}
._1_c01339{width:1.872000px;}
._0_c01339{width:3.556800px;}
._3_c01339{width:5.097600px;}
._5_c01339{width:6.631200px;}
._7_c01339{width:8.085600px;}
._6_c01339{width:9.885600px;}
._16_c01339{width:10.987200px;}
._19_c01339{width:12.168000px;}
._8_c01339{width:13.190400px;}
._17_c01339{width:14.392800px;}
._14_c01339{width:15.739200px;}
._e_c01339{width:17.510400px;}
._b_c01339{width:18.734400px;}
._15_c01339{width:19.812000px;}
._9_c01339{width:20.841600px;}
._c_c01339{width:22.159200px;}
._a_c01339{width:23.688000px;}
._12_c01339{width:25.158000px;}
._f_c01339{width:26.196000px;}
._11_c01339{width:27.439560px;}
.fc0_c01339{color:rgb(0,0,0);}
.fs3_c01339{font-size:40.000002px;}
.fs1_c01339{font-size:48.000000px;}
.fs2_c01339{font-size:60.000000px;}
.fs0_c01339{font-size:72.000000px;}
.y0_c01339{bottom:0.000000px;}
.y1d_c01339{bottom:67.500000px;}
.y22_c01339{bottom:132.000000px;}
.y21_c01339{bottom:159.750000px;}
.y20_c01339{bottom:209.250000px;}
.y1f_c01339{bottom:250.500000px;}
.y1e_c01339{bottom:278.250000px;}
.y1b_c01339{bottom:331.500000px;}
.y1a_c01339{bottom:352.500000px;}
.y19_c01339{bottom:373.500000px;}
.y18_c01339{bottom:394.500000px;}
.y17_c01339{bottom:415.500000px;}
.y16_c01339{bottom:436.500000px;}
.y15_c01339{bottom:457.500000px;}
.y14_c01339{bottom:478.500000px;}
.y13_c01339{bottom:499.500000px;}
.y12_c01339{bottom:520.500000px;}
.y11_c01339{bottom:541.500000px;}
.y10_c01339{bottom:562.500000px;}
.yf_c01339{bottom:583.500000px;}
.ye_c01339{bottom:604.500000px;}
.yd_c01339{bottom:648.000000px;}
.yc_c01339{bottom:669.000000px;}
.yb_c01339{bottom:714.000000px;}
.ya_c01339{bottom:741.000000px;}
.y9_c01339{bottom:789.000000px;}
.y8_c01339{bottom:837.000000px;}
.y7_c01339{bottom:933.000000px;}
.y6_c01339{bottom:960.000000px;}
.y5_c01339{bottom:987.000000px;}
.y4_c01339{bottom:1014.000000px;}
.y3_c01339{bottom:1041.000000px;}
.y2_c01339{bottom:1068.000000px;}
.y1_c01339{bottom:1095.000000px;}
.y1c_c01339{bottom:1194.000000px;}
.h9_c01339{height:27.421876px;}
.ha_c01339{height:41.132812px;}
.h5_c01339{height:42.714844px;}
.h4_c01339{height:42.832031px;}
.h8_c01339{height:44.208984px;}
.h1_c01339{height:51.257812px;}
.h3_c01339{height:51.398438px;}
.h6_c01339{height:52.417969px;}
.h7_c01339{height:56.074219px;}
.h2_c01339{height:57.258075px;}
.h0_c01339{height:1263.000000px;}
.w0_c01339{width:892.500000px;}
.x0_c01339{left:0.000000px;}
.x1_c01339{left:65.480310px;}
@media print{
.v3_c01339{vertical-align:-29.333333pt;}
.v2_c01339{vertical-align:-20.521067pt;}
.v0_c01339{vertical-align:0.000000pt;}
.v1_c01339{vertical-align:20.521067pt;}
.ls2_c01339{letter-spacing:-0.012800pt;}
.ls1_c01339{letter-spacing:-0.008533pt;}
.ls0_c01339{letter-spacing:0.000000pt;}
.ls3_c01339{letter-spacing:0.010667pt;}
.ws0_c01339{word-spacing:-17.600000pt;}
.ws1_c01339{word-spacing:-11.724800pt;}
.ws2_c01339{word-spacing:-8.888889pt;}
.ws3_c01339{word-spacing:0.000000pt;}
._1a_c01339{margin-left:-16.709691pt;}
._10_c01339{margin-left:-7.916800pt;}
._13_c01339{margin-left:-6.874667pt;}
._18_c01339{margin-left:-5.305600pt;}
._d_c01339{margin-left:-4.185600pt;}
._4_c01339{margin-left:-2.771200pt;}
._2_c01339{margin-left:-1.536000pt;}
._1_c01339{width:1.664000pt;}
._0_c01339{width:3.161600pt;}
._3_c01339{width:4.531200pt;}
._5_c01339{width:5.894400pt;}
._7_c01339{width:7.187200pt;}
._6_c01339{width:8.787200pt;}
._16_c01339{width:9.766400pt;}
._19_c01339{width:10.816000pt;}
._8_c01339{width:11.724800pt;}
._17_c01339{width:12.793600pt;}
._14_c01339{width:13.990400pt;}
._e_c01339{width:15.564800pt;}
._b_c01339{width:16.652800pt;}
._15_c01339{width:17.610667pt;}
._9_c01339{width:18.525867pt;}
._c_c01339{width:19.697067pt;}
._a_c01339{width:21.056000pt;}
._12_c01339{width:22.362667pt;}
._f_c01339{width:23.285333pt;}
._11_c01339{width:24.390720pt;}
.fs3_c01339{font-size:35.555557pt;}
.fs1_c01339{font-size:42.666667pt;}
.fs2_c01339{font-size:53.333333pt;}
.fs0_c01339{font-size:64.000000pt;}
.y0_c01339{bottom:0.000000pt;}
.y1d_c01339{bottom:60.000000pt;}
.y22_c01339{bottom:117.333333pt;}
.y21_c01339{bottom:142.000000pt;}
.y20_c01339{bottom:186.000000pt;}
.y1f_c01339{bottom:222.666667pt;}
.y1e_c01339{bottom:247.333333pt;}
.y1b_c01339{bottom:294.666667pt;}
.y1a_c01339{bottom:313.333333pt;}
.y19_c01339{bottom:332.000000pt;}
.y18_c01339{bottom:350.666667pt;}
.y17_c01339{bottom:369.333333pt;}
.y16_c01339{bottom:388.000000pt;}
.y15_c01339{bottom:406.666667pt;}
.y14_c01339{bottom:425.333333pt;}
.y13_c01339{bottom:444.000000pt;}
.y12_c01339{bottom:462.666667pt;}
.y11_c01339{bottom:481.333333pt;}
.y10_c01339{bottom:500.000000pt;}
.yf_c01339{bottom:518.666667pt;}
.ye_c01339{bottom:537.333333pt;}
.yd_c01339{bottom:576.000000pt;}
.yc_c01339{bottom:594.666667pt;}
.yb_c01339{bottom:634.666667pt;}
.ya_c01339{bottom:658.666667pt;}
.y9_c01339{bottom:701.333333pt;}
.y8_c01339{bottom:744.000000pt;}
.y7_c01339{bottom:829.333333pt;}
.y6_c01339{bottom:853.333333pt;}
.y5_c01339{bottom:877.333333pt;}
.y4_c01339{bottom:901.333333pt;}
.y3_c01339{bottom:925.333333pt;}
.y2_c01339{bottom:949.333333pt;}
.y1_c01339{bottom:973.333333pt;}
.y1c_c01339{bottom:1061.333333pt;}
.h9_c01339{height:24.375001pt;}
.ha_c01339{height:36.562500pt;}
.h5_c01339{height:37.968750pt;}
.h4_c01339{height:38.072917pt;}
.h8_c01339{height:39.296875pt;}
.h1_c01339{height:45.562500pt;}
.h3_c01339{height:45.687500pt;}
.h6_c01339{height:46.593750pt;}
.h7_c01339{height:49.843750pt;}
.h2_c01339{height:50.896067pt;}
.h0_c01339{height:1122.666667pt;}
.w0_c01339{width:793.333333pt;}
.x0_c01339{left:0.000000pt;}
.x1_c01339{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_16fcf5fc8d90969eef68d91e.woff2')format("woff");}.ff1_c01340{font-family:ff1_c01340;line-height:1.010254;font-style:normal;font-weight:normal;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_343d48f5e6576322badeed9a.woff2')format("woff");}.ff2_c01340{font-family:ff2_c01340;line-height:0.932129;font-style:normal;font-weight:normal;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_43389e7a75baebac004f397d.woff2')format("woff");}.ff3_c01340{font-family:ff3_c01340;line-height:0.932129;font-style:normal;font-weight:normal;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_be694c312e440f568684c7f8.woff2')format("woff");}.ff4_c01340{font-family:ff4_c01340;line-height:1.155762;font-style: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);}
.v0_c01340{vertical-align:0.000000px;}
.ls2_c01340{letter-spacing:0.000000px;}
.ls3_c01340{letter-spacing:0.007200px;}
.ls1_c01340{letter-spacing:0.012000px;}
.ls0_c01340{letter-spacing:0.892800px;}
.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;}
}
.ws0_c01340{word-spacing:0.000000px;}
._9_c01340{margin-left:-6.624000px;}
._1d_c01340{margin-left:-5.400000px;}
._b_c01340{margin-left:-4.320000px;}
._5_c01340{margin-left:-3.168000px;}
._7_c01340{margin-left:-1.389600px;}
._2_c01340{width:1.000800px;}
._1e_c01340{width:2.008800px;}
._1_c01340{width:3.009600px;}
._0_c01340{width:4.363200px;}
._3_c01340{width:6.364800px;}
._4_c01340{width:7.365600px;}
._8_c01340{width:8.769600px;}
._6_c01340{width:10.533600px;}
._a_c01340{width:11.743200px;}
._1c_c01340{width:12.938400px;}
._c_c01340{width:14.025600px;}
._1b_c01340{width:15.103800px;}
._10_c01340{width:16.927200px;}
._1a_c01340{width:18.544800px;}
._e_c01340{width:20.700000px;}
._f_c01340{width:22.716000px;}
._d_c01340{width:24.976800px;}
._18_c01340{width:26.402400px;}
._19_c01340{width:28.375200px;}
._15_c01340{width:30.362400px;}
._13_c01340{width:31.694400px;}
._12_c01340{width:33.631200px;}
._11_c01340{width:34.704000px;}
._17_c01340{width:36.043200px;}
._14_c01340{width:37.872000px;}
._16_c01340{width:39.117600px;}
.fc0_c01340{color:rgb(0,0,0);}
.fs1_c01340{font-size:60.000000px;}
.fs0_c01340{font-size:72.000000px;}
.y0_c01340{bottom:0.000000px;}
.y1f_c01340{bottom:67.500000px;}
.y1d_c01340{bottom:189.000000px;}
.y1c_c01340{bottom:207.000000px;}
.y1b_c01340{bottom:249.000000px;}
.y1a_c01340{bottom:271.500000px;}
.y19_c01340{bottom:316.500000px;}
.y18_c01340{bottom:361.500000px;}
.y17_c01340{bottom:447.000000px;}
.y16_c01340{bottom:468.000000px;}
.y15_c01340{bottom:489.000000px;}
.y14_c01340{bottom:510.000000px;}
.y13_c01340{bottom:531.000000px;}
.y12_c01340{bottom:552.000000px;}
.y11_c01340{bottom:573.000000px;}
.y10_c01340{bottom:628.500000px;}
.yf_c01340{bottom:646.500000px;}
.ye_c01340{bottom:687.000000px;}
.yd_c01340{bottom:709.500000px;}
.yc_c01340{bottom:754.500000px;}
.yb_c01340{bottom:822.000000px;}
.ya_c01340{bottom:886.500000px;}
.y9_c01340{bottom:907.500000px;}
.y8_c01340{bottom:928.500000px;}
.y7_c01340{bottom:949.500000px;}
.y6_c01340{bottom:970.500000px;}
.y5_c01340{bottom:991.500000px;}
.y4_c01340{bottom:1033.500000px;}
.y3_c01340{bottom:1054.500000px;}
.y2_c01340{bottom:1075.500000px;}
.y1_c01340{bottom:1096.500000px;}
.y1e_c01340{bottom:1194.000000px;}
.h3_c01340{height:42.714844px;}
.h2_c01340{height:51.257812px;}
.h1_c01340{height:52.417969px;}
.h4_c01340{height:56.074219px;}
.h0_c01340{height:1263.000000px;}
.w0_c01340{width:892.500000px;}
.x0_c01340{left:0.000000px;}
.x1_c01340{left:150.519750px;}
.x2_c01340{left:416.782800px;}
.x3_c01340{left:801.992850px;}
@media print{
.v0_c01340{vertical-align:0.000000pt;}
.ls2_c01340{letter-spacing:0.000000pt;}
.ls3_c01340{letter-spacing:0.006400pt;}
.ls1_c01340{letter-spacing:0.010667pt;}
.ls0_c01340{letter-spacing:0.793600pt;}
.ws0_c01340{word-spacing:0.000000pt;}
._9_c01340{margin-left:-5.888000pt;}
._1d_c01340{margin-left:-4.800000pt;}
._b_c01340{margin-left:-3.840000pt;}
._5_c01340{margin-left:-2.816000pt;}
._7_c01340{margin-left:-1.235200pt;}
._2_c01340{width:0.889600pt;}
._1e_c01340{width:1.785600pt;}
._1_c01340{width:2.675200pt;}
._0_c01340{width:3.878400pt;}
._3_c01340{width:5.657600pt;}
._4_c01340{width:6.547200pt;}
._8_c01340{width:7.795200pt;}
._6_c01340{width:9.363200pt;}
._a_c01340{width:10.438400pt;}
._1c_c01340{width:11.500800pt;}
._c_c01340{width:12.467200pt;}
._1b_c01340{width:13.425600pt;}
._10_c01340{width:15.046400pt;}
._1a_c01340{width:16.484267pt;}
._e_c01340{width:18.400000pt;}
._f_c01340{width:20.192000pt;}
._d_c01340{width:22.201600pt;}
._18_c01340{width:23.468800pt;}
._19_c01340{width:25.222400pt;}
._15_c01340{width:26.988800pt;}
._13_c01340{width:28.172800pt;}
._12_c01340{width:29.894400pt;}
._11_c01340{width:30.848000pt;}
._17_c01340{width:32.038400pt;}
._14_c01340{width:33.664000pt;}
._16_c01340{width:34.771200pt;}
.fs1_c01340{font-size:53.333333pt;}
.fs0_c01340{font-size:64.000000pt;}
.y0_c01340{bottom:0.000000pt;}
.y1f_c01340{bottom:60.000000pt;}
.y1d_c01340{bottom:168.000000pt;}
.y1c_c01340{bottom:184.000000pt;}
.y1b_c01340{bottom:221.333333pt;}
.y1a_c01340{bottom:241.333333pt;}
.y19_c01340{bottom:281.333333pt;}
.y18_c01340{bottom:321.333333pt;}
.y17_c01340{bottom:397.333333pt;}
.y16_c01340{bottom:416.000000pt;}
.y15_c01340{bottom:434.666667pt;}
.y14_c01340{bottom:453.333333pt;}
.y13_c01340{bottom:472.000000pt;}
.y12_c01340{bottom:490.666667pt;}
.y11_c01340{bottom:509.333333pt;}
.y10_c01340{bottom:558.666667pt;}
.yf_c01340{bottom:574.666667pt;}
.ye_c01340{bottom:610.666667pt;}
.yd_c01340{bottom:630.666667pt;}
.yc_c01340{bottom:670.666667pt;}
.yb_c01340{bottom:730.666667pt;}
.ya_c01340{bottom:788.000000pt;}
.y9_c01340{bottom:806.666667pt;}
.y8_c01340{bottom:825.333333pt;}
.y7_c01340{bottom:844.000000pt;}
.y6_c01340{bottom:862.666667pt;}
.y5_c01340{bottom:881.333333pt;}
.y4_c01340{bottom:918.666667pt;}
.y3_c01340{bottom:937.333333pt;}
.y2_c01340{bottom:956.000000pt;}
.y1_c01340{bottom:974.666667pt;}
.y1e_c01340{bottom:1061.333333pt;}
.h3_c01340{height:37.968750pt;}
.h2_c01340{height:45.562500pt;}
.h1_c01340{height:46.593750pt;}
.h4_c01340{height:49.843750pt;}
.h0_c01340{height:1122.666667pt;}
.w0_c01340{width:793.333333pt;}
.x0_c01340{left:0.000000pt;}
.x1_c01340{left:133.795333pt;}
.x2_c01340{left:370.473600pt;}
.x3_c01340{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_35c67acaa37a7a721a91b61d.woff2')format("woff");}.ff1_c01341{font-family:ff1_c01341;line-height:1.010254;font-style:normal;font-weight:normal;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_509a34c9f308619ccdc0f791.woff2')format("woff");}.ff2_c01341{font-family:ff2_c01341;line-height:0.986816;font-style:normal;font-weight:normal;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_4b0f6b4e2b933515340bb6c7.woff2')format("woff");}.ff3_c01341{font-family:ff3_c01341;line-height:0.932129;font-style:normal;font-weight:normal;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_ff63aa375625d7c1f10fd9a2.woff2')format("woff");}.ff4_c01341{font-family:ff4_c01341;line-height:0.932129;font-style:normal;font-weight:normal;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_9ac92ea13ab472a6e52ee06d.woff2')format("woff");}.ff5_c01341{font-family:ff5_c01341;line-height:0.756836;font-style:normal;font-weight: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_c01341;src:url('chunks/assets/font_bc3be16ce1cd6fbfc251e680.woff2')format("woff");}.ff6_c01341{font-family:ff6_c01341;line-height:1.155762;font-style: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);}
.v0_c01341{vertical-align:0.000000px;}
.ls2_c01341{letter-spacing:0.000000px;}
.ls3_c01341{letter-spacing:0.012000px;}
.ls0_c01341{letter-spacing:0.014400px;}
.ls1_c01341{letter-spacing:0.036000px;}
.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;}
}
.ws1_c01341{word-spacing:-18.000000px;}
.ws0_c01341{word-spacing:-0.108000px;}
.ws2_c01341{word-spacing:-0.072000px;}
.ws3_c01341{word-spacing:0.000000px;}
._19_c01341{margin-left:-6.840000px;}
._12_c01341{margin-left:-5.493600px;}
._7_c01341{margin-left:-4.284000px;}
._4_c01341{margin-left:-2.304000px;}
._6_c01341{margin-left:-1.252800px;}
._1_c01341{width:1.893600px;}
._0_c01341{width:2.959200px;}
._8_c01341{width:4.327200px;}
._13_c01341{width:5.551200px;}
._9_c01341{width:6.609600px;}
._a_c01341{width:8.510400px;}
._14_c01341{width:9.640800px;}
._b_c01341{width:10.807200px;}
._c_c01341{width:11.901600px;}
._d_c01341{width:13.838400px;}
._e_c01341{width:15.242400px;}
._10_c01341{width:16.833600px;}
._18_c01341{width:19.029600px;}
._f_c01341{width:20.325600px;}
._11_c01341{width:21.758400px;}
._15_c01341{width:31.672800px;}
._3_c01341{width:33.084000px;}
._2_c01341{width:34.956000px;}
._5_c01341{width:37.231200px;}
._16_c01341{width:38.280360px;}
._17_c01341{width:40.284000px;}
.fc0_c01341{color:rgb(0,0,0);}
.fs1_c01341{font-size:60.000000px;}
.fs0_c01341{font-size:72.000000px;}
.y0_c01341{bottom:0.000000px;}
.y26_c01341{bottom:67.500000px;}
.y24_c01341{bottom:142.500000px;}
.y23_c01341{bottom:187.500000px;}
.y22_c01341{bottom:255.000000px;}
.y21_c01341{bottom:319.500000px;}
.y20_c01341{bottom:340.500000px;}
.y1f_c01341{bottom:382.500000px;}
.y1e_c01341{bottom:403.500000px;}
.y1d_c01341{bottom:424.500000px;}
.y1c_c01341{bottom:445.500000px;}
.y1b_c01341{bottom:466.500000px;}
.y1a_c01341{bottom:487.500000px;}
.y19_c01341{bottom:529.500000px;}
.y18_c01341{bottom:550.500000px;}
.y17_c01341{bottom:592.500000px;}
.y16_c01341{bottom:613.500000px;}
.y15_c01341{bottom:634.500000px;}
.y14_c01341{bottom:655.500000px;}
.y13_c01341{bottom:676.500000px;}
.y12_c01341{bottom:697.500000px;}
.y11_c01341{bottom:718.500000px;}
.y10_c01341{bottom:760.500000px;}
.yf_c01341{bottom:781.500000px;}
.ye_c01341{bottom:802.500000px;}
.yd_c01341{bottom:823.500000px;}
.yc_c01341{bottom:844.500000px;}
.yb_c01341{bottom:865.500000px;}
.ya_c01341{bottom:907.500000px;}
.y9_c01341{bottom:928.500000px;}
.y8_c01341{bottom:949.500000px;}
.y7_c01341{bottom:970.500000px;}
.y6_c01341{bottom:991.500000px;}
.y5_c01341{bottom:1012.500000px;}
.y4_c01341{bottom:1033.500000px;}
.y3_c01341{bottom:1054.500000px;}
.y2_c01341{bottom:1075.500000px;}
.y1_c01341{bottom:1096.500000px;}
.y25_c01341{bottom:1194.000000px;}
.h4_c01341{height:44.208984px;}
.h2_c01341{height:51.257812px;}
.h1_c01341{height:52.417969px;}
.h3_c01341{height:56.074219px;}
.h0_c01341{height:1263.000000px;}
.w0_c01341{width:892.500000px;}
.x0_c01341{left:0.000000px;}
.x1_c01341{left:65.480310px;}
@media print{
.v0_c01341{vertical-align:0.000000pt;}
.ls2_c01341{letter-spacing:0.000000pt;}
.ls3_c01341{letter-spacing:0.010667pt;}
.ls0_c01341{letter-spacing:0.012800pt;}
.ls1_c01341{letter-spacing:0.032000pt;}
.ws1_c01341{word-spacing:-16.000000pt;}
.ws0_c01341{word-spacing:-0.096000pt;}
.ws2_c01341{word-spacing:-0.064000pt;}
.ws3_c01341{word-spacing:0.000000pt;}
._19_c01341{margin-left:-6.080000pt;}
._12_c01341{margin-left:-4.883200pt;}
._7_c01341{margin-left:-3.808000pt;}
._4_c01341{margin-left:-2.048000pt;}
._6_c01341{margin-left:-1.113600pt;}
._1_c01341{width:1.683200pt;}
._0_c01341{width:2.630400pt;}
._8_c01341{width:3.846400pt;}
._13_c01341{width:4.934400pt;}
._9_c01341{width:5.875200pt;}
._a_c01341{width:7.564800pt;}
._14_c01341{width:8.569600pt;}
._b_c01341{width:9.606400pt;}
._c_c01341{width:10.579200pt;}
._d_c01341{width:12.300800pt;}
._e_c01341{width:13.548800pt;}
._10_c01341{width:14.963200pt;}
._18_c01341{width:16.915200pt;}
._f_c01341{width:18.067200pt;}
._11_c01341{width:19.340800pt;}
._15_c01341{width:28.153600pt;}
._3_c01341{width:29.408000pt;}
._2_c01341{width:31.072000pt;}
._5_c01341{width:33.094400pt;}
._16_c01341{width:34.026987pt;}
._17_c01341{width:35.808000pt;}
.fs1_c01341{font-size:53.333333pt;}
.fs0_c01341{font-size:64.000000pt;}
.y0_c01341{bottom:0.000000pt;}
.y26_c01341{bottom:60.000000pt;}
.y24_c01341{bottom:126.666667pt;}
.y23_c01341{bottom:166.666667pt;}
.y22_c01341{bottom:226.666667pt;}
.y21_c01341{bottom:284.000000pt;}
.y20_c01341{bottom:302.666667pt;}
.y1f_c01341{bottom:340.000000pt;}
.y1e_c01341{bottom:358.666667pt;}
.y1d_c01341{bottom:377.333333pt;}
.y1c_c01341{bottom:396.000000pt;}
.y1b_c01341{bottom:414.666667pt;}
.y1a_c01341{bottom:433.333333pt;}
.y19_c01341{bottom:470.666667pt;}
.y18_c01341{bottom:489.333333pt;}
.y17_c01341{bottom:526.666667pt;}
.y16_c01341{bottom:545.333333pt;}
.y15_c01341{bottom:564.000000pt;}
.y14_c01341{bottom:582.666667pt;}
.y13_c01341{bottom:601.333333pt;}
.y12_c01341{bottom:620.000000pt;}
.y11_c01341{bottom:638.666667pt;}
.y10_c01341{bottom:676.000000pt;}
.yf_c01341{bottom:694.666667pt;}
.ye_c01341{bottom:713.333333pt;}
.yd_c01341{bottom:732.000000pt;}
.yc_c01341{bottom:750.666667pt;}
.yb_c01341{bottom:769.333333pt;}
.ya_c01341{bottom:806.666667pt;}
.y9_c01341{bottom:825.333333pt;}
.y8_c01341{bottom:844.000000pt;}
.y7_c01341{bottom:862.666667pt;}
.y6_c01341{bottom:881.333333pt;}
.y5_c01341{bottom:900.000000pt;}
.y4_c01341{bottom:918.666667pt;}
.y3_c01341{bottom:937.333333pt;}
.y2_c01341{bottom:956.000000pt;}
.y1_c01341{bottom:974.666667pt;}
.y25_c01341{bottom:1061.333333pt;}
.h4_c01341{height:39.296875pt;}
.h2_c01341{height:45.562500pt;}
.h1_c01341{height:46.593750pt;}
.h3_c01341{height:49.843750pt;}
.h0_c01341{height:1122.666667pt;}
.w0_c01341{width:793.333333pt;}
.x0_c01341{left:0.000000pt;}
.x1_c01341{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e377798f97f506f0a2b3ca96.woff2')format("woff");}.ff1_c01342{font-family:ff1_c01342;line-height:0.932129;font-style:normal;font-weight:normal;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_298628e4ab1c093524cb93a0.woff2')format("woff");}.ff2_c01342{font-family:ff2_c01342;line-height:0.932129;font-style:normal;font-weight:normal;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_8abcf24aacfba59e2f433cfe.woff2')format("woff");}.ff3_c01342{font-family:ff3_c01342;line-height:1.010254;font-style:normal;font-weight:normal;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_49aa1dc429d216819fbdc356.woff2')format("woff");}.ff4_c01342{font-family:ff4_c01342;line-height:0.986816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01342;src:url('chunks/assets/font_dea061ea06de6da4fb9257a1.woff2')format("woff");}.ff5_c01342{font-family:ff5_c01342;line-height:1.155762;font-style: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;}
.ls5_c01342{letter-spacing:-0.950400px;}
.ls4_c01342{letter-spacing:0.000000px;}
.ls3_c01342{letter-spacing:0.012000px;}
.ls1_c01342{letter-spacing:0.453600px;}
.ls2_c01342{letter-spacing:0.475200px;}
.ls0_c01342{letter-spacing:0.907200px;}
.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;}
}
.ws1_c01342{word-spacing:-18.000000px;}
.ws0_c01342{word-spacing:-0.547200px;}
.ws2_c01342{word-spacing:-0.072000px;}
.ws3_c01342{word-spacing:0.000000px;}
._15_c01342{margin-left:-6.856800px;}
._9_c01342{margin-left:-5.299200px;}
._c_c01342{margin-left:-3.861600px;}
._1_c01342{margin-left:-2.448000px;}
._7_c01342{margin-left:-1.056000px;}
._2_c01342{width:1.934400px;}
._3_c01342{width:3.000000px;}
._b_c01342{width:4.972800px;}
._5_c01342{width:6.033600px;}
._8_c01342{width:7.963200px;}
._19_c01342{width:8.971200px;}
._a_c01342{width:10.104000px;}
._14_c01342{width:11.452800px;}
._6_c01342{width:12.480000px;}
._4_c01342{width:14.208000px;}
._10_c01342{width:15.302400px;}
._f_c01342{width:16.314000px;}
._0_c01342{width:17.850000px;}
._11_c01342{width:19.154400px;}
._e_c01342{width:20.743200px;}
._d_c01342{width:22.154400px;}
._1c_c01342{width:23.736000px;}
._12_c01342{width:24.806400px;}
._13_c01342{width:25.984800px;}
._16_c01342{width:32.697600px;}
._18_c01342{width:34.392000px;}
._17_c01342{width:35.688000px;}
._1a_c01342{width:38.817000px;}
._1b_c01342{width:40.377600px;}
.fc0_c01342{color:rgb(0,0,0);}
.fs0_c01342{font-size:60.000000px;}
.fs1_c01342{font-size:72.000000px;}
.y0_c01342{bottom:0.000000px;}
.y24_c01342{bottom:67.335000px;}
.y22_c01342{bottom:289.335000px;}
.y21_c01342{bottom:310.335000px;}
.y20_c01342{bottom:352.335000px;}
.y1f_c01342{bottom:373.335000px;}
.y1e_c01342{bottom:394.335000px;}
.y1d_c01342{bottom:415.335000px;}
.y1c_c01342{bottom:436.335000px;}
.y1b_c01342{bottom:478.335000px;}
.y1a_c01342{bottom:499.335000px;}
.y19_c01342{bottom:541.335000px;}
.y18_c01342{bottom:562.335000px;}
.y17_c01342{bottom:583.335000px;}
.y16_c01342{bottom:604.335000px;}
.y15_c01342{bottom:625.335000px;}
.y14_c01342{bottom:646.335000px;}
.y13_c01342{bottom:667.335000px;}
.y12_c01342{bottom:688.335000px;}
.y11_c01342{bottom:709.335000px;}
.y10_c01342{bottom:730.335000px;}
.yf_c01342{bottom:751.335000px;}
.ye_c01342{bottom:793.335000px;}
.yd_c01342{bottom:814.335000px;}
.yc_c01342{bottom:835.335000px;}
.yb_c01342{bottom:856.335000px;}
.ya_c01342{bottom:877.335000px;}
.y9_c01342{bottom:898.335000px;}
.y8_c01342{bottom:919.335000px;}
.y7_c01342{bottom:940.335000px;}
.y6_c01342{bottom:961.335000px;}
.y5_c01342{bottom:982.335000px;}
.y4_c01342{bottom:1003.335000px;}
.y3_c01342{bottom:1024.335000px;}
.y2_c01342{bottom:1079.835000px;}
.y1_c01342{bottom:1097.835000px;}
.y23_c01342{bottom:1193.835000px;}
.h3_c01342{height:42.714844px;}
.h4_c01342{height:52.417969px;}
.h5_c01342{height:56.074219px;}
.h2_c01342{height:1261.500000px;}
.h0_c01342{height:1262.835000px;}
.h1_c01342{height:1263.000000px;}
.w2_c01342{width:892.500000px;}
.w0_c01342{width:892.935000px;}
.w1_c01342{width:893.250000px;}
.x0_c01342{left:0.000000px;}
.x1_c01342{left:150.519750px;}
.x2_c01342{left:417.217800px;}
.x3_c01342{left:802.427700px;}
@media print{
.v0_c01342{vertical-align:0.000000pt;}
.ls5_c01342{letter-spacing:-0.844800pt;}
.ls4_c01342{letter-spacing:0.000000pt;}
.ls3_c01342{letter-spacing:0.010667pt;}
.ls1_c01342{letter-spacing:0.403200pt;}
.ls2_c01342{letter-spacing:0.422400pt;}
.ls0_c01342{letter-spacing:0.806400pt;}
.ws1_c01342{word-spacing:-16.000000pt;}
.ws0_c01342{word-spacing:-0.486400pt;}
.ws2_c01342{word-spacing:-0.064000pt;}
.ws3_c01342{word-spacing:0.000000pt;}
._15_c01342{margin-left:-6.094933pt;}
._9_c01342{margin-left:-4.710400pt;}
._c_c01342{margin-left:-3.432533pt;}
._1_c01342{margin-left:-2.176000pt;}
._7_c01342{margin-left:-0.938667pt;}
._2_c01342{width:1.719467pt;}
._3_c01342{width:2.666667pt;}
._b_c01342{width:4.420267pt;}
._5_c01342{width:5.363200pt;}
._8_c01342{width:7.078400pt;}
._19_c01342{width:7.974400pt;}
._a_c01342{width:8.981333pt;}
._14_c01342{width:10.180267pt;}
._6_c01342{width:11.093333pt;}
._4_c01342{width:12.629333pt;}
._10_c01342{width:13.602133pt;}
._f_c01342{width:14.501333pt;}
._0_c01342{width:15.866667pt;}
._11_c01342{width:17.026133pt;}
._e_c01342{width:18.438400pt;}
._d_c01342{width:19.692800pt;}
._1c_c01342{width:21.098667pt;}
._12_c01342{width:22.050133pt;}
._13_c01342{width:23.097600pt;}
._16_c01342{width:29.064533pt;}
._18_c01342{width:30.570667pt;}
._17_c01342{width:31.722667pt;}
._1a_c01342{width:34.504000pt;}
._1b_c01342{width:35.891200pt;}
.fs0_c01342{font-size:53.333333pt;}
.fs1_c01342{font-size:64.000000pt;}
.y0_c01342{bottom:0.000000pt;}
.y24_c01342{bottom:59.853333pt;}
.y22_c01342{bottom:257.186667pt;}
.y21_c01342{bottom:275.853333pt;}
.y20_c01342{bottom:313.186667pt;}
.y1f_c01342{bottom:331.853333pt;}
.y1e_c01342{bottom:350.520000pt;}
.y1d_c01342{bottom:369.186667pt;}
.y1c_c01342{bottom:387.853333pt;}
.y1b_c01342{bottom:425.186667pt;}
.y1a_c01342{bottom:443.853333pt;}
.y19_c01342{bottom:481.186667pt;}
.y18_c01342{bottom:499.853333pt;}
.y17_c01342{bottom:518.520000pt;}
.y16_c01342{bottom:537.186667pt;}
.y15_c01342{bottom:555.853333pt;}
.y14_c01342{bottom:574.520000pt;}
.y13_c01342{bottom:593.186667pt;}
.y12_c01342{bottom:611.853333pt;}
.y11_c01342{bottom:630.520000pt;}
.y10_c01342{bottom:649.186667pt;}
.yf_c01342{bottom:667.853333pt;}
.ye_c01342{bottom:705.186667pt;}
.yd_c01342{bottom:723.853333pt;}
.yc_c01342{bottom:742.520000pt;}
.yb_c01342{bottom:761.186667pt;}
.ya_c01342{bottom:779.853333pt;}
.y9_c01342{bottom:798.520000pt;}
.y8_c01342{bottom:817.186667pt;}
.y7_c01342{bottom:835.853333pt;}
.y6_c01342{bottom:854.520000pt;}
.y5_c01342{bottom:873.186667pt;}
.y4_c01342{bottom:891.853333pt;}
.y3_c01342{bottom:910.520000pt;}
.y2_c01342{bottom:959.853333pt;}
.y1_c01342{bottom:975.853333pt;}
.y23_c01342{bottom:1061.186667pt;}
.h3_c01342{height:37.968750pt;}
.h4_c01342{height:46.593750pt;}
.h5_c01342{height:49.843750pt;}
.h2_c01342{height:1121.333333pt;}
.h0_c01342{height:1122.520000pt;}
.h1_c01342{height:1122.666667pt;}
.w2_c01342{width:793.333333pt;}
.w0_c01342{width:793.720000pt;}
.w1_c01342{width:794.000000pt;}
.x0_c01342{left:0.000000pt;}
.x1_c01342{left:133.795333pt;}
.x2_c01342{left:370.860267pt;}
.x3_c01342{left:713.269067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b07e84280fb6cbb04f066481.woff2')format("woff");}.ff1_c01343{font-family:ff1_c01343;line-height:1.167480;font-style:normal;font-weight:normal;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_5e2c4d76fcdde3e3f63859c3.woff2')format("woff");}.ff2_c01343{font-family:ff2_c01343;line-height:0.934082;font-style:normal;font-weight:normal;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_198ef4967ad2dedc32dde3bf.woff2')format("woff");}.ff3_c01343{font-family:ff3_c01343;line-height:0.756836;font-style:normal;font-weight:normal;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_fb6c25d3aeec0ceccc065b38.woff2')format("woff");}.ff4_c01343{font-family:ff4_c01343;line-height:1.155762;font-style: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);}
.v0_c01343{vertical-align:0.000000px;}
.ls1_c01343{letter-spacing:0.000000px;}
.ls0_c01343{letter-spacing:0.010800px;}
.ls2_c01343{letter-spacing:0.012000px;}
.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;}
}
.ws0_c01343{word-spacing:0.000000px;}
._3_c01343{margin-left:-7.754400px;}
._1_c01343{margin-left:-5.907600px;}
._0_c01343{margin-left:-3.747600px;}
._2_c01343{margin-left:-1.879200px;}
._4_c01343{width:1.015200px;}
._7_c01343{width:3.002400px;}
._5_c01343{width:4.881600px;}
._6_c01343{width:5.907600px;}
._b_c01343{width:7.016400px;}
._11_c01343{width:8.103600px;}
._9_c01343{width:9.468000px;}
._8_c01343{width:11.275200px;}
._a_c01343{width:13.251600px;}
._10_c01343{width:14.274000px;}
._c_c01343{width:15.494400px;}
._d_c01343{width:17.402400px;}
._f_c01343{width:22.248000px;}
._e_c01343{width:24.123600px;}
._13_c01343{width:27.820800px;}
._16_c01343{width:29.131200px;}
._12_c01343{width:30.808800px;}
._15_c01343{width:32.680800px;}
._14_c01343{width:34.635600px;}
.fc0_c01343{color:rgb(0,0,0);}
.fs2_c01343{font-size:60.000000px;}
.fs1_c01343{font-size:72.000000px;}
.fs0_c01343{font-size:108.000000px;}
.y0_c01343{bottom:0.000000px;}
.y19_c01343{bottom:67.335000px;}
.y17_c01343{bottom:328.335000px;}
.y16_c01343{bottom:355.335000px;}
.y15_c01343{bottom:382.335000px;}
.y14_c01343{bottom:409.335000px;}
.y13_c01343{bottom:436.335000px;}
.y12_c01343{bottom:463.335000px;}
.y11_c01343{bottom:490.335000px;}
.y10_c01343{bottom:538.335000px;}
.yf_c01343{bottom:565.335000px;}
.ye_c01343{bottom:592.335000px;}
.yd_c01343{bottom:619.335000px;}
.yc_c01343{bottom:646.335000px;}
.yb_c01343{bottom:673.335000px;}
.ya_c01343{bottom:700.335000px;}
.y9_c01343{bottom:727.335000px;}
.y8_c01343{bottom:754.335000px;}
.y7_c01343{bottom:781.335000px;}
.y6_c01343{bottom:829.335000px;}
.y5_c01343{bottom:856.335000px;}
.y4_c01343{bottom:883.335000px;}
.y3_c01343{bottom:910.335000px;}
.y2_c01343{bottom:1054.335000px;}
.y1_c01343{bottom:1087.335000px;}
.y18_c01343{bottom:1193.835000px;}
.h6_c01343{height:44.208984px;}
.h4_c01343{height:51.257812px;}
.h5_c01343{height:56.074219px;}
.h3_c01343{height:102.304688px;}
.h2_c01343{height:1261.500000px;}
.h0_c01343{height:1262.835000px;}
.h1_c01343{height:1263.000000px;}
.w2_c01343{width:892.500000px;}
.w0_c01343{width:892.935000px;}
.w1_c01343{width:893.250000px;}
.x0_c01343{left:0.000000px;}
.x1_c01343{left:65.480310px;}
@media print{
.v0_c01343{vertical-align:0.000000pt;}
.ls1_c01343{letter-spacing:0.000000pt;}
.ls0_c01343{letter-spacing:0.009600pt;}
.ls2_c01343{letter-spacing:0.010667pt;}
.ws0_c01343{word-spacing:0.000000pt;}
._3_c01343{margin-left:-6.892800pt;}
._1_c01343{margin-left:-5.251200pt;}
._0_c01343{margin-left:-3.331200pt;}
._2_c01343{margin-left:-1.670400pt;}
._4_c01343{width:0.902400pt;}
._7_c01343{width:2.668800pt;}
._5_c01343{width:4.339200pt;}
._6_c01343{width:5.251200pt;}
._b_c01343{width:6.236800pt;}
._11_c01343{width:7.203200pt;}
._9_c01343{width:8.416000pt;}
._8_c01343{width:10.022400pt;}
._a_c01343{width:11.779200pt;}
._10_c01343{width:12.688000pt;}
._c_c01343{width:13.772800pt;}
._d_c01343{width:15.468800pt;}
._f_c01343{width:19.776000pt;}
._e_c01343{width:21.443200pt;}
._13_c01343{width:24.729600pt;}
._16_c01343{width:25.894400pt;}
._12_c01343{width:27.385600pt;}
._15_c01343{width:29.049600pt;}
._14_c01343{width:30.787200pt;}
.fs2_c01343{font-size:53.333333pt;}
.fs1_c01343{font-size:64.000000pt;}
.fs0_c01343{font-size:96.000000pt;}
.y0_c01343{bottom:0.000000pt;}
.y19_c01343{bottom:59.853333pt;}
.y17_c01343{bottom:291.853333pt;}
.y16_c01343{bottom:315.853333pt;}
.y15_c01343{bottom:339.853333pt;}
.y14_c01343{bottom:363.853333pt;}
.y13_c01343{bottom:387.853333pt;}
.y12_c01343{bottom:411.853333pt;}
.y11_c01343{bottom:435.853333pt;}
.y10_c01343{bottom:478.520000pt;}
.yf_c01343{bottom:502.520000pt;}
.ye_c01343{bottom:526.520000pt;}
.yd_c01343{bottom:550.520000pt;}
.yc_c01343{bottom:574.520000pt;}
.yb_c01343{bottom:598.520000pt;}
.ya_c01343{bottom:622.520000pt;}
.y9_c01343{bottom:646.520000pt;}
.y8_c01343{bottom:670.520000pt;}
.y7_c01343{bottom:694.520000pt;}
.y6_c01343{bottom:737.186667pt;}
.y5_c01343{bottom:761.186667pt;}
.y4_c01343{bottom:785.186667pt;}
.y3_c01343{bottom:809.186667pt;}
.y2_c01343{bottom:937.186667pt;}
.y1_c01343{bottom:966.520000pt;}
.y18_c01343{bottom:1061.186667pt;}
.h6_c01343{height:39.296875pt;}
.h4_c01343{height:45.562500pt;}
.h5_c01343{height:49.843750pt;}
.h3_c01343{height:90.937500pt;}
.h2_c01343{height:1121.333333pt;}
.h0_c01343{height:1122.520000pt;}
.h1_c01343{height:1122.666667pt;}
.w2_c01343{width:793.333333pt;}
.w0_c01343{width:793.720000pt;}
.w1_c01343{width:794.000000pt;}
.x0_c01343{left:0.000000pt;}
.x1_c01343{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e3202d4dd89eb21cfd5136a5.woff2')format("woff");}.ff1_c01344{font-family:ff1_c01344;line-height:0.987793;font-style:normal;font-weight:normal;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_d75c6c665d0e67703a6e59cb.woff2')format("woff");}.ff2_c01344{font-family:ff2_c01344;line-height:1.161133;font-style:normal;font-weight:normal;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_48218745c0694b62bb1580ca.woff2')format("woff");}.ff3_c01344{font-family:ff3_c01344;line-height:1.155762;font-style: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);}
.v0_c01344{vertical-align:0.000000px;}
.ls2_c01344{letter-spacing:0.000000px;}
.ls0_c01344{letter-spacing:0.005400px;}
.ls1_c01344{letter-spacing:0.012000px;}
.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;}
}
.ws0_c01344{word-spacing:0.000000px;}
._d_c01344{margin-left:-4.269600px;}
._5_c01344{margin-left:-2.239200px;}
._1_c01344{margin-left:-1.159200px;}
._8_c01344{width:1.209600px;}
._3_c01344{width:2.419200px;}
._7_c01344{width:4.125600px;}
._a_c01344{width:5.133600px;}
._4_c01344{width:12.765600px;}
._0_c01344{width:15.148800px;}
._2_c01344{width:16.322400px;}
._6_c01344{width:17.524800px;}
._13_c01344{width:21.045600px;}
._12_c01344{width:23.277600px;}
._b_c01344{width:29.944800px;}
._9_c01344{width:30.974400px;}
._c_c01344{width:33.847200px;}
._11_c01344{width:35.092800px;}
._f_c01344{width:36.223200px;}
._10_c01344{width:37.317600px;}
._e_c01344{width:39.348000px;}
.fc0_c01344{color:rgb(0,0,0);}
.fs0_c01344{font-size:54.000000px;}
.fs2_c01344{font-size:60.000000px;}
.fs1_c01344{font-size:72.000000px;}
.y0_c01344{bottom:0.000000px;}
.y3_c01344{bottom:10.500000px;}
.y2_c01344{bottom:33.000000px;}
.y9_c01344{bottom:67.335000px;}
.y7_c01344{bottom:136.335000px;}
.y6_c01344{bottom:163.335000px;}
.y5_c01344{bottom:190.335000px;}
.y4_c01344{bottom:217.335000px;}
.y1_c01344{bottom:262.335000px;}
.y8_c01344{bottom:1193.835000px;}
.h3_c01344{height:42.292969px;}
.h6_c01344{height:56.074219px;}
.h5_c01344{height:67.746094px;}
.h2_c01344{height:850.500000px;}
.h4_c01344{height:1261.500000px;}
.h0_c01344{height:1262.835000px;}
.h1_c01344{height:1263.000000px;}
.w2_c01344{width:676.934850px;}
.w3_c01344{width:892.500000px;}
.w0_c01344{width:892.935000px;}
.w1_c01344{width:893.250000px;}
.x0_c01344{left:0.000000px;}
.x2_c01344{left:15.199155px;}
.x1_c01344{left:150.000000px;}
.x3_c01344{left:280.255350px;}
.x4_c01344{left:417.217800px;}
.x5_c01344{left:802.427700px;}
@media print{
.v0_c01344{vertical-align:0.000000pt;}
.ls2_c01344{letter-spacing:0.000000pt;}
.ls0_c01344{letter-spacing:0.004800pt;}
.ls1_c01344{letter-spacing:0.010667pt;}
.ws0_c01344{word-spacing:0.000000pt;}
._d_c01344{margin-left:-3.795200pt;}
._5_c01344{margin-left:-1.990400pt;}
._1_c01344{margin-left:-1.030400pt;}
._8_c01344{width:1.075200pt;}
._3_c01344{width:2.150400pt;}
._7_c01344{width:3.667200pt;}
._a_c01344{width:4.563200pt;}
._4_c01344{width:11.347200pt;}
._0_c01344{width:13.465600pt;}
._2_c01344{width:14.508800pt;}
._6_c01344{width:15.577600pt;}
._13_c01344{width:18.707200pt;}
._12_c01344{width:20.691200pt;}
._b_c01344{width:26.617600pt;}
._9_c01344{width:27.532800pt;}
._c_c01344{width:30.086400pt;}
._11_c01344{width:31.193600pt;}
._f_c01344{width:32.198400pt;}
._10_c01344{width:33.171200pt;}
._e_c01344{width:34.976000pt;}
.fs0_c01344{font-size:48.000000pt;}
.fs2_c01344{font-size:53.333333pt;}
.fs1_c01344{font-size:64.000000pt;}
.y0_c01344{bottom:0.000000pt;}
.y3_c01344{bottom:9.333333pt;}
.y2_c01344{bottom:29.333333pt;}
.y9_c01344{bottom:59.853333pt;}
.y7_c01344{bottom:121.186667pt;}
.y6_c01344{bottom:145.186667pt;}
.y5_c01344{bottom:169.186667pt;}
.y4_c01344{bottom:193.186667pt;}
.y1_c01344{bottom:233.186667pt;}
.y8_c01344{bottom:1061.186667pt;}
.h3_c01344{height:37.593750pt;}
.h6_c01344{height:49.843750pt;}
.h5_c01344{height:60.218750pt;}
.h2_c01344{height:756.000000pt;}
.h4_c01344{height:1121.333333pt;}
.h0_c01344{height:1122.520000pt;}
.h1_c01344{height:1122.666667pt;}
.w2_c01344{width:601.719867pt;}
.w3_c01344{width:793.333333pt;}
.w0_c01344{width:793.720000pt;}
.w1_c01344{width:794.000000pt;}
.x0_c01344{left:0.000000pt;}
.x2_c01344{left:13.510360pt;}
.x1_c01344{left:133.333333pt;}
.x3_c01344{left:249.115867pt;}
.x4_c01344{left:370.860267pt;}
.x5_c01344{left:713.269067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_133ebccca208b34514eeb679.woff2')format("woff");}.ff1_c01345{font-family:ff1_c01345;line-height:0.934082;font-style:normal;font-weight:normal;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_ada54bb09f585ec7a1be6170.woff2')format("woff");}.ff2_c01345{font-family:ff2_c01345;line-height:0.976074;font-style:normal;font-weight:normal;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_2e05909801a15a86ce2a70d8.woff2')format("woff");}.ff3_c01345{font-family:ff3_c01345;line-height:0.756836;font-style:normal;font-weight:normal;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_662f80492f49820895b52a0b.woff2')format("woff");}.ff4_c01345{font-family:ff4_c01345;line-height:1.155762;font-style: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;}
.ls0_c01345{letter-spacing:0.000000px;}
.ls1_c01345{letter-spacing:0.012000px;}
.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;}
}
.ws0_c01345{word-spacing:0.000000px;}
._13_c01345{margin-left:-6.508800px;}
._b_c01345{margin-left:-4.154400px;}
._4_c01345{margin-left:-2.613600px;}
._7_c01345{margin-left:-1.296000px;}
._2_c01345{width:1.576800px;}
._9_c01345{width:2.815200px;}
._0_c01345{width:3.844800px;}
._c_c01345{width:5.522400px;}
._a_c01345{width:7.538400px;}
._d_c01345{width:9.324000px;}
._1_c01345{width:10.936800px;}
._e_c01345{width:12.225600px;}
._3_c01345{width:13.226400px;}
._6_c01345{width:14.796000px;}
._8_c01345{width:16.077600px;}
._5_c01345{width:17.380800px;}
._11_c01345{width:18.756000px;}
._10_c01345{width:20.980800px;}
._f_c01345{width:22.744800px;}
._16_c01345{width:32.882400px;}
._12_c01345{width:34.848000px;}
._15_c01345{width:36.028800px;}
._17_c01345{width:37.065600px;}
._14_c01345{width:38.851200px;}
.fc0_c01345{color:rgb(0,0,0);}
.fs1_c01345{font-size:54.000000px;}
.fs2_c01345{font-size:60.000000px;}
.fs0_c01345{font-size:72.000000px;}
.y0_c01345{bottom:0.000000px;}
.y4_c01345{bottom:12.000000px;}
.y10_c01345{bottom:67.335000px;}
.ye_c01345{bottom:170.835000px;}
.yd_c01345{bottom:197.835000px;}
.yc_c01345{bottom:224.835000px;}
.yb_c01345{bottom:251.835000px;}
.ya_c01345{bottom:278.835000px;}
.y9_c01345{bottom:305.835000px;}
.y8_c01345{bottom:332.835000px;}
.y7_c01345{bottom:359.835000px;}
.y6_c01345{bottom:386.835000px;}
.y5_c01345{bottom:413.835000px;}
.y3_c01345{bottom:458.835000px;}
.y2_c01345{bottom:1067.835000px;}
.y1_c01345{bottom:1094.835000px;}
.yf_c01345{bottom:1193.835000px;}
.h5_c01345{height:42.292969px;}
.h7_c01345{height:44.208984px;}
.h3_c01345{height:51.257812px;}
.h6_c01345{height:56.074219px;}
.h4_c01345{height:577.500000px;}
.h2_c01345{height:1261.500000px;}
.h0_c01345{height:1262.835000px;}
.h1_c01345{height:1263.000000px;}
.w3_c01345{width:676.934850px;}
.w2_c01345{width:892.500000px;}
.w0_c01345{width:892.935000px;}
.w1_c01345{width:893.250000px;}
.x0_c01345{left:0.000000px;}
.x2_c01345{left:37.001520px;}
.x1_c01345{left:65.480310px;}
@media print{
.v0_c01345{vertical-align:0.000000pt;}
.ls0_c01345{letter-spacing:0.000000pt;}
.ls1_c01345{letter-spacing:0.010667pt;}
.ws0_c01345{word-spacing:0.000000pt;}
._13_c01345{margin-left:-5.785600pt;}
._b_c01345{margin-left:-3.692800pt;}
._4_c01345{margin-left:-2.323200pt;}
._7_c01345{margin-left:-1.152000pt;}
._2_c01345{width:1.401600pt;}
._9_c01345{width:2.502400pt;}
._0_c01345{width:3.417600pt;}
._c_c01345{width:4.908800pt;}
._a_c01345{width:6.700800pt;}
._d_c01345{width:8.288000pt;}
._1_c01345{width:9.721600pt;}
._e_c01345{width:10.867200pt;}
._3_c01345{width:11.756800pt;}
._6_c01345{width:13.152000pt;}
._8_c01345{width:14.291200pt;}
._5_c01345{width:15.449600pt;}
._11_c01345{width:16.672000pt;}
._10_c01345{width:18.649600pt;}
._f_c01345{width:20.217600pt;}
._16_c01345{width:29.228800pt;}
._12_c01345{width:30.976000pt;}
._15_c01345{width:32.025600pt;}
._17_c01345{width:32.947200pt;}
._14_c01345{width:34.534400pt;}
.fs1_c01345{font-size:48.000000pt;}
.fs2_c01345{font-size:53.333333pt;}
.fs0_c01345{font-size:64.000000pt;}
.y0_c01345{bottom:0.000000pt;}
.y4_c01345{bottom:10.666667pt;}
.y10_c01345{bottom:59.853333pt;}
.ye_c01345{bottom:151.853333pt;}
.yd_c01345{bottom:175.853333pt;}
.yc_c01345{bottom:199.853333pt;}
.yb_c01345{bottom:223.853333pt;}
.ya_c01345{bottom:247.853333pt;}
.y9_c01345{bottom:271.853333pt;}
.y8_c01345{bottom:295.853333pt;}
.y7_c01345{bottom:319.853333pt;}
.y6_c01345{bottom:343.853333pt;}
.y5_c01345{bottom:367.853333pt;}
.y3_c01345{bottom:407.853333pt;}
.y2_c01345{bottom:949.186667pt;}
.y1_c01345{bottom:973.186667pt;}
.yf_c01345{bottom:1061.186667pt;}
.h5_c01345{height:37.593750pt;}
.h7_c01345{height:39.296875pt;}
.h3_c01345{height:45.562500pt;}
.h6_c01345{height:49.843750pt;}
.h4_c01345{height:513.333333pt;}
.h2_c01345{height:1121.333333pt;}
.h0_c01345{height:1122.520000pt;}
.h1_c01345{height:1122.666667pt;}
.w3_c01345{width:601.719867pt;}
.w2_c01345{width:793.333333pt;}
.w0_c01345{width:793.720000pt;}
.w1_c01345{width:794.000000pt;}
.x0_c01345{left:0.000000pt;}
.x2_c01345{left:32.890240pt;}
.x1_c01345{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7b93f6e212074d6db685e6a7.woff2')format("woff");}.ff1_c01346{font-family:ff1_c01346;line-height:1.163086;font-style:normal;font-weight:normal;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_830b51621775cd0f8ffa3d1e.woff2')format("woff");}.ff2_c01346{font-family:ff2_c01346;line-height:0.975586;font-style:normal;font-weight:normal;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_babe68ac65fe8e9f76c0e77f.woff2')format("woff");}.ff3_c01346{font-family:ff3_c01346;line-height:1.155762;font-style: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);}
.v0_c01346{vertical-align:0.000000px;}
.ls1_c01346{letter-spacing:0.000000px;}
.ls0_c01346{letter-spacing:0.012000px;}
.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;}
}
.ws0_c01346{word-spacing:0.000000px;}
._d_c01346{margin-left:-6.739200px;}
._7_c01346{margin-left:-4.082400px;}
._0_c01346{margin-left:-2.275200px;}
._a_c01346{margin-left:-1.044000px;}
._6_c01346{width:1.274400px;}
._4_c01346{width:2.325600px;}
._5_c01346{width:3.592800px;}
._3_c01346{width:4.622400px;}
._12_c01346{width:5.803200px;}
._2_c01346{width:6.912000px;}
._c_c01346{width:8.085600px;}
._1_c01346{width:9.158400px;}
._8_c01346{width:10.267200px;}
._b_c01346{width:12.124800px;}
._9_c01346{width:13.356000px;}
._14_c01346{width:15.696000px;}
._13_c01346{width:18.028800px;}
._10_c01346{width:22.953600px;}
._e_c01346{width:24.004800px;}
._11_c01346{width:25.279200px;}
._f_c01346{width:27.007200px;}
.fc0_c01346{color:rgb(0,0,0);}
.fs1_c01346{font-size:54.000000px;}
.fs2_c01346{font-size:60.000000px;}
.fs0_c01346{font-size:72.000000px;}
.y0_c01346{bottom:0.000000px;}
.y4_c01346{bottom:12.000000px;}
.y12_c01346{bottom:67.335000px;}
.y10_c01346{bottom:148.335000px;}
.yf_c01346{bottom:175.335000px;}
.ye_c01346{bottom:223.335000px;}
.yd_c01346{bottom:250.335000px;}
.yc_c01346{bottom:277.335000px;}
.yb_c01346{bottom:304.335000px;}
.ya_c01346{bottom:352.335000px;}
.y9_c01346{bottom:379.335000px;}
.y8_c01346{bottom:406.335000px;}
.y7_c01346{bottom:433.335000px;}
.y6_c01346{bottom:460.335000px;}
.y5_c01346{bottom:487.335000px;}
.y3_c01346{bottom:511.335000px;}
.y2_c01346{bottom:1067.835000px;}
.y1_c01346{bottom:1094.835000px;}
.y11_c01346{bottom:1193.835000px;}
.h5_c01346{height:41.633789px;}
.h6_c01346{height:56.074219px;}
.h3_c01346{height:67.746094px;}
.h4_c01346{height:525.000000px;}
.h2_c01346{height:1261.500000px;}
.h0_c01346{height:1262.835000px;}
.h1_c01346{height:1263.000000px;}
.w3_c01346{width:676.935000px;}
.w2_c01346{width:892.500000px;}
.w0_c01346{width:892.935000px;}
.w1_c01346{width:893.250000px;}
.x0_c01346{left:0.000000px;}
.x1_c01346{left:150.519750px;}
.x2_c01346{left:247.807200px;}
.x3_c01346{left:417.217800px;}
.x4_c01346{left:802.427700px;}
@media print{
.v0_c01346{vertical-align:0.000000pt;}
.ls1_c01346{letter-spacing:0.000000pt;}
.ls0_c01346{letter-spacing:0.010667pt;}
.ws0_c01346{word-spacing:0.000000pt;}
._d_c01346{margin-left:-5.990400pt;}
._7_c01346{margin-left:-3.628800pt;}
._0_c01346{margin-left:-2.022400pt;}
._a_c01346{margin-left:-0.928000pt;}
._6_c01346{width:1.132800pt;}
._4_c01346{width:2.067200pt;}
._5_c01346{width:3.193600pt;}
._3_c01346{width:4.108800pt;}
._12_c01346{width:5.158400pt;}
._2_c01346{width:6.144000pt;}
._c_c01346{width:7.187200pt;}
._1_c01346{width:8.140800pt;}
._8_c01346{width:9.126400pt;}
._b_c01346{width:10.777600pt;}
._9_c01346{width:11.872000pt;}
._14_c01346{width:13.952000pt;}
._13_c01346{width:16.025600pt;}
._10_c01346{width:20.403200pt;}
._e_c01346{width:21.337600pt;}
._11_c01346{width:22.470400pt;}
._f_c01346{width:24.006400pt;}
.fs1_c01346{font-size:48.000000pt;}
.fs2_c01346{font-size:53.333333pt;}
.fs0_c01346{font-size:64.000000pt;}
.y0_c01346{bottom:0.000000pt;}
.y4_c01346{bottom:10.666667pt;}
.y12_c01346{bottom:59.853333pt;}
.y10_c01346{bottom:131.853333pt;}
.yf_c01346{bottom:155.853333pt;}
.ye_c01346{bottom:198.520000pt;}
.yd_c01346{bottom:222.520000pt;}
.yc_c01346{bottom:246.520000pt;}
.yb_c01346{bottom:270.520000pt;}
.ya_c01346{bottom:313.186667pt;}
.y9_c01346{bottom:337.186667pt;}
.y8_c01346{bottom:361.186667pt;}
.y7_c01346{bottom:385.186667pt;}
.y6_c01346{bottom:409.186667pt;}
.y5_c01346{bottom:433.186667pt;}
.y3_c01346{bottom:454.520000pt;}
.y2_c01346{bottom:949.186667pt;}
.y1_c01346{bottom:973.186667pt;}
.y11_c01346{bottom:1061.186667pt;}
.h5_c01346{height:37.007812pt;}
.h6_c01346{height:49.843750pt;}
.h3_c01346{height:60.218750pt;}
.h4_c01346{height:466.666667pt;}
.h2_c01346{height:1121.333333pt;}
.h0_c01346{height:1122.520000pt;}
.h1_c01346{height:1122.666667pt;}
.w3_c01346{width:601.720000pt;}
.w2_c01346{width:793.333333pt;}
.w0_c01346{width:793.720000pt;}
.w1_c01346{width:794.000000pt;}
.x0_c01346{left:0.000000pt;}
.x1_c01346{left:133.795333pt;}
.x2_c01346{left:220.273067pt;}
.x3_c01346{left:370.860267pt;}
.x4_c01346{left:713.269067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8bd25b91e40d6152d47f9d98.woff2')format("woff");}.ff1_c01347{font-family:ff1_c01347;line-height:1.163086;font-style:normal;font-weight:normal;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_f83d9dd67e03190d6e0d2883.woff2')format("woff");}.ff2_c01347{font-family:ff2_c01347;line-height:0.886719;font-style:normal;font-weight:normal;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_4423a3b6b6920a00ca82c6fa.woff2')format("woff");}.ff3_c01347{font-family:ff3_c01347;line-height:0.939941;font-style:normal;font-weight:normal;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_693ab5a5dfca8ee292ff6490.woff2')format("woff");}.ff4_c01347{font-family:ff4_c01347;line-height:0.756836;font-style:normal;font-weight:normal;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_511faf9fb73d6bce0c2a3f29.woff2')format("woff");}.ff5_c01347{font-family:ff5_c01347;line-height:1.155762;font-style: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);}
.v0_c01347{vertical-align:0.000000px;}
.ls1_c01347{letter-spacing:-0.007200px;}
.ls0_c01347{letter-spacing:0.000000px;}
.ls2_c01347{letter-spacing:0.012000px;}
.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;}
}
.ws0_c01347{word-spacing:0.000000px;}
._15_c01347{margin-left:-9.630360px;}
._f_c01347{margin-left:-7.185600px;}
._9_c01347{margin-left:-4.212000px;}
._3_c01347{margin-left:-2.987520px;}
._1_c01347{margin-left:-1.976040px;}
._b_c01347{width:1.000800px;}
._5_c01347{width:2.008800px;}
._0_c01347{width:3.146400px;}
._2_c01347{width:4.824000px;}
._19_c01347{width:5.859120px;}
._4_c01347{width:7.012800px;}
._8_c01347{width:8.272800px;}
._7_c01347{width:9.608040px;}
._6_c01347{width:10.641120px;}
._a_c01347{width:11.959200px;}
._d_c01347{width:13.312800px;}
._e_c01347{width:15.443040px;}
._c_c01347{width:17.560800px;}
._17_c01347{width:22.330440px;}
._16_c01347{width:24.145560px;}
._18_c01347{width:25.408080px;}
._14_c01347{width:27.532320px;}
._11_c01347{width:28.857600px;}
._10_c01347{width:30.852000px;}
._12_c01347{width:32.835240px;}
._13_c01347{width:34.099200px;}
.fc0_c01347{color:rgb(0,0,0);}
.fs1_c01347{font-size:54.000000px;}
.fs2_c01347{font-size:60.000000px;}
.fs0_c01347{font-size:72.000000px;}
.y0_c01347{bottom:0.000000px;}
.y5_c01347{bottom:12.000000px;}
.y15_c01347{bottom:67.335000px;}
.y13_c01347{bottom:133.335000px;}
.y12_c01347{bottom:160.335000px;}
.y11_c01347{bottom:208.335000px;}
.y10_c01347{bottom:235.335000px;}
.yf_c01347{bottom:262.335000px;}
.ye_c01347{bottom:289.335000px;}
.yd_c01347{bottom:316.335000px;}
.yc_c01347{bottom:343.335000px;}
.yb_c01347{bottom:391.335000px;}
.ya_c01347{bottom:418.335000px;}
.y9_c01347{bottom:445.335000px;}
.y8_c01347{bottom:472.335000px;}
.y7_c01347{bottom:499.335000px;}
.y6_c01347{bottom:526.335000px;}
.y4_c01347{bottom:550.335000px;}
.y3_c01347{bottom:1040.835000px;}
.y2_c01347{bottom:1067.835000px;}
.y1_c01347{bottom:1094.835000px;}
.y14_c01347{bottom:1193.835000px;}
.h5_c01347{height:42.292969px;}
.h7_c01347{height:44.208984px;}
.h6_c01347{height:56.074219px;}
.h3_c01347{height:67.746094px;}
.h4_c01347{height:459.000000px;}
.h2_c01347{height:1261.500000px;}
.h0_c01347{height:1262.835000px;}
.h1_c01347{height:1263.000000px;}
.w3_c01347{width:676.934850px;}
.w2_c01347{width:892.500000px;}
.w0_c01347{width:892.935000px;}
.w1_c01347{width:893.250000px;}
.x0_c01347{left:0.000000px;}
.x2_c01347{left:62.363460px;}
.x1_c01347{left:65.480310px;}
@media print{
.v0_c01347{vertical-align:0.000000pt;}
.ls1_c01347{letter-spacing:-0.006400pt;}
.ls0_c01347{letter-spacing:0.000000pt;}
.ls2_c01347{letter-spacing:0.010667pt;}
.ws0_c01347{word-spacing:0.000000pt;}
._15_c01347{margin-left:-8.560320pt;}
._f_c01347{margin-left:-6.387200pt;}
._9_c01347{margin-left:-3.744000pt;}
._3_c01347{margin-left:-2.655573pt;}
._1_c01347{margin-left:-1.756480pt;}
._b_c01347{width:0.889600pt;}
._5_c01347{width:1.785600pt;}
._0_c01347{width:2.796800pt;}
._2_c01347{width:4.288000pt;}
._19_c01347{width:5.208107pt;}
._4_c01347{width:6.233600pt;}
._8_c01347{width:7.353600pt;}
._7_c01347{width:8.540480pt;}
._6_c01347{width:9.458773pt;}
._a_c01347{width:10.630400pt;}
._d_c01347{width:11.833600pt;}
._e_c01347{width:13.727147pt;}
._c_c01347{width:15.609600pt;}
._17_c01347{width:19.849280pt;}
._16_c01347{width:21.462720pt;}
._18_c01347{width:22.584960pt;}
._14_c01347{width:24.473173pt;}
._11_c01347{width:25.651200pt;}
._10_c01347{width:27.424000pt;}
._12_c01347{width:29.186880pt;}
._13_c01347{width:30.310400pt;}
.fs1_c01347{font-size:48.000000pt;}
.fs2_c01347{font-size:53.333333pt;}
.fs0_c01347{font-size:64.000000pt;}
.y0_c01347{bottom:0.000000pt;}
.y5_c01347{bottom:10.666667pt;}
.y15_c01347{bottom:59.853333pt;}
.y13_c01347{bottom:118.520000pt;}
.y12_c01347{bottom:142.520000pt;}
.y11_c01347{bottom:185.186667pt;}
.y10_c01347{bottom:209.186667pt;}
.yf_c01347{bottom:233.186667pt;}
.ye_c01347{bottom:257.186667pt;}
.yd_c01347{bottom:281.186667pt;}
.yc_c01347{bottom:305.186667pt;}
.yb_c01347{bottom:347.853333pt;}
.ya_c01347{bottom:371.853333pt;}
.y9_c01347{bottom:395.853333pt;}
.y8_c01347{bottom:419.853333pt;}
.y7_c01347{bottom:443.853333pt;}
.y6_c01347{bottom:467.853333pt;}
.y4_c01347{bottom:489.186667pt;}
.y3_c01347{bottom:925.186667pt;}
.y2_c01347{bottom:949.186667pt;}
.y1_c01347{bottom:973.186667pt;}
.y14_c01347{bottom:1061.186667pt;}
.h5_c01347{height:37.593750pt;}
.h7_c01347{height:39.296875pt;}
.h6_c01347{height:49.843750pt;}
.h3_c01347{height:60.218750pt;}
.h4_c01347{height:408.000000pt;}
.h2_c01347{height:1121.333333pt;}
.h0_c01347{height:1122.520000pt;}
.h1_c01347{height:1122.666667pt;}
.w3_c01347{width:601.719867pt;}
.w2_c01347{width:793.333333pt;}
.w0_c01347{width:793.720000pt;}
.w1_c01347{width:794.000000pt;}
.x0_c01347{left:0.000000pt;}
.x2_c01347{left:55.434187pt;}
.x1_c01347{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b184cc579ccd218063a15454.woff2')format("woff");}.ff1_c01348{font-family:ff1_c01348;line-height:1.163086;font-style:normal;font-weight:normal;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_2b27e7e08516dbf8deaa126d.woff2')format("woff");}.ff2_c01348{font-family:ff2_c01348;line-height:0.975586;font-style:normal;font-weight:normal;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_9c9374fa332e0dfbf1ecdb09.woff2')format("woff");}.ff3_c01348{font-family:ff3_c01348;line-height:1.155762;font-style: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;}
.ls1_c01348{letter-spacing:0.000000px;}
.ls0_c01348{letter-spacing:0.012000px;}
.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;}
}
.ws0_c01348{word-spacing:-19.800000px;}
.ws1_c01348{word-spacing:0.000000px;}
._5_c01348{margin-left:-4.212000px;}
._1_c01348{margin-left:-3.168000px;}
._3_c01348{margin-left:-1.814400px;}
._4_c01348{width:1.346400px;}
._2_c01348{width:2.376000px;}
._0_c01348{width:4.176000px;}
._6_c01348{width:5.220000px;}
._a_c01348{width:7.257600px;}
._8_c01348{width:9.086400px;}
._7_c01348{width:10.094400px;}
._9_c01348{width:11.728800px;}
._b_c01348{width:12.859200px;}
._c_c01348{width:13.960800px;}
._10_c01348{width:24.076800px;}
._d_c01348{width:26.827200px;}
._f_c01348{width:28.130400px;}
._e_c01348{width:30.009600px;}
._11_c01348{width:31.348800px;}
.fc0_c01348{color:rgb(0,0,0);}
.fs1_c01348{font-size:54.000000px;}
.fs2_c01348{font-size:60.000000px;}
.fs0_c01348{font-size:72.000000px;}
.y0_c01348{bottom:0.000000px;}
.y6_c01348{bottom:10.500000px;}
.y5_c01348{bottom:33.000000px;}
.y10_c01348{bottom:67.335000px;}
.ye_c01348{bottom:154.335000px;}
.yd_c01348{bottom:181.335000px;}
.yc_c01348{bottom:208.335000px;}
.yb_c01348{bottom:235.335000px;}
.ya_c01348{bottom:283.335000px;}
.y9_c01348{bottom:310.335000px;}
.y8_c01348{bottom:337.335000px;}
.y7_c01348{bottom:364.335000px;}
.y4_c01348{bottom:409.335000px;}
.y3_c01348{bottom:1040.835000px;}
.y2_c01348{bottom:1067.835000px;}
.y1_c01348{bottom:1094.835000px;}
.yf_c01348{bottom:1193.835000px;}
.h5_c01348{height:41.633789px;}
.h6_c01348{height:56.074219px;}
.h3_c01348{height:67.746094px;}
.h4_c01348{height:600.000000px;}
.h2_c01348{height:1261.500000px;}
.h0_c01348{height:1262.835000px;}
.h1_c01348{height:1263.000000px;}
.w3_c01348{width:676.935000px;}
.w2_c01348{width:892.500000px;}
.w0_c01348{width:892.935000px;}
.w1_c01348{width:893.250000px;}
.x0_c01348{left:0.000000px;}
.x2_c01348{left:12.140579px;}
.x1_c01348{left:150.519750px;}
.x3_c01348{left:307.914450px;}
.x4_c01348{left:417.217800px;}
.x5_c01348{left:802.427700px;}
@media print{
.v0_c01348{vertical-align:0.000000pt;}
.ls1_c01348{letter-spacing:0.000000pt;}
.ls0_c01348{letter-spacing:0.010667pt;}
.ws0_c01348{word-spacing:-17.600000pt;}
.ws1_c01348{word-spacing:0.000000pt;}
._5_c01348{margin-left:-3.744000pt;}
._1_c01348{margin-left:-2.816000pt;}
._3_c01348{margin-left:-1.612800pt;}
._4_c01348{width:1.196800pt;}
._2_c01348{width:2.112000pt;}
._0_c01348{width:3.712000pt;}
._6_c01348{width:4.640000pt;}
._a_c01348{width:6.451200pt;}
._8_c01348{width:8.076800pt;}
._7_c01348{width:8.972800pt;}
._9_c01348{width:10.425600pt;}
._b_c01348{width:11.430400pt;}
._c_c01348{width:12.409600pt;}
._10_c01348{width:21.401600pt;}
._d_c01348{width:23.846400pt;}
._f_c01348{width:25.004800pt;}
._e_c01348{width:26.675200pt;}
._11_c01348{width:27.865600pt;}
.fs1_c01348{font-size:48.000000pt;}
.fs2_c01348{font-size:53.333333pt;}
.fs0_c01348{font-size:64.000000pt;}
.y0_c01348{bottom:0.000000pt;}
.y6_c01348{bottom:9.333333pt;}
.y5_c01348{bottom:29.333333pt;}
.y10_c01348{bottom:59.853333pt;}
.ye_c01348{bottom:137.186667pt;}
.yd_c01348{bottom:161.186667pt;}
.yc_c01348{bottom:185.186667pt;}
.yb_c01348{bottom:209.186667pt;}
.ya_c01348{bottom:251.853333pt;}
.y9_c01348{bottom:275.853333pt;}
.y8_c01348{bottom:299.853333pt;}
.y7_c01348{bottom:323.853333pt;}
.y4_c01348{bottom:363.853333pt;}
.y3_c01348{bottom:925.186667pt;}
.y2_c01348{bottom:949.186667pt;}
.y1_c01348{bottom:973.186667pt;}
.yf_c01348{bottom:1061.186667pt;}
.h5_c01348{height:37.007812pt;}
.h6_c01348{height:49.843750pt;}
.h3_c01348{height:60.218750pt;}
.h4_c01348{height:533.333333pt;}
.h2_c01348{height:1121.333333pt;}
.h0_c01348{height:1122.520000pt;}
.h1_c01348{height:1122.666667pt;}
.w3_c01348{width:601.720000pt;}
.w2_c01348{width:793.333333pt;}
.w0_c01348{width:793.720000pt;}
.w1_c01348{width:794.000000pt;}
.x0_c01348{left:0.000000pt;}
.x2_c01348{left:10.791625pt;}
.x1_c01348{left:133.795333pt;}
.x3_c01348{left:273.701733pt;}
.x4_c01348{left:370.860267pt;}
.x5_c01348{left:713.269067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a334af792d0d4111a270005d.woff2')format("woff");}.ff1_c01349{font-family:ff1_c01349;line-height:0.987793;font-style:normal;font-weight:normal;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_d8c916eca63624a5c10e9ea3.woff2')format("woff");}.ff2_c01349{font-family:ff2_c01349;line-height:0.933105;font-style:normal;font-weight:normal;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_a344d5bda6ea740b8bc12d35.woff2')format("woff");}.ff3_c01349{font-family:ff3_c01349;line-height:0.756836;font-style:normal;font-weight:normal;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_6cfee5d954063a8a01fc87a4.woff2')format("woff");}.ff4_c01349{font-family:ff4_c01349;line-height:1.155762;font-style: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);}
.v0_c01349{vertical-align:0.000000px;}
.ls1_c01349{letter-spacing:0.000000px;}
.ls2_c01349{letter-spacing:0.012000px;}
.ls0_c01349{letter-spacing:0.032400px;}
.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;}
}
.ws0_c01349{word-spacing:0.000000px;}
._8_c01349{margin-left:-7.063200px;}
._9_c01349{margin-left:-3.216000px;}
._1_c01349{margin-left:-1.800000px;}
._3_c01349{width:2.296800px;}
._7_c01349{width:3.578400px;}
._6_c01349{width:5.004000px;}
._5_c01349{width:6.818400px;}
._4_c01349{width:21.002400px;}
._0_c01349{width:22.420800px;}
._2_c01349{width:24.228000px;}
.fc0_c01349{color:rgb(0,0,0);}
.fs0_c01349{font-size:54.000000px;}
.fs2_c01349{font-size:60.000000px;}
.fs1_c01349{font-size:72.000000px;}
.y0_c01349{bottom:0.000000px;}
.y3_c01349{bottom:10.500000px;}
.y8_c01349{bottom:12.000000px;}
.y2_c01349{bottom:33.000000px;}
.ya_c01349{bottom:67.335000px;}
.y7_c01349{bottom:164.835000px;}
.y6_c01349{bottom:538.335000px;}
.y5_c01349{bottom:565.335000px;}
.y4_c01349{bottom:592.335000px;}
.y1_c01349{bottom:637.335000px;}
.y9_c01349{bottom:1193.835000px;}
.h3_c01349{height:42.292969px;}
.h8_c01349{height:44.208984px;}
.h5_c01349{height:51.187500px;}
.h7_c01349{height:56.074219px;}
.h6_c01349{height:342.000000px;}
.h2_c01349{height:475.500000px;}
.h4_c01349{height:1261.500000px;}
.h0_c01349{height:1262.835000px;}
.h1_c01349{height:1263.000000px;}
.w4_c01349{width:676.934850px;}
.w2_c01349{width:676.935000px;}
.w3_c01349{width:892.500000px;}
.w0_c01349{width:892.935000px;}
.w1_c01349{width:893.250000px;}
.x0_c01349{left:0.000000px;}
.x2_c01349{left:34.173660px;}
.x1_c01349{left:66.000000px;}
.x4_c01349{left:157.242450px;}
.x3_c01349{left:254.695650px;}
@media print{
.v0_c01349{vertical-align:0.000000pt;}
.ls1_c01349{letter-spacing:0.000000pt;}
.ls2_c01349{letter-spacing:0.010667pt;}
.ls0_c01349{letter-spacing:0.028800pt;}
.ws0_c01349{word-spacing:0.000000pt;}
._8_c01349{margin-left:-6.278400pt;}
._9_c01349{margin-left:-2.858667pt;}
._1_c01349{margin-left:-1.600000pt;}
._3_c01349{width:2.041600pt;}
._7_c01349{width:3.180800pt;}
._6_c01349{width:4.448000pt;}
._5_c01349{width:6.060800pt;}
._4_c01349{width:18.668800pt;}
._0_c01349{width:19.929600pt;}
._2_c01349{width:21.536000pt;}
.fs0_c01349{font-size:48.000000pt;}
.fs2_c01349{font-size:53.333333pt;}
.fs1_c01349{font-size:64.000000pt;}
.y0_c01349{bottom:0.000000pt;}
.y3_c01349{bottom:9.333333pt;}
.y8_c01349{bottom:10.666667pt;}
.y2_c01349{bottom:29.333333pt;}
.ya_c01349{bottom:59.853333pt;}
.y7_c01349{bottom:146.520000pt;}
.y6_c01349{bottom:478.520000pt;}
.y5_c01349{bottom:502.520000pt;}
.y4_c01349{bottom:526.520000pt;}
.y1_c01349{bottom:566.520000pt;}
.y9_c01349{bottom:1061.186667pt;}
.h3_c01349{height:37.593750pt;}
.h8_c01349{height:39.296875pt;}
.h5_c01349{height:45.500000pt;}
.h7_c01349{height:49.843750pt;}
.h6_c01349{height:304.000000pt;}
.h2_c01349{height:422.666667pt;}
.h4_c01349{height:1121.333333pt;}
.h0_c01349{height:1122.520000pt;}
.h1_c01349{height:1122.666667pt;}
.w4_c01349{width:601.719867pt;}
.w2_c01349{width:601.720000pt;}
.w3_c01349{width:793.333333pt;}
.w0_c01349{width:793.720000pt;}
.w1_c01349{width:794.000000pt;}
.x0_c01349{left:0.000000pt;}
.x2_c01349{left:30.376587pt;}
.x1_c01349{left:58.666667pt;}
.x4_c01349{left:139.771067pt;}
.x3_c01349{left:226.396133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_407ff3cb671994502420981d.woff2')format("woff");}.ff1_c01350{font-family:ff1_c01350;line-height:1.163086;font-style:normal;font-weight:normal;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_d65e853a429a5ac24d2611ef.woff2')format("woff");}.ff2_c01350{font-family:ff2_c01350;line-height:1.155762;font-style: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;}
.ls1_c01350{letter-spacing:0.000000px;}
.ls0_c01350{letter-spacing:0.012000px;}
.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:0.000000px;}
._0_c01350{margin-left:-3.945600px;}
._9_c01350{margin-left:-2.750400px;}
._6_c01350{margin-left:-1.512000px;}
._1_c01350{width:1.908000px;}
._4_c01350{width:3.441600px;}
._8_c01350{width:5.356800px;}
._5_c01350{width:21.297600px;}
._2_c01350{width:22.716000px;}
._3_c01350{width:24.544800px;}
._7_c01350{width:26.215200px;}
.fc0_c01350{color:rgb(0,0,0);}
.fs1_c01350{font-size:60.000000px;}
.fs0_c01350{font-size:72.000000px;}
.y0_c01350{bottom:0.000000px;}
.y8_c01350{bottom:67.335000px;}
.y6_c01350{bottom:938.835000px;}
.y5_c01350{bottom:965.835000px;}
.y4_c01350{bottom:992.835000px;}
.y3_c01350{bottom:1040.835000px;}
.y2_c01350{bottom:1067.835000px;}
.y1_c01350{bottom:1094.835000px;}
.y7_c01350{bottom:1193.835000px;}
.h4_c01350{height:56.074219px;}
.h3_c01350{height:67.746094px;}
.h2_c01350{height:1261.500000px;}
.h0_c01350{height:1262.835000px;}
.h1_c01350{height:1263.000000px;}
.w2_c01350{width:892.500000px;}
.w0_c01350{width:892.935000px;}
.w1_c01350{width:893.250000px;}
.x0_c01350{left:0.000000px;}
.x1_c01350{left:150.519750px;}
.x2_c01350{left:417.217800px;}
.x3_c01350{left:802.427700px;}
@media print{
.v0_c01350{vertical-align:0.000000pt;}
.ls1_c01350{letter-spacing:0.000000pt;}
.ls0_c01350{letter-spacing:0.010667pt;}
.ws0_c01350{word-spacing:0.000000pt;}
._0_c01350{margin-left:-3.507200pt;}
._9_c01350{margin-left:-2.444800pt;}
._6_c01350{margin-left:-1.344000pt;}
._1_c01350{width:1.696000pt;}
._4_c01350{width:3.059200pt;}
._8_c01350{width:4.761600pt;}
._5_c01350{width:18.931200pt;}
._2_c01350{width:20.192000pt;}
._3_c01350{width:21.817600pt;}
._7_c01350{width:23.302400pt;}
.fs1_c01350{font-size:53.333333pt;}
.fs0_c01350{font-size:64.000000pt;}
.y0_c01350{bottom:0.000000pt;}
.y8_c01350{bottom:59.853333pt;}
.y6_c01350{bottom:834.520000pt;}
.y5_c01350{bottom:858.520000pt;}
.y4_c01350{bottom:882.520000pt;}
.y3_c01350{bottom:925.186667pt;}
.y2_c01350{bottom:949.186667pt;}
.y1_c01350{bottom:973.186667pt;}
.y7_c01350{bottom:1061.186667pt;}
.h4_c01350{height:49.843750pt;}
.h3_c01350{height:60.218750pt;}
.h2_c01350{height:1121.333333pt;}
.h0_c01350{height:1122.520000pt;}
.h1_c01350{height:1122.666667pt;}
.w2_c01350{width:793.333333pt;}
.w0_c01350{width:793.720000pt;}
.w1_c01350{width:794.000000pt;}
.x0_c01350{left:0.000000pt;}
.x1_c01350{left:133.795333pt;}
.x2_c01350{left:370.860267pt;}
.x3_c01350{left:713.269067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
.sc__c01351{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01351{-webkit-text-stroke:0px transparent;}
}
.y0_c01351{bottom:0.000000px;}
.h0_c01351{height:1262.835000px;}
.h1_c01351{height:1263.000000px;}
.w0_c01351{width:892.935000px;}
.w1_c01351{width:893.250000px;}
.x0_c01351{left:0.000000px;}
@media print{
.y0_c01351{bottom:0.000000pt;}
.h0_c01351{height:1122.520000pt;}
.h1_c01351{height:1122.666667pt;}
.w0_c01351{width:793.720000pt;}
.w1_c01351{width:794.000000pt;}
.x0_c01351{left:0.000000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_2289e11261a63c130cfb7beb.woff2')format("woff");}.ff1_c01352{font-family:ff1_c01352;line-height:0.717285;font-style:normal;font-weight:normal;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_22d50e79cfd247318e4962cc.woff2')format("woff");}.ff2_c01352{font-family:ff2_c01352;line-height:0.882324;font-style: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);}
.v0_c01352{vertical-align:0.000000px;}
.ls0_c01352{letter-spacing:-0.016800px;}
.ls1_c01352{letter-spacing:0.000000px;}
.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;}
}
.ws0_c01352{word-spacing:-36.000000px;}
.ws1_c01352{word-spacing:0.000000px;}
.fc2_c01352{color:transparent;}
.fc1_c01352{color:rgb(255,255,255);}
.fc0_c01352{color:rgb(6,6,6);}
.fs0_c01352{font-size:84.000000px;}
.fs1_c01352{font-size:144.000000px;}
.y0_c01352{bottom:0.000000px;}
.y4_c01352{bottom:67.335000px;}
.y3_c01352{bottom:110.835000px;}
.y2_c01352{bottom:188.835000px;}
.y1_c01352{bottom:919.500000px;}
.h3_c01352{height:124.593750px;}
.h2_c01352{height:261.000000px;}
.h0_c01352{height:1262.835000px;}
.h1_c01352{height:1263.000000px;}
.w2_c01352{width:582.000000px;}
.w0_c01352{width:892.935000px;}
.w1_c01352{width:893.250000px;}
.x0_c01352{left:0.000000px;}
.x2_c01352{left:16.500000px;}
.x1_c01352{left:280.500000px;}
@media print{
.v0_c01352{vertical-align:0.000000pt;}
.ls0_c01352{letter-spacing:-0.014933pt;}
.ls1_c01352{letter-spacing:0.000000pt;}
.ws0_c01352{word-spacing:-32.000000pt;}
.ws1_c01352{word-spacing:0.000000pt;}
.fs0_c01352{font-size:74.666667pt;}
.fs1_c01352{font-size:128.000000pt;}
.y0_c01352{bottom:0.000000pt;}
.y4_c01352{bottom:59.853333pt;}
.y3_c01352{bottom:98.520000pt;}
.y2_c01352{bottom:167.853333pt;}
.y1_c01352{bottom:817.333333pt;}
.h3_c01352{height:110.750000pt;}
.h2_c01352{height:232.000000pt;}
.h0_c01352{height:1122.520000pt;}
.h1_c01352{height:1122.666667pt;}
.w2_c01352{width:517.333333pt;}
.w0_c01352{width:793.720000pt;}
.w1_c01352{width:794.000000pt;}
.x0_c01352{left:0.000000pt;}
.x2_c01352{left:14.666667pt;}
.x1_c01352{left:249.333333pt;}
}





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





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4a361d84a1ad9ede8334a0f1.woff2')format("woff");}.ff1_c01354{font-family:ff1_c01354;line-height:1.163086;font-style:normal;font-weight:normal;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_a7903a777ef041225b14f0dd.woff2')format("woff");}.ff2_c01354{font-family:ff2_c01354;line-height:0.892578;font-style:normal;font-weight:normal;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_3d95d867c7892a8fd8d75348.woff2')format("woff");}.ff3_c01354{font-family:ff3_c01354;line-height:0.958008;font-style: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;}
.ls1_c01354{letter-spacing:-0.007200px;}
.ls2_c01354{letter-spacing:0.000000px;}
.ls0_c01354{letter-spacing:0.012000px;}
.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;}
}
.ws0_c01354{word-spacing:-19.800000px;}
.ws1_c01354{word-spacing:0.000000px;}
._1d_c01354{margin-left:-8.030400px;}
._4_c01354{margin-left:-4.665600px;}
._7_c01354{margin-left:-3.247200px;}
._0_c01354{margin-left:-1.811400px;}
._3_c01354{width:1.163400px;}
._6_c01354{width:2.364600px;}
._2_c01354{width:3.564000px;}
._1_c01354{width:5.368200px;}
._9_c01354{width:6.400800px;}
._5_c01354{width:7.696800px;}
._b_c01354{width:9.190200px;}
._8_c01354{width:10.503600px;}
._a_c01354{width:12.043800px;}
._c_c01354{width:13.636800px;}
._e_c01354{width:15.030600px;}
._14_c01354{width:16.076400px;}
._d_c01354{width:17.532600px;}
._15_c01354{width:18.648000px;}
._1b_c01354{width:21.964200px;}
._1c_c01354{width:23.810400px;}
._18_c01354{width:25.862400px;}
._1a_c01354{width:27.069000px;}
._17_c01354{width:28.255800px;}
._16_c01354{width:29.383200px;}
._19_c01354{width:31.230600px;}
._13_c01354{width:32.266200px;}
._12_c01354{width:33.422400px;}
._10_c01354{width:35.190600px;}
._f_c01354{width:36.655200px;}
._11_c01354{width:38.102400px;}
.fc0_c01354{color:rgb(0,0,0);}
.fs2_c01354{font-size:60.000000px;}
.fs0_c01354{font-size:72.000000px;}
.fs1_c01354{font-size:108.000000px;}
.y0_c01354{bottom:0.000000px;}
.y1d_c01354{bottom:67.335000px;}
.y1b_c01354{bottom:154.335000px;}
.y1a_c01354{bottom:181.335000px;}
.y19_c01354{bottom:208.335000px;}
.y18_c01354{bottom:235.335000px;}
.y17_c01354{bottom:262.335000px;}
.y16_c01354{bottom:289.335000px;}
.y15_c01354{bottom:316.335000px;}
.y14_c01354{bottom:343.335000px;}
.y13_c01354{bottom:370.335000px;}
.y12_c01354{bottom:397.335000px;}
.y11_c01354{bottom:424.335000px;}
.y10_c01354{bottom:451.335000px;}
.yf_c01354{bottom:478.335000px;}
.ye_c01354{bottom:526.335000px;}
.yd_c01354{bottom:553.335000px;}
.yc_c01354{bottom:580.335000px;}
.yb_c01354{bottom:607.335000px;}
.ya_c01354{bottom:634.335000px;}
.y9_c01354{bottom:661.335000px;}
.y8_c01354{bottom:709.335000px;}
.y7_c01354{bottom:736.335000px;}
.y6_c01354{bottom:763.335000px;}
.y5_c01354{bottom:790.335000px;}
.y4_c01354{bottom:838.335000px;}
.y3_c01354{bottom:865.335000px;}
.y2_c01354{bottom:892.335000px;}
.y1_c01354{bottom:1039.335000px;}
.y1c_c01354{bottom:1193.835000px;}
.h5_c01354{height:44.208984px;}
.h4_c01354{height:67.746094px;}
.h3_c01354{height:77.308594px;}
.h2_c01354{height:1261.500000px;}
.h0_c01354{height:1262.835000px;}
.h1_c01354{height:1263.000000px;}
.w2_c01354{width:892.500000px;}
.w0_c01354{width:892.935000px;}
.w1_c01354{width:893.250000px;}
.x0_c01354{left:0.000000px;}
.x1_c01354{left:150.519750px;}
.x2_c01354{left:557.300850px;}
.x3_c01354{left:802.427700px;}
@media print{
.v0_c01354{vertical-align:0.000000pt;}
.ls1_c01354{letter-spacing:-0.006400pt;}
.ls2_c01354{letter-spacing:0.000000pt;}
.ls0_c01354{letter-spacing:0.010667pt;}
.ws0_c01354{word-spacing:-17.600000pt;}
.ws1_c01354{word-spacing:0.000000pt;}
._1d_c01354{margin-left:-7.138133pt;}
._4_c01354{margin-left:-4.147200pt;}
._7_c01354{margin-left:-2.886400pt;}
._0_c01354{margin-left:-1.610133pt;}
._3_c01354{width:1.034133pt;}
._6_c01354{width:2.101867pt;}
._2_c01354{width:3.168000pt;}
._1_c01354{width:4.771733pt;}
._9_c01354{width:5.689600pt;}
._5_c01354{width:6.841600pt;}
._b_c01354{width:8.169067pt;}
._8_c01354{width:9.336533pt;}
._a_c01354{width:10.705600pt;}
._c_c01354{width:12.121600pt;}
._e_c01354{width:13.360533pt;}
._14_c01354{width:14.290133pt;}
._d_c01354{width:15.584533pt;}
._15_c01354{width:16.576000pt;}
._1b_c01354{width:19.523733pt;}
._1c_c01354{width:21.164800pt;}
._18_c01354{width:22.988800pt;}
._1a_c01354{width:24.061333pt;}
._17_c01354{width:25.116267pt;}
._16_c01354{width:26.118400pt;}
._19_c01354{width:27.760533pt;}
._13_c01354{width:28.681067pt;}
._12_c01354{width:29.708800pt;}
._10_c01354{width:31.280533pt;}
._f_c01354{width:32.582400pt;}
._11_c01354{width:33.868800pt;}
.fs2_c01354{font-size:53.333333pt;}
.fs0_c01354{font-size:64.000000pt;}
.fs1_c01354{font-size:96.000000pt;}
.y0_c01354{bottom:0.000000pt;}
.y1d_c01354{bottom:59.853333pt;}
.y1b_c01354{bottom:137.186667pt;}
.y1a_c01354{bottom:161.186667pt;}
.y19_c01354{bottom:185.186667pt;}
.y18_c01354{bottom:209.186667pt;}
.y17_c01354{bottom:233.186667pt;}
.y16_c01354{bottom:257.186667pt;}
.y15_c01354{bottom:281.186667pt;}
.y14_c01354{bottom:305.186667pt;}
.y13_c01354{bottom:329.186667pt;}
.y12_c01354{bottom:353.186667pt;}
.y11_c01354{bottom:377.186667pt;}
.y10_c01354{bottom:401.186667pt;}
.yf_c01354{bottom:425.186667pt;}
.ye_c01354{bottom:467.853333pt;}
.yd_c01354{bottom:491.853333pt;}
.yc_c01354{bottom:515.853333pt;}
.yb_c01354{bottom:539.853333pt;}
.ya_c01354{bottom:563.853333pt;}
.y9_c01354{bottom:587.853333pt;}
.y8_c01354{bottom:630.520000pt;}
.y7_c01354{bottom:654.520000pt;}
.y6_c01354{bottom:678.520000pt;}
.y5_c01354{bottom:702.520000pt;}
.y4_c01354{bottom:745.186667pt;}
.y3_c01354{bottom:769.186667pt;}
.y2_c01354{bottom:793.186667pt;}
.y1_c01354{bottom:923.853333pt;}
.y1c_c01354{bottom:1061.186667pt;}
.h5_c01354{height:39.296875pt;}
.h4_c01354{height:60.218750pt;}
.h3_c01354{height:68.718750pt;}
.h2_c01354{height:1121.333333pt;}
.h0_c01354{height:1122.520000pt;}
.h1_c01354{height:1122.666667pt;}
.w2_c01354{width:793.333333pt;}
.w0_c01354{width:793.720000pt;}
.w1_c01354{width:794.000000pt;}
.x0_c01354{left:0.000000pt;}
.x1_c01354{left:133.795333pt;}
.x2_c01354{left:495.378533pt;}
.x3_c01354{left:713.269067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8cbbc866bb7dc8897226bba6.woff2')format("woff");}.ff1_c01355{font-family:ff1_c01355;line-height:1.163086;font-style:normal;font-weight:normal;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_a3a4550dfe7422732caaa5b7.woff2')format("woff");}.ff2_c01355{font-family:ff2_c01355;line-height:0.924316;font-style:normal;font-weight:normal;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_fe31c1e80c5612b8f99568e2.woff2')format("woff");}.ff3_c01355{font-family:ff3_c01355;line-height:0.756836;font-style:normal;font-weight:normal;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_a4b3fb5797343b99636953dc.woff2')format("woff");}.ff4_c01355{font-family:ff4_c01355;line-height:1.155762;font-style: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);}
.v0_c01355{vertical-align:0.000000px;}
.ls1_c01355{letter-spacing:0.000000px;}
.ls2_c01355{letter-spacing:0.012000px;}
.ls0_c01355{letter-spacing:0.136800px;}
.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;}
}
.ws0_c01355{word-spacing:0.000000px;}
._19_c01355{margin-left:-10.850400px;}
._1c_c01355{margin-left:-9.835200px;}
._c_c01355{margin-left:-6.494400px;}
._6_c01355{margin-left:-4.262400px;}
._b_c01355{margin-left:-2.808000px;}
._2_c01355{margin-left:-1.792800px;}
._4_c01355{width:1.360800px;}
._9_c01355{width:2.664000px;}
._0_c01355{width:3.960000px;}
._1_c01355{width:5.558400px;}
._a_c01355{width:6.847200px;}
._5_c01355{width:8.157600px;}
._8_c01355{width:9.518400px;}
._3_c01355{width:11.282400px;}
._1d_c01355{width:12.506400px;}
._7_c01355{width:13.824000px;}
._1b_c01355{width:14.932800px;}
._1a_c01355{width:16.279200px;}
._18_c01355{width:17.467200px;}
._1e_c01355{width:18.727200px;}
._e_c01355{width:21.470400px;}
._d_c01355{width:22.759200px;}
._f_c01355{width:24.206400px;}
._10_c01355{width:25.970400px;}
._13_c01355{width:30.996000px;}
._14_c01355{width:32.342400px;}
._12_c01355{width:33.681600px;}
._1f_c01355{width:35.359200px;}
._11_c01355{width:36.518400px;}
._17_c01355{width:37.821600px;}
._16_c01355{width:39.672000px;}
._15_c01355{width:41.299200px;}
.fc0_c01355{color:rgb(0,0,0);}
.fs1_c01355{font-size:60.000000px;}
.fs0_c01355{font-size:72.000000px;}
.y0_c01355{bottom:0.000000px;}
.y22_c01355{bottom:67.335000px;}
.y20_c01355{bottom:152.835000px;}
.y1f_c01355{bottom:179.835000px;}
.y1e_c01355{bottom:206.835000px;}
.y1d_c01355{bottom:233.835000px;}
.y1c_c01355{bottom:260.835000px;}
.y1b_c01355{bottom:287.835000px;}
.y1a_c01355{bottom:335.835000px;}
.y19_c01355{bottom:362.835000px;}
.y18_c01355{bottom:389.835000px;}
.y17_c01355{bottom:416.835000px;}
.y16_c01355{bottom:443.835000px;}
.y15_c01355{bottom:491.835000px;}
.y14_c01355{bottom:518.835000px;}
.y13_c01355{bottom:545.835000px;}
.y12_c01355{bottom:572.835000px;}
.y11_c01355{bottom:599.835000px;}
.y10_c01355{bottom:626.835000px;}
.yf_c01355{bottom:653.835000px;}
.ye_c01355{bottom:701.835000px;}
.yd_c01355{bottom:728.835000px;}
.yc_c01355{bottom:755.835000px;}
.yb_c01355{bottom:782.835000px;}
.ya_c01355{bottom:809.835000px;}
.y9_c01355{bottom:836.835000px;}
.y8_c01355{bottom:884.835000px;}
.y7_c01355{bottom:911.835000px;}
.y6_c01355{bottom:938.835000px;}
.y5_c01355{bottom:965.835000px;}
.y4_c01355{bottom:992.835000px;}
.y3_c01355{bottom:1040.835000px;}
.y2_c01355{bottom:1067.835000px;}
.y1_c01355{bottom:1094.835000px;}
.y21_c01355{bottom:1193.835000px;}
.h5_c01355{height:44.208984px;}
.h4_c01355{height:56.074219px;}
.h3_c01355{height:67.746094px;}
.h2_c01355{height:1261.500000px;}
.h0_c01355{height:1262.835000px;}
.h1_c01355{height:1263.000000px;}
.w2_c01355{width:892.500000px;}
.w0_c01355{width:892.935000px;}
.w1_c01355{width:893.250000px;}
.x0_c01355{left:0.000000px;}
.x1_c01355{left:65.480310px;}
@media print{
.v0_c01355{vertical-align:0.000000pt;}
.ls1_c01355{letter-spacing:0.000000pt;}
.ls2_c01355{letter-spacing:0.010667pt;}
.ls0_c01355{letter-spacing:0.121600pt;}
.ws0_c01355{word-spacing:0.000000pt;}
._19_c01355{margin-left:-9.644800pt;}
._1c_c01355{margin-left:-8.742400pt;}
._c_c01355{margin-left:-5.772800pt;}
._6_c01355{margin-left:-3.788800pt;}
._b_c01355{margin-left:-2.496000pt;}
._2_c01355{margin-left:-1.593600pt;}
._4_c01355{width:1.209600pt;}
._9_c01355{width:2.368000pt;}
._0_c01355{width:3.520000pt;}
._1_c01355{width:4.940800pt;}
._a_c01355{width:6.086400pt;}
._5_c01355{width:7.251200pt;}
._8_c01355{width:8.460800pt;}
._3_c01355{width:10.028800pt;}
._1d_c01355{width:11.116800pt;}
._7_c01355{width:12.288000pt;}
._1b_c01355{width:13.273600pt;}
._1a_c01355{width:14.470400pt;}
._18_c01355{width:15.526400pt;}
._1e_c01355{width:16.646400pt;}
._e_c01355{width:19.084800pt;}
._d_c01355{width:20.230400pt;}
._f_c01355{width:21.516800pt;}
._10_c01355{width:23.084800pt;}
._13_c01355{width:27.552000pt;}
._14_c01355{width:28.748800pt;}
._12_c01355{width:29.939200pt;}
._1f_c01355{width:31.430400pt;}
._11_c01355{width:32.460800pt;}
._17_c01355{width:33.619200pt;}
._16_c01355{width:35.264000pt;}
._15_c01355{width:36.710400pt;}
.fs1_c01355{font-size:53.333333pt;}
.fs0_c01355{font-size:64.000000pt;}
.y0_c01355{bottom:0.000000pt;}
.y22_c01355{bottom:59.853333pt;}
.y20_c01355{bottom:135.853333pt;}
.y1f_c01355{bottom:159.853333pt;}
.y1e_c01355{bottom:183.853333pt;}
.y1d_c01355{bottom:207.853333pt;}
.y1c_c01355{bottom:231.853333pt;}
.y1b_c01355{bottom:255.853333pt;}
.y1a_c01355{bottom:298.520000pt;}
.y19_c01355{bottom:322.520000pt;}
.y18_c01355{bottom:346.520000pt;}
.y17_c01355{bottom:370.520000pt;}
.y16_c01355{bottom:394.520000pt;}
.y15_c01355{bottom:437.186667pt;}
.y14_c01355{bottom:461.186667pt;}
.y13_c01355{bottom:485.186667pt;}
.y12_c01355{bottom:509.186667pt;}
.y11_c01355{bottom:533.186667pt;}
.y10_c01355{bottom:557.186667pt;}
.yf_c01355{bottom:581.186667pt;}
.ye_c01355{bottom:623.853333pt;}
.yd_c01355{bottom:647.853333pt;}
.yc_c01355{bottom:671.853333pt;}
.yb_c01355{bottom:695.853333pt;}
.ya_c01355{bottom:719.853333pt;}
.y9_c01355{bottom:743.853333pt;}
.y8_c01355{bottom:786.520000pt;}
.y7_c01355{bottom:810.520000pt;}
.y6_c01355{bottom:834.520000pt;}
.y5_c01355{bottom:858.520000pt;}
.y4_c01355{bottom:882.520000pt;}
.y3_c01355{bottom:925.186667pt;}
.y2_c01355{bottom:949.186667pt;}
.y1_c01355{bottom:973.186667pt;}
.y21_c01355{bottom:1061.186667pt;}
.h5_c01355{height:39.296875pt;}
.h4_c01355{height:49.843750pt;}
.h3_c01355{height:60.218750pt;}
.h2_c01355{height:1121.333333pt;}
.h0_c01355{height:1122.520000pt;}
.h1_c01355{height:1122.666667pt;}
.w2_c01355{width:793.333333pt;}
.w0_c01355{width:793.720000pt;}
.w1_c01355{width:794.000000pt;}
.x0_c01355{left:0.000000pt;}
.x1_c01355{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d17d5b9effb38ee5d473eaeb.woff2')format("woff");}.ff1_c01356{font-family:ff1_c01356;line-height:0.934082;font-style:normal;font-weight:normal;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_7b8c067f5fb1348745cd4571.woff2')format("woff");}.ff2_c01356{font-family:ff2_c01356;line-height:0.932129;font-style:normal;font-weight:normal;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_e2b8e4980a66053c5f077171.woff2')format("woff");}.ff3_c01356{font-family:ff3_c01356;line-height:0.958008;font-style: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);}
.v0_c01356{vertical-align:0.000000px;}
.ls3_c01356{letter-spacing:-0.014400px;}
.ls4_c01356{letter-spacing:-0.007200px;}
.ls2_c01356{letter-spacing:0.000000px;}
.ls1_c01356{letter-spacing:0.012000px;}
.ls0_c01356{letter-spacing:0.014400px;}
.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;}
}
.ws0_c01356{word-spacing:-19.800000px;}
.ws2_c01356{word-spacing:-0.086400px;}
.ws1_c01356{word-spacing:-0.057600px;}
.ws3_c01356{word-spacing:0.000000px;}
._12_c01356{margin-left:-7.207200px;}
._13_c01356{margin-left:-4.377600px;}
._1_c01356{margin-left:-3.290400px;}
._3_c01356{margin-left:-1.699200px;}
._6_c01356{width:1.065600px;}
._0_c01356{width:2.073600px;}
._5_c01356{width:3.124800px;}
._4_c01356{width:4.464000px;}
._2_c01356{width:6.393600px;}
._e_c01356{width:8.056800px;}
._f_c01356{width:9.381600px;}
._11_c01356{width:10.468800px;}
._c_c01356{width:11.476800px;}
._10_c01356{width:12.592800px;}
._d_c01356{width:14.205600px;}
._b_c01356{width:15.825600px;}
._14_c01356{width:17.452800px;}
._16_c01356{width:18.504000px;}
._15_c01356{width:21.679200px;}
._8_c01356{width:24.789600px;}
._7_c01356{width:26.827200px;}
._a_c01356{width:28.634400px;}
._9_c01356{width:30.211200px;}
.fc0_c01356{color:rgb(0,0,0);}
.fs1_c01356{font-size:60.000000px;}
.fs0_c01356{font-size:72.000000px;}
.y0_c01356{bottom:0.000000px;}
.y22_c01356{bottom:67.335000px;}
.y20_c01356{bottom:152.835000px;}
.y1f_c01356{bottom:179.835000px;}
.y1e_c01356{bottom:206.835000px;}
.y1d_c01356{bottom:233.835000px;}
.y1c_c01356{bottom:260.835000px;}
.y1b_c01356{bottom:308.835000px;}
.y1a_c01356{bottom:335.835000px;}
.y19_c01356{bottom:362.835000px;}
.y18_c01356{bottom:410.835000px;}
.y17_c01356{bottom:437.835000px;}
.y16_c01356{bottom:464.835000px;}
.y15_c01356{bottom:491.835000px;}
.y14_c01356{bottom:518.835000px;}
.y13_c01356{bottom:545.835000px;}
.y12_c01356{bottom:572.835000px;}
.y11_c01356{bottom:599.835000px;}
.y10_c01356{bottom:647.835000px;}
.yf_c01356{bottom:674.835000px;}
.ye_c01356{bottom:701.835000px;}
.yd_c01356{bottom:728.835000px;}
.yc_c01356{bottom:755.835000px;}
.yb_c01356{bottom:782.835000px;}
.ya_c01356{bottom:830.835000px;}
.y9_c01356{bottom:857.835000px;}
.y8_c01356{bottom:884.835000px;}
.y7_c01356{bottom:911.835000px;}
.y6_c01356{bottom:938.835000px;}
.y5_c01356{bottom:965.835000px;}
.y4_c01356{bottom:992.835000px;}
.y3_c01356{bottom:1040.835000px;}
.y2_c01356{bottom:1067.835000px;}
.y1_c01356{bottom:1094.835000px;}
.y21_c01356{bottom:1193.835000px;}
.h4_c01356{height:44.208984px;}
.h3_c01356{height:51.257812px;}
.h2_c01356{height:1261.500000px;}
.h0_c01356{height:1262.835000px;}
.h1_c01356{height:1263.000000px;}
.w2_c01356{width:892.500000px;}
.w0_c01356{width:892.935000px;}
.w1_c01356{width:893.250000px;}
.x0_c01356{left:0.000000px;}
.x1_c01356{left:150.519750px;}
.x2_c01356{left:557.300850px;}
.x3_c01356{left:802.427700px;}
@media print{
.v0_c01356{vertical-align:0.000000pt;}
.ls3_c01356{letter-spacing:-0.012800pt;}
.ls4_c01356{letter-spacing:-0.006400pt;}
.ls2_c01356{letter-spacing:0.000000pt;}
.ls1_c01356{letter-spacing:0.010667pt;}
.ls0_c01356{letter-spacing:0.012800pt;}
.ws0_c01356{word-spacing:-17.600000pt;}
.ws2_c01356{word-spacing:-0.076800pt;}
.ws1_c01356{word-spacing:-0.051200pt;}
.ws3_c01356{word-spacing:0.000000pt;}
._12_c01356{margin-left:-6.406400pt;}
._13_c01356{margin-left:-3.891200pt;}
._1_c01356{margin-left:-2.924800pt;}
._3_c01356{margin-left:-1.510400pt;}
._6_c01356{width:0.947200pt;}
._0_c01356{width:1.843200pt;}
._5_c01356{width:2.777600pt;}
._4_c01356{width:3.968000pt;}
._2_c01356{width:5.683200pt;}
._e_c01356{width:7.161600pt;}
._f_c01356{width:8.339200pt;}
._11_c01356{width:9.305600pt;}
._c_c01356{width:10.201600pt;}
._10_c01356{width:11.193600pt;}
._d_c01356{width:12.627200pt;}
._b_c01356{width:14.067200pt;}
._14_c01356{width:15.513600pt;}
._16_c01356{width:16.448000pt;}
._15_c01356{width:19.270400pt;}
._8_c01356{width:22.035200pt;}
._7_c01356{width:23.846400pt;}
._a_c01356{width:25.452800pt;}
._9_c01356{width:26.854400pt;}
.fs1_c01356{font-size:53.333333pt;}
.fs0_c01356{font-size:64.000000pt;}
.y0_c01356{bottom:0.000000pt;}
.y22_c01356{bottom:59.853333pt;}
.y20_c01356{bottom:135.853333pt;}
.y1f_c01356{bottom:159.853333pt;}
.y1e_c01356{bottom:183.853333pt;}
.y1d_c01356{bottom:207.853333pt;}
.y1c_c01356{bottom:231.853333pt;}
.y1b_c01356{bottom:274.520000pt;}
.y1a_c01356{bottom:298.520000pt;}
.y19_c01356{bottom:322.520000pt;}
.y18_c01356{bottom:365.186667pt;}
.y17_c01356{bottom:389.186667pt;}
.y16_c01356{bottom:413.186667pt;}
.y15_c01356{bottom:437.186667pt;}
.y14_c01356{bottom:461.186667pt;}
.y13_c01356{bottom:485.186667pt;}
.y12_c01356{bottom:509.186667pt;}
.y11_c01356{bottom:533.186667pt;}
.y10_c01356{bottom:575.853333pt;}
.yf_c01356{bottom:599.853333pt;}
.ye_c01356{bottom:623.853333pt;}
.yd_c01356{bottom:647.853333pt;}
.yc_c01356{bottom:671.853333pt;}
.yb_c01356{bottom:695.853333pt;}
.ya_c01356{bottom:738.520000pt;}
.y9_c01356{bottom:762.520000pt;}
.y8_c01356{bottom:786.520000pt;}
.y7_c01356{bottom:810.520000pt;}
.y6_c01356{bottom:834.520000pt;}
.y5_c01356{bottom:858.520000pt;}
.y4_c01356{bottom:882.520000pt;}
.y3_c01356{bottom:925.186667pt;}
.y2_c01356{bottom:949.186667pt;}
.y1_c01356{bottom:973.186667pt;}
.y21_c01356{bottom:1061.186667pt;}
.h4_c01356{height:39.296875pt;}
.h3_c01356{height:45.562500pt;}
.h2_c01356{height:1121.333333pt;}
.h0_c01356{height:1122.520000pt;}
.h1_c01356{height:1122.666667pt;}
.w2_c01356{width:793.333333pt;}
.w0_c01356{width:793.720000pt;}
.w1_c01356{width:794.000000pt;}
.x0_c01356{left:0.000000pt;}
.x1_c01356{left:133.795333pt;}
.x2_c01356{left:495.378533pt;}
.x3_c01356{left:713.269067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8bbf69c7ae8775fbf28fb30a.woff2')format("woff");}.ff1_c01357{font-family:ff1_c01357;line-height:1.163086;font-style:normal;font-weight:normal;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_53a8b182385214db2b754dcb.woff2')format("woff");}.ff2_c01357{font-family:ff2_c01357;line-height:0.756836;font-style:normal;font-weight:normal;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_093e331aaf81d53ff775ba0d.woff2')format("woff");}.ff3_c01357{font-family:ff3_c01357;line-height:1.155762;font-style: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;}
.ls0_c01357{letter-spacing:0.000000px;}
.ls1_c01357{letter-spacing:0.012000px;}
.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;}
}
.ws0_c01357{word-spacing:0.000000px;}
._13_c01357{margin-left:-7.956000px;}
._6_c01357{margin-left:-4.305600px;}
._4_c01357{margin-left:-3.016800px;}
._3_c01357{margin-left:-1.036800px;}
._0_c01357{width:1.130400px;}
._1_c01357{width:3.081600px;}
._2_c01357{width:4.248000px;}
._5_c01357{width:6.264000px;}
._7_c01357{width:7.488000px;}
._9_c01357{width:8.719200px;}
._e_c01357{width:9.784800px;}
._8_c01357{width:11.700000px;}
._a_c01357{width:13.413600px;}
._d_c01357{width:14.443200px;}
._19_c01357{width:15.566400px;}
._b_c01357{width:17.107200px;}
._c_c01357{width:18.669600px;}
._18_c01357{width:20.952000px;}
._14_c01357{width:23.745600px;}
._15_c01357{width:25.696800px;}
._16_c01357{width:26.712000px;}
._17_c01357{width:28.036800px;}
._12_c01357{width:31.838400px;}
._11_c01357{width:33.796800px;}
._10_c01357{width:35.006400px;}
._f_c01357{width:37.915200px;}
.fc0_c01357{color:rgb(0,0,0);}
.fs1_c01357{font-size:60.000000px;}
.fs0_c01357{font-size:72.000000px;}
.y0_c01357{bottom:0.000000px;}
.y22_c01357{bottom:67.335000px;}
.y20_c01357{bottom:131.835000px;}
.y1f_c01357{bottom:158.835000px;}
.y1e_c01357{bottom:185.835000px;}
.y1d_c01357{bottom:212.835000px;}
.y1c_c01357{bottom:239.835000px;}
.y1b_c01357{bottom:266.835000px;}
.y1a_c01357{bottom:293.835000px;}
.y19_c01357{bottom:320.835000px;}
.y18_c01357{bottom:368.835000px;}
.y17_c01357{bottom:395.835000px;}
.y16_c01357{bottom:422.835000px;}
.y15_c01357{bottom:449.835000px;}
.y14_c01357{bottom:497.835000px;}
.y13_c01357{bottom:524.835000px;}
.y12_c01357{bottom:551.835000px;}
.y11_c01357{bottom:578.835000px;}
.y10_c01357{bottom:605.835000px;}
.yf_c01357{bottom:653.835000px;}
.ye_c01357{bottom:680.835000px;}
.yd_c01357{bottom:707.835000px;}
.yc_c01357{bottom:734.835000px;}
.yb_c01357{bottom:761.835000px;}
.ya_c01357{bottom:788.835000px;}
.y9_c01357{bottom:836.835000px;}
.y8_c01357{bottom:863.835000px;}
.y7_c01357{bottom:911.835000px;}
.y6_c01357{bottom:938.835000px;}
.y5_c01357{bottom:965.835000px;}
.y4_c01357{bottom:1013.835000px;}
.y3_c01357{bottom:1040.835000px;}
.y2_c01357{bottom:1067.835000px;}
.y1_c01357{bottom:1094.835000px;}
.y21_c01357{bottom:1193.835000px;}
.h5_c01357{height:44.208984px;}
.h4_c01357{height:56.074219px;}
.h3_c01357{height:67.746094px;}
.h2_c01357{height:1261.500000px;}
.h0_c01357{height:1262.835000px;}
.h1_c01357{height:1263.000000px;}
.w2_c01357{width:892.500000px;}
.w0_c01357{width:892.935000px;}
.w1_c01357{width:893.250000px;}
.x0_c01357{left:0.000000px;}
.x1_c01357{left:65.480310px;}
@media print{
.v0_c01357{vertical-align:0.000000pt;}
.ls0_c01357{letter-spacing:0.000000pt;}
.ls1_c01357{letter-spacing:0.010667pt;}
.ws0_c01357{word-spacing:0.000000pt;}
._13_c01357{margin-left:-7.072000pt;}
._6_c01357{margin-left:-3.827200pt;}
._4_c01357{margin-left:-2.681600pt;}
._3_c01357{margin-left:-0.921600pt;}
._0_c01357{width:1.004800pt;}
._1_c01357{width:2.739200pt;}
._2_c01357{width:3.776000pt;}
._5_c01357{width:5.568000pt;}
._7_c01357{width:6.656000pt;}
._9_c01357{width:7.750400pt;}
._e_c01357{width:8.697600pt;}
._8_c01357{width:10.400000pt;}
._a_c01357{width:11.923200pt;}
._d_c01357{width:12.838400pt;}
._19_c01357{width:13.836800pt;}
._b_c01357{width:15.206400pt;}
._c_c01357{width:16.595200pt;}
._18_c01357{width:18.624000pt;}
._14_c01357{width:21.107200pt;}
._15_c01357{width:22.841600pt;}
._16_c01357{width:23.744000pt;}
._17_c01357{width:24.921600pt;}
._12_c01357{width:28.300800pt;}
._11_c01357{width:30.041600pt;}
._10_c01357{width:31.116800pt;}
._f_c01357{width:33.702400pt;}
.fs1_c01357{font-size:53.333333pt;}
.fs0_c01357{font-size:64.000000pt;}
.y0_c01357{bottom:0.000000pt;}
.y22_c01357{bottom:59.853333pt;}
.y20_c01357{bottom:117.186667pt;}
.y1f_c01357{bottom:141.186667pt;}
.y1e_c01357{bottom:165.186667pt;}
.y1d_c01357{bottom:189.186667pt;}
.y1c_c01357{bottom:213.186667pt;}
.y1b_c01357{bottom:237.186667pt;}
.y1a_c01357{bottom:261.186667pt;}
.y19_c01357{bottom:285.186667pt;}
.y18_c01357{bottom:327.853333pt;}
.y17_c01357{bottom:351.853333pt;}
.y16_c01357{bottom:375.853333pt;}
.y15_c01357{bottom:399.853333pt;}
.y14_c01357{bottom:442.520000pt;}
.y13_c01357{bottom:466.520000pt;}
.y12_c01357{bottom:490.520000pt;}
.y11_c01357{bottom:514.520000pt;}
.y10_c01357{bottom:538.520000pt;}
.yf_c01357{bottom:581.186667pt;}
.ye_c01357{bottom:605.186667pt;}
.yd_c01357{bottom:629.186667pt;}
.yc_c01357{bottom:653.186667pt;}
.yb_c01357{bottom:677.186667pt;}
.ya_c01357{bottom:701.186667pt;}
.y9_c01357{bottom:743.853333pt;}
.y8_c01357{bottom:767.853333pt;}
.y7_c01357{bottom:810.520000pt;}
.y6_c01357{bottom:834.520000pt;}
.y5_c01357{bottom:858.520000pt;}
.y4_c01357{bottom:901.186667pt;}
.y3_c01357{bottom:925.186667pt;}
.y2_c01357{bottom:949.186667pt;}
.y1_c01357{bottom:973.186667pt;}
.y21_c01357{bottom:1061.186667pt;}
.h5_c01357{height:39.296875pt;}
.h4_c01357{height:49.843750pt;}
.h3_c01357{height:60.218750pt;}
.h2_c01357{height:1121.333333pt;}
.h0_c01357{height:1122.520000pt;}
.h1_c01357{height:1122.666667pt;}
.w2_c01357{width:793.333333pt;}
.w0_c01357{width:793.720000pt;}
.w1_c01357{width:794.000000pt;}
.x0_c01357{left:0.000000pt;}
.x1_c01357{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4e94800303ac54fcfe7d735d.woff2')format("woff");}.ff1_c01358{font-family:ff1_c01358;line-height:1.163086;font-style:normal;font-weight:normal;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_6236cef1385d91609e5d8f43.woff2')format("woff");}.ff2_c01358{font-family:ff2_c01358;line-height:0.958008;font-style: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);}
.v0_c01358{vertical-align:0.000000px;}
.ls2_c01358{letter-spacing:0.000000px;}
.ls1_c01358{letter-spacing:0.012000px;}
.ls0_c01358{letter-spacing:0.964800px;}
.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;}
}
.ws0_c01358{word-spacing:-19.800000px;}
.ws1_c01358{word-spacing:0.000000px;}
._9_c01358{margin-left:-7.041600px;}
._7_c01358{margin-left:-4.233600px;}
._2_c01358{margin-left:-2.541600px;}
._0_c01358{margin-left:-1.130400px;}
._5_c01358{width:1.087200px;}
._a_c01358{width:2.196000px;}
._6_c01358{width:3.355200px;}
._4_c01358{width:4.478400px;}
._1_c01358{width:5.572800px;}
._3_c01358{width:6.984000px;}
._8_c01358{width:8.784000px;}
._b_c01358{width:9.864000px;}
._d_c01358{width:11.764800px;}
._f_c01358{width:13.060800px;}
._c_c01358{width:14.313600px;}
._e_c01358{width:16.437600px;}
._10_c01358{width:17.798400px;}
._19_c01358{width:21.232800px;}
._1b_c01358{width:22.269600px;}
._1a_c01358{width:23.436000px;}
._18_c01358{width:24.588000px;}
._17_c01358{width:25.646400px;}
._14_c01358{width:28.980000px;}
._15_c01358{width:30.016800px;}
._12_c01358{width:31.284000px;}
._16_c01358{width:32.356800px;}
._11_c01358{width:33.508800px;}
._1d_c01358{width:34.725600px;}
._13_c01358{width:35.978400px;}
._1c_c01358{width:38.066400px;}
.fc0_c01358{color:rgb(0,0,0);}
.fs1_c01358{font-size:60.000000px;}
.fs0_c01358{font-size:72.000000px;}
.y0_c01358{bottom:0.000000px;}
.y22_c01358{bottom:67.335000px;}
.y20_c01358{bottom:131.835000px;}
.y1f_c01358{bottom:158.835000px;}
.y1e_c01358{bottom:185.835000px;}
.y1d_c01358{bottom:233.835000px;}
.y1c_c01358{bottom:260.835000px;}
.y1b_c01358{bottom:287.835000px;}
.y1a_c01358{bottom:314.835000px;}
.y19_c01358{bottom:341.835000px;}
.y18_c01358{bottom:368.835000px;}
.y17_c01358{bottom:395.835000px;}
.y16_c01358{bottom:422.835000px;}
.y15_c01358{bottom:449.835000px;}
.y14_c01358{bottom:497.835000px;}
.y13_c01358{bottom:524.835000px;}
.y12_c01358{bottom:551.835000px;}
.y11_c01358{bottom:578.835000px;}
.y10_c01358{bottom:605.835000px;}
.yf_c01358{bottom:653.835000px;}
.ye_c01358{bottom:680.835000px;}
.yd_c01358{bottom:707.835000px;}
.yc_c01358{bottom:755.835000px;}
.yb_c01358{bottom:782.835000px;}
.ya_c01358{bottom:809.835000px;}
.y9_c01358{bottom:857.835000px;}
.y8_c01358{bottom:884.835000px;}
.y7_c01358{bottom:911.835000px;}
.y6_c01358{bottom:938.835000px;}
.y5_c01358{bottom:965.835000px;}
.y4_c01358{bottom:992.835000px;}
.y3_c01358{bottom:1019.835000px;}
.y2_c01358{bottom:1067.835000px;}
.y1_c01358{bottom:1094.835000px;}
.y21_c01358{bottom:1193.835000px;}
.h4_c01358{height:44.208984px;}
.h3_c01358{height:67.746094px;}
.h2_c01358{height:1261.500000px;}
.h0_c01358{height:1262.835000px;}
.h1_c01358{height:1263.000000px;}
.w2_c01358{width:892.500000px;}
.w0_c01358{width:892.935000px;}
.w1_c01358{width:893.250000px;}
.x0_c01358{left:0.000000px;}
.x1_c01358{left:150.519750px;}
.x2_c01358{left:557.300850px;}
.x3_c01358{left:802.427700px;}
@media print{
.v0_c01358{vertical-align:0.000000pt;}
.ls2_c01358{letter-spacing:0.000000pt;}
.ls1_c01358{letter-spacing:0.010667pt;}
.ls0_c01358{letter-spacing:0.857600pt;}
.ws0_c01358{word-spacing:-17.600000pt;}
.ws1_c01358{word-spacing:0.000000pt;}
._9_c01358{margin-left:-6.259200pt;}
._7_c01358{margin-left:-3.763200pt;}
._2_c01358{margin-left:-2.259200pt;}
._0_c01358{margin-left:-1.004800pt;}
._5_c01358{width:0.966400pt;}
._a_c01358{width:1.952000pt;}
._6_c01358{width:2.982400pt;}
._4_c01358{width:3.980800pt;}
._1_c01358{width:4.953600pt;}
._3_c01358{width:6.208000pt;}
._8_c01358{width:7.808000pt;}
._b_c01358{width:8.768000pt;}
._d_c01358{width:10.457600pt;}
._f_c01358{width:11.609600pt;}
._c_c01358{width:12.723200pt;}
._e_c01358{width:14.611200pt;}
._10_c01358{width:15.820800pt;}
._19_c01358{width:18.873600pt;}
._1b_c01358{width:19.795200pt;}
._1a_c01358{width:20.832000pt;}
._18_c01358{width:21.856000pt;}
._17_c01358{width:22.796800pt;}
._14_c01358{width:25.760000pt;}
._15_c01358{width:26.681600pt;}
._12_c01358{width:27.808000pt;}
._16_c01358{width:28.761600pt;}
._11_c01358{width:29.785600pt;}
._1d_c01358{width:30.867200pt;}
._13_c01358{width:31.980800pt;}
._1c_c01358{width:33.836800pt;}
.fs1_c01358{font-size:53.333333pt;}
.fs0_c01358{font-size:64.000000pt;}
.y0_c01358{bottom:0.000000pt;}
.y22_c01358{bottom:59.853333pt;}
.y20_c01358{bottom:117.186667pt;}
.y1f_c01358{bottom:141.186667pt;}
.y1e_c01358{bottom:165.186667pt;}
.y1d_c01358{bottom:207.853333pt;}
.y1c_c01358{bottom:231.853333pt;}
.y1b_c01358{bottom:255.853333pt;}
.y1a_c01358{bottom:279.853333pt;}
.y19_c01358{bottom:303.853333pt;}
.y18_c01358{bottom:327.853333pt;}
.y17_c01358{bottom:351.853333pt;}
.y16_c01358{bottom:375.853333pt;}
.y15_c01358{bottom:399.853333pt;}
.y14_c01358{bottom:442.520000pt;}
.y13_c01358{bottom:466.520000pt;}
.y12_c01358{bottom:490.520000pt;}
.y11_c01358{bottom:514.520000pt;}
.y10_c01358{bottom:538.520000pt;}
.yf_c01358{bottom:581.186667pt;}
.ye_c01358{bottom:605.186667pt;}
.yd_c01358{bottom:629.186667pt;}
.yc_c01358{bottom:671.853333pt;}
.yb_c01358{bottom:695.853333pt;}
.ya_c01358{bottom:719.853333pt;}
.y9_c01358{bottom:762.520000pt;}
.y8_c01358{bottom:786.520000pt;}
.y7_c01358{bottom:810.520000pt;}
.y6_c01358{bottom:834.520000pt;}
.y5_c01358{bottom:858.520000pt;}
.y4_c01358{bottom:882.520000pt;}
.y3_c01358{bottom:906.520000pt;}
.y2_c01358{bottom:949.186667pt;}
.y1_c01358{bottom:973.186667pt;}
.y21_c01358{bottom:1061.186667pt;}
.h4_c01358{height:39.296875pt;}
.h3_c01358{height:60.218750pt;}
.h2_c01358{height:1121.333333pt;}
.h0_c01358{height:1122.520000pt;}
.h1_c01358{height:1122.666667pt;}
.w2_c01358{width:793.333333pt;}
.w0_c01358{width:793.720000pt;}
.w1_c01358{width:794.000000pt;}
.x0_c01358{left:0.000000pt;}
.x1_c01358{left:133.795333pt;}
.x2_c01358{left:495.378533pt;}
.x3_c01358{left:713.269067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_71075bb3a3d4b80494038b43.woff2')format("woff");}.ff1_c01359{font-family:ff1_c01359;line-height:1.163086;font-style:normal;font-weight:normal;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_2b4d6d3793dadcdfcbdc7ee4.woff2')format("woff");}.ff2_c01359{font-family:ff2_c01359;line-height:0.756836;font-style:normal;font-weight:normal;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_2cb38e1d5643d1cacd114a36.woff2')format("woff");}.ff3_c01359{font-family:ff3_c01359;line-height:1.155762;font-style: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);}
.v0_c01359{vertical-align:0.000000px;}
.ls1_c01359{letter-spacing:0.000000px;}
.ls2_c01359{letter-spacing:0.012000px;}
.ls0_c01359{letter-spacing:0.201600px;}
.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;}
}
.ws0_c01359{word-spacing:0.000000px;}
._f_c01359{margin-left:-6.717600px;}
._c_c01359{margin-left:-4.982400px;}
._3_c01359{margin-left:-3.506400px;}
._1_c01359{margin-left:-2.433600px;}
._a_c01359{margin-left:-1.224000px;}
._0_c01359{width:1.231200px;}
._b_c01359{width:2.520000px;}
._2_c01359{width:3.650400px;}
._4_c01359{width:4.701600px;}
._1b_c01359{width:5.788800px;}
._e_c01359{width:6.976800px;}
._d_c01359{width:8.272800px;}
._11_c01359{width:9.705600px;}
._7_c01359{width:11.174400px;}
._10_c01359{width:12.477600px;}
._6_c01359{width:13.557600px;}
._9_c01359{width:14.803200px;}
._12_c01359{width:15.991200px;}
._8_c01359{width:17.229600px;}
._5_c01359{width:18.302400px;}
._1a_c01359{width:20.944800px;}
._13_c01359{width:22.471200px;}
._17_c01359{width:23.515200px;}
._14_c01359{width:24.926400px;}
._15_c01359{width:26.028000px;}
._19_c01359{width:27.367200px;}
._18_c01359{width:28.548000px;}
._16_c01359{width:29.556000px;}
._1d_c01359{width:31.010400px;}
._1c_c01359{width:32.061600px;}
._1f_c01359{width:33.120000px;}
._1e_c01359{width:34.480800px;}
._20_c01359{width:35.712000px;}
._22_c01359{width:36.936000px;}
._21_c01359{width:38.145600px;}
._24_c01359{width:39.218400px;}
._23_c01359{width:40.622400px;}
.fc0_c01359{color:rgb(0,0,0);}
.fs1_c01359{font-size:60.000000px;}
.fs0_c01359{font-size:72.000000px;}
.y0_c01359{bottom:0.000000px;}
.y22_c01359{bottom:67.335000px;}
.y20_c01359{bottom:131.835000px;}
.y1f_c01359{bottom:158.835000px;}
.y1e_c01359{bottom:185.835000px;}
.y1d_c01359{bottom:212.835000px;}
.y1c_c01359{bottom:260.835000px;}
.y1b_c01359{bottom:287.835000px;}
.y1a_c01359{bottom:314.835000px;}
.y19_c01359{bottom:362.835000px;}
.y18_c01359{bottom:389.835000px;}
.y17_c01359{bottom:416.835000px;}
.y16_c01359{bottom:443.835000px;}
.y15_c01359{bottom:470.835000px;}
.y14_c01359{bottom:497.835000px;}
.y13_c01359{bottom:545.835000px;}
.y12_c01359{bottom:572.835000px;}
.y11_c01359{bottom:599.835000px;}
.y10_c01359{bottom:626.835000px;}
.yf_c01359{bottom:653.835000px;}
.ye_c01359{bottom:680.835000px;}
.yd_c01359{bottom:707.835000px;}
.yc_c01359{bottom:755.835000px;}
.yb_c01359{bottom:782.835000px;}
.ya_c01359{bottom:809.835000px;}
.y9_c01359{bottom:836.835000px;}
.y8_c01359{bottom:884.835000px;}
.y7_c01359{bottom:911.835000px;}
.y6_c01359{bottom:959.835000px;}
.y5_c01359{bottom:986.835000px;}
.y4_c01359{bottom:1013.835000px;}
.y3_c01359{bottom:1040.835000px;}
.y2_c01359{bottom:1067.835000px;}
.y1_c01359{bottom:1094.835000px;}
.y21_c01359{bottom:1193.835000px;}
.h5_c01359{height:44.208984px;}
.h4_c01359{height:56.074219px;}
.h3_c01359{height:67.746094px;}
.h2_c01359{height:1261.500000px;}
.h0_c01359{height:1262.835000px;}
.h1_c01359{height:1263.000000px;}
.w2_c01359{width:892.500000px;}
.w0_c01359{width:892.935000px;}
.w1_c01359{width:893.250000px;}
.x0_c01359{left:0.000000px;}
.x1_c01359{left:65.480310px;}
@media print{
.v0_c01359{vertical-align:0.000000pt;}
.ls1_c01359{letter-spacing:0.000000pt;}
.ls2_c01359{letter-spacing:0.010667pt;}
.ls0_c01359{letter-spacing:0.179200pt;}
.ws0_c01359{word-spacing:0.000000pt;}
._f_c01359{margin-left:-5.971200pt;}
._c_c01359{margin-left:-4.428800pt;}
._3_c01359{margin-left:-3.116800pt;}
._1_c01359{margin-left:-2.163200pt;}
._a_c01359{margin-left:-1.088000pt;}
._0_c01359{width:1.094400pt;}
._b_c01359{width:2.240000pt;}
._2_c01359{width:3.244800pt;}
._4_c01359{width:4.179200pt;}
._1b_c01359{width:5.145600pt;}
._e_c01359{width:6.201600pt;}
._d_c01359{width:7.353600pt;}
._11_c01359{width:8.627200pt;}
._7_c01359{width:9.932800pt;}
._10_c01359{width:11.091200pt;}
._6_c01359{width:12.051200pt;}
._9_c01359{width:13.158400pt;}
._12_c01359{width:14.214400pt;}
._8_c01359{width:15.315200pt;}
._5_c01359{width:16.268800pt;}
._1a_c01359{width:18.617600pt;}
._13_c01359{width:19.974400pt;}
._17_c01359{width:20.902400pt;}
._14_c01359{width:22.156800pt;}
._15_c01359{width:23.136000pt;}
._19_c01359{width:24.326400pt;}
._18_c01359{width:25.376000pt;}
._16_c01359{width:26.272000pt;}
._1d_c01359{width:27.564800pt;}
._1c_c01359{width:28.499200pt;}
._1f_c01359{width:29.440000pt;}
._1e_c01359{width:30.649600pt;}
._20_c01359{width:31.744000pt;}
._22_c01359{width:32.832000pt;}
._21_c01359{width:33.907200pt;}
._24_c01359{width:34.860800pt;}
._23_c01359{width:36.108800pt;}
.fs1_c01359{font-size:53.333333pt;}
.fs0_c01359{font-size:64.000000pt;}
.y0_c01359{bottom:0.000000pt;}
.y22_c01359{bottom:59.853333pt;}
.y20_c01359{bottom:117.186667pt;}
.y1f_c01359{bottom:141.186667pt;}
.y1e_c01359{bottom:165.186667pt;}
.y1d_c01359{bottom:189.186667pt;}
.y1c_c01359{bottom:231.853333pt;}
.y1b_c01359{bottom:255.853333pt;}
.y1a_c01359{bottom:279.853333pt;}
.y19_c01359{bottom:322.520000pt;}
.y18_c01359{bottom:346.520000pt;}
.y17_c01359{bottom:370.520000pt;}
.y16_c01359{bottom:394.520000pt;}
.y15_c01359{bottom:418.520000pt;}
.y14_c01359{bottom:442.520000pt;}
.y13_c01359{bottom:485.186667pt;}
.y12_c01359{bottom:509.186667pt;}
.y11_c01359{bottom:533.186667pt;}
.y10_c01359{bottom:557.186667pt;}
.yf_c01359{bottom:581.186667pt;}
.ye_c01359{bottom:605.186667pt;}
.yd_c01359{bottom:629.186667pt;}
.yc_c01359{bottom:671.853333pt;}
.yb_c01359{bottom:695.853333pt;}
.ya_c01359{bottom:719.853333pt;}
.y9_c01359{bottom:743.853333pt;}
.y8_c01359{bottom:786.520000pt;}
.y7_c01359{bottom:810.520000pt;}
.y6_c01359{bottom:853.186667pt;}
.y5_c01359{bottom:877.186667pt;}
.y4_c01359{bottom:901.186667pt;}
.y3_c01359{bottom:925.186667pt;}
.y2_c01359{bottom:949.186667pt;}
.y1_c01359{bottom:973.186667pt;}
.y21_c01359{bottom:1061.186667pt;}
.h5_c01359{height:39.296875pt;}
.h4_c01359{height:49.843750pt;}
.h3_c01359{height:60.218750pt;}
.h2_c01359{height:1121.333333pt;}
.h0_c01359{height:1122.520000pt;}
.h1_c01359{height:1122.666667pt;}
.w2_c01359{width:793.333333pt;}
.w0_c01359{width:793.720000pt;}
.w1_c01359{width:794.000000pt;}
.x0_c01359{left:0.000000pt;}
.x1_c01359{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0090c2585d9226a41193f057.woff2')format("woff");}.ff1_c01360{font-family:ff1_c01360;line-height:1.163086;font-style:normal;font-weight:normal;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_a87b1d7f260d216668349759.woff2')format("woff");}.ff2_c01360{font-family:ff2_c01360;line-height:0.958008;font-style: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;}
.ls1_c01360{letter-spacing:0.000000px;}
.ls0_c01360{letter-spacing:0.012000px;}
.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;}
}
.ws0_c01360{word-spacing:0.000000px;}
._1e_c01360{margin-left:-10.591200px;}
._19_c01360{margin-left:-7.214400px;}
._11_c01360{margin-left:-4.068000px;}
._0_c01360{margin-left:-3.067200px;}
._a_c01360{margin-left:-1.850400px;}
._8_c01360{width:1.022400px;}
._5_c01360{width:2.239200px;}
._3_c01360{width:3.254400px;}
._b_c01360{width:4.370400px;}
._9_c01360{width:5.522400px;}
._1a_c01360{width:6.804000px;}
._7_c01360{width:7.963200px;}
._18_c01360{width:9.748800px;}
._16_c01360{width:10.929600px;}
._13_c01360{width:11.966400px;}
._15_c01360{width:13.838400px;}
._17_c01360{width:15.033600px;}
._14_c01360{width:16.056000px;}
._1b_c01360{width:17.503200px;}
._10_c01360{width:18.648000px;}
._12_c01360{width:20.887200px;}
._f_c01360{width:22.284000px;}
._4_c01360{width:24.098400px;}
._6_c01360{width:25.250400px;}
._1c_c01360{width:26.330400px;}
._2_c01360{width:27.331200px;}
._1d_c01360{width:29.397600px;}
._1_c01360{width:30.405600px;}
._d_c01360{width:32.148000px;}
._e_c01360{width:33.444000px;}
._c_c01360{width:34.459200px;}
.fc0_c01360{color:rgb(0,0,0);}
.fs1_c01360{font-size:60.000000px;}
.fs0_c01360{font-size:72.000000px;}
.y0_c01360{bottom:0.000000px;}
.y21_c01360{bottom:67.335000px;}
.y1f_c01360{bottom:179.835000px;}
.y1e_c01360{bottom:206.835000px;}
.y1d_c01360{bottom:233.835000px;}
.y1c_c01360{bottom:260.835000px;}
.y1b_c01360{bottom:287.835000px;}
.y1a_c01360{bottom:314.835000px;}
.y19_c01360{bottom:341.835000px;}
.y18_c01360{bottom:368.835000px;}
.y17_c01360{bottom:395.835000px;}
.y16_c01360{bottom:443.835000px;}
.y15_c01360{bottom:470.835000px;}
.y14_c01360{bottom:497.835000px;}
.y13_c01360{bottom:524.835000px;}
.y12_c01360{bottom:551.835000px;}
.y11_c01360{bottom:578.835000px;}
.y10_c01360{bottom:605.835000px;}
.yf_c01360{bottom:653.835000px;}
.ye_c01360{bottom:680.835000px;}
.yd_c01360{bottom:707.835000px;}
.yc_c01360{bottom:755.835000px;}
.yb_c01360{bottom:782.835000px;}
.ya_c01360{bottom:809.835000px;}
.y9_c01360{bottom:857.835000px;}
.y8_c01360{bottom:884.835000px;}
.y7_c01360{bottom:911.835000px;}
.y6_c01360{bottom:938.835000px;}
.y5_c01360{bottom:986.835000px;}
.y4_c01360{bottom:1013.835000px;}
.y3_c01360{bottom:1040.835000px;}
.y2_c01360{bottom:1067.835000px;}
.y1_c01360{bottom:1094.835000px;}
.y20_c01360{bottom:1193.835000px;}
.h4_c01360{height:44.208984px;}
.h3_c01360{height:67.746094px;}
.h2_c01360{height:1261.500000px;}
.h0_c01360{height:1262.835000px;}
.h1_c01360{height:1263.000000px;}
.w2_c01360{width:892.500000px;}
.w0_c01360{width:892.935000px;}
.w1_c01360{width:893.250000px;}
.x0_c01360{left:0.000000px;}
.x1_c01360{left:150.519750px;}
.x2_c01360{left:557.300850px;}
.x3_c01360{left:802.427700px;}
@media print{
.v0_c01360{vertical-align:0.000000pt;}
.ls1_c01360{letter-spacing:0.000000pt;}
.ls0_c01360{letter-spacing:0.010667pt;}
.ws0_c01360{word-spacing:0.000000pt;}
._1e_c01360{margin-left:-9.414400pt;}
._19_c01360{margin-left:-6.412800pt;}
._11_c01360{margin-left:-3.616000pt;}
._0_c01360{margin-left:-2.726400pt;}
._a_c01360{margin-left:-1.644800pt;}
._8_c01360{width:0.908800pt;}
._5_c01360{width:1.990400pt;}
._3_c01360{width:2.892800pt;}
._b_c01360{width:3.884800pt;}
._9_c01360{width:4.908800pt;}
._1a_c01360{width:6.048000pt;}
._7_c01360{width:7.078400pt;}
._18_c01360{width:8.665600pt;}
._16_c01360{width:9.715200pt;}
._13_c01360{width:10.636800pt;}
._15_c01360{width:12.300800pt;}
._17_c01360{width:13.363200pt;}
._14_c01360{width:14.272000pt;}
._1b_c01360{width:15.558400pt;}
._10_c01360{width:16.576000pt;}
._12_c01360{width:18.566400pt;}
._f_c01360{width:19.808000pt;}
._4_c01360{width:21.420800pt;}
._6_c01360{width:22.444800pt;}
._1c_c01360{width:23.404800pt;}
._2_c01360{width:24.294400pt;}
._1d_c01360{width:26.131200pt;}
._1_c01360{width:27.027200pt;}
._d_c01360{width:28.576000pt;}
._e_c01360{width:29.728000pt;}
._c_c01360{width:30.630400pt;}
.fs1_c01360{font-size:53.333333pt;}
.fs0_c01360{font-size:64.000000pt;}
.y0_c01360{bottom:0.000000pt;}
.y21_c01360{bottom:59.853333pt;}
.y1f_c01360{bottom:159.853333pt;}
.y1e_c01360{bottom:183.853333pt;}
.y1d_c01360{bottom:207.853333pt;}
.y1c_c01360{bottom:231.853333pt;}
.y1b_c01360{bottom:255.853333pt;}
.y1a_c01360{bottom:279.853333pt;}
.y19_c01360{bottom:303.853333pt;}
.y18_c01360{bottom:327.853333pt;}
.y17_c01360{bottom:351.853333pt;}
.y16_c01360{bottom:394.520000pt;}
.y15_c01360{bottom:418.520000pt;}
.y14_c01360{bottom:442.520000pt;}
.y13_c01360{bottom:466.520000pt;}
.y12_c01360{bottom:490.520000pt;}
.y11_c01360{bottom:514.520000pt;}
.y10_c01360{bottom:538.520000pt;}
.yf_c01360{bottom:581.186667pt;}
.ye_c01360{bottom:605.186667pt;}
.yd_c01360{bottom:629.186667pt;}
.yc_c01360{bottom:671.853333pt;}
.yb_c01360{bottom:695.853333pt;}
.ya_c01360{bottom:719.853333pt;}
.y9_c01360{bottom:762.520000pt;}
.y8_c01360{bottom:786.520000pt;}
.y7_c01360{bottom:810.520000pt;}
.y6_c01360{bottom:834.520000pt;}
.y5_c01360{bottom:877.186667pt;}
.y4_c01360{bottom:901.186667pt;}
.y3_c01360{bottom:925.186667pt;}
.y2_c01360{bottom:949.186667pt;}
.y1_c01360{bottom:973.186667pt;}
.y20_c01360{bottom:1061.186667pt;}
.h4_c01360{height:39.296875pt;}
.h3_c01360{height:60.218750pt;}
.h2_c01360{height:1121.333333pt;}
.h0_c01360{height:1122.520000pt;}
.h1_c01360{height:1122.666667pt;}
.w2_c01360{width:793.333333pt;}
.w0_c01360{width:793.720000pt;}
.w1_c01360{width:794.000000pt;}
.x0_c01360{left:0.000000pt;}
.x1_c01360{left:133.795333pt;}
.x2_c01360{left:495.378533pt;}
.x3_c01360{left:713.269067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cfe3d5b51c9c5ad83296bbb1.woff2')format("woff");}.ff1_c01361{font-family:ff1_c01361;line-height:1.163086;font-style:normal;font-weight:normal;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_6145bbf899228ffecec90d32.woff2')format("woff");}.ff2_c01361{font-family:ff2_c01361;line-height:0.756836;font-style:normal;font-weight:normal;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_08f70d12cfed1ad266e397e0.woff2')format("woff");}.ff3_c01361{font-family:ff3_c01361;line-height:1.155762;font-style: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);}
.v0_c01361{vertical-align:0.000000px;}
.ls1_c01361{letter-spacing:0.000000px;}
.ls2_c01361{letter-spacing:0.012000px;}
.ls0_c01361{letter-spacing:0.410400px;}
.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;}
}
.ws0_c01361{word-spacing:0.000000px;}
._7_c01361{margin-left:-10.584000px;}
._d_c01361{margin-left:-5.198400px;}
._b_c01361{margin-left:-3.672000px;}
._a_c01361{margin-left:-2.649600px;}
._0_c01361{margin-left:-1.130400px;}
._10_c01361{width:1.137600px;}
._5_c01361{width:2.160000px;}
._3_c01361{width:4.089600px;}
._f_c01361{width:5.104800px;}
._e_c01361{width:6.134400px;}
._9_c01361{width:7.394400px;}
._8_c01361{width:8.985600px;}
._4_c01361{width:9.986400px;}
._6_c01361{width:11.858400px;}
._1b_c01361{width:12.967200px;}
._2_c01361{width:14.004000px;}
._1_c01361{width:15.141600px;}
._c_c01361{width:16.927200px;}
._11_c01361{width:24.192000px;}
._13_c01361{width:25.221600px;}
._16_c01361{width:26.301600px;}
._12_c01361{width:28.130400px;}
._14_c01361{width:29.318400px;}
._15_c01361{width:32.061600px;}
._1a_c01361{width:34.286400px;}
._18_c01361{width:35.899200px;}
._17_c01361{width:38.001600px;}
._19_c01361{width:39.672000px;}
.fc0_c01361{color:rgb(0,0,0);}
.fs1_c01361{font-size:60.000000px;}
.fs0_c01361{font-size:72.000000px;}
.y0_c01361{bottom:0.000000px;}
.y22_c01361{bottom:67.335000px;}
.y20_c01361{bottom:131.835000px;}
.y1f_c01361{bottom:158.835000px;}
.y1e_c01361{bottom:185.835000px;}
.y1d_c01361{bottom:233.835000px;}
.y1c_c01361{bottom:260.835000px;}
.y1b_c01361{bottom:287.835000px;}
.y1a_c01361{bottom:314.835000px;}
.y19_c01361{bottom:341.835000px;}
.y18_c01361{bottom:368.835000px;}
.y17_c01361{bottom:395.835000px;}
.y16_c01361{bottom:443.835000px;}
.y15_c01361{bottom:470.835000px;}
.y14_c01361{bottom:497.835000px;}
.y13_c01361{bottom:545.835000px;}
.y12_c01361{bottom:572.835000px;}
.y11_c01361{bottom:599.835000px;}
.y10_c01361{bottom:626.835000px;}
.yf_c01361{bottom:653.835000px;}
.ye_c01361{bottom:680.835000px;}
.yd_c01361{bottom:728.835000px;}
.yc_c01361{bottom:755.835000px;}
.yb_c01361{bottom:782.835000px;}
.ya_c01361{bottom:809.835000px;}
.y9_c01361{bottom:836.835000px;}
.y8_c01361{bottom:863.835000px;}
.y7_c01361{bottom:890.835000px;}
.y6_c01361{bottom:938.835000px;}
.y5_c01361{bottom:965.835000px;}
.y4_c01361{bottom:992.835000px;}
.y3_c01361{bottom:1019.835000px;}
.y2_c01361{bottom:1067.835000px;}
.y1_c01361{bottom:1094.835000px;}
.y21_c01361{bottom:1193.835000px;}
.h5_c01361{height:44.208984px;}
.h4_c01361{height:56.074219px;}
.h3_c01361{height:67.746094px;}
.h2_c01361{height:1261.500000px;}
.h0_c01361{height:1262.835000px;}
.h1_c01361{height:1263.000000px;}
.w2_c01361{width:892.500000px;}
.w0_c01361{width:892.935000px;}
.w1_c01361{width:893.250000px;}
.x0_c01361{left:0.000000px;}
.x1_c01361{left:65.480310px;}
@media print{
.v0_c01361{vertical-align:0.000000pt;}
.ls1_c01361{letter-spacing:0.000000pt;}
.ls2_c01361{letter-spacing:0.010667pt;}
.ls0_c01361{letter-spacing:0.364800pt;}
.ws0_c01361{word-spacing:0.000000pt;}
._7_c01361{margin-left:-9.408000pt;}
._d_c01361{margin-left:-4.620800pt;}
._b_c01361{margin-left:-3.264000pt;}
._a_c01361{margin-left:-2.355200pt;}
._0_c01361{margin-left:-1.004800pt;}
._10_c01361{width:1.011200pt;}
._5_c01361{width:1.920000pt;}
._3_c01361{width:3.635200pt;}
._f_c01361{width:4.537600pt;}
._e_c01361{width:5.452800pt;}
._9_c01361{width:6.572800pt;}
._8_c01361{width:7.987200pt;}
._4_c01361{width:8.876800pt;}
._6_c01361{width:10.540800pt;}
._1b_c01361{width:11.526400pt;}
._2_c01361{width:12.448000pt;}
._1_c01361{width:13.459200pt;}
._c_c01361{width:15.046400pt;}
._11_c01361{width:21.504000pt;}
._13_c01361{width:22.419200pt;}
._16_c01361{width:23.379200pt;}
._12_c01361{width:25.004800pt;}
._14_c01361{width:26.060800pt;}
._15_c01361{width:28.499200pt;}
._1a_c01361{width:30.476800pt;}
._18_c01361{width:31.910400pt;}
._17_c01361{width:33.779200pt;}
._19_c01361{width:35.264000pt;}
.fs1_c01361{font-size:53.333333pt;}
.fs0_c01361{font-size:64.000000pt;}
.y0_c01361{bottom:0.000000pt;}
.y22_c01361{bottom:59.853333pt;}
.y20_c01361{bottom:117.186667pt;}
.y1f_c01361{bottom:141.186667pt;}
.y1e_c01361{bottom:165.186667pt;}
.y1d_c01361{bottom:207.853333pt;}
.y1c_c01361{bottom:231.853333pt;}
.y1b_c01361{bottom:255.853333pt;}
.y1a_c01361{bottom:279.853333pt;}
.y19_c01361{bottom:303.853333pt;}
.y18_c01361{bottom:327.853333pt;}
.y17_c01361{bottom:351.853333pt;}
.y16_c01361{bottom:394.520000pt;}
.y15_c01361{bottom:418.520000pt;}
.y14_c01361{bottom:442.520000pt;}
.y13_c01361{bottom:485.186667pt;}
.y12_c01361{bottom:509.186667pt;}
.y11_c01361{bottom:533.186667pt;}
.y10_c01361{bottom:557.186667pt;}
.yf_c01361{bottom:581.186667pt;}
.ye_c01361{bottom:605.186667pt;}
.yd_c01361{bottom:647.853333pt;}
.yc_c01361{bottom:671.853333pt;}
.yb_c01361{bottom:695.853333pt;}
.ya_c01361{bottom:719.853333pt;}
.y9_c01361{bottom:743.853333pt;}
.y8_c01361{bottom:767.853333pt;}
.y7_c01361{bottom:791.853333pt;}
.y6_c01361{bottom:834.520000pt;}
.y5_c01361{bottom:858.520000pt;}
.y4_c01361{bottom:882.520000pt;}
.y3_c01361{bottom:906.520000pt;}
.y2_c01361{bottom:949.186667pt;}
.y1_c01361{bottom:973.186667pt;}
.y21_c01361{bottom:1061.186667pt;}
.h5_c01361{height:39.296875pt;}
.h4_c01361{height:49.843750pt;}
.h3_c01361{height:60.218750pt;}
.h2_c01361{height:1121.333333pt;}
.h0_c01361{height:1122.520000pt;}
.h1_c01361{height:1122.666667pt;}
.w2_c01361{width:793.333333pt;}
.w0_c01361{width:793.720000pt;}
.w1_c01361{width:794.000000pt;}
.x0_c01361{left:0.000000pt;}
.x1_c01361{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_314e7b793301bc0b184a3071.woff2')format("woff");}.ff1_c01362{font-family:ff1_c01362;line-height:1.163086;font-style:normal;font-weight:normal;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_33f332b5aa9ec63fa0331caa.woff2')format("woff");}.ff2_c01362{font-family:ff2_c01362;line-height:0.958008;font-style: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);}
.v0_c01362{vertical-align:0.000000px;}
.ls1_c01362{letter-spacing:0.000000px;}
.ls0_c01362{letter-spacing:0.012000px;}
.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;}
}
.ws0_c01362{word-spacing:0.000000px;}
._15_c01362{margin-left:-9.777600px;}
._8_c01362{margin-left:-7.480800px;}
._9_c01362{margin-left:-3.823200px;}
._4_c01362{margin-left:-2.556000px;}
._d_c01362{margin-left:-1.310400px;}
._0_c01362{width:1.036800px;}
._11_c01362{width:2.059200px;}
._6_c01362{width:3.132000px;}
._2_c01362{width:4.694400px;}
._b_c01362{width:7.099200px;}
._12_c01362{width:8.251200px;}
._13_c01362{width:9.309600px;}
._f_c01362{width:10.389600px;}
._c_c01362{width:11.779200px;}
._e_c01362{width:13.183200px;}
._3_c01362{width:14.630400px;}
._10_c01362{width:15.883200px;}
._7_c01362{width:17.193600px;}
._1_c01362{width:18.525600px;}
._5_c01362{width:21.369600px;}
._a_c01362{width:23.349600px;}
._14_c01362{width:24.926400px;}
._17_c01362{width:27.043200px;}
._16_c01362{width:28.756800px;}
.fc0_c01362{color:rgb(0,0,0);}
.fs1_c01362{font-size:60.000000px;}
.fs0_c01362{font-size:72.000000px;}
.y0_c01362{bottom:0.000000px;}
.ye_c01362{bottom:67.335000px;}
.yc_c01362{bottom:776.835000px;}
.yb_c01362{bottom:803.835000px;}
.ya_c01362{bottom:830.835000px;}
.y9_c01362{bottom:857.835000px;}
.y8_c01362{bottom:884.835000px;}
.y7_c01362{bottom:911.835000px;}
.y6_c01362{bottom:938.835000px;}
.y5_c01362{bottom:986.835000px;}
.y4_c01362{bottom:1013.835000px;}
.y3_c01362{bottom:1040.835000px;}
.y2_c01362{bottom:1067.835000px;}
.y1_c01362{bottom:1094.835000px;}
.yd_c01362{bottom:1193.835000px;}
.h4_c01362{height:44.208984px;}
.h3_c01362{height:67.746094px;}
.h2_c01362{height:1261.500000px;}
.h0_c01362{height:1262.835000px;}
.h1_c01362{height:1263.000000px;}
.w2_c01362{width:892.500000px;}
.w0_c01362{width:892.935000px;}
.w1_c01362{width:893.250000px;}
.x0_c01362{left:0.000000px;}
.x1_c01362{left:150.519750px;}
.x2_c01362{left:557.300850px;}
.x3_c01362{left:802.427700px;}
@media print{
.v0_c01362{vertical-align:0.000000pt;}
.ls1_c01362{letter-spacing:0.000000pt;}
.ls0_c01362{letter-spacing:0.010667pt;}
.ws0_c01362{word-spacing:0.000000pt;}
._15_c01362{margin-left:-8.691200pt;}
._8_c01362{margin-left:-6.649600pt;}
._9_c01362{margin-left:-3.398400pt;}
._4_c01362{margin-left:-2.272000pt;}
._d_c01362{margin-left:-1.164800pt;}
._0_c01362{width:0.921600pt;}
._11_c01362{width:1.830400pt;}
._6_c01362{width:2.784000pt;}
._2_c01362{width:4.172800pt;}
._b_c01362{width:6.310400pt;}
._12_c01362{width:7.334400pt;}
._13_c01362{width:8.275200pt;}
._f_c01362{width:9.235200pt;}
._c_c01362{width:10.470400pt;}
._e_c01362{width:11.718400pt;}
._3_c01362{width:13.004800pt;}
._10_c01362{width:14.118400pt;}
._7_c01362{width:15.283200pt;}
._1_c01362{width:16.467200pt;}
._5_c01362{width:18.995200pt;}
._a_c01362{width:20.755200pt;}
._14_c01362{width:22.156800pt;}
._17_c01362{width:24.038400pt;}
._16_c01362{width:25.561600pt;}
.fs1_c01362{font-size:53.333333pt;}
.fs0_c01362{font-size:64.000000pt;}
.y0_c01362{bottom:0.000000pt;}
.ye_c01362{bottom:59.853333pt;}
.yc_c01362{bottom:690.520000pt;}
.yb_c01362{bottom:714.520000pt;}
.ya_c01362{bottom:738.520000pt;}
.y9_c01362{bottom:762.520000pt;}
.y8_c01362{bottom:786.520000pt;}
.y7_c01362{bottom:810.520000pt;}
.y6_c01362{bottom:834.520000pt;}
.y5_c01362{bottom:877.186667pt;}
.y4_c01362{bottom:901.186667pt;}
.y3_c01362{bottom:925.186667pt;}
.y2_c01362{bottom:949.186667pt;}
.y1_c01362{bottom:973.186667pt;}
.yd_c01362{bottom:1061.186667pt;}
.h4_c01362{height:39.296875pt;}
.h3_c01362{height:60.218750pt;}
.h2_c01362{height:1121.333333pt;}
.h0_c01362{height:1122.520000pt;}
.h1_c01362{height:1122.666667pt;}
.w2_c01362{width:793.333333pt;}
.w0_c01362{width:793.720000pt;}
.w1_c01362{width:794.000000pt;}
.x0_c01362{left:0.000000pt;}
.x1_c01362{left:133.795333pt;}
.x2_c01362{left:495.378533pt;}
.x3_c01362{left:713.269067pt;}
}





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





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_02dda9a2cec0d8be3916c6d6.woff2')format("woff");}.ff1_c01364{font-family:ff1_c01364;line-height:1.124023;font-style:normal;font-weight:normal;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_86f406c92bdf244d8fb1393b.woff2')format("woff");}.ff2_c01364{font-family:ff2_c01364;line-height:0.717285;font-style:normal;font-weight:normal;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_aee9df8b6f86b2a119a3d5c0.woff2')format("woff");}.ff3_c01364{font-family:ff3_c01364;line-height:1.187012;font-style:normal;font-weight:normal;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_d8045014bc460bd60fbf01be.woff2')format("woff");}.ff4_c01364{font-family:ff4_c01364;line-height:1.005371;font-style:normal;font-weight:normal;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_b417c138da2de80903edff71.woff2')format("woff");}.ff5_c01364{font-family:ff5_c01364;line-height:0.958008;font-style: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);}
.v0_c01364{vertical-align:0.000000px;}
.ls3_c01364{letter-spacing:0.000000px;}
.ls0_c01364{letter-spacing:0.010800px;}
.ls2_c01364{letter-spacing:0.012000px;}
.ls1_c01364{letter-spacing:0.014400px;}
.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;}
}
.ws0_c01364{word-spacing:-18.014400px;}
.ws1_c01364{word-spacing:-18.000000px;}
.ws2_c01364{word-spacing:0.000000px;}
._12_c01364{margin-left:-6.609600px;}
._2_c01364{margin-left:-4.687200px;}
._f_c01364{margin-left:-3.345600px;}
._4_c01364{margin-left:-2.229000px;}
._e_c01364{margin-left:-1.039200px;}
._0_c01364{width:1.998000px;}
._8_c01364{width:3.334800px;}
._c_c01364{width:5.457600px;}
._d_c01364{width:7.686600px;}
._13_c01364{width:8.845800px;}
._b_c01364{width:10.159200px;}
._10_c01364{width:12.184200px;}
._1_c01364{width:14.004600px;}
._7_c01364{width:15.207000px;}
._3_c01364{width:16.524000px;}
._5_c01364{width:19.549200px;}
._a_c01364{width:20.694600px;}
._6_c01364{width:21.830400px;}
._11_c01364{width:23.596800px;}
._9_c01364{width:25.138200px;}
.fc0_c01364{color:rgb(0,0,0);}
.fs3_c01364{font-size:60.000000px;}
.fs2_c01364{font-size:72.000000px;}
.fs1_c01364{font-size:84.000000px;}
.fs0_c01364{font-size:108.000000px;}
.y0_c01364{bottom:0.000000px;}
.y1a_c01364{bottom:67.500000px;}
.y18_c01364{bottom:162.000000px;}
.y17_c01364{bottom:183.000000px;}
.y16_c01364{bottom:225.000000px;}
.y15_c01364{bottom:246.000000px;}
.y14_c01364{bottom:288.000000px;}
.y13_c01364{bottom:309.000000px;}
.y12_c01364{bottom:355.500000px;}
.y11_c01364{bottom:397.500000px;}
.y10_c01364{bottom:418.500000px;}
.yf_c01364{bottom:460.500000px;}
.ye_c01364{bottom:481.500000px;}
.yd_c01364{bottom:523.500000px;}
.yc_c01364{bottom:544.500000px;}
.yb_c01364{bottom:586.500000px;}
.ya_c01364{bottom:607.500000px;}
.y9_c01364{bottom:628.500000px;}
.y8_c01364{bottom:673.500000px;}
.y7_c01364{bottom:715.500000px;}
.y6_c01364{bottom:736.500000px;}
.y5_c01364{bottom:783.000000px;}
.y4_c01364{bottom:808.500000px;}
.y3_c01364{bottom:834.000000px;}
.y2_c01364{bottom:892.500000px;}
.y1_c01364{bottom:1038.000000px;}
.y19_c01364{bottom:1194.000000px;}
.h5_c01364{height:44.208984px;}
.h4_c01364{height:52.242188px;}
.h2_c01364{height:58.898438px;}
.h3_c01364{height:65.144531px;}
.h1_c01364{height:102.304688px;}
.h0_c01364{height:1263.000000px;}
.w0_c01364{width:892.500000px;}
.x0_c01364{left:0.000000px;}
.x1_c01364{left:150.519750px;}
.x2_c01364{left:556.865850px;}
.x3_c01364{left:801.992850px;}
@media print{
.v0_c01364{vertical-align:0.000000pt;}
.ls3_c01364{letter-spacing:0.000000pt;}
.ls0_c01364{letter-spacing:0.009600pt;}
.ls2_c01364{letter-spacing:0.010667pt;}
.ls1_c01364{letter-spacing:0.012800pt;}
.ws0_c01364{word-spacing:-16.012800pt;}
.ws1_c01364{word-spacing:-16.000000pt;}
.ws2_c01364{word-spacing:0.000000pt;}
._12_c01364{margin-left:-5.875200pt;}
._2_c01364{margin-left:-4.166400pt;}
._f_c01364{margin-left:-2.973867pt;}
._4_c01364{margin-left:-1.981333pt;}
._e_c01364{margin-left:-0.923733pt;}
._0_c01364{width:1.776000pt;}
._8_c01364{width:2.964267pt;}
._c_c01364{width:4.851200pt;}
._d_c01364{width:6.832533pt;}
._13_c01364{width:7.862933pt;}
._b_c01364{width:9.030400pt;}
._10_c01364{width:10.830400pt;}
._1_c01364{width:12.448533pt;}
._7_c01364{width:13.517333pt;}
._3_c01364{width:14.688000pt;}
._5_c01364{width:17.377067pt;}
._a_c01364{width:18.395200pt;}
._6_c01364{width:19.404800pt;}
._11_c01364{width:20.974933pt;}
._9_c01364{width:22.345067pt;}
.fs3_c01364{font-size:53.333333pt;}
.fs2_c01364{font-size:64.000000pt;}
.fs1_c01364{font-size:74.666667pt;}
.fs0_c01364{font-size:96.000000pt;}
.y0_c01364{bottom:0.000000pt;}
.y1a_c01364{bottom:60.000000pt;}
.y18_c01364{bottom:144.000000pt;}
.y17_c01364{bottom:162.666667pt;}
.y16_c01364{bottom:200.000000pt;}
.y15_c01364{bottom:218.666667pt;}
.y14_c01364{bottom:256.000000pt;}
.y13_c01364{bottom:274.666667pt;}
.y12_c01364{bottom:316.000000pt;}
.y11_c01364{bottom:353.333333pt;}
.y10_c01364{bottom:372.000000pt;}
.yf_c01364{bottom:409.333333pt;}
.ye_c01364{bottom:428.000000pt;}
.yd_c01364{bottom:465.333333pt;}
.yc_c01364{bottom:484.000000pt;}
.yb_c01364{bottom:521.333333pt;}
.ya_c01364{bottom:540.000000pt;}
.y9_c01364{bottom:558.666667pt;}
.y8_c01364{bottom:598.666667pt;}
.y7_c01364{bottom:636.000000pt;}
.y6_c01364{bottom:654.666667pt;}
.y5_c01364{bottom:696.000000pt;}
.y4_c01364{bottom:718.666667pt;}
.y3_c01364{bottom:741.333333pt;}
.y2_c01364{bottom:793.333333pt;}
.y1_c01364{bottom:922.666667pt;}
.y19_c01364{bottom:1061.333333pt;}
.h5_c01364{height:39.296875pt;}
.h4_c01364{height:46.437500pt;}
.h2_c01364{height:52.354167pt;}
.h3_c01364{height:57.906250pt;}
.h1_c01364{height:90.937500pt;}
.h0_c01364{height:1122.666667pt;}
.w0_c01364{width:793.333333pt;}
.x0_c01364{left:0.000000pt;}
.x1_c01364{left:133.795333pt;}
.x2_c01364{left:494.991867pt;}
.x3_c01364{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_27a5914c69348ee871982d5e.woff2')format("woff");}.ff1_c01365{font-family:ff1_c01365;line-height:0.714355;font-style:normal;font-weight:normal;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_81211d080a8c426abd773ef4.woff2')format("woff");}.ff2_c01365{font-family:ff2_c01365;line-height:1.187012;font-style:normal;font-weight:normal;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_4ac7e9dd024bc4245b3a0231.woff2')format("woff");}.ff3_c01365{font-family:ff3_c01365;line-height:1.183105;font-style:normal;font-weight:normal;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_008319b82fcd245ec276d837.woff2')format("woff");}.ff4_c01365{font-family:ff4_c01365;line-height:0.756836;font-style:normal;font-weight:normal;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_cf5dd6b166ad103e2c2577e4.woff2')format("woff");}.ff5_c01365{font-family:ff5_c01365;line-height:1.155762;font-style: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);}
.v0_c01365{vertical-align:0.000000px;}
.ls1_c01365{letter-spacing:0.000000px;}
.ls2_c01365{letter-spacing:0.012000px;}
.ls0_c01365{letter-spacing:0.014400px;}
.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;}
}
.ws2_c01365{word-spacing:-18.014400px;}
.ws1_c01365{word-spacing:-18.000000px;}
.ws3_c01365{word-spacing:0.000000px;}
.ws0_c01365{word-spacing:20.916660px;}
._1_c01365{margin-left:-7.977600px;}
._2_c01365{margin-left:-6.638400px;}
._19_c01365{margin-left:-5.342400px;}
._5_c01365{margin-left:-4.003200px;}
._0_c01365{margin-left:-2.728800px;}
._6_c01365{margin-left:-1.382400px;}
._9_c01365{width:1.375200px;}
._3_c01365{width:2.484000px;}
._b_c01365{width:4.161600px;}
._1a_c01365{width:5.170320px;}
._d_c01365{width:6.306960px;}
._e_c01365{width:8.128800px;}
._17_c01365{width:10.087200px;}
._18_c01365{width:11.196000px;}
._15_c01365{width:12.549600px;}
._1b_c01365{width:14.580960px;}
._16_c01365{width:16.005600px;}
._11_c01365{width:19.411200px;}
._1c_c01365{width:20.656800px;}
._f_c01365{width:22.140000px;}
._14_c01365{width:23.551200px;}
._10_c01365{width:24.940800px;}
._12_c01365{width:26.316960px;}
._13_c01365{width:27.553440px;}
._c_c01365{width:28.792800px;}
._4_c01365{width:30.448800px;}
._a_c01365{width:31.564800px;}
._8_c01365{width:32.954400px;}
._7_c01365{width:34.344000px;}
.fc0_c01365{color:rgb(0,0,0);}
.fs2_c01365{font-size:60.000000px;}
.fs1_c01365{font-size:72.000000px;}
.fs0_c01365{font-size:84.000000px;}
.y0_c01365{bottom:0.000000px;}
.y21_c01365{bottom:67.500000px;}
.y1f_c01365{bottom:136.500000px;}
.y1e_c01365{bottom:157.500000px;}
.y1d_c01365{bottom:178.500000px;}
.y1c_c01365{bottom:220.500000px;}
.y1b_c01365{bottom:262.500000px;}
.y1a_c01365{bottom:283.500000px;}
.y19_c01365{bottom:325.500000px;}
.y18_c01365{bottom:346.500000px;}
.y17_c01365{bottom:388.500000px;}
.y16_c01365{bottom:409.500000px;}
.y15_c01365{bottom:451.500000px;}
.y14_c01365{bottom:493.500000px;}
.y13_c01365{bottom:514.500000px;}
.y12_c01365{bottom:535.500000px;}
.y11_c01365{bottom:577.500000px;}
.y10_c01365{bottom:598.500000px;}
.yf_c01365{bottom:640.500000px;}
.ye_c01365{bottom:682.500000px;}
.yd_c01365{bottom:703.500000px;}
.yc_c01365{bottom:724.500000px;}
.yb_c01365{bottom:765.000000px;}
.ya_c01365{bottom:786.000000px;}
.y9_c01365{bottom:828.000000px;}
.y8_c01365{bottom:849.000000px;}
.y7_c01365{bottom:870.000000px;}
.y6_c01365{bottom:891.000000px;}
.y5_c01365{bottom:933.000000px;}
.y4_c01365{bottom:954.000000px;}
.y3_c01365{bottom:975.000000px;}
.y2_c01365{bottom:1017.000000px;}
.y1_c01365{bottom:1072.500000px;}
.y20_c01365{bottom:1194.000000px;}
.h4_c01365{height:44.208984px;}
.h3_c01365{height:56.074219px;}
.h1_c01365{height:58.898438px;}
.h2_c01365{height:65.144531px;}
.h0_c01365{height:1263.000000px;}
.w0_c01365{width:892.500000px;}
.x0_c01365{left:0.000000px;}
.x1_c01365{left:65.480310px;}
@media print{
.v0_c01365{vertical-align:0.000000pt;}
.ls1_c01365{letter-spacing:0.000000pt;}
.ls2_c01365{letter-spacing:0.010667pt;}
.ls0_c01365{letter-spacing:0.012800pt;}
.ws2_c01365{word-spacing:-16.012800pt;}
.ws1_c01365{word-spacing:-16.000000pt;}
.ws3_c01365{word-spacing:0.000000pt;}
.ws0_c01365{word-spacing:18.592587pt;}
._1_c01365{margin-left:-7.091200pt;}
._2_c01365{margin-left:-5.900800pt;}
._19_c01365{margin-left:-4.748800pt;}
._5_c01365{margin-left:-3.558400pt;}
._0_c01365{margin-left:-2.425600pt;}
._6_c01365{margin-left:-1.228800pt;}
._9_c01365{width:1.222400pt;}
._3_c01365{width:2.208000pt;}
._b_c01365{width:3.699200pt;}
._1a_c01365{width:4.595840pt;}
._d_c01365{width:5.606187pt;}
._e_c01365{width:7.225600pt;}
._17_c01365{width:8.966400pt;}
._18_c01365{width:9.952000pt;}
._15_c01365{width:11.155200pt;}
._1b_c01365{width:12.960853pt;}
._16_c01365{width:14.227200pt;}
._11_c01365{width:17.254400pt;}
._1c_c01365{width:18.361600pt;}
._f_c01365{width:19.680000pt;}
._14_c01365{width:20.934400pt;}
._10_c01365{width:22.169600pt;}
._12_c01365{width:23.392853pt;}
._13_c01365{width:24.491947pt;}
._c_c01365{width:25.593600pt;}
._4_c01365{width:27.065600pt;}
._a_c01365{width:28.057600pt;}
._8_c01365{width:29.292800pt;}
._7_c01365{width:30.528000pt;}
.fs2_c01365{font-size:53.333333pt;}
.fs1_c01365{font-size:64.000000pt;}
.fs0_c01365{font-size:74.666667pt;}
.y0_c01365{bottom:0.000000pt;}
.y21_c01365{bottom:60.000000pt;}
.y1f_c01365{bottom:121.333333pt;}
.y1e_c01365{bottom:140.000000pt;}
.y1d_c01365{bottom:158.666667pt;}
.y1c_c01365{bottom:196.000000pt;}
.y1b_c01365{bottom:233.333333pt;}
.y1a_c01365{bottom:252.000000pt;}
.y19_c01365{bottom:289.333333pt;}
.y18_c01365{bottom:308.000000pt;}
.y17_c01365{bottom:345.333333pt;}
.y16_c01365{bottom:364.000000pt;}
.y15_c01365{bottom:401.333333pt;}
.y14_c01365{bottom:438.666667pt;}
.y13_c01365{bottom:457.333333pt;}
.y12_c01365{bottom:476.000000pt;}
.y11_c01365{bottom:513.333333pt;}
.y10_c01365{bottom:532.000000pt;}
.yf_c01365{bottom:569.333333pt;}
.ye_c01365{bottom:606.666667pt;}
.yd_c01365{bottom:625.333333pt;}
.yc_c01365{bottom:644.000000pt;}
.yb_c01365{bottom:680.000000pt;}
.ya_c01365{bottom:698.666667pt;}
.y9_c01365{bottom:736.000000pt;}
.y8_c01365{bottom:754.666667pt;}
.y7_c01365{bottom:773.333333pt;}
.y6_c01365{bottom:792.000000pt;}
.y5_c01365{bottom:829.333333pt;}
.y4_c01365{bottom:848.000000pt;}
.y3_c01365{bottom:866.666667pt;}
.y2_c01365{bottom:904.000000pt;}
.y1_c01365{bottom:953.333333pt;}
.y20_c01365{bottom:1061.333333pt;}
.h4_c01365{height:39.296875pt;}
.h3_c01365{height:49.843750pt;}
.h1_c01365{height:52.354167pt;}
.h2_c01365{height:57.906250pt;}
.h0_c01365{height:1122.666667pt;}
.w0_c01365{width:793.333333pt;}
.x0_c01365{left:0.000000pt;}
.x1_c01365{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a3a81277e5f319aa6d279c52.woff2')format("woff");}.ff1_c01366{font-family:ff1_c01366;line-height:1.187012;font-style:normal;font-weight:normal;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_e5ec748d2b74c368ab89d522.woff2')format("woff");}.ff2_c01366{font-family:ff2_c01366;line-height:1.183105;font-style:normal;font-weight:normal;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_06918e8890e229346b34d624.woff2')format("woff");}.ff3_c01366{font-family:ff3_c01366;line-height:1.173828;font-style:normal;font-weight:normal;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_05e1e332bd4cf2133d5818f7.woff2')format("woff");}.ff4_c01366{font-family:ff4_c01366;line-height:0.958008;font-style: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;}
.ls2_c01366{letter-spacing:0.000000px;}
.ls1_c01366{letter-spacing:0.012000px;}
.ls0_c01366{letter-spacing:0.014400px;}
.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:-18.014400px;}
.ws1_c01366{word-spacing:0.000000px;}
._13_c01366{margin-left:-7.992000px;}
._6_c01366{margin-left:-6.609600px;}
._e_c01366{margin-left:-5.356800px;}
._5_c01366{margin-left:-3.247200px;}
._1_c01366{margin-left:-2.160000px;}
._3_c01366{margin-left:-1.027800px;}
._0_c01366{width:1.195200px;}
._2_c01366{width:2.779200px;}
._4_c01366{width:3.895200px;}
._d_c01366{width:5.017200px;}
._f_c01366{width:6.604200px;}
._c_c01366{width:7.719000px;}
._11_c01366{width:10.378200px;}
._14_c01366{width:11.641200px;}
._10_c01366{width:13.470600px;}
._12_c01366{width:15.480000px;}
._b_c01366{width:19.843200px;}
._8_c01366{width:22.528800px;}
._9_c01366{width:23.731200px;}
._a_c01366{width:25.687800px;}
._7_c01366{width:26.949600px;}
.fc0_c01366{color:rgb(0,0,0);}
.fs2_c01366{font-size:60.000000px;}
.fs0_c01366{font-size:72.000000px;}
.fs1_c01366{font-size:84.000000px;}
.y0_c01366{bottom:0.000000px;}
.y1d_c01366{bottom:67.500000px;}
.y1b_c01366{bottom:171.000000px;}
.y1a_c01366{bottom:241.500000px;}
.y19_c01366{bottom:309.000000px;}
.y18_c01366{bottom:330.000000px;}
.y17_c01366{bottom:372.000000px;}
.y16_c01366{bottom:393.000000px;}
.y15_c01366{bottom:435.000000px;}
.y14_c01366{bottom:456.000000px;}
.y13_c01366{bottom:477.000000px;}
.y12_c01366{bottom:519.000000px;}
.y11_c01366{bottom:540.000000px;}
.y10_c01366{bottom:561.000000px;}
.yf_c01366{bottom:601.500000px;}
.ye_c01366{bottom:640.500000px;}
.yd_c01366{bottom:676.500000px;}
.yc_c01366{bottom:718.500000px;}
.yb_c01366{bottom:739.500000px;}
.ya_c01366{bottom:781.500000px;}
.y9_c01366{bottom:823.500000px;}
.y8_c01366{bottom:844.500000px;}
.y7_c01366{bottom:886.500000px;}
.y6_c01366{bottom:928.500000px;}
.y5_c01366{bottom:970.500000px;}
.y4_c01366{bottom:991.500000px;}
.y3_c01366{bottom:1012.500000px;}
.y2_c01366{bottom:1054.500000px;}
.y1_c01366{bottom:1075.500000px;}
.y1c_c01366{bottom:1194.000000px;}
.h4_c01366{height:44.208984px;}
.h2_c01366{height:65.039062px;}
.h1_c01366{height:65.144531px;}
.h3_c01366{height:76.001953px;}
.h0_c01366{height:1263.000000px;}
.w0_c01366{width:892.500000px;}
.x0_c01366{left:0.000000px;}
.x1_c01366{left:150.519750px;}
.x2_c01366{left:556.865850px;}
.x3_c01366{left:801.992850px;}
@media print{
.v0_c01366{vertical-align:0.000000pt;}
.ls2_c01366{letter-spacing:0.000000pt;}
.ls1_c01366{letter-spacing:0.010667pt;}
.ls0_c01366{letter-spacing:0.012800pt;}
.ws0_c01366{word-spacing:-16.012800pt;}
.ws1_c01366{word-spacing:0.000000pt;}
._13_c01366{margin-left:-7.104000pt;}
._6_c01366{margin-left:-5.875200pt;}
._e_c01366{margin-left:-4.761600pt;}
._5_c01366{margin-left:-2.886400pt;}
._1_c01366{margin-left:-1.920000pt;}
._3_c01366{margin-left:-0.913600pt;}
._0_c01366{width:1.062400pt;}
._2_c01366{width:2.470400pt;}
._4_c01366{width:3.462400pt;}
._d_c01366{width:4.459733pt;}
._f_c01366{width:5.870400pt;}
._c_c01366{width:6.861333pt;}
._11_c01366{width:9.225067pt;}
._14_c01366{width:10.347733pt;}
._10_c01366{width:11.973867pt;}
._12_c01366{width:13.760000pt;}
._b_c01366{width:17.638400pt;}
._8_c01366{width:20.025600pt;}
._9_c01366{width:21.094400pt;}
._a_c01366{width:22.833600pt;}
._7_c01366{width:23.955200pt;}
.fs2_c01366{font-size:53.333333pt;}
.fs0_c01366{font-size:64.000000pt;}
.fs1_c01366{font-size:74.666667pt;}
.y0_c01366{bottom:0.000000pt;}
.y1d_c01366{bottom:60.000000pt;}
.y1b_c01366{bottom:152.000000pt;}
.y1a_c01366{bottom:214.666667pt;}
.y19_c01366{bottom:274.666667pt;}
.y18_c01366{bottom:293.333333pt;}
.y17_c01366{bottom:330.666667pt;}
.y16_c01366{bottom:349.333333pt;}
.y15_c01366{bottom:386.666667pt;}
.y14_c01366{bottom:405.333333pt;}
.y13_c01366{bottom:424.000000pt;}
.y12_c01366{bottom:461.333333pt;}
.y11_c01366{bottom:480.000000pt;}
.y10_c01366{bottom:498.666667pt;}
.yf_c01366{bottom:534.666667pt;}
.ye_c01366{bottom:569.333333pt;}
.yd_c01366{bottom:601.333333pt;}
.yc_c01366{bottom:638.666667pt;}
.yb_c01366{bottom:657.333333pt;}
.ya_c01366{bottom:694.666667pt;}
.y9_c01366{bottom:732.000000pt;}
.y8_c01366{bottom:750.666667pt;}
.y7_c01366{bottom:788.000000pt;}
.y6_c01366{bottom:825.333333pt;}
.y5_c01366{bottom:862.666667pt;}
.y4_c01366{bottom:881.333333pt;}
.y3_c01366{bottom:900.000000pt;}
.y2_c01366{bottom:937.333333pt;}
.y1_c01366{bottom:956.000000pt;}
.y1c_c01366{bottom:1061.333333pt;}
.h4_c01366{height:39.296875pt;}
.h2_c01366{height:57.812500pt;}
.h1_c01366{height:57.906250pt;}
.h3_c01366{height:67.557292pt;}
.h0_c01366{height:1122.666667pt;}
.w0_c01366{width:793.333333pt;}
.x0_c01366{left:0.000000pt;}
.x1_c01366{left:133.795333pt;}
.x2_c01366{left:494.991867pt;}
.x3_c01366{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_97d9b24761a82534b478c661.woff2')format("woff");}.ff1_c01367{font-family:ff1_c01367;line-height:1.187012;font-style:normal;font-weight:normal;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_bed811bc0e8ffe8f835f38d5.woff2')format("woff");}.ff2_c01367{font-family:ff2_c01367;line-height:1.183105;font-style:normal;font-weight:normal;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_5ab0526670e8468ac0114215.woff2')format("woff");}.ff3_c01367{font-family:ff3_c01367;line-height:0.717285;font-style:normal;font-weight:normal;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_4f6755f075f5056b139fe835.woff2')format("woff");}.ff4_c01367{font-family:ff4_c01367;line-height:0.756836;font-style:normal;font-weight:normal;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_2fc386ffd34b4394d0350b84.woff2')format("woff");}.ff5_c01367{font-family:ff5_c01367;line-height:1.155762;font-style: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);}
.v0_c01367{vertical-align:0.000000px;}
.ls2_c01367{letter-spacing:-0.086400px;}
.ls1_c01367{letter-spacing:0.000000px;}
.ls3_c01367{letter-spacing:0.012000px;}
.ls0_c01367{letter-spacing:0.014400px;}
.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;}
}
.ws0_c01367{word-spacing:-18.014400px;}
.ws1_c01367{word-spacing:0.000000px;}
._2_c01367{margin-left:-7.992000px;}
._0_c01367{margin-left:-6.631200px;}
._12_c01367{margin-left:-5.342400px;}
._d_c01367{margin-left:-3.981600px;}
._10_c01367{margin-left:-2.657640px;}
._1_c01367{margin-left:-1.466040px;}
._3_c01367{width:1.944000px;}
._5_c01367{width:2.980800px;}
._7_c01367{width:4.867200px;}
._c_c01367{width:6.216360px;}
._8_c01367{width:8.092800px;}
._6_c01367{width:9.114360px;}
._4_c01367{width:10.973640px;}
._b_c01367{width:12.002400px;}
._9_c01367{width:13.095960px;}
._a_c01367{width:14.490840px;}
._e_c01367{width:16.218840px;}
._18_c01367{width:19.811640px;}
._16_c01367{width:21.132840px;}
._19_c01367{width:22.204800px;}
._17_c01367{width:23.680800px;}
._15_c01367{width:27.355560px;}
._f_c01367{width:29.397600px;}
._11_c01367{width:30.765600px;}
._14_c01367{width:32.718480px;}
._13_c01367{width:36.943200px;}
.fc0_c01367{color:rgb(0,0,0);}
.fs2_c01367{font-size:60.000000px;}
.fs0_c01367{font-size:72.000000px;}
.fs1_c01367{font-size:84.000000px;}
.y0_c01367{bottom:0.000000px;}
.y1e_c01367{bottom:67.500000px;}
.y1c_c01367{bottom:150.000000px;}
.y1b_c01367{bottom:171.000000px;}
.y1a_c01367{bottom:232.500000px;}
.y19_c01367{bottom:300.000000px;}
.y18_c01367{bottom:321.000000px;}
.y17_c01367{bottom:342.000000px;}
.y16_c01367{bottom:384.000000px;}
.y15_c01367{bottom:405.000000px;}
.y14_c01367{bottom:426.000000px;}
.y13_c01367{bottom:468.000000px;}
.y12_c01367{bottom:510.000000px;}
.y11_c01367{bottom:531.000000px;}
.y10_c01367{bottom:552.000000px;}
.yf_c01367{bottom:594.000000px;}
.ye_c01367{bottom:615.000000px;}
.yd_c01367{bottom:636.000000px;}
.yc_c01367{bottom:678.000000px;}
.yb_c01367{bottom:699.000000px;}
.ya_c01367{bottom:720.000000px;}
.y9_c01367{bottom:790.500000px;}
.y8_c01367{bottom:865.500000px;}
.y7_c01367{bottom:886.500000px;}
.y6_c01367{bottom:928.500000px;}
.y5_c01367{bottom:949.500000px;}
.y4_c01367{bottom:991.500000px;}
.y3_c01367{bottom:1012.500000px;}
.y2_c01367{bottom:1054.500000px;}
.y1_c01367{bottom:1096.500000px;}
.y1d_c01367{bottom:1194.000000px;}
.h4_c01367{height:44.208984px;}
.h3_c01367{height:56.074219px;}
.h2_c01367{height:58.898438px;}
.h1_c01367{height:65.144531px;}
.h0_c01367{height:1263.000000px;}
.w0_c01367{width:892.500000px;}
.x0_c01367{left:0.000000px;}
.x1_c01367{left:65.480310px;}
@media print{
.v0_c01367{vertical-align:0.000000pt;}
.ls2_c01367{letter-spacing:-0.076800pt;}
.ls1_c01367{letter-spacing:0.000000pt;}
.ls3_c01367{letter-spacing:0.010667pt;}
.ls0_c01367{letter-spacing:0.012800pt;}
.ws0_c01367{word-spacing:-16.012800pt;}
.ws1_c01367{word-spacing:0.000000pt;}
._2_c01367{margin-left:-7.104000pt;}
._0_c01367{margin-left:-5.894400pt;}
._12_c01367{margin-left:-4.748800pt;}
._d_c01367{margin-left:-3.539200pt;}
._10_c01367{margin-left:-2.362347pt;}
._1_c01367{margin-left:-1.303147pt;}
._3_c01367{width:1.728000pt;}
._5_c01367{width:2.649600pt;}
._7_c01367{width:4.326400pt;}
._c_c01367{width:5.525653pt;}
._8_c01367{width:7.193600pt;}
._6_c01367{width:8.101653pt;}
._4_c01367{width:9.754347pt;}
._b_c01367{width:10.668800pt;}
._9_c01367{width:11.640853pt;}
._a_c01367{width:12.880747pt;}
._e_c01367{width:14.416747pt;}
._18_c01367{width:17.610347pt;}
._16_c01367{width:18.784747pt;}
._19_c01367{width:19.737600pt;}
._17_c01367{width:21.049600pt;}
._15_c01367{width:24.316053pt;}
._f_c01367{width:26.131200pt;}
._11_c01367{width:27.347200pt;}
._14_c01367{width:29.083093pt;}
._13_c01367{width:32.838400pt;}
.fs2_c01367{font-size:53.333333pt;}
.fs0_c01367{font-size:64.000000pt;}
.fs1_c01367{font-size:74.666667pt;}
.y0_c01367{bottom:0.000000pt;}
.y1e_c01367{bottom:60.000000pt;}
.y1c_c01367{bottom:133.333333pt;}
.y1b_c01367{bottom:152.000000pt;}
.y1a_c01367{bottom:206.666667pt;}
.y19_c01367{bottom:266.666667pt;}
.y18_c01367{bottom:285.333333pt;}
.y17_c01367{bottom:304.000000pt;}
.y16_c01367{bottom:341.333333pt;}
.y15_c01367{bottom:360.000000pt;}
.y14_c01367{bottom:378.666667pt;}
.y13_c01367{bottom:416.000000pt;}
.y12_c01367{bottom:453.333333pt;}
.y11_c01367{bottom:472.000000pt;}
.y10_c01367{bottom:490.666667pt;}
.yf_c01367{bottom:528.000000pt;}
.ye_c01367{bottom:546.666667pt;}
.yd_c01367{bottom:565.333333pt;}
.yc_c01367{bottom:602.666667pt;}
.yb_c01367{bottom:621.333333pt;}
.ya_c01367{bottom:640.000000pt;}
.y9_c01367{bottom:702.666667pt;}
.y8_c01367{bottom:769.333333pt;}
.y7_c01367{bottom:788.000000pt;}
.y6_c01367{bottom:825.333333pt;}
.y5_c01367{bottom:844.000000pt;}
.y4_c01367{bottom:881.333333pt;}
.y3_c01367{bottom:900.000000pt;}
.y2_c01367{bottom:937.333333pt;}
.y1_c01367{bottom:974.666667pt;}
.y1d_c01367{bottom:1061.333333pt;}
.h4_c01367{height:39.296875pt;}
.h3_c01367{height:49.843750pt;}
.h2_c01367{height:52.354167pt;}
.h1_c01367{height:57.906250pt;}
.h0_c01367{height:1122.666667pt;}
.w0_c01367{width:793.333333pt;}
.x0_c01367{left:0.000000pt;}
.x1_c01367{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c05ac45974cfc33f7c96823d.woff2')format("woff");}.ff1_c01368{font-family:ff1_c01368;line-height:1.187012;font-style:normal;font-weight:normal;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_9cd80c2d644f4b5cf52510d6.woff2')format("woff");}.ff2_c01368{font-family:ff2_c01368;line-height:1.005371;font-style:normal;font-weight:normal;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_638d8eea6a6f5cbaef33aa34.woff2')format("woff");}.ff3_c01368{font-family:ff3_c01368;line-height:0.958008;font-style: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);}
.v0_c01368{vertical-align:0.000000px;}
.ls1_c01368{letter-spacing:0.000000px;}
.ls0_c01368{letter-spacing:0.012000px;}
.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;}
}
.ws0_c01368{word-spacing:-18.000000px;}
.ws1_c01368{word-spacing:0.000000px;}
._2_c01368{margin-left:-8.020800px;}
._6_c01368{margin-left:-6.781200px;}
._3_c01368{margin-left:-5.407200px;}
._f_c01368{margin-left:-3.938400px;}
._0_c01368{margin-left:-2.692800px;}
._1_c01368{margin-left:-1.324800px;}
._4_c01368{width:1.756800px;}
._c_c01368{width:2.822400px;}
._9_c01368{width:4.917600px;}
._a_c01368{width:6.240600px;}
._b_c01368{width:7.761600px;}
._d_c01368{width:9.592200px;}
._e_c01368{width:11.599200px;}
._10_c01368{width:12.772800px;}
._11_c01368{width:14.299200px;}
._5_c01368{width:16.084800px;}
._7_c01368{width:19.164000px;}
._8_c01368{width:20.325600px;}
._14_c01368{width:25.783200px;}
._13_c01368{width:27.619200px;}
._12_c01368{width:30.411600px;}
.fc0_c01368{color:rgb(0,0,0);}
.fs1_c01368{font-size:60.000000px;}
.fs0_c01368{font-size:72.000000px;}
.y0_c01368{bottom:0.000000px;}
.y1d_c01368{bottom:67.500000px;}
.y1b_c01368{bottom:196.500000px;}
.y1a_c01368{bottom:217.500000px;}
.y19_c01368{bottom:259.500000px;}
.y18_c01368{bottom:301.500000px;}
.y17_c01368{bottom:343.500000px;}
.y16_c01368{bottom:364.500000px;}
.y15_c01368{bottom:406.500000px;}
.y14_c01368{bottom:427.500000px;}
.y13_c01368{bottom:469.500000px;}
.y12_c01368{bottom:490.500000px;}
.y11_c01368{bottom:511.500000px;}
.y10_c01368{bottom:553.500000px;}
.yf_c01368{bottom:574.500000px;}
.ye_c01368{bottom:595.500000px;}
.yd_c01368{bottom:637.500000px;}
.yc_c01368{bottom:679.500000px;}
.yb_c01368{bottom:721.500000px;}
.ya_c01368{bottom:742.500000px;}
.y9_c01368{bottom:781.500000px;}
.y8_c01368{bottom:802.500000px;}
.y7_c01368{bottom:844.500000px;}
.y6_c01368{bottom:865.500000px;}
.y5_c01368{bottom:907.500000px;}
.y4_c01368{bottom:949.500000px;}
.y3_c01368{bottom:991.500000px;}
.y2_c01368{bottom:1033.500000px;}
.y1_c01368{bottom:1075.500000px;}
.y1c_c01368{bottom:1194.000000px;}
.h2_c01368{height:44.208984px;}
.h1_c01368{height:65.144531px;}
.h0_c01368{height:1263.000000px;}
.w0_c01368{width:892.500000px;}
.x0_c01368{left:0.000000px;}
.x1_c01368{left:150.519750px;}
.x2_c01368{left:556.865850px;}
.x3_c01368{left:801.992850px;}
@media print{
.v0_c01368{vertical-align:0.000000pt;}
.ls1_c01368{letter-spacing:0.000000pt;}
.ls0_c01368{letter-spacing:0.010667pt;}
.ws0_c01368{word-spacing:-16.000000pt;}
.ws1_c01368{word-spacing:0.000000pt;}
._2_c01368{margin-left:-7.129600pt;}
._6_c01368{margin-left:-6.027733pt;}
._3_c01368{margin-left:-4.806400pt;}
._f_c01368{margin-left:-3.500800pt;}
._0_c01368{margin-left:-2.393600pt;}
._1_c01368{margin-left:-1.177600pt;}
._4_c01368{width:1.561600pt;}
._c_c01368{width:2.508800pt;}
._9_c01368{width:4.371200pt;}
._a_c01368{width:5.547200pt;}
._b_c01368{width:6.899200pt;}
._d_c01368{width:8.526400pt;}
._e_c01368{width:10.310400pt;}
._10_c01368{width:11.353600pt;}
._11_c01368{width:12.710400pt;}
._5_c01368{width:14.297600pt;}
._7_c01368{width:17.034667pt;}
._8_c01368{width:18.067200pt;}
._14_c01368{width:22.918400pt;}
._13_c01368{width:24.550400pt;}
._12_c01368{width:27.032533pt;}
.fs1_c01368{font-size:53.333333pt;}
.fs0_c01368{font-size:64.000000pt;}
.y0_c01368{bottom:0.000000pt;}
.y1d_c01368{bottom:60.000000pt;}
.y1b_c01368{bottom:174.666667pt;}
.y1a_c01368{bottom:193.333333pt;}
.y19_c01368{bottom:230.666667pt;}
.y18_c01368{bottom:268.000000pt;}
.y17_c01368{bottom:305.333333pt;}
.y16_c01368{bottom:324.000000pt;}
.y15_c01368{bottom:361.333333pt;}
.y14_c01368{bottom:380.000000pt;}
.y13_c01368{bottom:417.333333pt;}
.y12_c01368{bottom:436.000000pt;}
.y11_c01368{bottom:454.666667pt;}
.y10_c01368{bottom:492.000000pt;}
.yf_c01368{bottom:510.666667pt;}
.ye_c01368{bottom:529.333333pt;}
.yd_c01368{bottom:566.666667pt;}
.yc_c01368{bottom:604.000000pt;}
.yb_c01368{bottom:641.333333pt;}
.ya_c01368{bottom:660.000000pt;}
.y9_c01368{bottom:694.666667pt;}
.y8_c01368{bottom:713.333333pt;}
.y7_c01368{bottom:750.666667pt;}
.y6_c01368{bottom:769.333333pt;}
.y5_c01368{bottom:806.666667pt;}
.y4_c01368{bottom:844.000000pt;}
.y3_c01368{bottom:881.333333pt;}
.y2_c01368{bottom:918.666667pt;}
.y1_c01368{bottom:956.000000pt;}
.y1c_c01368{bottom:1061.333333pt;}
.h2_c01368{height:39.296875pt;}
.h1_c01368{height:57.906250pt;}
.h0_c01368{height:1122.666667pt;}
.w0_c01368{width:793.333333pt;}
.x0_c01368{left:0.000000pt;}
.x1_c01368{left:133.795333pt;}
.x2_c01368{left:494.991867pt;}
.x3_c01368{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_dbf41840bd2ac314a55cdc07.woff2')format("woff");}.ff1_c01369{font-family:ff1_c01369;line-height:1.100586;font-style:normal;font-weight:normal;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_4827f2bca65a391e1ebf1ce6.woff2')format("woff");}.ff2_c01369{font-family:ff2_c01369;line-height:1.010254;font-style:normal;font-weight:normal;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_96b592e385be0a44afd6c3bc.woff2')format("woff");}.ff3_c01369{font-family:ff3_c01369;line-height:1.005371;font-style:normal;font-weight:normal;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_e8649d34ecc5fc8786677be9.woff2')format("woff");}.ff4_c01369{font-family:ff4_c01369;line-height:0.756836;font-style:normal;font-weight:normal;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_02c489fa1b50c682198fd2f8.woff2')format("woff");}.ff5_c01369{font-family:ff5_c01369;line-height:1.155762;font-style: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);}
.v0_c01369{vertical-align:0.000000px;}
.ls0_c01369{letter-spacing:0.000000px;}
.ls1_c01369{letter-spacing:0.012000px;}
.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;}
}
.ws0_c01369{word-spacing:-18.000000px;}
.ws1_c01369{word-spacing:0.000000px;}
._7_c01369{margin-left:-8.155920px;}
._6_c01369{margin-left:-6.409200px;}
._12_c01369{margin-left:-4.745340px;}
._5_c01369{margin-left:-2.962740px;}
._e_c01369{margin-left:-1.277040px;}
._1_c01369{width:1.778820px;}
._0_c01369{width:3.486660px;}
._8_c01369{width:4.948140px;}
._17_c01369{width:6.972660px;}
._13_c01369{width:8.705220px;}
._16_c01369{width:9.962940px;}
._14_c01369{width:11.670780px;}
._15_c01369{width:13.449600px;}
._c_c01369{width:14.543580px;}
._b_c01369{width:15.605760px;}
._10_c01369{width:16.831740px;}
._d_c01369{width:20.001780px;}
._f_c01369{width:21.849420px;}
._11_c01369{width:23.252340px;}
._9_c01369{width:30.002400px;}
._a_c01369{width:36.000000px;}
._3_c01369{width:40.217880px;}
._2_c01369{width:41.899200px;}
._4_c01369{width:43.652160px;}
.fc0_c01369{color:rgb(0,0,0);}
.fs2_c01369{font-size:60.000000px;}
.fs1_c01369{font-size:72.000000px;}
.fs0_c01369{font-size:84.000000px;}
.y0_c01369{bottom:0.000000px;}
.y1c_c01369{bottom:67.500000px;}
.y1a_c01369{bottom:141.000000px;}
.y19_c01369{bottom:183.000000px;}
.y18_c01369{bottom:225.000000px;}
.y17_c01369{bottom:267.000000px;}
.y16_c01369{bottom:288.000000px;}
.y15_c01369{bottom:330.000000px;}
.y14_c01369{bottom:351.000000px;}
.y13_c01369{bottom:393.000000px;}
.y12_c01369{bottom:435.000000px;}
.y11_c01369{bottom:456.000000px;}
.y10_c01369{bottom:498.000000px;}
.yf_c01369{bottom:540.000000px;}
.ye_c01369{bottom:582.000000px;}
.yd_c01369{bottom:624.000000px;}
.yc_c01369{bottom:645.000000px;}
.yb_c01369{bottom:708.000000px;}
.ya_c01369{bottom:774.000000px;}
.y9_c01369{bottom:816.000000px;}
.y8_c01369{bottom:837.000000px;}
.y7_c01369{bottom:879.000000px;}
.y6_c01369{bottom:921.000000px;}
.y5_c01369{bottom:942.000000px;}
.y4_c01369{bottom:984.000000px;}
.y3_c01369{bottom:1005.000000px;}
.y2_c01369{bottom:1068.000000px;}
.y1_c01369{bottom:1093.500000px;}
.y1b_c01369{bottom:1194.000000px;}
.h4_c01369{height:44.208984px;}
.h2_c01369{height:52.417969px;}
.h3_c01369{height:56.074219px;}
.h1_c01369{height:76.001953px;}
.h0_c01369{height:1263.000000px;}
.w0_c01369{width:892.500000px;}
.x0_c01369{left:0.000000px;}
.x1_c01369{left:65.480310px;}
.x2_c01369{left:77.723475px;}
@media print{
.v0_c01369{vertical-align:0.000000pt;}
.ls0_c01369{letter-spacing:0.000000pt;}
.ls1_c01369{letter-spacing:0.010667pt;}
.ws0_c01369{word-spacing:-16.000000pt;}
.ws1_c01369{word-spacing:0.000000pt;}
._7_c01369{margin-left:-7.249707pt;}
._6_c01369{margin-left:-5.697067pt;}
._12_c01369{margin-left:-4.218080pt;}
._5_c01369{margin-left:-2.633547pt;}
._e_c01369{margin-left:-1.135147pt;}
._1_c01369{width:1.581173pt;}
._0_c01369{width:3.099253pt;}
._8_c01369{width:4.398347pt;}
._17_c01369{width:6.197920pt;}
._13_c01369{width:7.737973pt;}
._16_c01369{width:8.855947pt;}
._14_c01369{width:10.374027pt;}
._15_c01369{width:11.955200pt;}
._c_c01369{width:12.927627pt;}
._b_c01369{width:13.871787pt;}
._10_c01369{width:14.961547pt;}
._d_c01369{width:17.779360pt;}
._f_c01369{width:19.421707pt;}
._11_c01369{width:20.668747pt;}
._9_c01369{width:26.668800pt;}
._a_c01369{width:32.000000pt;}
._3_c01369{width:35.749227pt;}
._2_c01369{width:37.243733pt;}
._4_c01369{width:38.801920pt;}
.fs2_c01369{font-size:53.333333pt;}
.fs1_c01369{font-size:64.000000pt;}
.fs0_c01369{font-size:74.666667pt;}
.y0_c01369{bottom:0.000000pt;}
.y1c_c01369{bottom:60.000000pt;}
.y1a_c01369{bottom:125.333333pt;}
.y19_c01369{bottom:162.666667pt;}
.y18_c01369{bottom:200.000000pt;}
.y17_c01369{bottom:237.333333pt;}
.y16_c01369{bottom:256.000000pt;}
.y15_c01369{bottom:293.333333pt;}
.y14_c01369{bottom:312.000000pt;}
.y13_c01369{bottom:349.333333pt;}
.y12_c01369{bottom:386.666667pt;}
.y11_c01369{bottom:405.333333pt;}
.y10_c01369{bottom:442.666667pt;}
.yf_c01369{bottom:480.000000pt;}
.ye_c01369{bottom:517.333333pt;}
.yd_c01369{bottom:554.666667pt;}
.yc_c01369{bottom:573.333333pt;}
.yb_c01369{bottom:629.333333pt;}
.ya_c01369{bottom:688.000000pt;}
.y9_c01369{bottom:725.333333pt;}
.y8_c01369{bottom:744.000000pt;}
.y7_c01369{bottom:781.333333pt;}
.y6_c01369{bottom:818.666667pt;}
.y5_c01369{bottom:837.333333pt;}
.y4_c01369{bottom:874.666667pt;}
.y3_c01369{bottom:893.333333pt;}
.y2_c01369{bottom:949.333333pt;}
.y1_c01369{bottom:972.000000pt;}
.y1b_c01369{bottom:1061.333333pt;}
.h4_c01369{height:39.296875pt;}
.h2_c01369{height:46.593750pt;}
.h3_c01369{height:49.843750pt;}
.h1_c01369{height:67.557292pt;}
.h0_c01369{height:1122.666667pt;}
.w0_c01369{width:793.333333pt;}
.x0_c01369{left:0.000000pt;}
.x1_c01369{left:58.204720pt;}
.x2_c01369{left:69.087533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d04f9e6e8b8f4851c0e3c768.woff2')format("woff");}.ff1_c01370{font-family:ff1_c01370;line-height:1.187012;font-style:normal;font-weight:normal;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_2fd0f3e53a155b4bb9b683ed.woff2')format("woff");}.ff2_c01370{font-family:ff2_c01370;line-height:1.005371;font-style:normal;font-weight:normal;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_0bc392fb31fb81b59c1eed69.woff2')format("woff");}.ff3_c01370{font-family:ff3_c01370;line-height:0.791504;font-style:normal;font-weight:normal;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_6752f12682ac4df67ffc5af7.woff2')format("woff");}.ff4_c01370{font-family:ff4_c01370;line-height:0.920898;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01370;src:url('chunks/assets/font_fe1e0ef806f14febbdfa026f.woff2')format("woff");}.ff5_c01370{font-family:ff5_c01370;line-height:0.958008;font-style: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);}
.m1_c01370{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c01370{vertical-align:0.000000px;}
.ls3_c01370{letter-spacing:0.000000px;}
.ls2_c01370{letter-spacing:0.012000px;}
.ls0_c01370{letter-spacing:0.914400px;}
.ls1_c01370{letter-spacing:0.921600px;}
.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:-18.921600px;}
.ws0_c01370{word-spacing:-18.000000px;}
.ws2_c01370{word-spacing:0.000000px;}
._17_c01370{margin-left:-8.762400px;}
._a_c01370{margin-left:-6.624000px;}
._1a_c01370{margin-left:-4.662000px;}
._c_c01370{margin-left:-3.441600px;}
._2_c01370{margin-left:-2.037600px;}
._19_c01370{margin-left:-1.013400px;}
._0_c01370{width:1.216800px;}
._4_c01370{width:2.520000px;}
._13_c01370{width:3.873600px;}
._9_c01370{width:4.932000px;}
._e_c01370{width:6.126600px;}
._1b_c01370{width:7.216800px;}
._6_c01370{width:8.280000px;}
._7_c01370{width:9.532800px;}
._8_c01370{width:10.692000px;}
._18_c01370{width:11.760600px;}
._5_c01370{width:12.782400px;}
._b_c01370{width:14.301600px;}
._1_c01370{width:15.667200px;}
._d_c01370{width:16.790400px;}
._3_c01370{width:19.915200px;}
._11_c01370{width:21.866400px;}
._10_c01370{width:23.601600px;}
._12_c01370{width:25.322400px;}
._14_c01370{width:33.415200px;}
._15_c01370{width:36.669600px;}
._16_c01370{width:38.881200px;}
._f_c01370{width:41.997600px;}
.fc1_c01370{color:rgb(0,0,153);}
.fc0_c01370{color:rgb(0,0,0);}
.fs1_c01370{font-size:60.000000px;}
.fs0_c01370{font-size:72.000000px;}
.fs2_c01370{font-size:84.000000px;}
.y0_c01370{bottom:0.000000px;}
.y1e_c01370{bottom:67.500000px;}
.y1c_c01370{bottom:148.500000px;}
.y1b_c01370{bottom:190.500000px;}
.y1a_c01370{bottom:211.500000px;}
.y19_c01370{bottom:232.500000px;}
.y18_c01370{bottom:288.000000px;}
.y17_c01370{bottom:355.500000px;}
.y16_c01370{bottom:376.500000px;}
.y15_c01370{bottom:397.500000px;}
.y14_c01370{bottom:439.500000px;}
.y13_c01370{bottom:481.500000px;}
.y12_c01370{bottom:522.000000px;}
.y11_c01370{bottom:568.500000px;}
.y10_c01370{bottom:613.500000px;}
.yf_c01370{bottom:655.500000px;}
.ye_c01370{bottom:697.500000px;}
.yd_c01370{bottom:718.500000px;}
.yc_c01370{bottom:760.500000px;}
.yb_c01370{bottom:781.500000px;}
.ya_c01370{bottom:823.500000px;}
.y9_c01370{bottom:844.500000px;}
.y8_c01370{bottom:865.500000px;}
.y7_c01370{bottom:907.500000px;}
.y6_c01370{bottom:928.500000px;}
.y5_c01370{bottom:970.500000px;}
.y4_c01370{bottom:991.500000px;}
.y3_c01370{bottom:1033.500000px;}
.y2_c01370{bottom:1054.500000px;}
.y1_c01370{bottom:1075.500000px;}
.y1d_c01370{bottom:1194.000000px;}
.h3_c01370{height:44.208984px;}
.h1_c01370{height:65.144531px;}
.h2_c01370{height:76.001953px;}
.h0_c01370{height:1263.000000px;}
.w0_c01370{width:892.500000px;}
.x0_c01370{left:0.000000px;}
.x1_c01370{left:150.519750px;}
.x2_c01370{left:556.865850px;}
.x3_c01370{left:801.992850px;}
@media print{
.v0_c01370{vertical-align:0.000000pt;}
.ls3_c01370{letter-spacing:0.000000pt;}
.ls2_c01370{letter-spacing:0.010667pt;}
.ls0_c01370{letter-spacing:0.812800pt;}
.ls1_c01370{letter-spacing:0.819200pt;}
.ws1_c01370{word-spacing:-16.819200pt;}
.ws0_c01370{word-spacing:-16.000000pt;}
.ws2_c01370{word-spacing:0.000000pt;}
._17_c01370{margin-left:-7.788800pt;}
._a_c01370{margin-left:-5.888000pt;}
._1a_c01370{margin-left:-4.144000pt;}
._c_c01370{margin-left:-3.059200pt;}
._2_c01370{margin-left:-1.811200pt;}
._19_c01370{margin-left:-0.900800pt;}
._0_c01370{width:1.081600pt;}
._4_c01370{width:2.240000pt;}
._13_c01370{width:3.443200pt;}
._9_c01370{width:4.384000pt;}
._e_c01370{width:5.445867pt;}
._1b_c01370{width:6.414933pt;}
._6_c01370{width:7.360000pt;}
._7_c01370{width:8.473600pt;}
._8_c01370{width:9.504000pt;}
._18_c01370{width:10.453867pt;}
._5_c01370{width:11.362133pt;}
._b_c01370{width:12.712533pt;}
._1_c01370{width:13.926400pt;}
._d_c01370{width:14.924800pt;}
._3_c01370{width:17.702400pt;}
._11_c01370{width:19.436800pt;}
._10_c01370{width:20.979200pt;}
._12_c01370{width:22.508800pt;}
._14_c01370{width:29.702400pt;}
._15_c01370{width:32.595200pt;}
._16_c01370{width:34.561067pt;}
._f_c01370{width:37.331200pt;}
.fs1_c01370{font-size:53.333333pt;}
.fs0_c01370{font-size:64.000000pt;}
.fs2_c01370{font-size:74.666667pt;}
.y0_c01370{bottom:0.000000pt;}
.y1e_c01370{bottom:60.000000pt;}
.y1c_c01370{bottom:132.000000pt;}
.y1b_c01370{bottom:169.333333pt;}
.y1a_c01370{bottom:188.000000pt;}
.y19_c01370{bottom:206.666667pt;}
.y18_c01370{bottom:256.000000pt;}
.y17_c01370{bottom:316.000000pt;}
.y16_c01370{bottom:334.666667pt;}
.y15_c01370{bottom:353.333333pt;}
.y14_c01370{bottom:390.666667pt;}
.y13_c01370{bottom:428.000000pt;}
.y12_c01370{bottom:464.000000pt;}
.y11_c01370{bottom:505.333333pt;}
.y10_c01370{bottom:545.333333pt;}
.yf_c01370{bottom:582.666667pt;}
.ye_c01370{bottom:620.000000pt;}
.yd_c01370{bottom:638.666667pt;}
.yc_c01370{bottom:676.000000pt;}
.yb_c01370{bottom:694.666667pt;}
.ya_c01370{bottom:732.000000pt;}
.y9_c01370{bottom:750.666667pt;}
.y8_c01370{bottom:769.333333pt;}
.y7_c01370{bottom:806.666667pt;}
.y6_c01370{bottom:825.333333pt;}
.y5_c01370{bottom:862.666667pt;}
.y4_c01370{bottom:881.333333pt;}
.y3_c01370{bottom:918.666667pt;}
.y2_c01370{bottom:937.333333pt;}
.y1_c01370{bottom:956.000000pt;}
.y1d_c01370{bottom:1061.333333pt;}
.h3_c01370{height:39.296875pt;}
.h1_c01370{height:57.906250pt;}
.h2_c01370{height:67.557292pt;}
.h0_c01370{height:1122.666667pt;}
.w0_c01370{width:793.333333pt;}
.x0_c01370{left:0.000000pt;}
.x1_c01370{left:133.795333pt;}
.x2_c01370{left:494.991867pt;}
.x3_c01370{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cf1adddb62f4ed33e569875c.woff2')format("woff");}.ff1_c01371{font-family:ff1_c01371;line-height:1.187012;font-style:normal;font-weight:normal;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_d080c3683758af75592d19b8.woff2')format("woff");}.ff2_c01371{font-family:ff2_c01371;line-height:1.183105;font-style:normal;font-weight:normal;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_c98e2cf0bd4431e5c2c687b4.woff2')format("woff");}.ff3_c01371{font-family:ff3_c01371;line-height:0.920898;font-style:normal;font-weight:normal;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_351986f3f24365ef9e1d145c.woff2')format("woff");}.ff4_c01371{font-family:ff4_c01371;line-height:0.756836;font-style:normal;font-weight:normal;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_18a1da9b0a04e45644126b41.woff2')format("woff");}.ff5_c01371{font-family:ff5_c01371;line-height:1.155762;font-style: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);}
.v0_c01371{vertical-align:0.000000px;}
.ls0_c01371{letter-spacing:0.000000px;}
.ls1_c01371{letter-spacing:0.012000px;}
.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;}
}
.ws0_c01371{word-spacing:-18.000000px;}
.ws1_c01371{word-spacing:0.000000px;}
._13_c01371{margin-left:-7.992000px;}
._c_c01371{margin-left:-6.487200px;}
._2_c01371{margin-left:-5.414400px;}
._8_c01371{margin-left:-3.499200px;}
._0_c01371{margin-left:-2.376000px;}
._5_c01371{margin-left:-1.152000px;}
._10_c01371{width:1.001160px;}
._4_c01371{width:2.044800px;}
._b_c01371{width:3.477600px;}
._e_c01371{width:5.796000px;}
._f_c01371{width:7.089480px;}
._d_c01371{width:8.175360px;}
._a_c01371{width:9.252000px;}
._1_c01371{width:10.612800px;}
._7_c01371{width:12.016800px;}
._6_c01371{width:13.154400px;}
._3_c01371{width:14.587200px;}
._9_c01371{width:15.717600px;}
._12_c01371{width:16.847280px;}
._11_c01371{width:19.374840px;}
._16_c01371{width:22.348800px;}
._15_c01371{width:23.767920px;}
._18_c01371{width:25.826400px;}
._17_c01371{width:27.118920px;}
._14_c01371{width:41.997600px;}
.fc0_c01371{color:rgb(0,0,0);}
.fs2_c01371{font-size:60.000000px;}
.fs0_c01371{font-size:72.000000px;}
.fs1_c01371{font-size:84.000000px;}
.y0_c01371{bottom:0.000000px;}
.y1e_c01371{bottom:67.500000px;}
.y1c_c01371{bottom:196.500000px;}
.y1b_c01371{bottom:217.500000px;}
.y1a_c01371{bottom:238.500000px;}
.y19_c01371{bottom:280.500000px;}
.y18_c01371{bottom:301.500000px;}
.y17_c01371{bottom:343.500000px;}
.y16_c01371{bottom:385.500000px;}
.y15_c01371{bottom:406.500000px;}
.y14_c01371{bottom:445.500000px;}
.y13_c01371{bottom:466.500000px;}
.y12_c01371{bottom:505.500000px;}
.y11_c01371{bottom:526.500000px;}
.y10_c01371{bottom:568.500000px;}
.yf_c01371{bottom:589.500000px;}
.ye_c01371{bottom:631.500000px;}
.yd_c01371{bottom:652.500000px;}
.yc_c01371{bottom:715.500000px;}
.yb_c01371{bottom:781.500000px;}
.ya_c01371{bottom:802.500000px;}
.y9_c01371{bottom:823.500000px;}
.y8_c01371{bottom:865.500000px;}
.y7_c01371{bottom:886.500000px;}
.y6_c01371{bottom:928.500000px;}
.y5_c01371{bottom:949.500000px;}
.y4_c01371{bottom:991.500000px;}
.y3_c01371{bottom:1012.500000px;}
.y2_c01371{bottom:1054.500000px;}
.y1_c01371{bottom:1075.500000px;}
.y1d_c01371{bottom:1194.000000px;}
.h4_c01371{height:44.208984px;}
.h3_c01371{height:56.074219px;}
.h1_c01371{height:65.144531px;}
.h2_c01371{height:76.001953px;}
.h0_c01371{height:1263.000000px;}
.w0_c01371{width:892.500000px;}
.x0_c01371{left:0.000000px;}
.x1_c01371{left:65.480310px;}
@media print{
.v0_c01371{vertical-align:0.000000pt;}
.ls0_c01371{letter-spacing:0.000000pt;}
.ls1_c01371{letter-spacing:0.010667pt;}
.ws0_c01371{word-spacing:-16.000000pt;}
.ws1_c01371{word-spacing:0.000000pt;}
._13_c01371{margin-left:-7.104000pt;}
._c_c01371{margin-left:-5.766400pt;}
._2_c01371{margin-left:-4.812800pt;}
._8_c01371{margin-left:-3.110400pt;}
._0_c01371{margin-left:-2.112000pt;}
._5_c01371{margin-left:-1.024000pt;}
._10_c01371{width:0.889920pt;}
._4_c01371{width:1.817600pt;}
._b_c01371{width:3.091200pt;}
._e_c01371{width:5.152000pt;}
._f_c01371{width:6.301760pt;}
._d_c01371{width:7.266987pt;}
._a_c01371{width:8.224000pt;}
._1_c01371{width:9.433600pt;}
._7_c01371{width:10.681600pt;}
._6_c01371{width:11.692800pt;}
._3_c01371{width:12.966400pt;}
._9_c01371{width:13.971200pt;}
._12_c01371{width:14.975360pt;}
._11_c01371{width:17.222080pt;}
._16_c01371{width:19.865600pt;}
._15_c01371{width:21.127040pt;}
._18_c01371{width:22.956800pt;}
._17_c01371{width:24.105707pt;}
._14_c01371{width:37.331200pt;}
.fs2_c01371{font-size:53.333333pt;}
.fs0_c01371{font-size:64.000000pt;}
.fs1_c01371{font-size:74.666667pt;}
.y0_c01371{bottom:0.000000pt;}
.y1e_c01371{bottom:60.000000pt;}
.y1c_c01371{bottom:174.666667pt;}
.y1b_c01371{bottom:193.333333pt;}
.y1a_c01371{bottom:212.000000pt;}
.y19_c01371{bottom:249.333333pt;}
.y18_c01371{bottom:268.000000pt;}
.y17_c01371{bottom:305.333333pt;}
.y16_c01371{bottom:342.666667pt;}
.y15_c01371{bottom:361.333333pt;}
.y14_c01371{bottom:396.000000pt;}
.y13_c01371{bottom:414.666667pt;}
.y12_c01371{bottom:449.333333pt;}
.y11_c01371{bottom:468.000000pt;}
.y10_c01371{bottom:505.333333pt;}
.yf_c01371{bottom:524.000000pt;}
.ye_c01371{bottom:561.333333pt;}
.yd_c01371{bottom:580.000000pt;}
.yc_c01371{bottom:636.000000pt;}
.yb_c01371{bottom:694.666667pt;}
.ya_c01371{bottom:713.333333pt;}
.y9_c01371{bottom:732.000000pt;}
.y8_c01371{bottom:769.333333pt;}
.y7_c01371{bottom:788.000000pt;}
.y6_c01371{bottom:825.333333pt;}
.y5_c01371{bottom:844.000000pt;}
.y4_c01371{bottom:881.333333pt;}
.y3_c01371{bottom:900.000000pt;}
.y2_c01371{bottom:937.333333pt;}
.y1_c01371{bottom:956.000000pt;}
.y1d_c01371{bottom:1061.333333pt;}
.h4_c01371{height:39.296875pt;}
.h3_c01371{height:49.843750pt;}
.h1_c01371{height:57.906250pt;}
.h2_c01371{height:67.557292pt;}
.h0_c01371{height:1122.666667pt;}
.w0_c01371{width:793.333333pt;}
.x0_c01371{left:0.000000pt;}
.x1_c01371{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_076228285c966ec1a5708ebf.woff2')format("woff");}.ff1_c01372{font-family:ff1_c01372;line-height:1.187012;font-style:normal;font-weight:normal;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_6c1f05ecfcb1f6479c3f42fa.woff2')format("woff");}.ff2_c01372{font-family:ff2_c01372;line-height:1.005371;font-style:normal;font-weight:normal;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_f86937ad013015b6f5797575.woff2')format("woff");}.ff3_c01372{font-family:ff3_c01372;line-height:0.920898;font-style:normal;font-weight:normal;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_fa91301795efd3fcdd770564.woff2')format("woff");}.ff4_c01372{font-family:ff4_c01372;line-height:0.958008;font-style: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;}
.ls1_c01372{letter-spacing:0.000000px;}
.ls0_c01372{letter-spacing:0.012000px;}
.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;}
}
.ws0_c01372{word-spacing:-18.000000px;}
.ws1_c01372{word-spacing:0.000000px;}
._17_c01372{margin-left:-7.970400px;}
._e_c01372{margin-left:-5.990400px;}
._15_c01372{margin-left:-4.921200px;}
._3_c01372{margin-left:-3.204000px;}
._5_c01372{margin-left:-2.124000px;}
._12_c01372{margin-left:-1.087200px;}
._1_c01372{width:1.123200px;}
._7_c01372{width:2.124000px;}
._b_c01372{width:3.664800px;}
._0_c01372{width:4.795200px;}
._d_c01372{width:6.379200px;}
._10_c01372{width:8.337600px;}
._11_c01372{width:9.641400px;}
._f_c01372{width:10.756200px;}
._14_c01372{width:12.225600px;}
._16_c01372{width:13.305600px;}
._13_c01372{width:14.623200px;}
._1f_c01372{width:15.919200px;}
._c_c01372{width:19.908000px;}
._8_c01372{width:20.908800px;}
._a_c01372{width:23.076000px;}
._9_c01372{width:26.272800px;}
._1d_c01372{width:27.640800px;}
._1e_c01372{width:29.282400px;}
._18_c01372{width:32.716800px;}
._4_c01372{width:34.423200px;}
._1a_c01372{width:35.634000px;}
._2_c01372{width:37.281600px;}
._19_c01372{width:38.584800px;}
._1b_c01372{width:39.985200px;}
._6_c01372{width:41.025600px;}
._1c_c01372{width:54.943200px;}
.fc1_c01372{color:rgb(0,0,153);}
.fc0_c01372{color:rgb(0,0,0);}
.fs2_c01372{font-size:60.000000px;}
.fs0_c01372{font-size:72.000000px;}
.fs1_c01372{font-size:84.000000px;}
.y0_c01372{bottom:0.000000px;}
.y20_c01372{bottom:67.500000px;}
.y1e_c01372{bottom:184.500000px;}
.y1d_c01372{bottom:205.500000px;}
.y1c_c01372{bottom:226.500000px;}
.y1b_c01372{bottom:268.500000px;}
.y1a_c01372{bottom:310.500000px;}
.y19_c01372{bottom:331.500000px;}
.y18_c01372{bottom:352.500000px;}
.y17_c01372{bottom:394.500000px;}
.y16_c01372{bottom:415.500000px;}
.y15_c01372{bottom:457.500000px;}
.y14_c01372{bottom:499.500000px;}
.y13_c01372{bottom:520.500000px;}
.y12_c01372{bottom:541.500000px;}
.y11_c01372{bottom:562.500000px;}
.y10_c01372{bottom:583.500000px;}
.yf_c01372{bottom:625.500000px;}
.ye_c01372{bottom:646.500000px;}
.yd_c01372{bottom:688.500000px;}
.yc_c01372{bottom:709.500000px;}
.yb_c01372{bottom:751.500000px;}
.ya_c01372{bottom:772.500000px;}
.y9_c01372{bottom:841.500000px;}
.y8_c01372{bottom:907.500000px;}
.y7_c01372{bottom:928.500000px;}
.y6_c01372{bottom:949.500000px;}
.y5_c01372{bottom:991.500000px;}
.y4_c01372{bottom:1012.500000px;}
.y3_c01372{bottom:1054.500000px;}
.y2_c01372{bottom:1075.500000px;}
.y1_c01372{bottom:1096.500000px;}
.y1f_c01372{bottom:1194.000000px;}
.h3_c01372{height:44.208984px;}
.h1_c01372{height:65.144531px;}
.h2_c01372{height:76.001953px;}
.h0_c01372{height:1263.000000px;}
.w0_c01372{width:892.500000px;}
.x0_c01372{left:0.000000px;}
.x1_c01372{left:150.519750px;}
.x2_c01372{left:556.865850px;}
.x3_c01372{left:801.992850px;}
@media print{
.v0_c01372{vertical-align:0.000000pt;}
.ls1_c01372{letter-spacing:0.000000pt;}
.ls0_c01372{letter-spacing:0.010667pt;}
.ws0_c01372{word-spacing:-16.000000pt;}
.ws1_c01372{word-spacing:0.000000pt;}
._17_c01372{margin-left:-7.084800pt;}
._e_c01372{margin-left:-5.324800pt;}
._15_c01372{margin-left:-4.374400pt;}
._3_c01372{margin-left:-2.848000pt;}
._5_c01372{margin-left:-1.888000pt;}
._12_c01372{margin-left:-0.966400pt;}
._1_c01372{width:0.998400pt;}
._7_c01372{width:1.888000pt;}
._b_c01372{width:3.257600pt;}
._0_c01372{width:4.262400pt;}
._d_c01372{width:5.670400pt;}
._10_c01372{width:7.411200pt;}
._11_c01372{width:8.570133pt;}
._f_c01372{width:9.561067pt;}
._14_c01372{width:10.867200pt;}
._16_c01372{width:11.827200pt;}
._13_c01372{width:12.998400pt;}
._1f_c01372{width:14.150400pt;}
._c_c01372{width:17.696000pt;}
._8_c01372{width:18.585600pt;}
._a_c01372{width:20.512000pt;}
._9_c01372{width:23.353600pt;}
._1d_c01372{width:24.569600pt;}
._1e_c01372{width:26.028800pt;}
._18_c01372{width:29.081600pt;}
._4_c01372{width:30.598400pt;}
._1a_c01372{width:31.674667pt;}
._2_c01372{width:33.139200pt;}
._19_c01372{width:34.297600pt;}
._1b_c01372{width:35.542400pt;}
._6_c01372{width:36.467200pt;}
._1c_c01372{width:48.838400pt;}
.fs2_c01372{font-size:53.333333pt;}
.fs0_c01372{font-size:64.000000pt;}
.fs1_c01372{font-size:74.666667pt;}
.y0_c01372{bottom:0.000000pt;}
.y20_c01372{bottom:60.000000pt;}
.y1e_c01372{bottom:164.000000pt;}
.y1d_c01372{bottom:182.666667pt;}
.y1c_c01372{bottom:201.333333pt;}
.y1b_c01372{bottom:238.666667pt;}
.y1a_c01372{bottom:276.000000pt;}
.y19_c01372{bottom:294.666667pt;}
.y18_c01372{bottom:313.333333pt;}
.y17_c01372{bottom:350.666667pt;}
.y16_c01372{bottom:369.333333pt;}
.y15_c01372{bottom:406.666667pt;}
.y14_c01372{bottom:444.000000pt;}
.y13_c01372{bottom:462.666667pt;}
.y12_c01372{bottom:481.333333pt;}
.y11_c01372{bottom:500.000000pt;}
.y10_c01372{bottom:518.666667pt;}
.yf_c01372{bottom:556.000000pt;}
.ye_c01372{bottom:574.666667pt;}
.yd_c01372{bottom:612.000000pt;}
.yc_c01372{bottom:630.666667pt;}
.yb_c01372{bottom:668.000000pt;}
.ya_c01372{bottom:686.666667pt;}
.y9_c01372{bottom:748.000000pt;}
.y8_c01372{bottom:806.666667pt;}
.y7_c01372{bottom:825.333333pt;}
.y6_c01372{bottom:844.000000pt;}
.y5_c01372{bottom:881.333333pt;}
.y4_c01372{bottom:900.000000pt;}
.y3_c01372{bottom:937.333333pt;}
.y2_c01372{bottom:956.000000pt;}
.y1_c01372{bottom:974.666667pt;}
.y1f_c01372{bottom:1061.333333pt;}
.h3_c01372{height:39.296875pt;}
.h1_c01372{height:57.906250pt;}
.h2_c01372{height:67.557292pt;}
.h0_c01372{height:1122.666667pt;}
.w0_c01372{width:793.333333pt;}
.x0_c01372{left:0.000000pt;}
.x1_c01372{left:133.795333pt;}
.x2_c01372{left:494.991867pt;}
.x3_c01372{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f6f911f56de8f7719634a192.woff2')format("woff");}.ff1_c01373{font-family:ff1_c01373;line-height:1.187012;font-style:normal;font-weight:normal;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_8375741455e3ba9dde041485.woff2')format("woff");}.ff2_c01373{font-family:ff2_c01373;line-height:1.005371;font-style:normal;font-weight:normal;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_1c9397ec0841f9f89299e21c.woff2')format("woff");}.ff3_c01373{font-family:ff3_c01373;line-height:0.756836;font-style:normal;font-weight:normal;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_9fefd95d5a9505f5501c659e.woff2')format("woff");}.ff4_c01373{font-family:ff4_c01373;line-height:1.155762;font-style: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;}
.ls2_c01373{letter-spacing:-1.879200px;}
.ls1_c01373{letter-spacing:0.000000px;}
.ls3_c01373{letter-spacing:0.012000px;}
.ls0_c01373{letter-spacing:0.014400px;}
.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;}
}
.ws1_c01373{word-spacing:-18.014400px;}
.ws0_c01373{word-spacing:-18.000000px;}
.ws2_c01373{word-spacing:0.000000px;}
._b_c01373{margin-left:-9.326640px;}
._17_c01373{margin-left:-7.992000px;}
._2_c01373{margin-left:-6.609600px;}
._a_c01373{margin-left:-5.047200px;}
._0_c01373{margin-left:-3.340800px;}
._4_c01373{margin-left:-1.267200px;}
._1_c01373{width:1.526400px;}
._3_c01373{width:2.829600px;}
._5_c01373{width:4.060800px;}
._6_c01373{width:5.659200px;}
._16_c01373{width:7.151640px;}
._7_c01373{width:8.532000px;}
._8_c01373{width:9.847560px;}
._9_c01373{width:11.865600px;}
._11_c01373{width:14.236440px;}
._13_c01373{width:16.056960px;}
._12_c01373{width:21.311520px;}
._14_c01373{width:22.831680px;}
._15_c01373{width:24.652320px;}
._f_c01373{width:26.006880px;}
._c_c01373{width:27.108000px;}
._e_c01373{width:28.266960px;}
._d_c01373{width:29.844000px;}
._10_c01373{width:31.132800px;}
.fc0_c01373{color:rgb(0,0,0);}
.fs1_c01373{font-size:60.000000px;}
.fs0_c01373{font-size:72.000000px;}
.y0_c01373{bottom:0.000000px;}
.y1e_c01373{bottom:67.500000px;}
.y1c_c01373{bottom:277.500000px;}
.y1b_c01373{bottom:298.500000px;}
.y1a_c01373{bottom:340.500000px;}
.y19_c01373{bottom:361.500000px;}
.y18_c01373{bottom:403.500000px;}
.y17_c01373{bottom:424.500000px;}
.y16_c01373{bottom:445.500000px;}
.y15_c01373{bottom:487.500000px;}
.y14_c01373{bottom:508.500000px;}
.y13_c01373{bottom:550.500000px;}
.y12_c01373{bottom:571.500000px;}
.y11_c01373{bottom:592.500000px;}
.y10_c01373{bottom:613.500000px;}
.yf_c01373{bottom:655.500000px;}
.ye_c01373{bottom:676.500000px;}
.yd_c01373{bottom:697.500000px;}
.yc_c01373{bottom:739.500000px;}
.yb_c01373{bottom:760.500000px;}
.ya_c01373{bottom:802.500000px;}
.y9_c01373{bottom:823.500000px;}
.y8_c01373{bottom:865.500000px;}
.y7_c01373{bottom:907.500000px;}
.y6_c01373{bottom:949.500000px;}
.y5_c01373{bottom:970.500000px;}
.y4_c01373{bottom:1012.500000px;}
.y3_c01373{bottom:1054.500000px;}
.y2_c01373{bottom:1075.500000px;}
.y1_c01373{bottom:1096.500000px;}
.y1d_c01373{bottom:1194.000000px;}
.h3_c01373{height:44.208984px;}
.h2_c01373{height:56.074219px;}
.h1_c01373{height:65.144531px;}
.h0_c01373{height:1263.000000px;}
.w0_c01373{width:892.500000px;}
.x0_c01373{left:0.000000px;}
.x1_c01373{left:65.480310px;}
@media print{
.v0_c01373{vertical-align:0.000000pt;}
.ls2_c01373{letter-spacing:-1.670400pt;}
.ls1_c01373{letter-spacing:0.000000pt;}
.ls3_c01373{letter-spacing:0.010667pt;}
.ls0_c01373{letter-spacing:0.012800pt;}
.ws1_c01373{word-spacing:-16.012800pt;}
.ws0_c01373{word-spacing:-16.000000pt;}
.ws2_c01373{word-spacing:0.000000pt;}
._b_c01373{margin-left:-8.290347pt;}
._17_c01373{margin-left:-7.104000pt;}
._2_c01373{margin-left:-5.875200pt;}
._a_c01373{margin-left:-4.486400pt;}
._0_c01373{margin-left:-2.969600pt;}
._4_c01373{margin-left:-1.126400pt;}
._1_c01373{width:1.356800pt;}
._3_c01373{width:2.515200pt;}
._5_c01373{width:3.609600pt;}
._6_c01373{width:5.030400pt;}
._16_c01373{width:6.357013pt;}
._7_c01373{width:7.584000pt;}
._8_c01373{width:8.753387pt;}
._9_c01373{width:10.547200pt;}
._11_c01373{width:12.654613pt;}
._13_c01373{width:14.272853pt;}
._12_c01373{width:18.943573pt;}
._14_c01373{width:20.294827pt;}
._15_c01373{width:21.913173pt;}
._f_c01373{width:23.117227pt;}
._c_c01373{width:24.096000pt;}
._e_c01373{width:25.126187pt;}
._d_c01373{width:26.528000pt;}
._10_c01373{width:27.673600pt;}
.fs1_c01373{font-size:53.333333pt;}
.fs0_c01373{font-size:64.000000pt;}
.y0_c01373{bottom:0.000000pt;}
.y1e_c01373{bottom:60.000000pt;}
.y1c_c01373{bottom:246.666667pt;}
.y1b_c01373{bottom:265.333333pt;}
.y1a_c01373{bottom:302.666667pt;}
.y19_c01373{bottom:321.333333pt;}
.y18_c01373{bottom:358.666667pt;}
.y17_c01373{bottom:377.333333pt;}
.y16_c01373{bottom:396.000000pt;}
.y15_c01373{bottom:433.333333pt;}
.y14_c01373{bottom:452.000000pt;}
.y13_c01373{bottom:489.333333pt;}
.y12_c01373{bottom:508.000000pt;}
.y11_c01373{bottom:526.666667pt;}
.y10_c01373{bottom:545.333333pt;}
.yf_c01373{bottom:582.666667pt;}
.ye_c01373{bottom:601.333333pt;}
.yd_c01373{bottom:620.000000pt;}
.yc_c01373{bottom:657.333333pt;}
.yb_c01373{bottom:676.000000pt;}
.ya_c01373{bottom:713.333333pt;}
.y9_c01373{bottom:732.000000pt;}
.y8_c01373{bottom:769.333333pt;}
.y7_c01373{bottom:806.666667pt;}
.y6_c01373{bottom:844.000000pt;}
.y5_c01373{bottom:862.666667pt;}
.y4_c01373{bottom:900.000000pt;}
.y3_c01373{bottom:937.333333pt;}
.y2_c01373{bottom:956.000000pt;}
.y1_c01373{bottom:974.666667pt;}
.y1d_c01373{bottom:1061.333333pt;}
.h3_c01373{height:39.296875pt;}
.h2_c01373{height:49.843750pt;}
.h1_c01373{height:57.906250pt;}
.h0_c01373{height:1122.666667pt;}
.w0_c01373{width:793.333333pt;}
.x0_c01373{left:0.000000pt;}
.x1_c01373{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_dc3b69323e166032f58d4c85.woff2')format("woff");}.ff1_c01374{font-family:ff1_c01374;line-height:1.187012;font-style:normal;font-weight:normal;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_d98228acd5f46cfbebbf7ee8.woff2')format("woff");}.ff2_c01374{font-family:ff2_c01374;line-height:1.187012;font-style:normal;font-weight:normal;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_c169da5085d89d53e9e348f4.woff2')format("woff");}.ff3_c01374{font-family:ff3_c01374;line-height:1.005371;font-style:normal;font-weight:normal;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_6a5c4a6ab060ba37dfa86af5.woff2')format("woff");}.ff4_c01374{font-family:ff4_c01374;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c01374;src:url('chunks/assets/font_33a9e61784e8f31b2224be03.woff2')format("woff");}.ff5_c01374{font-family:ff5_c01374;line-height:0.958008;font-style: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);}
.v0_c01374{vertical-align:0.000000px;}
.ls2_c01374{letter-spacing:0.000000px;}
.ls1_c01374{letter-spacing:0.012000px;}
.ls0_c01374{letter-spacing:0.014400px;}
.ls3_c01374{letter-spacing:2.973600px;}
.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;}
}
.ws0_c01374{word-spacing:-18.014400px;}
.ws1_c01374{word-spacing:-18.000000px;}
.ws2_c01374{word-spacing:0.000000px;}
._10_c01374{margin-left:-7.977600px;}
._7_c01374{margin-left:-6.300000px;}
._18_c01374{margin-left:-4.672800px;}
._8_c01374{margin-left:-3.326400px;}
._b_c01374{margin-left:-2.296800px;}
._4_c01374{margin-left:-1.192800px;}
._2_c01374{width:1.066800px;}
._0_c01374{width:2.167800px;}
._a_c01374{width:4.082400px;}
._12_c01374{width:5.299200px;}
._17_c01374{width:6.724200px;}
._11_c01374{width:8.379000px;}
._f_c01374{width:9.806400px;}
._1a_c01374{width:11.101200px;}
._19_c01374{width:12.175200px;}
._d_c01374{width:13.752000px;}
._c_c01374{width:15.321600px;}
._e_c01374{width:16.452000px;}
._1c_c01374{width:19.513200px;}
._15_c01374{width:20.717400px;}
._14_c01374{width:21.771600px;}
._13_c01374{width:22.874400px;}
._1b_c01374{width:24.501600px;}
._16_c01374{width:26.215200px;}
._1_c01374{width:29.584800px;}
._3_c01374{width:35.414400px;}
._6_c01374{width:36.472800px;}
._5_c01374{width:37.657200px;}
._9_c01374{width:39.782400px;}
.fc0_c01374{color:rgb(0,0,0);}
.fs2_c01374{font-size:60.000000px;}
.fs1_c01374{font-size:72.000000px;}
.fs0_c01374{font-size:84.000000px;}
.y0_c01374{bottom:0.000000px;}
.y1d_c01374{bottom:67.500000px;}
.y1b_c01374{bottom:165.000000px;}
.y1a_c01374{bottom:207.000000px;}
.y19_c01374{bottom:228.000000px;}
.y18_c01374{bottom:270.000000px;}
.y17_c01374{bottom:291.000000px;}
.y16_c01374{bottom:333.000000px;}
.y15_c01374{bottom:354.000000px;}
.y14_c01374{bottom:396.000000px;}
.y13_c01374{bottom:438.000000px;}
.y12_c01374{bottom:459.000000px;}
.y11_c01374{bottom:501.000000px;}
.y10_c01374{bottom:522.000000px;}
.yf_c01374{bottom:564.000000px;}
.ye_c01374{bottom:606.000000px;}
.yd_c01374{bottom:648.000000px;}
.yc_c01374{bottom:690.000000px;}
.yb_c01374{bottom:732.000000px;}
.ya_c01374{bottom:774.000000px;}
.y9_c01374{bottom:816.000000px;}
.y8_c01374{bottom:837.000000px;}
.y7_c01374{bottom:879.000000px;}
.y6_c01374{bottom:900.000000px;}
.y5_c01374{bottom:942.000000px;}
.y4_c01374{bottom:963.000000px;}
.y3_c01374{bottom:1005.000000px;}
.y2_c01374{bottom:1068.000000px;}
.y1_c01374{bottom:1093.500000px;}
.y1c_c01374{bottom:1194.000000px;}
.h3_c01374{height:44.208984px;}
.h2_c01374{height:65.144531px;}
.h1_c01374{height:76.001953px;}
.h0_c01374{height:1263.000000px;}
.w0_c01374{width:892.500000px;}
.x0_c01374{left:0.000000px;}
.x1_c01374{left:150.519750px;}
.x2_c01374{left:162.762900px;}
.x3_c01374{left:556.865850px;}
.x4_c01374{left:801.992850px;}
@media print{
.v0_c01374{vertical-align:0.000000pt;}
.ls2_c01374{letter-spacing:0.000000pt;}
.ls1_c01374{letter-spacing:0.010667pt;}
.ls0_c01374{letter-spacing:0.012800pt;}
.ls3_c01374{letter-spacing:2.643200pt;}
.ws0_c01374{word-spacing:-16.012800pt;}
.ws1_c01374{word-spacing:-16.000000pt;}
.ws2_c01374{word-spacing:0.000000pt;}
._10_c01374{margin-left:-7.091200pt;}
._7_c01374{margin-left:-5.600000pt;}
._18_c01374{margin-left:-4.153600pt;}
._8_c01374{margin-left:-2.956800pt;}
._b_c01374{margin-left:-2.041600pt;}
._4_c01374{margin-left:-1.060267pt;}
._2_c01374{width:0.948267pt;}
._0_c01374{width:1.926933pt;}
._a_c01374{width:3.628800pt;}
._12_c01374{width:4.710400pt;}
._17_c01374{width:5.977067pt;}
._11_c01374{width:7.448000pt;}
._f_c01374{width:8.716800pt;}
._1a_c01374{width:9.867733pt;}
._19_c01374{width:10.822400pt;}
._d_c01374{width:12.224000pt;}
._c_c01374{width:13.619200pt;}
._e_c01374{width:14.624000pt;}
._1c_c01374{width:17.345067pt;}
._15_c01374{width:18.415467pt;}
._14_c01374{width:19.352533pt;}
._13_c01374{width:20.332800pt;}
._1b_c01374{width:21.779200pt;}
._16_c01374{width:23.302400pt;}
._1_c01374{width:26.297600pt;}
._3_c01374{width:31.479467pt;}
._6_c01374{width:32.420267pt;}
._5_c01374{width:33.473067pt;}
._9_c01374{width:35.362133pt;}
.fs2_c01374{font-size:53.333333pt;}
.fs1_c01374{font-size:64.000000pt;}
.fs0_c01374{font-size:74.666667pt;}
.y0_c01374{bottom:0.000000pt;}
.y1d_c01374{bottom:60.000000pt;}
.y1b_c01374{bottom:146.666667pt;}
.y1a_c01374{bottom:184.000000pt;}
.y19_c01374{bottom:202.666667pt;}
.y18_c01374{bottom:240.000000pt;}
.y17_c01374{bottom:258.666667pt;}
.y16_c01374{bottom:296.000000pt;}
.y15_c01374{bottom:314.666667pt;}
.y14_c01374{bottom:352.000000pt;}
.y13_c01374{bottom:389.333333pt;}
.y12_c01374{bottom:408.000000pt;}
.y11_c01374{bottom:445.333333pt;}
.y10_c01374{bottom:464.000000pt;}
.yf_c01374{bottom:501.333333pt;}
.ye_c01374{bottom:538.666667pt;}
.yd_c01374{bottom:576.000000pt;}
.yc_c01374{bottom:613.333333pt;}
.yb_c01374{bottom:650.666667pt;}
.ya_c01374{bottom:688.000000pt;}
.y9_c01374{bottom:725.333333pt;}
.y8_c01374{bottom:744.000000pt;}
.y7_c01374{bottom:781.333333pt;}
.y6_c01374{bottom:800.000000pt;}
.y5_c01374{bottom:837.333333pt;}
.y4_c01374{bottom:856.000000pt;}
.y3_c01374{bottom:893.333333pt;}
.y2_c01374{bottom:949.333333pt;}
.y1_c01374{bottom:972.000000pt;}
.y1c_c01374{bottom:1061.333333pt;}
.h3_c01374{height:39.296875pt;}
.h2_c01374{height:57.906250pt;}
.h1_c01374{height:67.557292pt;}
.h0_c01374{height:1122.666667pt;}
.w0_c01374{width:793.333333pt;}
.x0_c01374{left:0.000000pt;}
.x1_c01374{left:133.795333pt;}
.x2_c01374{left:144.678133pt;}
.x3_c01374{left:494.991867pt;}
.x4_c01374{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_37f043ddd35f668d75416487.woff2')format("woff");}.ff1_c01375{font-family:ff1_c01375;line-height:1.187012;font-style:normal;font-weight:normal;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_5016d68f64d7d589a030c22d.woff2')format("woff");}.ff2_c01375{font-family:ff2_c01375;line-height:1.187012;font-style:normal;font-weight:normal;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_65f319c89736d753c7e4fc76.woff2')format("woff");}.ff3_c01375{font-family:ff3_c01375;line-height:1.005371;font-style:normal;font-weight:normal;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_bcd5629f3721a0575faf7d44.woff2')format("woff");}.ff4_c01375{font-family:ff4_c01375;line-height:0.756836;font-style:normal;font-weight:normal;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_96130b54e5eb99ccc8bd01de.woff2')format("woff");}.ff5_c01375{font-family:ff5_c01375;line-height:1.155762;font-style: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);}
.v0_c01375{vertical-align:0.000000px;}
.ls2_c01375{letter-spacing:-0.014400px;}
.ls1_c01375{letter-spacing:0.000000px;}
.ls3_c01375{letter-spacing:0.012000px;}
.ls0_c01375{letter-spacing:2.836800px;}
.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;}
}
.ws0_c01375{word-spacing:-21.000000px;}
.ws1_c01375{word-spacing:-18.000000px;}
.ws2_c01375{word-spacing:-17.985600px;}
.ws3_c01375{word-spacing:0.000000px;}
._e_c01375{margin-left:-21.778800px;}
._d_c01375{margin-left:-8.280000px;}
._7_c01375{margin-left:-6.300000px;}
._12_c01375{margin-left:-5.054400px;}
._8_c01375{margin-left:-3.326400px;}
._10_c01375{margin-left:-2.304000px;}
._4_c01375{margin-left:-1.192800px;}
._2_c01375{width:1.066800px;}
._0_c01375{width:2.167860px;}
._a_c01375{width:4.082400px;}
._17_c01375{width:5.089200px;}
._18_c01375{width:6.933600px;}
._16_c01375{width:8.496000px;}
._1b_c01375{width:9.842400px;}
._19_c01375{width:11.253600px;}
._1a_c01375{width:13.039200px;}
._1f_c01375{width:14.061600px;}
._14_c01375{width:15.199200px;}
._1e_c01375{width:16.528140px;}
._15_c01375{width:19.040940px;}
._20_c01375{width:20.048400px;}
._11_c01375{width:21.614400px;}
._f_c01375{width:22.683600px;}
._13_c01375{width:24.364800px;}
._1c_c01375{width:25.530540px;}
._1d_c01375{width:27.077460px;}
._1_c01375{width:29.584800px;}
._c_c01375{width:31.752000px;}
._b_c01375{width:34.142400px;}
._3_c01375{width:35.414400px;}
._6_c01375{width:36.472800px;}
._5_c01375{width:37.657200px;}
._9_c01375{width:39.782400px;}
.fc0_c01375{color:rgb(0,0,0);}
.fs2_c01375{font-size:60.000000px;}
.fs1_c01375{font-size:72.000000px;}
.fs0_c01375{font-size:84.000000px;}
.y0_c01375{bottom:0.000000px;}
.y1f_c01375{bottom:67.500000px;}
.y1d_c01375{bottom:214.500000px;}
.y1c_c01375{bottom:235.500000px;}
.y1b_c01375{bottom:277.500000px;}
.y1a_c01375{bottom:298.500000px;}
.y19_c01375{bottom:340.500000px;}
.y18_c01375{bottom:361.500000px;}
.y17_c01375{bottom:403.500000px;}
.y16_c01375{bottom:424.500000px;}
.y15_c01375{bottom:466.500000px;}
.y14_c01375{bottom:487.500000px;}
.y13_c01375{bottom:529.500000px;}
.y12_c01375{bottom:550.500000px;}
.y11_c01375{bottom:571.500000px;}
.y10_c01375{bottom:592.500000px;}
.yf_c01375{bottom:634.500000px;}
.ye_c01375{bottom:655.500000px;}
.yd_c01375{bottom:697.500000px;}
.yc_c01375{bottom:718.500000px;}
.yb_c01375{bottom:760.500000px;}
.ya_c01375{bottom:781.500000px;}
.y9_c01375{bottom:823.500000px;}
.y8_c01375{bottom:865.500000px;}
.y7_c01375{bottom:886.500000px;}
.y6_c01375{bottom:928.500000px;}
.y5_c01375{bottom:949.500000px;}
.y4_c01375{bottom:970.500000px;}
.y3_c01375{bottom:1012.500000px;}
.y2_c01375{bottom:1068.000000px;}
.y1_c01375{bottom:1093.500000px;}
.y1e_c01375{bottom:1194.000000px;}
.h4_c01375{height:44.208984px;}
.h3_c01375{height:56.074219px;}
.h2_c01375{height:65.144531px;}
.h1_c01375{height:76.001953px;}
.h0_c01375{height:1263.000000px;}
.w0_c01375{width:892.500000px;}
.x0_c01375{left:0.000000px;}
.x1_c01375{left:65.480310px;}
.x2_c01375{left:77.723475px;}
@media print{
.v0_c01375{vertical-align:0.000000pt;}
.ls2_c01375{letter-spacing:-0.012800pt;}
.ls1_c01375{letter-spacing:0.000000pt;}
.ls3_c01375{letter-spacing:0.010667pt;}
.ls0_c01375{letter-spacing:2.521600pt;}
.ws0_c01375{word-spacing:-18.666667pt;}
.ws1_c01375{word-spacing:-16.000000pt;}
.ws2_c01375{word-spacing:-15.987200pt;}
.ws3_c01375{word-spacing:0.000000pt;}
._e_c01375{margin-left:-19.358933pt;}
._d_c01375{margin-left:-7.360000pt;}
._7_c01375{margin-left:-5.600000pt;}
._12_c01375{margin-left:-4.492800pt;}
._8_c01375{margin-left:-2.956800pt;}
._10_c01375{margin-left:-2.048000pt;}
._4_c01375{margin-left:-1.060267pt;}
._2_c01375{width:0.948267pt;}
._0_c01375{width:1.926987pt;}
._a_c01375{width:3.628800pt;}
._17_c01375{width:4.523733pt;}
._18_c01375{width:6.163200pt;}
._16_c01375{width:7.552000pt;}
._1b_c01375{width:8.748800pt;}
._19_c01375{width:10.003200pt;}
._1a_c01375{width:11.590400pt;}
._1f_c01375{width:12.499200pt;}
._14_c01375{width:13.510400pt;}
._1e_c01375{width:14.691680pt;}
._15_c01375{width:16.925280pt;}
._20_c01375{width:17.820800pt;}
._11_c01375{width:19.212800pt;}
._f_c01375{width:20.163200pt;}
._13_c01375{width:21.657600pt;}
._1c_c01375{width:22.693813pt;}
._1d_c01375{width:24.068853pt;}
._1_c01375{width:26.297600pt;}
._c_c01375{width:28.224000pt;}
._b_c01375{width:30.348800pt;}
._3_c01375{width:31.479467pt;}
._6_c01375{width:32.420267pt;}
._5_c01375{width:33.473067pt;}
._9_c01375{width:35.362133pt;}
.fs2_c01375{font-size:53.333333pt;}
.fs1_c01375{font-size:64.000000pt;}
.fs0_c01375{font-size:74.666667pt;}
.y0_c01375{bottom:0.000000pt;}
.y1f_c01375{bottom:60.000000pt;}
.y1d_c01375{bottom:190.666667pt;}
.y1c_c01375{bottom:209.333333pt;}
.y1b_c01375{bottom:246.666667pt;}
.y1a_c01375{bottom:265.333333pt;}
.y19_c01375{bottom:302.666667pt;}
.y18_c01375{bottom:321.333333pt;}
.y17_c01375{bottom:358.666667pt;}
.y16_c01375{bottom:377.333333pt;}
.y15_c01375{bottom:414.666667pt;}
.y14_c01375{bottom:433.333333pt;}
.y13_c01375{bottom:470.666667pt;}
.y12_c01375{bottom:489.333333pt;}
.y11_c01375{bottom:508.000000pt;}
.y10_c01375{bottom:526.666667pt;}
.yf_c01375{bottom:564.000000pt;}
.ye_c01375{bottom:582.666667pt;}
.yd_c01375{bottom:620.000000pt;}
.yc_c01375{bottom:638.666667pt;}
.yb_c01375{bottom:676.000000pt;}
.ya_c01375{bottom:694.666667pt;}
.y9_c01375{bottom:732.000000pt;}
.y8_c01375{bottom:769.333333pt;}
.y7_c01375{bottom:788.000000pt;}
.y6_c01375{bottom:825.333333pt;}
.y5_c01375{bottom:844.000000pt;}
.y4_c01375{bottom:862.666667pt;}
.y3_c01375{bottom:900.000000pt;}
.y2_c01375{bottom:949.333333pt;}
.y1_c01375{bottom:972.000000pt;}
.y1e_c01375{bottom:1061.333333pt;}
.h4_c01375{height:39.296875pt;}
.h3_c01375{height:49.843750pt;}
.h2_c01375{height:57.906250pt;}
.h1_c01375{height:67.557292pt;}
.h0_c01375{height:1122.666667pt;}
.w0_c01375{width:793.333333pt;}
.x0_c01375{left:0.000000pt;}
.x1_c01375{left:58.204720pt;}
.x2_c01375{left:69.087533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1eedcec1f533ddf76f49add4.woff2')format("woff");}.ff1_c01376{font-family:ff1_c01376;line-height:1.187012;font-style:normal;font-weight:normal;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_d85094e8703c85ba772a8a7b.woff2')format("woff");}.ff2_c01376{font-family:ff2_c01376;line-height:1.005371;font-style:normal;font-weight:normal;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_5594eac45d2dcdb53e273c23.woff2')format("woff");}.ff3_c01376{font-family:ff3_c01376;line-height:0.958008;font-style: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);}
.v0_c01376{vertical-align:0.000000px;}
.ls2_c01376{letter-spacing:-0.014400px;}
.ls1_c01376{letter-spacing:0.000000px;}
.ls0_c01376{letter-spacing:0.012000px;}
.ls3_c01376{letter-spacing:0.014400px;}
.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;}
}
.ws0_c01376{word-spacing:-18.000000px;}
.ws1_c01376{word-spacing:-17.985600px;}
.ws2_c01376{word-spacing:0.000000px;}
._13_c01376{margin-left:-8.388000px;}
._6_c01376{margin-left:-6.638400px;}
._0_c01376{margin-left:-5.364000px;}
._4_c01376{margin-left:-3.067200px;}
._7_c01376{margin-left:-1.129200px;}
._1_c01376{width:1.044000px;}
._3_c01376{width:2.440800px;}
._2_c01376{width:3.837600px;}
._8_c01376{width:4.903800px;}
._5_c01376{width:6.278400px;}
._11_c01376{width:8.120400px;}
._14_c01376{width:9.270600px;}
._12_c01376{width:10.656000px;}
._10_c01376{width:12.368400px;}
._15_c01376{width:14.881200px;}
._17_c01376{width:16.641600px;}
._c_c01376{width:19.346400px;}
._18_c01376{width:20.484000px;}
._19_c01376{width:21.760800px;}
._a_c01376{width:23.140800px;}
._b_c01376{width:24.385200px;}
._9_c01376{width:26.034000px;}
._f_c01376{width:27.180000px;}
._d_c01376{width:28.932000px;}
._e_c01376{width:32.616000px;}
._16_c01376{width:35.716800px;}
.fc0_c01376{color:rgb(0,0,0);}
.fs1_c01376{font-size:60.000000px;}
.fs0_c01376{font-size:72.000000px;}
.y0_c01376{bottom:0.000000px;}
.y1e_c01376{bottom:67.500000px;}
.y1c_c01376{bottom:165.000000px;}
.y1b_c01376{bottom:186.000000px;}
.y1a_c01376{bottom:228.000000px;}
.y19_c01376{bottom:249.000000px;}
.y18_c01376{bottom:291.000000px;}
.y17_c01376{bottom:312.000000px;}
.y16_c01376{bottom:354.000000px;}
.y15_c01376{bottom:396.000000px;}
.y14_c01376{bottom:417.000000px;}
.y13_c01376{bottom:459.000000px;}
.y12_c01376{bottom:501.000000px;}
.y11_c01376{bottom:543.000000px;}
.y10_c01376{bottom:585.000000px;}
.yf_c01376{bottom:606.000000px;}
.ye_c01376{bottom:648.000000px;}
.yd_c01376{bottom:669.000000px;}
.yc_c01376{bottom:711.000000px;}
.yb_c01376{bottom:732.000000px;}
.ya_c01376{bottom:774.000000px;}
.y9_c01376{bottom:795.000000px;}
.y8_c01376{bottom:837.000000px;}
.y7_c01376{bottom:858.000000px;}
.y6_c01376{bottom:904.500000px;}
.y5_c01376{bottom:949.500000px;}
.y4_c01376{bottom:991.500000px;}
.y3_c01376{bottom:1033.500000px;}
.y2_c01376{bottom:1054.500000px;}
.y1_c01376{bottom:1096.500000px;}
.y1d_c01376{bottom:1194.000000px;}
.h2_c01376{height:44.208984px;}
.h1_c01376{height:65.144531px;}
.h0_c01376{height:1263.000000px;}
.w0_c01376{width:892.500000px;}
.x0_c01376{left:0.000000px;}
.x1_c01376{left:150.519750px;}
.x2_c01376{left:556.865850px;}
.x3_c01376{left:801.992850px;}
@media print{
.v0_c01376{vertical-align:0.000000pt;}
.ls2_c01376{letter-spacing:-0.012800pt;}
.ls1_c01376{letter-spacing:0.000000pt;}
.ls0_c01376{letter-spacing:0.010667pt;}
.ls3_c01376{letter-spacing:0.012800pt;}
.ws0_c01376{word-spacing:-16.000000pt;}
.ws1_c01376{word-spacing:-15.987200pt;}
.ws2_c01376{word-spacing:0.000000pt;}
._13_c01376{margin-left:-7.456000pt;}
._6_c01376{margin-left:-5.900800pt;}
._0_c01376{margin-left:-4.768000pt;}
._4_c01376{margin-left:-2.726400pt;}
._7_c01376{margin-left:-1.003733pt;}
._1_c01376{width:0.928000pt;}
._3_c01376{width:2.169600pt;}
._2_c01376{width:3.411200pt;}
._8_c01376{width:4.358933pt;}
._5_c01376{width:5.580800pt;}
._11_c01376{width:7.218133pt;}
._14_c01376{width:8.240533pt;}
._12_c01376{width:9.472000pt;}
._10_c01376{width:10.994133pt;}
._15_c01376{width:13.227733pt;}
._17_c01376{width:14.792533pt;}
._c_c01376{width:17.196800pt;}
._18_c01376{width:18.208000pt;}
._19_c01376{width:19.342933pt;}
._a_c01376{width:20.569600pt;}
._b_c01376{width:21.675733pt;}
._9_c01376{width:23.141333pt;}
._f_c01376{width:24.160000pt;}
._d_c01376{width:25.717333pt;}
._e_c01376{width:28.992000pt;}
._16_c01376{width:31.748267pt;}
.fs1_c01376{font-size:53.333333pt;}
.fs0_c01376{font-size:64.000000pt;}
.y0_c01376{bottom:0.000000pt;}
.y1e_c01376{bottom:60.000000pt;}
.y1c_c01376{bottom:146.666667pt;}
.y1b_c01376{bottom:165.333333pt;}
.y1a_c01376{bottom:202.666667pt;}
.y19_c01376{bottom:221.333333pt;}
.y18_c01376{bottom:258.666667pt;}
.y17_c01376{bottom:277.333333pt;}
.y16_c01376{bottom:314.666667pt;}
.y15_c01376{bottom:352.000000pt;}
.y14_c01376{bottom:370.666667pt;}
.y13_c01376{bottom:408.000000pt;}
.y12_c01376{bottom:445.333333pt;}
.y11_c01376{bottom:482.666667pt;}
.y10_c01376{bottom:520.000000pt;}
.yf_c01376{bottom:538.666667pt;}
.ye_c01376{bottom:576.000000pt;}
.yd_c01376{bottom:594.666667pt;}
.yc_c01376{bottom:632.000000pt;}
.yb_c01376{bottom:650.666667pt;}
.ya_c01376{bottom:688.000000pt;}
.y9_c01376{bottom:706.666667pt;}
.y8_c01376{bottom:744.000000pt;}
.y7_c01376{bottom:762.666667pt;}
.y6_c01376{bottom:804.000000pt;}
.y5_c01376{bottom:844.000000pt;}
.y4_c01376{bottom:881.333333pt;}
.y3_c01376{bottom:918.666667pt;}
.y2_c01376{bottom:937.333333pt;}
.y1_c01376{bottom:974.666667pt;}
.y1d_c01376{bottom:1061.333333pt;}
.h2_c01376{height:39.296875pt;}
.h1_c01376{height:57.906250pt;}
.h0_c01376{height:1122.666667pt;}
.w0_c01376{width:793.333333pt;}
.x0_c01376{left:0.000000pt;}
.x1_c01376{left:133.795333pt;}
.x2_c01376{left:494.991867pt;}
.x3_c01376{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4c5d23961e7876bd1b709134.woff2')format("woff");}.ff1_c01377{font-family:ff1_c01377;line-height:1.187012;font-style:normal;font-weight:normal;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_d6a9bfdbff9b3ec6c5f39a9c.woff2')format("woff");}.ff2_c01377{font-family:ff2_c01377;line-height:1.005371;font-style:normal;font-weight:normal;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_d757d854e0dec00a9b471487.woff2')format("woff");}.ff3_c01377{font-family:ff3_c01377;line-height:0.756836;font-style:normal;font-weight:normal;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_2d4d76f799ed88ef168d0444.woff2')format("woff");}.ff4_c01377{font-family:ff4_c01377;line-height:1.155762;font-style: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;}
.ls0_c01377{letter-spacing:0.000000px;}
.ls1_c01377{letter-spacing:0.012000px;}
.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;}
}
.ws0_c01377{word-spacing:-18.000000px;}
.ws1_c01377{word-spacing:0.000000px;}
._1_c01377{margin-left:-7.992000px;}
._a_c01377{margin-left:-6.624000px;}
._0_c01377{margin-left:-5.364000px;}
._2_c01377{margin-left:-4.010400px;}
._6_c01377{margin-left:-2.440800px;}
._3_c01377{margin-left:-1.346400px;}
._8_c01377{width:1.648800px;}
._d_c01377{width:3.586320px;}
._e_c01377{width:5.076720px;}
._b_c01377{width:6.781680px;}
._c_c01377{width:8.424000px;}
._f_c01377{width:10.049760px;}
._17_c01377{width:12.196800px;}
._19_c01377{width:13.377600px;}
._16_c01377{width:14.846400px;}
._18_c01377{width:16.294320px;}
._9_c01377{width:20.368800px;}
._5_c01377{width:22.046400px;}
._4_c01377{width:23.414400px;}
._7_c01377{width:24.501600px;}
._13_c01377{width:26.445600px;}
._15_c01377{width:27.848880px;}
._12_c01377{width:29.167200px;}
._14_c01377{width:30.463200px;}
._11_c01377{width:48.002400px;}
._10_c01377{width:54.000000px;}
.fc0_c01377{color:rgb(0,0,0);}
.fs1_c01377{font-size:60.000000px;}
.fs0_c01377{font-size:72.000000px;}
.y0_c01377{bottom:0.000000px;}
.y22_c01377{bottom:67.500000px;}
.y20_c01377{bottom:153.000000px;}
.y1f_c01377{bottom:174.000000px;}
.y1e_c01377{bottom:195.000000px;}
.y1d_c01377{bottom:216.000000px;}
.y1c_c01377{bottom:258.000000px;}
.y1b_c01377{bottom:321.000000px;}
.y1a_c01377{bottom:342.000000px;}
.y19_c01377{bottom:384.000000px;}
.y18_c01377{bottom:405.000000px;}
.y17_c01377{bottom:426.000000px;}
.y16_c01377{bottom:468.000000px;}
.y15_c01377{bottom:489.000000px;}
.y14_c01377{bottom:531.000000px;}
.y13_c01377{bottom:552.000000px;}
.y12_c01377{bottom:594.000000px;}
.y11_c01377{bottom:615.000000px;}
.y10_c01377{bottom:636.000000px;}
.yf_c01377{bottom:657.000000px;}
.ye_c01377{bottom:678.000000px;}
.yd_c01377{bottom:720.000000px;}
.yc_c01377{bottom:762.000000px;}
.yb_c01377{bottom:783.000000px;}
.ya_c01377{bottom:825.000000px;}
.y9_c01377{bottom:846.000000px;}
.y8_c01377{bottom:867.000000px;}
.y7_c01377{bottom:909.000000px;}
.y6_c01377{bottom:930.000000px;}
.y5_c01377{bottom:972.000000px;}
.y4_c01377{bottom:993.000000px;}
.y3_c01377{bottom:1014.000000px;}
.y2_c01377{bottom:1056.000000px;}
.y1_c01377{bottom:1096.500000px;}
.y21_c01377{bottom:1194.000000px;}
.h4_c01377{height:44.208984px;}
.h2_c01377{height:52.242188px;}
.h3_c01377{height:56.074219px;}
.h1_c01377{height:65.144531px;}
.h0_c01377{height:1263.000000px;}
.w0_c01377{width:892.500000px;}
.x0_c01377{left:0.000000px;}
.x1_c01377{left:65.480310px;}
@media print{
.v0_c01377{vertical-align:0.000000pt;}
.ls0_c01377{letter-spacing:0.000000pt;}
.ls1_c01377{letter-spacing:0.010667pt;}
.ws0_c01377{word-spacing:-16.000000pt;}
.ws1_c01377{word-spacing:0.000000pt;}
._1_c01377{margin-left:-7.104000pt;}
._a_c01377{margin-left:-5.888000pt;}
._0_c01377{margin-left:-4.768000pt;}
._2_c01377{margin-left:-3.564800pt;}
._6_c01377{margin-left:-2.169600pt;}
._3_c01377{margin-left:-1.196800pt;}
._8_c01377{width:1.465600pt;}
._d_c01377{width:3.187840pt;}
._e_c01377{width:4.512640pt;}
._b_c01377{width:6.028160pt;}
._c_c01377{width:7.488000pt;}
._f_c01377{width:8.933120pt;}
._17_c01377{width:10.841600pt;}
._19_c01377{width:11.891200pt;}
._16_c01377{width:13.196800pt;}
._18_c01377{width:14.483840pt;}
._9_c01377{width:18.105600pt;}
._5_c01377{width:19.596800pt;}
._4_c01377{width:20.812800pt;}
._7_c01377{width:21.779200pt;}
._13_c01377{width:23.507200pt;}
._15_c01377{width:24.754560pt;}
._12_c01377{width:25.926400pt;}
._14_c01377{width:27.078400pt;}
._11_c01377{width:42.668800pt;}
._10_c01377{width:48.000000pt;}
.fs1_c01377{font-size:53.333333pt;}
.fs0_c01377{font-size:64.000000pt;}
.y0_c01377{bottom:0.000000pt;}
.y22_c01377{bottom:60.000000pt;}
.y20_c01377{bottom:136.000000pt;}
.y1f_c01377{bottom:154.666667pt;}
.y1e_c01377{bottom:173.333333pt;}
.y1d_c01377{bottom:192.000000pt;}
.y1c_c01377{bottom:229.333333pt;}
.y1b_c01377{bottom:285.333333pt;}
.y1a_c01377{bottom:304.000000pt;}
.y19_c01377{bottom:341.333333pt;}
.y18_c01377{bottom:360.000000pt;}
.y17_c01377{bottom:378.666667pt;}
.y16_c01377{bottom:416.000000pt;}
.y15_c01377{bottom:434.666667pt;}
.y14_c01377{bottom:472.000000pt;}
.y13_c01377{bottom:490.666667pt;}
.y12_c01377{bottom:528.000000pt;}
.y11_c01377{bottom:546.666667pt;}
.y10_c01377{bottom:565.333333pt;}
.yf_c01377{bottom:584.000000pt;}
.ye_c01377{bottom:602.666667pt;}
.yd_c01377{bottom:640.000000pt;}
.yc_c01377{bottom:677.333333pt;}
.yb_c01377{bottom:696.000000pt;}
.ya_c01377{bottom:733.333333pt;}
.y9_c01377{bottom:752.000000pt;}
.y8_c01377{bottom:770.666667pt;}
.y7_c01377{bottom:808.000000pt;}
.y6_c01377{bottom:826.666667pt;}
.y5_c01377{bottom:864.000000pt;}
.y4_c01377{bottom:882.666667pt;}
.y3_c01377{bottom:901.333333pt;}
.y2_c01377{bottom:938.666667pt;}
.y1_c01377{bottom:974.666667pt;}
.y21_c01377{bottom:1061.333333pt;}
.h4_c01377{height:39.296875pt;}
.h2_c01377{height:46.437500pt;}
.h3_c01377{height:49.843750pt;}
.h1_c01377{height:57.906250pt;}
.h0_c01377{height:1122.666667pt;}
.w0_c01377{width:793.333333pt;}
.x0_c01377{left:0.000000pt;}
.x1_c01377{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_72ce39bea89ac6a5d7daef1a.woff2')format("woff");}.ff1_c01378{font-family:ff1_c01378;line-height:1.187012;font-style:normal;font-weight:normal;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_ccb2fe14356a06d533a38c2e.woff2')format("woff");}.ff2_c01378{font-family:ff2_c01378;line-height:1.005371;font-style:normal;font-weight:normal;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_e4ffb49c8e716e17da13efb4.woff2')format("woff");}.ff3_c01378{font-family:ff3_c01378;line-height:0.958008;font-style: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);}
.v0_c01378{vertical-align:0.000000px;}
.ls3_c01378{letter-spacing:-0.014400px;}
.ls2_c01378{letter-spacing:0.000000px;}
.ls1_c01378{letter-spacing:0.012000px;}
.ls0_c01378{letter-spacing:0.014400px;}
.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;}
}
.ws1_c01378{word-spacing:-18.014400px;}
.ws0_c01378{word-spacing:-18.000000px;}
.ws2_c01378{word-spacing:-17.985600px;}
.ws3_c01378{word-spacing:0.000000px;}
._11_c01378{margin-left:-7.992000px;}
._2_c01378{margin-left:-6.652800px;}
._7_c01378{margin-left:-5.587200px;}
._a_c01378{margin-left:-4.089000px;}
._0_c01378{margin-left:-2.109600px;}
._10_c01378{margin-left:-1.058400px;}
._9_c01378{width:1.879200px;}
._5_c01378{width:3.060000px;}
._3_c01378{width:4.096800px;}
._e_c01378{width:5.119200px;}
._15_c01378{width:6.148200px;}
._f_c01378{width:7.286400px;}
._d_c01378{width:9.237000px;}
._16_c01378{width:10.364400px;}
._12_c01378{width:12.002400px;}
._13_c01378{width:13.723800px;}
._14_c01378{width:15.291600px;}
._1a_c01378{width:16.695000px;}
._17_c01378{width:20.844000px;}
._19_c01378{width:22.413600px;}
._18_c01378{width:24.384600px;}
._b_c01378{width:25.754400px;}
._4_c01378{width:27.849600px;}
._6_c01378{width:28.850400px;}
._c_c01378{width:30.513600px;}
._1_c01378{width:31.795200px;}
._8_c01378{width:36.590400px;}
.fc0_c01378{color:rgb(0,0,0);}
.fs1_c01378{font-size:60.000000px;}
.fs0_c01378{font-size:72.000000px;}
.y0_c01378{bottom:0.000000px;}
.y1d_c01378{bottom:67.500000px;}
.y1b_c01378{bottom:193.500000px;}
.y1a_c01378{bottom:214.500000px;}
.y19_c01378{bottom:256.500000px;}
.y18_c01378{bottom:319.500000px;}
.y17_c01378{bottom:340.500000px;}
.y16_c01378{bottom:382.500000px;}
.y15_c01378{bottom:403.500000px;}
.y14_c01378{bottom:445.500000px;}
.y13_c01378{bottom:487.500000px;}
.y12_c01378{bottom:508.500000px;}
.y11_c01378{bottom:550.500000px;}
.y10_c01378{bottom:571.500000px;}
.yf_c01378{bottom:592.500000px;}
.ye_c01378{bottom:634.500000px;}
.yd_c01378{bottom:655.500000px;}
.yc_c01378{bottom:697.500000px;}
.yb_c01378{bottom:739.500000px;}
.ya_c01378{bottom:760.500000px;}
.y9_c01378{bottom:802.500000px;}
.y8_c01378{bottom:844.500000px;}
.y7_c01378{bottom:865.500000px;}
.y6_c01378{bottom:907.500000px;}
.y5_c01378{bottom:928.500000px;}
.y4_c01378{bottom:970.500000px;}
.y3_c01378{bottom:1012.500000px;}
.y2_c01378{bottom:1033.500000px;}
.y1_c01378{bottom:1075.500000px;}
.y1c_c01378{bottom:1194.000000px;}
.h2_c01378{height:44.208984px;}
.h1_c01378{height:65.144531px;}
.h0_c01378{height:1263.000000px;}
.w0_c01378{width:892.500000px;}
.x0_c01378{left:0.000000px;}
.x1_c01378{left:150.519750px;}
.x2_c01378{left:556.865850px;}
.x3_c01378{left:801.992850px;}
@media print{
.v0_c01378{vertical-align:0.000000pt;}
.ls3_c01378{letter-spacing:-0.012800pt;}
.ls2_c01378{letter-spacing:0.000000pt;}
.ls1_c01378{letter-spacing:0.010667pt;}
.ls0_c01378{letter-spacing:0.012800pt;}
.ws1_c01378{word-spacing:-16.012800pt;}
.ws0_c01378{word-spacing:-16.000000pt;}
.ws2_c01378{word-spacing:-15.987200pt;}
.ws3_c01378{word-spacing:0.000000pt;}
._11_c01378{margin-left:-7.104000pt;}
._2_c01378{margin-left:-5.913600pt;}
._7_c01378{margin-left:-4.966400pt;}
._a_c01378{margin-left:-3.634667pt;}
._0_c01378{margin-left:-1.875200pt;}
._10_c01378{margin-left:-0.940800pt;}
._9_c01378{width:1.670400pt;}
._5_c01378{width:2.720000pt;}
._3_c01378{width:3.641600pt;}
._e_c01378{width:4.550400pt;}
._15_c01378{width:5.465067pt;}
._f_c01378{width:6.476800pt;}
._d_c01378{width:8.210667pt;}
._16_c01378{width:9.212800pt;}
._12_c01378{width:10.668800pt;}
._13_c01378{width:12.198933pt;}
._14_c01378{width:13.592533pt;}
._1a_c01378{width:14.840000pt;}
._17_c01378{width:18.528000pt;}
._19_c01378{width:19.923200pt;}
._18_c01378{width:21.675200pt;}
._b_c01378{width:22.892800pt;}
._4_c01378{width:24.755200pt;}
._6_c01378{width:25.644800pt;}
._c_c01378{width:27.123200pt;}
._1_c01378{width:28.262400pt;}
._8_c01378{width:32.524800pt;}
.fs1_c01378{font-size:53.333333pt;}
.fs0_c01378{font-size:64.000000pt;}
.y0_c01378{bottom:0.000000pt;}
.y1d_c01378{bottom:60.000000pt;}
.y1b_c01378{bottom:172.000000pt;}
.y1a_c01378{bottom:190.666667pt;}
.y19_c01378{bottom:228.000000pt;}
.y18_c01378{bottom:284.000000pt;}
.y17_c01378{bottom:302.666667pt;}
.y16_c01378{bottom:340.000000pt;}
.y15_c01378{bottom:358.666667pt;}
.y14_c01378{bottom:396.000000pt;}
.y13_c01378{bottom:433.333333pt;}
.y12_c01378{bottom:452.000000pt;}
.y11_c01378{bottom:489.333333pt;}
.y10_c01378{bottom:508.000000pt;}
.yf_c01378{bottom:526.666667pt;}
.ye_c01378{bottom:564.000000pt;}
.yd_c01378{bottom:582.666667pt;}
.yc_c01378{bottom:620.000000pt;}
.yb_c01378{bottom:657.333333pt;}
.ya_c01378{bottom:676.000000pt;}
.y9_c01378{bottom:713.333333pt;}
.y8_c01378{bottom:750.666667pt;}
.y7_c01378{bottom:769.333333pt;}
.y6_c01378{bottom:806.666667pt;}
.y5_c01378{bottom:825.333333pt;}
.y4_c01378{bottom:862.666667pt;}
.y3_c01378{bottom:900.000000pt;}
.y2_c01378{bottom:918.666667pt;}
.y1_c01378{bottom:956.000000pt;}
.y1c_c01378{bottom:1061.333333pt;}
.h2_c01378{height:39.296875pt;}
.h1_c01378{height:57.906250pt;}
.h0_c01378{height:1122.666667pt;}
.w0_c01378{width:793.333333pt;}
.x0_c01378{left:0.000000pt;}
.x1_c01378{left:133.795333pt;}
.x2_c01378{left:494.991867pt;}
.x3_c01378{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_adcfa0f44e83df2fb149bf76.woff2')format("woff");}.ff1_c01379{font-family:ff1_c01379;line-height:1.187012;font-style:normal;font-weight:normal;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_6574e3aa5dcd978bf961aa10.woff2')format("woff");}.ff2_c01379{font-family:ff2_c01379;line-height:1.005371;font-style:normal;font-weight:normal;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_adc5f326c2264eff3eca0f16.woff2')format("woff");}.ff3_c01379{font-family:ff3_c01379;line-height:0.756836;font-style:normal;font-weight:normal;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_382f35a7b713a39a53484789.woff2')format("woff");}.ff4_c01379{font-family:ff4_c01379;line-height:1.155762;font-style: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;}
.ls1_c01379{letter-spacing:-0.014400px;}
.ls0_c01379{letter-spacing:0.000000px;}
.ls2_c01379{letter-spacing:0.012000px;}
.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:-18.000000px;}
.ws1_c01379{word-spacing:-17.985600px;}
.ws2_c01379{word-spacing:0.000000px;}
._14_c01379{margin-left:-6.667200px;}
._e_c01379{margin-left:-5.428800px;}
._f_c01379{margin-left:-4.032000px;}
._0_c01379{margin-left:-1.994400px;}
._5_c01379{width:1.317600px;}
._2_c01379{width:2.620800px;}
._7_c01379{width:3.981600px;}
._17_c01379{width:4.997280px;}
._8_c01379{width:6.026400px;}
._6_c01379{width:7.264800px;}
._3_c01379{width:8.892000px;}
._4_c01379{width:11.052000px;}
._1_c01379{width:12.895200px;}
._10_c01379{width:15.076800px;}
._11_c01379{width:16.495200px;}
._15_c01379{width:19.058400px;}
._13_c01379{width:20.354760px;}
._12_c01379{width:21.895200px;}
._16_c01379{width:23.179680px;}
._a_c01379{width:24.760800px;}
._d_c01379{width:26.054160px;}
._b_c01379{width:28.094400px;}
._9_c01379{width:30.132000px;}
._18_c01379{width:36.000000px;}
._19_c01379{width:41.997600px;}
._1a_c01379{width:48.002400px;}
._c_c01379{width:60.393600px;}
.fc0_c01379{color:rgb(0,0,0);}
.fs1_c01379{font-size:60.000000px;}
.fs0_c01379{font-size:72.000000px;}
.y0_c01379{bottom:0.000000px;}
.y20_c01379{bottom:67.500000px;}
.y1e_c01379{bottom:151.500000px;}
.y1d_c01379{bottom:172.500000px;}
.y1c_c01379{bottom:214.500000px;}
.y1b_c01379{bottom:235.500000px;}
.y1a_c01379{bottom:256.500000px;}
.y19_c01379{bottom:298.500000px;}
.y18_c01379{bottom:319.500000px;}
.y17_c01379{bottom:361.500000px;}
.y16_c01379{bottom:382.500000px;}
.y15_c01379{bottom:424.500000px;}
.y14_c01379{bottom:466.500000px;}
.y13_c01379{bottom:487.500000px;}
.y12_c01379{bottom:529.500000px;}
.y11_c01379{bottom:550.500000px;}
.y10_c01379{bottom:592.500000px;}
.yf_c01379{bottom:634.500000px;}
.ye_c01379{bottom:655.500000px;}
.yd_c01379{bottom:697.500000px;}
.yc_c01379{bottom:739.500000px;}
.yb_c01379{bottom:802.500000px;}
.ya_c01379{bottom:823.500000px;}
.y9_c01379{bottom:865.500000px;}
.y8_c01379{bottom:907.500000px;}
.y7_c01379{bottom:928.500000px;}
.y6_c01379{bottom:949.500000px;}
.y5_c01379{bottom:991.500000px;}
.y4_c01379{bottom:1012.500000px;}
.y3_c01379{bottom:1054.500000px;}
.y2_c01379{bottom:1075.500000px;}
.y1_c01379{bottom:1096.500000px;}
.y1f_c01379{bottom:1194.000000px;}
.h3_c01379{height:44.208984px;}
.h2_c01379{height:56.074219px;}
.h1_c01379{height:65.144531px;}
.h0_c01379{height:1263.000000px;}
.w0_c01379{width:892.500000px;}
.x0_c01379{left:0.000000px;}
.x1_c01379{left:65.480310px;}
@media print{
.v0_c01379{vertical-align:0.000000pt;}
.ls1_c01379{letter-spacing:-0.012800pt;}
.ls0_c01379{letter-spacing:0.000000pt;}
.ls2_c01379{letter-spacing:0.010667pt;}
.ws0_c01379{word-spacing:-16.000000pt;}
.ws1_c01379{word-spacing:-15.987200pt;}
.ws2_c01379{word-spacing:0.000000pt;}
._14_c01379{margin-left:-5.926400pt;}
._e_c01379{margin-left:-4.825600pt;}
._f_c01379{margin-left:-3.584000pt;}
._0_c01379{margin-left:-1.772800pt;}
._5_c01379{width:1.171200pt;}
._2_c01379{width:2.329600pt;}
._7_c01379{width:3.539200pt;}
._17_c01379{width:4.442027pt;}
._8_c01379{width:5.356800pt;}
._6_c01379{width:6.457600pt;}
._3_c01379{width:7.904000pt;}
._4_c01379{width:9.824000pt;}
._1_c01379{width:11.462400pt;}
._10_c01379{width:13.401600pt;}
._11_c01379{width:14.662400pt;}
._15_c01379{width:16.940800pt;}
._13_c01379{width:18.093120pt;}
._12_c01379{width:19.462400pt;}
._16_c01379{width:20.604160pt;}
._a_c01379{width:22.009600pt;}
._d_c01379{width:23.159253pt;}
._b_c01379{width:24.972800pt;}
._9_c01379{width:26.784000pt;}
._18_c01379{width:32.000000pt;}
._19_c01379{width:37.331200pt;}
._1a_c01379{width:42.668800pt;}
._c_c01379{width:53.683200pt;}
.fs1_c01379{font-size:53.333333pt;}
.fs0_c01379{font-size:64.000000pt;}
.y0_c01379{bottom:0.000000pt;}
.y20_c01379{bottom:60.000000pt;}
.y1e_c01379{bottom:134.666667pt;}
.y1d_c01379{bottom:153.333333pt;}
.y1c_c01379{bottom:190.666667pt;}
.y1b_c01379{bottom:209.333333pt;}
.y1a_c01379{bottom:228.000000pt;}
.y19_c01379{bottom:265.333333pt;}
.y18_c01379{bottom:284.000000pt;}
.y17_c01379{bottom:321.333333pt;}
.y16_c01379{bottom:340.000000pt;}
.y15_c01379{bottom:377.333333pt;}
.y14_c01379{bottom:414.666667pt;}
.y13_c01379{bottom:433.333333pt;}
.y12_c01379{bottom:470.666667pt;}
.y11_c01379{bottom:489.333333pt;}
.y10_c01379{bottom:526.666667pt;}
.yf_c01379{bottom:564.000000pt;}
.ye_c01379{bottom:582.666667pt;}
.yd_c01379{bottom:620.000000pt;}
.yc_c01379{bottom:657.333333pt;}
.yb_c01379{bottom:713.333333pt;}
.ya_c01379{bottom:732.000000pt;}
.y9_c01379{bottom:769.333333pt;}
.y8_c01379{bottom:806.666667pt;}
.y7_c01379{bottom:825.333333pt;}
.y6_c01379{bottom:844.000000pt;}
.y5_c01379{bottom:881.333333pt;}
.y4_c01379{bottom:900.000000pt;}
.y3_c01379{bottom:937.333333pt;}
.y2_c01379{bottom:956.000000pt;}
.y1_c01379{bottom:974.666667pt;}
.y1f_c01379{bottom:1061.333333pt;}
.h3_c01379{height:39.296875pt;}
.h2_c01379{height:49.843750pt;}
.h1_c01379{height:57.906250pt;}
.h0_c01379{height:1122.666667pt;}
.w0_c01379{width:793.333333pt;}
.x0_c01379{left:0.000000pt;}
.x1_c01379{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4088478469a8a775441aa623.woff2')format("woff");}.ff1_c01380{font-family:ff1_c01380;line-height:1.187012;font-style:normal;font-weight:normal;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_09c3b78bef4b1f554a469ee6.woff2')format("woff");}.ff2_c01380{font-family:ff2_c01380;line-height:1.005371;font-style:normal;font-weight:normal;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_6383cd3e47c5d53cad307bd5.woff2')format("woff");}.ff3_c01380{font-family:ff3_c01380;line-height:0.958008;font-style: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:-2.095200px;}
.ls3_c01380{letter-spacing:0.000000px;}
.ls1_c01380{letter-spacing:0.000600px;}
.ls5_c01380{letter-spacing:0.007200px;}
.ls2_c01380{letter-spacing:0.012000px;}
.ls6_c01380{letter-spacing:0.014400px;}
.ls0_c01380{letter-spacing:2.232000px;}
.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;}
}
.ws0_c01380{word-spacing:-18.000000px;}
.ws1_c01380{word-spacing:0.000000px;}
._0_c01380{margin-left:-6.609600px;}
._1_c01380{margin-left:-4.968000px;}
._8_c01380{margin-left:-3.902400px;}
._f_c01380{margin-left:-2.822400px;}
._3_c01380{margin-left:-1.771200px;}
._9_c01380{width:1.656000px;}
._7_c01380{width:2.664000px;}
._5_c01380{width:4.183200px;}
._a_c01380{width:5.462400px;}
._13_c01380{width:6.903600px;}
._b_c01380{width:7.912800px;}
._d_c01380{width:9.633600px;}
._e_c01380{width:11.052000px;}
._c_c01380{width:12.672000px;}
._10_c01380{width:13.737600px;}
._12_c01380{width:14.774400px;}
._11_c01380{width:16.070400px;}
._19_c01380{width:19.303200px;}
._17_c01380{width:20.620800px;}
._1a_c01380{width:22.183200px;}
._6_c01380{width:23.529600px;}
._18_c01380{width:25.524000px;}
._1b_c01380{width:27.136800px;}
._2_c01380{width:28.785600px;}
._4_c01380{width:30.016800px;}
._14_c01380{width:32.558400px;}
._16_c01380{width:35.438400px;}
._15_c01380{width:37.656000px;}
.fc1_c01380{color:rgb(0,0,153);}
.fc0_c01380{color:rgb(0,0,0);}
.fs1_c01380{font-size:60.000000px;}
.fs0_c01380{font-size:72.000000px;}
.y0_c01380{bottom:0.000000px;}
.y1f_c01380{bottom:67.500000px;}
.y1d_c01380{bottom:195.000000px;}
.y1c_c01380{bottom:216.000000px;}
.y1b_c01380{bottom:258.000000px;}
.y1a_c01380{bottom:279.000000px;}
.y19_c01380{bottom:321.000000px;}
.y18_c01380{bottom:342.000000px;}
.y17_c01380{bottom:384.000000px;}
.y16_c01380{bottom:426.000000px;}
.y15_c01380{bottom:447.000000px;}
.y14_c01380{bottom:468.000000px;}
.y13_c01380{bottom:510.000000px;}
.y12_c01380{bottom:531.000000px;}
.y11_c01380{bottom:552.000000px;}
.y10_c01380{bottom:594.000000px;}
.yf_c01380{bottom:636.000000px;}
.ye_c01380{bottom:678.000000px;}
.yd_c01380{bottom:699.000000px;}
.yc_c01380{bottom:741.000000px;}
.yb_c01380{bottom:762.000000px;}
.ya_c01380{bottom:783.000000px;}
.y9_c01380{bottom:825.000000px;}
.y8_c01380{bottom:850.500000px;}
.y7_c01380{bottom:874.500000px;}
.y6_c01380{bottom:928.500000px;}
.y5_c01380{bottom:949.500000px;}
.y4_c01380{bottom:991.500000px;}
.y3_c01380{bottom:1033.500000px;}
.y2_c01380{bottom:1054.500000px;}
.y1_c01380{bottom:1096.500000px;}
.y1e_c01380{bottom:1194.000000px;}
.h2_c01380{height:44.208984px;}
.h1_c01380{height:65.144531px;}
.h0_c01380{height:1263.000000px;}
.w0_c01380{width:892.500000px;}
.x0_c01380{left:0.000000px;}
.x1_c01380{left:150.519750px;}
.x2_c01380{left:556.865850px;}
.x3_c01380{left:801.992850px;}
@media print{
.v0_c01380{vertical-align:0.000000pt;}
.ls4_c01380{letter-spacing:-1.862400pt;}
.ls3_c01380{letter-spacing:0.000000pt;}
.ls1_c01380{letter-spacing:0.000533pt;}
.ls5_c01380{letter-spacing:0.006400pt;}
.ls2_c01380{letter-spacing:0.010667pt;}
.ls6_c01380{letter-spacing:0.012800pt;}
.ls0_c01380{letter-spacing:1.984000pt;}
.ws0_c01380{word-spacing:-16.000000pt;}
.ws1_c01380{word-spacing:0.000000pt;}
._0_c01380{margin-left:-5.875200pt;}
._1_c01380{margin-left:-4.416000pt;}
._8_c01380{margin-left:-3.468800pt;}
._f_c01380{margin-left:-2.508800pt;}
._3_c01380{margin-left:-1.574400pt;}
._9_c01380{width:1.472000pt;}
._7_c01380{width:2.368000pt;}
._5_c01380{width:3.718400pt;}
._a_c01380{width:4.855467pt;}
._13_c01380{width:6.136533pt;}
._b_c01380{width:7.033600pt;}
._d_c01380{width:8.563200pt;}
._e_c01380{width:9.824000pt;}
._c_c01380{width:11.264000pt;}
._10_c01380{width:12.211200pt;}
._12_c01380{width:13.132800pt;}
._11_c01380{width:14.284800pt;}
._19_c01380{width:17.158400pt;}
._17_c01380{width:18.329600pt;}
._1a_c01380{width:19.718400pt;}
._6_c01380{width:20.915200pt;}
._18_c01380{width:22.688000pt;}
._1b_c01380{width:24.121600pt;}
._2_c01380{width:25.587200pt;}
._4_c01380{width:26.681600pt;}
._14_c01380{width:28.940800pt;}
._16_c01380{width:31.500800pt;}
._15_c01380{width:33.472000pt;}
.fs1_c01380{font-size:53.333333pt;}
.fs0_c01380{font-size:64.000000pt;}
.y0_c01380{bottom:0.000000pt;}
.y1f_c01380{bottom:60.000000pt;}
.y1d_c01380{bottom:173.333333pt;}
.y1c_c01380{bottom:192.000000pt;}
.y1b_c01380{bottom:229.333333pt;}
.y1a_c01380{bottom:248.000000pt;}
.y19_c01380{bottom:285.333333pt;}
.y18_c01380{bottom:304.000000pt;}
.y17_c01380{bottom:341.333333pt;}
.y16_c01380{bottom:378.666667pt;}
.y15_c01380{bottom:397.333333pt;}
.y14_c01380{bottom:416.000000pt;}
.y13_c01380{bottom:453.333333pt;}
.y12_c01380{bottom:472.000000pt;}
.y11_c01380{bottom:490.666667pt;}
.y10_c01380{bottom:528.000000pt;}
.yf_c01380{bottom:565.333333pt;}
.ye_c01380{bottom:602.666667pt;}
.yd_c01380{bottom:621.333333pt;}
.yc_c01380{bottom:658.666667pt;}
.yb_c01380{bottom:677.333333pt;}
.ya_c01380{bottom:696.000000pt;}
.y9_c01380{bottom:733.333333pt;}
.y8_c01380{bottom:756.000000pt;}
.y7_c01380{bottom:777.333333pt;}
.y6_c01380{bottom:825.333333pt;}
.y5_c01380{bottom:844.000000pt;}
.y4_c01380{bottom:881.333333pt;}
.y3_c01380{bottom:918.666667pt;}
.y2_c01380{bottom:937.333333pt;}
.y1_c01380{bottom:974.666667pt;}
.y1e_c01380{bottom:1061.333333pt;}
.h2_c01380{height:39.296875pt;}
.h1_c01380{height:57.906250pt;}
.h0_c01380{height:1122.666667pt;}
.w0_c01380{width:793.333333pt;}
.x0_c01380{left:0.000000pt;}
.x1_c01380{left:133.795333pt;}
.x2_c01380{left:494.991867pt;}
.x3_c01380{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_60bc67b301b91ac5afd87e29.woff2')format("woff");}.ff1_c01381{font-family:ff1_c01381;line-height:1.187500;font-style:normal;font-weight:normal;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_7c9a92cc13becb7c6c0eb275.woff2')format("woff");}.ff2_c01381{font-family:ff2_c01381;line-height:1.005371;font-style:normal;font-weight:normal;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_c2e235ea826ffad1e41bf257.woff2')format("woff");}.ff3_c01381{font-family:ff3_c01381;line-height:0.717285;font-style:normal;font-weight:normal;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_4bfa782c00ad772cdf14a3a2.woff2')format("woff");}.ff4_c01381{font-family:ff4_c01381;line-height:0.756836;font-style:normal;font-weight:normal;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_492d7831f58187eb6b4db542.woff2')format("woff");}.ff5_c01381{font-family:ff5_c01381;line-height:1.155762;font-style: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;}
.ls1_c01381{letter-spacing:0.000000px;}
.ls3_c01381{letter-spacing:0.012000px;}
.ls2_c01381{letter-spacing:0.014400px;}
.ls0_c01381{letter-spacing:2.671200px;}
.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;}
}
.ws1_c01381{word-spacing:-20.671200px;}
.ws0_c01381{word-spacing:-18.000000px;}
.ws2_c01381{word-spacing:0.000000px;}
._11_c01381{margin-left:-7.941600px;}
._d_c01381{margin-left:-6.350400px;}
._5_c01381{margin-left:-4.759200px;}
._7_c01381{margin-left:-3.578400px;}
._8_c01381{margin-left:-2.426400px;}
._3_c01381{margin-left:-1.288800px;}
._2_c01381{width:1.303200px;}
._1_c01381{width:3.189600px;}
._4_c01381{width:4.968000px;}
._0_c01381{width:5.997600px;}
._6_c01381{width:7.610400px;}
._f_c01381{width:8.733600px;}
._10_c01381{width:10.699200px;}
._c_c01381{width:14.414400px;}
._a_c01381{width:16.862400px;}
._b_c01381{width:20.750400px;}
._e_c01381{width:23.464800px;}
._9_c01381{width:36.000000px;}
.fc1_c01381{color:rgb(0,0,153);}
.fc0_c01381{color:rgb(0,0,0);}
.fs2_c01381{font-size:60.000000px;}
.fs0_c01381{font-size:72.000000px;}
.fs1_c01381{font-size:84.000000px;}
.y0_c01381{bottom:0.000000px;}
.y1b_c01381{bottom:67.500000px;}
.y19_c01381{bottom:142.500000px;}
.y18_c01381{bottom:168.000000px;}
.y17_c01381{bottom:214.500000px;}
.y16_c01381{bottom:259.500000px;}
.y15_c01381{bottom:306.000000px;}
.y14_c01381{bottom:352.500000px;}
.y13_c01381{bottom:399.000000px;}
.y12_c01381{bottom:445.500000px;}
.y11_c01381{bottom:490.500000px;}
.y10_c01381{bottom:537.000000px;}
.yf_c01381{bottom:583.500000px;}
.ye_c01381{bottom:630.000000px;}
.yd_c01381{bottom:676.500000px;}
.yc_c01381{bottom:721.500000px;}
.yb_c01381{bottom:768.000000px;}
.ya_c01381{bottom:814.500000px;}
.y9_c01381{bottom:862.500000px;}
.y8_c01381{bottom:907.500000px;}
.y7_c01381{bottom:928.500000px;}
.y6_c01381{bottom:949.500000px;}
.y5_c01381{bottom:991.500000px;}
.y4_c01381{bottom:1012.500000px;}
.y3_c01381{bottom:1054.500000px;}
.y2_c01381{bottom:1075.500000px;}
.y1_c01381{bottom:1096.500000px;}
.y1a_c01381{bottom:1194.000000px;}
.h4_c01381{height:44.208984px;}
.h3_c01381{height:56.074219px;}
.h2_c01381{height:58.898438px;}
.h1_c01381{height:65.179688px;}
.h0_c01381{height:1263.000000px;}
.w0_c01381{width:892.500000px;}
.x0_c01381{left:0.000000px;}
.x1_c01381{left:65.480310px;}
@media print{
.v0_c01381{vertical-align:0.000000pt;}
.ls1_c01381{letter-spacing:0.000000pt;}
.ls3_c01381{letter-spacing:0.010667pt;}
.ls2_c01381{letter-spacing:0.012800pt;}
.ls0_c01381{letter-spacing:2.374400pt;}
.ws1_c01381{word-spacing:-18.374400pt;}
.ws0_c01381{word-spacing:-16.000000pt;}
.ws2_c01381{word-spacing:0.000000pt;}
._11_c01381{margin-left:-7.059200pt;}
._d_c01381{margin-left:-5.644800pt;}
._5_c01381{margin-left:-4.230400pt;}
._7_c01381{margin-left:-3.180800pt;}
._8_c01381{margin-left:-2.156800pt;}
._3_c01381{margin-left:-1.145600pt;}
._2_c01381{width:1.158400pt;}
._1_c01381{width:2.835200pt;}
._4_c01381{width:4.416000pt;}
._0_c01381{width:5.331200pt;}
._6_c01381{width:6.764800pt;}
._f_c01381{width:7.763200pt;}
._10_c01381{width:9.510400pt;}
._c_c01381{width:12.812800pt;}
._a_c01381{width:14.988800pt;}
._b_c01381{width:18.444800pt;}
._e_c01381{width:20.857600pt;}
._9_c01381{width:32.000000pt;}
.fs2_c01381{font-size:53.333333pt;}
.fs0_c01381{font-size:64.000000pt;}
.fs1_c01381{font-size:74.666667pt;}
.y0_c01381{bottom:0.000000pt;}
.y1b_c01381{bottom:60.000000pt;}
.y19_c01381{bottom:126.666667pt;}
.y18_c01381{bottom:149.333333pt;}
.y17_c01381{bottom:190.666667pt;}
.y16_c01381{bottom:230.666667pt;}
.y15_c01381{bottom:272.000000pt;}
.y14_c01381{bottom:313.333333pt;}
.y13_c01381{bottom:354.666667pt;}
.y12_c01381{bottom:396.000000pt;}
.y11_c01381{bottom:436.000000pt;}
.y10_c01381{bottom:477.333333pt;}
.yf_c01381{bottom:518.666667pt;}
.ye_c01381{bottom:560.000000pt;}
.yd_c01381{bottom:601.333333pt;}
.yc_c01381{bottom:641.333333pt;}
.yb_c01381{bottom:682.666667pt;}
.ya_c01381{bottom:724.000000pt;}
.y9_c01381{bottom:766.666667pt;}
.y8_c01381{bottom:806.666667pt;}
.y7_c01381{bottom:825.333333pt;}
.y6_c01381{bottom:844.000000pt;}
.y5_c01381{bottom:881.333333pt;}
.y4_c01381{bottom:900.000000pt;}
.y3_c01381{bottom:937.333333pt;}
.y2_c01381{bottom:956.000000pt;}
.y1_c01381{bottom:974.666667pt;}
.y1a_c01381{bottom:1061.333333pt;}
.h4_c01381{height:39.296875pt;}
.h3_c01381{height:49.843750pt;}
.h2_c01381{height:52.354167pt;}
.h1_c01381{height:57.937500pt;}
.h0_c01381{height:1122.666667pt;}
.w0_c01381{width:793.333333pt;}
.x0_c01381{left:0.000000pt;}
.x1_c01381{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_345397145a1db464fee28db2.woff2')format("woff");}.ff1_c01382{font-family:ff1_c01382;line-height:1.010254;font-style:normal;font-weight:normal;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_20524be5f8cd07526962d2f4.woff2')format("woff");}.ff2_c01382{font-family:ff2_c01382;line-height:0.958008;font-style: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;}
.ls1_c01382{letter-spacing:0.000000px;}
.ls0_c01382{letter-spacing:0.012000px;}
.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;}
}
.ws0_c01382{word-spacing:-18.000000px;}
.ws1_c01382{word-spacing:0.000000px;}
._0_c01382{margin-left:-6.573600px;}
._1_c01382{margin-left:-1.375200px;}
.fc1_c01382{color:rgb(0,0,153);}
.fc0_c01382{color:rgb(0,0,0);}
.fs1_c01382{font-size:60.000000px;}
.fs0_c01382{font-size:72.000000px;}
.y0_c01382{bottom:0.000000px;}
.y8_c01382{bottom:67.500000px;}
.y6_c01382{bottom:865.500000px;}
.y5_c01382{bottom:912.000000px;}
.y4_c01382{bottom:958.500000px;}
.y3_c01382{bottom:1005.000000px;}
.y2_c01382{bottom:1051.500000px;}
.y1_c01382{bottom:1096.500000px;}
.y7_c01382{bottom:1194.000000px;}
.h2_c01382{height:44.208984px;}
.h1_c01382{height:52.417969px;}
.h0_c01382{height:1263.000000px;}
.w0_c01382{width:892.500000px;}
.x0_c01382{left:0.000000px;}
.x1_c01382{left:150.519750px;}
.x2_c01382{left:556.865850px;}
.x3_c01382{left:801.992850px;}
@media print{
.v0_c01382{vertical-align:0.000000pt;}
.ls1_c01382{letter-spacing:0.000000pt;}
.ls0_c01382{letter-spacing:0.010667pt;}
.ws0_c01382{word-spacing:-16.000000pt;}
.ws1_c01382{word-spacing:0.000000pt;}
._0_c01382{margin-left:-5.843200pt;}
._1_c01382{margin-left:-1.222400pt;}
.fs1_c01382{font-size:53.333333pt;}
.fs0_c01382{font-size:64.000000pt;}
.y0_c01382{bottom:0.000000pt;}
.y8_c01382{bottom:60.000000pt;}
.y6_c01382{bottom:769.333333pt;}
.y5_c01382{bottom:810.666667pt;}
.y4_c01382{bottom:852.000000pt;}
.y3_c01382{bottom:893.333333pt;}
.y2_c01382{bottom:934.666667pt;}
.y1_c01382{bottom:974.666667pt;}
.y7_c01382{bottom:1061.333333pt;}
.h2_c01382{height:39.296875pt;}
.h1_c01382{height:46.593750pt;}
.h0_c01382{height:1122.666667pt;}
.w0_c01382{width:793.333333pt;}
.x0_c01382{left:0.000000pt;}
.x1_c01382{left:133.795333pt;}
.x2_c01382{left:494.991867pt;}
.x3_c01382{left:712.882533pt;}
}





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





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_976c54d351e00466559f053f.woff2')format("woff");}.ff1_c01384{font-family:ff1_c01384;line-height:1.124023;font-style:normal;font-weight:normal;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_9848ea44f7da34165f44a4fc.woff2')format("woff");}.ff2_c01384{font-family:ff2_c01384;line-height:1.187012;font-style:normal;font-weight:normal;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_c187a24a47478d64484d14bb.woff2')format("woff");}.ff3_c01384{font-family:ff3_c01384;line-height:1.183105;font-style:normal;font-weight:normal;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_fa0885fffe585cf64d20a6d1.woff2')format("woff");}.ff4_c01384{font-family:ff4_c01384;line-height:0.958008;font-style: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);}
.v0_c01384{vertical-align:0.000000px;}
.ls2_c01384{letter-spacing:0.000000px;}
.ls0_c01384{letter-spacing:0.010800px;}
.ls1_c01384{letter-spacing:0.012000px;}
.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;}
}
.ws0_c01384{word-spacing:-18.000000px;}
.ws1_c01384{word-spacing:0.000000px;}
._7_c01384{margin-left:-7.948800px;}
._9_c01384{margin-left:-6.638400px;}
._8_c01384{margin-left:-5.371200px;}
._2_c01384{margin-left:-4.147200px;}
._5_c01384{margin-left:-2.757600px;}
._1_c01384{margin-left:-1.670400px;}
._3_c01384{width:1.598400px;}
._0_c01384{width:2.664000px;}
._f_c01384{width:3.685800px;}
._4_c01384{width:5.184000px;}
._6_c01384{width:6.271200px;}
._11_c01384{width:7.725600px;}
._10_c01384{width:8.791800px;}
._18_c01384{width:9.864000px;}
._1a_c01384{width:11.074200px;}
._1b_c01384{width:12.132000px;}
._19_c01384{width:13.161600px;}
._1c_c01384{width:14.745600px;}
._17_c01384{width:16.423200px;}
._15_c01384{width:20.073000px;}
._12_c01384{width:21.773400px;}
._13_c01384{width:23.400000px;}
._14_c01384{width:24.480000px;}
._16_c01384{width:25.809600px;}
._e_c01384{width:27.806400px;}
._b_c01384{width:30.232800px;}
._a_c01384{width:31.305600px;}
._d_c01384{width:32.954400px;}
._c_c01384{width:34.819200px;}
.fc0_c01384{color:rgb(0,0,0);}
.fs2_c01384{font-size:60.000000px;}
.fs1_c01384{font-size:72.000000px;}
.fs0_c01384{font-size:108.000000px;}
.y0_c01384{bottom:0.000000px;}
.y1b_c01384{bottom:67.500000px;}
.y19_c01384{bottom:193.500000px;}
.y18_c01384{bottom:235.500000px;}
.y17_c01384{bottom:256.500000px;}
.y16_c01384{bottom:277.500000px;}
.y15_c01384{bottom:298.500000px;}
.y14_c01384{bottom:340.500000px;}
.y13_c01384{bottom:361.500000px;}
.y12_c01384{bottom:382.500000px;}
.y11_c01384{bottom:424.500000px;}
.y10_c01384{bottom:445.500000px;}
.yf_c01384{bottom:466.500000px;}
.ye_c01384{bottom:487.500000px;}
.yd_c01384{bottom:508.500000px;}
.yc_c01384{bottom:550.500000px;}
.yb_c01384{bottom:571.500000px;}
.ya_c01384{bottom:592.500000px;}
.y9_c01384{bottom:634.500000px;}
.y8_c01384{bottom:676.500000px;}
.y7_c01384{bottom:718.500000px;}
.y6_c01384{bottom:739.500000px;}
.y5_c01384{bottom:781.500000px;}
.y4_c01384{bottom:802.500000px;}
.y3_c01384{bottom:844.500000px;}
.y2_c01384{bottom:886.500000px;}
.y1_c01384{bottom:1045.500000px;}
.y1a_c01384{bottom:1194.000000px;}
.h3_c01384{height:44.208984px;}
.h2_c01384{height:65.144531px;}
.h1_c01384{height:102.304688px;}
.h0_c01384{height:1263.000000px;}
.w0_c01384{width:892.500000px;}
.x0_c01384{left:0.000000px;}
.x1_c01384{left:150.519750px;}
.x2_c01384{left:556.865850px;}
.x3_c01384{left:801.992850px;}
@media print{
.v0_c01384{vertical-align:0.000000pt;}
.ls2_c01384{letter-spacing:0.000000pt;}
.ls0_c01384{letter-spacing:0.009600pt;}
.ls1_c01384{letter-spacing:0.010667pt;}
.ws0_c01384{word-spacing:-16.000000pt;}
.ws1_c01384{word-spacing:0.000000pt;}
._7_c01384{margin-left:-7.065600pt;}
._9_c01384{margin-left:-5.900800pt;}
._8_c01384{margin-left:-4.774400pt;}
._2_c01384{margin-left:-3.686400pt;}
._5_c01384{margin-left:-2.451200pt;}
._1_c01384{margin-left:-1.484800pt;}
._3_c01384{width:1.420800pt;}
._0_c01384{width:2.368000pt;}
._f_c01384{width:3.276267pt;}
._4_c01384{width:4.608000pt;}
._6_c01384{width:5.574400pt;}
._11_c01384{width:6.867200pt;}
._10_c01384{width:7.814933pt;}
._18_c01384{width:8.768000pt;}
._1a_c01384{width:9.843733pt;}
._1b_c01384{width:10.784000pt;}
._19_c01384{width:11.699200pt;}
._1c_c01384{width:13.107200pt;}
._17_c01384{width:14.598400pt;}
._15_c01384{width:17.842667pt;}
._12_c01384{width:19.354133pt;}
._13_c01384{width:20.800000pt;}
._14_c01384{width:21.760000pt;}
._16_c01384{width:22.941867pt;}
._e_c01384{width:24.716800pt;}
._b_c01384{width:26.873600pt;}
._a_c01384{width:27.827200pt;}
._d_c01384{width:29.292800pt;}
._c_c01384{width:30.950400pt;}
.fs2_c01384{font-size:53.333333pt;}
.fs1_c01384{font-size:64.000000pt;}
.fs0_c01384{font-size:96.000000pt;}
.y0_c01384{bottom:0.000000pt;}
.y1b_c01384{bottom:60.000000pt;}
.y19_c01384{bottom:172.000000pt;}
.y18_c01384{bottom:209.333333pt;}
.y17_c01384{bottom:228.000000pt;}
.y16_c01384{bottom:246.666667pt;}
.y15_c01384{bottom:265.333333pt;}
.y14_c01384{bottom:302.666667pt;}
.y13_c01384{bottom:321.333333pt;}
.y12_c01384{bottom:340.000000pt;}
.y11_c01384{bottom:377.333333pt;}
.y10_c01384{bottom:396.000000pt;}
.yf_c01384{bottom:414.666667pt;}
.ye_c01384{bottom:433.333333pt;}
.yd_c01384{bottom:452.000000pt;}
.yc_c01384{bottom:489.333333pt;}
.yb_c01384{bottom:508.000000pt;}
.ya_c01384{bottom:526.666667pt;}
.y9_c01384{bottom:564.000000pt;}
.y8_c01384{bottom:601.333333pt;}
.y7_c01384{bottom:638.666667pt;}
.y6_c01384{bottom:657.333333pt;}
.y5_c01384{bottom:694.666667pt;}
.y4_c01384{bottom:713.333333pt;}
.y3_c01384{bottom:750.666667pt;}
.y2_c01384{bottom:788.000000pt;}
.y1_c01384{bottom:929.333333pt;}
.y1a_c01384{bottom:1061.333333pt;}
.h3_c01384{height:39.296875pt;}
.h2_c01384{height:57.906250pt;}
.h1_c01384{height:90.937500pt;}
.h0_c01384{height:1122.666667pt;}
.w0_c01384{width:793.333333pt;}
.x0_c01384{left:0.000000pt;}
.x1_c01384{left:133.795333pt;}
.x2_c01384{left:494.991867pt;}
.x3_c01384{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c40982a42686637098536a55.woff2')format("woff");}.ff1_c01385{font-family:ff1_c01385;line-height:1.187012;font-style:normal;font-weight:normal;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_05b34cb9b9679b6b42c788f5.woff2')format("woff");}.ff2_c01385{font-family:ff2_c01385;line-height:1.183105;font-style:normal;font-weight:normal;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_ab2e52d357d5d7b50349eda3.woff2')format("woff");}.ff3_c01385{font-family:ff3_c01385;line-height:0.756836;font-style:normal;font-weight:normal;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_7c6d3b4d320be2c5022ed79c.woff2')format("woff");}.ff4_c01385{font-family:ff4_c01385;line-height:1.155762;font-style: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);}
.v0_c01385{vertical-align:0.000000px;}
.ls0_c01385{letter-spacing:0.000000px;}
.ls1_c01385{letter-spacing:0.012000px;}
.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;}
}
.ws0_c01385{word-spacing:-18.000000px;}
.ws1_c01385{word-spacing:0.000000px;}
._d_c01385{margin-left:-7.992000px;}
._17_c01385{margin-left:-6.624000px;}
._14_c01385{margin-left:-5.241480px;}
._b_c01385{margin-left:-3.817920px;}
._a_c01385{margin-left:-2.417400px;}
._6_c01385{margin-left:-1.044000px;}
._e_c01385{width:1.118760px;}
._1_c01385{width:2.145600px;}
._4_c01385{width:4.118400px;}
._5_c01385{width:5.796000px;}
._2_c01385{width:7.812000px;}
._3_c01385{width:10.000800px;}
._0_c01385{width:11.844960px;}
._9_c01385{width:13.874280px;}
._8_c01385{width:15.918360px;}
._c_c01385{width:19.749600px;}
._13_c01385{width:21.346200px;}
._15_c01385{width:23.400000px;}
._16_c01385{width:25.167600px;}
._12_c01385{width:26.221440px;}
._11_c01385{width:27.626400px;}
._10_c01385{width:28.988160px;}
._7_c01385{width:30.002400px;}
._f_c01385{width:32.117400px;}
.fc0_c01385{color:rgb(0,0,0);}
.fs1_c01385{font-size:60.000000px;}
.fs0_c01385{font-size:72.000000px;}
.y0_c01385{bottom:0.000000px;}
.y21_c01385{bottom:67.500000px;}
.y1f_c01385{bottom:151.500000px;}
.y1e_c01385{bottom:193.500000px;}
.y1d_c01385{bottom:214.500000px;}
.y1c_c01385{bottom:256.500000px;}
.y1b_c01385{bottom:277.500000px;}
.y1a_c01385{bottom:319.500000px;}
.y19_c01385{bottom:340.500000px;}
.y18_c01385{bottom:361.500000px;}
.y17_c01385{bottom:403.500000px;}
.y16_c01385{bottom:424.500000px;}
.y15_c01385{bottom:466.500000px;}
.y14_c01385{bottom:487.500000px;}
.y13_c01385{bottom:529.500000px;}
.y12_c01385{bottom:550.500000px;}
.y11_c01385{bottom:592.500000px;}
.y10_c01385{bottom:634.500000px;}
.yf_c01385{bottom:655.500000px;}
.ye_c01385{bottom:697.500000px;}
.yd_c01385{bottom:739.500000px;}
.yc_c01385{bottom:760.500000px;}
.yb_c01385{bottom:802.500000px;}
.ya_c01385{bottom:823.500000px;}
.y9_c01385{bottom:865.500000px;}
.y8_c01385{bottom:886.500000px;}
.y7_c01385{bottom:928.500000px;}
.y6_c01385{bottom:949.500000px;}
.y5_c01385{bottom:991.500000px;}
.y4_c01385{bottom:1012.500000px;}
.y3_c01385{bottom:1033.500000px;}
.y2_c01385{bottom:1075.500000px;}
.y1_c01385{bottom:1096.500000px;}
.y20_c01385{bottom:1194.000000px;}
.h3_c01385{height:44.208984px;}
.h2_c01385{height:56.074219px;}
.h1_c01385{height:65.144531px;}
.h0_c01385{height:1263.000000px;}
.w0_c01385{width:892.500000px;}
.x0_c01385{left:0.000000px;}
.x1_c01385{left:65.480310px;}
@media print{
.v0_c01385{vertical-align:0.000000pt;}
.ls0_c01385{letter-spacing:0.000000pt;}
.ls1_c01385{letter-spacing:0.010667pt;}
.ws0_c01385{word-spacing:-16.000000pt;}
.ws1_c01385{word-spacing:0.000000pt;}
._d_c01385{margin-left:-7.104000pt;}
._17_c01385{margin-left:-5.888000pt;}
._14_c01385{margin-left:-4.659093pt;}
._b_c01385{margin-left:-3.393707pt;}
._a_c01385{margin-left:-2.148800pt;}
._6_c01385{margin-left:-0.928000pt;}
._e_c01385{width:0.994453pt;}
._1_c01385{width:1.907200pt;}
._4_c01385{width:3.660800pt;}
._5_c01385{width:5.152000pt;}
._2_c01385{width:6.944000pt;}
._3_c01385{width:8.889600pt;}
._0_c01385{width:10.528853pt;}
._9_c01385{width:12.332693pt;}
._8_c01385{width:14.149653pt;}
._c_c01385{width:17.555200pt;}
._13_c01385{width:18.974400pt;}
._15_c01385{width:20.800000pt;}
._16_c01385{width:22.371200pt;}
._12_c01385{width:23.307947pt;}
._11_c01385{width:24.556800pt;}
._10_c01385{width:25.767253pt;}
._7_c01385{width:26.668800pt;}
._f_c01385{width:28.548800pt;}
.fs1_c01385{font-size:53.333333pt;}
.fs0_c01385{font-size:64.000000pt;}
.y0_c01385{bottom:0.000000pt;}
.y21_c01385{bottom:60.000000pt;}
.y1f_c01385{bottom:134.666667pt;}
.y1e_c01385{bottom:172.000000pt;}
.y1d_c01385{bottom:190.666667pt;}
.y1c_c01385{bottom:228.000000pt;}
.y1b_c01385{bottom:246.666667pt;}
.y1a_c01385{bottom:284.000000pt;}
.y19_c01385{bottom:302.666667pt;}
.y18_c01385{bottom:321.333333pt;}
.y17_c01385{bottom:358.666667pt;}
.y16_c01385{bottom:377.333333pt;}
.y15_c01385{bottom:414.666667pt;}
.y14_c01385{bottom:433.333333pt;}
.y13_c01385{bottom:470.666667pt;}
.y12_c01385{bottom:489.333333pt;}
.y11_c01385{bottom:526.666667pt;}
.y10_c01385{bottom:564.000000pt;}
.yf_c01385{bottom:582.666667pt;}
.ye_c01385{bottom:620.000000pt;}
.yd_c01385{bottom:657.333333pt;}
.yc_c01385{bottom:676.000000pt;}
.yb_c01385{bottom:713.333333pt;}
.ya_c01385{bottom:732.000000pt;}
.y9_c01385{bottom:769.333333pt;}
.y8_c01385{bottom:788.000000pt;}
.y7_c01385{bottom:825.333333pt;}
.y6_c01385{bottom:844.000000pt;}
.y5_c01385{bottom:881.333333pt;}
.y4_c01385{bottom:900.000000pt;}
.y3_c01385{bottom:918.666667pt;}
.y2_c01385{bottom:956.000000pt;}
.y1_c01385{bottom:974.666667pt;}
.y20_c01385{bottom:1061.333333pt;}
.h3_c01385{height:39.296875pt;}
.h2_c01385{height:49.843750pt;}
.h1_c01385{height:57.906250pt;}
.h0_c01385{height:1122.666667pt;}
.w0_c01385{width:793.333333pt;}
.x0_c01385{left:0.000000pt;}
.x1_c01385{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0b6d52bb272cbb2a777780c6.woff2')format("woff");}.ff1_c01386{font-family:ff1_c01386;line-height:1.187012;font-style:normal;font-weight:normal;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_7002dc350131072750246fb5.woff2')format("woff");}.ff2_c01386{font-family:ff2_c01386;line-height:1.005371;font-style:normal;font-weight:normal;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_76e3be00b0d27ff63b3dfa39.woff2')format("woff");}.ff3_c01386{font-family:ff3_c01386;line-height:0.958008;font-style: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;}
.ls1_c01386{letter-spacing:0.000000px;}
.ls0_c01386{letter-spacing:0.012000px;}
.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;}
}
.ws0_c01386{word-spacing:-18.000000px;}
.ws1_c01386{word-spacing:0.000000px;}
._16_c01386{margin-left:-7.444200px;}
._b_c01386{margin-left:-6.400200px;}
._2_c01386{margin-left:-5.349600px;}
._5_c01386{margin-left:-4.280400px;}
._0_c01386{margin-left:-2.548800px;}
._3_c01386{margin-left:-1.317600px;}
._10_c01386{width:1.072800px;}
._4_c01386{width:2.095200px;}
._1_c01386{width:3.290400px;}
._15_c01386{width:4.341000px;}
._6_c01386{width:5.608800px;}
._14_c01386{width:7.656600px;}
._1b_c01386{width:8.766600px;}
._1a_c01386{width:9.802800px;}
._13_c01386{width:11.311200px;}
._11_c01386{width:12.826800px;}
._d_c01386{width:13.860000px;}
._8_c01386{width:15.043800px;}
._9_c01386{width:16.355400px;}
._c_c01386{width:19.055400px;}
._7_c01386{width:20.304000px;}
._e_c01386{width:21.399000px;}
._a_c01386{width:22.960800px;}
._12_c01386{width:24.336000px;}
._f_c01386{width:25.898400px;}
._18_c01386{width:27.525600px;}
._19_c01386{width:29.563200px;}
._17_c01386{width:32.097600px;}
.fc0_c01386{color:rgb(0,0,0);}
.fs1_c01386{font-size:60.000000px;}
.fs0_c01386{font-size:72.000000px;}
.y0_c01386{bottom:0.000000px;}
.y20_c01386{bottom:67.500000px;}
.y1e_c01386{bottom:162.000000px;}
.y1d_c01386{bottom:183.000000px;}
.y1c_c01386{bottom:225.000000px;}
.y1b_c01386{bottom:246.000000px;}
.y1a_c01386{bottom:288.000000px;}
.y19_c01386{bottom:309.000000px;}
.y18_c01386{bottom:351.000000px;}
.y17_c01386{bottom:372.000000px;}
.y16_c01386{bottom:414.000000px;}
.y15_c01386{bottom:435.000000px;}
.y14_c01386{bottom:477.000000px;}
.y13_c01386{bottom:498.000000px;}
.y12_c01386{bottom:540.000000px;}
.y11_c01386{bottom:561.000000px;}
.y10_c01386{bottom:603.000000px;}
.yf_c01386{bottom:624.000000px;}
.ye_c01386{bottom:645.000000px;}
.yd_c01386{bottom:685.500000px;}
.yc_c01386{bottom:706.500000px;}
.yb_c01386{bottom:748.500000px;}
.ya_c01386{bottom:769.500000px;}
.y9_c01386{bottom:811.500000px;}
.y8_c01386{bottom:853.500000px;}
.y7_c01386{bottom:900.000000px;}
.y6_c01386{bottom:925.500000px;}
.y5_c01386{bottom:949.500000px;}
.y4_c01386{bottom:991.500000px;}
.y3_c01386{bottom:1012.500000px;}
.y2_c01386{bottom:1054.500000px;}
.y1_c01386{bottom:1075.500000px;}
.y1f_c01386{bottom:1194.000000px;}
.h2_c01386{height:44.208984px;}
.h1_c01386{height:65.144531px;}
.h0_c01386{height:1263.000000px;}
.w0_c01386{width:892.500000px;}
.x0_c01386{left:0.000000px;}
.x1_c01386{left:150.519750px;}
.x2_c01386{left:556.865850px;}
.x3_c01386{left:801.992850px;}
@media print{
.v0_c01386{vertical-align:0.000000pt;}
.ls1_c01386{letter-spacing:0.000000pt;}
.ls0_c01386{letter-spacing:0.010667pt;}
.ws0_c01386{word-spacing:-16.000000pt;}
.ws1_c01386{word-spacing:0.000000pt;}
._16_c01386{margin-left:-6.617067pt;}
._b_c01386{margin-left:-5.689067pt;}
._2_c01386{margin-left:-4.755200pt;}
._5_c01386{margin-left:-3.804800pt;}
._0_c01386{margin-left:-2.265600pt;}
._3_c01386{margin-left:-1.171200pt;}
._10_c01386{width:0.953600pt;}
._4_c01386{width:1.862400pt;}
._1_c01386{width:2.924800pt;}
._15_c01386{width:3.858667pt;}
._6_c01386{width:4.985600pt;}
._14_c01386{width:6.805867pt;}
._1b_c01386{width:7.792533pt;}
._1a_c01386{width:8.713600pt;}
._13_c01386{width:10.054400pt;}
._11_c01386{width:11.401600pt;}
._d_c01386{width:12.320000pt;}
._8_c01386{width:13.372267pt;}
._9_c01386{width:14.538133pt;}
._c_c01386{width:16.938133pt;}
._7_c01386{width:18.048000pt;}
._e_c01386{width:19.021333pt;}
._a_c01386{width:20.409600pt;}
._12_c01386{width:21.632000pt;}
._f_c01386{width:23.020800pt;}
._18_c01386{width:24.467200pt;}
._19_c01386{width:26.278400pt;}
._17_c01386{width:28.531200pt;}
.fs1_c01386{font-size:53.333333pt;}
.fs0_c01386{font-size:64.000000pt;}
.y0_c01386{bottom:0.000000pt;}
.y20_c01386{bottom:60.000000pt;}
.y1e_c01386{bottom:144.000000pt;}
.y1d_c01386{bottom:162.666667pt;}
.y1c_c01386{bottom:200.000000pt;}
.y1b_c01386{bottom:218.666667pt;}
.y1a_c01386{bottom:256.000000pt;}
.y19_c01386{bottom:274.666667pt;}
.y18_c01386{bottom:312.000000pt;}
.y17_c01386{bottom:330.666667pt;}
.y16_c01386{bottom:368.000000pt;}
.y15_c01386{bottom:386.666667pt;}
.y14_c01386{bottom:424.000000pt;}
.y13_c01386{bottom:442.666667pt;}
.y12_c01386{bottom:480.000000pt;}
.y11_c01386{bottom:498.666667pt;}
.y10_c01386{bottom:536.000000pt;}
.yf_c01386{bottom:554.666667pt;}
.ye_c01386{bottom:573.333333pt;}
.yd_c01386{bottom:609.333333pt;}
.yc_c01386{bottom:628.000000pt;}
.yb_c01386{bottom:665.333333pt;}
.ya_c01386{bottom:684.000000pt;}
.y9_c01386{bottom:721.333333pt;}
.y8_c01386{bottom:758.666667pt;}
.y7_c01386{bottom:800.000000pt;}
.y6_c01386{bottom:822.666667pt;}
.y5_c01386{bottom:844.000000pt;}
.y4_c01386{bottom:881.333333pt;}
.y3_c01386{bottom:900.000000pt;}
.y2_c01386{bottom:937.333333pt;}
.y1_c01386{bottom:956.000000pt;}
.y1f_c01386{bottom:1061.333333pt;}
.h2_c01386{height:39.296875pt;}
.h1_c01386{height:57.906250pt;}
.h0_c01386{height:1122.666667pt;}
.w0_c01386{width:793.333333pt;}
.x0_c01386{left:0.000000pt;}
.x1_c01386{left:133.795333pt;}
.x2_c01386{left:494.991867pt;}
.x3_c01386{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bc3f8a6eeba752ea13449b4f.woff2')format("woff");}.ff1_c01387{font-family:ff1_c01387;line-height:1.187012;font-style:normal;font-weight:normal;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_835be79fde7454855695e9e7.woff2')format("woff");}.ff2_c01387{font-family:ff2_c01387;line-height:1.005371;font-style:normal;font-weight:normal;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_f77fa8de6d3bba7f5512fbd2.woff2')format("woff");}.ff3_c01387{font-family:ff3_c01387;line-height:0.756836;font-style:normal;font-weight:normal;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_a0ae950c3e0dfe56bee5dcda.woff2')format("woff");}.ff4_c01387{font-family:ff4_c01387;line-height:1.155762;font-style: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);}
.v0_c01387{vertical-align:0.000000px;}
.ls4_c01387{letter-spacing:0.000000px;}
.ls5_c01387{letter-spacing:0.012000px;}
.ls3_c01387{letter-spacing:0.014400px;}
.ls0_c01387{letter-spacing:1.468800px;}
.ls2_c01387{letter-spacing:2.232000px;}
.ls1_c01387{letter-spacing:2.836800px;}
.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;}
}
.ws0_c01387{word-spacing:-18.014400px;}
.ws1_c01387{word-spacing:0.000000px;}
._16_c01387{margin-left:-20.274720px;}
._14_c01387{margin-left:-8.123160px;}
._12_c01387{margin-left:-6.705240px;}
._1c_c01387{margin-left:-5.342400px;}
._0_c01387{margin-left:-4.176000px;}
._e_c01387{margin-left:-2.872800px;}
._2_c01387{margin-left:-1.340760px;}
._4_c01387{width:1.988760px;}
._b_c01387{width:3.225600px;}
._d_c01387{width:4.573560px;}
._f_c01387{width:6.069600px;}
._c_c01387{width:7.408800px;}
._1b_c01387{width:9.097800px;}
._10_c01387{width:10.352160px;}
._1d_c01387{width:11.355960px;}
._11_c01387{width:12.716640px;}
._18_c01387{width:15.595200px;}
._19_c01387{width:20.288040px;}
._17_c01387{width:21.456000px;}
._7_c01387{width:22.671240px;}
._8_c01387{width:24.674400px;}
._9_c01387{width:26.096520px;}
._a_c01387{width:28.879200px;}
._13_c01387{width:30.664800px;}
._5_c01387{width:31.896000px;}
._3_c01387{width:33.768000px;}
._6_c01387{width:35.180760px;}
._1_c01387{width:37.988760px;}
._15_c01387{width:40.032000px;}
._1a_c01387{width:48.002400px;}
.fc0_c01387{color:rgb(0,0,0);}
.fs1_c01387{font-size:60.000000px;}
.fs0_c01387{font-size:72.000000px;}
.y0_c01387{bottom:0.000000px;}
.y21_c01387{bottom:67.500000px;}
.y1f_c01387{bottom:193.500000px;}
.y1e_c01387{bottom:214.500000px;}
.y1d_c01387{bottom:235.500000px;}
.y1c_c01387{bottom:277.500000px;}
.y1b_c01387{bottom:298.500000px;}
.y1a_c01387{bottom:340.500000px;}
.y19_c01387{bottom:382.500000px;}
.y18_c01387{bottom:424.500000px;}
.y17_c01387{bottom:466.500000px;}
.y16_c01387{bottom:487.500000px;}
.y15_c01387{bottom:529.500000px;}
.y14_c01387{bottom:550.500000px;}
.y13_c01387{bottom:571.500000px;}
.y12_c01387{bottom:613.500000px;}
.y11_c01387{bottom:634.500000px;}
.y10_c01387{bottom:676.500000px;}
.yf_c01387{bottom:697.500000px;}
.ye_c01387{bottom:739.500000px;}
.yd_c01387{bottom:760.500000px;}
.yc_c01387{bottom:781.500000px;}
.yb_c01387{bottom:823.500000px;}
.ya_c01387{bottom:844.500000px;}
.y9_c01387{bottom:865.500000px;}
.y8_c01387{bottom:907.500000px;}
.y7_c01387{bottom:928.500000px;}
.y6_c01387{bottom:970.500000px;}
.y5_c01387{bottom:991.500000px;}
.y4_c01387{bottom:1033.500000px;}
.y3_c01387{bottom:1054.500000px;}
.y2_c01387{bottom:1075.500000px;}
.y1_c01387{bottom:1096.500000px;}
.y20_c01387{bottom:1194.000000px;}
.h3_c01387{height:44.208984px;}
.h2_c01387{height:56.074219px;}
.h1_c01387{height:65.144531px;}
.h0_c01387{height:1263.000000px;}
.w0_c01387{width:892.500000px;}
.x0_c01387{left:0.000000px;}
.x1_c01387{left:65.480310px;}
@media print{
.v0_c01387{vertical-align:0.000000pt;}
.ls4_c01387{letter-spacing:0.000000pt;}
.ls5_c01387{letter-spacing:0.010667pt;}
.ls3_c01387{letter-spacing:0.012800pt;}
.ls0_c01387{letter-spacing:1.305600pt;}
.ls2_c01387{letter-spacing:1.984000pt;}
.ls1_c01387{letter-spacing:2.521600pt;}
.ws0_c01387{word-spacing:-16.012800pt;}
.ws1_c01387{word-spacing:0.000000pt;}
._16_c01387{margin-left:-18.021973pt;}
._14_c01387{margin-left:-7.220587pt;}
._12_c01387{margin-left:-5.960213pt;}
._1c_c01387{margin-left:-4.748800pt;}
._0_c01387{margin-left:-3.712000pt;}
._e_c01387{margin-left:-2.553600pt;}
._2_c01387{margin-left:-1.191787pt;}
._4_c01387{width:1.767787pt;}
._b_c01387{width:2.867200pt;}
._d_c01387{width:4.065387pt;}
._f_c01387{width:5.395200pt;}
._c_c01387{width:6.585600pt;}
._1b_c01387{width:8.086933pt;}
._10_c01387{width:9.201920pt;}
._1d_c01387{width:10.094187pt;}
._11_c01387{width:11.303680pt;}
._18_c01387{width:13.862400pt;}
._19_c01387{width:18.033813pt;}
._17_c01387{width:19.072000pt;}
._7_c01387{width:20.152213pt;}
._8_c01387{width:21.932800pt;}
._9_c01387{width:23.196907pt;}
._a_c01387{width:25.670400pt;}
._13_c01387{width:27.257600pt;}
._5_c01387{width:28.352000pt;}
._3_c01387{width:30.016000pt;}
._6_c01387{width:31.271787pt;}
._1_c01387{width:33.767787pt;}
._15_c01387{width:35.584000pt;}
._1a_c01387{width:42.668800pt;}
.fs1_c01387{font-size:53.333333pt;}
.fs0_c01387{font-size:64.000000pt;}
.y0_c01387{bottom:0.000000pt;}
.y21_c01387{bottom:60.000000pt;}
.y1f_c01387{bottom:172.000000pt;}
.y1e_c01387{bottom:190.666667pt;}
.y1d_c01387{bottom:209.333333pt;}
.y1c_c01387{bottom:246.666667pt;}
.y1b_c01387{bottom:265.333333pt;}
.y1a_c01387{bottom:302.666667pt;}
.y19_c01387{bottom:340.000000pt;}
.y18_c01387{bottom:377.333333pt;}
.y17_c01387{bottom:414.666667pt;}
.y16_c01387{bottom:433.333333pt;}
.y15_c01387{bottom:470.666667pt;}
.y14_c01387{bottom:489.333333pt;}
.y13_c01387{bottom:508.000000pt;}
.y12_c01387{bottom:545.333333pt;}
.y11_c01387{bottom:564.000000pt;}
.y10_c01387{bottom:601.333333pt;}
.yf_c01387{bottom:620.000000pt;}
.ye_c01387{bottom:657.333333pt;}
.yd_c01387{bottom:676.000000pt;}
.yc_c01387{bottom:694.666667pt;}
.yb_c01387{bottom:732.000000pt;}
.ya_c01387{bottom:750.666667pt;}
.y9_c01387{bottom:769.333333pt;}
.y8_c01387{bottom:806.666667pt;}
.y7_c01387{bottom:825.333333pt;}
.y6_c01387{bottom:862.666667pt;}
.y5_c01387{bottom:881.333333pt;}
.y4_c01387{bottom:918.666667pt;}
.y3_c01387{bottom:937.333333pt;}
.y2_c01387{bottom:956.000000pt;}
.y1_c01387{bottom:974.666667pt;}
.y20_c01387{bottom:1061.333333pt;}
.h3_c01387{height:39.296875pt;}
.h2_c01387{height:49.843750pt;}
.h1_c01387{height:57.906250pt;}
.h0_c01387{height:1122.666667pt;}
.w0_c01387{width:793.333333pt;}
.x0_c01387{left:0.000000pt;}
.x1_c01387{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_236173671c639e3f3cb6f8b7.woff2')format("woff");}.ff1_c01388{font-family:ff1_c01388;line-height:1.187012;font-style:normal;font-weight:normal;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_62aa594f604086798b8f96a3.woff2')format("woff");}.ff2_c01388{font-family:ff2_c01388;line-height:1.005371;font-style:normal;font-weight:normal;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_040a701fa3982430d3dfccc2.woff2')format("woff");}.ff3_c01388{font-family:ff3_c01388;line-height:0.958008;font-style: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;}
.ls2_c01388{letter-spacing:0.000000px;}
.ls1_c01388{letter-spacing:0.012000px;}
.ls0_c01388{letter-spacing:0.014400px;}
.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;}
}
.ws0_c01388{word-spacing:-18.014400px;}
.ws1_c01388{word-spacing:-18.000000px;}
.ws2_c01388{word-spacing:0.000000px;}
._0_c01388{margin-left:-7.992000px;}
._c_c01388{margin-left:-6.441600px;}
._8_c01388{margin-left:-5.018400px;}
._16_c01388{margin-left:-4.012200px;}
._a_c01388{margin-left:-2.973600px;}
._1_c01388{margin-left:-1.490400px;}
._6_c01388{width:1.843200px;}
._3_c01388{width:3.139200px;}
._b_c01388{width:4.449600px;}
._9_c01388{width:5.680800px;}
._4_c01388{width:7.207200px;}
._7_c01388{width:8.863200px;}
._5_c01388{width:10.267200px;}
._2_c01388{width:11.808000px;}
._15_c01388{width:13.140000px;}
._13_c01388{width:14.635200px;}
._14_c01388{width:16.300800px;}
._11_c01388{width:19.209600px;}
._12_c01388{width:21.276000px;}
._e_c01388{width:28.677600px;}
._d_c01388{width:30.765600px;}
._19_c01388{width:31.822800px;}
._10_c01388{width:33.249600px;}
._18_c01388{width:34.525200px;}
._f_c01388{width:35.827200px;}
._17_c01388{width:37.843200px;}
._1a_c01388{width:40.399200px;}
.fc1_c01388{color:rgb(0,0,153);}
.fc0_c01388{color:rgb(0,0,0);}
.fs1_c01388{font-size:60.000000px;}
.fs0_c01388{font-size:72.000000px;}
.y0_c01388{bottom:0.000000px;}
.y20_c01388{bottom:67.500000px;}
.y1e_c01388{bottom:169.500000px;}
.y1d_c01388{bottom:190.500000px;}
.y1c_c01388{bottom:232.500000px;}
.y1b_c01388{bottom:274.500000px;}
.y1a_c01388{bottom:295.500000px;}
.y19_c01388{bottom:337.500000px;}
.y18_c01388{bottom:358.500000px;}
.y17_c01388{bottom:400.500000px;}
.y16_c01388{bottom:421.500000px;}
.y15_c01388{bottom:442.500000px;}
.y14_c01388{bottom:463.500000px;}
.y13_c01388{bottom:484.500000px;}
.y12_c01388{bottom:529.500000px;}
.y11_c01388{bottom:571.500000px;}
.y10_c01388{bottom:613.500000px;}
.yf_c01388{bottom:634.500000px;}
.ye_c01388{bottom:655.500000px;}
.yd_c01388{bottom:697.500000px;}
.yc_c01388{bottom:739.500000px;}
.yb_c01388{bottom:760.500000px;}
.ya_c01388{bottom:802.500000px;}
.y9_c01388{bottom:844.500000px;}
.y8_c01388{bottom:886.500000px;}
.y7_c01388{bottom:928.500000px;}
.y6_c01388{bottom:949.500000px;}
.y5_c01388{bottom:970.500000px;}
.y4_c01388{bottom:1012.500000px;}
.y3_c01388{bottom:1033.500000px;}
.y2_c01388{bottom:1075.500000px;}
.y1_c01388{bottom:1096.500000px;}
.y1f_c01388{bottom:1194.000000px;}
.h3_c01388{height:44.208984px;}
.h2_c01388{height:52.242188px;}
.h1_c01388{height:65.144531px;}
.h0_c01388{height:1263.000000px;}
.w0_c01388{width:892.500000px;}
.x0_c01388{left:0.000000px;}
.x1_c01388{left:150.519750px;}
.x2_c01388{left:556.865850px;}
.x3_c01388{left:801.992850px;}
@media print{
.v0_c01388{vertical-align:0.000000pt;}
.ls2_c01388{letter-spacing:0.000000pt;}
.ls1_c01388{letter-spacing:0.010667pt;}
.ls0_c01388{letter-spacing:0.012800pt;}
.ws0_c01388{word-spacing:-16.012800pt;}
.ws1_c01388{word-spacing:-16.000000pt;}
.ws2_c01388{word-spacing:0.000000pt;}
._0_c01388{margin-left:-7.104000pt;}
._c_c01388{margin-left:-5.725867pt;}
._8_c01388{margin-left:-4.460800pt;}
._16_c01388{margin-left:-3.566400pt;}
._a_c01388{margin-left:-2.643200pt;}
._1_c01388{margin-left:-1.324800pt;}
._6_c01388{width:1.638400pt;}
._3_c01388{width:2.790400pt;}
._b_c01388{width:3.955200pt;}
._9_c01388{width:5.049600pt;}
._4_c01388{width:6.406400pt;}
._7_c01388{width:7.878400pt;}
._5_c01388{width:9.126400pt;}
._2_c01388{width:10.496000pt;}
._15_c01388{width:11.680000pt;}
._13_c01388{width:13.009067pt;}
._14_c01388{width:14.489600pt;}
._11_c01388{width:17.075200pt;}
._12_c01388{width:18.912000pt;}
._e_c01388{width:25.491200pt;}
._d_c01388{width:27.347200pt;}
._19_c01388{width:28.286933pt;}
._10_c01388{width:29.555200pt;}
._18_c01388{width:30.689067pt;}
._f_c01388{width:31.846400pt;}
._17_c01388{width:33.638400pt;}
._1a_c01388{width:35.910400pt;}
.fs1_c01388{font-size:53.333333pt;}
.fs0_c01388{font-size:64.000000pt;}
.y0_c01388{bottom:0.000000pt;}
.y20_c01388{bottom:60.000000pt;}
.y1e_c01388{bottom:150.666667pt;}
.y1d_c01388{bottom:169.333333pt;}
.y1c_c01388{bottom:206.666667pt;}
.y1b_c01388{bottom:244.000000pt;}
.y1a_c01388{bottom:262.666667pt;}
.y19_c01388{bottom:300.000000pt;}
.y18_c01388{bottom:318.666667pt;}
.y17_c01388{bottom:356.000000pt;}
.y16_c01388{bottom:374.666667pt;}
.y15_c01388{bottom:393.333333pt;}
.y14_c01388{bottom:412.000000pt;}
.y13_c01388{bottom:430.666667pt;}
.y12_c01388{bottom:470.666667pt;}
.y11_c01388{bottom:508.000000pt;}
.y10_c01388{bottom:545.333333pt;}
.yf_c01388{bottom:564.000000pt;}
.ye_c01388{bottom:582.666667pt;}
.yd_c01388{bottom:620.000000pt;}
.yc_c01388{bottom:657.333333pt;}
.yb_c01388{bottom:676.000000pt;}
.ya_c01388{bottom:713.333333pt;}
.y9_c01388{bottom:750.666667pt;}
.y8_c01388{bottom:788.000000pt;}
.y7_c01388{bottom:825.333333pt;}
.y6_c01388{bottom:844.000000pt;}
.y5_c01388{bottom:862.666667pt;}
.y4_c01388{bottom:900.000000pt;}
.y3_c01388{bottom:918.666667pt;}
.y2_c01388{bottom:956.000000pt;}
.y1_c01388{bottom:974.666667pt;}
.y1f_c01388{bottom:1061.333333pt;}
.h3_c01388{height:39.296875pt;}
.h2_c01388{height:46.437500pt;}
.h1_c01388{height:57.906250pt;}
.h0_c01388{height:1122.666667pt;}
.w0_c01388{width:793.333333pt;}
.x0_c01388{left:0.000000pt;}
.x1_c01388{left:133.795333pt;}
.x2_c01388{left:494.991867pt;}
.x3_c01388{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_20714a80596831eb6b07d360.woff2')format("woff");}.ff1_c01389{font-family:ff1_c01389;line-height:1.187012;font-style:normal;font-weight:normal;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_8504e78732b9738b8c9011d4.woff2')format("woff");}.ff2_c01389{font-family:ff2_c01389;line-height:1.183105;font-style:normal;font-weight:normal;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_3cf2e1a0df590576ebc89a13.woff2')format("woff");}.ff3_c01389{font-family:ff3_c01389;line-height:0.756836;font-style:normal;font-weight:normal;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_438d2aabf5cb3792e8575b70.woff2')format("woff");}.ff4_c01389{font-family:ff4_c01389;line-height:1.155762;font-style: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;}
.ls2_c01389{letter-spacing:-2.095200px;}
.ls0_c01389{letter-spacing:0.000000px;}
.ls3_c01389{letter-spacing:0.012000px;}
.ls1_c01389{letter-spacing:2.973600px;}
.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;}
}
.ws0_c01389{word-spacing:-18.000000px;}
.ws1_c01389{word-spacing:0.000000px;}
._0_c01389{margin-left:-7.977600px;}
._17_c01389{margin-left:-6.961200px;}
._9_c01389{margin-left:-5.826600px;}
._8_c01389{margin-left:-3.881400px;}
._2_c01389{margin-left:-2.462400px;}
._6_c01389{margin-left:-1.359960px;}
._1_c01389{width:1.814400px;}
._5_c01389{width:3.462360px;}
._4_c01389{width:5.299200px;}
._7_c01389{width:6.357600px;}
._3_c01389{width:8.150400px;}
._11_c01389{width:10.261800px;}
._a_c01389{width:11.340600px;}
._10_c01389{width:12.640200px;}
._f_c01389{width:14.444400px;}
._12_c01389{width:15.529800px;}
._15_c01389{width:16.824960px;}
._14_c01389{width:20.534400px;}
._16_c01389{width:21.939000px;}
._18_c01389{width:23.237400px;}
._e_c01389{width:24.948000px;}
._b_c01389{width:26.107200px;}
._d_c01389{width:29.540760px;}
._c_c01389{width:30.643200px;}
._13_c01389{width:36.000000px;}
.fc1_c01389{color:rgb(0,0,153);}
.fc0_c01389{color:rgb(0,0,0);}
.fs1_c01389{font-size:60.000000px;}
.fs0_c01389{font-size:72.000000px;}
.y0_c01389{bottom:0.000000px;}
.y20_c01389{bottom:67.500000px;}
.y1e_c01389{bottom:174.000000px;}
.y1d_c01389{bottom:216.000000px;}
.y1c_c01389{bottom:258.000000px;}
.y1b_c01389{bottom:300.000000px;}
.y1a_c01389{bottom:321.000000px;}
.y19_c01389{bottom:363.000000px;}
.y18_c01389{bottom:384.000000px;}
.y17_c01389{bottom:405.000000px;}
.y16_c01389{bottom:447.000000px;}
.y15_c01389{bottom:468.000000px;}
.y14_c01389{bottom:510.000000px;}
.y13_c01389{bottom:531.000000px;}
.y12_c01389{bottom:552.000000px;}
.y11_c01389{bottom:594.000000px;}
.y10_c01389{bottom:615.000000px;}
.yf_c01389{bottom:657.000000px;}
.ye_c01389{bottom:678.000000px;}
.yd_c01389{bottom:720.000000px;}
.yc_c01389{bottom:741.000000px;}
.yb_c01389{bottom:783.000000px;}
.ya_c01389{bottom:804.000000px;}
.y9_c01389{bottom:846.000000px;}
.y8_c01389{bottom:867.000000px;}
.y7_c01389{bottom:909.000000px;}
.y6_c01389{bottom:951.000000px;}
.y5_c01389{bottom:972.000000px;}
.y4_c01389{bottom:1018.500000px;}
.y3_c01389{bottom:1042.500000px;}
.y2_c01389{bottom:1075.500000px;}
.y1_c01389{bottom:1096.500000px;}
.y1f_c01389{bottom:1194.000000px;}
.h3_c01389{height:44.208984px;}
.h2_c01389{height:56.074219px;}
.h1_c01389{height:65.144531px;}
.h0_c01389{height:1263.000000px;}
.w0_c01389{width:892.500000px;}
.x0_c01389{left:0.000000px;}
.x1_c01389{left:65.480310px;}
@media print{
.v0_c01389{vertical-align:0.000000pt;}
.ls2_c01389{letter-spacing:-1.862400pt;}
.ls0_c01389{letter-spacing:0.000000pt;}
.ls3_c01389{letter-spacing:0.010667pt;}
.ls1_c01389{letter-spacing:2.643200pt;}
.ws0_c01389{word-spacing:-16.000000pt;}
.ws1_c01389{word-spacing:0.000000pt;}
._0_c01389{margin-left:-7.091200pt;}
._17_c01389{margin-left:-6.187733pt;}
._9_c01389{margin-left:-5.179200pt;}
._8_c01389{margin-left:-3.450133pt;}
._2_c01389{margin-left:-2.188800pt;}
._6_c01389{margin-left:-1.208853pt;}
._1_c01389{width:1.612800pt;}
._5_c01389{width:3.077653pt;}
._4_c01389{width:4.710400pt;}
._7_c01389{width:5.651200pt;}
._3_c01389{width:7.244800pt;}
._11_c01389{width:9.121600pt;}
._a_c01389{width:10.080533pt;}
._10_c01389{width:11.235733pt;}
._f_c01389{width:12.839467pt;}
._12_c01389{width:13.804267pt;}
._15_c01389{width:14.955520pt;}
._14_c01389{width:18.252800pt;}
._16_c01389{width:19.501333pt;}
._18_c01389{width:20.655467pt;}
._e_c01389{width:22.176000pt;}
._b_c01389{width:23.206400pt;}
._d_c01389{width:26.258453pt;}
._c_c01389{width:27.238400pt;}
._13_c01389{width:32.000000pt;}
.fs1_c01389{font-size:53.333333pt;}
.fs0_c01389{font-size:64.000000pt;}
.y0_c01389{bottom:0.000000pt;}
.y20_c01389{bottom:60.000000pt;}
.y1e_c01389{bottom:154.666667pt;}
.y1d_c01389{bottom:192.000000pt;}
.y1c_c01389{bottom:229.333333pt;}
.y1b_c01389{bottom:266.666667pt;}
.y1a_c01389{bottom:285.333333pt;}
.y19_c01389{bottom:322.666667pt;}
.y18_c01389{bottom:341.333333pt;}
.y17_c01389{bottom:360.000000pt;}
.y16_c01389{bottom:397.333333pt;}
.y15_c01389{bottom:416.000000pt;}
.y14_c01389{bottom:453.333333pt;}
.y13_c01389{bottom:472.000000pt;}
.y12_c01389{bottom:490.666667pt;}
.y11_c01389{bottom:528.000000pt;}
.y10_c01389{bottom:546.666667pt;}
.yf_c01389{bottom:584.000000pt;}
.ye_c01389{bottom:602.666667pt;}
.yd_c01389{bottom:640.000000pt;}
.yc_c01389{bottom:658.666667pt;}
.yb_c01389{bottom:696.000000pt;}
.ya_c01389{bottom:714.666667pt;}
.y9_c01389{bottom:752.000000pt;}
.y8_c01389{bottom:770.666667pt;}
.y7_c01389{bottom:808.000000pt;}
.y6_c01389{bottom:845.333333pt;}
.y5_c01389{bottom:864.000000pt;}
.y4_c01389{bottom:905.333333pt;}
.y3_c01389{bottom:926.666667pt;}
.y2_c01389{bottom:956.000000pt;}
.y1_c01389{bottom:974.666667pt;}
.y1f_c01389{bottom:1061.333333pt;}
.h3_c01389{height:39.296875pt;}
.h2_c01389{height:49.843750pt;}
.h1_c01389{height:57.906250pt;}
.h0_c01389{height:1122.666667pt;}
.w0_c01389{width:793.333333pt;}
.x0_c01389{left:0.000000pt;}
.x1_c01389{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d65edc16963d01122527bf11.woff2')format("woff");}.ff1_c01390{font-family:ff1_c01390;line-height:1.187012;font-style:normal;font-weight:normal;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_7d5747fff53927a806ada9ef.woff2')format("woff");}.ff2_c01390{font-family:ff2_c01390;line-height:1.005371;font-style:normal;font-weight:normal;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_e7326d2dae9471397e50b2a9.woff2')format("woff");}.ff3_c01390{font-family:ff3_c01390;line-height:0.958008;font-style: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);}
.v0_c01390{vertical-align:0.000000px;}
.ls2_c01390{letter-spacing:-0.014400px;}
.ls1_c01390{letter-spacing:0.000000px;}
.ls0_c01390{letter-spacing:0.012000px;}
.ls3_c01390{letter-spacing:0.014400px;}
.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;}
}
.ws1_c01390{word-spacing:-18.000000px;}
.ws0_c01390{word-spacing:-17.985600px;}
.ws2_c01390{word-spacing:0.000000px;}
._19_c01390{margin-left:-7.992000px;}
._1_c01390{margin-left:-6.660000px;}
._14_c01390{margin-left:-5.652000px;}
._f_c01390{margin-left:-3.960000px;}
._3_c01390{margin-left:-2.750400px;}
._0_c01390{margin-left:-1.252800px;}
._5_c01390{width:1.958400px;}
._9_c01390{width:3.340800px;}
._8_c01390{width:4.428000px;}
._a_c01390{width:5.796000px;}
._13_c01390{width:7.761600px;}
._6_c01390{width:8.892000px;}
._7_c01390{width:10.893600px;}
._2_c01390{width:12.153600px;}
._4_c01390{width:13.572000px;}
._10_c01390{width:15.897600px;}
._18_c01390{width:16.912800px;}
._12_c01390{width:19.015200px;}
._11_c01390{width:20.973600px;}
._16_c01390{width:22.197600px;}
._17_c01390{width:23.486400px;}
._15_c01390{width:24.717600px;}
._d_c01390{width:26.107200px;}
._c_c01390{width:27.957600px;}
._e_c01390{width:29.433600px;}
._b_c01390{width:54.000000px;}
.fc0_c01390{color:rgb(0,0,0);}
.fs1_c01390{font-size:60.000000px;}
.fs0_c01390{font-size:72.000000px;}
.y0_c01390{bottom:0.000000px;}
.y1f_c01390{bottom:67.500000px;}
.y1d_c01390{bottom:214.500000px;}
.y1c_c01390{bottom:256.500000px;}
.y1b_c01390{bottom:298.500000px;}
.y1a_c01390{bottom:319.500000px;}
.y19_c01390{bottom:361.500000px;}
.y18_c01390{bottom:382.500000px;}
.y17_c01390{bottom:424.500000px;}
.y16_c01390{bottom:445.500000px;}
.y15_c01390{bottom:466.500000px;}
.y14_c01390{bottom:487.500000px;}
.y13_c01390{bottom:529.500000px;}
.y12_c01390{bottom:550.500000px;}
.y11_c01390{bottom:592.500000px;}
.y10_c01390{bottom:613.500000px;}
.yf_c01390{bottom:634.500000px;}
.ye_c01390{bottom:676.500000px;}
.yd_c01390{bottom:718.500000px;}
.yc_c01390{bottom:739.500000px;}
.yb_c01390{bottom:781.500000px;}
.ya_c01390{bottom:802.500000px;}
.y9_c01390{bottom:844.500000px;}
.y8_c01390{bottom:865.500000px;}
.y7_c01390{bottom:886.500000px;}
.y6_c01390{bottom:928.500000px;}
.y5_c01390{bottom:949.500000px;}
.y4_c01390{bottom:970.500000px;}
.y3_c01390{bottom:1012.500000px;}
.y2_c01390{bottom:1054.500000px;}
.y1_c01390{bottom:1096.500000px;}
.y1e_c01390{bottom:1194.000000px;}
.h3_c01390{height:44.208984px;}
.h2_c01390{height:52.242188px;}
.h1_c01390{height:65.144531px;}
.h0_c01390{height:1263.000000px;}
.w0_c01390{width:892.500000px;}
.x0_c01390{left:0.000000px;}
.x1_c01390{left:150.519750px;}
.x2_c01390{left:556.865850px;}
.x3_c01390{left:801.992850px;}
@media print{
.v0_c01390{vertical-align:0.000000pt;}
.ls2_c01390{letter-spacing:-0.012800pt;}
.ls1_c01390{letter-spacing:0.000000pt;}
.ls0_c01390{letter-spacing:0.010667pt;}
.ls3_c01390{letter-spacing:0.012800pt;}
.ws1_c01390{word-spacing:-16.000000pt;}
.ws0_c01390{word-spacing:-15.987200pt;}
.ws2_c01390{word-spacing:0.000000pt;}
._19_c01390{margin-left:-7.104000pt;}
._1_c01390{margin-left:-5.920000pt;}
._14_c01390{margin-left:-5.024000pt;}
._f_c01390{margin-left:-3.520000pt;}
._3_c01390{margin-left:-2.444800pt;}
._0_c01390{margin-left:-1.113600pt;}
._5_c01390{width:1.740800pt;}
._9_c01390{width:2.969600pt;}
._8_c01390{width:3.936000pt;}
._a_c01390{width:5.152000pt;}
._13_c01390{width:6.899200pt;}
._6_c01390{width:7.904000pt;}
._7_c01390{width:9.683200pt;}
._2_c01390{width:10.803200pt;}
._4_c01390{width:12.064000pt;}
._10_c01390{width:14.131200pt;}
._18_c01390{width:15.033600pt;}
._12_c01390{width:16.902400pt;}
._11_c01390{width:18.643200pt;}
._16_c01390{width:19.731200pt;}
._17_c01390{width:20.876800pt;}
._15_c01390{width:21.971200pt;}
._d_c01390{width:23.206400pt;}
._c_c01390{width:24.851200pt;}
._e_c01390{width:26.163200pt;}
._b_c01390{width:48.000000pt;}
.fs1_c01390{font-size:53.333333pt;}
.fs0_c01390{font-size:64.000000pt;}
.y0_c01390{bottom:0.000000pt;}
.y1f_c01390{bottom:60.000000pt;}
.y1d_c01390{bottom:190.666667pt;}
.y1c_c01390{bottom:228.000000pt;}
.y1b_c01390{bottom:265.333333pt;}
.y1a_c01390{bottom:284.000000pt;}
.y19_c01390{bottom:321.333333pt;}
.y18_c01390{bottom:340.000000pt;}
.y17_c01390{bottom:377.333333pt;}
.y16_c01390{bottom:396.000000pt;}
.y15_c01390{bottom:414.666667pt;}
.y14_c01390{bottom:433.333333pt;}
.y13_c01390{bottom:470.666667pt;}
.y12_c01390{bottom:489.333333pt;}
.y11_c01390{bottom:526.666667pt;}
.y10_c01390{bottom:545.333333pt;}
.yf_c01390{bottom:564.000000pt;}
.ye_c01390{bottom:601.333333pt;}
.yd_c01390{bottom:638.666667pt;}
.yc_c01390{bottom:657.333333pt;}
.yb_c01390{bottom:694.666667pt;}
.ya_c01390{bottom:713.333333pt;}
.y9_c01390{bottom:750.666667pt;}
.y8_c01390{bottom:769.333333pt;}
.y7_c01390{bottom:788.000000pt;}
.y6_c01390{bottom:825.333333pt;}
.y5_c01390{bottom:844.000000pt;}
.y4_c01390{bottom:862.666667pt;}
.y3_c01390{bottom:900.000000pt;}
.y2_c01390{bottom:937.333333pt;}
.y1_c01390{bottom:974.666667pt;}
.y1e_c01390{bottom:1061.333333pt;}
.h3_c01390{height:39.296875pt;}
.h2_c01390{height:46.437500pt;}
.h1_c01390{height:57.906250pt;}
.h0_c01390{height:1122.666667pt;}
.w0_c01390{width:793.333333pt;}
.x0_c01390{left:0.000000pt;}
.x1_c01390{left:133.795333pt;}
.x2_c01390{left:494.991867pt;}
.x3_c01390{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ada1ea941bb832799be6b5ab.woff2')format("woff");}.ff1_c01391{font-family:ff1_c01391;line-height:1.187012;font-style:normal;font-weight:normal;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_d869d1230d473ce37a67d8c7.woff2')format("woff");}.ff2_c01391{font-family:ff2_c01391;line-height:1.005371;font-style:normal;font-weight:normal;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_25090e0118ba92c389166802.woff2')format("woff");}.ff3_c01391{font-family:ff3_c01391;line-height:0.756836;font-style:normal;font-weight:normal;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_af4475cc2dd13befbba5eed8.woff2')format("woff");}.ff4_c01391{font-family:ff4_c01391;line-height:1.155762;font-style: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;}
.ls2_c01391{letter-spacing:-0.014400px;}
.ls1_c01391{letter-spacing:0.000000px;}
.ls4_c01391{letter-spacing:0.012000px;}
.ls3_c01391{letter-spacing:0.014400px;}
.ls0_c01391{letter-spacing:0.855000px;}
.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;}
}
.ws1_c01391{word-spacing:-18.000000px;}
.ws0_c01391{word-spacing:-17.985600px;}
.ws2_c01391{word-spacing:0.000000px;}
._14_c01391{margin-left:-9.326640px;}
._c_c01391{margin-left:-7.956000px;}
._10_c01391{margin-left:-5.875200px;}
._e_c01391{margin-left:-4.564800px;}
._7_c01391{margin-left:-3.520800px;}
._13_c01391{margin-left:-2.426400px;}
._6_c01391{margin-left:-1.195200px;}
._4_c01391{width:1.288800px;}
._2_c01391{width:2.829600px;}
._b_c01391{width:4.449600px;}
._9_c01391{width:5.659200px;}
._f_c01391{width:6.926400px;}
._a_c01391{width:8.244000px;}
._3_c01391{width:10.180800px;}
._5_c01391{width:11.750400px;}
._11_c01391{width:12.787200px;}
._8_c01391{width:13.788000px;}
._1_c01391{width:15.163200px;}
._d_c01391{width:16.567200px;}
._12_c01391{width:21.448560px;}
._0_c01391{width:23.997600px;}
.fc0_c01391{color:rgb(0,0,0);}
.fs1_c01391{font-size:60.000000px;}
.fs0_c01391{font-size:72.000000px;}
.y0_c01391{bottom:0.000000px;}
.y21_c01391{bottom:67.500000px;}
.y1f_c01391{bottom:172.500000px;}
.y1e_c01391{bottom:193.500000px;}
.y1d_c01391{bottom:214.500000px;}
.y1c_c01391{bottom:256.500000px;}
.y1b_c01391{bottom:277.500000px;}
.y1a_c01391{bottom:298.500000px;}
.y19_c01391{bottom:340.500000px;}
.y18_c01391{bottom:361.500000px;}
.y17_c01391{bottom:403.500000px;}
.y16_c01391{bottom:424.500000px;}
.y15_c01391{bottom:466.500000px;}
.y14_c01391{bottom:508.500000px;}
.y13_c01391{bottom:529.500000px;}
.y12_c01391{bottom:571.500000px;}
.y11_c01391{bottom:613.500000px;}
.y10_c01391{bottom:634.500000px;}
.yf_c01391{bottom:676.500000px;}
.ye_c01391{bottom:697.500000px;}
.yd_c01391{bottom:739.500000px;}
.yc_c01391{bottom:760.500000px;}
.yb_c01391{bottom:802.500000px;}
.ya_c01391{bottom:823.500000px;}
.y9_c01391{bottom:865.500000px;}
.y8_c01391{bottom:886.500000px;}
.y7_c01391{bottom:928.500000px;}
.y6_c01391{bottom:949.500000px;}
.y5_c01391{bottom:991.500000px;}
.y4_c01391{bottom:1012.500000px;}
.y3_c01391{bottom:1054.500000px;}
.y2_c01391{bottom:1075.500000px;}
.y1_c01391{bottom:1096.500000px;}
.y20_c01391{bottom:1194.000000px;}
.h3_c01391{height:44.208984px;}
.h2_c01391{height:56.074219px;}
.h1_c01391{height:65.144531px;}
.h0_c01391{height:1263.000000px;}
.w0_c01391{width:892.500000px;}
.x0_c01391{left:0.000000px;}
.x1_c01391{left:65.480310px;}
@media print{
.v0_c01391{vertical-align:0.000000pt;}
.ls2_c01391{letter-spacing:-0.012800pt;}
.ls1_c01391{letter-spacing:0.000000pt;}
.ls4_c01391{letter-spacing:0.010667pt;}
.ls3_c01391{letter-spacing:0.012800pt;}
.ls0_c01391{letter-spacing:0.760000pt;}
.ws1_c01391{word-spacing:-16.000000pt;}
.ws0_c01391{word-spacing:-15.987200pt;}
.ws2_c01391{word-spacing:0.000000pt;}
._14_c01391{margin-left:-8.290347pt;}
._c_c01391{margin-left:-7.072000pt;}
._10_c01391{margin-left:-5.222400pt;}
._e_c01391{margin-left:-4.057600pt;}
._7_c01391{margin-left:-3.129600pt;}
._13_c01391{margin-left:-2.156800pt;}
._6_c01391{margin-left:-1.062400pt;}
._4_c01391{width:1.145600pt;}
._2_c01391{width:2.515200pt;}
._b_c01391{width:3.955200pt;}
._9_c01391{width:5.030400pt;}
._f_c01391{width:6.156800pt;}
._a_c01391{width:7.328000pt;}
._3_c01391{width:9.049600pt;}
._5_c01391{width:10.444800pt;}
._11_c01391{width:11.366400pt;}
._8_c01391{width:12.256000pt;}
._1_c01391{width:13.478400pt;}
._d_c01391{width:14.726400pt;}
._12_c01391{width:19.065387pt;}
._0_c01391{width:21.331200pt;}
.fs1_c01391{font-size:53.333333pt;}
.fs0_c01391{font-size:64.000000pt;}
.y0_c01391{bottom:0.000000pt;}
.y21_c01391{bottom:60.000000pt;}
.y1f_c01391{bottom:153.333333pt;}
.y1e_c01391{bottom:172.000000pt;}
.y1d_c01391{bottom:190.666667pt;}
.y1c_c01391{bottom:228.000000pt;}
.y1b_c01391{bottom:246.666667pt;}
.y1a_c01391{bottom:265.333333pt;}
.y19_c01391{bottom:302.666667pt;}
.y18_c01391{bottom:321.333333pt;}
.y17_c01391{bottom:358.666667pt;}
.y16_c01391{bottom:377.333333pt;}
.y15_c01391{bottom:414.666667pt;}
.y14_c01391{bottom:452.000000pt;}
.y13_c01391{bottom:470.666667pt;}
.y12_c01391{bottom:508.000000pt;}
.y11_c01391{bottom:545.333333pt;}
.y10_c01391{bottom:564.000000pt;}
.yf_c01391{bottom:601.333333pt;}
.ye_c01391{bottom:620.000000pt;}
.yd_c01391{bottom:657.333333pt;}
.yc_c01391{bottom:676.000000pt;}
.yb_c01391{bottom:713.333333pt;}
.ya_c01391{bottom:732.000000pt;}
.y9_c01391{bottom:769.333333pt;}
.y8_c01391{bottom:788.000000pt;}
.y7_c01391{bottom:825.333333pt;}
.y6_c01391{bottom:844.000000pt;}
.y5_c01391{bottom:881.333333pt;}
.y4_c01391{bottom:900.000000pt;}
.y3_c01391{bottom:937.333333pt;}
.y2_c01391{bottom:956.000000pt;}
.y1_c01391{bottom:974.666667pt;}
.y20_c01391{bottom:1061.333333pt;}
.h3_c01391{height:39.296875pt;}
.h2_c01391{height:49.843750pt;}
.h1_c01391{height:57.906250pt;}
.h0_c01391{height:1122.666667pt;}
.w0_c01391{width:793.333333pt;}
.x0_c01391{left:0.000000pt;}
.x1_c01391{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7e64d465606284be1114e207.woff2')format("woff");}.ff1_c01392{font-family:ff1_c01392;line-height:1.187012;font-style:normal;font-weight:normal;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_855a7069f42099445ac2d68e.woff2')format("woff");}.ff2_c01392{font-family:ff2_c01392;line-height:1.005371;font-style:normal;font-weight:normal;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_734f74a8b9893d11aecb2d1b.woff2')format("woff");}.ff3_c01392{font-family:ff3_c01392;line-height:0.958008;font-style: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);}
.v0_c01392{vertical-align:0.000000px;}
.ls1_c01392{letter-spacing:0.000000px;}
.ls0_c01392{letter-spacing:0.012000px;}
.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;}
}
.ws0_c01392{word-spacing:-18.000000px;}
.ws1_c01392{word-spacing:0.000000px;}
._16_c01392{margin-left:-8.575200px;}
._15_c01392{margin-left:-7.003800px;}
._a_c01392{margin-left:-5.911200px;}
._5_c01392{margin-left:-3.808800px;}
._1_c01392{margin-left:-1.994400px;}
._3_c01392{width:1.144800px;}
._2_c01392{width:2.937600px;}
._4_c01392{width:3.996000px;}
._0_c01392{width:5.997600px;}
._f_c01392{width:7.695000px;}
._d_c01392{width:8.733600px;}
._e_c01392{width:10.605600px;}
._14_c01392{width:12.177000px;}
._9_c01392{width:14.292000px;}
._13_c01392{width:15.379200px;}
._7_c01392{width:16.862400px;}
._8_c01392{width:19.591200px;}
._c_c01392{width:20.671200px;}
._b_c01392{width:23.464800px;}
._10_c01392{width:27.835200px;}
._11_c01392{width:29.844000px;}
._12_c01392{width:32.781000px;}
._6_c01392{width:36.000000px;}
.fc0_c01392{color:rgb(0,0,0);}
.fs1_c01392{font-size:60.000000px;}
.fs0_c01392{font-size:72.000000px;}
.y0_c01392{bottom:0.000000px;}
.y20_c01392{bottom:67.500000px;}
.y1e_c01392{bottom:172.500000px;}
.y1d_c01392{bottom:193.500000px;}
.y1c_c01392{bottom:235.500000px;}
.y1b_c01392{bottom:256.500000px;}
.y1a_c01392{bottom:298.500000px;}
.y19_c01392{bottom:340.500000px;}
.y18_c01392{bottom:361.500000px;}
.y17_c01392{bottom:403.500000px;}
.y16_c01392{bottom:424.500000px;}
.y15_c01392{bottom:466.500000px;}
.y14_c01392{bottom:487.500000px;}
.y13_c01392{bottom:529.500000px;}
.y12_c01392{bottom:571.500000px;}
.y11_c01392{bottom:592.500000px;}
.y10_c01392{bottom:634.500000px;}
.yf_c01392{bottom:655.500000px;}
.ye_c01392{bottom:676.500000px;}
.yd_c01392{bottom:718.500000px;}
.yc_c01392{bottom:739.500000px;}
.yb_c01392{bottom:781.500000px;}
.ya_c01392{bottom:802.500000px;}
.y9_c01392{bottom:844.500000px;}
.y8_c01392{bottom:865.500000px;}
.y7_c01392{bottom:907.500000px;}
.y6_c01392{bottom:949.500000px;}
.y5_c01392{bottom:970.500000px;}
.y4_c01392{bottom:991.500000px;}
.y3_c01392{bottom:1033.500000px;}
.y2_c01392{bottom:1075.500000px;}
.y1_c01392{bottom:1096.500000px;}
.y1f_c01392{bottom:1194.000000px;}
.h2_c01392{height:44.208984px;}
.h1_c01392{height:65.144531px;}
.h0_c01392{height:1263.000000px;}
.w0_c01392{width:892.500000px;}
.x0_c01392{left:0.000000px;}
.x1_c01392{left:150.519750px;}
.x2_c01392{left:556.865850px;}
.x3_c01392{left:801.992850px;}
@media print{
.v0_c01392{vertical-align:0.000000pt;}
.ls1_c01392{letter-spacing:0.000000pt;}
.ls0_c01392{letter-spacing:0.010667pt;}
.ws0_c01392{word-spacing:-16.000000pt;}
.ws1_c01392{word-spacing:0.000000pt;}
._16_c01392{margin-left:-7.622400pt;}
._15_c01392{margin-left:-6.225600pt;}
._a_c01392{margin-left:-5.254400pt;}
._5_c01392{margin-left:-3.385600pt;}
._1_c01392{margin-left:-1.772800pt;}
._3_c01392{width:1.017600pt;}
._2_c01392{width:2.611200pt;}
._4_c01392{width:3.552000pt;}
._0_c01392{width:5.331200pt;}
._f_c01392{width:6.840000pt;}
._d_c01392{width:7.763200pt;}
._e_c01392{width:9.427200pt;}
._14_c01392{width:10.824000pt;}
._9_c01392{width:12.704000pt;}
._13_c01392{width:13.670400pt;}
._7_c01392{width:14.988800pt;}
._8_c01392{width:17.414400pt;}
._c_c01392{width:18.374400pt;}
._b_c01392{width:20.857600pt;}
._10_c01392{width:24.742400pt;}
._11_c01392{width:26.528000pt;}
._12_c01392{width:29.138667pt;}
._6_c01392{width:32.000000pt;}
.fs1_c01392{font-size:53.333333pt;}
.fs0_c01392{font-size:64.000000pt;}
.y0_c01392{bottom:0.000000pt;}
.y20_c01392{bottom:60.000000pt;}
.y1e_c01392{bottom:153.333333pt;}
.y1d_c01392{bottom:172.000000pt;}
.y1c_c01392{bottom:209.333333pt;}
.y1b_c01392{bottom:228.000000pt;}
.y1a_c01392{bottom:265.333333pt;}
.y19_c01392{bottom:302.666667pt;}
.y18_c01392{bottom:321.333333pt;}
.y17_c01392{bottom:358.666667pt;}
.y16_c01392{bottom:377.333333pt;}
.y15_c01392{bottom:414.666667pt;}
.y14_c01392{bottom:433.333333pt;}
.y13_c01392{bottom:470.666667pt;}
.y12_c01392{bottom:508.000000pt;}
.y11_c01392{bottom:526.666667pt;}
.y10_c01392{bottom:564.000000pt;}
.yf_c01392{bottom:582.666667pt;}
.ye_c01392{bottom:601.333333pt;}
.yd_c01392{bottom:638.666667pt;}
.yc_c01392{bottom:657.333333pt;}
.yb_c01392{bottom:694.666667pt;}
.ya_c01392{bottom:713.333333pt;}
.y9_c01392{bottom:750.666667pt;}
.y8_c01392{bottom:769.333333pt;}
.y7_c01392{bottom:806.666667pt;}
.y6_c01392{bottom:844.000000pt;}
.y5_c01392{bottom:862.666667pt;}
.y4_c01392{bottom:881.333333pt;}
.y3_c01392{bottom:918.666667pt;}
.y2_c01392{bottom:956.000000pt;}
.y1_c01392{bottom:974.666667pt;}
.y1f_c01392{bottom:1061.333333pt;}
.h2_c01392{height:39.296875pt;}
.h1_c01392{height:57.906250pt;}
.h0_c01392{height:1122.666667pt;}
.w0_c01392{width:793.333333pt;}
.x0_c01392{left:0.000000pt;}
.x1_c01392{left:133.795333pt;}
.x2_c01392{left:494.991867pt;}
.x3_c01392{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f271e7ebb62f8efdfcd8d082.woff2')format("woff");}.ff1_c01393{font-family:ff1_c01393;line-height:1.187012;font-style:normal;font-weight:normal;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_ae6785ede789a24637be1b5e.woff2')format("woff");}.ff2_c01393{font-family:ff2_c01393;line-height:1.005371;font-style:normal;font-weight:normal;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_5523cb4d98ecd2a66d67d09e.woff2')format("woff");}.ff3_c01393{font-family:ff3_c01393;line-height:0.756836;font-style:normal;font-weight:normal;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_f69b125731066934fac72508.woff2')format("woff");}.ff4_c01393{font-family:ff4_c01393;line-height:1.155762;font-style: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.014400px;}
.ls2_c01393{letter-spacing:0.000000px;}
.ls4_c01393{letter-spacing:0.012000px;}
.ls0_c01393{letter-spacing:0.914400px;}
.ls1_c01393{letter-spacing:0.921600px;}
.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;}
}
.ws1_c01393{word-spacing:-18.921600px;}
.ws0_c01393{word-spacing:-18.000000px;}
.ws2_c01393{word-spacing:-17.985600px;}
.ws3_c01393{word-spacing:0.000000px;}
._9_c01393{margin-left:-6.667200px;}
._0_c01393{margin-left:-5.407200px;}
._7_c01393{margin-left:-3.938400px;}
._1_c01393{margin-left:-2.700000px;}
._5_c01393{margin-left:-1.120800px;}
._10_c01393{width:1.216800px;}
._2_c01393{width:2.246400px;}
._12_c01393{width:3.466140px;}
._a_c01393{width:5.171280px;}
._3_c01393{width:6.775200px;}
._b_c01393{width:7.990320px;}
._4_c01393{width:9.001560px;}
._1a_c01393{width:10.029600px;}
._6_c01393{width:11.180040px;}
._8_c01393{width:12.772800px;}
._13_c01393{width:13.827240px;}
._11_c01393{width:15.667200px;}
._14_c01393{width:16.829520px;}
._d_c01393{width:20.040960px;}
._16_c01393{width:21.229080px;}
._c_c01393{width:22.348800px;}
._f_c01393{width:24.238920px;}
._e_c01393{width:26.868720px;}
._17_c01393{width:33.415200px;}
._1b_c01393{width:35.884800px;}
._18_c01393{width:37.332000px;}
._19_c01393{width:38.460960px;}
._15_c01393{width:41.997600px;}
.fc1_c01393{color:rgb(0,0,153);}
.fc0_c01393{color:rgb(0,0,0);}
.fs1_c01393{font-size:60.000000px;}
.fs0_c01393{font-size:72.000000px;}
.y0_c01393{bottom:0.000000px;}
.y20_c01393{bottom:67.500000px;}
.y1e_c01393{bottom:214.500000px;}
.y1d_c01393{bottom:235.500000px;}
.y1c_c01393{bottom:277.500000px;}
.y1b_c01393{bottom:298.500000px;}
.y1a_c01393{bottom:340.500000px;}
.y19_c01393{bottom:361.500000px;}
.y18_c01393{bottom:382.500000px;}
.y17_c01393{bottom:424.500000px;}
.y16_c01393{bottom:445.500000px;}
.y15_c01393{bottom:487.500000px;}
.y14_c01393{bottom:508.500000px;}
.y13_c01393{bottom:550.500000px;}
.y12_c01393{bottom:571.500000px;}
.y11_c01393{bottom:592.500000px;}
.y10_c01393{bottom:634.500000px;}
.yf_c01393{bottom:655.500000px;}
.ye_c01393{bottom:697.500000px;}
.yd_c01393{bottom:718.500000px;}
.yc_c01393{bottom:760.500000px;}
.yb_c01393{bottom:781.500000px;}
.ya_c01393{bottom:802.500000px;}
.y9_c01393{bottom:844.500000px;}
.y8_c01393{bottom:865.500000px;}
.y7_c01393{bottom:886.500000px;}
.y6_c01393{bottom:928.500000px;}
.y5_c01393{bottom:970.500000px;}
.y4_c01393{bottom:991.500000px;}
.y3_c01393{bottom:1033.500000px;}
.y2_c01393{bottom:1054.500000px;}
.y1_c01393{bottom:1096.500000px;}
.y1f_c01393{bottom:1194.000000px;}
.h3_c01393{height:44.208984px;}
.h2_c01393{height:56.074219px;}
.h1_c01393{height:65.144531px;}
.h0_c01393{height:1263.000000px;}
.w0_c01393{width:892.500000px;}
.x0_c01393{left:0.000000px;}
.x1_c01393{left:65.480310px;}
@media print{
.v0_c01393{vertical-align:0.000000pt;}
.ls3_c01393{letter-spacing:-0.012800pt;}
.ls2_c01393{letter-spacing:0.000000pt;}
.ls4_c01393{letter-spacing:0.010667pt;}
.ls0_c01393{letter-spacing:0.812800pt;}
.ls1_c01393{letter-spacing:0.819200pt;}
.ws1_c01393{word-spacing:-16.819200pt;}
.ws0_c01393{word-spacing:-16.000000pt;}
.ws2_c01393{word-spacing:-15.987200pt;}
.ws3_c01393{word-spacing:0.000000pt;}
._9_c01393{margin-left:-5.926400pt;}
._0_c01393{margin-left:-4.806400pt;}
._7_c01393{margin-left:-3.500800pt;}
._1_c01393{margin-left:-2.400000pt;}
._5_c01393{margin-left:-0.996267pt;}
._10_c01393{width:1.081600pt;}
._2_c01393{width:1.996800pt;}
._12_c01393{width:3.081013pt;}
._a_c01393{width:4.596693pt;}
._3_c01393{width:6.022400pt;}
._b_c01393{width:7.102507pt;}
._4_c01393{width:8.001387pt;}
._1a_c01393{width:8.915200pt;}
._6_c01393{width:9.937813pt;}
._8_c01393{width:11.353600pt;}
._13_c01393{width:12.290880pt;}
._11_c01393{width:13.926400pt;}
._14_c01393{width:14.959573pt;}
._d_c01393{width:17.814187pt;}
._16_c01393{width:18.870293pt;}
._c_c01393{width:19.865600pt;}
._f_c01393{width:21.545707pt;}
._e_c01393{width:23.883307pt;}
._17_c01393{width:29.702400pt;}
._1b_c01393{width:31.897600pt;}
._18_c01393{width:33.184000pt;}
._19_c01393{width:34.187520pt;}
._15_c01393{width:37.331200pt;}
.fs1_c01393{font-size:53.333333pt;}
.fs0_c01393{font-size:64.000000pt;}
.y0_c01393{bottom:0.000000pt;}
.y20_c01393{bottom:60.000000pt;}
.y1e_c01393{bottom:190.666667pt;}
.y1d_c01393{bottom:209.333333pt;}
.y1c_c01393{bottom:246.666667pt;}
.y1b_c01393{bottom:265.333333pt;}
.y1a_c01393{bottom:302.666667pt;}
.y19_c01393{bottom:321.333333pt;}
.y18_c01393{bottom:340.000000pt;}
.y17_c01393{bottom:377.333333pt;}
.y16_c01393{bottom:396.000000pt;}
.y15_c01393{bottom:433.333333pt;}
.y14_c01393{bottom:452.000000pt;}
.y13_c01393{bottom:489.333333pt;}
.y12_c01393{bottom:508.000000pt;}
.y11_c01393{bottom:526.666667pt;}
.y10_c01393{bottom:564.000000pt;}
.yf_c01393{bottom:582.666667pt;}
.ye_c01393{bottom:620.000000pt;}
.yd_c01393{bottom:638.666667pt;}
.yc_c01393{bottom:676.000000pt;}
.yb_c01393{bottom:694.666667pt;}
.ya_c01393{bottom:713.333333pt;}
.y9_c01393{bottom:750.666667pt;}
.y8_c01393{bottom:769.333333pt;}
.y7_c01393{bottom:788.000000pt;}
.y6_c01393{bottom:825.333333pt;}
.y5_c01393{bottom:862.666667pt;}
.y4_c01393{bottom:881.333333pt;}
.y3_c01393{bottom:918.666667pt;}
.y2_c01393{bottom:937.333333pt;}
.y1_c01393{bottom:974.666667pt;}
.y1f_c01393{bottom:1061.333333pt;}
.h3_c01393{height:39.296875pt;}
.h2_c01393{height:49.843750pt;}
.h1_c01393{height:57.906250pt;}
.h0_c01393{height:1122.666667pt;}
.w0_c01393{width:793.333333pt;}
.x0_c01393{left:0.000000pt;}
.x1_c01393{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e38663855f73e2f5e11b12ef.woff2')format("woff");}.ff1_c01394{font-family:ff1_c01394;line-height:1.187012;font-style:normal;font-weight:normal;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_a6f2c2fd3b1e6a38445f65e0.woff2')format("woff");}.ff2_c01394{font-family:ff2_c01394;line-height:1.005371;font-style:normal;font-weight:normal;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_8715604e3b94fcb3e37fd483.woff2')format("woff");}.ff3_c01394{font-family:ff3_c01394;line-height:0.958008;font-style: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);}
.v0_c01394{vertical-align:0.000000px;}
.ls1_c01394{letter-spacing:0.000000px;}
.ls0_c01394{letter-spacing:0.012000px;}
.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;}
}
.ws0_c01394{word-spacing:0.000000px;}
._d_c01394{margin-left:-8.769600px;}
._c_c01394{margin-left:-6.616800px;}
._17_c01394{margin-left:-4.608000px;}
._5_c01394{margin-left:-3.477600px;}
._4_c01394{margin-left:-2.361600px;}
._0_c01394{margin-left:-1.324800px;}
._2_c01394{width:1.612800px;}
._1_c01394{width:3.448800px;}
._3_c01394{width:4.824000px;}
._11_c01394{width:6.199200px;}
._e_c01394{width:7.675200px;}
._10_c01394{width:8.978400px;}
._12_c01394{width:10.166400px;}
._f_c01394{width:11.671200px;}
._1a_c01394{width:12.880800px;}
._19_c01394{width:14.481600px;}
._9_c01394{width:16.646400px;}
._7_c01394{width:19.814400px;}
._8_c01394{width:21.434400px;}
._b_c01394{width:22.773600px;}
._a_c01394{width:23.803200px;}
._6_c01394{width:24.933600px;}
._1b_c01394{width:26.679600px;}
._14_c01394{width:28.281600px;}
._16_c01394{width:30.139200px;}
._13_c01394{width:31.726800px;}
._15_c01394{width:33.076800px;}
._18_c01394{width:36.309600px;}
.fc0_c01394{color:rgb(0,0,0);}
.fs1_c01394{font-size:60.000000px;}
.fs0_c01394{font-size:72.000000px;}
.y0_c01394{bottom:0.000000px;}
.y1f_c01394{bottom:67.500000px;}
.y1d_c01394{bottom:160.500000px;}
.y1c_c01394{bottom:181.500000px;}
.y1b_c01394{bottom:202.500000px;}
.y1a_c01394{bottom:244.500000px;}
.y19_c01394{bottom:286.500000px;}
.y18_c01394{bottom:307.500000px;}
.y17_c01394{bottom:349.500000px;}
.y16_c01394{bottom:370.500000px;}
.y15_c01394{bottom:412.500000px;}
.y14_c01394{bottom:433.500000px;}
.y13_c01394{bottom:480.000000px;}
.y12_c01394{bottom:505.500000px;}
.y11_c01394{bottom:550.500000px;}
.y10_c01394{bottom:592.500000px;}
.yf_c01394{bottom:634.500000px;}
.ye_c01394{bottom:655.500000px;}
.yd_c01394{bottom:697.500000px;}
.yc_c01394{bottom:739.500000px;}
.yb_c01394{bottom:781.500000px;}
.ya_c01394{bottom:823.500000px;}
.y9_c01394{bottom:844.500000px;}
.y8_c01394{bottom:886.500000px;}
.y7_c01394{bottom:907.500000px;}
.y6_c01394{bottom:949.500000px;}
.y5_c01394{bottom:991.500000px;}
.y4_c01394{bottom:1012.500000px;}
.y3_c01394{bottom:1054.500000px;}
.y2_c01394{bottom:1075.500000px;}
.y1_c01394{bottom:1096.500000px;}
.y1e_c01394{bottom:1194.000000px;}
.h2_c01394{height:44.208984px;}
.h1_c01394{height:65.144531px;}
.h0_c01394{height:1263.000000px;}
.w0_c01394{width:892.500000px;}
.x0_c01394{left:0.000000px;}
.x1_c01394{left:150.519750px;}
.x2_c01394{left:556.865850px;}
.x3_c01394{left:801.992850px;}
@media print{
.v0_c01394{vertical-align:0.000000pt;}
.ls1_c01394{letter-spacing:0.000000pt;}
.ls0_c01394{letter-spacing:0.010667pt;}
.ws0_c01394{word-spacing:0.000000pt;}
._d_c01394{margin-left:-7.795200pt;}
._c_c01394{margin-left:-5.881600pt;}
._17_c01394{margin-left:-4.096000pt;}
._5_c01394{margin-left:-3.091200pt;}
._4_c01394{margin-left:-2.099200pt;}
._0_c01394{margin-left:-1.177600pt;}
._2_c01394{width:1.433600pt;}
._1_c01394{width:3.065600pt;}
._3_c01394{width:4.288000pt;}
._11_c01394{width:5.510400pt;}
._e_c01394{width:6.822400pt;}
._10_c01394{width:7.980800pt;}
._12_c01394{width:9.036800pt;}
._f_c01394{width:10.374400pt;}
._1a_c01394{width:11.449600pt;}
._19_c01394{width:12.872533pt;}
._9_c01394{width:14.796800pt;}
._7_c01394{width:17.612800pt;}
._8_c01394{width:19.052800pt;}
._b_c01394{width:20.243200pt;}
._a_c01394{width:21.158400pt;}
._6_c01394{width:22.163200pt;}
._1b_c01394{width:23.715200pt;}
._14_c01394{width:25.139200pt;}
._16_c01394{width:26.790400pt;}
._13_c01394{width:28.201600pt;}
._15_c01394{width:29.401600pt;}
._18_c01394{width:32.275200pt;}
.fs1_c01394{font-size:53.333333pt;}
.fs0_c01394{font-size:64.000000pt;}
.y0_c01394{bottom:0.000000pt;}
.y1f_c01394{bottom:60.000000pt;}
.y1d_c01394{bottom:142.666667pt;}
.y1c_c01394{bottom:161.333333pt;}
.y1b_c01394{bottom:180.000000pt;}
.y1a_c01394{bottom:217.333333pt;}
.y19_c01394{bottom:254.666667pt;}
.y18_c01394{bottom:273.333333pt;}
.y17_c01394{bottom:310.666667pt;}
.y16_c01394{bottom:329.333333pt;}
.y15_c01394{bottom:366.666667pt;}
.y14_c01394{bottom:385.333333pt;}
.y13_c01394{bottom:426.666667pt;}
.y12_c01394{bottom:449.333333pt;}
.y11_c01394{bottom:489.333333pt;}
.y10_c01394{bottom:526.666667pt;}
.yf_c01394{bottom:564.000000pt;}
.ye_c01394{bottom:582.666667pt;}
.yd_c01394{bottom:620.000000pt;}
.yc_c01394{bottom:657.333333pt;}
.yb_c01394{bottom:694.666667pt;}
.ya_c01394{bottom:732.000000pt;}
.y9_c01394{bottom:750.666667pt;}
.y8_c01394{bottom:788.000000pt;}
.y7_c01394{bottom:806.666667pt;}
.y6_c01394{bottom:844.000000pt;}
.y5_c01394{bottom:881.333333pt;}
.y4_c01394{bottom:900.000000pt;}
.y3_c01394{bottom:937.333333pt;}
.y2_c01394{bottom:956.000000pt;}
.y1_c01394{bottom:974.666667pt;}
.y1e_c01394{bottom:1061.333333pt;}
.h2_c01394{height:39.296875pt;}
.h1_c01394{height:57.906250pt;}
.h0_c01394{height:1122.666667pt;}
.w0_c01394{width:793.333333pt;}
.x0_c01394{left:0.000000pt;}
.x1_c01394{left:133.795333pt;}
.x2_c01394{left:494.991867pt;}
.x3_c01394{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2e11f105c77881198df6c8fc.woff2')format("woff");}.ff1_c01395{font-family:ff1_c01395;line-height:1.187012;font-style:normal;font-weight:normal;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_8617e4acab9080c6cc93fcdf.woff2')format("woff");}.ff2_c01395{font-family:ff2_c01395;line-height:1.005371;font-style:normal;font-weight:normal;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_8742a1d574ea443069200a7a.woff2')format("woff");}.ff3_c01395{font-family:ff3_c01395;line-height:0.756836;font-style:normal;font-weight:normal;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_7dce505b12c81278cd9fc288.woff2')format("woff");}.ff4_c01395{font-family:ff4_c01395;line-height:1.155762;font-style: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;}
.ls2_c01395{letter-spacing:-0.014400px;}
.ls1_c01395{letter-spacing:0.000000px;}
.ls3_c01395{letter-spacing:0.012000px;}
.ls0_c01395{letter-spacing:0.014400px;}
.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:-18.014400px;}
.ws0_c01395{word-spacing:-17.985600px;}
.ws2_c01395{word-spacing:0.000000px;}
._0_c01395{margin-left:-6.609600px;}
._1_c01395{margin-left:-4.968000px;}
._c_c01395{margin-left:-3.952800px;}
._7_c01395{margin-left:-2.851200px;}
._3_c01395{margin-left:-1.771200px;}
._9_c01395{width:1.058400px;}
._e_c01395{width:2.347200px;}
._5_c01395{width:4.183200px;}
._10_c01395{width:5.760000px;}
._f_c01395{width:7.308960px;}
._15_c01395{width:8.582400px;}
._16_c01395{width:10.784760px;}
._14_c01395{width:11.995560px;}
._11_c01395{width:13.939200px;}
._12_c01395{width:15.091200px;}
._13_c01395{width:16.761600px;}
._b_c01395{width:19.519200px;}
._6_c01395{width:23.529600px;}
._a_c01395{width:24.638400px;}
._8_c01395{width:26.553600px;}
._d_c01395{width:27.712800px;}
._2_c01395{width:28.785600px;}
._4_c01395{width:30.016800px;}
._17_c01395{width:32.536800px;}
._18_c01395{width:36.302400px;}
.fc0_c01395{color:rgb(0,0,0);}
.fs1_c01395{font-size:60.000000px;}
.fs0_c01395{font-size:72.000000px;}
.y0_c01395{bottom:0.000000px;}
.y1f_c01395{bottom:67.500000px;}
.y1d_c01395{bottom:151.500000px;}
.y1c_c01395{bottom:193.500000px;}
.y1b_c01395{bottom:235.500000px;}
.y1a_c01395{bottom:277.500000px;}
.y19_c01395{bottom:298.500000px;}
.y18_c01395{bottom:340.500000px;}
.y17_c01395{bottom:382.500000px;}
.y16_c01395{bottom:403.500000px;}
.y15_c01395{bottom:445.500000px;}
.y14_c01395{bottom:487.500000px;}
.y13_c01395{bottom:529.500000px;}
.y12_c01395{bottom:550.500000px;}
.y11_c01395{bottom:592.500000px;}
.y10_c01395{bottom:634.500000px;}
.yf_c01395{bottom:655.500000px;}
.ye_c01395{bottom:697.500000px;}
.yd_c01395{bottom:739.500000px;}
.yc_c01395{bottom:781.500000px;}
.yb_c01395{bottom:802.500000px;}
.ya_c01395{bottom:823.500000px;}
.y9_c01395{bottom:865.500000px;}
.y8_c01395{bottom:886.500000px;}
.y7_c01395{bottom:928.500000px;}
.y6_c01395{bottom:949.500000px;}
.y5_c01395{bottom:991.500000px;}
.y4_c01395{bottom:1012.500000px;}
.y3_c01395{bottom:1033.500000px;}
.y2_c01395{bottom:1075.500000px;}
.y1_c01395{bottom:1096.500000px;}
.y1e_c01395{bottom:1194.000000px;}
.h3_c01395{height:44.208984px;}
.h2_c01395{height:56.074219px;}
.h1_c01395{height:65.144531px;}
.h0_c01395{height:1263.000000px;}
.w0_c01395{width:892.500000px;}
.x0_c01395{left:0.000000px;}
.x1_c01395{left:65.480310px;}
@media print{
.v0_c01395{vertical-align:0.000000pt;}
.ls2_c01395{letter-spacing:-0.012800pt;}
.ls1_c01395{letter-spacing:0.000000pt;}
.ls3_c01395{letter-spacing:0.010667pt;}
.ls0_c01395{letter-spacing:0.012800pt;}
.ws1_c01395{word-spacing:-16.012800pt;}
.ws0_c01395{word-spacing:-15.987200pt;}
.ws2_c01395{word-spacing:0.000000pt;}
._0_c01395{margin-left:-5.875200pt;}
._1_c01395{margin-left:-4.416000pt;}
._c_c01395{margin-left:-3.513600pt;}
._7_c01395{margin-left:-2.534400pt;}
._3_c01395{margin-left:-1.574400pt;}
._9_c01395{width:0.940800pt;}
._e_c01395{width:2.086400pt;}
._5_c01395{width:3.718400pt;}
._10_c01395{width:5.120000pt;}
._f_c01395{width:6.496853pt;}
._15_c01395{width:7.628800pt;}
._16_c01395{width:9.586453pt;}
._14_c01395{width:10.662720pt;}
._11_c01395{width:12.390400pt;}
._12_c01395{width:13.414400pt;}
._13_c01395{width:14.899200pt;}
._b_c01395{width:17.350400pt;}
._6_c01395{width:20.915200pt;}
._a_c01395{width:21.900800pt;}
._8_c01395{width:23.603200pt;}
._d_c01395{width:24.633600pt;}
._2_c01395{width:25.587200pt;}
._4_c01395{width:26.681600pt;}
._17_c01395{width:28.921600pt;}
._18_c01395{width:32.268800pt;}
.fs1_c01395{font-size:53.333333pt;}
.fs0_c01395{font-size:64.000000pt;}
.y0_c01395{bottom:0.000000pt;}
.y1f_c01395{bottom:60.000000pt;}
.y1d_c01395{bottom:134.666667pt;}
.y1c_c01395{bottom:172.000000pt;}
.y1b_c01395{bottom:209.333333pt;}
.y1a_c01395{bottom:246.666667pt;}
.y19_c01395{bottom:265.333333pt;}
.y18_c01395{bottom:302.666667pt;}
.y17_c01395{bottom:340.000000pt;}
.y16_c01395{bottom:358.666667pt;}
.y15_c01395{bottom:396.000000pt;}
.y14_c01395{bottom:433.333333pt;}
.y13_c01395{bottom:470.666667pt;}
.y12_c01395{bottom:489.333333pt;}
.y11_c01395{bottom:526.666667pt;}
.y10_c01395{bottom:564.000000pt;}
.yf_c01395{bottom:582.666667pt;}
.ye_c01395{bottom:620.000000pt;}
.yd_c01395{bottom:657.333333pt;}
.yc_c01395{bottom:694.666667pt;}
.yb_c01395{bottom:713.333333pt;}
.ya_c01395{bottom:732.000000pt;}
.y9_c01395{bottom:769.333333pt;}
.y8_c01395{bottom:788.000000pt;}
.y7_c01395{bottom:825.333333pt;}
.y6_c01395{bottom:844.000000pt;}
.y5_c01395{bottom:881.333333pt;}
.y4_c01395{bottom:900.000000pt;}
.y3_c01395{bottom:918.666667pt;}
.y2_c01395{bottom:956.000000pt;}
.y1_c01395{bottom:974.666667pt;}
.y1e_c01395{bottom:1061.333333pt;}
.h3_c01395{height:39.296875pt;}
.h2_c01395{height:49.843750pt;}
.h1_c01395{height:57.906250pt;}
.h0_c01395{height:1122.666667pt;}
.w0_c01395{width:793.333333pt;}
.x0_c01395{left:0.000000pt;}
.x1_c01395{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_162af0d23023f8a81a79ba03.woff2')format("woff");}.ff1_c01396{font-family:ff1_c01396;line-height:1.187012;font-style:normal;font-weight:normal;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_bc28e6c13285a457c87b9f2f.woff2')format("woff");}.ff2_c01396{font-family:ff2_c01396;line-height:1.005371;font-style:normal;font-weight:normal;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_28c86a5744c67e54dc0300d6.woff2')format("woff");}.ff3_c01396{font-family:ff3_c01396;line-height:0.958008;font-style: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);}
.v0_c01396{vertical-align:0.000000px;}
.ls1_c01396{letter-spacing:0.000000px;}
.ls0_c01396{letter-spacing:0.012000px;}
.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;}
}
.ws0_c01396{word-spacing:-18.000000px;}
.ws1_c01396{word-spacing:0.000000px;}
._b_c01396{margin-left:-8.020800px;}
._17_c01396{margin-left:-6.687000px;}
._c_c01396{margin-left:-4.780800px;}
._9_c01396{margin-left:-3.765600px;}
._8_c01396{margin-left:-2.562600px;}
._7_c01396{margin-left:-1.311600px;}
._2_c01396{width:1.332000px;}
._0_c01396{width:3.002400px;}
._5_c01396{width:4.527600px;}
._a_c01396{width:6.170400px;}
._e_c01396{width:7.429200px;}
._f_c01396{width:8.553600px;}
._d_c01396{width:9.734400px;}
._1c_c01396{width:10.841400px;}
._6_c01396{width:12.096000px;}
._1_c01396{width:13.572000px;}
._3_c01396{width:15.235200px;}
._4_c01396{width:16.521000px;}
._12_c01396{width:19.160400px;}
._10_c01396{width:20.484000px;}
._13_c01396{width:21.796800px;}
._11_c01396{width:23.811600px;}
._15_c01396{width:25.719600px;}
._14_c01396{width:27.474600px;}
._16_c01396{width:30.034200px;}
._1a_c01396{width:31.910400px;}
._18_c01396{width:36.000000px;}
._19_c01396{width:41.997600px;}
._1b_c01396{width:60.498000px;}
.fc0_c01396{color:rgb(0,0,0);}
.fs1_c01396{font-size:60.000000px;}
.fs0_c01396{font-size:72.000000px;}
.y0_c01396{bottom:0.000000px;}
.y20_c01396{bottom:67.500000px;}
.y1e_c01396{bottom:183.000000px;}
.y1d_c01396{bottom:204.000000px;}
.y1c_c01396{bottom:246.000000px;}
.y1b_c01396{bottom:288.000000px;}
.y1a_c01396{bottom:330.000000px;}
.y19_c01396{bottom:351.000000px;}
.y18_c01396{bottom:393.000000px;}
.y17_c01396{bottom:414.000000px;}
.y16_c01396{bottom:456.000000px;}
.y15_c01396{bottom:477.000000px;}
.y14_c01396{bottom:519.000000px;}
.y13_c01396{bottom:540.000000px;}
.y12_c01396{bottom:580.500000px;}
.y11_c01396{bottom:619.500000px;}
.y10_c01396{bottom:655.500000px;}
.yf_c01396{bottom:676.500000px;}
.ye_c01396{bottom:718.500000px;}
.yd_c01396{bottom:739.500000px;}
.yc_c01396{bottom:760.500000px;}
.yb_c01396{bottom:802.500000px;}
.ya_c01396{bottom:823.500000px;}
.y9_c01396{bottom:865.500000px;}
.y8_c01396{bottom:886.500000px;}
.y7_c01396{bottom:928.500000px;}
.y6_c01396{bottom:949.500000px;}
.y5_c01396{bottom:970.500000px;}
.y4_c01396{bottom:1012.500000px;}
.y3_c01396{bottom:1033.500000px;}
.y2_c01396{bottom:1075.500000px;}
.y1_c01396{bottom:1096.500000px;}
.y1f_c01396{bottom:1194.000000px;}
.h2_c01396{height:44.208984px;}
.h1_c01396{height:65.144531px;}
.h0_c01396{height:1263.000000px;}
.w0_c01396{width:892.500000px;}
.x0_c01396{left:0.000000px;}
.x1_c01396{left:150.519750px;}
.x2_c01396{left:556.865850px;}
.x3_c01396{left:801.992850px;}
@media print{
.v0_c01396{vertical-align:0.000000pt;}
.ls1_c01396{letter-spacing:0.000000pt;}
.ls0_c01396{letter-spacing:0.010667pt;}
.ws0_c01396{word-spacing:-16.000000pt;}
.ws1_c01396{word-spacing:0.000000pt;}
._b_c01396{margin-left:-7.129600pt;}
._17_c01396{margin-left:-5.944000pt;}
._c_c01396{margin-left:-4.249600pt;}
._9_c01396{margin-left:-3.347200pt;}
._8_c01396{margin-left:-2.277867pt;}
._7_c01396{margin-left:-1.165867pt;}
._2_c01396{width:1.184000pt;}
._0_c01396{width:2.668800pt;}
._5_c01396{width:4.024533pt;}
._a_c01396{width:5.484800pt;}
._e_c01396{width:6.603733pt;}
._f_c01396{width:7.603200pt;}
._d_c01396{width:8.652800pt;}
._1c_c01396{width:9.636800pt;}
._6_c01396{width:10.752000pt;}
._1_c01396{width:12.064000pt;}
._3_c01396{width:13.542400pt;}
._4_c01396{width:14.685333pt;}
._12_c01396{width:17.031467pt;}
._10_c01396{width:18.208000pt;}
._13_c01396{width:19.374933pt;}
._11_c01396{width:21.165867pt;}
._15_c01396{width:22.861867pt;}
._14_c01396{width:24.421867pt;}
._16_c01396{width:26.697067pt;}
._1a_c01396{width:28.364800pt;}
._18_c01396{width:32.000000pt;}
._19_c01396{width:37.331200pt;}
._1b_c01396{width:53.776000pt;}
.fs1_c01396{font-size:53.333333pt;}
.fs0_c01396{font-size:64.000000pt;}
.y0_c01396{bottom:0.000000pt;}
.y20_c01396{bottom:60.000000pt;}
.y1e_c01396{bottom:162.666667pt;}
.y1d_c01396{bottom:181.333333pt;}
.y1c_c01396{bottom:218.666667pt;}
.y1b_c01396{bottom:256.000000pt;}
.y1a_c01396{bottom:293.333333pt;}
.y19_c01396{bottom:312.000000pt;}
.y18_c01396{bottom:349.333333pt;}
.y17_c01396{bottom:368.000000pt;}
.y16_c01396{bottom:405.333333pt;}
.y15_c01396{bottom:424.000000pt;}
.y14_c01396{bottom:461.333333pt;}
.y13_c01396{bottom:480.000000pt;}
.y12_c01396{bottom:516.000000pt;}
.y11_c01396{bottom:550.666667pt;}
.y10_c01396{bottom:582.666667pt;}
.yf_c01396{bottom:601.333333pt;}
.ye_c01396{bottom:638.666667pt;}
.yd_c01396{bottom:657.333333pt;}
.yc_c01396{bottom:676.000000pt;}
.yb_c01396{bottom:713.333333pt;}
.ya_c01396{bottom:732.000000pt;}
.y9_c01396{bottom:769.333333pt;}
.y8_c01396{bottom:788.000000pt;}
.y7_c01396{bottom:825.333333pt;}
.y6_c01396{bottom:844.000000pt;}
.y5_c01396{bottom:862.666667pt;}
.y4_c01396{bottom:900.000000pt;}
.y3_c01396{bottom:918.666667pt;}
.y2_c01396{bottom:956.000000pt;}
.y1_c01396{bottom:974.666667pt;}
.y1f_c01396{bottom:1061.333333pt;}
.h2_c01396{height:39.296875pt;}
.h1_c01396{height:57.906250pt;}
.h0_c01396{height:1122.666667pt;}
.w0_c01396{width:793.333333pt;}
.x0_c01396{left:0.000000pt;}
.x1_c01396{left:133.795333pt;}
.x2_c01396{left:494.991867pt;}
.x3_c01396{left:712.882533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_febda2a9d7ca5edcbb646ace.woff2')format("woff");}.ff1_c01397{font-family:ff1_c01397;line-height:1.187012;font-style:normal;font-weight:normal;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_aa56488bf1e19168a46aef0e.woff2')format("woff");}.ff2_c01397{font-family:ff2_c01397;line-height:1.005371;font-style:normal;font-weight:normal;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_c481f51435d4e1e8ced31515.woff2')format("woff");}.ff3_c01397{font-family:ff3_c01397;line-height:0.756836;font-style:normal;font-weight:normal;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_703fcee0c44bff290bb24011.woff2')format("woff");}.ff4_c01397{font-family:ff4_c01397;line-height:1.155762;font-style: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);}
.v0_c01397{vertical-align:0.000000px;}
.ls0_c01397{letter-spacing:0.000000px;}
.ls2_c01397{letter-spacing:0.012000px;}
.ls1_c01397{letter-spacing:0.014400px;}
.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;}
}
.ws0_c01397{word-spacing:-18.000000px;}
.ws1_c01397{word-spacing:0.000000px;}
._18_c01397{margin-left:-18.271200px;}
._19_c01397{margin-left:-7.970400px;}
._4_c01397{margin-left:-6.631200px;}
._11_c01397{margin-left:-5.468400px;}
._b_c01397{margin-left:-4.107240px;}
._0_c01397{margin-left:-2.419200px;}
._3_c01397{margin-left:-1.209600px;}
._2_c01397{width:1.756800px;}
._1_c01397{width:3.448800px;}
._9_c01397{width:5.342400px;}
._7_c01397{width:6.436800px;}
._6_c01397{width:7.848000px;}
._8_c01397{width:9.316800px;}
._12_c01397{width:10.363320px;}
._5_c01397{width:11.707200px;}
._10_c01397{width:12.768840px;}
._e_c01397{width:13.816800px;}
._a_c01397{width:15.098400px;}
._d_c01397{width:16.668000px;}
._c_c01397{width:20.484000px;}
._f_c01397{width:21.840840px;}
._17_c01397{width:23.515200px;}
._14_c01397{width:25.243200px;}
._15_c01397{width:26.954760px;}
._13_c01397{width:28.234440px;}
._16_c01397{width:29.325600px;}
.fc0_c01397{color:rgb(0,0,0);}
.fs1_c01397{font-size:60.000000px;}
.fs0_c01397{font-size:72.000000px;}
.y0_c01397{bottom:0.000000px;}
.y20_c01397{bottom:67.500000px;}
.y1e_c01397{bottom:193.500000px;}
.y1d_c01397{bottom:214.500000px;}
.y1c_c01397{bottom:235.500000px;}
.y1b_c01397{bottom:277.500000px;}
.y1a_c01397{bottom:298.500000px;}
.y19_c01397{bottom:340.500000px;}
.y18_c01397{bottom:361.500000px;}
.y17_c01397{bottom:403.500000px;}
.y16_c01397{bottom:424.500000px;}
.y15_c01397{bottom:466.500000px;}
.y14_c01397{bottom:487.500000px;}
.y13_c01397{bottom:529.500000px;}
.y12_c01397{bottom:550.500000px;}
.y11_c01397{bottom:592.500000px;}
.y10_c01397{bottom:613.500000px;}
.yf_c01397{bottom:634.500000px;}
.ye_c01397{bottom:676.500000px;}
.yd_c01397{bottom:697.500000px;}
.yc_c01397{bottom:718.500000px;}
.yb_c01397{bottom:760.500000px;}
.ya_c01397{bottom:802.500000px;}
.y9_c01397{bottom:844.500000px;}
.y8_c01397{bottom:865.500000px;}
.y7_c01397{bottom:907.500000px;}
.y6_c01397{bottom:949.500000px;}
.y5_c01397{bottom:970.500000px;}
.y4_c01397{bottom:991.500000px;}
.y3_c01397{bottom:1033.500000px;}
.y2_c01397{bottom:1075.500000px;}
.y1_c01397{bottom:1096.500000px;}
.y1f_c01397{bottom:1194.000000px;}
.h4_c01397{height:44.208984px;}
.h2_c01397{height:52.242188px;}
.h3_c01397{height:56.074219px;}
.h1_c01397{height:65.144531px;}
.h0_c01397{height:1263.000000px;}
.w0_c01397{width:892.500000px;}
.x0_c01397{left:0.000000px;}
.x1_c01397{left:65.480310px;}
@media print{
.v0_c01397{vertical-align:0.000000pt;}
.ls0_c01397{letter-spacing:0.000000pt;}
.ls2_c01397{letter-spacing:0.010667pt;}
.ls1_c01397{letter-spacing:0.012800pt;}
.ws0_c01397{word-spacing:-16.000000pt;}
.ws1_c01397{word-spacing:0.000000pt;}
._18_c01397{margin-left:-16.241067pt;}
._19_c01397{margin-left:-7.084800pt;}
._4_c01397{margin-left:-5.894400pt;}
._11_c01397{margin-left:-4.860800pt;}
._b_c01397{margin-left:-3.650880pt;}
._0_c01397{margin-left:-2.150400pt;}
._3_c01397{margin-left:-1.075200pt;}
._2_c01397{width:1.561600pt;}
._1_c01397{width:3.065600pt;}
._9_c01397{width:4.748800pt;}
._7_c01397{width:5.721600pt;}
._6_c01397{width:6.976000pt;}
._8_c01397{width:8.281600pt;}
._12_c01397{width:9.211840pt;}
._5_c01397{width:10.406400pt;}
._10_c01397{width:11.350080pt;}
._e_c01397{width:12.281600pt;}
._a_c01397{width:13.420800pt;}
._d_c01397{width:14.816000pt;}
._c_c01397{width:18.208000pt;}
._f_c01397{width:19.414080pt;}
._17_c01397{width:20.902400pt;}
._14_c01397{width:22.438400pt;}
._15_c01397{width:23.959787pt;}
._13_c01397{width:25.097280pt;}
._16_c01397{width:26.067200pt;}
.fs1_c01397{font-size:53.333333pt;}
.fs0_c01397{font-size:64.000000pt;}
.y0_c01397{bottom:0.000000pt;}
.y20_c01397{bottom:60.000000pt;}
.y1e_c01397{bottom:172.000000pt;}
.y1d_c01397{bottom:190.666667pt;}
.y1c_c01397{bottom:209.333333pt;}
.y1b_c01397{bottom:246.666667pt;}
.y1a_c01397{bottom:265.333333pt;}
.y19_c01397{bottom:302.666667pt;}
.y18_c01397{bottom:321.333333pt;}
.y17_c01397{bottom:358.666667pt;}
.y16_c01397{bottom:377.333333pt;}
.y15_c01397{bottom:414.666667pt;}
.y14_c01397{bottom:433.333333pt;}
.y13_c01397{bottom:470.666667pt;}
.y12_c01397{bottom:489.333333pt;}
.y11_c01397{bottom:526.666667pt;}
.y10_c01397{bottom:545.333333pt;}
.yf_c01397{bottom:564.000000pt;}
.ye_c01397{bottom:601.333333pt;}
.yd_c01397{bottom:620.000000pt;}
.yc_c01397{bottom:638.666667pt;}
.yb_c01397{bottom:676.000000pt;}
.ya_c01397{bottom:713.333333pt;}
.y9_c01397{bottom:750.666667pt;}
.y8_c01397{bottom:769.333333pt;}
.y7_c01397{bottom:806.666667pt;}
.y6_c01397{bottom:844.000000pt;}
.y5_c01397{bottom:862.666667pt;}
.y4_c01397{bottom:881.333333pt;}
.y3_c01397{bottom:918.666667pt;}
.y2_c01397{bottom:956.000000pt;}
.y1_c01397{bottom:974.666667pt;}
.y1f_c01397{bottom:1061.333333pt;}
.h4_c01397{height:39.296875pt;}
.h2_c01397{height:46.437500pt;}
.h3_c01397{height:49.843750pt;}
.h1_c01397{height:57.906250pt;}
.h0_c01397{height:1122.666667pt;}
.w0_c01397{width:793.333333pt;}
.x0_c01397{left:0.000000pt;}
.x1_c01397{left:58.204720pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6dc60b389dfe70690f126e65.woff2')format("woff");}.ff1_c01398{font-family:ff1_c01398;line-height:1.187012;font-style:normal;font-weight:normal;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_04229f3b60f39a88b5f15733.woff2')format("woff");}.ff2_c01398{font-family:ff2_c01398;line-height:1.183105;font-style:normal;font-weight:normal;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_0612e002dce7331e51f120bd.woff2')format("woff");}.ff3_c01398{font-family:ff3_c01398;line-height:0.958008;font-style: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);}
.v0_c01398{vertical-align:0.000000px;}
.ls3_c01398{letter-spacing:-0.086400px;}
.ls2_c01398{letter-spacing:0.000000px;}
.ls1_c01398{letter-spacing:0.012000px;}
.ls0_c01398{letter-spacing:0.014400px;}
.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;}
}
.ws0_c01398{word-spacing:-18.014400px;}
.ws1_c01398{word-spacing:0.000000px;}
._0_c01398{margin-left:-7.970400px;}
._b_c01398{margin-left:-6.508800px;}
._1_c01398{margin-left:-4.708800px;}
._7_c01398{margin-left:-2.700000px;}
._3_c01398{margin-left:-1.468800px;}
._5_c01398{width:1.000800px;}
._d_c01398{width:2.004600px;}
._10_c01398{width:3.139200px;}
._c_c01398{width:4.939200px;}
._11_c01398{width:5.997600px;}
._e_c01398{width:7.243200px;}
._12_c01398{width:8.707800px;}
._9_c01398{width:9.792000px;}
._f_c01398{width:11.275200px;}
._a_c01398{width:12.470400px;}
._6_c01398{width:14.572800px;}
._13_c01398{width:15.602400px;}
._4_c01398{width:16.977600px;}
._8_c01398{width:19.432800px;}
._2_c01398{width:21.549600px;}
.fc0_c01398{color:rgb(0,0,0);}
.fs1_c01398{font-size:60.000000px;}
.fs0_c01398{font-size:72.000000px;}
.y0_c01398{bottom:0.000000px;}
.y1c_c01398{bottom:67.500000px;}
.y1a_c01398{bottom:340.500000px;}
.y19_c01398{bottom:361.500000px;}
.y18_c01398{bottom:403.500000px;}
.y17_c01398{bottom:424.500000px;}
.y16_c01398{bottom:445.500000px;}
.y15_c01398{bottom:487.500000px;}
.y14_c01398{bottom:508.500000px;}
.y13_c01398{bottom:550.500000px;}
.y12_c01398{bottom:571.500000px;}
.y11_c01398{bottom:613.500000px;}
.y10_c01398{bottom:634.500000px;}
.yf_c01398{bottom:676.500000px;}
.ye_c01398{bottom:697.500000px;}
.yd_c01398{bottom:739.500000px;}
.yc_c01398{bottom:781.500000px;}
.yb_c01398{bottom:802.500000px;}
.ya_c01398{bottom:844.500000px;}
.y9_c01398{bottom:865.500000px;}
.y8_c01398{bottom:907.500000px;}
.y7_c01398{bottom:928.500000px;}
.y6_c01398{bottom:970.500000px;}
.y5_c01398{bottom:991.500000px;}
.y4_c01398{bottom:1012.500000px;}
.y3_c01398{bottom:1054.500000px;}
.y2_c01398{bottom:1075.500000px;}
.y1_c01398{bottom:1096.500000px;}
.y1b_c01398{bottom:1194.000000px;}
.h2_c01398{height:44.208984px;}
.h1_c01398{height:65.144531px;}
.h0_c01398{height:1263.000000px;}
.w0_c01398{width:892.500000px;}
.x0_c01398{left:0.000000px;}
.x1_c01398{left:150.519750px;}
.x2_c01398{left:556.865850px;}
.x3_c01398{left:801.992850px;}
@media print{
.v0_c01398{vertical-align:0.000000pt;}
.ls3_c01398{letter-spacing:-0.076800pt;}
.ls2_c01398{letter-spacing:0.000000pt;}
.ls1_c01398{letter-spacing:0.010667pt;}
.ls0_c01398{letter-spacing:0.012800pt;}
.ws0_c01398{word-spacing:-16.012800pt;}
.ws1_c01398{word-spacing:0.000000pt;}
._0_c01398{margin-left:-7.084800pt;}
._b_c01398{margin-left:-5.785600pt;}
._1_c01398{margin-left:-4.185600pt;}
._7_c01398{margin-left:-2.400000pt;}
._3_c01398{margin-left:-1.305600pt;}
._5_c01398{width:0.889600pt;}
._d_c01398{width:1.781867pt;}
._10_c01398{width:2.790400pt;}
._c_c01398{width:4.390400pt;}
._11_c01398{width:5.331200pt;}
._e_c01398{width:6.438400pt;}
._12_c01398{width:7.740267pt;}
._9_c01398{width:8.704000pt;}
._f_c01398{width:10.022400pt;}
._a_c01398{width:11.084800pt;}
._6_c01398{width:12.953600pt;}
._13_c01398{width:13.868800pt;}
._4_c01398{width:15.091200pt;}
._8_c01398{width:17.273600pt;}
._2_c01398{width:19.155200pt;}
.fs1_c01398{font-size:53.333333pt;}
.fs0_c01398{font-size:64.000000pt;}
.y0_c01398{bottom:0.000000pt;}
.y1c_c01398{bottom:60.000000pt;}
.y1a_c01398{bottom:302.666667pt;}
.y19_c01398{bottom:321.333333pt;}
.y18_c01398{bottom:358.666667pt;}
.y17_c01398{bottom:377.333333pt;}
.y16_c01398{bottom:396.000000pt;}
.y15_c01398{bottom:433.333333pt;}
.y14_c01398{bottom:452.000000pt;}
.y13_c01398{bottom:489.333333pt;}
.y12_c01398{bottom:508.000000pt;}
.y11_c01398{bottom:545.333333pt;}
.y10_c01398{bottom:564.000000pt;}
.yf_c01398{bottom:601.333333pt;}
.ye_c01398{bottom:620.000000pt;}
.yd_c01398{bottom:657.333333pt;}
.yc_c01398{bottom:694.666667pt;}
.yb_c01398{bottom:713.333333pt;}
.ya_c01398{bottom:750.666667pt;}
.y9_c01398{bottom:769.333333pt;}
.y8_c01398{bottom:806.666667pt;}
.y7_c01398{bottom:825.333333pt;}
.y6_c01398{bottom:862.666667pt;}
.y5_c01398{bottom:881.333333pt;}
.y4_c01398{bottom:900.000000pt;}
.y3_c01398{bottom:937.333333pt;}
.y2_c01398{bottom:956.000000pt;}
.y1_c01398{bottom:974.666667pt;}
.y1b_c01398{bottom:1061.333333pt;}
.h2_c01398{height:39.296875pt;}
.h1_c01398{height:57.906250pt;}
.h0_c01398{height:1122.666667pt;}
.w0_c01398{width:793.333333pt;}
.x0_c01398{left:0.000000pt;}
.x1_c01398{left:133.795333pt;}
.x2_c01398{left:494.991867pt;}
.x3_c01398{left:712.882533pt;}
}




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